src/core/bindings/modulegen__gcc_LP64.py
author Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
Mon, 20 Feb 2012 16:45:50 +0000
changeset 7723 dfd109d5caf0
parent 7586 c94d841b44fb
child 7788 90ef8839dc5d
permissions -rw-r--r--
Bug 1349 - TypeId.LookupAttributeByName Python bindings missing
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
     1
from pybindgen import Module, FileCodeSink, param, retval, cppclass, typehandlers
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
     2
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
     3
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
     4
import pybindgen.settings
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
     5
import warnings
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
     6
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
     7
class ErrorHandler(pybindgen.settings.ErrorHandler):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
     8
    def handle_error(self, wrapper, exception, traceback_):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
     9
        warnings.warn("exception %r in wrapper %s" % (exception, wrapper))
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    10
        return True
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    11
pybindgen.settings.error_handler = ErrorHandler()
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    12
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    13
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    14
import sys
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    15
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    16
def module_init():
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    17
    root_module = Module('ns.core', cpp_namespace='::ns3')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    18
    return root_module
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    19
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    20
def register_types(module):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    21
    root_module = module.get_root()
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    22
    
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    23
    ## log.h (module 'core'): ns3::LogLevel [enumeration]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    24
    module.add_enum('LogLevel', ['LOG_NONE', 'LOG_ERROR', 'LOG_LEVEL_ERROR', 'LOG_WARN', 'LOG_LEVEL_WARN', 'LOG_DEBUG', 'LOG_LEVEL_DEBUG', 'LOG_INFO', 'LOG_LEVEL_INFO', 'LOG_FUNCTION', 'LOG_LEVEL_FUNCTION', 'LOG_LOGIC', 'LOG_LEVEL_LOGIC', 'LOG_ALL', 'LOG_LEVEL_ALL', 'LOG_PREFIX_FUNC', 'LOG_PREFIX_TIME', 'LOG_PREFIX_NODE'])
7401
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
    25
    ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList [class]
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
    26
    module.add_class('AttributeConstructionList')
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
    27
    ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item [struct]
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
    28
    module.add_class('Item', outer_class=root_module['ns3::AttributeConstructionList'])
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    29
    ## callback.h (module 'core'): ns3::CallbackBase [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    30
    module.add_class('CallbackBase')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    31
    ## command-line.h (module 'core'): ns3::CommandLine [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    32
    module.add_class('CommandLine', allow_subclassing=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    33
    ## system-mutex.h (module 'core'): ns3::CriticalSection [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    34
    module.add_class('CriticalSection')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    35
    ## event-id.h (module 'core'): ns3::EventId [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    36
    module.add_class('EventId')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    37
    ## global-value.h (module 'core'): ns3::GlobalValue [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    38
    module.add_class('GlobalValue')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    39
    ## int-to-type.h (module 'core'): ns3::IntToType<0> [struct]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    40
    module.add_class('IntToType', template_parameters=['0'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    41
    ## int-to-type.h (module 'core'): ns3::IntToType<0>::v_e [enumeration]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    42
    module.add_enum('v_e', ['value'], outer_class=root_module['ns3::IntToType< 0 >'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    43
    ## int-to-type.h (module 'core'): ns3::IntToType<1> [struct]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    44
    module.add_class('IntToType', template_parameters=['1'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    45
    ## int-to-type.h (module 'core'): ns3::IntToType<1>::v_e [enumeration]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    46
    module.add_enum('v_e', ['value'], outer_class=root_module['ns3::IntToType< 1 >'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    47
    ## int-to-type.h (module 'core'): ns3::IntToType<2> [struct]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    48
    module.add_class('IntToType', template_parameters=['2'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    49
    ## int-to-type.h (module 'core'): ns3::IntToType<2>::v_e [enumeration]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    50
    module.add_enum('v_e', ['value'], outer_class=root_module['ns3::IntToType< 2 >'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    51
    ## int-to-type.h (module 'core'): ns3::IntToType<3> [struct]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    52
    module.add_class('IntToType', template_parameters=['3'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    53
    ## int-to-type.h (module 'core'): ns3::IntToType<3>::v_e [enumeration]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    54
    module.add_enum('v_e', ['value'], outer_class=root_module['ns3::IntToType< 3 >'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    55
    ## int-to-type.h (module 'core'): ns3::IntToType<4> [struct]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    56
    module.add_class('IntToType', template_parameters=['4'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    57
    ## int-to-type.h (module 'core'): ns3::IntToType<4>::v_e [enumeration]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    58
    module.add_enum('v_e', ['value'], outer_class=root_module['ns3::IntToType< 4 >'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    59
    ## int-to-type.h (module 'core'): ns3::IntToType<5> [struct]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    60
    module.add_class('IntToType', template_parameters=['5'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    61
    ## int-to-type.h (module 'core'): ns3::IntToType<5>::v_e [enumeration]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    62
    module.add_enum('v_e', ['value'], outer_class=root_module['ns3::IntToType< 5 >'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    63
    ## int-to-type.h (module 'core'): ns3::IntToType<6> [struct]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    64
    module.add_class('IntToType', template_parameters=['6'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    65
    ## int-to-type.h (module 'core'): ns3::IntToType<6>::v_e [enumeration]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    66
    module.add_enum('v_e', ['value'], outer_class=root_module['ns3::IntToType< 6 >'])
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
    67
    ## log.h (module 'core'): ns3::LogComponent [class]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
    68
    module.add_class('LogComponent')
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    69
    ## names.h (module 'core'): ns3::Names [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    70
    module.add_class('Names')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    71
    ## object-base.h (module 'core'): ns3::ObjectBase [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    72
    module.add_class('ObjectBase', allow_subclassing=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    73
    ## object.h (module 'core'): ns3::ObjectDeleter [struct]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    74
    module.add_class('ObjectDeleter')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    75
    ## object-factory.h (module 'core'): ns3::ObjectFactory [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    76
    module.add_class('ObjectFactory')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    77
    ## random-variable.h (module 'core'): ns3::RandomVariable [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    78
    module.add_class('RandomVariable')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    79
    ## rng-stream.h (module 'core'): ns3::RngStream [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    80
    module.add_class('RngStream')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    81
    ## random-variable.h (module 'core'): ns3::SeedManager [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    82
    module.add_class('SeedManager')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    83
    ## random-variable.h (module 'core'): ns3::SequentialVariable [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    84
    module.add_class('SequentialVariable', parent=root_module['ns3::RandomVariable'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    85
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter> [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    86
    module.add_class('SimpleRefCount', automatic_type_narrowing=True, template_parameters=['ns3::Object', 'ns3::ObjectBase', 'ns3::ObjectDeleter'], parent=root_module['ns3::ObjectBase'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    87
    ## 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
    88
    module.add_class('Simulator', destructor_visibility='private')
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    89
    ## system-condition.h (module 'core'): ns3::SystemCondition [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    90
    module.add_class('SystemCondition')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    91
    ## system-mutex.h (module 'core'): ns3::SystemMutex [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    92
    module.add_class('SystemMutex')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    93
    ## system-wall-clock-ms.h (module 'core'): ns3::SystemWallClockMs [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    94
    module.add_class('SystemWallClockMs')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    95
    ## timer.h (module 'core'): ns3::Timer [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    96
    module.add_class('Timer')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    97
    ## timer.h (module 'core'): ns3::Timer::DestroyPolicy [enumeration]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    98
    module.add_enum('DestroyPolicy', ['CANCEL_ON_DESTROY', 'REMOVE_ON_DESTROY', 'CHECK_ON_DESTROY'], outer_class=root_module['ns3::Timer'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    99
    ## timer.h (module 'core'): ns3::Timer::State [enumeration]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   100
    module.add_enum('State', ['RUNNING', 'EXPIRED', 'SUSPENDED'], outer_class=root_module['ns3::Timer'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   101
    ## timer-impl.h (module 'core'): ns3::TimerImpl [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   102
    module.add_class('TimerImpl', allow_subclassing=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   103
    ## random-variable.h (module 'core'): ns3::TriangularVariable [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   104
    module.add_class('TriangularVariable', parent=root_module['ns3::RandomVariable'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   105
    ## type-id.h (module 'core'): ns3::TypeId [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   106
    module.add_class('TypeId')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   107
    ## type-id.h (module 'core'): ns3::TypeId::AttributeFlag [enumeration]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   108
    module.add_enum('AttributeFlag', ['ATTR_GET', 'ATTR_SET', 'ATTR_CONSTRUCT', 'ATTR_SGC'], outer_class=root_module['ns3::TypeId'])
7401
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   109
    ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation [struct]
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   110
    module.add_class('AttributeInformation', outer_class=root_module['ns3::TypeId'])
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   111
    ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation [struct]
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   112
    module.add_class('TraceSourceInformation', outer_class=root_module['ns3::TypeId'])
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   113
    ## random-variable.h (module 'core'): ns3::UniformVariable [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   114
    module.add_class('UniformVariable', parent=root_module['ns3::RandomVariable'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   115
    ## vector.h (module 'core'): ns3::Vector2D [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   116
    module.add_class('Vector2D')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   117
    ## vector.h (module 'core'): ns3::Vector3D [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   118
    module.add_class('Vector3D')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   119
    ## watchdog.h (module 'core'): ns3::Watchdog [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   120
    module.add_class('Watchdog')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   121
    ## random-variable.h (module 'core'): ns3::WeibullVariable [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   122
    module.add_class('WeibullVariable', parent=root_module['ns3::RandomVariable'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   123
    ## random-variable.h (module 'core'): ns3::ZetaVariable [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   124
    module.add_class('ZetaVariable', parent=root_module['ns3::RandomVariable'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   125
    ## random-variable.h (module 'core'): ns3::ZipfVariable [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   126
    module.add_class('ZipfVariable', parent=root_module['ns3::RandomVariable'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   127
    ## empty.h (module 'core'): ns3::empty [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   128
    module.add_class('empty')
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   129
    ## int64x64-double.h (module 'core'): ns3::int64x64_t [class]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   130
    module.add_class('int64x64_t')
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   131
    ## random-variable.h (module 'core'): ns3::ConstantVariable [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   132
    module.add_class('ConstantVariable', parent=root_module['ns3::RandomVariable'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   133
    ## random-variable.h (module 'core'): ns3::DeterministicVariable [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   134
    module.add_class('DeterministicVariable', parent=root_module['ns3::RandomVariable'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   135
    ## random-variable.h (module 'core'): ns3::EmpiricalVariable [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   136
    module.add_class('EmpiricalVariable', parent=root_module['ns3::RandomVariable'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   137
    ## random-variable.h (module 'core'): ns3::ErlangVariable [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   138
    module.add_class('ErlangVariable', parent=root_module['ns3::RandomVariable'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   139
    ## random-variable.h (module 'core'): ns3::ExponentialVariable [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   140
    module.add_class('ExponentialVariable', parent=root_module['ns3::RandomVariable'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   141
    ## random-variable.h (module 'core'): ns3::GammaVariable [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   142
    module.add_class('GammaVariable', parent=root_module['ns3::RandomVariable'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   143
    ## random-variable.h (module 'core'): ns3::IntEmpiricalVariable [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   144
    module.add_class('IntEmpiricalVariable', parent=root_module['ns3::EmpiricalVariable'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   145
    ## random-variable.h (module 'core'): ns3::LogNormalVariable [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   146
    module.add_class('LogNormalVariable', parent=root_module['ns3::RandomVariable'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   147
    ## random-variable.h (module 'core'): ns3::NormalVariable [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   148
    module.add_class('NormalVariable', parent=root_module['ns3::RandomVariable'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   149
    ## object.h (module 'core'): ns3::Object [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   150
    module.add_class('Object', parent=root_module['ns3::SimpleRefCount< ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter >'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   151
    ## object.h (module 'core'): ns3::Object::AggregateIterator [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   152
    module.add_class('AggregateIterator', outer_class=root_module['ns3::Object'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   153
    ## random-variable.h (module 'core'): ns3::ParetoVariable [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   154
    module.add_class('ParetoVariable', parent=root_module['ns3::RandomVariable'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   155
    ## scheduler.h (module 'core'): ns3::Scheduler [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   156
    module.add_class('Scheduler', parent=root_module['ns3::Object'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   157
    ## scheduler.h (module 'core'): ns3::Scheduler::Event [struct]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   158
    module.add_class('Event', outer_class=root_module['ns3::Scheduler'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   159
    ## scheduler.h (module 'core'): ns3::Scheduler::EventKey [struct]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   160
    module.add_class('EventKey', outer_class=root_module['ns3::Scheduler'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   161
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> > [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   162
    module.add_class('SimpleRefCount', automatic_type_narrowing=True, template_parameters=['ns3::AttributeAccessor', 'ns3::empty', 'ns3::DefaultDeleter<ns3::AttributeAccessor>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   163
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter<ns3::AttributeChecker> > [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   164
    module.add_class('SimpleRefCount', automatic_type_narrowing=True, template_parameters=['ns3::AttributeChecker', 'ns3::empty', 'ns3::DefaultDeleter<ns3::AttributeChecker>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   165
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter<ns3::AttributeValue> > [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   166
    module.add_class('SimpleRefCount', automatic_type_narrowing=True, template_parameters=['ns3::AttributeValue', 'ns3::empty', 'ns3::DefaultDeleter<ns3::AttributeValue>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   167
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> > [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   168
    module.add_class('SimpleRefCount', automatic_type_narrowing=True, template_parameters=['ns3::CallbackImplBase', 'ns3::empty', 'ns3::DefaultDeleter<ns3::CallbackImplBase>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   169
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::EventImpl, ns3::empty, ns3::DefaultDeleter<ns3::EventImpl> > [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   170
    module.add_class('SimpleRefCount', automatic_type_narrowing=True, template_parameters=['ns3::EventImpl', 'ns3::empty', 'ns3::DefaultDeleter<ns3::EventImpl>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   171
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::FdReader, ns3::empty, ns3::DefaultDeleter<ns3::FdReader> > [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   172
    module.add_class('SimpleRefCount', automatic_type_narrowing=True, template_parameters=['ns3::FdReader', 'ns3::empty', 'ns3::DefaultDeleter<ns3::FdReader>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   173
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::RefCountBase, ns3::empty, ns3::DefaultDeleter<ns3::RefCountBase> > [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   174
    module.add_class('SimpleRefCount', automatic_type_narrowing=True, template_parameters=['ns3::RefCountBase', 'ns3::empty', 'ns3::DefaultDeleter<ns3::RefCountBase>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   175
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::SystemThread, ns3::empty, ns3::DefaultDeleter<ns3::SystemThread> > [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   176
    module.add_class('SimpleRefCount', automatic_type_narrowing=True, template_parameters=['ns3::SystemThread', 'ns3::empty', 'ns3::DefaultDeleter<ns3::SystemThread>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   177
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter<ns3::TraceSourceAccessor> > [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   178
    module.add_class('SimpleRefCount', automatic_type_narrowing=True, 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'))
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   179
    ## simulator-impl.h (module 'core'): ns3::SimulatorImpl [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   180
    module.add_class('SimulatorImpl', parent=root_module['ns3::Object'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   181
    ## synchronizer.h (module 'core'): ns3::Synchronizer [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   182
    module.add_class('Synchronizer', parent=root_module['ns3::Object'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   183
    ## system-thread.h (module 'core'): ns3::SystemThread [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   184
    module.add_class('SystemThread', parent=root_module['ns3::SimpleRefCount< ns3::SystemThread, ns3::empty, ns3::DefaultDeleter<ns3::SystemThread> >'])
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   185
    ## nstime.h (module 'core'): ns3::Time [class]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   186
    module.add_class('Time')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   187
    ## nstime.h (module 'core'): ns3::Time::Unit [enumeration]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   188
    module.add_enum('Unit', ['S', 'MS', 'US', 'NS', 'PS', 'FS', 'LAST'], outer_class=root_module['ns3::Time'])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   189
    ## nstime.h (module 'core'): ns3::Time [class]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   190
    root_module['ns3::Time'].implicitly_converts_to(root_module['ns3::int64x64_t'])
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   191
    ## trace-source-accessor.h (module 'core'): ns3::TraceSourceAccessor [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   192
    module.add_class('TraceSourceAccessor', parent=root_module['ns3::SimpleRefCount< ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter<ns3::TraceSourceAccessor> >'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   193
    ## wall-clock-synchronizer.h (module 'core'): ns3::WallClockSynchronizer [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   194
    module.add_class('WallClockSynchronizer', parent=root_module['ns3::Synchronizer'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   195
    ## attribute.h (module 'core'): ns3::AttributeAccessor [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   196
    module.add_class('AttributeAccessor', parent=root_module['ns3::SimpleRefCount< ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> >'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   197
    ## attribute.h (module 'core'): ns3::AttributeChecker [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   198
    module.add_class('AttributeChecker', allow_subclassing=False, automatic_type_narrowing=True, parent=root_module['ns3::SimpleRefCount< ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter<ns3::AttributeChecker> >'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   199
    ## attribute.h (module 'core'): ns3::AttributeValue [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   200
    module.add_class('AttributeValue', allow_subclassing=False, automatic_type_narrowing=True, parent=root_module['ns3::SimpleRefCount< ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter<ns3::AttributeValue> >'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   201
    ## boolean.h (module 'core'): ns3::BooleanChecker [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   202
    module.add_class('BooleanChecker', parent=root_module['ns3::AttributeChecker'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   203
    ## boolean.h (module 'core'): ns3::BooleanValue [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   204
    module.add_class('BooleanValue', parent=root_module['ns3::AttributeValue'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   205
    ## calendar-scheduler.h (module 'core'): ns3::CalendarScheduler [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   206
    module.add_class('CalendarScheduler', parent=root_module['ns3::Scheduler'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   207
    ## callback.h (module 'core'): ns3::CallbackChecker [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   208
    module.add_class('CallbackChecker', parent=root_module['ns3::AttributeChecker'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   209
    ## callback.h (module 'core'): ns3::CallbackImplBase [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   210
    module.add_class('CallbackImplBase', parent=root_module['ns3::SimpleRefCount< ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> >'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   211
    ## callback.h (module 'core'): ns3::CallbackValue [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   212
    module.add_class('CallbackValue', parent=root_module['ns3::AttributeValue'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   213
    ## default-simulator-impl.h (module 'core'): ns3::DefaultSimulatorImpl [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   214
    module.add_class('DefaultSimulatorImpl', parent=root_module['ns3::SimulatorImpl'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   215
    ## double.h (module 'core'): ns3::DoubleValue [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   216
    module.add_class('DoubleValue', parent=root_module['ns3::AttributeValue'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   217
    ## attribute.h (module 'core'): ns3::EmptyAttributeValue [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   218
    module.add_class('EmptyAttributeValue', parent=root_module['ns3::AttributeValue'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   219
    ## enum.h (module 'core'): ns3::EnumChecker [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   220
    module.add_class('EnumChecker', parent=root_module['ns3::AttributeChecker'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   221
    ## enum.h (module 'core'): ns3::EnumValue [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   222
    module.add_class('EnumValue', parent=root_module['ns3::AttributeValue'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   223
    ## event-impl.h (module 'core'): ns3::EventImpl [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   224
    module.add_class('EventImpl', parent=root_module['ns3::SimpleRefCount< ns3::EventImpl, ns3::empty, ns3::DefaultDeleter<ns3::EventImpl> >'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   225
    ## unix-fd-reader.h (module 'core'): ns3::FdReader [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   226
    module.add_class('FdReader', parent=root_module['ns3::SimpleRefCount< ns3::FdReader, ns3::empty, ns3::DefaultDeleter<ns3::FdReader> >'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   227
    ## heap-scheduler.h (module 'core'): ns3::HeapScheduler [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   228
    module.add_class('HeapScheduler', parent=root_module['ns3::Scheduler'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   229
    ## integer.h (module 'core'): ns3::IntegerValue [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   230
    module.add_class('IntegerValue', parent=root_module['ns3::AttributeValue'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   231
    ## list-scheduler.h (module 'core'): ns3::ListScheduler [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   232
    module.add_class('ListScheduler', parent=root_module['ns3::Scheduler'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   233
    ## map-scheduler.h (module 'core'): ns3::MapScheduler [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   234
    module.add_class('MapScheduler', parent=root_module['ns3::Scheduler'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   235
    ## ns2-calendar-scheduler.h (module 'core'): ns3::Ns2CalendarScheduler [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   236
    module.add_class('Ns2CalendarScheduler', parent=root_module['ns3::Scheduler'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   237
    ## object-factory.h (module 'core'): ns3::ObjectFactoryChecker [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   238
    module.add_class('ObjectFactoryChecker', parent=root_module['ns3::AttributeChecker'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   239
    ## object-factory.h (module 'core'): ns3::ObjectFactoryValue [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   240
    module.add_class('ObjectFactoryValue', parent=root_module['ns3::AttributeValue'])
7420
ca9c09839724 Add a couple of includes and rescan core module's bindings
Mitch Watrous <watrous@u.washington.edu>
parents: 7407
diff changeset
   241
    ## object-ptr-container.h (module 'core'): ns3::ObjectPtrContainerAccessor [class]
ca9c09839724 Add a couple of includes and rescan core module's bindings
Mitch Watrous <watrous@u.washington.edu>
parents: 7407
diff changeset
   242
    module.add_class('ObjectPtrContainerAccessor', parent=root_module['ns3::AttributeAccessor'])
ca9c09839724 Add a couple of includes and rescan core module's bindings
Mitch Watrous <watrous@u.washington.edu>
parents: 7407
diff changeset
   243
    ## object-ptr-container.h (module 'core'): ns3::ObjectPtrContainerChecker [class]
ca9c09839724 Add a couple of includes and rescan core module's bindings
Mitch Watrous <watrous@u.washington.edu>
parents: 7407
diff changeset
   244
    module.add_class('ObjectPtrContainerChecker', parent=root_module['ns3::AttributeChecker'])
ca9c09839724 Add a couple of includes and rescan core module's bindings
Mitch Watrous <watrous@u.washington.edu>
parents: 7407
diff changeset
   245
    ## object-ptr-container.h (module 'core'): ns3::ObjectPtrContainerValue [class]
ca9c09839724 Add a couple of includes and rescan core module's bindings
Mitch Watrous <watrous@u.washington.edu>
parents: 7407
diff changeset
   246
    module.add_class('ObjectPtrContainerValue', parent=root_module['ns3::AttributeValue'])
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   247
    ## pointer.h (module 'core'): ns3::PointerChecker [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   248
    module.add_class('PointerChecker', parent=root_module['ns3::AttributeChecker'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   249
    ## pointer.h (module 'core'): ns3::PointerValue [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   250
    module.add_class('PointerValue', parent=root_module['ns3::AttributeValue'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   251
    ## random-variable.h (module 'core'): ns3::RandomVariableChecker [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   252
    module.add_class('RandomVariableChecker', parent=root_module['ns3::AttributeChecker'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   253
    ## random-variable.h (module 'core'): ns3::RandomVariableValue [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   254
    module.add_class('RandomVariableValue', parent=root_module['ns3::AttributeValue'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   255
    ## realtime-simulator-impl.h (module 'core'): ns3::RealtimeSimulatorImpl [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   256
    module.add_class('RealtimeSimulatorImpl', parent=root_module['ns3::SimulatorImpl'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   257
    ## realtime-simulator-impl.h (module 'core'): ns3::RealtimeSimulatorImpl::SynchronizationMode [enumeration]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   258
    module.add_enum('SynchronizationMode', ['SYNC_BEST_EFFORT', 'SYNC_HARD_LIMIT'], outer_class=root_module['ns3::RealtimeSimulatorImpl'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   259
    ## ref-count-base.h (module 'core'): ns3::RefCountBase [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   260
    module.add_class('RefCountBase', parent=root_module['ns3::SimpleRefCount< ns3::RefCountBase, ns3::empty, ns3::DefaultDeleter<ns3::RefCountBase> >'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   261
    ## string.h (module 'core'): ns3::StringChecker [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   262
    module.add_class('StringChecker', parent=root_module['ns3::AttributeChecker'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   263
    ## string.h (module 'core'): ns3::StringValue [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   264
    module.add_class('StringValue', parent=root_module['ns3::AttributeValue'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   265
    ## nstime.h (module 'core'): ns3::TimeChecker [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   266
    module.add_class('TimeChecker', parent=root_module['ns3::AttributeChecker'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   267
    ## nstime.h (module 'core'): ns3::TimeValue [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   268
    module.add_class('TimeValue', parent=root_module['ns3::AttributeValue'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   269
    ## type-id.h (module 'core'): ns3::TypeIdChecker [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   270
    module.add_class('TypeIdChecker', parent=root_module['ns3::AttributeChecker'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   271
    ## type-id.h (module 'core'): ns3::TypeIdValue [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   272
    module.add_class('TypeIdValue', parent=root_module['ns3::AttributeValue'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   273
    ## uinteger.h (module 'core'): ns3::UintegerValue [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   274
    module.add_class('UintegerValue', parent=root_module['ns3::AttributeValue'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   275
    ## vector.h (module 'core'): ns3::Vector2DChecker [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   276
    module.add_class('Vector2DChecker', parent=root_module['ns3::AttributeChecker'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   277
    ## vector.h (module 'core'): ns3::Vector2DValue [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   278
    module.add_class('Vector2DValue', parent=root_module['ns3::AttributeValue'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   279
    ## vector.h (module 'core'): ns3::Vector3DChecker [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   280
    module.add_class('Vector3DChecker', parent=root_module['ns3::AttributeChecker'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   281
    ## vector.h (module 'core'): ns3::Vector3DValue [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   282
    module.add_class('Vector3DValue', parent=root_module['ns3::AttributeValue'])
7420
ca9c09839724 Add a couple of includes and rescan core module's bindings
Mitch Watrous <watrous@u.washington.edu>
parents: 7407
diff changeset
   283
    typehandlers.add_type_alias('ns3::ObjectPtrContainerValue', 'ns3::ObjectVectorValue')
ca9c09839724 Add a couple of includes and rescan core module's bindings
Mitch Watrous <watrous@u.washington.edu>
parents: 7407
diff changeset
   284
    typehandlers.add_type_alias('ns3::ObjectPtrContainerValue*', 'ns3::ObjectVectorValue*')
ca9c09839724 Add a couple of includes and rescan core module's bindings
Mitch Watrous <watrous@u.washington.edu>
parents: 7407
diff changeset
   285
    typehandlers.add_type_alias('ns3::ObjectPtrContainerValue&', 'ns3::ObjectVectorValue&')
ca9c09839724 Add a couple of includes and rescan core module's bindings
Mitch Watrous <watrous@u.washington.edu>
parents: 7407
diff changeset
   286
    module.add_typedef(root_module['ns3::ObjectPtrContainerValue'], 'ObjectVectorValue')
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   287
    typehandlers.add_type_alias('void ( * ) ( std::ostream & ) *', 'ns3::LogTimePrinter')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   288
    typehandlers.add_type_alias('void ( * ) ( std::ostream & ) **', 'ns3::LogTimePrinter*')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   289
    typehandlers.add_type_alias('void ( * ) ( std::ostream & ) *&', 'ns3::LogTimePrinter&')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   290
    typehandlers.add_type_alias('void ( * ) ( std::ostream & ) *', 'ns3::LogNodePrinter')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   291
    typehandlers.add_type_alias('void ( * ) ( std::ostream & ) **', 'ns3::LogNodePrinter*')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   292
    typehandlers.add_type_alias('void ( * ) ( std::ostream & ) *&', 'ns3::LogNodePrinter&')
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   293
    typehandlers.add_type_alias('ns3::Vector3D', 'ns3::Vector')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   294
    typehandlers.add_type_alias('ns3::Vector3D*', 'ns3::Vector*')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   295
    typehandlers.add_type_alias('ns3::Vector3D&', 'ns3::Vector&')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   296
    module.add_typedef(root_module['ns3::Vector3D'], 'Vector')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   297
    typehandlers.add_type_alias('ns3::Vector3DValue', 'ns3::VectorValue')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   298
    typehandlers.add_type_alias('ns3::Vector3DValue*', 'ns3::VectorValue*')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   299
    typehandlers.add_type_alias('ns3::Vector3DValue&', 'ns3::VectorValue&')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   300
    module.add_typedef(root_module['ns3::Vector3DValue'], 'VectorValue')
7420
ca9c09839724 Add a couple of includes and rescan core module's bindings
Mitch Watrous <watrous@u.washington.edu>
parents: 7407
diff changeset
   301
    typehandlers.add_type_alias('ns3::ObjectPtrContainerValue', 'ns3::ObjectMapValue')
ca9c09839724 Add a couple of includes and rescan core module's bindings
Mitch Watrous <watrous@u.washington.edu>
parents: 7407
diff changeset
   302
    typehandlers.add_type_alias('ns3::ObjectPtrContainerValue*', 'ns3::ObjectMapValue*')
ca9c09839724 Add a couple of includes and rescan core module's bindings
Mitch Watrous <watrous@u.washington.edu>
parents: 7407
diff changeset
   303
    typehandlers.add_type_alias('ns3::ObjectPtrContainerValue&', 'ns3::ObjectMapValue&')
ca9c09839724 Add a couple of includes and rescan core module's bindings
Mitch Watrous <watrous@u.washington.edu>
parents: 7407
diff changeset
   304
    module.add_typedef(root_module['ns3::ObjectPtrContainerValue'], 'ObjectMapValue')
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   305
    typehandlers.add_type_alias('ns3::Vector3DChecker', 'ns3::VectorChecker')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   306
    typehandlers.add_type_alias('ns3::Vector3DChecker*', 'ns3::VectorChecker*')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   307
    typehandlers.add_type_alias('ns3::Vector3DChecker&', 'ns3::VectorChecker&')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   308
    module.add_typedef(root_module['ns3::Vector3DChecker'], 'VectorChecker')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   309
    
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   310
    ## Register a nested module for the namespace Config
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   311
    
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   312
    nested_module = module.add_cpp_namespace('Config')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   313
    register_types_ns3_Config(nested_module)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   314
    
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   315
    
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   316
    ## Register a nested module for the namespace FatalImpl
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   317
    
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   318
    nested_module = module.add_cpp_namespace('FatalImpl')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   319
    register_types_ns3_FatalImpl(nested_module)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   320
    
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   321
    
7586
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7420
diff changeset
   322
    ## Register a nested module for the namespace SystemPath
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7420
diff changeset
   323
    
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7420
diff changeset
   324
    nested_module = module.add_cpp_namespace('SystemPath')
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7420
diff changeset
   325
    register_types_ns3_SystemPath(nested_module)
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7420
diff changeset
   326
    
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7420
diff changeset
   327
    
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   328
    ## Register a nested module for the namespace internal
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   329
    
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   330
    nested_module = module.add_cpp_namespace('internal')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   331
    register_types_ns3_internal(nested_module)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   332
    
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   333
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   334
def register_types_ns3_Config(module):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   335
    root_module = module.get_root()
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   336
    
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   337
    ## config.h (module 'core'): ns3::Config::MatchContainer [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   338
    module.add_class('MatchContainer')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   339
    module.add_container('std::vector< ns3::Ptr< ns3::Object > >', 'ns3::Ptr< ns3::Object >', container_type='vector')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   340
    module.add_container('std::vector< std::string >', 'std::string', container_type='vector')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   341
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   342
def register_types_ns3_FatalImpl(module):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   343
    root_module = module.get_root()
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   344
    
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   345
7586
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7420
diff changeset
   346
def register_types_ns3_SystemPath(module):
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7420
diff changeset
   347
    root_module = module.get_root()
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7420
diff changeset
   348
    
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7420
diff changeset
   349
    module.add_container('std::list< std::string >', 'std::string', container_type='list')
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7420
diff changeset
   350
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   351
def register_types_ns3_internal(module):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   352
    root_module = module.get_root()
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   353
    
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   354
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   355
def register_methods(root_module):
7401
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   356
    register_Ns3AttributeConstructionList_methods(root_module, root_module['ns3::AttributeConstructionList'])
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   357
    register_Ns3AttributeConstructionListItem_methods(root_module, root_module['ns3::AttributeConstructionList::Item'])
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   358
    register_Ns3CallbackBase_methods(root_module, root_module['ns3::CallbackBase'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   359
    register_Ns3CommandLine_methods(root_module, root_module['ns3::CommandLine'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   360
    register_Ns3CriticalSection_methods(root_module, root_module['ns3::CriticalSection'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   361
    register_Ns3EventId_methods(root_module, root_module['ns3::EventId'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   362
    register_Ns3GlobalValue_methods(root_module, root_module['ns3::GlobalValue'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   363
    register_Ns3IntToType__0_methods(root_module, root_module['ns3::IntToType< 0 >'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   364
    register_Ns3IntToType__1_methods(root_module, root_module['ns3::IntToType< 1 >'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   365
    register_Ns3IntToType__2_methods(root_module, root_module['ns3::IntToType< 2 >'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   366
    register_Ns3IntToType__3_methods(root_module, root_module['ns3::IntToType< 3 >'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   367
    register_Ns3IntToType__4_methods(root_module, root_module['ns3::IntToType< 4 >'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   368
    register_Ns3IntToType__5_methods(root_module, root_module['ns3::IntToType< 5 >'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   369
    register_Ns3IntToType__6_methods(root_module, root_module['ns3::IntToType< 6 >'])
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   370
    register_Ns3LogComponent_methods(root_module, root_module['ns3::LogComponent'])
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   371
    register_Ns3Names_methods(root_module, root_module['ns3::Names'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   372
    register_Ns3ObjectBase_methods(root_module, root_module['ns3::ObjectBase'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   373
    register_Ns3ObjectDeleter_methods(root_module, root_module['ns3::ObjectDeleter'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   374
    register_Ns3ObjectFactory_methods(root_module, root_module['ns3::ObjectFactory'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   375
    register_Ns3RandomVariable_methods(root_module, root_module['ns3::RandomVariable'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   376
    register_Ns3RngStream_methods(root_module, root_module['ns3::RngStream'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   377
    register_Ns3SeedManager_methods(root_module, root_module['ns3::SeedManager'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   378
    register_Ns3SequentialVariable_methods(root_module, root_module['ns3::SequentialVariable'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   379
    register_Ns3SimpleRefCount__Ns3Object_Ns3ObjectBase_Ns3ObjectDeleter_methods(root_module, root_module['ns3::SimpleRefCount< ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter >'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   380
    register_Ns3Simulator_methods(root_module, root_module['ns3::Simulator'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   381
    register_Ns3SystemCondition_methods(root_module, root_module['ns3::SystemCondition'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   382
    register_Ns3SystemMutex_methods(root_module, root_module['ns3::SystemMutex'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   383
    register_Ns3SystemWallClockMs_methods(root_module, root_module['ns3::SystemWallClockMs'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   384
    register_Ns3Timer_methods(root_module, root_module['ns3::Timer'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   385
    register_Ns3TimerImpl_methods(root_module, root_module['ns3::TimerImpl'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   386
    register_Ns3TriangularVariable_methods(root_module, root_module['ns3::TriangularVariable'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   387
    register_Ns3TypeId_methods(root_module, root_module['ns3::TypeId'])
7401
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   388
    register_Ns3TypeIdAttributeInformation_methods(root_module, root_module['ns3::TypeId::AttributeInformation'])
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   389
    register_Ns3TypeIdTraceSourceInformation_methods(root_module, root_module['ns3::TypeId::TraceSourceInformation'])
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   390
    register_Ns3UniformVariable_methods(root_module, root_module['ns3::UniformVariable'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   391
    register_Ns3Vector2D_methods(root_module, root_module['ns3::Vector2D'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   392
    register_Ns3Vector3D_methods(root_module, root_module['ns3::Vector3D'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   393
    register_Ns3Watchdog_methods(root_module, root_module['ns3::Watchdog'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   394
    register_Ns3WeibullVariable_methods(root_module, root_module['ns3::WeibullVariable'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   395
    register_Ns3ZetaVariable_methods(root_module, root_module['ns3::ZetaVariable'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   396
    register_Ns3ZipfVariable_methods(root_module, root_module['ns3::ZipfVariable'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   397
    register_Ns3Empty_methods(root_module, root_module['ns3::empty'])
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   398
    register_Ns3Int64x64_t_methods(root_module, root_module['ns3::int64x64_t'])
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   399
    register_Ns3ConstantVariable_methods(root_module, root_module['ns3::ConstantVariable'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   400
    register_Ns3DeterministicVariable_methods(root_module, root_module['ns3::DeterministicVariable'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   401
    register_Ns3EmpiricalVariable_methods(root_module, root_module['ns3::EmpiricalVariable'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   402
    register_Ns3ErlangVariable_methods(root_module, root_module['ns3::ErlangVariable'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   403
    register_Ns3ExponentialVariable_methods(root_module, root_module['ns3::ExponentialVariable'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   404
    register_Ns3GammaVariable_methods(root_module, root_module['ns3::GammaVariable'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   405
    register_Ns3IntEmpiricalVariable_methods(root_module, root_module['ns3::IntEmpiricalVariable'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   406
    register_Ns3LogNormalVariable_methods(root_module, root_module['ns3::LogNormalVariable'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   407
    register_Ns3NormalVariable_methods(root_module, root_module['ns3::NormalVariable'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   408
    register_Ns3Object_methods(root_module, root_module['ns3::Object'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   409
    register_Ns3ObjectAggregateIterator_methods(root_module, root_module['ns3::Object::AggregateIterator'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   410
    register_Ns3ParetoVariable_methods(root_module, root_module['ns3::ParetoVariable'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   411
    register_Ns3Scheduler_methods(root_module, root_module['ns3::Scheduler'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   412
    register_Ns3SchedulerEvent_methods(root_module, root_module['ns3::Scheduler::Event'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   413
    register_Ns3SchedulerEventKey_methods(root_module, root_module['ns3::Scheduler::EventKey'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   414
    register_Ns3SimpleRefCount__Ns3AttributeAccessor_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeAccessor__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> >'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   415
    register_Ns3SimpleRefCount__Ns3AttributeChecker_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeChecker__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter<ns3::AttributeChecker> >'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   416
    register_Ns3SimpleRefCount__Ns3AttributeValue_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeValue__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter<ns3::AttributeValue> >'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   417
    register_Ns3SimpleRefCount__Ns3CallbackImplBase_Ns3Empty_Ns3DefaultDeleter__lt__ns3CallbackImplBase__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> >'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   418
    register_Ns3SimpleRefCount__Ns3EventImpl_Ns3Empty_Ns3DefaultDeleter__lt__ns3EventImpl__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::EventImpl, ns3::empty, ns3::DefaultDeleter<ns3::EventImpl> >'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   419
    register_Ns3SimpleRefCount__Ns3FdReader_Ns3Empty_Ns3DefaultDeleter__lt__ns3FdReader__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::FdReader, ns3::empty, ns3::DefaultDeleter<ns3::FdReader> >'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   420
    register_Ns3SimpleRefCount__Ns3RefCountBase_Ns3Empty_Ns3DefaultDeleter__lt__ns3RefCountBase__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::RefCountBase, ns3::empty, ns3::DefaultDeleter<ns3::RefCountBase> >'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   421
    register_Ns3SimpleRefCount__Ns3SystemThread_Ns3Empty_Ns3DefaultDeleter__lt__ns3SystemThread__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::SystemThread, ns3::empty, ns3::DefaultDeleter<ns3::SystemThread> >'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   422
    register_Ns3SimpleRefCount__Ns3TraceSourceAccessor_Ns3Empty_Ns3DefaultDeleter__lt__ns3TraceSourceAccessor__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter<ns3::TraceSourceAccessor> >'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   423
    register_Ns3SimulatorImpl_methods(root_module, root_module['ns3::SimulatorImpl'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   424
    register_Ns3Synchronizer_methods(root_module, root_module['ns3::Synchronizer'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   425
    register_Ns3SystemThread_methods(root_module, root_module['ns3::SystemThread'])
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   426
    register_Ns3Time_methods(root_module, root_module['ns3::Time'])
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   427
    register_Ns3TraceSourceAccessor_methods(root_module, root_module['ns3::TraceSourceAccessor'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   428
    register_Ns3WallClockSynchronizer_methods(root_module, root_module['ns3::WallClockSynchronizer'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   429
    register_Ns3AttributeAccessor_methods(root_module, root_module['ns3::AttributeAccessor'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   430
    register_Ns3AttributeChecker_methods(root_module, root_module['ns3::AttributeChecker'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   431
    register_Ns3AttributeValue_methods(root_module, root_module['ns3::AttributeValue'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   432
    register_Ns3BooleanChecker_methods(root_module, root_module['ns3::BooleanChecker'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   433
    register_Ns3BooleanValue_methods(root_module, root_module['ns3::BooleanValue'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   434
    register_Ns3CalendarScheduler_methods(root_module, root_module['ns3::CalendarScheduler'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   435
    register_Ns3CallbackChecker_methods(root_module, root_module['ns3::CallbackChecker'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   436
    register_Ns3CallbackImplBase_methods(root_module, root_module['ns3::CallbackImplBase'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   437
    register_Ns3CallbackValue_methods(root_module, root_module['ns3::CallbackValue'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   438
    register_Ns3DefaultSimulatorImpl_methods(root_module, root_module['ns3::DefaultSimulatorImpl'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   439
    register_Ns3DoubleValue_methods(root_module, root_module['ns3::DoubleValue'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   440
    register_Ns3EmptyAttributeValue_methods(root_module, root_module['ns3::EmptyAttributeValue'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   441
    register_Ns3EnumChecker_methods(root_module, root_module['ns3::EnumChecker'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   442
    register_Ns3EnumValue_methods(root_module, root_module['ns3::EnumValue'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   443
    register_Ns3EventImpl_methods(root_module, root_module['ns3::EventImpl'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   444
    register_Ns3FdReader_methods(root_module, root_module['ns3::FdReader'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   445
    register_Ns3HeapScheduler_methods(root_module, root_module['ns3::HeapScheduler'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   446
    register_Ns3IntegerValue_methods(root_module, root_module['ns3::IntegerValue'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   447
    register_Ns3ListScheduler_methods(root_module, root_module['ns3::ListScheduler'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   448
    register_Ns3MapScheduler_methods(root_module, root_module['ns3::MapScheduler'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   449
    register_Ns3Ns2CalendarScheduler_methods(root_module, root_module['ns3::Ns2CalendarScheduler'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   450
    register_Ns3ObjectFactoryChecker_methods(root_module, root_module['ns3::ObjectFactoryChecker'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   451
    register_Ns3ObjectFactoryValue_methods(root_module, root_module['ns3::ObjectFactoryValue'])
7420
ca9c09839724 Add a couple of includes and rescan core module's bindings
Mitch Watrous <watrous@u.washington.edu>
parents: 7407
diff changeset
   452
    register_Ns3ObjectPtrContainerAccessor_methods(root_module, root_module['ns3::ObjectPtrContainerAccessor'])
ca9c09839724 Add a couple of includes and rescan core module's bindings
Mitch Watrous <watrous@u.washington.edu>
parents: 7407
diff changeset
   453
    register_Ns3ObjectPtrContainerChecker_methods(root_module, root_module['ns3::ObjectPtrContainerChecker'])
ca9c09839724 Add a couple of includes and rescan core module's bindings
Mitch Watrous <watrous@u.washington.edu>
parents: 7407
diff changeset
   454
    register_Ns3ObjectPtrContainerValue_methods(root_module, root_module['ns3::ObjectPtrContainerValue'])
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   455
    register_Ns3PointerChecker_methods(root_module, root_module['ns3::PointerChecker'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   456
    register_Ns3PointerValue_methods(root_module, root_module['ns3::PointerValue'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   457
    register_Ns3RandomVariableChecker_methods(root_module, root_module['ns3::RandomVariableChecker'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   458
    register_Ns3RandomVariableValue_methods(root_module, root_module['ns3::RandomVariableValue'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   459
    register_Ns3RealtimeSimulatorImpl_methods(root_module, root_module['ns3::RealtimeSimulatorImpl'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   460
    register_Ns3RefCountBase_methods(root_module, root_module['ns3::RefCountBase'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   461
    register_Ns3StringChecker_methods(root_module, root_module['ns3::StringChecker'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   462
    register_Ns3StringValue_methods(root_module, root_module['ns3::StringValue'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   463
    register_Ns3TimeChecker_methods(root_module, root_module['ns3::TimeChecker'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   464
    register_Ns3TimeValue_methods(root_module, root_module['ns3::TimeValue'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   465
    register_Ns3TypeIdChecker_methods(root_module, root_module['ns3::TypeIdChecker'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   466
    register_Ns3TypeIdValue_methods(root_module, root_module['ns3::TypeIdValue'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   467
    register_Ns3UintegerValue_methods(root_module, root_module['ns3::UintegerValue'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   468
    register_Ns3Vector2DChecker_methods(root_module, root_module['ns3::Vector2DChecker'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   469
    register_Ns3Vector2DValue_methods(root_module, root_module['ns3::Vector2DValue'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   470
    register_Ns3Vector3DChecker_methods(root_module, root_module['ns3::Vector3DChecker'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   471
    register_Ns3Vector3DValue_methods(root_module, root_module['ns3::Vector3DValue'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   472
    register_Ns3ConfigMatchContainer_methods(root_module, root_module['ns3::Config::MatchContainer'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   473
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   474
7401
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   475
def register_Ns3AttributeConstructionList_methods(root_module, cls):
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   476
    ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::AttributeConstructionList(ns3::AttributeConstructionList const & arg0) [copy constructor]
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   477
    cls.add_constructor([param('ns3::AttributeConstructionList const &', 'arg0')])
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   478
    ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::AttributeConstructionList() [constructor]
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   479
    cls.add_constructor([])
7401
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   480
    ## 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]
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   481
    cls.add_method('Add', 
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   482
                   'void', 
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   483
                   [param('std::string', 'name'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker'), param('ns3::Ptr< ns3::AttributeValue >', 'value')])
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   484
    ## attribute-construction-list.h (module 'core'): std::_List_const_iterator<ns3::AttributeConstructionList::Item> ns3::AttributeConstructionList::Begin() const [member function]
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   485
    cls.add_method('Begin', 
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   486
                   'std::_List_const_iterator< ns3::AttributeConstructionList::Item >', 
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   487
                   [], 
7401
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   488
                   is_const=True)
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   489
    ## attribute-construction-list.h (module 'core'): std::_List_const_iterator<ns3::AttributeConstructionList::Item> ns3::AttributeConstructionList::End() const [member function]
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   490
    cls.add_method('End', 
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   491
                   'std::_List_const_iterator< ns3::AttributeConstructionList::Item >', 
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   492
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   493
                   is_const=True)
7401
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   494
    ## attribute-construction-list.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::AttributeConstructionList::Find(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   495
    cls.add_method('Find', 
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   496
                   'ns3::Ptr< ns3::AttributeValue >', 
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   497
                   [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   498
                   is_const=True)
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   499
    return
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   500
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   501
def register_Ns3AttributeConstructionListItem_methods(root_module, cls):
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   502
    ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item::Item() [constructor]
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   503
    cls.add_constructor([])
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   504
    ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item::Item(ns3::AttributeConstructionList::Item const & arg0) [copy constructor]
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   505
    cls.add_constructor([param('ns3::AttributeConstructionList::Item const &', 'arg0')])
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   506
    ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item::checker [variable]
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   507
    cls.add_instance_attribute('checker', 'ns3::Ptr< ns3::AttributeChecker const >', is_const=False)
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   508
    ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item::name [variable]
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   509
    cls.add_instance_attribute('name', 'std::string', is_const=False)
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   510
    ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item::value [variable]
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   511
    cls.add_instance_attribute('value', 'ns3::Ptr< ns3::AttributeValue >', is_const=False)
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   512
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   513
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   514
def register_Ns3CallbackBase_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   515
    ## callback.h (module 'core'): ns3::CallbackBase::CallbackBase(ns3::CallbackBase const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   516
    cls.add_constructor([param('ns3::CallbackBase const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   517
    ## callback.h (module 'core'): ns3::CallbackBase::CallbackBase() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   518
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   519
    ## callback.h (module 'core'): ns3::Ptr<ns3::CallbackImplBase> ns3::CallbackBase::GetImpl() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   520
    cls.add_method('GetImpl', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   521
                   'ns3::Ptr< ns3::CallbackImplBase >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   522
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   523
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   524
    ## callback.h (module 'core'): ns3::CallbackBase::CallbackBase(ns3::Ptr<ns3::CallbackImplBase> impl) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   525
    cls.add_constructor([param('ns3::Ptr< ns3::CallbackImplBase >', 'impl')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   526
                        visibility='protected')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   527
    ## callback.h (module 'core'): static std::string ns3::CallbackBase::Demangle(std::string const & mangled) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   528
    cls.add_method('Demangle', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   529
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   530
                   [param('std::string const &', 'mangled')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   531
                   is_static=True, visibility='protected')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   532
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   533
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   534
def register_Ns3CommandLine_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   535
    ## command-line.h (module 'core'): ns3::CommandLine::CommandLine() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   536
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   537
    ## command-line.h (module 'core'): ns3::CommandLine::CommandLine(ns3::CommandLine const & cmd) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   538
    cls.add_constructor([param('ns3::CommandLine const &', 'cmd')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   539
    ## command-line.h (module 'core'): void ns3::CommandLine::AddValue(std::string const & name, std::string const & help, ns3::Callback<bool, std::string, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> callback) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   540
    cls.add_method('AddValue', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   541
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   542
                   [param('std::string const &', 'name'), param('std::string const &', 'help'), param('ns3::Callback< bool, std::string, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'callback')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   543
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   544
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   545
def register_Ns3CriticalSection_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   546
    ## system-mutex.h (module 'core'): ns3::CriticalSection::CriticalSection(ns3::CriticalSection const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   547
    cls.add_constructor([param('ns3::CriticalSection const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   548
    ## system-mutex.h (module 'core'): ns3::CriticalSection::CriticalSection(ns3::SystemMutex & mutex) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   549
    cls.add_constructor([param('ns3::SystemMutex &', 'mutex')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   550
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   551
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   552
def register_Ns3EventId_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   553
    cls.add_binary_comparison_operator('!=')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   554
    cls.add_binary_comparison_operator('==')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   555
    ## event-id.h (module 'core'): ns3::EventId::EventId(ns3::EventId const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   556
    cls.add_constructor([param('ns3::EventId const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   557
    ## event-id.h (module 'core'): ns3::EventId::EventId() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   558
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   559
    ## event-id.h (module 'core'): ns3::EventId::EventId(ns3::Ptr<ns3::EventImpl> const & impl, uint64_t ts, uint32_t context, uint32_t uid) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   560
    cls.add_constructor([param('ns3::Ptr< ns3::EventImpl > const &', 'impl'), param('uint64_t', 'ts'), param('uint32_t', 'context'), param('uint32_t', 'uid')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   561
    ## event-id.h (module 'core'): void ns3::EventId::Cancel() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   562
    cls.add_method('Cancel', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   563
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   564
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   565
    ## event-id.h (module 'core'): uint32_t ns3::EventId::GetContext() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   566
    cls.add_method('GetContext', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   567
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   568
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   569
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   570
    ## event-id.h (module 'core'): uint64_t ns3::EventId::GetTs() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   571
    cls.add_method('GetTs', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   572
                   'uint64_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   573
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   574
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   575
    ## event-id.h (module 'core'): uint32_t ns3::EventId::GetUid() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   576
    cls.add_method('GetUid', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   577
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   578
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   579
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   580
    ## event-id.h (module 'core'): bool ns3::EventId::IsExpired() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   581
    cls.add_method('IsExpired', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   582
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   583
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   584
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   585
    ## event-id.h (module 'core'): bool ns3::EventId::IsRunning() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   586
    cls.add_method('IsRunning', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   587
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   588
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   589
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   590
    ## event-id.h (module 'core'): ns3::EventImpl * ns3::EventId::PeekEventImpl() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   591
    cls.add_method('PeekEventImpl', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   592
                   'ns3::EventImpl *', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   593
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   594
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   595
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   596
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   597
def register_Ns3GlobalValue_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   598
    ## global-value.h (module 'core'): ns3::GlobalValue::GlobalValue(ns3::GlobalValue const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   599
    cls.add_constructor([param('ns3::GlobalValue const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   600
    ## global-value.h (module 'core'): ns3::GlobalValue::GlobalValue(std::string name, std::string help, ns3::AttributeValue const & initialValue, ns3::Ptr<ns3::AttributeChecker const> checker) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   601
    cls.add_constructor([param('std::string', 'name'), param('std::string', 'help'), param('ns3::AttributeValue const &', 'initialValue'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   602
    ## global-value.h (module 'core'): static __gnu_cxx::__normal_iterator<ns3::GlobalValue* const*,std::vector<ns3::GlobalValue*, std::allocator<ns3::GlobalValue*> > > ns3::GlobalValue::Begin() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   603
    cls.add_method('Begin', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   604
                   '__gnu_cxx::__normal_iterator< ns3::GlobalValue * const *, std::vector< ns3::GlobalValue * > >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   605
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   606
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   607
    ## global-value.h (module 'core'): static void ns3::GlobalValue::Bind(std::string name, ns3::AttributeValue const & value) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   608
    cls.add_method('Bind', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   609
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   610
                   [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   611
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   612
    ## global-value.h (module 'core'): static bool ns3::GlobalValue::BindFailSafe(std::string name, ns3::AttributeValue const & value) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   613
    cls.add_method('BindFailSafe', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   614
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   615
                   [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   616
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   617
    ## global-value.h (module 'core'): static __gnu_cxx::__normal_iterator<ns3::GlobalValue* const*,std::vector<ns3::GlobalValue*, std::allocator<ns3::GlobalValue*> > > ns3::GlobalValue::End() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   618
    cls.add_method('End', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   619
                   '__gnu_cxx::__normal_iterator< ns3::GlobalValue * const *, std::vector< ns3::GlobalValue * > >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   620
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   621
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   622
    ## global-value.h (module 'core'): ns3::Ptr<ns3::AttributeChecker const> ns3::GlobalValue::GetChecker() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   623
    cls.add_method('GetChecker', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   624
                   'ns3::Ptr< ns3::AttributeChecker const >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   625
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   626
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   627
    ## global-value.h (module 'core'): std::string ns3::GlobalValue::GetHelp() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   628
    cls.add_method('GetHelp', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   629
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   630
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   631
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   632
    ## global-value.h (module 'core'): std::string ns3::GlobalValue::GetName() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   633
    cls.add_method('GetName', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   634
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   635
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   636
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   637
    ## global-value.h (module 'core'): void ns3::GlobalValue::GetValue(ns3::AttributeValue & value) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   638
    cls.add_method('GetValue', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   639
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   640
                   [param('ns3::AttributeValue &', 'value')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   641
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   642
    ## global-value.h (module 'core'): static void ns3::GlobalValue::GetValueByName(std::string name, ns3::AttributeValue & value) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   643
    cls.add_method('GetValueByName', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   644
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   645
                   [param('std::string', 'name'), param('ns3::AttributeValue &', 'value')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   646
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   647
    ## global-value.h (module 'core'): static bool ns3::GlobalValue::GetValueByNameFailSafe(std::string name, ns3::AttributeValue & value) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   648
    cls.add_method('GetValueByNameFailSafe', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   649
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   650
                   [param('std::string', 'name'), param('ns3::AttributeValue &', 'value')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   651
                   is_static=True)
7401
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   652
    ## global-value.h (module 'core'): void ns3::GlobalValue::ResetInitialValue() [member function]
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   653
    cls.add_method('ResetInitialValue', 
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   654
                   'void', 
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   655
                   [])
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   656
    ## global-value.h (module 'core'): bool ns3::GlobalValue::SetValue(ns3::AttributeValue const & value) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   657
    cls.add_method('SetValue', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   658
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   659
                   [param('ns3::AttributeValue const &', 'value')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   660
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   661
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   662
def register_Ns3IntToType__0_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   663
    ## int-to-type.h (module 'core'): ns3::IntToType<0>::IntToType() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   664
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   665
    ## int-to-type.h (module 'core'): ns3::IntToType<0>::IntToType(ns3::IntToType<0> const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   666
    cls.add_constructor([param('ns3::IntToType< 0 > const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   667
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   668
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   669
def register_Ns3IntToType__1_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   670
    ## int-to-type.h (module 'core'): ns3::IntToType<1>::IntToType() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   671
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   672
    ## int-to-type.h (module 'core'): ns3::IntToType<1>::IntToType(ns3::IntToType<1> const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   673
    cls.add_constructor([param('ns3::IntToType< 1 > const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   674
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   675
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   676
def register_Ns3IntToType__2_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   677
    ## int-to-type.h (module 'core'): ns3::IntToType<2>::IntToType() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   678
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   679
    ## int-to-type.h (module 'core'): ns3::IntToType<2>::IntToType(ns3::IntToType<2> const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   680
    cls.add_constructor([param('ns3::IntToType< 2 > const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   681
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   682
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   683
def register_Ns3IntToType__3_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   684
    ## int-to-type.h (module 'core'): ns3::IntToType<3>::IntToType() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   685
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   686
    ## int-to-type.h (module 'core'): ns3::IntToType<3>::IntToType(ns3::IntToType<3> const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   687
    cls.add_constructor([param('ns3::IntToType< 3 > const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   688
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   689
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   690
def register_Ns3IntToType__4_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   691
    ## int-to-type.h (module 'core'): ns3::IntToType<4>::IntToType() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   692
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   693
    ## int-to-type.h (module 'core'): ns3::IntToType<4>::IntToType(ns3::IntToType<4> const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   694
    cls.add_constructor([param('ns3::IntToType< 4 > const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   695
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   696
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   697
def register_Ns3IntToType__5_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   698
    ## int-to-type.h (module 'core'): ns3::IntToType<5>::IntToType() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   699
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   700
    ## int-to-type.h (module 'core'): ns3::IntToType<5>::IntToType(ns3::IntToType<5> const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   701
    cls.add_constructor([param('ns3::IntToType< 5 > const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   702
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   703
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   704
def register_Ns3IntToType__6_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   705
    ## int-to-type.h (module 'core'): ns3::IntToType<6>::IntToType() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   706
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   707
    ## int-to-type.h (module 'core'): ns3::IntToType<6>::IntToType(ns3::IntToType<6> const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   708
    cls.add_constructor([param('ns3::IntToType< 6 > const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   709
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   710
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   711
def register_Ns3LogComponent_methods(root_module, cls):
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   712
    ## log.h (module 'core'): ns3::LogComponent::LogComponent(ns3::LogComponent const & arg0) [copy constructor]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   713
    cls.add_constructor([param('ns3::LogComponent const &', 'arg0')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   714
    ## log.h (module 'core'): ns3::LogComponent::LogComponent(char const * name) [constructor]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   715
    cls.add_constructor([param('char const *', 'name')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   716
    ## log.h (module 'core'): void ns3::LogComponent::Disable(ns3::LogLevel level) [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   717
    cls.add_method('Disable', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   718
                   'void', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   719
                   [param('ns3::LogLevel', 'level')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   720
    ## log.h (module 'core'): void ns3::LogComponent::Enable(ns3::LogLevel level) [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   721
    cls.add_method('Enable', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   722
                   'void', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   723
                   [param('ns3::LogLevel', 'level')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   724
    ## log.h (module 'core'): void ns3::LogComponent::EnvVarCheck(char const * name) [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   725
    cls.add_method('EnvVarCheck', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   726
                   'void', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   727
                   [param('char const *', 'name')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   728
    ## log.h (module 'core'): bool ns3::LogComponent::IsEnabled(ns3::LogLevel level) const [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   729
    cls.add_method('IsEnabled', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   730
                   'bool', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   731
                   [param('ns3::LogLevel', 'level')], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   732
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   733
    ## log.h (module 'core'): bool ns3::LogComponent::IsNoneEnabled() const [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   734
    cls.add_method('IsNoneEnabled', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   735
                   'bool', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   736
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   737
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   738
    ## log.h (module 'core'): char const * ns3::LogComponent::Name() const [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   739
    cls.add_method('Name', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   740
                   'char const *', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   741
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   742
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   743
    return
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   744
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   745
def register_Ns3Names_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   746
    ## names.h (module 'core'): ns3::Names::Names() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   747
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   748
    ## names.h (module 'core'): ns3::Names::Names(ns3::Names const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   749
    cls.add_constructor([param('ns3::Names const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   750
    ## names.h (module 'core'): static void ns3::Names::Add(std::string name, ns3::Ptr<ns3::Object> object) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   751
    cls.add_method('Add', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   752
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   753
                   [param('std::string', 'name'), param('ns3::Ptr< ns3::Object >', 'object')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   754
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   755
    ## names.h (module 'core'): static void ns3::Names::Add(std::string path, std::string name, ns3::Ptr<ns3::Object> object) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   756
    cls.add_method('Add', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   757
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   758
                   [param('std::string', 'path'), param('std::string', 'name'), param('ns3::Ptr< ns3::Object >', 'object')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   759
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   760
    ## names.h (module 'core'): static void ns3::Names::Add(ns3::Ptr<ns3::Object> context, std::string name, ns3::Ptr<ns3::Object> object) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   761
    cls.add_method('Add', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   762
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   763
                   [param('ns3::Ptr< ns3::Object >', 'context'), param('std::string', 'name'), param('ns3::Ptr< ns3::Object >', 'object')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   764
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   765
    ## names.h (module 'core'): static void ns3::Names::Clear() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   766
    cls.add_method('Clear', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   767
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   768
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   769
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   770
    ## names.h (module 'core'): static std::string ns3::Names::FindName(ns3::Ptr<ns3::Object> object) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   771
    cls.add_method('FindName', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   772
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   773
                   [param('ns3::Ptr< ns3::Object >', 'object')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   774
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   775
    ## names.h (module 'core'): static std::string ns3::Names::FindPath(ns3::Ptr<ns3::Object> object) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   776
    cls.add_method('FindPath', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   777
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   778
                   [param('ns3::Ptr< ns3::Object >', 'object')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   779
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   780
    ## names.h (module 'core'): static void ns3::Names::Rename(std::string oldpath, std::string newname) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   781
    cls.add_method('Rename', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   782
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   783
                   [param('std::string', 'oldpath'), param('std::string', 'newname')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   784
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   785
    ## names.h (module 'core'): static void ns3::Names::Rename(std::string path, std::string oldname, std::string newname) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   786
    cls.add_method('Rename', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   787
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   788
                   [param('std::string', 'path'), param('std::string', 'oldname'), param('std::string', 'newname')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   789
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   790
    ## names.h (module 'core'): static void ns3::Names::Rename(ns3::Ptr<ns3::Object> context, std::string oldname, std::string newname) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   791
    cls.add_method('Rename', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   792
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   793
                   [param('ns3::Ptr< ns3::Object >', 'context'), param('std::string', 'oldname'), param('std::string', 'newname')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   794
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   795
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   796
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   797
def register_Ns3ObjectBase_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   798
    ## object-base.h (module 'core'): ns3::ObjectBase::ObjectBase() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   799
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   800
    ## object-base.h (module 'core'): ns3::ObjectBase::ObjectBase(ns3::ObjectBase const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   801
    cls.add_constructor([param('ns3::ObjectBase const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   802
    ## object-base.h (module 'core'): void ns3::ObjectBase::GetAttribute(std::string name, ns3::AttributeValue & value) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   803
    cls.add_method('GetAttribute', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   804
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   805
                   [param('std::string', 'name'), param('ns3::AttributeValue &', 'value')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   806
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   807
    ## object-base.h (module 'core'): bool ns3::ObjectBase::GetAttributeFailSafe(std::string name, ns3::AttributeValue & attribute) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   808
    cls.add_method('GetAttributeFailSafe', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   809
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   810
                   [param('std::string', 'name'), param('ns3::AttributeValue &', 'attribute')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   811
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   812
    ## object-base.h (module 'core'): ns3::TypeId ns3::ObjectBase::GetInstanceTypeId() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   813
    cls.add_method('GetInstanceTypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   814
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   815
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   816
                   is_pure_virtual=True, is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   817
    ## object-base.h (module 'core'): static ns3::TypeId ns3::ObjectBase::GetTypeId() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   818
    cls.add_method('GetTypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   819
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   820
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   821
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   822
    ## object-base.h (module 'core'): void ns3::ObjectBase::SetAttribute(std::string name, ns3::AttributeValue const & value) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   823
    cls.add_method('SetAttribute', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   824
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   825
                   [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   826
    ## object-base.h (module 'core'): bool ns3::ObjectBase::SetAttributeFailSafe(std::string name, ns3::AttributeValue const & value) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   827
    cls.add_method('SetAttributeFailSafe', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   828
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   829
                   [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   830
    ## object-base.h (module 'core'): bool ns3::ObjectBase::TraceConnect(std::string name, std::string context, ns3::CallbackBase const & cb) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   831
    cls.add_method('TraceConnect', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   832
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   833
                   [param('std::string', 'name'), param('std::string', 'context'), param('ns3::CallbackBase const &', 'cb')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   834
    ## object-base.h (module 'core'): bool ns3::ObjectBase::TraceConnectWithoutContext(std::string name, ns3::CallbackBase const & cb) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   835
    cls.add_method('TraceConnectWithoutContext', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   836
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   837
                   [param('std::string', 'name'), param('ns3::CallbackBase const &', 'cb')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   838
    ## object-base.h (module 'core'): bool ns3::ObjectBase::TraceDisconnect(std::string name, std::string context, ns3::CallbackBase const & cb) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   839
    cls.add_method('TraceDisconnect', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   840
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   841
                   [param('std::string', 'name'), param('std::string', 'context'), param('ns3::CallbackBase const &', 'cb')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   842
    ## object-base.h (module 'core'): bool ns3::ObjectBase::TraceDisconnectWithoutContext(std::string name, ns3::CallbackBase const & cb) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   843
    cls.add_method('TraceDisconnectWithoutContext', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   844
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   845
                   [param('std::string', 'name'), param('ns3::CallbackBase const &', 'cb')])
7401
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   846
    ## object-base.h (module 'core'): void ns3::ObjectBase::ConstructSelf(ns3::AttributeConstructionList const & attributes) [member function]
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   847
    cls.add_method('ConstructSelf', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   848
                   'void', 
7401
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   849
                   [param('ns3::AttributeConstructionList const &', 'attributes')], 
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   850
                   visibility='protected')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   851
    ## object-base.h (module 'core'): void ns3::ObjectBase::NotifyConstructionCompleted() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   852
    cls.add_method('NotifyConstructionCompleted', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   853
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   854
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   855
                   visibility='protected', is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   856
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   857
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   858
def register_Ns3ObjectDeleter_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   859
    ## object.h (module 'core'): ns3::ObjectDeleter::ObjectDeleter() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   860
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   861
    ## object.h (module 'core'): ns3::ObjectDeleter::ObjectDeleter(ns3::ObjectDeleter const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   862
    cls.add_constructor([param('ns3::ObjectDeleter const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   863
    ## object.h (module 'core'): static void ns3::ObjectDeleter::Delete(ns3::Object * object) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   864
    cls.add_method('Delete', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   865
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   866
                   [param('ns3::Object *', 'object')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   867
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   868
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   869
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   870
def register_Ns3ObjectFactory_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   871
    cls.add_output_stream_operator()
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   872
    ## object-factory.h (module 'core'): ns3::ObjectFactory::ObjectFactory(ns3::ObjectFactory const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   873
    cls.add_constructor([param('ns3::ObjectFactory const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   874
    ## object-factory.h (module 'core'): ns3::ObjectFactory::ObjectFactory() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   875
    cls.add_constructor([])
7401
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   876
    ## object-factory.h (module 'core'): ns3::ObjectFactory::ObjectFactory(std::string typeId) [constructor]
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   877
    cls.add_constructor([param('std::string', 'typeId')])
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   878
    ## object-factory.h (module 'core'): ns3::Ptr<ns3::Object> ns3::ObjectFactory::Create() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   879
    cls.add_method('Create', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   880
                   'ns3::Ptr< ns3::Object >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   881
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   882
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   883
    ## object-factory.h (module 'core'): ns3::TypeId ns3::ObjectFactory::GetTypeId() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   884
    cls.add_method('GetTypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   885
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   886
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   887
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   888
    ## object-factory.h (module 'core'): void ns3::ObjectFactory::Set(std::string name, ns3::AttributeValue const & value) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   889
    cls.add_method('Set', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   890
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   891
                   [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   892
    ## object-factory.h (module 'core'): void ns3::ObjectFactory::SetTypeId(ns3::TypeId tid) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   893
    cls.add_method('SetTypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   894
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   895
                   [param('ns3::TypeId', 'tid')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   896
    ## object-factory.h (module 'core'): void ns3::ObjectFactory::SetTypeId(char const * tid) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   897
    cls.add_method('SetTypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   898
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   899
                   [param('char const *', 'tid')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   900
    ## object-factory.h (module 'core'): void ns3::ObjectFactory::SetTypeId(std::string tid) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   901
    cls.add_method('SetTypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   902
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   903
                   [param('std::string', 'tid')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   904
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   905
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   906
def register_Ns3RandomVariable_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   907
    cls.add_output_stream_operator()
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   908
    ## random-variable.h (module 'core'): ns3::RandomVariable::RandomVariable() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   909
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   910
    ## random-variable.h (module 'core'): ns3::RandomVariable::RandomVariable(ns3::RandomVariable const & o) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   911
    cls.add_constructor([param('ns3::RandomVariable const &', 'o')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   912
    ## random-variable.h (module 'core'): uint32_t ns3::RandomVariable::GetInteger() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   913
    cls.add_method('GetInteger', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   914
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   915
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   916
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   917
    ## random-variable.h (module 'core'): double ns3::RandomVariable::GetValue() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   918
    cls.add_method('GetValue', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   919
                   'double', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   920
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   921
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   922
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   923
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   924
def register_Ns3RngStream_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   925
    ## rng-stream.h (module 'core'): ns3::RngStream::RngStream() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   926
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   927
    ## rng-stream.h (module 'core'): ns3::RngStream::RngStream(ns3::RngStream const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   928
    cls.add_constructor([param('ns3::RngStream const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   929
    ## rng-stream.h (module 'core'): void ns3::RngStream::AdvanceState(int32_t e, int32_t c) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   930
    cls.add_method('AdvanceState', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   931
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   932
                   [param('int32_t', 'e'), param('int32_t', 'c')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   933
    ## rng-stream.h (module 'core'): static bool ns3::RngStream::CheckSeed(uint32_t const * seed) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   934
    cls.add_method('CheckSeed', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   935
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   936
                   [param('uint32_t const *', 'seed')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   937
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   938
    ## rng-stream.h (module 'core'): static bool ns3::RngStream::CheckSeed(uint32_t seed) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   939
    cls.add_method('CheckSeed', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   940
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   941
                   [param('uint32_t', 'seed')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   942
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   943
    ## rng-stream.h (module 'core'): static uint32_t ns3::RngStream::GetPackageRun() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   944
    cls.add_method('GetPackageRun', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   945
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   946
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   947
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   948
    ## rng-stream.h (module 'core'): static void ns3::RngStream::GetPackageSeed(uint32_t * seed) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   949
    cls.add_method('GetPackageSeed', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   950
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   951
                   [param('uint32_t *', 'seed')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   952
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   953
    ## rng-stream.h (module 'core'): void ns3::RngStream::GetState(uint32_t * seed) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   954
    cls.add_method('GetState', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   955
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   956
                   [param('uint32_t *', 'seed')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   957
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   958
    ## rng-stream.h (module 'core'): void ns3::RngStream::IncreasedPrecis(bool incp) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   959
    cls.add_method('IncreasedPrecis', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   960
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   961
                   [param('bool', 'incp')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   962
    ## rng-stream.h (module 'core'): void ns3::RngStream::InitializeStream() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   963
    cls.add_method('InitializeStream', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   964
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   965
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   966
    ## rng-stream.h (module 'core'): int32_t ns3::RngStream::RandInt(int32_t i, int32_t j) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   967
    cls.add_method('RandInt', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   968
                   'int32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   969
                   [param('int32_t', 'i'), param('int32_t', 'j')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   970
    ## rng-stream.h (module 'core'): double ns3::RngStream::RandU01() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   971
    cls.add_method('RandU01', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   972
                   'double', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   973
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   974
    ## rng-stream.h (module 'core'): void ns3::RngStream::ResetNextSubstream() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   975
    cls.add_method('ResetNextSubstream', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   976
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   977
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   978
    ## rng-stream.h (module 'core'): void ns3::RngStream::ResetNthSubstream(uint32_t N) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   979
    cls.add_method('ResetNthSubstream', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   980
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   981
                   [param('uint32_t', 'N')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   982
    ## rng-stream.h (module 'core'): void ns3::RngStream::ResetStartStream() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   983
    cls.add_method('ResetStartStream', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   984
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   985
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   986
    ## rng-stream.h (module 'core'): void ns3::RngStream::ResetStartSubstream() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   987
    cls.add_method('ResetStartSubstream', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   988
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   989
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   990
    ## rng-stream.h (module 'core'): void ns3::RngStream::SetAntithetic(bool a) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   991
    cls.add_method('SetAntithetic', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   992
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   993
                   [param('bool', 'a')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   994
    ## rng-stream.h (module 'core'): static void ns3::RngStream::SetPackageRun(uint32_t run) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   995
    cls.add_method('SetPackageRun', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   996
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   997
                   [param('uint32_t', 'run')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   998
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   999
    ## rng-stream.h (module 'core'): static bool ns3::RngStream::SetPackageSeed(uint32_t seed) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1000
    cls.add_method('SetPackageSeed', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1001
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1002
                   [param('uint32_t', 'seed')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1003
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1004
    ## rng-stream.h (module 'core'): static bool ns3::RngStream::SetPackageSeed(uint32_t const * seed) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1005
    cls.add_method('SetPackageSeed', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1006
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1007
                   [param('uint32_t const *', 'seed')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1008
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1009
    ## rng-stream.h (module 'core'): bool ns3::RngStream::SetSeeds(uint32_t const * seed) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1010
    cls.add_method('SetSeeds', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1011
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1012
                   [param('uint32_t const *', 'seed')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1013
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1014
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1015
def register_Ns3SeedManager_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1016
    ## random-variable.h (module 'core'): ns3::SeedManager::SeedManager() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1017
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1018
    ## random-variable.h (module 'core'): ns3::SeedManager::SeedManager(ns3::SeedManager const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1019
    cls.add_constructor([param('ns3::SeedManager const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1020
    ## random-variable.h (module 'core'): static bool ns3::SeedManager::CheckSeed(uint32_t seed) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1021
    cls.add_method('CheckSeed', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1022
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1023
                   [param('uint32_t', 'seed')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1024
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1025
    ## random-variable.h (module 'core'): static uint32_t ns3::SeedManager::GetRun() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1026
    cls.add_method('GetRun', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1027
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1028
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1029
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1030
    ## random-variable.h (module 'core'): static uint32_t ns3::SeedManager::GetSeed() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1031
    cls.add_method('GetSeed', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1032
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1033
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1034
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1035
    ## random-variable.h (module 'core'): static void ns3::SeedManager::SetRun(uint32_t run) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1036
    cls.add_method('SetRun', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1037
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1038
                   [param('uint32_t', 'run')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1039
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1040
    ## random-variable.h (module 'core'): static void ns3::SeedManager::SetSeed(uint32_t seed) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1041
    cls.add_method('SetSeed', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1042
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1043
                   [param('uint32_t', 'seed')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1044
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1045
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1046
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1047
def register_Ns3SequentialVariable_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1048
    ## random-variable.h (module 'core'): ns3::SequentialVariable::SequentialVariable(ns3::SequentialVariable const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1049
    cls.add_constructor([param('ns3::SequentialVariable const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1050
    ## random-variable.h (module 'core'): ns3::SequentialVariable::SequentialVariable(double f, double l, double i=1, uint32_t c=1) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1051
    cls.add_constructor([param('double', 'f'), param('double', 'l'), param('double', 'i', default_value='1'), param('uint32_t', 'c', default_value='1')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1052
    ## random-variable.h (module 'core'): ns3::SequentialVariable::SequentialVariable(double f, double l, ns3::RandomVariable const & i, uint32_t c=1) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1053
    cls.add_constructor([param('double', 'f'), param('double', 'l'), param('ns3::RandomVariable const &', 'i'), param('uint32_t', 'c', default_value='1')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1054
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1055
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1056
def register_Ns3SimpleRefCount__Ns3Object_Ns3ObjectBase_Ns3ObjectDeleter_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1057
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter>::SimpleRefCount() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1058
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1059
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter>::SimpleRefCount(ns3::SimpleRefCount<ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter> const & o) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1060
    cls.add_constructor([param('ns3::SimpleRefCount< ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter > const &', 'o')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1061
    ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter>::Cleanup() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1062
    cls.add_method('Cleanup', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1063
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1064
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1065
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1066
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1067
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1068
def register_Ns3Simulator_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1069
    ## simulator.h (module 'core'): ns3::Simulator::Simulator(ns3::Simulator const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1070
    cls.add_constructor([param('ns3::Simulator const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1071
    ## simulator.h (module 'core'): static void ns3::Simulator::Cancel(ns3::EventId const & id) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1072
    cls.add_method('Cancel', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1073
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1074
                   [param('ns3::EventId const &', 'id')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1075
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1076
    ## simulator.h (module 'core'): static void ns3::Simulator::Destroy() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1077
    cls.add_method('Destroy', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1078
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1079
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1080
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1081
    ## simulator.h (module 'core'): static uint32_t ns3::Simulator::GetContext() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1082
    cls.add_method('GetContext', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1083
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1084
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1085
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1086
    ## simulator.h (module 'core'): static ns3::Time ns3::Simulator::GetDelayLeft(ns3::EventId const & id) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1087
    cls.add_method('GetDelayLeft', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1088
                   'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1089
                   [param('ns3::EventId const &', 'id')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1090
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1091
    ## simulator.h (module 'core'): static ns3::Ptr<ns3::SimulatorImpl> ns3::Simulator::GetImplementation() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1092
    cls.add_method('GetImplementation', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1093
                   'ns3::Ptr< ns3::SimulatorImpl >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1094
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1095
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1096
    ## simulator.h (module 'core'): static ns3::Time ns3::Simulator::GetMaximumSimulationTime() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1097
    cls.add_method('GetMaximumSimulationTime', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1098
                   'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1099
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1100
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1101
    ## simulator.h (module 'core'): static uint32_t ns3::Simulator::GetSystemId() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1102
    cls.add_method('GetSystemId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1103
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1104
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1105
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1106
    ## simulator.h (module 'core'): static bool ns3::Simulator::IsExpired(ns3::EventId const & id) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1107
    cls.add_method('IsExpired', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1108
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1109
                   [param('ns3::EventId const &', 'id')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1110
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1111
    ## simulator.h (module 'core'): static bool ns3::Simulator::IsFinished() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1112
    cls.add_method('IsFinished', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1113
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1114
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1115
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1116
    ## simulator.h (module 'core'): static ns3::Time ns3::Simulator::Next() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1117
    cls.add_method('Next', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1118
                   'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1119
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1120
                   is_static=True, deprecated=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1121
    ## simulator.h (module 'core'): static ns3::Time ns3::Simulator::Now() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1122
    cls.add_method('Now', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1123
                   'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1124
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1125
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1126
    ## simulator.h (module 'core'): static void ns3::Simulator::Remove(ns3::EventId const & id) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1127
    cls.add_method('Remove', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1128
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1129
                   [param('ns3::EventId const &', 'id')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1130
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1131
    ## simulator.h (module 'core'): static void ns3::Simulator::RunOneEvent() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1132
    cls.add_method('RunOneEvent', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1133
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1134
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1135
                   is_static=True, deprecated=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1136
    ## simulator.h (module 'core'): static void ns3::Simulator::SetImplementation(ns3::Ptr<ns3::SimulatorImpl> impl) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1137
    cls.add_method('SetImplementation', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1138
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1139
                   [param('ns3::Ptr< ns3::SimulatorImpl >', 'impl')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1140
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1141
    ## simulator.h (module 'core'): static void ns3::Simulator::SetScheduler(ns3::ObjectFactory schedulerFactory) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1142
    cls.add_method('SetScheduler', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1143
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1144
                   [param('ns3::ObjectFactory', 'schedulerFactory')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1145
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1146
    ## simulator.h (module 'core'): static void ns3::Simulator::Stop() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1147
    cls.add_method('Stop', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1148
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1149
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1150
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1151
    ## simulator.h (module 'core'): static void ns3::Simulator::Stop(ns3::Time const & time) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1152
    cls.add_method('Stop', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1153
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1154
                   [param('ns3::Time const &', 'time')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1155
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1156
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1157
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1158
def register_Ns3SystemCondition_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1159
    ## system-condition.h (module 'core'): ns3::SystemCondition::SystemCondition(ns3::SystemCondition const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1160
    cls.add_constructor([param('ns3::SystemCondition const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1161
    ## system-condition.h (module 'core'): ns3::SystemCondition::SystemCondition() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1162
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1163
    ## system-condition.h (module 'core'): void ns3::SystemCondition::Broadcast() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1164
    cls.add_method('Broadcast', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1165
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1166
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1167
    ## system-condition.h (module 'core'): bool ns3::SystemCondition::GetCondition() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1168
    cls.add_method('GetCondition', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1169
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1170
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1171
    ## system-condition.h (module 'core'): void ns3::SystemCondition::SetCondition(bool condition) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1172
    cls.add_method('SetCondition', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1173
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1174
                   [param('bool', 'condition')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1175
    ## system-condition.h (module 'core'): void ns3::SystemCondition::Signal() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1176
    cls.add_method('Signal', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1177
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1178
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1179
    ## system-condition.h (module 'core'): bool ns3::SystemCondition::TimedWait(uint64_t ns) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1180
    cls.add_method('TimedWait', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1181
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1182
                   [param('uint64_t', 'ns')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1183
    ## system-condition.h (module 'core'): void ns3::SystemCondition::Wait() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1184
    cls.add_method('Wait', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1185
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1186
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1187
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1188
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1189
def register_Ns3SystemMutex_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1190
    ## system-mutex.h (module 'core'): ns3::SystemMutex::SystemMutex(ns3::SystemMutex const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1191
    cls.add_constructor([param('ns3::SystemMutex const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1192
    ## system-mutex.h (module 'core'): ns3::SystemMutex::SystemMutex() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1193
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1194
    ## system-mutex.h (module 'core'): void ns3::SystemMutex::Lock() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1195
    cls.add_method('Lock', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1196
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1197
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1198
    ## system-mutex.h (module 'core'): void ns3::SystemMutex::Unlock() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1199
    cls.add_method('Unlock', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1200
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1201
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1202
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1203
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1204
def register_Ns3SystemWallClockMs_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1205
    ## system-wall-clock-ms.h (module 'core'): ns3::SystemWallClockMs::SystemWallClockMs(ns3::SystemWallClockMs const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1206
    cls.add_constructor([param('ns3::SystemWallClockMs const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1207
    ## system-wall-clock-ms.h (module 'core'): ns3::SystemWallClockMs::SystemWallClockMs() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1208
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1209
    ## system-wall-clock-ms.h (module 'core'): int64_t ns3::SystemWallClockMs::End() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1210
    cls.add_method('End', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1211
                   'int64_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1212
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1213
    ## system-wall-clock-ms.h (module 'core'): int64_t ns3::SystemWallClockMs::GetElapsedReal() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1214
    cls.add_method('GetElapsedReal', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1215
                   'int64_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1216
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1217
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1218
    ## system-wall-clock-ms.h (module 'core'): int64_t ns3::SystemWallClockMs::GetElapsedSystem() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1219
    cls.add_method('GetElapsedSystem', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1220
                   'int64_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1221
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1222
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1223
    ## system-wall-clock-ms.h (module 'core'): int64_t ns3::SystemWallClockMs::GetElapsedUser() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1224
    cls.add_method('GetElapsedUser', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1225
                   'int64_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1226
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1227
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1228
    ## system-wall-clock-ms.h (module 'core'): void ns3::SystemWallClockMs::Start() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1229
    cls.add_method('Start', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1230
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1231
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1232
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1233
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1234
def register_Ns3Timer_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1235
    ## timer.h (module 'core'): ns3::Timer::Timer(ns3::Timer const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1236
    cls.add_constructor([param('ns3::Timer const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1237
    ## timer.h (module 'core'): ns3::Timer::Timer() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1238
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1239
    ## timer.h (module 'core'): ns3::Timer::Timer(ns3::Timer::DestroyPolicy destroyPolicy) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1240
    cls.add_constructor([param('ns3::Timer::DestroyPolicy', 'destroyPolicy')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1241
    ## timer.h (module 'core'): void ns3::Timer::Cancel() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1242
    cls.add_method('Cancel', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1243
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1244
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1245
    ## timer.h (module 'core'): ns3::Time ns3::Timer::GetDelay() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1246
    cls.add_method('GetDelay', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1247
                   'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1248
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1249
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1250
    ## timer.h (module 'core'): ns3::Time ns3::Timer::GetDelayLeft() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1251
    cls.add_method('GetDelayLeft', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1252
                   'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1253
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1254
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1255
    ## timer.h (module 'core'): ns3::Timer::State ns3::Timer::GetState() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1256
    cls.add_method('GetState', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1257
                   'ns3::Timer::State', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1258
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1259
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1260
    ## timer.h (module 'core'): bool ns3::Timer::IsExpired() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1261
    cls.add_method('IsExpired', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1262
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1263
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1264
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1265
    ## timer.h (module 'core'): bool ns3::Timer::IsRunning() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1266
    cls.add_method('IsRunning', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1267
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1268
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1269
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1270
    ## timer.h (module 'core'): bool ns3::Timer::IsSuspended() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1271
    cls.add_method('IsSuspended', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1272
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1273
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1274
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1275
    ## timer.h (module 'core'): void ns3::Timer::Remove() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1276
    cls.add_method('Remove', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1277
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1278
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1279
    ## timer.h (module 'core'): void ns3::Timer::Resume() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1280
    cls.add_method('Resume', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1281
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1282
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1283
    ## timer.h (module 'core'): void ns3::Timer::Schedule() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1284
    cls.add_method('Schedule', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1285
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1286
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1287
    ## timer.h (module 'core'): void ns3::Timer::Schedule(ns3::Time delay) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1288
    cls.add_method('Schedule', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1289
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1290
                   [param('ns3::Time', 'delay')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1291
    ## timer.h (module 'core'): void ns3::Timer::SetDelay(ns3::Time const & delay) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1292
    cls.add_method('SetDelay', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1293
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1294
                   [param('ns3::Time const &', 'delay')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1295
    ## timer.h (module 'core'): void ns3::Timer::Suspend() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1296
    cls.add_method('Suspend', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1297
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1298
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1299
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1300
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1301
def register_Ns3TimerImpl_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1302
    ## timer-impl.h (module 'core'): ns3::TimerImpl::TimerImpl() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1303
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1304
    ## timer-impl.h (module 'core'): ns3::TimerImpl::TimerImpl(ns3::TimerImpl const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1305
    cls.add_constructor([param('ns3::TimerImpl const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1306
    ## timer-impl.h (module 'core'): void ns3::TimerImpl::Invoke() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1307
    cls.add_method('Invoke', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1308
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1309
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1310
                   is_pure_virtual=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1311
    ## timer-impl.h (module 'core'): ns3::EventId ns3::TimerImpl::Schedule(ns3::Time const & delay) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1312
    cls.add_method('Schedule', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1313
                   'ns3::EventId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1314
                   [param('ns3::Time const &', 'delay')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1315
                   is_pure_virtual=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1316
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1317
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1318
def register_Ns3TriangularVariable_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1319
    ## random-variable.h (module 'core'): ns3::TriangularVariable::TriangularVariable(ns3::TriangularVariable const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1320
    cls.add_constructor([param('ns3::TriangularVariable const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1321
    ## random-variable.h (module 'core'): ns3::TriangularVariable::TriangularVariable() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1322
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1323
    ## random-variable.h (module 'core'): ns3::TriangularVariable::TriangularVariable(double s, double l, double mean) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1324
    cls.add_constructor([param('double', 's'), param('double', 'l'), param('double', 'mean')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1325
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1326
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1327
def register_Ns3TypeId_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1328
    cls.add_binary_comparison_operator('<')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1329
    cls.add_binary_comparison_operator('!=')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1330
    cls.add_output_stream_operator()
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1331
    cls.add_binary_comparison_operator('==')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1332
    ## type-id.h (module 'core'): ns3::TypeId::TypeId(char const * name) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1333
    cls.add_constructor([param('char const *', 'name')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1334
    ## type-id.h (module 'core'): ns3::TypeId::TypeId() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1335
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1336
    ## type-id.h (module 'core'): ns3::TypeId::TypeId(ns3::TypeId const & o) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1337
    cls.add_constructor([param('ns3::TypeId const &', 'o')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1338
    ## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::AddAttribute(std::string name, std::string help, ns3::AttributeValue const & initialValue, ns3::Ptr<ns3::AttributeAccessor const> accessor, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1339
    cls.add_method('AddAttribute', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1340
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1341
                   [param('std::string', 'name'), param('std::string', 'help'), param('ns3::AttributeValue const &', 'initialValue'), param('ns3::Ptr< ns3::AttributeAccessor const >', 'accessor'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1342
    ## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::AddAttribute(std::string name, std::string help, uint32_t flags, ns3::AttributeValue const & initialValue, ns3::Ptr<ns3::AttributeAccessor const> accessor, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1343
    cls.add_method('AddAttribute', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1344
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1345
                   [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')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1346
    ## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::AddTraceSource(std::string name, std::string help, ns3::Ptr<ns3::TraceSourceAccessor const> accessor) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1347
    cls.add_method('AddTraceSource', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1348
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1349
                   [param('std::string', 'name'), param('std::string', 'help'), param('ns3::Ptr< ns3::TraceSourceAccessor const >', 'accessor')])
7401
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1350
    ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation ns3::TypeId::GetAttribute(uint32_t i) const [member function]
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1351
    cls.add_method('GetAttribute', 
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1352
                   'ns3::TypeId::AttributeInformation', 
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1353
                   [param('uint32_t', 'i')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1354
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1355
    ## type-id.h (module 'core'): std::string ns3::TypeId::GetAttributeFullName(uint32_t i) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1356
    cls.add_method('GetAttributeFullName', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1357
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1358
                   [param('uint32_t', 'i')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1359
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1360
    ## type-id.h (module 'core'): uint32_t ns3::TypeId::GetAttributeN() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1361
    cls.add_method('GetAttributeN', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1362
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1363
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1364
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1365
    ## type-id.h (module 'core'): ns3::Callback<ns3::ObjectBase*,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty> ns3::TypeId::GetConstructor() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1366
    cls.add_method('GetConstructor', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1367
                   'ns3::Callback< ns3::ObjectBase *, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1368
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1369
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1370
    ## type-id.h (module 'core'): std::string ns3::TypeId::GetGroupName() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1371
    cls.add_method('GetGroupName', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1372
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1373
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1374
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1375
    ## type-id.h (module 'core'): std::string ns3::TypeId::GetName() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1376
    cls.add_method('GetName', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1377
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1378
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1379
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1380
    ## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::GetParent() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1381
    cls.add_method('GetParent', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1382
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1383
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1384
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1385
    ## type-id.h (module 'core'): static ns3::TypeId ns3::TypeId::GetRegistered(uint32_t i) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1386
    cls.add_method('GetRegistered', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1387
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1388
                   [param('uint32_t', 'i')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1389
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1390
    ## type-id.h (module 'core'): static uint32_t ns3::TypeId::GetRegisteredN() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1391
    cls.add_method('GetRegisteredN', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1392
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1393
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1394
                   is_static=True)
7401
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1395
    ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation ns3::TypeId::GetTraceSource(uint32_t i) const [member function]
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1396
    cls.add_method('GetTraceSource', 
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1397
                   'ns3::TypeId::TraceSourceInformation', 
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1398
                   [param('uint32_t', 'i')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1399
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1400
    ## type-id.h (module 'core'): uint32_t ns3::TypeId::GetTraceSourceN() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1401
    cls.add_method('GetTraceSourceN', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1402
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1403
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1404
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1405
    ## type-id.h (module 'core'): uint16_t ns3::TypeId::GetUid() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1406
    cls.add_method('GetUid', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1407
                   'uint16_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1408
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1409
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1410
    ## type-id.h (module 'core'): bool ns3::TypeId::HasConstructor() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1411
    cls.add_method('HasConstructor', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1412
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1413
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1414
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1415
    ## type-id.h (module 'core'): bool ns3::TypeId::HasParent() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1416
    cls.add_method('HasParent', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1417
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1418
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1419
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1420
    ## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::HideFromDocumentation() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1421
    cls.add_method('HideFromDocumentation', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1422
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1423
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1424
    ## type-id.h (module 'core'): bool ns3::TypeId::IsChildOf(ns3::TypeId other) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1425
    cls.add_method('IsChildOf', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1426
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1427
                   [param('ns3::TypeId', 'other')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1428
                   is_const=True)
7401
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1429
    ## type-id.h (module 'core'): bool ns3::TypeId::LookupAttributeByName(std::string name, ns3::TypeId::AttributeInformation * info) const [member function]
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1430
    cls.add_method('LookupAttributeByName', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1431
                   'bool', 
7723
dfd109d5caf0 Bug 1349 - TypeId.LookupAttributeByName Python bindings missing
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  1432
                   [param('std::string', 'name'), param('ns3::TypeId::AttributeInformation *', 'info', transfer_ownership=False)], 
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1433
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1434
    ## type-id.h (module 'core'): static ns3::TypeId ns3::TypeId::LookupByName(std::string name) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1435
    cls.add_method('LookupByName', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1436
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1437
                   [param('std::string', 'name')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1438
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1439
    ## type-id.h (module 'core'): ns3::Ptr<ns3::TraceSourceAccessor const> ns3::TypeId::LookupTraceSourceByName(std::string name) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1440
    cls.add_method('LookupTraceSourceByName', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1441
                   'ns3::Ptr< ns3::TraceSourceAccessor const >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1442
                   [param('std::string', 'name')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1443
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1444
    ## type-id.h (module 'core'): bool ns3::TypeId::MustHideFromDocumentation() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1445
    cls.add_method('MustHideFromDocumentation', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1446
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1447
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1448
                   is_const=True)
7401
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1449
    ## type-id.h (module 'core'): bool ns3::TypeId::SetAttributeInitialValue(uint32_t i, ns3::Ptr<ns3::AttributeValue const> initialValue) [member function]
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1450
    cls.add_method('SetAttributeInitialValue', 
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1451
                   'bool', 
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1452
                   [param('uint32_t', 'i'), param('ns3::Ptr< ns3::AttributeValue const >', 'initialValue')])
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1453
    ## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::SetGroupName(std::string groupName) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1454
    cls.add_method('SetGroupName', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1455
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1456
                   [param('std::string', 'groupName')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1457
    ## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::SetParent(ns3::TypeId tid) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1458
    cls.add_method('SetParent', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1459
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1460
                   [param('ns3::TypeId', 'tid')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1461
    ## type-id.h (module 'core'): void ns3::TypeId::SetUid(uint16_t tid) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1462
    cls.add_method('SetUid', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1463
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1464
                   [param('uint16_t', 'tid')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1465
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1466
7401
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1467
def register_Ns3TypeIdAttributeInformation_methods(root_module, cls):
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1468
    ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::AttributeInformation() [constructor]
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1469
    cls.add_constructor([])
7401
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1470
    ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::AttributeInformation(ns3::TypeId::AttributeInformation const & arg0) [copy constructor]
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1471
    cls.add_constructor([param('ns3::TypeId::AttributeInformation const &', 'arg0')])
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1472
    ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::accessor [variable]
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1473
    cls.add_instance_attribute('accessor', 'ns3::Ptr< ns3::AttributeAccessor const >', is_const=False)
7401
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1474
    ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::checker [variable]
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1475
    cls.add_instance_attribute('checker', 'ns3::Ptr< ns3::AttributeChecker const >', is_const=False)
7401
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1476
    ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::flags [variable]
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1477
    cls.add_instance_attribute('flags', 'uint32_t', is_const=False)
7401
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1478
    ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::help [variable]
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1479
    cls.add_instance_attribute('help', 'std::string', is_const=False)
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1480
    ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::initialValue [variable]
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1481
    cls.add_instance_attribute('initialValue', 'ns3::Ptr< ns3::AttributeValue const >', is_const=False)
7401
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1482
    ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::name [variable]
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1483
    cls.add_instance_attribute('name', 'std::string', is_const=False)
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1484
    ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::originalInitialValue [variable]
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1485
    cls.add_instance_attribute('originalInitialValue', 'ns3::Ptr< ns3::AttributeValue const >', is_const=False)
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1486
    return
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1487
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1488
def register_Ns3TypeIdTraceSourceInformation_methods(root_module, cls):
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1489
    ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation::TraceSourceInformation() [constructor]
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1490
    cls.add_constructor([])
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1491
    ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation::TraceSourceInformation(ns3::TypeId::TraceSourceInformation const & arg0) [copy constructor]
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1492
    cls.add_constructor([param('ns3::TypeId::TraceSourceInformation const &', 'arg0')])
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1493
    ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation::accessor [variable]
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1494
    cls.add_instance_attribute('accessor', 'ns3::Ptr< ns3::TraceSourceAccessor const >', is_const=False)
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1495
    ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation::help [variable]
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1496
    cls.add_instance_attribute('help', 'std::string', is_const=False)
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1497
    ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation::name [variable]
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1498
    cls.add_instance_attribute('name', 'std::string', is_const=False)
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1499
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1500
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1501
def register_Ns3UniformVariable_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1502
    ## random-variable.h (module 'core'): ns3::UniformVariable::UniformVariable(ns3::UniformVariable const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1503
    cls.add_constructor([param('ns3::UniformVariable const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1504
    ## random-variable.h (module 'core'): ns3::UniformVariable::UniformVariable() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1505
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1506
    ## random-variable.h (module 'core'): ns3::UniformVariable::UniformVariable(double s, double l) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1507
    cls.add_constructor([param('double', 's'), param('double', 'l')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1508
    ## random-variable.h (module 'core'): uint32_t ns3::UniformVariable::GetInteger(uint32_t s, uint32_t l) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1509
    cls.add_method('GetInteger', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1510
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1511
                   [param('uint32_t', 's'), param('uint32_t', 'l')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1512
    ## random-variable.h (module 'core'): double ns3::UniformVariable::GetValue() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1513
    cls.add_method('GetValue', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1514
                   'double', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1515
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1516
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1517
    ## random-variable.h (module 'core'): double ns3::UniformVariable::GetValue(double s, double l) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1518
    cls.add_method('GetValue', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1519
                   'double', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1520
                   [param('double', 's'), param('double', 'l')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1521
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1522
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1523
def register_Ns3Vector2D_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1524
    cls.add_output_stream_operator()
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1525
    ## vector.h (module 'core'): ns3::Vector2D::Vector2D(ns3::Vector2D const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1526
    cls.add_constructor([param('ns3::Vector2D const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1527
    ## vector.h (module 'core'): ns3::Vector2D::Vector2D(double _x, double _y) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1528
    cls.add_constructor([param('double', '_x'), param('double', '_y')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1529
    ## vector.h (module 'core'): ns3::Vector2D::Vector2D() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1530
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1531
    ## vector.h (module 'core'): ns3::Vector2D::x [variable]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1532
    cls.add_instance_attribute('x', 'double', is_const=False)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1533
    ## vector.h (module 'core'): ns3::Vector2D::y [variable]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1534
    cls.add_instance_attribute('y', 'double', is_const=False)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1535
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1536
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1537
def register_Ns3Vector3D_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1538
    cls.add_output_stream_operator()
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1539
    ## vector.h (module 'core'): ns3::Vector3D::Vector3D(ns3::Vector3D const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1540
    cls.add_constructor([param('ns3::Vector3D const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1541
    ## vector.h (module 'core'): ns3::Vector3D::Vector3D(double _x, double _y, double _z) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1542
    cls.add_constructor([param('double', '_x'), param('double', '_y'), param('double', '_z')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1543
    ## vector.h (module 'core'): ns3::Vector3D::Vector3D() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1544
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1545
    ## vector.h (module 'core'): ns3::Vector3D::x [variable]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1546
    cls.add_instance_attribute('x', 'double', is_const=False)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1547
    ## vector.h (module 'core'): ns3::Vector3D::y [variable]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1548
    cls.add_instance_attribute('y', 'double', is_const=False)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1549
    ## vector.h (module 'core'): ns3::Vector3D::z [variable]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1550
    cls.add_instance_attribute('z', 'double', is_const=False)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1551
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1552
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1553
def register_Ns3Watchdog_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1554
    ## watchdog.h (module 'core'): ns3::Watchdog::Watchdog(ns3::Watchdog const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1555
    cls.add_constructor([param('ns3::Watchdog const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1556
    ## watchdog.h (module 'core'): ns3::Watchdog::Watchdog() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1557
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1558
    ## watchdog.h (module 'core'): void ns3::Watchdog::Ping(ns3::Time delay) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1559
    cls.add_method('Ping', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1560
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1561
                   [param('ns3::Time', 'delay')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1562
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1563
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1564
def register_Ns3WeibullVariable_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1565
    ## random-variable.h (module 'core'): ns3::WeibullVariable::WeibullVariable(ns3::WeibullVariable const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1566
    cls.add_constructor([param('ns3::WeibullVariable const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1567
    ## random-variable.h (module 'core'): ns3::WeibullVariable::WeibullVariable() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1568
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1569
    ## random-variable.h (module 'core'): ns3::WeibullVariable::WeibullVariable(double m) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1570
    cls.add_constructor([param('double', 'm')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1571
    ## random-variable.h (module 'core'): ns3::WeibullVariable::WeibullVariable(double m, double s) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1572
    cls.add_constructor([param('double', 'm'), param('double', 's')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1573
    ## random-variable.h (module 'core'): ns3::WeibullVariable::WeibullVariable(double m, double s, double b) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1574
    cls.add_constructor([param('double', 'm'), param('double', 's'), param('double', 'b')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1575
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1576
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1577
def register_Ns3ZetaVariable_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1578
    ## random-variable.h (module 'core'): ns3::ZetaVariable::ZetaVariable(ns3::ZetaVariable const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1579
    cls.add_constructor([param('ns3::ZetaVariable const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1580
    ## random-variable.h (module 'core'): ns3::ZetaVariable::ZetaVariable(double alpha) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1581
    cls.add_constructor([param('double', 'alpha')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1582
    ## random-variable.h (module 'core'): ns3::ZetaVariable::ZetaVariable() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1583
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1584
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1585
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1586
def register_Ns3ZipfVariable_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1587
    ## random-variable.h (module 'core'): ns3::ZipfVariable::ZipfVariable(ns3::ZipfVariable const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1588
    cls.add_constructor([param('ns3::ZipfVariable const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1589
    ## random-variable.h (module 'core'): ns3::ZipfVariable::ZipfVariable(long int N, double alpha) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1590
    cls.add_constructor([param('long int', 'N'), param('double', 'alpha')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1591
    ## random-variable.h (module 'core'): ns3::ZipfVariable::ZipfVariable() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1592
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1593
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1594
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1595
def register_Ns3Empty_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1596
    ## empty.h (module 'core'): ns3::empty::empty() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1597
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1598
    ## empty.h (module 'core'): ns3::empty::empty(ns3::empty const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1599
    cls.add_constructor([param('ns3::empty const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1600
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1601
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1602
def register_Ns3Int64x64_t_methods(root_module, cls):
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1603
    cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long unsigned int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1604
    cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long unsigned int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1605
    cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1606
    cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short unsigned int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1607
    cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned char const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1608
    cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1609
    cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1610
    cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1611
    cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1612
    cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('signed char const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1613
    cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('double const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1614
    cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('ns3::int64x64_t const &', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1615
    cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long unsigned int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1616
    cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long unsigned int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1617
    cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1618
    cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short unsigned int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1619
    cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned char const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1620
    cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1621
    cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1622
    cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1623
    cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1624
    cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('signed char const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1625
    cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('double const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1626
    cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('ns3::int64x64_t const &', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1627
    cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long unsigned int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1628
    cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long unsigned int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1629
    cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1630
    cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short unsigned int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1631
    cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned char const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1632
    cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1633
    cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1634
    cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1635
    cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1636
    cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('signed char const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1637
    cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('double const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1638
    cls.add_unary_numeric_operator('-')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1639
    cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('ns3::int64x64_t const &', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1640
    cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long unsigned int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1641
    cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long unsigned int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1642
    cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1643
    cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short unsigned int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1644
    cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned char const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1645
    cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1646
    cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1647
    cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1648
    cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1649
    cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('signed char const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1650
    cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('double const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1651
    cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('ns3::int64x64_t const &', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1652
    cls.add_binary_comparison_operator('<')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1653
    cls.add_binary_comparison_operator('>')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1654
    cls.add_binary_comparison_operator('!=')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1655
    cls.add_inplace_numeric_operator('*=', param('ns3::int64x64_t const &', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1656
    cls.add_inplace_numeric_operator('+=', param('ns3::int64x64_t const &', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1657
    cls.add_inplace_numeric_operator('-=', param('ns3::int64x64_t const &', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1658
    cls.add_inplace_numeric_operator('/=', param('ns3::int64x64_t const &', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1659
    cls.add_output_stream_operator()
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1660
    cls.add_binary_comparison_operator('<=')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1661
    cls.add_binary_comparison_operator('==')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1662
    cls.add_binary_comparison_operator('>=')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1663
    ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t() [constructor]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1664
    cls.add_constructor([])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1665
    ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(double v) [constructor]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1666
    cls.add_constructor([param('double', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1667
    ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(int v) [constructor]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1668
    cls.add_constructor([param('int', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1669
    ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(long int v) [constructor]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1670
    cls.add_constructor([param('long int', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1671
    ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(long long int v) [constructor]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1672
    cls.add_constructor([param('long long int', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1673
    ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(unsigned int v) [constructor]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1674
    cls.add_constructor([param('unsigned int', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1675
    ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(long unsigned int v) [constructor]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1676
    cls.add_constructor([param('long unsigned int', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1677
    ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(long long unsigned int v) [constructor]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1678
    cls.add_constructor([param('long long unsigned int', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1679
    ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(int64_t hi, uint64_t lo) [constructor]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1680
    cls.add_constructor([param('int64_t', 'hi'), param('uint64_t', 'lo')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1681
    ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(ns3::int64x64_t const & o) [copy constructor]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1682
    cls.add_constructor([param('ns3::int64x64_t const &', 'o')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1683
    ## int64x64-double.h (module 'core'): double ns3::int64x64_t::GetDouble() const [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1684
    cls.add_method('GetDouble', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1685
                   'double', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1686
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1687
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1688
    ## int64x64-double.h (module 'core'): int64_t ns3::int64x64_t::GetHigh() const [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1689
    cls.add_method('GetHigh', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1690
                   'int64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1691
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1692
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1693
    ## int64x64-double.h (module 'core'): uint64_t ns3::int64x64_t::GetLow() const [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1694
    cls.add_method('GetLow', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1695
                   'uint64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1696
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1697
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1698
    ## int64x64-double.h (module 'core'): static ns3::int64x64_t ns3::int64x64_t::Invert(uint64_t v) [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1699
    cls.add_method('Invert', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1700
                   'ns3::int64x64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1701
                   [param('uint64_t', 'v')], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1702
                   is_static=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1703
    ## int64x64-double.h (module 'core'): void ns3::int64x64_t::MulByInvert(ns3::int64x64_t const & o) [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1704
    cls.add_method('MulByInvert', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1705
                   'void', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1706
                   [param('ns3::int64x64_t const &', 'o')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1707
    return
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1708
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1709
def register_Ns3ConstantVariable_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1710
    ## random-variable.h (module 'core'): ns3::ConstantVariable::ConstantVariable(ns3::ConstantVariable const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1711
    cls.add_constructor([param('ns3::ConstantVariable const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1712
    ## random-variable.h (module 'core'): ns3::ConstantVariable::ConstantVariable() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1713
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1714
    ## random-variable.h (module 'core'): ns3::ConstantVariable::ConstantVariable(double c) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1715
    cls.add_constructor([param('double', 'c')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1716
    ## random-variable.h (module 'core'): void ns3::ConstantVariable::SetConstant(double c) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1717
    cls.add_method('SetConstant', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1718
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1719
                   [param('double', 'c')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1720
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1721
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1722
def register_Ns3DeterministicVariable_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1723
    ## random-variable.h (module 'core'): ns3::DeterministicVariable::DeterministicVariable(ns3::DeterministicVariable const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1724
    cls.add_constructor([param('ns3::DeterministicVariable const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1725
    ## random-variable.h (module 'core'): ns3::DeterministicVariable::DeterministicVariable(double * d, uint32_t c) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1726
    cls.add_constructor([param('double *', 'd'), param('uint32_t', 'c')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1727
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1728
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1729
def register_Ns3EmpiricalVariable_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1730
    ## random-variable.h (module 'core'): ns3::EmpiricalVariable::EmpiricalVariable(ns3::EmpiricalVariable const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1731
    cls.add_constructor([param('ns3::EmpiricalVariable const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1732
    ## random-variable.h (module 'core'): ns3::EmpiricalVariable::EmpiricalVariable() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1733
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1734
    ## random-variable.h (module 'core'): void ns3::EmpiricalVariable::CDF(double v, double c) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1735
    cls.add_method('CDF', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1736
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1737
                   [param('double', 'v'), param('double', 'c')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1738
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1739
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1740
def register_Ns3ErlangVariable_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1741
    ## random-variable.h (module 'core'): ns3::ErlangVariable::ErlangVariable(ns3::ErlangVariable const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1742
    cls.add_constructor([param('ns3::ErlangVariable const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1743
    ## random-variable.h (module 'core'): ns3::ErlangVariable::ErlangVariable() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1744
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1745
    ## random-variable.h (module 'core'): ns3::ErlangVariable::ErlangVariable(unsigned int k, double lambda) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1746
    cls.add_constructor([param('unsigned int', 'k'), param('double', 'lambda')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1747
    ## random-variable.h (module 'core'): double ns3::ErlangVariable::GetValue() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1748
    cls.add_method('GetValue', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1749
                   'double', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1750
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1751
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1752
    ## random-variable.h (module 'core'): double ns3::ErlangVariable::GetValue(unsigned int k, double lambda) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1753
    cls.add_method('GetValue', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1754
                   'double', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1755
                   [param('unsigned int', 'k'), param('double', 'lambda')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1756
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1757
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1758
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1759
def register_Ns3ExponentialVariable_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1760
    ## random-variable.h (module 'core'): ns3::ExponentialVariable::ExponentialVariable(ns3::ExponentialVariable const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1761
    cls.add_constructor([param('ns3::ExponentialVariable const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1762
    ## random-variable.h (module 'core'): ns3::ExponentialVariable::ExponentialVariable() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1763
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1764
    ## random-variable.h (module 'core'): ns3::ExponentialVariable::ExponentialVariable(double m) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1765
    cls.add_constructor([param('double', 'm')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1766
    ## random-variable.h (module 'core'): ns3::ExponentialVariable::ExponentialVariable(double m, double b) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1767
    cls.add_constructor([param('double', 'm'), param('double', 'b')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1768
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1769
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1770
def register_Ns3GammaVariable_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1771
    ## random-variable.h (module 'core'): ns3::GammaVariable::GammaVariable(ns3::GammaVariable const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1772
    cls.add_constructor([param('ns3::GammaVariable const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1773
    ## random-variable.h (module 'core'): ns3::GammaVariable::GammaVariable() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1774
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1775
    ## random-variable.h (module 'core'): ns3::GammaVariable::GammaVariable(double alpha, double beta) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1776
    cls.add_constructor([param('double', 'alpha'), param('double', 'beta')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1777
    ## random-variable.h (module 'core'): double ns3::GammaVariable::GetValue() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1778
    cls.add_method('GetValue', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1779
                   'double', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1780
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1781
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1782
    ## random-variable.h (module 'core'): double ns3::GammaVariable::GetValue(double alpha, double beta) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1783
    cls.add_method('GetValue', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1784
                   'double', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1785
                   [param('double', 'alpha'), param('double', 'beta')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1786
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1787
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1788
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1789
def register_Ns3IntEmpiricalVariable_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1790
    ## random-variable.h (module 'core'): ns3::IntEmpiricalVariable::IntEmpiricalVariable(ns3::IntEmpiricalVariable const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1791
    cls.add_constructor([param('ns3::IntEmpiricalVariable const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1792
    ## random-variable.h (module 'core'): ns3::IntEmpiricalVariable::IntEmpiricalVariable() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1793
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1794
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1795
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1796
def register_Ns3LogNormalVariable_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1797
    ## random-variable.h (module 'core'): ns3::LogNormalVariable::LogNormalVariable(ns3::LogNormalVariable const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1798
    cls.add_constructor([param('ns3::LogNormalVariable const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1799
    ## random-variable.h (module 'core'): ns3::LogNormalVariable::LogNormalVariable(double mu, double sigma) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1800
    cls.add_constructor([param('double', 'mu'), param('double', 'sigma')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1801
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1802
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1803
def register_Ns3NormalVariable_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1804
    ## random-variable.h (module 'core'): ns3::NormalVariable::NormalVariable(ns3::NormalVariable const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1805
    cls.add_constructor([param('ns3::NormalVariable const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1806
    ## random-variable.h (module 'core'): ns3::NormalVariable::NormalVariable() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1807
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1808
    ## random-variable.h (module 'core'): ns3::NormalVariable::NormalVariable(double m, double v) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1809
    cls.add_constructor([param('double', 'm'), param('double', 'v')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1810
    ## random-variable.h (module 'core'): ns3::NormalVariable::NormalVariable(double m, double v, double b) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1811
    cls.add_constructor([param('double', 'm'), param('double', 'v'), param('double', 'b')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1812
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1813
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1814
def register_Ns3Object_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1815
    ## object.h (module 'core'): ns3::Object::Object() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1816
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1817
    ## object.h (module 'core'): void ns3::Object::AggregateObject(ns3::Ptr<ns3::Object> other) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1818
    cls.add_method('AggregateObject', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1819
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1820
                   [param('ns3::Ptr< ns3::Object >', 'other')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1821
    ## object.h (module 'core'): void ns3::Object::Dispose() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1822
    cls.add_method('Dispose', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1823
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1824
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1825
    ## object.h (module 'core'): ns3::Object::AggregateIterator ns3::Object::GetAggregateIterator() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1826
    cls.add_method('GetAggregateIterator', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1827
                   'ns3::Object::AggregateIterator', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1828
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1829
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1830
    ## object.h (module 'core'): ns3::TypeId ns3::Object::GetInstanceTypeId() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1831
    cls.add_method('GetInstanceTypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1832
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1833
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1834
                   is_const=True, is_virtual=True)
6893
5dccd86f90cf Modular Python bindings work (many bug fixes, more modules tested)
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6881
diff changeset
  1835
    ## object.h (module 'core'): ns3::Ptr<ns3::Object> ns3::Object::GetObject(ns3::TypeId tid) const [member function]
5dccd86f90cf Modular Python bindings work (many bug fixes, more modules tested)
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6881
diff changeset
  1836
    cls.add_method('GetObject', 
5dccd86f90cf Modular Python bindings work (many bug fixes, more modules tested)
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6881
diff changeset
  1837
                   'ns3::Ptr< ns3::Object >', 
5dccd86f90cf Modular Python bindings work (many bug fixes, more modules tested)
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6881
diff changeset
  1838
                   [param('ns3::TypeId', 'tid')], 
5dccd86f90cf Modular Python bindings work (many bug fixes, more modules tested)
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6881
diff changeset
  1839
                   is_const=True, template_parameters=['ns3::Object'], custom_template_method_name='GetObject')
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1840
    ## object.h (module 'core'): static ns3::TypeId ns3::Object::GetTypeId() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1841
    cls.add_method('GetTypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1842
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1843
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1844
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1845
    ## object.h (module 'core'): void ns3::Object::Start() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1846
    cls.add_method('Start', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1847
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1848
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1849
    ## object.h (module 'core'): ns3::Object::Object(ns3::Object const & o) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1850
    cls.add_constructor([param('ns3::Object const &', 'o')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1851
                        visibility='protected')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1852
    ## object.h (module 'core'): void ns3::Object::DoDispose() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1853
    cls.add_method('DoDispose', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1854
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1855
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1856
                   visibility='protected', is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1857
    ## object.h (module 'core'): void ns3::Object::DoStart() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1858
    cls.add_method('DoStart', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1859
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1860
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1861
                   visibility='protected', is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1862
    ## object.h (module 'core'): void ns3::Object::NotifyNewAggregate() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1863
    cls.add_method('NotifyNewAggregate', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1864
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1865
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1866
                   visibility='protected', is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1867
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1868
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1869
def register_Ns3ObjectAggregateIterator_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1870
    ## object.h (module 'core'): ns3::Object::AggregateIterator::AggregateIterator(ns3::Object::AggregateIterator const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1871
    cls.add_constructor([param('ns3::Object::AggregateIterator const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1872
    ## object.h (module 'core'): ns3::Object::AggregateIterator::AggregateIterator() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1873
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1874
    ## object.h (module 'core'): bool ns3::Object::AggregateIterator::HasNext() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1875
    cls.add_method('HasNext', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1876
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1877
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1878
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1879
    ## object.h (module 'core'): ns3::Ptr<ns3::Object const> ns3::Object::AggregateIterator::Next() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1880
    cls.add_method('Next', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1881
                   'ns3::Ptr< ns3::Object const >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1882
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1883
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1884
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1885
def register_Ns3ParetoVariable_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1886
    ## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable(ns3::ParetoVariable const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1887
    cls.add_constructor([param('ns3::ParetoVariable const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1888
    ## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1889
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1890
    ## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable(double m) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1891
    cls.add_constructor([param('double', 'm')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1892
    ## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable(double m, double s) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1893
    cls.add_constructor([param('double', 'm'), param('double', 's')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1894
    ## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable(double m, double s, double b) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1895
    cls.add_constructor([param('double', 'm'), param('double', 's'), param('double', 'b')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1896
    ## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable(std::pair<double,double> params) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1897
    cls.add_constructor([param('std::pair< double, double >', 'params')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1898
    ## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable(std::pair<double,double> params, double b) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1899
    cls.add_constructor([param('std::pair< double, double >', 'params'), param('double', 'b')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1900
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1901
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1902
def register_Ns3Scheduler_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1903
    ## scheduler.h (module 'core'): ns3::Scheduler::Scheduler() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1904
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1905
    ## scheduler.h (module 'core'): ns3::Scheduler::Scheduler(ns3::Scheduler const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1906
    cls.add_constructor([param('ns3::Scheduler const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1907
    ## scheduler.h (module 'core'): static ns3::TypeId ns3::Scheduler::GetTypeId() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1908
    cls.add_method('GetTypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1909
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1910
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1911
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1912
    ## scheduler.h (module 'core'): void ns3::Scheduler::Insert(ns3::Scheduler::Event const & ev) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1913
    cls.add_method('Insert', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1914
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1915
                   [param('ns3::Scheduler::Event const &', 'ev')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1916
                   is_pure_virtual=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1917
    ## scheduler.h (module 'core'): bool ns3::Scheduler::IsEmpty() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1918
    cls.add_method('IsEmpty', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1919
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1920
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1921
                   is_pure_virtual=True, is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1922
    ## scheduler.h (module 'core'): ns3::Scheduler::Event ns3::Scheduler::PeekNext() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1923
    cls.add_method('PeekNext', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1924
                   'ns3::Scheduler::Event', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1925
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1926
                   is_pure_virtual=True, is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1927
    ## scheduler.h (module 'core'): void ns3::Scheduler::Remove(ns3::Scheduler::Event const & ev) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1928
    cls.add_method('Remove', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1929
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1930
                   [param('ns3::Scheduler::Event const &', 'ev')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1931
                   is_pure_virtual=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1932
    ## scheduler.h (module 'core'): ns3::Scheduler::Event ns3::Scheduler::RemoveNext() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1933
    cls.add_method('RemoveNext', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1934
                   'ns3::Scheduler::Event', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1935
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1936
                   is_pure_virtual=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1937
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1938
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1939
def register_Ns3SchedulerEvent_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1940
    cls.add_binary_comparison_operator('<')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1941
    ## scheduler.h (module 'core'): ns3::Scheduler::Event::Event() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1942
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1943
    ## scheduler.h (module 'core'): ns3::Scheduler::Event::Event(ns3::Scheduler::Event const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1944
    cls.add_constructor([param('ns3::Scheduler::Event const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1945
    ## scheduler.h (module 'core'): ns3::Scheduler::Event::impl [variable]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1946
    cls.add_instance_attribute('impl', 'ns3::EventImpl *', is_const=False)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1947
    ## scheduler.h (module 'core'): ns3::Scheduler::Event::key [variable]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1948
    cls.add_instance_attribute('key', 'ns3::Scheduler::EventKey', is_const=False)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1949
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1950
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1951
def register_Ns3SchedulerEventKey_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1952
    cls.add_binary_comparison_operator('<')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1953
    cls.add_binary_comparison_operator('>')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1954
    cls.add_binary_comparison_operator('!=')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1955
    ## scheduler.h (module 'core'): ns3::Scheduler::EventKey::EventKey() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1956
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1957
    ## scheduler.h (module 'core'): ns3::Scheduler::EventKey::EventKey(ns3::Scheduler::EventKey const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1958
    cls.add_constructor([param('ns3::Scheduler::EventKey const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1959
    ## scheduler.h (module 'core'): ns3::Scheduler::EventKey::m_context [variable]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1960
    cls.add_instance_attribute('m_context', 'uint32_t', is_const=False)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1961
    ## scheduler.h (module 'core'): ns3::Scheduler::EventKey::m_ts [variable]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1962
    cls.add_instance_attribute('m_ts', 'uint64_t', is_const=False)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1963
    ## scheduler.h (module 'core'): ns3::Scheduler::EventKey::m_uid [variable]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1964
    cls.add_instance_attribute('m_uid', 'uint32_t', is_const=False)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1965
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1966
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1967
def register_Ns3SimpleRefCount__Ns3AttributeAccessor_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeAccessor__gt___methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1968
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> >::SimpleRefCount() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1969
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1970
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> >::SimpleRefCount(ns3::SimpleRefCount<ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> > const & o) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1971
    cls.add_constructor([param('ns3::SimpleRefCount< ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter< ns3::AttributeAccessor > > const &', 'o')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1972
    ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> >::Cleanup() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1973
    cls.add_method('Cleanup', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1974
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1975
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1976
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1977
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1978
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1979
def register_Ns3SimpleRefCount__Ns3AttributeChecker_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeChecker__gt___methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1980
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter<ns3::AttributeChecker> >::SimpleRefCount() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1981
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1982
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter<ns3::AttributeChecker> >::SimpleRefCount(ns3::SimpleRefCount<ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter<ns3::AttributeChecker> > const & o) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1983
    cls.add_constructor([param('ns3::SimpleRefCount< ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter< ns3::AttributeChecker > > const &', 'o')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1984
    ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter<ns3::AttributeChecker> >::Cleanup() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1985
    cls.add_method('Cleanup', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1986
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1987
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1988
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1989
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1990
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1991
def register_Ns3SimpleRefCount__Ns3AttributeValue_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeValue__gt___methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1992
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter<ns3::AttributeValue> >::SimpleRefCount() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1993
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1994
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter<ns3::AttributeValue> >::SimpleRefCount(ns3::SimpleRefCount<ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter<ns3::AttributeValue> > const & o) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1995
    cls.add_constructor([param('ns3::SimpleRefCount< ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter< ns3::AttributeValue > > const &', 'o')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1996
    ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter<ns3::AttributeValue> >::Cleanup() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1997
    cls.add_method('Cleanup', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1998
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1999
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2000
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2001
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2002
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2003
def register_Ns3SimpleRefCount__Ns3CallbackImplBase_Ns3Empty_Ns3DefaultDeleter__lt__ns3CallbackImplBase__gt___methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2004
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> >::SimpleRefCount() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2005
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2006
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> >::SimpleRefCount(ns3::SimpleRefCount<ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> > const & o) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2007
    cls.add_constructor([param('ns3::SimpleRefCount< ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter< ns3::CallbackImplBase > > const &', 'o')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2008
    ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> >::Cleanup() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2009
    cls.add_method('Cleanup', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2010
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2011
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2012
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2013
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2014
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2015
def register_Ns3SimpleRefCount__Ns3EventImpl_Ns3Empty_Ns3DefaultDeleter__lt__ns3EventImpl__gt___methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2016
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::EventImpl, ns3::empty, ns3::DefaultDeleter<ns3::EventImpl> >::SimpleRefCount() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2017
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2018
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::EventImpl, ns3::empty, ns3::DefaultDeleter<ns3::EventImpl> >::SimpleRefCount(ns3::SimpleRefCount<ns3::EventImpl, ns3::empty, ns3::DefaultDeleter<ns3::EventImpl> > const & o) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2019
    cls.add_constructor([param('ns3::SimpleRefCount< ns3::EventImpl, ns3::empty, ns3::DefaultDeleter< ns3::EventImpl > > const &', 'o')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2020
    ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::EventImpl, ns3::empty, ns3::DefaultDeleter<ns3::EventImpl> >::Cleanup() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2021
    cls.add_method('Cleanup', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2022
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2023
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2024
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2025
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2026
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2027
def register_Ns3SimpleRefCount__Ns3FdReader_Ns3Empty_Ns3DefaultDeleter__lt__ns3FdReader__gt___methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2028
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::FdReader, ns3::empty, ns3::DefaultDeleter<ns3::FdReader> >::SimpleRefCount() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2029
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2030
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::FdReader, ns3::empty, ns3::DefaultDeleter<ns3::FdReader> >::SimpleRefCount(ns3::SimpleRefCount<ns3::FdReader, ns3::empty, ns3::DefaultDeleter<ns3::FdReader> > const & o) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2031
    cls.add_constructor([param('ns3::SimpleRefCount< ns3::FdReader, ns3::empty, ns3::DefaultDeleter< ns3::FdReader > > const &', 'o')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2032
    ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::FdReader, ns3::empty, ns3::DefaultDeleter<ns3::FdReader> >::Cleanup() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2033
    cls.add_method('Cleanup', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2034
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2035
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2036
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2037
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2038
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2039
def register_Ns3SimpleRefCount__Ns3RefCountBase_Ns3Empty_Ns3DefaultDeleter__lt__ns3RefCountBase__gt___methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2040
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::RefCountBase, ns3::empty, ns3::DefaultDeleter<ns3::RefCountBase> >::SimpleRefCount() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2041
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2042
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::RefCountBase, ns3::empty, ns3::DefaultDeleter<ns3::RefCountBase> >::SimpleRefCount(ns3::SimpleRefCount<ns3::RefCountBase, ns3::empty, ns3::DefaultDeleter<ns3::RefCountBase> > const & o) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2043
    cls.add_constructor([param('ns3::SimpleRefCount< ns3::RefCountBase, ns3::empty, ns3::DefaultDeleter< ns3::RefCountBase > > const &', 'o')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2044
    ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::RefCountBase, ns3::empty, ns3::DefaultDeleter<ns3::RefCountBase> >::Cleanup() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2045
    cls.add_method('Cleanup', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2046
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2047
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2048
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2049
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2050
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2051
def register_Ns3SimpleRefCount__Ns3SystemThread_Ns3Empty_Ns3DefaultDeleter__lt__ns3SystemThread__gt___methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2052
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::SystemThread, ns3::empty, ns3::DefaultDeleter<ns3::SystemThread> >::SimpleRefCount() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2053
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2054
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::SystemThread, ns3::empty, ns3::DefaultDeleter<ns3::SystemThread> >::SimpleRefCount(ns3::SimpleRefCount<ns3::SystemThread, ns3::empty, ns3::DefaultDeleter<ns3::SystemThread> > const & o) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2055
    cls.add_constructor([param('ns3::SimpleRefCount< ns3::SystemThread, ns3::empty, ns3::DefaultDeleter< ns3::SystemThread > > const &', 'o')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2056
    ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::SystemThread, ns3::empty, ns3::DefaultDeleter<ns3::SystemThread> >::Cleanup() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2057
    cls.add_method('Cleanup', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2058
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2059
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2060
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2061
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2062
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2063
def register_Ns3SimpleRefCount__Ns3TraceSourceAccessor_Ns3Empty_Ns3DefaultDeleter__lt__ns3TraceSourceAccessor__gt___methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2064
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter<ns3::TraceSourceAccessor> >::SimpleRefCount() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2065
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2066
    ## 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]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2067
    cls.add_constructor([param('ns3::SimpleRefCount< ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter< ns3::TraceSourceAccessor > > const &', 'o')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2068
    ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter<ns3::TraceSourceAccessor> >::Cleanup() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2069
    cls.add_method('Cleanup', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2070
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2071
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2072
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2073
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2074
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2075
def register_Ns3SimulatorImpl_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2076
    ## simulator-impl.h (module 'core'): ns3::SimulatorImpl::SimulatorImpl() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2077
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2078
    ## simulator-impl.h (module 'core'): ns3::SimulatorImpl::SimulatorImpl(ns3::SimulatorImpl const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2079
    cls.add_constructor([param('ns3::SimulatorImpl const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2080
    ## simulator-impl.h (module 'core'): void ns3::SimulatorImpl::Cancel(ns3::EventId const & ev) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2081
    cls.add_method('Cancel', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2082
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2083
                   [param('ns3::EventId const &', 'ev')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2084
                   is_pure_virtual=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2085
    ## simulator-impl.h (module 'core'): void ns3::SimulatorImpl::Destroy() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2086
    cls.add_method('Destroy', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2087
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2088
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2089
                   is_pure_virtual=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2090
    ## simulator-impl.h (module 'core'): uint32_t ns3::SimulatorImpl::GetContext() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2091
    cls.add_method('GetContext', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2092
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2093
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2094
                   is_pure_virtual=True, is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2095
    ## simulator-impl.h (module 'core'): ns3::Time ns3::SimulatorImpl::GetDelayLeft(ns3::EventId const & id) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2096
    cls.add_method('GetDelayLeft', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2097
                   'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2098
                   [param('ns3::EventId const &', 'id')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2099
                   is_pure_virtual=True, is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2100
    ## simulator-impl.h (module 'core'): ns3::Time ns3::SimulatorImpl::GetMaximumSimulationTime() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2101
    cls.add_method('GetMaximumSimulationTime', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2102
                   'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2103
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2104
                   is_pure_virtual=True, is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2105
    ## simulator-impl.h (module 'core'): uint32_t ns3::SimulatorImpl::GetSystemId() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2106
    cls.add_method('GetSystemId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2107
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2108
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2109
                   is_pure_virtual=True, is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2110
    ## simulator-impl.h (module 'core'): static ns3::TypeId ns3::SimulatorImpl::GetTypeId() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2111
    cls.add_method('GetTypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2112
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2113
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2114
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2115
    ## simulator-impl.h (module 'core'): bool ns3::SimulatorImpl::IsExpired(ns3::EventId const & ev) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2116
    cls.add_method('IsExpired', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2117
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2118
                   [param('ns3::EventId const &', 'ev')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2119
                   is_pure_virtual=True, is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2120
    ## simulator-impl.h (module 'core'): bool ns3::SimulatorImpl::IsFinished() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2121
    cls.add_method('IsFinished', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2122
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2123
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2124
                   is_pure_virtual=True, is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2125
    ## simulator-impl.h (module 'core'): ns3::Time ns3::SimulatorImpl::Next() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2126
    cls.add_method('Next', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2127
                   'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2128
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2129
                   is_pure_virtual=True, is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2130
    ## simulator-impl.h (module 'core'): ns3::Time ns3::SimulatorImpl::Now() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2131
    cls.add_method('Now', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2132
                   'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2133
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2134
                   is_pure_virtual=True, is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2135
    ## simulator-impl.h (module 'core'): void ns3::SimulatorImpl::Remove(ns3::EventId const & ev) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2136
    cls.add_method('Remove', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2137
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2138
                   [param('ns3::EventId const &', 'ev')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2139
                   is_pure_virtual=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2140
    ## simulator-impl.h (module 'core'): void ns3::SimulatorImpl::Run() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2141
    cls.add_method('Run', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2142
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2143
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2144
                   is_pure_virtual=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2145
    ## simulator-impl.h (module 'core'): void ns3::SimulatorImpl::RunOneEvent() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2146
    cls.add_method('RunOneEvent', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2147
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2148
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2149
                   is_pure_virtual=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2150
    ## simulator-impl.h (module 'core'): ns3::EventId ns3::SimulatorImpl::Schedule(ns3::Time const & time, ns3::EventImpl * event) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2151
    cls.add_method('Schedule', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2152
                   'ns3::EventId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2153
                   [param('ns3::Time const &', 'time'), param('ns3::EventImpl *', 'event')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2154
                   is_pure_virtual=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2155
    ## simulator-impl.h (module 'core'): ns3::EventId ns3::SimulatorImpl::ScheduleDestroy(ns3::EventImpl * event) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2156
    cls.add_method('ScheduleDestroy', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2157
                   'ns3::EventId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2158
                   [param('ns3::EventImpl *', 'event')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2159
                   is_pure_virtual=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2160
    ## simulator-impl.h (module 'core'): ns3::EventId ns3::SimulatorImpl::ScheduleNow(ns3::EventImpl * event) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2161
    cls.add_method('ScheduleNow', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2162
                   'ns3::EventId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2163
                   [param('ns3::EventImpl *', 'event')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2164
                   is_pure_virtual=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2165
    ## simulator-impl.h (module 'core'): void ns3::SimulatorImpl::ScheduleWithContext(uint32_t context, ns3::Time const & time, ns3::EventImpl * event) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2166
    cls.add_method('ScheduleWithContext', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2167
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2168
                   [param('uint32_t', 'context'), param('ns3::Time const &', 'time'), param('ns3::EventImpl *', 'event')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2169
                   is_pure_virtual=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2170
    ## simulator-impl.h (module 'core'): void ns3::SimulatorImpl::SetScheduler(ns3::ObjectFactory schedulerFactory) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2171
    cls.add_method('SetScheduler', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2172
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2173
                   [param('ns3::ObjectFactory', 'schedulerFactory')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2174
                   is_pure_virtual=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2175
    ## simulator-impl.h (module 'core'): void ns3::SimulatorImpl::Stop() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2176
    cls.add_method('Stop', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2177
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2178
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2179
                   is_pure_virtual=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2180
    ## simulator-impl.h (module 'core'): void ns3::SimulatorImpl::Stop(ns3::Time const & time) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2181
    cls.add_method('Stop', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2182
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2183
                   [param('ns3::Time const &', 'time')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2184
                   is_pure_virtual=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2185
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2186
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2187
def register_Ns3Synchronizer_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2188
    ## synchronizer.h (module 'core'): ns3::Synchronizer::Synchronizer(ns3::Synchronizer const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2189
    cls.add_constructor([param('ns3::Synchronizer const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2190
    ## synchronizer.h (module 'core'): ns3::Synchronizer::Synchronizer() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2191
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2192
    ## synchronizer.h (module 'core'): uint64_t ns3::Synchronizer::EventEnd() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2193
    cls.add_method('EventEnd', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2194
                   'uint64_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2195
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2196
    ## synchronizer.h (module 'core'): void ns3::Synchronizer::EventStart() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2197
    cls.add_method('EventStart', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2198
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2199
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2200
    ## synchronizer.h (module 'core'): uint64_t ns3::Synchronizer::GetCurrentRealtime() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2201
    cls.add_method('GetCurrentRealtime', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2202
                   'uint64_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2203
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2204
    ## synchronizer.h (module 'core'): int64_t ns3::Synchronizer::GetDrift(uint64_t ts) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2205
    cls.add_method('GetDrift', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2206
                   'int64_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2207
                   [param('uint64_t', 'ts')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2208
    ## synchronizer.h (module 'core'): uint64_t ns3::Synchronizer::GetOrigin() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2209
    cls.add_method('GetOrigin', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2210
                   'uint64_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2211
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2212
    ## synchronizer.h (module 'core'): static ns3::TypeId ns3::Synchronizer::GetTypeId() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2213
    cls.add_method('GetTypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2214
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2215
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2216
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2217
    ## synchronizer.h (module 'core'): bool ns3::Synchronizer::Realtime() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2218
    cls.add_method('Realtime', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2219
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2220
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2221
    ## synchronizer.h (module 'core'): void ns3::Synchronizer::SetCondition(bool arg0) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2222
    cls.add_method('SetCondition', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2223
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2224
                   [param('bool', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2225
    ## synchronizer.h (module 'core'): void ns3::Synchronizer::SetOrigin(uint64_t ts) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2226
    cls.add_method('SetOrigin', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2227
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2228
                   [param('uint64_t', 'ts')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2229
    ## synchronizer.h (module 'core'): void ns3::Synchronizer::Signal() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2230
    cls.add_method('Signal', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2231
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2232
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2233
    ## synchronizer.h (module 'core'): bool ns3::Synchronizer::Synchronize(uint64_t tsCurrent, uint64_t tsDelay) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2234
    cls.add_method('Synchronize', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2235
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2236
                   [param('uint64_t', 'tsCurrent'), param('uint64_t', 'tsDelay')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2237
    ## synchronizer.h (module 'core'): uint64_t ns3::Synchronizer::DoEventEnd() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2238
    cls.add_method('DoEventEnd', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2239
                   'uint64_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2240
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2241
                   is_pure_virtual=True, visibility='protected', is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2242
    ## synchronizer.h (module 'core'): void ns3::Synchronizer::DoEventStart() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2243
    cls.add_method('DoEventStart', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2244
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2245
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2246
                   is_pure_virtual=True, visibility='protected', is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2247
    ## synchronizer.h (module 'core'): uint64_t ns3::Synchronizer::DoGetCurrentRealtime() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2248
    cls.add_method('DoGetCurrentRealtime', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2249
                   'uint64_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2250
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2251
                   is_pure_virtual=True, visibility='protected', is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2252
    ## synchronizer.h (module 'core'): int64_t ns3::Synchronizer::DoGetDrift(uint64_t ns) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2253
    cls.add_method('DoGetDrift', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2254
                   'int64_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2255
                   [param('uint64_t', 'ns')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2256
                   is_pure_virtual=True, visibility='protected', is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2257
    ## synchronizer.h (module 'core'): bool ns3::Synchronizer::DoRealtime() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2258
    cls.add_method('DoRealtime', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2259
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2260
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2261
                   is_pure_virtual=True, visibility='protected', is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2262
    ## synchronizer.h (module 'core'): void ns3::Synchronizer::DoSetCondition(bool arg0) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2263
    cls.add_method('DoSetCondition', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2264
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2265
                   [param('bool', 'arg0')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2266
                   is_pure_virtual=True, visibility='protected', is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2267
    ## synchronizer.h (module 'core'): void ns3::Synchronizer::DoSetOrigin(uint64_t ns) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2268
    cls.add_method('DoSetOrigin', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2269
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2270
                   [param('uint64_t', 'ns')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2271
                   is_pure_virtual=True, visibility='protected', is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2272
    ## synchronizer.h (module 'core'): void ns3::Synchronizer::DoSignal() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2273
    cls.add_method('DoSignal', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2274
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2275
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2276
                   is_pure_virtual=True, visibility='protected', is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2277
    ## synchronizer.h (module 'core'): bool ns3::Synchronizer::DoSynchronize(uint64_t nsCurrent, uint64_t nsDelay) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2278
    cls.add_method('DoSynchronize', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2279
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2280
                   [param('uint64_t', 'nsCurrent'), param('uint64_t', 'nsDelay')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2281
                   is_pure_virtual=True, visibility='protected', is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2282
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2283
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2284
def register_Ns3SystemThread_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2285
    ## system-thread.h (module 'core'): ns3::SystemThread::SystemThread(ns3::SystemThread const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2286
    cls.add_constructor([param('ns3::SystemThread const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2287
    ## system-thread.h (module 'core'): ns3::SystemThread::SystemThread(ns3::Callback<void,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty> callback) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2288
    cls.add_constructor([param('ns3::Callback< void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'callback')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2289
    ## system-thread.h (module 'core'): bool ns3::SystemThread::Break() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2290
    cls.add_method('Break', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2291
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2292
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2293
    ## system-thread.h (module 'core'): void ns3::SystemThread::Join() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2294
    cls.add_method('Join', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2295
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2296
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2297
    ## system-thread.h (module 'core'): void ns3::SystemThread::Shutdown() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2298
    cls.add_method('Shutdown', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2299
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2300
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2301
    ## system-thread.h (module 'core'): void ns3::SystemThread::Start() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2302
    cls.add_method('Start', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2303
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2304
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2305
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2306
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2307
def register_Ns3Time_methods(root_module, cls):
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2308
    cls.add_binary_numeric_operator('+', root_module['ns3::Time'], root_module['ns3::Time'], param('ns3::Time const &', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2309
    cls.add_binary_numeric_operator('-', root_module['ns3::Time'], root_module['ns3::Time'], param('ns3::Time const &', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2310
    cls.add_binary_comparison_operator('<')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2311
    cls.add_binary_comparison_operator('>')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2312
    cls.add_binary_comparison_operator('!=')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2313
    cls.add_inplace_numeric_operator('+=', param('ns3::Time const &', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2314
    cls.add_inplace_numeric_operator('-=', param('ns3::Time const &', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2315
    cls.add_output_stream_operator()
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2316
    cls.add_binary_comparison_operator('<=')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2317
    cls.add_binary_comparison_operator('==')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2318
    cls.add_binary_comparison_operator('>=')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2319
    ## nstime.h (module 'core'): ns3::Time::Time() [constructor]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2320
    cls.add_constructor([])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2321
    ## nstime.h (module 'core'): ns3::Time::Time(ns3::Time const & o) [copy constructor]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2322
    cls.add_constructor([param('ns3::Time const &', 'o')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2323
    ## nstime.h (module 'core'): ns3::Time::Time(double v) [constructor]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2324
    cls.add_constructor([param('double', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2325
    ## nstime.h (module 'core'): ns3::Time::Time(int v) [constructor]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2326
    cls.add_constructor([param('int', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2327
    ## nstime.h (module 'core'): ns3::Time::Time(long int v) [constructor]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2328
    cls.add_constructor([param('long int', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2329
    ## nstime.h (module 'core'): ns3::Time::Time(long long int v) [constructor]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2330
    cls.add_constructor([param('long long int', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2331
    ## nstime.h (module 'core'): ns3::Time::Time(unsigned int v) [constructor]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2332
    cls.add_constructor([param('unsigned int', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2333
    ## nstime.h (module 'core'): ns3::Time::Time(long unsigned int v) [constructor]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2334
    cls.add_constructor([param('long unsigned int', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2335
    ## nstime.h (module 'core'): ns3::Time::Time(long long unsigned int v) [constructor]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2336
    cls.add_constructor([param('long long unsigned int', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2337
    ## nstime.h (module 'core'): ns3::Time::Time(std::string const & s) [constructor]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2338
    cls.add_constructor([param('std::string const &', 's')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2339
    ## nstime.h (module 'core'): ns3::Time::Time(ns3::int64x64_t const & value) [constructor]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2340
    cls.add_constructor([param('ns3::int64x64_t const &', 'value')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2341
    ## nstime.h (module 'core'): int ns3::Time::Compare(ns3::Time const & o) const [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2342
    cls.add_method('Compare', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2343
                   'int', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2344
                   [param('ns3::Time const &', 'o')], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2345
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2346
    ## nstime.h (module 'core'): static ns3::Time ns3::Time::From(ns3::int64x64_t const & from, ns3::Time::Unit timeUnit) [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2347
    cls.add_method('From', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2348
                   'ns3::Time', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2349
                   [param('ns3::int64x64_t const &', 'from'), param('ns3::Time::Unit', 'timeUnit')], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2350
                   is_static=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2351
    ## nstime.h (module 'core'): static ns3::Time ns3::Time::From(ns3::int64x64_t const & value) [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2352
    cls.add_method('From', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2353
                   'ns3::Time', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2354
                   [param('ns3::int64x64_t const &', 'value')], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2355
                   is_static=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2356
    ## nstime.h (module 'core'): static ns3::Time ns3::Time::FromDouble(double value, ns3::Time::Unit timeUnit) [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2357
    cls.add_method('FromDouble', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2358
                   'ns3::Time', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2359
                   [param('double', 'value'), param('ns3::Time::Unit', 'timeUnit')], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2360
                   is_static=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2361
    ## nstime.h (module 'core'): static ns3::Time ns3::Time::FromInteger(uint64_t value, ns3::Time::Unit timeUnit) [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2362
    cls.add_method('FromInteger', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2363
                   'ns3::Time', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2364
                   [param('uint64_t', 'value'), param('ns3::Time::Unit', 'timeUnit')], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2365
                   is_static=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2366
    ## nstime.h (module 'core'): double ns3::Time::GetDouble() const [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2367
    cls.add_method('GetDouble', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2368
                   'double', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2369
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2370
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2371
    ## nstime.h (module 'core'): int64_t ns3::Time::GetFemtoSeconds() const [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2372
    cls.add_method('GetFemtoSeconds', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2373
                   'int64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2374
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2375
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2376
    ## nstime.h (module 'core'): int64_t ns3::Time::GetInteger() const [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2377
    cls.add_method('GetInteger', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2378
                   'int64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2379
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2380
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2381
    ## nstime.h (module 'core'): int64_t ns3::Time::GetMicroSeconds() const [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2382
    cls.add_method('GetMicroSeconds', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2383
                   'int64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2384
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2385
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2386
    ## nstime.h (module 'core'): int64_t ns3::Time::GetMilliSeconds() const [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2387
    cls.add_method('GetMilliSeconds', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2388
                   'int64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2389
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2390
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2391
    ## nstime.h (module 'core'): int64_t ns3::Time::GetNanoSeconds() const [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2392
    cls.add_method('GetNanoSeconds', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2393
                   'int64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2394
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2395
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2396
    ## nstime.h (module 'core'): int64_t ns3::Time::GetPicoSeconds() const [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2397
    cls.add_method('GetPicoSeconds', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2398
                   'int64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2399
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2400
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2401
    ## nstime.h (module 'core'): static ns3::Time::Unit ns3::Time::GetResolution() [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2402
    cls.add_method('GetResolution', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2403
                   'ns3::Time::Unit', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2404
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2405
                   is_static=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2406
    ## nstime.h (module 'core'): double ns3::Time::GetSeconds() const [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2407
    cls.add_method('GetSeconds', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2408
                   'double', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2409
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2410
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2411
    ## nstime.h (module 'core'): int64_t ns3::Time::GetTimeStep() const [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2412
    cls.add_method('GetTimeStep', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2413
                   'int64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2414
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2415
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2416
    ## nstime.h (module 'core'): bool ns3::Time::IsNegative() const [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2417
    cls.add_method('IsNegative', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2418
                   'bool', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2419
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2420
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2421
    ## nstime.h (module 'core'): bool ns3::Time::IsPositive() const [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2422
    cls.add_method('IsPositive', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2423
                   'bool', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2424
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2425
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2426
    ## nstime.h (module 'core'): bool ns3::Time::IsStrictlyNegative() const [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2427
    cls.add_method('IsStrictlyNegative', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2428
                   'bool', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2429
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2430
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2431
    ## nstime.h (module 'core'): bool ns3::Time::IsStrictlyPositive() const [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2432
    cls.add_method('IsStrictlyPositive', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2433
                   'bool', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2434
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2435
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2436
    ## nstime.h (module 'core'): bool ns3::Time::IsZero() const [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2437
    cls.add_method('IsZero', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2438
                   'bool', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2439
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2440
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2441
    ## nstime.h (module 'core'): static void ns3::Time::SetResolution(ns3::Time::Unit resolution) [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2442
    cls.add_method('SetResolution', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2443
                   'void', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2444
                   [param('ns3::Time::Unit', 'resolution')], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2445
                   is_static=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2446
    ## nstime.h (module 'core'): ns3::int64x64_t ns3::Time::To(ns3::Time::Unit timeUnit) const [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2447
    cls.add_method('To', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2448
                   'ns3::int64x64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2449
                   [param('ns3::Time::Unit', 'timeUnit')], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2450
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2451
    ## nstime.h (module 'core'): double ns3::Time::ToDouble(ns3::Time::Unit timeUnit) const [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2452
    cls.add_method('ToDouble', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2453
                   'double', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2454
                   [param('ns3::Time::Unit', 'timeUnit')], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2455
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2456
    ## nstime.h (module 'core'): int64_t ns3::Time::ToInteger(ns3::Time::Unit timeUnit) const [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2457
    cls.add_method('ToInteger', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2458
                   'int64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2459
                   [param('ns3::Time::Unit', 'timeUnit')], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2460
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2461
    return
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2462
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2463
def register_Ns3TraceSourceAccessor_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2464
    ## trace-source-accessor.h (module 'core'): ns3::TraceSourceAccessor::TraceSourceAccessor(ns3::TraceSourceAccessor const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2465
    cls.add_constructor([param('ns3::TraceSourceAccessor const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2466
    ## trace-source-accessor.h (module 'core'): ns3::TraceSourceAccessor::TraceSourceAccessor() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2467
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2468
    ## trace-source-accessor.h (module 'core'): bool ns3::TraceSourceAccessor::Connect(ns3::ObjectBase * obj, std::string context, ns3::CallbackBase const & cb) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2469
    cls.add_method('Connect', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2470
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2471
                   [param('ns3::ObjectBase *', 'obj', transfer_ownership=False), param('std::string', 'context'), param('ns3::CallbackBase const &', 'cb')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2472
                   is_pure_virtual=True, is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2473
    ## trace-source-accessor.h (module 'core'): bool ns3::TraceSourceAccessor::ConnectWithoutContext(ns3::ObjectBase * obj, ns3::CallbackBase const & cb) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2474
    cls.add_method('ConnectWithoutContext', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2475
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2476
                   [param('ns3::ObjectBase *', 'obj', transfer_ownership=False), param('ns3::CallbackBase const &', 'cb')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2477
                   is_pure_virtual=True, is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2478
    ## trace-source-accessor.h (module 'core'): bool ns3::TraceSourceAccessor::Disconnect(ns3::ObjectBase * obj, std::string context, ns3::CallbackBase const & cb) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2479
    cls.add_method('Disconnect', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2480
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2481
                   [param('ns3::ObjectBase *', 'obj', transfer_ownership=False), param('std::string', 'context'), param('ns3::CallbackBase const &', 'cb')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2482
                   is_pure_virtual=True, is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2483
    ## trace-source-accessor.h (module 'core'): bool ns3::TraceSourceAccessor::DisconnectWithoutContext(ns3::ObjectBase * obj, ns3::CallbackBase const & cb) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2484
    cls.add_method('DisconnectWithoutContext', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2485
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2486
                   [param('ns3::ObjectBase *', 'obj', transfer_ownership=False), param('ns3::CallbackBase const &', 'cb')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2487
                   is_pure_virtual=True, is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2488
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2489
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2490
def register_Ns3WallClockSynchronizer_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2491
    ## wall-clock-synchronizer.h (module 'core'): ns3::WallClockSynchronizer::WallClockSynchronizer(ns3::WallClockSynchronizer const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2492
    cls.add_constructor([param('ns3::WallClockSynchronizer const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2493
    ## wall-clock-synchronizer.h (module 'core'): ns3::WallClockSynchronizer::WallClockSynchronizer() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2494
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2495
    ## wall-clock-synchronizer.h (module 'core'): ns3::WallClockSynchronizer::NS_PER_SEC [variable]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2496
    cls.add_static_attribute('NS_PER_SEC', 'uint64_t const', is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2497
    ## wall-clock-synchronizer.h (module 'core'): ns3::WallClockSynchronizer::US_PER_NS [variable]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2498
    cls.add_static_attribute('US_PER_NS', 'uint64_t const', is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2499
    ## wall-clock-synchronizer.h (module 'core'): ns3::WallClockSynchronizer::US_PER_SEC [variable]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2500
    cls.add_static_attribute('US_PER_SEC', 'uint64_t const', is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2501
    ## wall-clock-synchronizer.h (module 'core'): uint64_t ns3::WallClockSynchronizer::DoEventEnd() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2502
    cls.add_method('DoEventEnd', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2503
                   'uint64_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2504
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2505
                   visibility='protected', is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2506
    ## wall-clock-synchronizer.h (module 'core'): void ns3::WallClockSynchronizer::DoEventStart() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2507
    cls.add_method('DoEventStart', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2508
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2509
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2510
                   visibility='protected', is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2511
    ## wall-clock-synchronizer.h (module 'core'): uint64_t ns3::WallClockSynchronizer::DoGetCurrentRealtime() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2512
    cls.add_method('DoGetCurrentRealtime', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2513
                   'uint64_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2514
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2515
                   visibility='protected', is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2516
    ## wall-clock-synchronizer.h (module 'core'): int64_t ns3::WallClockSynchronizer::DoGetDrift(uint64_t ns) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2517
    cls.add_method('DoGetDrift', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2518
                   'int64_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2519
                   [param('uint64_t', 'ns')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2520
                   visibility='protected', is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2521
    ## wall-clock-synchronizer.h (module 'core'): bool ns3::WallClockSynchronizer::DoRealtime() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2522
    cls.add_method('DoRealtime', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2523
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2524
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2525
                   visibility='protected', is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2526
    ## wall-clock-synchronizer.h (module 'core'): void ns3::WallClockSynchronizer::DoSetCondition(bool cond) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2527
    cls.add_method('DoSetCondition', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2528
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2529
                   [param('bool', 'cond')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2530
                   visibility='protected', is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2531
    ## wall-clock-synchronizer.h (module 'core'): void ns3::WallClockSynchronizer::DoSetOrigin(uint64_t ns) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2532
    cls.add_method('DoSetOrigin', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2533
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2534
                   [param('uint64_t', 'ns')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2535
                   visibility='protected', is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2536
    ## wall-clock-synchronizer.h (module 'core'): void ns3::WallClockSynchronizer::DoSignal() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2537
    cls.add_method('DoSignal', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2538
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2539
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2540
                   visibility='protected', is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2541
    ## wall-clock-synchronizer.h (module 'core'): bool ns3::WallClockSynchronizer::DoSynchronize(uint64_t nsCurrent, uint64_t nsDelay) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2542
    cls.add_method('DoSynchronize', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2543
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2544
                   [param('uint64_t', 'nsCurrent'), param('uint64_t', 'nsDelay')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2545
                   visibility='protected', is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2546
    ## wall-clock-synchronizer.h (module 'core'): uint64_t ns3::WallClockSynchronizer::DriftCorrect(uint64_t nsNow, uint64_t nsDelay) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2547
    cls.add_method('DriftCorrect', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2548
                   'uint64_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2549
                   [param('uint64_t', 'nsNow'), param('uint64_t', 'nsDelay')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2550
                   visibility='protected')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2551
    ## wall-clock-synchronizer.h (module 'core'): uint64_t ns3::WallClockSynchronizer::GetNormalizedRealtime() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2552
    cls.add_method('GetNormalizedRealtime', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2553
                   'uint64_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2554
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2555
                   visibility='protected')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2556
    ## wall-clock-synchronizer.h (module 'core'): uint64_t ns3::WallClockSynchronizer::GetRealtime() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2557
    cls.add_method('GetRealtime', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2558
                   'uint64_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2559
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2560
                   visibility='protected')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2561
    ## wall-clock-synchronizer.h (module 'core'): void ns3::WallClockSynchronizer::NsToTimeval(int64_t ns, timeval * tv) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2562
    cls.add_method('NsToTimeval', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2563
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2564
                   [param('int64_t', 'ns'), param('timeval *', 'tv')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2565
                   visibility='protected')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2566
    ## wall-clock-synchronizer.h (module 'core'): bool ns3::WallClockSynchronizer::SleepWait(uint64_t arg0) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2567
    cls.add_method('SleepWait', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2568
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2569
                   [param('uint64_t', 'arg0')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2570
                   visibility='protected')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2571
    ## wall-clock-synchronizer.h (module 'core'): bool ns3::WallClockSynchronizer::SpinWait(uint64_t arg0) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2572
    cls.add_method('SpinWait', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2573
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2574
                   [param('uint64_t', 'arg0')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2575
                   visibility='protected')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2576
    ## wall-clock-synchronizer.h (module 'core'): void ns3::WallClockSynchronizer::TimevalAdd(timeval * tv1, timeval * tv2, timeval * result) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2577
    cls.add_method('TimevalAdd', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2578
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2579
                   [param('timeval *', 'tv1'), param('timeval *', 'tv2'), param('timeval *', 'result')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2580
                   visibility='protected')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2581
    ## wall-clock-synchronizer.h (module 'core'): uint64_t ns3::WallClockSynchronizer::TimevalToNs(timeval * tv) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2582
    cls.add_method('TimevalToNs', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2583
                   'uint64_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2584
                   [param('timeval *', 'tv')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2585
                   visibility='protected')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2586
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2587
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2588
def register_Ns3AttributeAccessor_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2589
    ## attribute.h (module 'core'): ns3::AttributeAccessor::AttributeAccessor(ns3::AttributeAccessor const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2590
    cls.add_constructor([param('ns3::AttributeAccessor const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2591
    ## attribute.h (module 'core'): ns3::AttributeAccessor::AttributeAccessor() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2592
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2593
    ## attribute.h (module 'core'): bool ns3::AttributeAccessor::Get(ns3::ObjectBase const * object, ns3::AttributeValue & attribute) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2594
    cls.add_method('Get', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2595
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2596
                   [param('ns3::ObjectBase const *', 'object'), param('ns3::AttributeValue &', 'attribute')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2597
                   is_pure_virtual=True, is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2598
    ## attribute.h (module 'core'): bool ns3::AttributeAccessor::HasGetter() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2599
    cls.add_method('HasGetter', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2600
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2601
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2602
                   is_pure_virtual=True, is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2603
    ## attribute.h (module 'core'): bool ns3::AttributeAccessor::HasSetter() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2604
    cls.add_method('HasSetter', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2605
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2606
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2607
                   is_pure_virtual=True, is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2608
    ## attribute.h (module 'core'): bool ns3::AttributeAccessor::Set(ns3::ObjectBase * object, ns3::AttributeValue const & value) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2609
    cls.add_method('Set', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2610
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2611
                   [param('ns3::ObjectBase *', 'object', transfer_ownership=False), param('ns3::AttributeValue const &', 'value')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2612
                   is_pure_virtual=True, is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2613
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2614
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2615
def register_Ns3AttributeChecker_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2616
    ## attribute.h (module 'core'): ns3::AttributeChecker::AttributeChecker(ns3::AttributeChecker const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2617
    cls.add_constructor([param('ns3::AttributeChecker const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2618
    ## attribute.h (module 'core'): ns3::AttributeChecker::AttributeChecker() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2619
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2620
    ## attribute.h (module 'core'): bool ns3::AttributeChecker::Check(ns3::AttributeValue const & value) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2621
    cls.add_method('Check', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2622
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2623
                   [param('ns3::AttributeValue const &', 'value')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2624
                   is_pure_virtual=True, is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2625
    ## attribute.h (module 'core'): bool ns3::AttributeChecker::Copy(ns3::AttributeValue const & source, ns3::AttributeValue & destination) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2626
    cls.add_method('Copy', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2627
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2628
                   [param('ns3::AttributeValue const &', 'source'), param('ns3::AttributeValue &', 'destination')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2629
                   is_pure_virtual=True, is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2630
    ## attribute.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::AttributeChecker::Create() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2631
    cls.add_method('Create', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2632
                   'ns3::Ptr< ns3::AttributeValue >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2633
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2634
                   is_pure_virtual=True, is_const=True, is_virtual=True)
7401
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  2635
    ## attribute.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::AttributeChecker::CreateValidValue(ns3::AttributeValue const & value) const [member function]
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  2636
    cls.add_method('CreateValidValue', 
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  2637
                   'ns3::Ptr< ns3::AttributeValue >', 
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  2638
                   [param('ns3::AttributeValue const &', 'value')], 
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  2639
                   is_const=True)
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2640
    ## attribute.h (module 'core'): std::string ns3::AttributeChecker::GetUnderlyingTypeInformation() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2641
    cls.add_method('GetUnderlyingTypeInformation', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2642
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2643
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2644
                   is_pure_virtual=True, is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2645
    ## attribute.h (module 'core'): std::string ns3::AttributeChecker::GetValueTypeName() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2646
    cls.add_method('GetValueTypeName', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2647
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2648
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2649
                   is_pure_virtual=True, is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2650
    ## attribute.h (module 'core'): bool ns3::AttributeChecker::HasUnderlyingTypeInformation() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2651
    cls.add_method('HasUnderlyingTypeInformation', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2652
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2653
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2654
                   is_pure_virtual=True, is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2655
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2656
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2657
def register_Ns3AttributeValue_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2658
    ## attribute.h (module 'core'): ns3::AttributeValue::AttributeValue(ns3::AttributeValue const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2659
    cls.add_constructor([param('ns3::AttributeValue const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2660
    ## attribute.h (module 'core'): ns3::AttributeValue::AttributeValue() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2661
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2662
    ## attribute.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::AttributeValue::Copy() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2663
    cls.add_method('Copy', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2664
                   'ns3::Ptr< ns3::AttributeValue >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2665
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2666
                   is_pure_virtual=True, is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2667
    ## attribute.h (module 'core'): bool ns3::AttributeValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2668
    cls.add_method('DeserializeFromString', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2669
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2670
                   [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2671
                   is_pure_virtual=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2672
    ## attribute.h (module 'core'): std::string ns3::AttributeValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2673
    cls.add_method('SerializeToString', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2674
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2675
                   [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2676
                   is_pure_virtual=True, is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2677
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2678
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2679
def register_Ns3BooleanChecker_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2680
    ## boolean.h (module 'core'): ns3::BooleanChecker::BooleanChecker() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2681
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2682
    ## boolean.h (module 'core'): ns3::BooleanChecker::BooleanChecker(ns3::BooleanChecker const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2683
    cls.add_constructor([param('ns3::BooleanChecker const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2684
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2685
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2686
def register_Ns3BooleanValue_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2687
    cls.add_output_stream_operator()
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2688
    ## boolean.h (module 'core'): ns3::BooleanValue::BooleanValue(ns3::BooleanValue const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2689
    cls.add_constructor([param('ns3::BooleanValue const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2690
    ## boolean.h (module 'core'): ns3::BooleanValue::BooleanValue() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2691
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2692
    ## boolean.h (module 'core'): ns3::BooleanValue::BooleanValue(bool value) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2693
    cls.add_constructor([param('bool', 'value')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2694
    ## boolean.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::BooleanValue::Copy() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2695
    cls.add_method('Copy', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2696
                   'ns3::Ptr< ns3::AttributeValue >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2697
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2698
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2699
    ## boolean.h (module 'core'): bool ns3::BooleanValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2700
    cls.add_method('DeserializeFromString', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2701
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2702
                   [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2703
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2704
    ## boolean.h (module 'core'): bool ns3::BooleanValue::Get() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2705
    cls.add_method('Get', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2706
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2707
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2708
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2709
    ## boolean.h (module 'core'): std::string ns3::BooleanValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2710
    cls.add_method('SerializeToString', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2711
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2712
                   [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2713
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2714
    ## boolean.h (module 'core'): void ns3::BooleanValue::Set(bool value) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2715
    cls.add_method('Set', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2716
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2717
                   [param('bool', 'value')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2718
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2719
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2720
def register_Ns3CalendarScheduler_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2721
    ## calendar-scheduler.h (module 'core'): ns3::CalendarScheduler::CalendarScheduler(ns3::CalendarScheduler const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2722
    cls.add_constructor([param('ns3::CalendarScheduler const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2723
    ## calendar-scheduler.h (module 'core'): ns3::CalendarScheduler::CalendarScheduler() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2724
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2725
    ## calendar-scheduler.h (module 'core'): static ns3::TypeId ns3::CalendarScheduler::GetTypeId() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2726
    cls.add_method('GetTypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2727
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2728
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2729
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2730
    ## calendar-scheduler.h (module 'core'): void ns3::CalendarScheduler::Insert(ns3::Scheduler::Event const & ev) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2731
    cls.add_method('Insert', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2732
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2733
                   [param('ns3::Scheduler::Event const &', 'ev')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2734
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2735
    ## calendar-scheduler.h (module 'core'): bool ns3::CalendarScheduler::IsEmpty() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2736
    cls.add_method('IsEmpty', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2737
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2738
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2739
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2740
    ## calendar-scheduler.h (module 'core'): ns3::Scheduler::Event ns3::CalendarScheduler::PeekNext() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2741
    cls.add_method('PeekNext', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2742
                   'ns3::Scheduler::Event', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2743
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2744
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2745
    ## calendar-scheduler.h (module 'core'): void ns3::CalendarScheduler::Remove(ns3::Scheduler::Event const & ev) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2746
    cls.add_method('Remove', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2747
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2748
                   [param('ns3::Scheduler::Event const &', 'ev')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2749
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2750
    ## calendar-scheduler.h (module 'core'): ns3::Scheduler::Event ns3::CalendarScheduler::RemoveNext() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2751
    cls.add_method('RemoveNext', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2752
                   'ns3::Scheduler::Event', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2753
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2754
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2755
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2756
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2757
def register_Ns3CallbackChecker_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2758
    ## callback.h (module 'core'): ns3::CallbackChecker::CallbackChecker() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2759
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2760
    ## callback.h (module 'core'): ns3::CallbackChecker::CallbackChecker(ns3::CallbackChecker const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2761
    cls.add_constructor([param('ns3::CallbackChecker const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2762
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2763
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2764
def register_Ns3CallbackImplBase_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2765
    ## callback.h (module 'core'): ns3::CallbackImplBase::CallbackImplBase() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2766
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2767
    ## callback.h (module 'core'): ns3::CallbackImplBase::CallbackImplBase(ns3::CallbackImplBase const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2768
    cls.add_constructor([param('ns3::CallbackImplBase const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2769
    ## callback.h (module 'core'): bool ns3::CallbackImplBase::IsEqual(ns3::Ptr<ns3::CallbackImplBase const> other) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2770
    cls.add_method('IsEqual', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2771
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2772
                   [param('ns3::Ptr< ns3::CallbackImplBase const >', 'other')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2773
                   is_pure_virtual=True, is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2774
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2775
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2776
def register_Ns3CallbackValue_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2777
    ## callback.h (module 'core'): ns3::CallbackValue::CallbackValue(ns3::CallbackValue const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2778
    cls.add_constructor([param('ns3::CallbackValue const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2779
    ## callback.h (module 'core'): ns3::CallbackValue::CallbackValue() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2780
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2781
    ## callback.h (module 'core'): ns3::CallbackValue::CallbackValue(ns3::CallbackBase const & base) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2782
    cls.add_constructor([param('ns3::CallbackBase const &', 'base')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2783
    ## callback.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::CallbackValue::Copy() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2784
    cls.add_method('Copy', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2785
                   'ns3::Ptr< ns3::AttributeValue >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2786
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2787
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2788
    ## callback.h (module 'core'): bool ns3::CallbackValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2789
    cls.add_method('DeserializeFromString', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2790
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2791
                   [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2792
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2793
    ## callback.h (module 'core'): std::string ns3::CallbackValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2794
    cls.add_method('SerializeToString', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2795
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2796
                   [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2797
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2798
    ## callback.h (module 'core'): void ns3::CallbackValue::Set(ns3::CallbackBase base) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2799
    cls.add_method('Set', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2800
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2801
                   [param('ns3::CallbackBase', 'base')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2802
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2803
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2804
def register_Ns3DefaultSimulatorImpl_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2805
    ## default-simulator-impl.h (module 'core'): ns3::DefaultSimulatorImpl::DefaultSimulatorImpl(ns3::DefaultSimulatorImpl const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2806
    cls.add_constructor([param('ns3::DefaultSimulatorImpl const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2807
    ## default-simulator-impl.h (module 'core'): ns3::DefaultSimulatorImpl::DefaultSimulatorImpl() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2808
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2809
    ## default-simulator-impl.h (module 'core'): void ns3::DefaultSimulatorImpl::Cancel(ns3::EventId const & ev) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2810
    cls.add_method('Cancel', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2811
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2812
                   [param('ns3::EventId const &', 'ev')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2813
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2814
    ## default-simulator-impl.h (module 'core'): void ns3::DefaultSimulatorImpl::Destroy() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2815
    cls.add_method('Destroy', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2816
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2817
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2818
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2819
    ## default-simulator-impl.h (module 'core'): uint32_t ns3::DefaultSimulatorImpl::GetContext() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2820
    cls.add_method('GetContext', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2821
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2822
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2823
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2824
    ## default-simulator-impl.h (module 'core'): ns3::Time ns3::DefaultSimulatorImpl::GetDelayLeft(ns3::EventId const & id) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2825
    cls.add_method('GetDelayLeft', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2826
                   'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2827
                   [param('ns3::EventId const &', 'id')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2828
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2829
    ## default-simulator-impl.h (module 'core'): ns3::Time ns3::DefaultSimulatorImpl::GetMaximumSimulationTime() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2830
    cls.add_method('GetMaximumSimulationTime', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2831
                   'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2832
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2833
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2834
    ## default-simulator-impl.h (module 'core'): uint32_t ns3::DefaultSimulatorImpl::GetSystemId() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2835
    cls.add_method('GetSystemId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2836
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2837
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2838
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2839
    ## default-simulator-impl.h (module 'core'): static ns3::TypeId ns3::DefaultSimulatorImpl::GetTypeId() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2840
    cls.add_method('GetTypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2841
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2842
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2843
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2844
    ## default-simulator-impl.h (module 'core'): bool ns3::DefaultSimulatorImpl::IsExpired(ns3::EventId const & ev) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2845
    cls.add_method('IsExpired', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2846
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2847
                   [param('ns3::EventId const &', 'ev')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2848
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2849
    ## default-simulator-impl.h (module 'core'): bool ns3::DefaultSimulatorImpl::IsFinished() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2850
    cls.add_method('IsFinished', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2851
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2852
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2853
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2854
    ## default-simulator-impl.h (module 'core'): ns3::Time ns3::DefaultSimulatorImpl::Next() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2855
    cls.add_method('Next', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2856
                   'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2857
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2858
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2859
    ## default-simulator-impl.h (module 'core'): ns3::Time ns3::DefaultSimulatorImpl::Now() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2860
    cls.add_method('Now', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2861
                   'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2862
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2863
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2864
    ## default-simulator-impl.h (module 'core'): void ns3::DefaultSimulatorImpl::Remove(ns3::EventId const & ev) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2865
    cls.add_method('Remove', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2866
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2867
                   [param('ns3::EventId const &', 'ev')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2868
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2869
    ## default-simulator-impl.h (module 'core'): void ns3::DefaultSimulatorImpl::Run() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2870
    cls.add_method('Run', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2871
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2872
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2873
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2874
    ## default-simulator-impl.h (module 'core'): void ns3::DefaultSimulatorImpl::RunOneEvent() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2875
    cls.add_method('RunOneEvent', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2876
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2877
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2878
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2879
    ## default-simulator-impl.h (module 'core'): ns3::EventId ns3::DefaultSimulatorImpl::Schedule(ns3::Time const & time, ns3::EventImpl * event) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2880
    cls.add_method('Schedule', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2881
                   'ns3::EventId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2882
                   [param('ns3::Time const &', 'time'), param('ns3::EventImpl *', 'event')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2883
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2884
    ## default-simulator-impl.h (module 'core'): ns3::EventId ns3::DefaultSimulatorImpl::ScheduleDestroy(ns3::EventImpl * event) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2885
    cls.add_method('ScheduleDestroy', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2886
                   'ns3::EventId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2887
                   [param('ns3::EventImpl *', 'event')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2888
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2889
    ## default-simulator-impl.h (module 'core'): ns3::EventId ns3::DefaultSimulatorImpl::ScheduleNow(ns3::EventImpl * event) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2890
    cls.add_method('ScheduleNow', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2891
                   'ns3::EventId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2892
                   [param('ns3::EventImpl *', 'event')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2893
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2894
    ## default-simulator-impl.h (module 'core'): void ns3::DefaultSimulatorImpl::ScheduleWithContext(uint32_t context, ns3::Time const & time, ns3::EventImpl * event) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2895
    cls.add_method('ScheduleWithContext', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2896
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2897
                   [param('uint32_t', 'context'), param('ns3::Time const &', 'time'), param('ns3::EventImpl *', 'event')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2898
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2899
    ## default-simulator-impl.h (module 'core'): void ns3::DefaultSimulatorImpl::SetScheduler(ns3::ObjectFactory schedulerFactory) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2900
    cls.add_method('SetScheduler', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2901
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2902
                   [param('ns3::ObjectFactory', 'schedulerFactory')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2903
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2904
    ## default-simulator-impl.h (module 'core'): void ns3::DefaultSimulatorImpl::Stop() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2905
    cls.add_method('Stop', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2906
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2907
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2908
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2909
    ## default-simulator-impl.h (module 'core'): void ns3::DefaultSimulatorImpl::Stop(ns3::Time const & time) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2910
    cls.add_method('Stop', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2911
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2912
                   [param('ns3::Time const &', 'time')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2913
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2914
    ## default-simulator-impl.h (module 'core'): void ns3::DefaultSimulatorImpl::DoDispose() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2915
    cls.add_method('DoDispose', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2916
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2917
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2918
                   visibility='private', is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2919
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2920
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2921
def register_Ns3DoubleValue_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2922
    ## double.h (module 'core'): ns3::DoubleValue::DoubleValue() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2923
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2924
    ## double.h (module 'core'): ns3::DoubleValue::DoubleValue(ns3::DoubleValue const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2925
    cls.add_constructor([param('ns3::DoubleValue const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2926
    ## double.h (module 'core'): ns3::DoubleValue::DoubleValue(double const & value) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2927
    cls.add_constructor([param('double const &', 'value')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2928
    ## double.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::DoubleValue::Copy() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2929
    cls.add_method('Copy', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2930
                   'ns3::Ptr< ns3::AttributeValue >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2931
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2932
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2933
    ## double.h (module 'core'): bool ns3::DoubleValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2934
    cls.add_method('DeserializeFromString', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2935
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2936
                   [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2937
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2938
    ## double.h (module 'core'): double ns3::DoubleValue::Get() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2939
    cls.add_method('Get', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2940
                   'double', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2941
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2942
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2943
    ## double.h (module 'core'): std::string ns3::DoubleValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2944
    cls.add_method('SerializeToString', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2945
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2946
                   [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2947
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2948
    ## double.h (module 'core'): void ns3::DoubleValue::Set(double const & value) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2949
    cls.add_method('Set', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2950
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2951
                   [param('double const &', 'value')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2952
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2953
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2954
def register_Ns3EmptyAttributeValue_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2955
    ## attribute.h (module 'core'): ns3::EmptyAttributeValue::EmptyAttributeValue(ns3::EmptyAttributeValue const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2956
    cls.add_constructor([param('ns3::EmptyAttributeValue const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2957
    ## attribute.h (module 'core'): ns3::EmptyAttributeValue::EmptyAttributeValue() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2958
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2959
    ## attribute.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::EmptyAttributeValue::Copy() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2960
    cls.add_method('Copy', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2961
                   'ns3::Ptr< ns3::AttributeValue >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2962
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2963
                   is_const=True, visibility='private', is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2964
    ## attribute.h (module 'core'): bool ns3::EmptyAttributeValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2965
    cls.add_method('DeserializeFromString', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2966
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2967
                   [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2968
                   visibility='private', is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2969
    ## attribute.h (module 'core'): std::string ns3::EmptyAttributeValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2970
    cls.add_method('SerializeToString', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2971
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2972
                   [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2973
                   is_const=True, visibility='private', is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2974
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2975
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2976
def register_Ns3EnumChecker_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2977
    ## enum.h (module 'core'): ns3::EnumChecker::EnumChecker(ns3::EnumChecker const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2978
    cls.add_constructor([param('ns3::EnumChecker const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2979
    ## enum.h (module 'core'): ns3::EnumChecker::EnumChecker() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2980
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2981
    ## enum.h (module 'core'): void ns3::EnumChecker::Add(int v, std::string name) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2982
    cls.add_method('Add', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2983
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2984
                   [param('int', 'v'), param('std::string', 'name')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2985
    ## enum.h (module 'core'): void ns3::EnumChecker::AddDefault(int v, std::string name) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2986
    cls.add_method('AddDefault', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2987
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2988
                   [param('int', 'v'), param('std::string', 'name')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2989
    ## enum.h (module 'core'): bool ns3::EnumChecker::Check(ns3::AttributeValue const & value) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2990
    cls.add_method('Check', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2991
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2992
                   [param('ns3::AttributeValue const &', 'value')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2993
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2994
    ## enum.h (module 'core'): bool ns3::EnumChecker::Copy(ns3::AttributeValue const & src, ns3::AttributeValue & dst) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2995
    cls.add_method('Copy', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2996
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2997
                   [param('ns3::AttributeValue const &', 'src'), param('ns3::AttributeValue &', 'dst')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2998
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2999
    ## enum.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::EnumChecker::Create() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3000
    cls.add_method('Create', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3001
                   'ns3::Ptr< ns3::AttributeValue >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3002
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3003
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3004
    ## enum.h (module 'core'): std::string ns3::EnumChecker::GetUnderlyingTypeInformation() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3005
    cls.add_method('GetUnderlyingTypeInformation', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3006
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3007
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3008
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3009
    ## enum.h (module 'core'): std::string ns3::EnumChecker::GetValueTypeName() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3010
    cls.add_method('GetValueTypeName', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3011
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3012
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3013
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3014
    ## enum.h (module 'core'): bool ns3::EnumChecker::HasUnderlyingTypeInformation() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3015
    cls.add_method('HasUnderlyingTypeInformation', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3016
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3017
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3018
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3019
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3020
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3021
def register_Ns3EnumValue_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3022
    ## enum.h (module 'core'): ns3::EnumValue::EnumValue(ns3::EnumValue const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3023
    cls.add_constructor([param('ns3::EnumValue const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3024
    ## enum.h (module 'core'): ns3::EnumValue::EnumValue() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3025
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3026
    ## enum.h (module 'core'): ns3::EnumValue::EnumValue(int v) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3027
    cls.add_constructor([param('int', 'v')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3028
    ## enum.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::EnumValue::Copy() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3029
    cls.add_method('Copy', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3030
                   'ns3::Ptr< ns3::AttributeValue >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3031
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3032
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3033
    ## enum.h (module 'core'): bool ns3::EnumValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3034
    cls.add_method('DeserializeFromString', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3035
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3036
                   [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3037
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3038
    ## enum.h (module 'core'): int ns3::EnumValue::Get() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3039
    cls.add_method('Get', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3040
                   'int', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3041
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3042
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3043
    ## enum.h (module 'core'): std::string ns3::EnumValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3044
    cls.add_method('SerializeToString', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3045
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3046
                   [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3047
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3048
    ## enum.h (module 'core'): void ns3::EnumValue::Set(int v) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3049
    cls.add_method('Set', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3050
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3051
                   [param('int', 'v')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3052
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3053
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3054
def register_Ns3EventImpl_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3055
    ## event-impl.h (module 'core'): ns3::EventImpl::EventImpl(ns3::EventImpl const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3056
    cls.add_constructor([param('ns3::EventImpl const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3057
    ## event-impl.h (module 'core'): ns3::EventImpl::EventImpl() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3058
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3059
    ## event-impl.h (module 'core'): void ns3::EventImpl::Cancel() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3060
    cls.add_method('Cancel', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3061
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3062
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3063
    ## event-impl.h (module 'core'): void ns3::EventImpl::Invoke() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3064
    cls.add_method('Invoke', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3065
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3066
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3067
    ## event-impl.h (module 'core'): bool ns3::EventImpl::IsCancelled() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3068
    cls.add_method('IsCancelled', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3069
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3070
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3071
    ## event-impl.h (module 'core'): void ns3::EventImpl::Notify() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3072
    cls.add_method('Notify', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3073
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3074
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3075
                   is_pure_virtual=True, visibility='protected', is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3076
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3077
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3078
def register_Ns3FdReader_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3079
    ## unix-fd-reader.h (module 'core'): ns3::FdReader::FdReader(ns3::FdReader const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3080
    cls.add_constructor([param('ns3::FdReader const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3081
    ## unix-fd-reader.h (module 'core'): ns3::FdReader::FdReader() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3082
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3083
    ## unix-fd-reader.h (module 'core'): void ns3::FdReader::Start(int fd, ns3::Callback<void, unsigned char*, long, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> readCallback) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3084
    cls.add_method('Start', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3085
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3086
                   [param('int', 'fd'), param('ns3::Callback< void, unsigned char *, long, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'readCallback')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3087
    ## unix-fd-reader.h (module 'core'): void ns3::FdReader::Stop() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3088
    cls.add_method('Stop', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3089
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3090
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3091
    ## unix-fd-reader.h (module 'core'): ns3::FdReader::Data ns3::FdReader::DoRead() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3092
    cls.add_method('DoRead', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3093
                   'ns3::FdReader::Data', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3094
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3095
                   is_pure_virtual=True, visibility='protected', is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3096
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3097
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3098
def register_Ns3HeapScheduler_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3099
    ## heap-scheduler.h (module 'core'): ns3::HeapScheduler::HeapScheduler(ns3::HeapScheduler const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3100
    cls.add_constructor([param('ns3::HeapScheduler const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3101
    ## heap-scheduler.h (module 'core'): ns3::HeapScheduler::HeapScheduler() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3102
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3103
    ## heap-scheduler.h (module 'core'): static ns3::TypeId ns3::HeapScheduler::GetTypeId() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3104
    cls.add_method('GetTypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3105
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3106
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3107
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3108
    ## heap-scheduler.h (module 'core'): void ns3::HeapScheduler::Insert(ns3::Scheduler::Event const & ev) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3109
    cls.add_method('Insert', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3110
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3111
                   [param('ns3::Scheduler::Event const &', 'ev')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3112
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3113
    ## heap-scheduler.h (module 'core'): bool ns3::HeapScheduler::IsEmpty() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3114
    cls.add_method('IsEmpty', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3115
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3116
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3117
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3118
    ## heap-scheduler.h (module 'core'): ns3::Scheduler::Event ns3::HeapScheduler::PeekNext() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3119
    cls.add_method('PeekNext', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3120
                   'ns3::Scheduler::Event', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3121
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3122
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3123
    ## heap-scheduler.h (module 'core'): void ns3::HeapScheduler::Remove(ns3::Scheduler::Event const & ev) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3124
    cls.add_method('Remove', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3125
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3126
                   [param('ns3::Scheduler::Event const &', 'ev')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3127
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3128
    ## heap-scheduler.h (module 'core'): ns3::Scheduler::Event ns3::HeapScheduler::RemoveNext() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3129
    cls.add_method('RemoveNext', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3130
                   'ns3::Scheduler::Event', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3131
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3132
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3133
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3134
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3135
def register_Ns3IntegerValue_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3136
    ## integer.h (module 'core'): ns3::IntegerValue::IntegerValue() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3137
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3138
    ## integer.h (module 'core'): ns3::IntegerValue::IntegerValue(ns3::IntegerValue const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3139
    cls.add_constructor([param('ns3::IntegerValue const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3140
    ## integer.h (module 'core'): ns3::IntegerValue::IntegerValue(int64_t const & value) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3141
    cls.add_constructor([param('int64_t const &', 'value')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3142
    ## integer.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::IntegerValue::Copy() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3143
    cls.add_method('Copy', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3144
                   'ns3::Ptr< ns3::AttributeValue >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3145
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3146
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3147
    ## integer.h (module 'core'): bool ns3::IntegerValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3148
    cls.add_method('DeserializeFromString', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3149
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3150
                   [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3151
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3152
    ## integer.h (module 'core'): int64_t ns3::IntegerValue::Get() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3153
    cls.add_method('Get', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3154
                   'int64_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3155
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3156
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3157
    ## integer.h (module 'core'): std::string ns3::IntegerValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3158
    cls.add_method('SerializeToString', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3159
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3160
                   [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3161
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3162
    ## integer.h (module 'core'): void ns3::IntegerValue::Set(int64_t const & value) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3163
    cls.add_method('Set', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3164
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3165
                   [param('int64_t const &', 'value')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3166
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3167
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3168
def register_Ns3ListScheduler_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3169
    ## list-scheduler.h (module 'core'): ns3::ListScheduler::ListScheduler(ns3::ListScheduler const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3170
    cls.add_constructor([param('ns3::ListScheduler const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3171
    ## list-scheduler.h (module 'core'): ns3::ListScheduler::ListScheduler() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3172
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3173
    ## list-scheduler.h (module 'core'): static ns3::TypeId ns3::ListScheduler::GetTypeId() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3174
    cls.add_method('GetTypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3175
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3176
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3177
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3178
    ## list-scheduler.h (module 'core'): void ns3::ListScheduler::Insert(ns3::Scheduler::Event const & ev) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3179
    cls.add_method('Insert', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3180
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3181
                   [param('ns3::Scheduler::Event const &', 'ev')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3182
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3183
    ## list-scheduler.h (module 'core'): bool ns3::ListScheduler::IsEmpty() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3184
    cls.add_method('IsEmpty', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3185
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3186
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3187
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3188
    ## list-scheduler.h (module 'core'): ns3::Scheduler::Event ns3::ListScheduler::PeekNext() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3189
    cls.add_method('PeekNext', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3190
                   'ns3::Scheduler::Event', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3191
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3192
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3193
    ## list-scheduler.h (module 'core'): void ns3::ListScheduler::Remove(ns3::Scheduler::Event const & ev) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3194
    cls.add_method('Remove', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3195
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3196
                   [param('ns3::Scheduler::Event const &', 'ev')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3197
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3198
    ## list-scheduler.h (module 'core'): ns3::Scheduler::Event ns3::ListScheduler::RemoveNext() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3199
    cls.add_method('RemoveNext', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3200
                   'ns3::Scheduler::Event', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3201
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3202
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3203
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3204
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3205
def register_Ns3MapScheduler_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3206
    ## map-scheduler.h (module 'core'): ns3::MapScheduler::MapScheduler(ns3::MapScheduler const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3207
    cls.add_constructor([param('ns3::MapScheduler const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3208
    ## map-scheduler.h (module 'core'): ns3::MapScheduler::MapScheduler() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3209
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3210
    ## map-scheduler.h (module 'core'): static ns3::TypeId ns3::MapScheduler::GetTypeId() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3211
    cls.add_method('GetTypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3212
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3213
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3214
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3215
    ## map-scheduler.h (module 'core'): void ns3::MapScheduler::Insert(ns3::Scheduler::Event const & ev) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3216
    cls.add_method('Insert', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3217
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3218
                   [param('ns3::Scheduler::Event const &', 'ev')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3219
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3220
    ## map-scheduler.h (module 'core'): bool ns3::MapScheduler::IsEmpty() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3221
    cls.add_method('IsEmpty', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3222
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3223
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3224
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3225
    ## map-scheduler.h (module 'core'): ns3::Scheduler::Event ns3::MapScheduler::PeekNext() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3226
    cls.add_method('PeekNext', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3227
                   'ns3::Scheduler::Event', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3228
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3229
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3230
    ## map-scheduler.h (module 'core'): void ns3::MapScheduler::Remove(ns3::Scheduler::Event const & ev) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3231
    cls.add_method('Remove', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3232
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3233
                   [param('ns3::Scheduler::Event const &', 'ev')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3234
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3235
    ## map-scheduler.h (module 'core'): ns3::Scheduler::Event ns3::MapScheduler::RemoveNext() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3236
    cls.add_method('RemoveNext', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3237
                   'ns3::Scheduler::Event', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3238
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3239
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3240
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3241
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3242
def register_Ns3Ns2CalendarScheduler_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3243
    ## ns2-calendar-scheduler.h (module 'core'): ns3::Ns2CalendarScheduler::Ns2CalendarScheduler(ns3::Ns2CalendarScheduler const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3244
    cls.add_constructor([param('ns3::Ns2CalendarScheduler const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3245
    ## ns2-calendar-scheduler.h (module 'core'): ns3::Ns2CalendarScheduler::Ns2CalendarScheduler() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3246
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3247
    ## ns2-calendar-scheduler.h (module 'core'): static ns3::TypeId ns3::Ns2CalendarScheduler::GetTypeId() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3248
    cls.add_method('GetTypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3249
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3250
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3251
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3252
    ## ns2-calendar-scheduler.h (module 'core'): void ns3::Ns2CalendarScheduler::Insert(ns3::Scheduler::Event const & ev) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3253
    cls.add_method('Insert', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3254
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3255
                   [param('ns3::Scheduler::Event const &', 'ev')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3256
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3257
    ## ns2-calendar-scheduler.h (module 'core'): bool ns3::Ns2CalendarScheduler::IsEmpty() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3258
    cls.add_method('IsEmpty', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3259
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3260
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3261
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3262
    ## ns2-calendar-scheduler.h (module 'core'): ns3::Scheduler::Event ns3::Ns2CalendarScheduler::PeekNext() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3263
    cls.add_method('PeekNext', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3264
                   'ns3::Scheduler::Event', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3265
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3266
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3267
    ## ns2-calendar-scheduler.h (module 'core'): void ns3::Ns2CalendarScheduler::Remove(ns3::Scheduler::Event const & ev) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3268
    cls.add_method('Remove', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3269
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3270
                   [param('ns3::Scheduler::Event const &', 'ev')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3271
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3272
    ## ns2-calendar-scheduler.h (module 'core'): ns3::Scheduler::Event ns3::Ns2CalendarScheduler::RemoveNext() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3273
    cls.add_method('RemoveNext', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3274
                   'ns3::Scheduler::Event', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3275
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3276
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3277
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3278
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3279
def register_Ns3ObjectFactoryChecker_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3280
    ## object-factory.h (module 'core'): ns3::ObjectFactoryChecker::ObjectFactoryChecker() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3281
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3282
    ## object-factory.h (module 'core'): ns3::ObjectFactoryChecker::ObjectFactoryChecker(ns3::ObjectFactoryChecker const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3283
    cls.add_constructor([param('ns3::ObjectFactoryChecker const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3284
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3285
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3286
def register_Ns3ObjectFactoryValue_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3287
    ## object-factory.h (module 'core'): ns3::ObjectFactoryValue::ObjectFactoryValue() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3288
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3289
    ## object-factory.h (module 'core'): ns3::ObjectFactoryValue::ObjectFactoryValue(ns3::ObjectFactoryValue const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3290
    cls.add_constructor([param('ns3::ObjectFactoryValue const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3291
    ## object-factory.h (module 'core'): ns3::ObjectFactoryValue::ObjectFactoryValue(ns3::ObjectFactory const & value) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3292
    cls.add_constructor([param('ns3::ObjectFactory const &', 'value')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3293
    ## object-factory.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::ObjectFactoryValue::Copy() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3294
    cls.add_method('Copy', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3295
                   'ns3::Ptr< ns3::AttributeValue >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3296
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3297
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3298
    ## object-factory.h (module 'core'): bool ns3::ObjectFactoryValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3299
    cls.add_method('DeserializeFromString', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3300
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3301
                   [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3302
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3303
    ## object-factory.h (module 'core'): ns3::ObjectFactory ns3::ObjectFactoryValue::Get() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3304
    cls.add_method('Get', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3305
                   'ns3::ObjectFactory', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3306
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3307
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3308
    ## object-factory.h (module 'core'): std::string ns3::ObjectFactoryValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3309
    cls.add_method('SerializeToString', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3310
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3311
                   [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3312
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3313
    ## object-factory.h (module 'core'): void ns3::ObjectFactoryValue::Set(ns3::ObjectFactory const & value) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3314
    cls.add_method('Set', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3315
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3316
                   [param('ns3::ObjectFactory const &', 'value')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3317
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3318
7420
ca9c09839724 Add a couple of includes and rescan core module's bindings
Mitch Watrous <watrous@u.washington.edu>
parents: 7407
diff changeset
  3319
def register_Ns3ObjectPtrContainerAccessor_methods(root_module, cls):
ca9c09839724 Add a couple of includes and rescan core module's bindings
Mitch Watrous <watrous@u.washington.edu>
parents: 7407
diff changeset
  3320
    ## object-ptr-container.h (module 'core'): ns3::ObjectPtrContainerAccessor::ObjectPtrContainerAccessor() [constructor]
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3321
    cls.add_constructor([])
7420
ca9c09839724 Add a couple of includes and rescan core module's bindings
Mitch Watrous <watrous@u.washington.edu>
parents: 7407
diff changeset
  3322
    ## object-ptr-container.h (module 'core'): ns3::ObjectPtrContainerAccessor::ObjectPtrContainerAccessor(ns3::ObjectPtrContainerAccessor const & arg0) [copy constructor]
ca9c09839724 Add a couple of includes and rescan core module's bindings
Mitch Watrous <watrous@u.washington.edu>
parents: 7407
diff changeset
  3323
    cls.add_constructor([param('ns3::ObjectPtrContainerAccessor const &', 'arg0')])
ca9c09839724 Add a couple of includes and rescan core module's bindings
Mitch Watrous <watrous@u.washington.edu>
parents: 7407
diff changeset
  3324
    ## object-ptr-container.h (module 'core'): bool ns3::ObjectPtrContainerAccessor::Get(ns3::ObjectBase const * object, ns3::AttributeValue & value) const [member function]
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3325
    cls.add_method('Get', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3326
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3327
                   [param('ns3::ObjectBase const *', 'object'), param('ns3::AttributeValue &', 'value')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3328
                   is_const=True, is_virtual=True)
7420
ca9c09839724 Add a couple of includes and rescan core module's bindings
Mitch Watrous <watrous@u.washington.edu>
parents: 7407
diff changeset
  3329
    ## object-ptr-container.h (module 'core'): bool ns3::ObjectPtrContainerAccessor::HasGetter() const [member function]
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3330
    cls.add_method('HasGetter', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3331
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3332
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3333
                   is_const=True, is_virtual=True)
7420
ca9c09839724 Add a couple of includes and rescan core module's bindings
Mitch Watrous <watrous@u.washington.edu>
parents: 7407
diff changeset
  3334
    ## object-ptr-container.h (module 'core'): bool ns3::ObjectPtrContainerAccessor::HasSetter() const [member function]
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3335
    cls.add_method('HasSetter', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3336
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3337
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3338
                   is_const=True, is_virtual=True)
7420
ca9c09839724 Add a couple of includes and rescan core module's bindings
Mitch Watrous <watrous@u.washington.edu>
parents: 7407
diff changeset
  3339
    ## object-ptr-container.h (module 'core'): bool ns3::ObjectPtrContainerAccessor::Set(ns3::ObjectBase * object, ns3::AttributeValue const & value) const [member function]
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3340
    cls.add_method('Set', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3341
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3342
                   [param('ns3::ObjectBase *', 'object'), param('ns3::AttributeValue const &', 'value')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3343
                   is_const=True, is_virtual=True)
7420
ca9c09839724 Add a couple of includes and rescan core module's bindings
Mitch Watrous <watrous@u.washington.edu>
parents: 7407
diff changeset
  3344
    ## object-ptr-container.h (module 'core'): ns3::Ptr<ns3::Object> ns3::ObjectPtrContainerAccessor::DoGet(ns3::ObjectBase const * object, uint32_t i) const [member function]
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3345
    cls.add_method('DoGet', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3346
                   'ns3::Ptr< ns3::Object >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3347
                   [param('ns3::ObjectBase const *', 'object'), param('uint32_t', 'i')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3348
                   is_pure_virtual=True, is_const=True, visibility='private', is_virtual=True)
7420
ca9c09839724 Add a couple of includes and rescan core module's bindings
Mitch Watrous <watrous@u.washington.edu>
parents: 7407
diff changeset
  3349
    ## object-ptr-container.h (module 'core'): bool ns3::ObjectPtrContainerAccessor::DoGetN(ns3::ObjectBase const * object, uint32_t * n) const [member function]
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3350
    cls.add_method('DoGetN', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3351
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3352
                   [param('ns3::ObjectBase const *', 'object'), param('uint32_t *', 'n')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3353
                   is_pure_virtual=True, is_const=True, visibility='private', is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3354
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3355
7420
ca9c09839724 Add a couple of includes and rescan core module's bindings
Mitch Watrous <watrous@u.washington.edu>
parents: 7407
diff changeset
  3356
def register_Ns3ObjectPtrContainerChecker_methods(root_module, cls):
ca9c09839724 Add a couple of includes and rescan core module's bindings
Mitch Watrous <watrous@u.washington.edu>
parents: 7407
diff changeset
  3357
    ## object-ptr-container.h (module 'core'): ns3::ObjectPtrContainerChecker::ObjectPtrContainerChecker() [constructor]
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3358
    cls.add_constructor([])
7420
ca9c09839724 Add a couple of includes and rescan core module's bindings
Mitch Watrous <watrous@u.washington.edu>
parents: 7407
diff changeset
  3359
    ## object-ptr-container.h (module 'core'): ns3::ObjectPtrContainerChecker::ObjectPtrContainerChecker(ns3::ObjectPtrContainerChecker const & arg0) [copy constructor]
ca9c09839724 Add a couple of includes and rescan core module's bindings
Mitch Watrous <watrous@u.washington.edu>
parents: 7407
diff changeset
  3360
    cls.add_constructor([param('ns3::ObjectPtrContainerChecker const &', 'arg0')])
ca9c09839724 Add a couple of includes and rescan core module's bindings
Mitch Watrous <watrous@u.washington.edu>
parents: 7407
diff changeset
  3361
    ## object-ptr-container.h (module 'core'): ns3::TypeId ns3::ObjectPtrContainerChecker::GetItemTypeId() const [member function]
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3362
    cls.add_method('GetItemTypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3363
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3364
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3365
                   is_pure_virtual=True, is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3366
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3367
7420
ca9c09839724 Add a couple of includes and rescan core module's bindings
Mitch Watrous <watrous@u.washington.edu>
parents: 7407
diff changeset
  3368
def register_Ns3ObjectPtrContainerValue_methods(root_module, cls):
ca9c09839724 Add a couple of includes and rescan core module's bindings
Mitch Watrous <watrous@u.washington.edu>
parents: 7407
diff changeset
  3369
    ## object-ptr-container.h (module 'core'): ns3::ObjectPtrContainerValue::ObjectPtrContainerValue(ns3::ObjectPtrContainerValue const & arg0) [copy constructor]
ca9c09839724 Add a couple of includes and rescan core module's bindings
Mitch Watrous <watrous@u.washington.edu>
parents: 7407
diff changeset
  3370
    cls.add_constructor([param('ns3::ObjectPtrContainerValue const &', 'arg0')])
ca9c09839724 Add a couple of includes and rescan core module's bindings
Mitch Watrous <watrous@u.washington.edu>
parents: 7407
diff changeset
  3371
    ## object-ptr-container.h (module 'core'): ns3::ObjectPtrContainerValue::ObjectPtrContainerValue() [constructor]
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3372
    cls.add_constructor([])
7420
ca9c09839724 Add a couple of includes and rescan core module's bindings
Mitch Watrous <watrous@u.washington.edu>
parents: 7407
diff changeset
  3373
    ## object-ptr-container.h (module 'core'): __gnu_cxx::__normal_iterator<const ns3::Ptr<ns3::Object>*,std::vector<ns3::Ptr<ns3::Object>, std::allocator<ns3::Ptr<ns3::Object> > > > ns3::ObjectPtrContainerValue::Begin() const [member function]
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3374
    cls.add_method('Begin', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3375
                   '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Object > const, std::vector< ns3::Ptr< ns3::Object > > >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3376
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3377
                   is_const=True)
7420
ca9c09839724 Add a couple of includes and rescan core module's bindings
Mitch Watrous <watrous@u.washington.edu>
parents: 7407
diff changeset
  3378
    ## object-ptr-container.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::ObjectPtrContainerValue::Copy() const [member function]
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3379
    cls.add_method('Copy', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3380
                   'ns3::Ptr< ns3::AttributeValue >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3381
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3382
                   is_const=True, is_virtual=True)
7420
ca9c09839724 Add a couple of includes and rescan core module's bindings
Mitch Watrous <watrous@u.washington.edu>
parents: 7407
diff changeset
  3383
    ## object-ptr-container.h (module 'core'): bool ns3::ObjectPtrContainerValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3384
    cls.add_method('DeserializeFromString', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3385
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3386
                   [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3387
                   is_virtual=True)
7420
ca9c09839724 Add a couple of includes and rescan core module's bindings
Mitch Watrous <watrous@u.washington.edu>
parents: 7407
diff changeset
  3388
    ## object-ptr-container.h (module 'core'): __gnu_cxx::__normal_iterator<const ns3::Ptr<ns3::Object>*,std::vector<ns3::Ptr<ns3::Object>, std::allocator<ns3::Ptr<ns3::Object> > > > ns3::ObjectPtrContainerValue::End() const [member function]
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3389
    cls.add_method('End', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3390
                   '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Object > const, std::vector< ns3::Ptr< ns3::Object > > >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3391
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3392
                   is_const=True)
7420
ca9c09839724 Add a couple of includes and rescan core module's bindings
Mitch Watrous <watrous@u.washington.edu>
parents: 7407
diff changeset
  3393
    ## object-ptr-container.h (module 'core'): ns3::Ptr<ns3::Object> ns3::ObjectPtrContainerValue::Get(uint32_t i) const [member function]
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3394
    cls.add_method('Get', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3395
                   'ns3::Ptr< ns3::Object >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3396
                   [param('uint32_t', 'i')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3397
                   is_const=True)
7420
ca9c09839724 Add a couple of includes and rescan core module's bindings
Mitch Watrous <watrous@u.washington.edu>
parents: 7407
diff changeset
  3398
    ## object-ptr-container.h (module 'core'): uint32_t ns3::ObjectPtrContainerValue::GetN() const [member function]
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3399
    cls.add_method('GetN', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3400
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3401
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3402
                   is_const=True)
7420
ca9c09839724 Add a couple of includes and rescan core module's bindings
Mitch Watrous <watrous@u.washington.edu>
parents: 7407
diff changeset
  3403
    ## object-ptr-container.h (module 'core'): std::string ns3::ObjectPtrContainerValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3404
    cls.add_method('SerializeToString', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3405
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3406
                   [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3407
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3408
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3409
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3410
def register_Ns3PointerChecker_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3411
    ## pointer.h (module 'core'): ns3::PointerChecker::PointerChecker() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3412
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3413
    ## pointer.h (module 'core'): ns3::PointerChecker::PointerChecker(ns3::PointerChecker const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3414
    cls.add_constructor([param('ns3::PointerChecker const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3415
    ## pointer.h (module 'core'): ns3::TypeId ns3::PointerChecker::GetPointeeTypeId() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3416
    cls.add_method('GetPointeeTypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3417
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3418
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3419
                   is_pure_virtual=True, is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3420
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3421
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3422
def register_Ns3PointerValue_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3423
    ## pointer.h (module 'core'): ns3::PointerValue::PointerValue(ns3::PointerValue const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3424
    cls.add_constructor([param('ns3::PointerValue const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3425
    ## pointer.h (module 'core'): ns3::PointerValue::PointerValue() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3426
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3427
    ## pointer.h (module 'core'): ns3::PointerValue::PointerValue(ns3::Ptr<ns3::Object> object) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3428
    cls.add_constructor([param('ns3::Ptr< ns3::Object >', 'object')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3429
    ## pointer.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::PointerValue::Copy() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3430
    cls.add_method('Copy', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3431
                   'ns3::Ptr< ns3::AttributeValue >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3432
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3433
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3434
    ## pointer.h (module 'core'): bool ns3::PointerValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3435
    cls.add_method('DeserializeFromString', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3436
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3437
                   [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3438
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3439
    ## pointer.h (module 'core'): ns3::Ptr<ns3::Object> ns3::PointerValue::GetObject() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3440
    cls.add_method('GetObject', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3441
                   'ns3::Ptr< ns3::Object >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3442
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3443
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3444
    ## pointer.h (module 'core'): std::string ns3::PointerValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3445
    cls.add_method('SerializeToString', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3446
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3447
                   [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3448
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3449
    ## pointer.h (module 'core'): void ns3::PointerValue::SetObject(ns3::Ptr<ns3::Object> object) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3450
    cls.add_method('SetObject', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3451
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3452
                   [param('ns3::Ptr< ns3::Object >', 'object')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3453
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3454
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3455
def register_Ns3RandomVariableChecker_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3456
    ## random-variable.h (module 'core'): ns3::RandomVariableChecker::RandomVariableChecker() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3457
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3458
    ## random-variable.h (module 'core'): ns3::RandomVariableChecker::RandomVariableChecker(ns3::RandomVariableChecker const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3459
    cls.add_constructor([param('ns3::RandomVariableChecker const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3460
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3461
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3462
def register_Ns3RandomVariableValue_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3463
    ## random-variable.h (module 'core'): ns3::RandomVariableValue::RandomVariableValue() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3464
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3465
    ## random-variable.h (module 'core'): ns3::RandomVariableValue::RandomVariableValue(ns3::RandomVariableValue const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3466
    cls.add_constructor([param('ns3::RandomVariableValue const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3467
    ## random-variable.h (module 'core'): ns3::RandomVariableValue::RandomVariableValue(ns3::RandomVariable const & value) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3468
    cls.add_constructor([param('ns3::RandomVariable const &', 'value')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3469
    ## random-variable.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::RandomVariableValue::Copy() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3470
    cls.add_method('Copy', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3471
                   'ns3::Ptr< ns3::AttributeValue >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3472
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3473
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3474
    ## random-variable.h (module 'core'): bool ns3::RandomVariableValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3475
    cls.add_method('DeserializeFromString', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3476
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3477
                   [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3478
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3479
    ## random-variable.h (module 'core'): ns3::RandomVariable ns3::RandomVariableValue::Get() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3480
    cls.add_method('Get', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3481
                   'ns3::RandomVariable', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3482
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3483
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3484
    ## random-variable.h (module 'core'): std::string ns3::RandomVariableValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3485
    cls.add_method('SerializeToString', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3486
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3487
                   [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3488
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3489
    ## random-variable.h (module 'core'): void ns3::RandomVariableValue::Set(ns3::RandomVariable const & value) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3490
    cls.add_method('Set', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3491
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3492
                   [param('ns3::RandomVariable const &', 'value')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3493
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3494
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3495
def register_Ns3RealtimeSimulatorImpl_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3496
    ## realtime-simulator-impl.h (module 'core'): ns3::RealtimeSimulatorImpl::RealtimeSimulatorImpl(ns3::RealtimeSimulatorImpl const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3497
    cls.add_constructor([param('ns3::RealtimeSimulatorImpl const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3498
    ## realtime-simulator-impl.h (module 'core'): ns3::RealtimeSimulatorImpl::RealtimeSimulatorImpl() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3499
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3500
    ## realtime-simulator-impl.h (module 'core'): void ns3::RealtimeSimulatorImpl::Cancel(ns3::EventId const & ev) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3501
    cls.add_method('Cancel', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3502
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3503
                   [param('ns3::EventId const &', 'ev')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3504
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3505
    ## realtime-simulator-impl.h (module 'core'): void ns3::RealtimeSimulatorImpl::Destroy() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3506
    cls.add_method('Destroy', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3507
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3508
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3509
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3510
    ## realtime-simulator-impl.h (module 'core'): uint32_t ns3::RealtimeSimulatorImpl::GetContext() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3511
    cls.add_method('GetContext', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3512
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3513
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3514
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3515
    ## realtime-simulator-impl.h (module 'core'): ns3::Time ns3::RealtimeSimulatorImpl::GetDelayLeft(ns3::EventId const & id) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3516
    cls.add_method('GetDelayLeft', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3517
                   'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3518
                   [param('ns3::EventId const &', 'id')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3519
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3520
    ## realtime-simulator-impl.h (module 'core'): ns3::Time ns3::RealtimeSimulatorImpl::GetHardLimit() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3521
    cls.add_method('GetHardLimit', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3522
                   'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3523
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3524
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3525
    ## realtime-simulator-impl.h (module 'core'): ns3::Time ns3::RealtimeSimulatorImpl::GetMaximumSimulationTime() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3526
    cls.add_method('GetMaximumSimulationTime', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3527
                   'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3528
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3529
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3530
    ## realtime-simulator-impl.h (module 'core'): ns3::RealtimeSimulatorImpl::SynchronizationMode ns3::RealtimeSimulatorImpl::GetSynchronizationMode() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3531
    cls.add_method('GetSynchronizationMode', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3532
                   'ns3::RealtimeSimulatorImpl::SynchronizationMode', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3533
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3534
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3535
    ## realtime-simulator-impl.h (module 'core'): uint32_t ns3::RealtimeSimulatorImpl::GetSystemId() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3536
    cls.add_method('GetSystemId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3537
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3538
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3539
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3540
    ## realtime-simulator-impl.h (module 'core'): static ns3::TypeId ns3::RealtimeSimulatorImpl::GetTypeId() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3541
    cls.add_method('GetTypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3542
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3543
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3544
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3545
    ## realtime-simulator-impl.h (module 'core'): bool ns3::RealtimeSimulatorImpl::IsExpired(ns3::EventId const & ev) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3546
    cls.add_method('IsExpired', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3547
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3548
                   [param('ns3::EventId const &', 'ev')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3549
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3550
    ## realtime-simulator-impl.h (module 'core'): bool ns3::RealtimeSimulatorImpl::IsFinished() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3551
    cls.add_method('IsFinished', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3552
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3553
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3554
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3555
    ## realtime-simulator-impl.h (module 'core'): ns3::Time ns3::RealtimeSimulatorImpl::Next() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3556
    cls.add_method('Next', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3557
                   'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3558
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3559
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3560
    ## realtime-simulator-impl.h (module 'core'): ns3::Time ns3::RealtimeSimulatorImpl::Now() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3561
    cls.add_method('Now', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3562
                   'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3563
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3564
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3565
    ## realtime-simulator-impl.h (module 'core'): ns3::Time ns3::RealtimeSimulatorImpl::RealtimeNow() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3566
    cls.add_method('RealtimeNow', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3567
                   'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3568
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3569
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3570
    ## realtime-simulator-impl.h (module 'core'): void ns3::RealtimeSimulatorImpl::Remove(ns3::EventId const & ev) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3571
    cls.add_method('Remove', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3572
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3573
                   [param('ns3::EventId const &', 'ev')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3574
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3575
    ## realtime-simulator-impl.h (module 'core'): void ns3::RealtimeSimulatorImpl::Run() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3576
    cls.add_method('Run', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3577
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3578
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3579
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3580
    ## realtime-simulator-impl.h (module 'core'): void ns3::RealtimeSimulatorImpl::RunOneEvent() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3581
    cls.add_method('RunOneEvent', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3582
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3583
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3584
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3585
    ## realtime-simulator-impl.h (module 'core'): ns3::EventId ns3::RealtimeSimulatorImpl::Schedule(ns3::Time const & time, ns3::EventImpl * event) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3586
    cls.add_method('Schedule', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3587
                   'ns3::EventId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3588
                   [param('ns3::Time const &', 'time'), param('ns3::EventImpl *', 'event')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3589
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3590
    ## realtime-simulator-impl.h (module 'core'): ns3::EventId ns3::RealtimeSimulatorImpl::ScheduleDestroy(ns3::EventImpl * event) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3591
    cls.add_method('ScheduleDestroy', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3592
                   'ns3::EventId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3593
                   [param('ns3::EventImpl *', 'event')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3594
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3595
    ## realtime-simulator-impl.h (module 'core'): ns3::EventId ns3::RealtimeSimulatorImpl::ScheduleNow(ns3::EventImpl * event) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3596
    cls.add_method('ScheduleNow', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3597
                   'ns3::EventId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3598
                   [param('ns3::EventImpl *', 'event')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3599
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3600
    ## realtime-simulator-impl.h (module 'core'): void ns3::RealtimeSimulatorImpl::ScheduleRealtime(ns3::Time const & time, ns3::EventImpl * event) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3601
    cls.add_method('ScheduleRealtime', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3602
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3603
                   [param('ns3::Time const &', 'time'), param('ns3::EventImpl *', 'event')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3604
    ## realtime-simulator-impl.h (module 'core'): void ns3::RealtimeSimulatorImpl::ScheduleRealtimeNow(ns3::EventImpl * event) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3605
    cls.add_method('ScheduleRealtimeNow', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3606
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3607
                   [param('ns3::EventImpl *', 'event')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3608
    ## realtime-simulator-impl.h (module 'core'): void ns3::RealtimeSimulatorImpl::ScheduleRealtimeNowWithContext(uint32_t context, ns3::EventImpl * event) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3609
    cls.add_method('ScheduleRealtimeNowWithContext', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3610
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3611
                   [param('uint32_t', 'context'), param('ns3::EventImpl *', 'event')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3612
    ## realtime-simulator-impl.h (module 'core'): void ns3::RealtimeSimulatorImpl::ScheduleRealtimeWithContext(uint32_t context, ns3::Time const & time, ns3::EventImpl * event) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3613
    cls.add_method('ScheduleRealtimeWithContext', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3614
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3615
                   [param('uint32_t', 'context'), param('ns3::Time const &', 'time'), param('ns3::EventImpl *', 'event')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3616
    ## realtime-simulator-impl.h (module 'core'): void ns3::RealtimeSimulatorImpl::ScheduleWithContext(uint32_t context, ns3::Time const & time, ns3::EventImpl * event) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3617
    cls.add_method('ScheduleWithContext', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3618
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3619
                   [param('uint32_t', 'context'), param('ns3::Time const &', 'time'), param('ns3::EventImpl *', 'event')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3620
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3621
    ## realtime-simulator-impl.h (module 'core'): void ns3::RealtimeSimulatorImpl::SetHardLimit(ns3::Time limit) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3622
    cls.add_method('SetHardLimit', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3623
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3624
                   [param('ns3::Time', 'limit')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3625
    ## realtime-simulator-impl.h (module 'core'): void ns3::RealtimeSimulatorImpl::SetScheduler(ns3::ObjectFactory schedulerFactory) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3626
    cls.add_method('SetScheduler', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3627
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3628
                   [param('ns3::ObjectFactory', 'schedulerFactory')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3629
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3630
    ## realtime-simulator-impl.h (module 'core'): void ns3::RealtimeSimulatorImpl::SetSynchronizationMode(ns3::RealtimeSimulatorImpl::SynchronizationMode mode) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3631
    cls.add_method('SetSynchronizationMode', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3632
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3633
                   [param('ns3::RealtimeSimulatorImpl::SynchronizationMode', 'mode')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3634
    ## realtime-simulator-impl.h (module 'core'): void ns3::RealtimeSimulatorImpl::Stop() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3635
    cls.add_method('Stop', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3636
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3637
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3638
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3639
    ## realtime-simulator-impl.h (module 'core'): void ns3::RealtimeSimulatorImpl::Stop(ns3::Time const & time) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3640
    cls.add_method('Stop', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3641
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3642
                   [param('ns3::Time const &', 'time')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3643
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3644
    ## realtime-simulator-impl.h (module 'core'): void ns3::RealtimeSimulatorImpl::DoDispose() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3645
    cls.add_method('DoDispose', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3646
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3647
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3648
                   visibility='private', is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3649
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3650
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3651
def register_Ns3RefCountBase_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3652
    ## ref-count-base.h (module 'core'): ns3::RefCountBase::RefCountBase() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3653
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3654
    ## ref-count-base.h (module 'core'): ns3::RefCountBase::RefCountBase(ns3::RefCountBase const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3655
    cls.add_constructor([param('ns3::RefCountBase const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3656
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3657
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3658
def register_Ns3StringChecker_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3659
    ## string.h (module 'core'): ns3::StringChecker::StringChecker() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3660
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3661
    ## string.h (module 'core'): ns3::StringChecker::StringChecker(ns3::StringChecker const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3662
    cls.add_constructor([param('ns3::StringChecker const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3663
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3664
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3665
def register_Ns3StringValue_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3666
    ## string.h (module 'core'): ns3::StringValue::StringValue() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3667
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3668
    ## string.h (module 'core'): ns3::StringValue::StringValue(ns3::StringValue const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3669
    cls.add_constructor([param('ns3::StringValue const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3670
    ## string.h (module 'core'): ns3::StringValue::StringValue(std::string const & value) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3671
    cls.add_constructor([param('std::string const &', 'value')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3672
    ## string.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::StringValue::Copy() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3673
    cls.add_method('Copy', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3674
                   'ns3::Ptr< ns3::AttributeValue >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3675
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3676
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3677
    ## string.h (module 'core'): bool ns3::StringValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3678
    cls.add_method('DeserializeFromString', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3679
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3680
                   [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3681
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3682
    ## string.h (module 'core'): std::string ns3::StringValue::Get() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3683
    cls.add_method('Get', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3684
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3685
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3686
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3687
    ## string.h (module 'core'): std::string ns3::StringValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3688
    cls.add_method('SerializeToString', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3689
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3690
                   [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3691
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3692
    ## string.h (module 'core'): void ns3::StringValue::Set(std::string const & value) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3693
    cls.add_method('Set', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3694
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3695
                   [param('std::string const &', 'value')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3696
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3697
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3698
def register_Ns3TimeChecker_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3699
    ## nstime.h (module 'core'): ns3::TimeChecker::TimeChecker() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3700
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3701
    ## nstime.h (module 'core'): ns3::TimeChecker::TimeChecker(ns3::TimeChecker const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3702
    cls.add_constructor([param('ns3::TimeChecker const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3703
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3704
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3705
def register_Ns3TimeValue_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3706
    ## nstime.h (module 'core'): ns3::TimeValue::TimeValue() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3707
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3708
    ## nstime.h (module 'core'): ns3::TimeValue::TimeValue(ns3::TimeValue const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3709
    cls.add_constructor([param('ns3::TimeValue const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3710
    ## nstime.h (module 'core'): ns3::TimeValue::TimeValue(ns3::Time const & value) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3711
    cls.add_constructor([param('ns3::Time const &', 'value')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3712
    ## nstime.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::TimeValue::Copy() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3713
    cls.add_method('Copy', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3714
                   'ns3::Ptr< ns3::AttributeValue >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3715
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3716
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3717
    ## nstime.h (module 'core'): bool ns3::TimeValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3718
    cls.add_method('DeserializeFromString', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3719
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3720
                   [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3721
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3722
    ## nstime.h (module 'core'): ns3::Time ns3::TimeValue::Get() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3723
    cls.add_method('Get', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3724
                   'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3725
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3726
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3727
    ## nstime.h (module 'core'): std::string ns3::TimeValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3728
    cls.add_method('SerializeToString', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3729
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3730
                   [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3731
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3732
    ## nstime.h (module 'core'): void ns3::TimeValue::Set(ns3::Time const & value) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3733
    cls.add_method('Set', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3734
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3735
                   [param('ns3::Time const &', 'value')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3736
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3737
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3738
def register_Ns3TypeIdChecker_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3739
    ## type-id.h (module 'core'): ns3::TypeIdChecker::TypeIdChecker() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3740
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3741
    ## type-id.h (module 'core'): ns3::TypeIdChecker::TypeIdChecker(ns3::TypeIdChecker const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3742
    cls.add_constructor([param('ns3::TypeIdChecker const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3743
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3744
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3745
def register_Ns3TypeIdValue_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3746
    ## type-id.h (module 'core'): ns3::TypeIdValue::TypeIdValue() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3747
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3748
    ## type-id.h (module 'core'): ns3::TypeIdValue::TypeIdValue(ns3::TypeIdValue const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3749
    cls.add_constructor([param('ns3::TypeIdValue const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3750
    ## type-id.h (module 'core'): ns3::TypeIdValue::TypeIdValue(ns3::TypeId const & value) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3751
    cls.add_constructor([param('ns3::TypeId const &', 'value')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3752
    ## type-id.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::TypeIdValue::Copy() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3753
    cls.add_method('Copy', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3754
                   'ns3::Ptr< ns3::AttributeValue >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3755
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3756
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3757
    ## type-id.h (module 'core'): bool ns3::TypeIdValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3758
    cls.add_method('DeserializeFromString', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3759
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3760
                   [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3761
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3762
    ## type-id.h (module 'core'): ns3::TypeId ns3::TypeIdValue::Get() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3763
    cls.add_method('Get', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3764
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3765
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3766
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3767
    ## type-id.h (module 'core'): std::string ns3::TypeIdValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3768
    cls.add_method('SerializeToString', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3769
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3770
                   [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3771
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3772
    ## type-id.h (module 'core'): void ns3::TypeIdValue::Set(ns3::TypeId const & value) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3773
    cls.add_method('Set', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3774
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3775
                   [param('ns3::TypeId const &', 'value')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3776
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3777
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3778
def register_Ns3UintegerValue_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3779
    ## uinteger.h (module 'core'): ns3::UintegerValue::UintegerValue() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3780
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3781
    ## uinteger.h (module 'core'): ns3::UintegerValue::UintegerValue(ns3::UintegerValue const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3782
    cls.add_constructor([param('ns3::UintegerValue const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3783
    ## uinteger.h (module 'core'): ns3::UintegerValue::UintegerValue(uint64_t const & value) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3784
    cls.add_constructor([param('uint64_t const &', 'value')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3785
    ## uinteger.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::UintegerValue::Copy() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3786
    cls.add_method('Copy', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3787
                   'ns3::Ptr< ns3::AttributeValue >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3788
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3789
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3790
    ## uinteger.h (module 'core'): bool ns3::UintegerValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3791
    cls.add_method('DeserializeFromString', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3792
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3793
                   [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3794
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3795
    ## uinteger.h (module 'core'): uint64_t ns3::UintegerValue::Get() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3796
    cls.add_method('Get', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3797
                   'uint64_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3798
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3799
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3800
    ## uinteger.h (module 'core'): std::string ns3::UintegerValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3801
    cls.add_method('SerializeToString', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3802
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3803
                   [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3804
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3805
    ## uinteger.h (module 'core'): void ns3::UintegerValue::Set(uint64_t const & value) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3806
    cls.add_method('Set', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3807
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3808
                   [param('uint64_t const &', 'value')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3809
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3810
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3811
def register_Ns3Vector2DChecker_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3812
    ## vector.h (module 'core'): ns3::Vector2DChecker::Vector2DChecker() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3813
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3814
    ## vector.h (module 'core'): ns3::Vector2DChecker::Vector2DChecker(ns3::Vector2DChecker const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3815
    cls.add_constructor([param('ns3::Vector2DChecker const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3816
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3817
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3818
def register_Ns3Vector2DValue_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3819
    ## vector.h (module 'core'): ns3::Vector2DValue::Vector2DValue() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3820
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3821
    ## vector.h (module 'core'): ns3::Vector2DValue::Vector2DValue(ns3::Vector2DValue const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3822
    cls.add_constructor([param('ns3::Vector2DValue const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3823
    ## vector.h (module 'core'): ns3::Vector2DValue::Vector2DValue(ns3::Vector2D const & value) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3824
    cls.add_constructor([param('ns3::Vector2D const &', 'value')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3825
    ## vector.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::Vector2DValue::Copy() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3826
    cls.add_method('Copy', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3827
                   'ns3::Ptr< ns3::AttributeValue >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3828
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3829
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3830
    ## vector.h (module 'core'): bool ns3::Vector2DValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3831
    cls.add_method('DeserializeFromString', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3832
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3833
                   [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3834
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3835
    ## vector.h (module 'core'): ns3::Vector2D ns3::Vector2DValue::Get() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3836
    cls.add_method('Get', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3837
                   'ns3::Vector2D', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3838
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3839
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3840
    ## vector.h (module 'core'): std::string ns3::Vector2DValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3841
    cls.add_method('SerializeToString', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3842
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3843
                   [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3844
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3845
    ## vector.h (module 'core'): void ns3::Vector2DValue::Set(ns3::Vector2D const & value) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3846
    cls.add_method('Set', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3847
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3848
                   [param('ns3::Vector2D const &', 'value')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3849
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3850
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3851
def register_Ns3Vector3DChecker_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3852
    ## vector.h (module 'core'): ns3::Vector3DChecker::Vector3DChecker() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3853
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3854
    ## vector.h (module 'core'): ns3::Vector3DChecker::Vector3DChecker(ns3::Vector3DChecker const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3855
    cls.add_constructor([param('ns3::Vector3DChecker const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3856
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3857
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3858
def register_Ns3Vector3DValue_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3859
    ## vector.h (module 'core'): ns3::Vector3DValue::Vector3DValue() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3860
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3861
    ## vector.h (module 'core'): ns3::Vector3DValue::Vector3DValue(ns3::Vector3DValue const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3862
    cls.add_constructor([param('ns3::Vector3DValue const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3863
    ## vector.h (module 'core'): ns3::Vector3DValue::Vector3DValue(ns3::Vector3D const & value) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3864
    cls.add_constructor([param('ns3::Vector3D const &', 'value')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3865
    ## vector.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::Vector3DValue::Copy() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3866
    cls.add_method('Copy', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3867
                   'ns3::Ptr< ns3::AttributeValue >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3868
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3869
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3870
    ## vector.h (module 'core'): bool ns3::Vector3DValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3871
    cls.add_method('DeserializeFromString', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3872
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3873
                   [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3874
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3875
    ## vector.h (module 'core'): ns3::Vector3D ns3::Vector3DValue::Get() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3876
    cls.add_method('Get', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3877
                   'ns3::Vector3D', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3878
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3879
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3880
    ## vector.h (module 'core'): std::string ns3::Vector3DValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3881
    cls.add_method('SerializeToString', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3882
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3883
                   [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3884
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3885
    ## vector.h (module 'core'): void ns3::Vector3DValue::Set(ns3::Vector3D const & value) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3886
    cls.add_method('Set', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3887
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3888
                   [param('ns3::Vector3D const &', 'value')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3889
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3890
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3891
def register_Ns3ConfigMatchContainer_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3892
    ## config.h (module 'core'): ns3::Config::MatchContainer::MatchContainer(ns3::Config::MatchContainer const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3893
    cls.add_constructor([param('ns3::Config::MatchContainer const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3894
    ## config.h (module 'core'): ns3::Config::MatchContainer::MatchContainer() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3895
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3896
    ## config.h (module 'core'): ns3::Config::MatchContainer::MatchContainer(std::vector<ns3::Ptr<ns3::Object>, std::allocator<ns3::Ptr<ns3::Object> > > const & objects, std::vector<std::string, std::allocator<std::string> > const & contexts, std::string path) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3897
    cls.add_constructor([param('std::vector< ns3::Ptr< ns3::Object > > const &', 'objects'), param('std::vector< std::string > const &', 'contexts'), param('std::string', 'path')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3898
    ## config.h (module 'core'): __gnu_cxx::__normal_iterator<const ns3::Ptr<ns3::Object>*,std::vector<ns3::Ptr<ns3::Object>, std::allocator<ns3::Ptr<ns3::Object> > > > ns3::Config::MatchContainer::Begin() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3899
    cls.add_method('Begin', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3900
                   '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Object > const, std::vector< ns3::Ptr< ns3::Object > > >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3901
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3902
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3903
    ## config.h (module 'core'): void ns3::Config::MatchContainer::Connect(std::string name, ns3::CallbackBase const & cb) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3904
    cls.add_method('Connect', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3905
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3906
                   [param('std::string', 'name'), param('ns3::CallbackBase const &', 'cb')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3907
    ## config.h (module 'core'): void ns3::Config::MatchContainer::ConnectWithoutContext(std::string name, ns3::CallbackBase const & cb) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3908
    cls.add_method('ConnectWithoutContext', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3909
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3910
                   [param('std::string', 'name'), param('ns3::CallbackBase const &', 'cb')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3911
    ## config.h (module 'core'): void ns3::Config::MatchContainer::Disconnect(std::string name, ns3::CallbackBase const & cb) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3912
    cls.add_method('Disconnect', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3913
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3914
                   [param('std::string', 'name'), param('ns3::CallbackBase const &', 'cb')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3915
    ## config.h (module 'core'): void ns3::Config::MatchContainer::DisconnectWithoutContext(std::string name, ns3::CallbackBase const & cb) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3916
    cls.add_method('DisconnectWithoutContext', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3917
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3918
                   [param('std::string', 'name'), param('ns3::CallbackBase const &', 'cb')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3919
    ## config.h (module 'core'): __gnu_cxx::__normal_iterator<const ns3::Ptr<ns3::Object>*,std::vector<ns3::Ptr<ns3::Object>, std::allocator<ns3::Ptr<ns3::Object> > > > ns3::Config::MatchContainer::End() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3920
    cls.add_method('End', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3921
                   '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Object > const, std::vector< ns3::Ptr< ns3::Object > > >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3922
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3923
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3924
    ## config.h (module 'core'): ns3::Ptr<ns3::Object> ns3::Config::MatchContainer::Get(uint32_t i) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3925
    cls.add_method('Get', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3926
                   'ns3::Ptr< ns3::Object >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3927
                   [param('uint32_t', 'i')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3928
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3929
    ## config.h (module 'core'): std::string ns3::Config::MatchContainer::GetMatchedPath(uint32_t i) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3930
    cls.add_method('GetMatchedPath', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3931
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3932
                   [param('uint32_t', 'i')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3933
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3934
    ## config.h (module 'core'): uint32_t ns3::Config::MatchContainer::GetN() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3935
    cls.add_method('GetN', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3936
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3937
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3938
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3939
    ## config.h (module 'core'): std::string ns3::Config::MatchContainer::GetPath() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3940
    cls.add_method('GetPath', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3941
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3942
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3943
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3944
    ## config.h (module 'core'): void ns3::Config::MatchContainer::Set(std::string name, ns3::AttributeValue const & value) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3945
    cls.add_method('Set', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3946
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3947
                   [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3948
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3949
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3950
def register_functions(root_module):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3951
    module = root_module
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3952
    ## nstime.h (module 'core'): ns3::Time ns3::Abs(ns3::Time const & time) [free function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3953
    module.add_function('Abs', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3954
                        'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3955
                        [param('ns3::Time const &', 'time')])
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3956
    ## int64x64.h (module 'core'): ns3::int64x64_t ns3::Abs(ns3::int64x64_t const & value) [free function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3957
    module.add_function('Abs', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3958
                        'ns3::int64x64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3959
                        [param('ns3::int64x64_t const &', 'value')])
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3960
    ## breakpoint.h (module 'core'): extern void ns3::BreakpointFallback() [free function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3961
    module.add_function('BreakpointFallback', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3962
                        'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3963
                        [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3964
    ## vector.h (module 'core'): extern double ns3::CalculateDistance(ns3::Vector2D const & a, ns3::Vector2D const & b) [free function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3965
    module.add_function('CalculateDistance', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3966
                        'double', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3967
                        [param('ns3::Vector2D const &', 'a'), param('ns3::Vector2D const &', 'b')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3968
    ## vector.h (module 'core'): extern double ns3::CalculateDistance(ns3::Vector3D const & a, ns3::Vector3D const & b) [free function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3969
    module.add_function('CalculateDistance', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3970
                        'double', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3971
                        [param('ns3::Vector3D const &', 'a'), param('ns3::Vector3D const &', 'b')])
7420
ca9c09839724 Add a couple of includes and rescan core module's bindings
Mitch Watrous <watrous@u.washington.edu>
parents: 7407
diff changeset
  3972
    ## ptr.h (module 'core'): extern ns3::Ptr<ns3::ObjectPtrContainerValue> ns3::Create() [free function]
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3973
    module.add_function('Create', 
7420
ca9c09839724 Add a couple of includes and rescan core module's bindings
Mitch Watrous <watrous@u.washington.edu>
parents: 7407
diff changeset
  3974
                        'ns3::Ptr< ns3::ObjectPtrContainerValue >', 
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3975
                        [], 
7420
ca9c09839724 Add a couple of includes and rescan core module's bindings
Mitch Watrous <watrous@u.washington.edu>
parents: 7407
diff changeset
  3976
                        template_parameters=['ns3::ObjectPtrContainerValue'])
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3977
    ## ptr.h (module 'core'): extern ns3::Ptr<ns3::PointerValue> ns3::Create() [free function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3978
    module.add_function('Create', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3979
                        'ns3::Ptr< ns3::PointerValue >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3980
                        [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3981
                        template_parameters=['ns3::PointerValue'])
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3982
    ## nstime.h (module 'core'): ns3::Time ns3::FemtoSeconds(ns3::int64x64_t fs) [free function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3983
    module.add_function('FemtoSeconds', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3984
                        'ns3::Time', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3985
                        [param('ns3::int64x64_t', 'fs')])
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3986
    ## nstime.h (module 'core'): ns3::Time ns3::FemtoSeconds(uint64_t fs) [free function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3987
    module.add_function('FemtoSeconds', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3988
                        'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3989
                        [param('uint64_t', 'fs')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3990
    ## log.h (module 'core'): extern void ns3::LogComponentDisable(char const * name, ns3::LogLevel level) [free function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3991
    module.add_function('LogComponentDisable', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3992
                        'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3993
                        [param('char const *', 'name'), param('ns3::LogLevel', 'level')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3994
    ## log.h (module 'core'): extern void ns3::LogComponentDisableAll(ns3::LogLevel level) [free function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3995
    module.add_function('LogComponentDisableAll', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3996
                        'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3997
                        [param('ns3::LogLevel', 'level')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3998
    ## log.h (module 'core'): extern void ns3::LogComponentEnable(char const * name, ns3::LogLevel level) [free function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3999
    module.add_function('LogComponentEnable', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4000
                        'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4001
                        [param('char const *', 'name'), param('ns3::LogLevel', 'level')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4002
    ## log.h (module 'core'): extern void ns3::LogComponentEnableAll(ns3::LogLevel level) [free function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4003
    module.add_function('LogComponentEnableAll', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4004
                        'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4005
                        [param('ns3::LogLevel', 'level')])
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4006
    ## log.h (module 'core'): extern void ns3::LogComponentPrintList() [free function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4007
    module.add_function('LogComponentPrintList', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4008
                        'void', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4009
                        [])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4010
    ## log.h (module 'core'): extern ns3::LogNodePrinter ns3::LogGetNodePrinter() [free function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4011
    module.add_function('LogGetNodePrinter', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4012
                        'ns3::LogNodePrinter', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4013
                        [])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4014
    ## log.h (module 'core'): extern ns3::LogTimePrinter ns3::LogGetTimePrinter() [free function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4015
    module.add_function('LogGetTimePrinter', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4016
                        'ns3::LogTimePrinter', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4017
                        [])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4018
    ## log.h (module 'core'): extern void ns3::LogSetNodePrinter(ns3::LogNodePrinter arg0) [free function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4019
    module.add_function('LogSetNodePrinter', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4020
                        'void', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4021
                        [param('ns3::LogNodePrinter', 'arg0')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4022
    ## log.h (module 'core'): extern void ns3::LogSetTimePrinter(ns3::LogTimePrinter arg0) [free function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4023
    module.add_function('LogSetTimePrinter', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4024
                        'void', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4025
                        [param('ns3::LogTimePrinter', 'arg0')])
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4026
    ## boolean.h (module 'core'): extern ns3::Ptr<ns3::AttributeChecker const> ns3::MakeBooleanChecker() [free function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4027
    module.add_function('MakeBooleanChecker', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4028
                        'ns3::Ptr< ns3::AttributeChecker const >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4029
                        [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4030
    ## callback.h (module 'core'): extern ns3::Ptr<ns3::AttributeChecker const> ns3::MakeCallbackChecker() [free function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4031
    module.add_function('MakeCallbackChecker', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4032
                        'ns3::Ptr< ns3::AttributeChecker const >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4033
                        [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4034
    ## enum.h (module 'core'): extern ns3::Ptr<ns3::AttributeChecker const> ns3::MakeEnumChecker(int v1, std::string n1, int v2=0, std::string n2="", int v3=0, std::string n3="", int v4=0, std::string n4="", int v5=0, std::string n5="", int v6=0, std::string n6="", int v7=0, std::string n7="", int v8=0, std::string n8="", int v9=0, std::string n9="", int v10=0, std::string n10="", int v11=0, std::string n11="", int v12=0, std::string n12="", int v13=0, std::string n13="", int v14=0, std::string n14="", int v15=0, std::string n15="", int v16=0, std::string n16="", int v17=0, std::string n17="", int v18=0, std::string n18="", int v19=0, std::string n19="", int v20=0, std::string n20="", int v21=0, std::string n21="", int v22=0, std::string n22="") [free function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4035
    module.add_function('MakeEnumChecker', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4036
                        'ns3::Ptr< ns3::AttributeChecker const >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4037
                        [param('int', 'v1'), param('std::string', 'n1'), param('int', 'v2', default_value='0'), param('std::string', 'n2', default_value='""'), param('int', 'v3', default_value='0'), param('std::string', 'n3', default_value='""'), param('int', 'v4', default_value='0'), param('std::string', 'n4', default_value='""'), param('int', 'v5', default_value='0'), param('std::string', 'n5', default_value='""'), param('int', 'v6', default_value='0'), param('std::string', 'n6', default_value='""'), param('int', 'v7', default_value='0'), param('std::string', 'n7', default_value='""'), param('int', 'v8', default_value='0'), param('std::string', 'n8', default_value='""'), param('int', 'v9', default_value='0'), param('std::string', 'n9', default_value='""'), param('int', 'v10', default_value='0'), param('std::string', 'n10', default_value='""'), param('int', 'v11', default_value='0'), param('std::string', 'n11', default_value='""'), param('int', 'v12', default_value='0'), param('std::string', 'n12', default_value='""'), param('int', 'v13', default_value='0'), param('std::string', 'n13', default_value='""'), param('int', 'v14', default_value='0'), param('std::string', 'n14', default_value='""'), param('int', 'v15', default_value='0'), param('std::string', 'n15', default_value='""'), param('int', 'v16', default_value='0'), param('std::string', 'n16', default_value='""'), param('int', 'v17', default_value='0'), param('std::string', 'n17', default_value='""'), param('int', 'v18', default_value='0'), param('std::string', 'n18', default_value='""'), param('int', 'v19', default_value='0'), param('std::string', 'n19', default_value='""'), param('int', 'v20', default_value='0'), param('std::string', 'n20', default_value='""'), param('int', 'v21', default_value='0'), param('std::string', 'n21', default_value='""'), param('int', 'v22', default_value='0'), param('std::string', 'n22', default_value='""')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4038
    ## make-event.h (module 'core'): extern ns3::EventImpl * ns3::MakeEvent(void (*)(  ) * f) [free function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4039
    module.add_function('MakeEvent', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4040
                        'ns3::EventImpl *', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4041
                        [param('void ( * ) (  ) *', 'f')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4042
    ## object-factory.h (module 'core'): extern ns3::Ptr<ns3::AttributeChecker const> ns3::MakeObjectFactoryChecker() [free function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4043
    module.add_function('MakeObjectFactoryChecker', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4044
                        'ns3::Ptr< ns3::AttributeChecker const >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4045
                        [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4046
    ## random-variable.h (module 'core'): extern ns3::Ptr<ns3::AttributeChecker const> ns3::MakeRandomVariableChecker() [free function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4047
    module.add_function('MakeRandomVariableChecker', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4048
                        'ns3::Ptr< ns3::AttributeChecker const >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4049
                        [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4050
    ## string.h (module 'core'): extern ns3::Ptr<ns3::AttributeChecker const> ns3::MakeStringChecker() [free function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4051
    module.add_function('MakeStringChecker', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4052
                        'ns3::Ptr< ns3::AttributeChecker const >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4053
                        [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4054
    ## nstime.h (module 'core'): extern ns3::Ptr<ns3::AttributeChecker const> ns3::MakeTimeChecker() [free function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4055
    module.add_function('MakeTimeChecker', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4056
                        'ns3::Ptr< ns3::AttributeChecker const >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4057
                        [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4058
    ## type-id.h (module 'core'): extern ns3::Ptr<ns3::AttributeChecker const> ns3::MakeTypeIdChecker() [free function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4059
    module.add_function('MakeTypeIdChecker', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4060
                        'ns3::Ptr< ns3::AttributeChecker const >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4061
                        [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4062
    ## vector.h (module 'core'): extern ns3::Ptr<ns3::AttributeChecker const> ns3::MakeVector2DChecker() [free function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4063
    module.add_function('MakeVector2DChecker', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4064
                        'ns3::Ptr< ns3::AttributeChecker const >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4065
                        [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4066
    ## vector.h (module 'core'): extern ns3::Ptr<ns3::AttributeChecker const> ns3::MakeVector3DChecker() [free function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4067
    module.add_function('MakeVector3DChecker', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4068
                        'ns3::Ptr< ns3::AttributeChecker const >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4069
                        [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4070
    ## vector.h (module 'core'): extern ns3::Ptr<ns3::AttributeChecker const> ns3::MakeVectorChecker() [free function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4071
    module.add_function('MakeVectorChecker', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4072
                        'ns3::Ptr< ns3::AttributeChecker const >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4073
                        [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4074
    ## nstime.h (module 'core'): ns3::Time ns3::Max(ns3::Time const & ta, ns3::Time const & tb) [free function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4075
    module.add_function('Max', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4076
                        'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4077
                        [param('ns3::Time const &', 'ta'), param('ns3::Time const &', 'tb')])
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4078
    ## int64x64.h (module 'core'): ns3::int64x64_t ns3::Max(ns3::int64x64_t const & a, ns3::int64x64_t const & b) [free function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4079
    module.add_function('Max', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4080
                        'ns3::int64x64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4081
                        [param('ns3::int64x64_t const &', 'a'), param('ns3::int64x64_t const &', 'b')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4082
    ## nstime.h (module 'core'): ns3::Time ns3::MicroSeconds(ns3::int64x64_t us) [free function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4083
    module.add_function('MicroSeconds', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4084
                        'ns3::Time', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4085
                        [param('ns3::int64x64_t', 'us')])
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4086
    ## nstime.h (module 'core'): ns3::Time ns3::MicroSeconds(uint64_t us) [free function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4087
    module.add_function('MicroSeconds', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4088
                        'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4089
                        [param('uint64_t', 'us')])
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4090
    ## nstime.h (module 'core'): ns3::Time ns3::MilliSeconds(ns3::int64x64_t ms) [free function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4091
    module.add_function('MilliSeconds', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4092
                        'ns3::Time', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4093
                        [param('ns3::int64x64_t', 'ms')])
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4094
    ## nstime.h (module 'core'): ns3::Time ns3::MilliSeconds(uint64_t ms) [free function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4095
    module.add_function('MilliSeconds', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4096
                        'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4097
                        [param('uint64_t', 'ms')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4098
    ## nstime.h (module 'core'): ns3::Time ns3::Min(ns3::Time const & ta, ns3::Time const & tb) [free function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4099
    module.add_function('Min', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4100
                        'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4101
                        [param('ns3::Time const &', 'ta'), param('ns3::Time const &', 'tb')])
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4102
    ## int64x64.h (module 'core'): ns3::int64x64_t ns3::Min(ns3::int64x64_t const & a, ns3::int64x64_t const & b) [free function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4103
    module.add_function('Min', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4104
                        'ns3::int64x64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4105
                        [param('ns3::int64x64_t const &', 'a'), param('ns3::int64x64_t const &', 'b')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4106
    ## nstime.h (module 'core'): ns3::Time ns3::NanoSeconds(ns3::int64x64_t ns) [free function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4107
    module.add_function('NanoSeconds', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4108
                        'ns3::Time', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4109
                        [param('ns3::int64x64_t', 'ns')])
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4110
    ## nstime.h (module 'core'): ns3::Time ns3::NanoSeconds(uint64_t ns) [free function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4111
    module.add_function('NanoSeconds', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4112
                        'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4113
                        [param('uint64_t', 'ns')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4114
    ## simulator.h (module 'core'): extern ns3::Time ns3::Now() [free function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4115
    module.add_function('Now', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4116
                        'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4117
                        [])
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4118
    ## nstime.h (module 'core'): ns3::Time ns3::PicoSeconds(ns3::int64x64_t ps) [free function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4119
    module.add_function('PicoSeconds', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4120
                        'ns3::Time', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4121
                        [param('ns3::int64x64_t', 'ps')])
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4122
    ## nstime.h (module 'core'): ns3::Time ns3::PicoSeconds(uint64_t ps) [free function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4123
    module.add_function('PicoSeconds', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4124
                        'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4125
                        [param('uint64_t', 'ps')])
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4126
    ## nstime.h (module 'core'): ns3::Time ns3::Seconds(ns3::int64x64_t seconds) [free function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4127
    module.add_function('Seconds', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4128
                        'ns3::Time', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4129
                        [param('ns3::int64x64_t', 'seconds')])
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4130
    ## nstime.h (module 'core'): ns3::Time ns3::Seconds(double seconds) [free function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4131
    module.add_function('Seconds', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4132
                        'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4133
                        [param('double', 'seconds')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4134
    ## test.h (module 'core'): extern bool ns3::TestDoubleIsEqual(double const a, double const b, double const epsilon=std::numeric_limits<double>::epsilon()) [free function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4135
    module.add_function('TestDoubleIsEqual', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4136
                        'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4137
                        [param('double const', 'a'), param('double const', 'b'), param('double const', 'epsilon', default_value='std::numeric_limits<double>::epsilon()')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4138
    ## nstime.h (module 'core'): ns3::Time ns3::TimeStep(uint64_t ts) [free function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4139
    module.add_function('TimeStep', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4140
                        'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4141
                        [param('uint64_t', 'ts')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4142
    ## type-name.h (module 'core'): extern std::string ns3::TypeNameGet() [free function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4143
    module.add_function('TypeNameGet', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4144
                        'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4145
                        [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4146
                        template_parameters=['double'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4147
    ## type-name.h (module 'core'): extern std::string ns3::TypeNameGet() [free function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4148
    module.add_function('TypeNameGet', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4149
                        'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4150
                        [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4151
                        template_parameters=['float'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4152
    ## type-name.h (module 'core'): extern std::string ns3::TypeNameGet() [free function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4153
    module.add_function('TypeNameGet', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4154
                        'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4155
                        [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4156
                        template_parameters=['long'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4157
    ## type-name.h (module 'core'): extern std::string ns3::TypeNameGet() [free function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4158
    module.add_function('TypeNameGet', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4159
                        'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4160
                        [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4161
                        template_parameters=['int'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4162
    ## type-name.h (module 'core'): extern std::string ns3::TypeNameGet() [free function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4163
    module.add_function('TypeNameGet', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4164
                        'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4165
                        [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4166
                        template_parameters=['short'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4167
    ## type-name.h (module 'core'): extern std::string ns3::TypeNameGet() [free function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4168
    module.add_function('TypeNameGet', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4169
                        'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4170
                        [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4171
                        template_parameters=['signed char'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4172
    ## type-name.h (module 'core'): extern std::string ns3::TypeNameGet() [free function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4173
    module.add_function('TypeNameGet', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4174
                        'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4175
                        [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4176
                        template_parameters=['unsigned long'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4177
    ## type-name.h (module 'core'): extern std::string ns3::TypeNameGet() [free function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4178
    module.add_function('TypeNameGet', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4179
                        'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4180
                        [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4181
                        template_parameters=['unsigned int'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4182
    ## type-name.h (module 'core'): extern std::string ns3::TypeNameGet() [free function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4183
    module.add_function('TypeNameGet', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4184
                        'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4185
                        [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4186
                        template_parameters=['unsigned short'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4187
    ## type-name.h (module 'core'): extern std::string ns3::TypeNameGet() [free function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4188
    module.add_function('TypeNameGet', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4189
                        'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4190
                        [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4191
                        template_parameters=['unsigned char'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4192
    register_functions_ns3_Config(module.get_submodule('Config'), root_module)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4193
    register_functions_ns3_FatalImpl(module.get_submodule('FatalImpl'), root_module)
7586
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7420
diff changeset
  4194
    register_functions_ns3_SystemPath(module.get_submodule('SystemPath'), root_module)
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4195
    register_functions_ns3_internal(module.get_submodule('internal'), root_module)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4196
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4197
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4198
def register_functions_ns3_Config(module, root_module):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4199
    ## config.h (module 'core'): extern void ns3::Config::Connect(std::string path, ns3::CallbackBase const & cb) [free function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4200
    module.add_function('Connect', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4201
                        'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4202
                        [param('std::string', 'path'), param('ns3::CallbackBase const &', 'cb')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4203
    ## config.h (module 'core'): extern void ns3::Config::ConnectWithoutContext(std::string path, ns3::CallbackBase const & cb) [free function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4204
    module.add_function('ConnectWithoutContext', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4205
                        'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4206
                        [param('std::string', 'path'), param('ns3::CallbackBase const &', 'cb')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4207
    ## config.h (module 'core'): extern void ns3::Config::Disconnect(std::string path, ns3::CallbackBase const & cb) [free function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4208
    module.add_function('Disconnect', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4209
                        'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4210
                        [param('std::string', 'path'), param('ns3::CallbackBase const &', 'cb')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4211
    ## config.h (module 'core'): extern void ns3::Config::DisconnectWithoutContext(std::string path, ns3::CallbackBase const & cb) [free function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4212
    module.add_function('DisconnectWithoutContext', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4213
                        'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4214
                        [param('std::string', 'path'), param('ns3::CallbackBase const &', 'cb')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4215
    ## config.h (module 'core'): extern ns3::Ptr<ns3::Object> ns3::Config::GetRootNamespaceObject(uint32_t i) [free function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4216
    module.add_function('GetRootNamespaceObject', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4217
                        'ns3::Ptr< ns3::Object >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4218
                        [param('uint32_t', 'i')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4219
    ## config.h (module 'core'): extern uint32_t ns3::Config::GetRootNamespaceObjectN() [free function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4220
    module.add_function('GetRootNamespaceObjectN', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4221
                        'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4222
                        [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4223
    ## config.h (module 'core'): extern ns3::Config::MatchContainer ns3::Config::LookupMatches(std::string path) [free function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4224
    module.add_function('LookupMatches', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4225
                        'ns3::Config::MatchContainer', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4226
                        [param('std::string', 'path')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4227
    ## config.h (module 'core'): extern void ns3::Config::RegisterRootNamespaceObject(ns3::Ptr<ns3::Object> obj) [free function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4228
    module.add_function('RegisterRootNamespaceObject', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4229
                        'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4230
                        [param('ns3::Ptr< ns3::Object >', 'obj')])
7401
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4231
    ## config.h (module 'core'): extern void ns3::Config::Reset() [free function]
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4232
    module.add_function('Reset', 
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4233
                        'void', 
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4234
                        [])
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4235
    ## config.h (module 'core'): extern void ns3::Config::Set(std::string path, ns3::AttributeValue const & value) [free function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4236
    module.add_function('Set', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4237
                        'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4238
                        [param('std::string', 'path'), param('ns3::AttributeValue const &', 'value')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4239
    ## config.h (module 'core'): extern void ns3::Config::SetDefault(std::string name, ns3::AttributeValue const & value) [free function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4240
    module.add_function('SetDefault', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4241
                        'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4242
                        [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4243
    ## config.h (module 'core'): extern bool ns3::Config::SetDefaultFailSafe(std::string name, ns3::AttributeValue const & value) [free function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4244
    module.add_function('SetDefaultFailSafe', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4245
                        'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4246
                        [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4247
    ## config.h (module 'core'): extern void ns3::Config::SetGlobal(std::string name, ns3::AttributeValue const & value) [free function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4248
    module.add_function('SetGlobal', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4249
                        'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4250
                        [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4251
    ## config.h (module 'core'): extern bool ns3::Config::SetGlobalFailSafe(std::string name, ns3::AttributeValue const & value) [free function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4252
    module.add_function('SetGlobalFailSafe', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4253
                        'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4254
                        [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4255
    ## config.h (module 'core'): extern void ns3::Config::UnregisterRootNamespaceObject(ns3::Ptr<ns3::Object> obj) [free function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4256
    module.add_function('UnregisterRootNamespaceObject', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4257
                        'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4258
                        [param('ns3::Ptr< ns3::Object >', 'obj')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4259
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4260
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4261
def register_functions_ns3_FatalImpl(module, root_module):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4262
    ## fatal-impl.h (module 'core'): extern void ns3::FatalImpl::FlushStreams() [free function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4263
    module.add_function('FlushStreams', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4264
                        'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4265
                        [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4266
    ## fatal-impl.h (module 'core'): extern void ns3::FatalImpl::RegisterStream(std::ostream * stream) [free function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4267
    module.add_function('RegisterStream', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4268
                        'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4269
                        [param('std::ostream *', 'stream')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4270
    ## fatal-impl.h (module 'core'): extern void ns3::FatalImpl::UnregisterStream(std::ostream * stream) [free function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4271
    module.add_function('UnregisterStream', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4272
                        'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4273
                        [param('std::ostream *', 'stream')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4274
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4275
7586
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7420
diff changeset
  4276
def register_functions_ns3_SystemPath(module, root_module):
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7420
diff changeset
  4277
    ## system-path.h (module 'core'): extern std::string ns3::SystemPath::Append(std::string left, std::string right) [free function]
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7420
diff changeset
  4278
    module.add_function('Append', 
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7420
diff changeset
  4279
                        'std::string', 
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7420
diff changeset
  4280
                        [param('std::string', 'left'), param('std::string', 'right')])
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7420
diff changeset
  4281
    ## system-path.h (module 'core'): extern std::string ns3::SystemPath::FindSelfDirectory() [free function]
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7420
diff changeset
  4282
    module.add_function('FindSelfDirectory', 
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7420
diff changeset
  4283
                        'std::string', 
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7420
diff changeset
  4284
                        [])
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7420
diff changeset
  4285
    ## system-path.h (module 'core'): extern std::string ns3::SystemPath::Join(std::_List_const_iterator<std::basic_string<char, std::char_traits<char>, std::allocator<char> > > begin, std::_List_const_iterator<std::basic_string<char, std::char_traits<char>, std::allocator<char> > > end) [free function]
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7420
diff changeset
  4286
    module.add_function('Join', 
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7420
diff changeset
  4287
                        'std::string', 
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7420
diff changeset
  4288
                        [param('std::_List_const_iterator< std::basic_string< char, std::char_traits< char >, std::allocator< char > > >', 'begin'), param('std::_List_const_iterator< std::basic_string< char, std::char_traits< char >, std::allocator< char > > >', 'end')])
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7420
diff changeset
  4289
    ## system-path.h (module 'core'): extern void ns3::SystemPath::MakeDirectories(std::string path) [free function]
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7420
diff changeset
  4290
    module.add_function('MakeDirectories', 
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7420
diff changeset
  4291
                        'void', 
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7420
diff changeset
  4292
                        [param('std::string', 'path')])
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7420
diff changeset
  4293
    ## system-path.h (module 'core'): extern std::string ns3::SystemPath::MakeTemporaryDirectoryName() [free function]
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7420
diff changeset
  4294
    module.add_function('MakeTemporaryDirectoryName', 
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7420
diff changeset
  4295
                        'std::string', 
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7420
diff changeset
  4296
                        [])
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7420
diff changeset
  4297
    ## system-path.h (module 'core'): extern std::list<std::string, std::allocator<std::string> > ns3::SystemPath::ReadFiles(std::string path) [free function]
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7420
diff changeset
  4298
    module.add_function('ReadFiles', 
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7420
diff changeset
  4299
                        'std::list< std::string >', 
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7420
diff changeset
  4300
                        [param('std::string', 'path')])
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7420
diff changeset
  4301
    ## system-path.h (module 'core'): extern std::list<std::string, std::allocator<std::string> > ns3::SystemPath::Split(std::string path) [free function]
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7420
diff changeset
  4302
    module.add_function('Split', 
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7420
diff changeset
  4303
                        'std::list< std::string >', 
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7420
diff changeset
  4304
                        [param('std::string', 'path')])
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7420
diff changeset
  4305
    return
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7420
diff changeset
  4306
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4307
def register_functions_ns3_internal(module, root_module):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4308
    ## double.h (module 'core'): extern ns3::Ptr<ns3::AttributeChecker const> ns3::internal::MakeDoubleChecker(double min, double max, std::string name) [free function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4309
    module.add_function('MakeDoubleChecker', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4310
                        'ns3::Ptr< ns3::AttributeChecker const >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4311
                        [param('double', 'min'), param('double', 'max'), param('std::string', 'name')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4312
    ## integer.h (module 'core'): extern ns3::Ptr<ns3::AttributeChecker const> ns3::internal::MakeIntegerChecker(int64_t min, int64_t max, std::string name) [free function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4313
    module.add_function('MakeIntegerChecker', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4314
                        'ns3::Ptr< ns3::AttributeChecker const >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4315
                        [param('int64_t', 'min'), param('int64_t', 'max'), param('std::string', 'name')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4316
    ## uinteger.h (module 'core'): extern ns3::Ptr<ns3::AttributeChecker const> ns3::internal::MakeUintegerChecker(uint64_t min, uint64_t max, std::string name) [free function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4317
    module.add_function('MakeUintegerChecker', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4318
                        'ns3::Ptr< ns3::AttributeChecker const >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4319
                        [param('uint64_t', 'min'), param('uint64_t', 'max'), param('std::string', 'name')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4320
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4321
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4322
def main():
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4323
    out = FileCodeSink(sys.stdout)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4324
    root_module = module_init()
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4325
    register_types(root_module)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4326
    register_methods(root_module)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4327
    register_functions(root_module)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4328
    root_module.generate(out)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4329
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4330
if __name__ == '__main__':
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4331
    main()
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4332