src/core/bindings/modulegen__gcc_LP64.py
author Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
Sun, 07 Aug 2011 16:08:55 +0100
changeset 7407 a28fffcfb2e5
parent 7403 423566595b8a
child 7420 ca9c09839724
permissions -rw-r--r--
Remove bogus TypeId::ResetInitialValues declaration, fix bindings
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'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   241
    ## object-vector.h (module 'core'): ns3::ObjectVectorAccessor [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   242
    module.add_class('ObjectVectorAccessor', parent=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
   243
    ## object-vector.h (module 'core'): ns3::ObjectVectorChecker [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   244
    module.add_class('ObjectVectorChecker', 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
   245
    ## object-vector.h (module 'core'): ns3::ObjectVectorValue [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   246
    module.add_class('ObjectVectorValue', 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
   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'])
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   283
    typehandlers.add_type_alias('void ( * ) ( std::ostream & ) *', 'ns3::LogTimePrinter')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   284
    typehandlers.add_type_alias('void ( * ) ( std::ostream & ) **', 'ns3::LogTimePrinter*')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   285
    typehandlers.add_type_alias('void ( * ) ( std::ostream & ) *&', 'ns3::LogTimePrinter&')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   286
    typehandlers.add_type_alias('void ( * ) ( std::ostream & ) *', 'ns3::LogNodePrinter')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   287
    typehandlers.add_type_alias('void ( * ) ( std::ostream & ) **', 'ns3::LogNodePrinter*')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   288
    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
   289
    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
   290
    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
   291
    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
   292
    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
   293
    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
   294
    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
   295
    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
   296
    module.add_typedef(root_module['ns3::Vector3DValue'], 'VectorValue')
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::Vector3DChecker', 'ns3::VectorChecker')
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::Vector3DChecker*', 'ns3::VectorChecker*')
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::Vector3DChecker&', 'ns3::VectorChecker&')
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::Vector3DChecker'], 'VectorChecker')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   301
    
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   302
    ## 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
   303
    
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   304
    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
   305
    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
   306
    
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   307
    
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   308
    ## 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
   309
    
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   310
    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
   311
    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
   312
    
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   313
    
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   314
    ## 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
   315
    
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   316
    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
   317
    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
   318
    
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   319
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   320
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
   321
    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
   322
    
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   323
    ## 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
   324
    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
   325
    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
   326
    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
   327
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   328
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
   329
    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
   330
    
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   331
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   332
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
   333
    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
   334
    
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   335
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   336
def register_methods(root_module):
7401
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   337
    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
   338
    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
   339
    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
   340
    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
   341
    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
   342
    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
   343
    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
   344
    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
   345
    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
   346
    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
   347
    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
   348
    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
   349
    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
   350
    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
   351
    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
   352
    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
   353
    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
   354
    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
   355
    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
   356
    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
   357
    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
   358
    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
   359
    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
   360
    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
   361
    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
   362
    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
   363
    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
   364
    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
   365
    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
   366
    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
   367
    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
   368
    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
   369
    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
   370
    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
   371
    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
   372
    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
   373
    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
   374
    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
   375
    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
   376
    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
   377
    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
   378
    register_Ns3Empty_methods(root_module, root_module['ns3::empty'])
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   379
    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
   380
    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
   381
    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
   382
    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
   383
    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
   384
    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
   385
    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
   386
    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
   387
    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
   388
    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
   389
    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
   390
    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
   391
    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
   392
    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
   393
    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
   394
    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
   395
    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
   396
    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
   397
    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
   398
    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
   399
    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
   400
    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
   401
    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
   402
    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
   403
    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
   404
    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
   405
    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
   406
    register_Ns3SystemThread_methods(root_module, root_module['ns3::SystemThread'])
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   407
    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
   408
    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
   409
    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
   410
    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
   411
    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
   412
    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
   413
    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
   414
    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
   415
    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
   416
    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
   417
    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
   418
    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
   419
    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
   420
    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
   421
    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
   422
    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
   423
    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
   424
    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
   425
    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
   426
    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
   427
    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
   428
    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
   429
    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
   430
    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
   431
    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
   432
    register_Ns3ObjectFactoryValue_methods(root_module, root_module['ns3::ObjectFactoryValue'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   433
    register_Ns3ObjectVectorAccessor_methods(root_module, root_module['ns3::ObjectVectorAccessor'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   434
    register_Ns3ObjectVectorChecker_methods(root_module, root_module['ns3::ObjectVectorChecker'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   435
    register_Ns3ObjectVectorValue_methods(root_module, root_module['ns3::ObjectVectorValue'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   436
    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
   437
    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
   438
    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
   439
    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
   440
    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
   441
    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
   442
    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
   443
    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
   444
    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
   445
    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
   446
    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
   447
    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
   448
    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
   449
    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
   450
    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
   451
    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
   452
    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
   453
    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
   454
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   455
7401
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   456
def register_Ns3AttributeConstructionList_methods(root_module, cls):
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   457
    ## 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
   458
    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
   459
    ## 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
   460
    cls.add_constructor([])
7401
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   461
    ## 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
   462
    cls.add_method('Add', 
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   463
                   'void', 
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   464
                   [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
   465
    ## 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
   466
    cls.add_method('Begin', 
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   467
                   '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
   468
                   [], 
7401
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   469
                   is_const=True)
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   470
    ## 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
   471
    cls.add_method('End', 
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   472
                   '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
   473
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   474
                   is_const=True)
7401
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   475
    ## 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
   476
    cls.add_method('Find', 
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   477
                   'ns3::Ptr< ns3::AttributeValue >', 
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   478
                   [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   479
                   is_const=True)
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   480
    return
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   481
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   482
def register_Ns3AttributeConstructionListItem_methods(root_module, cls):
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   483
    ## 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
   484
    cls.add_constructor([])
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   485
    ## 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
   486
    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
   487
    ## 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
   488
    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
   489
    ## 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
   490
    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
   491
    ## 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
   492
    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
   493
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   494
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   495
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
   496
    ## 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
   497
    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
   498
    ## 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
   499
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   500
    ## 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
   501
    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
   502
                   '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
   503
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   504
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   505
    ## 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
   506
    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
   507
                        visibility='protected')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   508
    ## 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
   509
    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
   510
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   511
                   [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
   512
                   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
   513
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   514
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   515
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
   516
    ## 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
   517
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   518
    ## 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
   519
    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
   520
    ## 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
   521
    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
   522
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   523
                   [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
   524
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   525
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   526
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
   527
    ## 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
   528
    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
   529
    ## 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
   530
    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
   531
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   532
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   533
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
   534
    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
   535
    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
   536
    ## 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
   537
    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
   538
    ## 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
   539
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   540
    ## 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
   541
    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
   542
    ## 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
   543
    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
   544
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   545
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   546
    ## 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
   547
    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
   548
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   549
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   550
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   551
    ## 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
   552
    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
   553
                   'uint64_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   554
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   555
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   556
    ## 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
   557
    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
   558
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   559
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   560
                   is_const=True)
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'): 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
   562
    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
   563
                   'bool', 
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
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   566
    ## 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
   567
    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
   568
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   569
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   570
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   571
    ## 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
   572
    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
   573
                   'ns3::EventImpl *', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   574
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   575
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   576
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   577
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   578
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
   579
    ## 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
   580
    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
   581
    ## 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
   582
    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
   583
    ## 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
   584
    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
   585
                   '__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
   586
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   587
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   588
    ## 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
   589
    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
   590
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   591
                   [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
   592
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   593
    ## 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
   594
    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
   595
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   596
                   [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
   597
                   is_static=True)
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'): 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
   599
    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
   600
                   '__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
   601
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   602
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   603
    ## 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
   604
    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
   605
                   '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
   606
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   607
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   608
    ## 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
   609
    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
   610
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   611
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   612
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   613
    ## 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
   614
    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
   615
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   616
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   617
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   618
    ## 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
   619
    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
   620
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   621
                   [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
   622
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   623
    ## 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
   624
    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
   625
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   626
                   [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
   627
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   628
    ## 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
   629
    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
   630
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   631
                   [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
   632
                   is_static=True)
7401
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   633
    ## 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
   634
    cls.add_method('ResetInitialValue', 
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   635
                   'void', 
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   636
                   [])
6881
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'): 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
   638
    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
   639
                   'bool', 
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 const &', 'value')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   641
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   642
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   643
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
   644
    ## 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
   645
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   646
    ## 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
   647
    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
   648
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   649
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   650
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
   651
    ## 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
   652
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   653
    ## 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
   654
    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
   655
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   656
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   657
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
   658
    ## 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
   659
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   660
    ## 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
   661
    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
   662
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   663
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   664
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
   665
    ## 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
   666
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   667
    ## 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
   668
    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
   669
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   670
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   671
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
   672
    ## 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
   673
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   674
    ## 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
   675
    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
   676
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   677
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   678
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
   679
    ## 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
   680
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   681
    ## 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
   682
    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
   683
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   684
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   685
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
   686
    ## 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
   687
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   688
    ## 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
   689
    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
   690
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   691
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   692
def register_Ns3LogComponent_methods(root_module, cls):
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   693
    ## 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
   694
    cls.add_constructor([param('ns3::LogComponent const &', 'arg0')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   695
    ## 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
   696
    cls.add_constructor([param('char const *', 'name')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   697
    ## 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
   698
    cls.add_method('Disable', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   699
                   'void', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   700
                   [param('ns3::LogLevel', 'level')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   701
    ## 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
   702
    cls.add_method('Enable', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   703
                   'void', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   704
                   [param('ns3::LogLevel', 'level')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   705
    ## 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
   706
    cls.add_method('EnvVarCheck', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   707
                   'void', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   708
                   [param('char const *', 'name')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   709
    ## 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
   710
    cls.add_method('IsEnabled', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   711
                   'bool', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   712
                   [param('ns3::LogLevel', 'level')], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   713
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   714
    ## 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
   715
    cls.add_method('IsNoneEnabled', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   716
                   'bool', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   717
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   718
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   719
    ## 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
   720
    cls.add_method('Name', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   721
                   'char const *', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   722
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   723
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   724
    return
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   725
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   726
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
   727
    ## 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
   728
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   729
    ## 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
   730
    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
   731
    ## 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
   732
    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
   733
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   734
                   [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
   735
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   736
    ## 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
   737
    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
   738
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   739
                   [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
   740
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   741
    ## 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
   742
    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
   743
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   744
                   [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
   745
                   is_static=True)
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'): 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
   747
    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
   748
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   749
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   750
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   751
    ## 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
   752
    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
   753
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   754
                   [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
   755
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   756
    ## 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
   757
    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
   758
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   759
                   [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
   760
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   761
    ## 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
   762
    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
   763
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   764
                   [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
   765
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   766
    ## 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
   767
    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
   768
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   769
                   [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
   770
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   771
    ## 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
   772
    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
   773
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   774
                   [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
   775
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   776
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   777
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   778
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
   779
    ## 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
   780
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   781
    ## 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
   782
    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
   783
    ## 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
   784
    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
   785
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   786
                   [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
   787
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   788
    ## 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
   789
    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
   790
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   791
                   [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
   792
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   793
    ## 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
   794
    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
   795
                   'ns3::TypeId', 
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
                   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
   798
    ## 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
   799
    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
   800
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   801
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   802
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   803
    ## 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
   804
    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
   805
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   806
                   [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
   807
    ## 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
   808
    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
   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 const &', 'value')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   811
    ## 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
   812
    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
   813
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   814
                   [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
   815
    ## 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
   816
    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
   817
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   818
                   [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
   819
    ## 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
   820
    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
   821
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   822
                   [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
   823
    ## 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
   824
    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
   825
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   826
                   [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
   827
    ## 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
   828
    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
   829
                   'void', 
7401
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   830
                   [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
   831
                   visibility='protected')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   832
    ## 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
   833
    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
   834
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   835
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   836
                   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
   837
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   838
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   839
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
   840
    ## 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
   841
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   842
    ## 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
   843
    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
   844
    ## 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
   845
    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
   846
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   847
                   [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
   848
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   849
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   850
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   851
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
   852
    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
   853
    ## 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
   854
    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
   855
    ## 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
   856
    cls.add_constructor([])
7401
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   857
    ## 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
   858
    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
   859
    ## 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
   860
    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
   861
                   '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
   862
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   863
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   864
    ## 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
   865
    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
   866
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   867
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   868
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   869
    ## 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
   870
    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
   871
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   872
                   [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
   873
    ## 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
   874
    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
   875
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   876
                   [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
   877
    ## 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
   878
    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
   879
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   880
                   [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
   881
    ## 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
   882
    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
   883
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   884
                   [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
   885
    return
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
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
   888
    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
   889
    ## 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
   890
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   891
    ## 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
   892
    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
   893
    ## 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
   894
    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
   895
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   896
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   897
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   898
    ## 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
   899
    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
   900
                   'double', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   901
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   902
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   903
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   904
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   905
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
   906
    ## 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
   907
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   908
    ## 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
   909
    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
   910
    ## 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
   911
    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
   912
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   913
                   [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
   914
    ## 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
   915
    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
   916
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   917
                   [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
   918
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   919
    ## 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
   920
    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
   921
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   922
                   [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
   923
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   924
    ## 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
   925
    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
   926
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   927
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   928
                   is_static=True)
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'): 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
   930
    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
   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('uint32_t *', 'seed')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   933
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   934
    ## 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
   935
    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
   936
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   937
                   [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
   938
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   939
    ## 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
   940
    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
   941
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   942
                   [param('bool', 'incp')])
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'): 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
   944
    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
   945
                   'void', 
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
    ## 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
   948
    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
   949
                   'int32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   950
                   [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
   951
    ## 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
   952
    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
   953
                   'double', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   954
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   955
    ## 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
   956
    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
   957
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   958
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   959
    ## 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
   960
    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
   961
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   962
                   [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
   963
    ## 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
   964
    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
   965
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   966
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   967
    ## 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
   968
    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
   969
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   970
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   971
    ## 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
   972
    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
   973
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   974
                   [param('bool', 'a')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   975
    ## 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
   976
    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
   977
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   978
                   [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
   979
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   980
    ## 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
   981
    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
   982
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   983
                   [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
   984
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   985
    ## 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
   986
    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
   987
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   988
                   [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
   989
                   is_static=True)
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'): 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
   991
    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
   992
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   993
                   [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
   994
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   995
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   996
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
   997
    ## 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
   998
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   999
    ## 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
  1000
    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
  1001
    ## 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
  1002
    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
  1003
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1004
                   [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
  1005
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1006
    ## 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
  1007
    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
  1008
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1009
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1010
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1011
    ## 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
  1012
    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
  1013
                   'uint32_t', 
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
                   is_static=True)
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'): 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
  1017
    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
  1018
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1019
                   [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
  1020
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1021
    ## 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
  1022
    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
  1023
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1024
                   [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
  1025
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1026
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1027
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1028
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
  1029
    ## 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
  1030
    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
  1031
    ## 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
  1032
    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
  1033
    ## 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
  1034
    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
  1035
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1036
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1037
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
  1038
    ## 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
  1039
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1040
    ## 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
  1041
    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
  1042
    ## 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
  1043
    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
  1044
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1045
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1046
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1047
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1048
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1049
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
  1050
    ## 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
  1051
    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
  1052
    ## 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
  1053
    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
  1054
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1055
                   [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
  1056
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1057
    ## 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
  1058
    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
  1059
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1060
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1061
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1062
    ## 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
  1063
    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
  1064
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1065
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1066
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1067
    ## 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
  1068
    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
  1069
                   'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1070
                   [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
  1071
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1072
    ## 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
  1073
    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
  1074
                   '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
  1075
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1076
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1077
    ## 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
  1078
    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
  1079
                   'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1080
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1081
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1082
    ## 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
  1083
    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
  1084
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1085
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1086
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1087
    ## 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
  1088
    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
  1089
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1090
                   [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
  1091
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1092
    ## 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
  1093
    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
  1094
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1095
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1096
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1097
    ## 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
  1098
    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
  1099
                   'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1100
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1101
                   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
  1102
    ## 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
  1103
    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
  1104
                   'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1105
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1106
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1107
    ## 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
  1108
    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
  1109
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1110
                   [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
  1111
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1112
    ## 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
  1113
    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
  1114
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1115
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1116
                   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
  1117
    ## 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
  1118
    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
  1119
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1120
                   [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
  1121
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1122
    ## 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
  1123
    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
  1124
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1125
                   [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
  1126
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1127
    ## 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
  1128
    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
  1129
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1130
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1131
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1132
    ## 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
  1133
    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
  1134
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1135
                   [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
  1136
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1137
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1138
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1139
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
  1140
    ## 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
  1141
    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
  1142
    ## 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
  1143
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1144
    ## 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
  1145
    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
  1146
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1147
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1148
    ## 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
  1149
    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
  1150
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1151
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1152
    ## 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
  1153
    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
  1154
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1155
                   [param('bool', 'condition')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1156
    ## 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
  1157
    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
  1158
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1159
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1160
    ## 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
  1161
    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
  1162
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1163
                   [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
  1164
    ## 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
  1165
    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
  1166
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1167
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1168
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1169
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1170
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
  1171
    ## 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
  1172
    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
  1173
    ## 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
  1174
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1175
    ## 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
  1176
    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
  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-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
  1180
    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
  1181
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1182
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1183
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1184
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1185
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
  1186
    ## 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
  1187
    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
  1188
    ## 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
  1189
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1190
    ## 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
  1191
    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
  1192
                   'int64_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1193
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1194
    ## 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
  1195
    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
  1196
                   'int64_t', 
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
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1199
    ## 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
  1200
    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
  1201
                   'int64_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1202
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1203
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1204
    ## 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
  1205
    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
  1206
                   'int64_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1207
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1208
                   is_const=True)
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'): 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
  1210
    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
  1211
                   'void', 
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
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1214
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1215
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
  1216
    ## 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
  1217
    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
  1218
    ## 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
  1219
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1220
    ## 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
  1221
    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
  1222
    ## 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
  1223
    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
  1224
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1225
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1226
    ## 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
  1227
    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
  1228
                   'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1229
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1230
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1231
    ## 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
  1232
    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
  1233
                   'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1234
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1235
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1236
    ## 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
  1237
    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
  1238
                   'ns3::Timer::State', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1239
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1240
                   is_const=True)
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'): 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
  1242
    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
  1243
                   'bool', 
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
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1246
    ## 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
  1247
    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
  1248
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1249
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1250
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1251
    ## 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
  1252
    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
  1253
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1254
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1255
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1256
    ## 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
  1257
    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
  1258
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1259
                   [])
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'): 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
  1261
    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
  1262
                   'void', 
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
    ## 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
  1265
    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
  1266
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1267
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1268
    ## 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
  1269
    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
  1270
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1271
                   [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
  1272
    ## 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
  1273
    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
  1274
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1275
                   [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
  1276
    ## 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
  1277
    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
  1278
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1279
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1280
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1281
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1282
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
  1283
    ## 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
  1284
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1285
    ## 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
  1286
    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
  1287
    ## 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
  1288
    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
  1289
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1290
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1291
                   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
  1292
    ## 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
  1293
    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
  1294
                   'ns3::EventId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1295
                   [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
  1296
                   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
  1297
    return
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
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
  1300
    ## 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
  1301
    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
  1302
    ## 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
  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
    ## 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
  1305
    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
  1306
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1307
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1308
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
  1309
    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
  1310
    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
  1311
    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
  1312
    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
  1313
    ## 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
  1314
    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
  1315
    ## 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
  1316
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1317
    ## 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
  1318
    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
  1319
    ## 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
  1320
    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
  1321
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1322
                   [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
  1323
    ## 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
  1324
    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
  1325
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1326
                   [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
  1327
    ## 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
  1328
    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
  1329
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1330
                   [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
  1331
    ## 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
  1332
    cls.add_method('GetAttribute', 
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1333
                   '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
  1334
                   [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
  1335
                   is_const=True)
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'): 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
  1337
    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
  1338
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1339
                   [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
  1340
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1341
    ## 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
  1342
    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
  1343
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1344
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1345
                   is_const=True)
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::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
  1347
    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
  1348
                   '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
  1349
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1350
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1351
    ## 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
  1352
    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
  1353
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1354
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1355
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1356
    ## 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
  1357
    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
  1358
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1359
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1360
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1361
    ## 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
  1362
    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
  1363
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1364
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1365
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1366
    ## 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
  1367
    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
  1368
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1369
                   [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
  1370
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1371
    ## 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
  1372
    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
  1373
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1374
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1375
                   is_static=True)
7401
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1376
    ## 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
  1377
    cls.add_method('GetTraceSource', 
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1378
                   '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
  1379
                   [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
  1380
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1381
    ## 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
  1382
    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
  1383
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1384
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1385
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1386
    ## 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
  1387
    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
  1388
                   'uint16_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1389
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1390
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1391
    ## 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
  1392
    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
  1393
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1394
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1395
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1396
    ## 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
  1397
    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
  1398
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1399
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1400
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1401
    ## 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
  1402
    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
  1403
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1404
                   [])
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'): 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
  1406
    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
  1407
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1408
                   [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
  1409
                   is_const=True)
7401
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1410
    ## 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
  1411
    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
  1412
                   'bool', 
7401
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1413
                   [param('std::string', 'name'), param('ns3::TypeId::AttributeInformation *', 'info')], 
6881
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'): 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
  1416
    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
  1417
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1418
                   [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
  1419
                   is_static=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::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
  1421
    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
  1422
                   '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
  1423
                   [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
  1424
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1425
    ## 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
  1426
    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
  1427
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1428
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1429
                   is_const=True)
7401
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1430
    ## 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
  1431
    cls.add_method('SetAttributeInitialValue', 
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1432
                   'bool', 
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1433
                   [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
  1434
    ## 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
  1435
    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
  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', 'groupName')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1438
    ## 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
  1439
    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
  1440
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1441
                   [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
  1442
    ## 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
  1443
    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
  1444
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1445
                   [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
  1446
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1447
7401
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1448
def register_Ns3TypeIdAttributeInformation_methods(root_module, cls):
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1449
    ## 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
  1450
    cls.add_constructor([])
7401
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1451
    ## 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
  1452
    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
  1453
    ## 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
  1454
    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
  1455
    ## 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
  1456
    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
  1457
    ## 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
  1458
    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
  1459
    ## 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
  1460
    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
  1461
    ## 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
  1462
    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
  1463
    ## 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
  1464
    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
  1465
    ## 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
  1466
    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
  1467
    return
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1468
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1469
def register_Ns3TypeIdTraceSourceInformation_methods(root_module, cls):
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::TraceSourceInformation::TraceSourceInformation() [constructor]
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1471
    cls.add_constructor([])
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::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
  1473
    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
  1474
    ## 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
  1475
    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
  1476
    ## 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
  1477
    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
  1478
    ## 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
  1479
    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
  1480
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1481
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1482
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
  1483
    ## 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
  1484
    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
  1485
    ## 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
  1486
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1487
    ## 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
  1488
    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
  1489
    ## 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
  1490
    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
  1491
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1492
                   [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
  1493
    ## 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
  1494
    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
  1495
                   'double', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1496
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1497
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1498
    ## 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
  1499
    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
  1500
                   'double', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1501
                   [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
  1502
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1503
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1504
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
  1505
    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
  1506
    ## 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
  1507
    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
  1508
    ## 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
  1509
    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
  1510
    ## 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
  1511
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1512
    ## 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
  1513
    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
  1514
    ## 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
  1515
    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
  1516
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1517
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1518
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
  1519
    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
  1520
    ## 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
  1521
    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
  1522
    ## 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
  1523
    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
  1524
    ## 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
  1525
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1526
    ## 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
  1527
    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
  1528
    ## 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
  1529
    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
  1530
    ## 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
  1531
    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
  1532
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1533
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1534
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
  1535
    ## 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
  1536
    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
  1537
    ## 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
  1538
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1539
    ## 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
  1540
    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
  1541
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1542
                   [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
  1543
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1544
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1545
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
  1546
    ## 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
  1547
    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
  1548
    ## 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
  1549
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1550
    ## 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
  1551
    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
  1552
    ## 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
  1553
    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
  1554
    ## 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
  1555
    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
  1556
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1557
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1558
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
  1559
    ## 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
  1560
    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
  1561
    ## 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
  1562
    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
  1563
    ## 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
  1564
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1565
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1566
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1567
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
  1568
    ## 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
  1569
    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
  1570
    ## 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
  1571
    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
  1572
    ## 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
  1573
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1574
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1575
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1576
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
  1577
    ## 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
  1578
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1579
    ## 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
  1580
    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
  1581
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1582
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1583
def register_Ns3Int64x64_t_methods(root_module, cls):
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1584
    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
  1585
    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
  1586
    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
  1587
    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
  1588
    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
  1589
    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
  1590
    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
  1591
    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
  1592
    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
  1593
    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
  1594
    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
  1595
    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
  1596
    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
  1597
    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
  1598
    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
  1599
    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
  1600
    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
  1601
    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
  1602
    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
  1603
    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
  1604
    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
  1605
    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
  1606
    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
  1607
    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
  1608
    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
  1609
    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
  1610
    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
  1611
    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
  1612
    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
  1613
    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
  1614
    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
  1615
    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
  1616
    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
  1617
    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
  1618
    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
  1619
    cls.add_unary_numeric_operator('-')
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('ns3::int64x64_t 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 long unsigned 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('long unsigned 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('unsigned 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('short unsigned int 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('unsigned char 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('long long int 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 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('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('short 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('signed char 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('double 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('ns3::int64x64_t const &', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1633
    cls.add_binary_comparison_operator('<')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1634
    cls.add_binary_comparison_operator('>')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1635
    cls.add_binary_comparison_operator('!=')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1636
    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
  1637
    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
  1638
    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
  1639
    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
  1640
    cls.add_output_stream_operator()
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1641
    cls.add_binary_comparison_operator('<=')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1642
    cls.add_binary_comparison_operator('==')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1643
    cls.add_binary_comparison_operator('>=')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1644
    ## 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
  1645
    cls.add_constructor([])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1646
    ## 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
  1647
    cls.add_constructor([param('double', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1648
    ## 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
  1649
    cls.add_constructor([param('int', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1650
    ## 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
  1651
    cls.add_constructor([param('long int', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1652
    ## 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
  1653
    cls.add_constructor([param('long long int', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1654
    ## 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
  1655
    cls.add_constructor([param('unsigned int', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1656
    ## 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
  1657
    cls.add_constructor([param('long unsigned int', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1658
    ## 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
  1659
    cls.add_constructor([param('long long unsigned int', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1660
    ## 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
  1661
    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
  1662
    ## 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
  1663
    cls.add_constructor([param('ns3::int64x64_t const &', 'o')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1664
    ## 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
  1665
    cls.add_method('GetDouble', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1666
                   'double', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1667
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1668
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1669
    ## 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
  1670
    cls.add_method('GetHigh', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1671
                   'int64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1672
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1673
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1674
    ## 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
  1675
    cls.add_method('GetLow', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1676
                   'uint64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1677
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1678
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1679
    ## 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
  1680
    cls.add_method('Invert', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1681
                   'ns3::int64x64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1682
                   [param('uint64_t', 'v')], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1683
                   is_static=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1684
    ## 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
  1685
    cls.add_method('MulByInvert', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1686
                   'void', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1687
                   [param('ns3::int64x64_t const &', 'o')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1688
    return
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1689
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1690
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
  1691
    ## 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
  1692
    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
  1693
    ## 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
  1694
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1695
    ## 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
  1696
    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
  1697
    ## 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
  1698
    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
  1699
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1700
                   [param('double', 'c')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1701
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1702
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1703
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
  1704
    ## 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
  1705
    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
  1706
    ## 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
  1707
    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
  1708
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1709
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1710
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
  1711
    ## 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
  1712
    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
  1713
    ## 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
  1714
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1715
    ## 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
  1716
    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
  1717
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1718
                   [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
  1719
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1720
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1721
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
  1722
    ## 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
  1723
    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
  1724
    ## 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
  1725
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1726
    ## 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
  1727
    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
  1728
    ## 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
  1729
    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
  1730
                   'double', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1731
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1732
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1733
    ## 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
  1734
    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
  1735
                   'double', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1736
                   [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
  1737
                   is_const=True)
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_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
  1741
    ## 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
  1742
    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
  1743
    ## 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
  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::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
  1746
    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
  1747
    ## 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
  1748
    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
  1749
    return
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
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
  1752
    ## 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
  1753
    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
  1754
    ## 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
  1755
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1756
    ## 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
  1757
    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
  1758
    ## 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
  1759
    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
  1760
                   'double', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1761
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1762
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1763
    ## 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
  1764
    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
  1765
                   'double', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1766
                   [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
  1767
                   is_const=True)
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_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
  1771
    ## 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
  1772
    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
  1773
    ## 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
  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
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1776
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1777
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
  1778
    ## 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
  1779
    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
  1780
    ## 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
  1781
    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
  1782
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1783
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1784
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
  1785
    ## 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
  1786
    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
  1787
    ## 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
  1788
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1789
    ## 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
  1790
    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
  1791
    ## 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
  1792
    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
  1793
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1794
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1795
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
  1796
    ## 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
  1797
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1798
    ## 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
  1799
    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
  1800
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1801
                   [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
  1802
    ## 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
  1803
    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
  1804
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1805
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1806
    ## 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
  1807
    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
  1808
                   'ns3::Object::AggregateIterator', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1809
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1810
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1811
    ## 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
  1812
    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
  1813
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1814
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1815
                   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
  1816
    ## 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
  1817
    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
  1818
                   '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
  1819
                   [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
  1820
                   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
  1821
    ## 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
  1822
    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
  1823
                   'ns3::TypeId', 
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
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1826
    ## 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
  1827
    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
  1828
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1829
                   [])
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::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
  1831
    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
  1832
                        visibility='protected')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1833
    ## 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
  1834
    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
  1835
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1836
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1837
                   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
  1838
    ## 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
  1839
    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
  1840
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1841
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1842
                   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
  1843
    ## 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
  1844
    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
  1845
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1846
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1847
                   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
  1848
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1849
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1850
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
  1851
    ## 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
  1852
    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
  1853
    ## 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
  1854
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1855
    ## 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
  1856
    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
  1857
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1858
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1859
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1860
    ## 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
  1861
    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
  1862
                   '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
  1863
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1864
    return
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
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
  1867
    ## 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
  1868
    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
  1869
    ## 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
  1870
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1871
    ## 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
  1872
    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
  1873
    ## 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
  1874
    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
  1875
    ## 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
  1876
    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
  1877
    ## 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
  1878
    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
  1879
    ## 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
  1880
    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
  1881
    return
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
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
  1884
    ## 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
  1885
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1886
    ## 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
  1887
    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
  1888
    ## 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
  1889
    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
  1890
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1891
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1892
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1893
    ## 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
  1894
    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
  1895
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1896
                   [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
  1897
                   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
  1898
    ## 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
  1899
    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
  1900
                   'bool', 
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
                   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
  1903
    ## 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
  1904
    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
  1905
                   'ns3::Scheduler::Event', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1906
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1907
                   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
  1908
    ## 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
  1909
    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
  1910
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1911
                   [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
  1912
                   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
  1913
    ## 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
  1914
    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
  1915
                   'ns3::Scheduler::Event', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1916
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1917
                   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
  1918
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1919
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1920
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
  1921
    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
  1922
    ## 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
  1923
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1924
    ## 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
  1925
    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
  1926
    ## 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
  1927
    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
  1928
    ## 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
  1929
    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
  1930
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1931
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1932
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
  1933
    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
  1934
    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
  1935
    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
  1936
    ## 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
  1937
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1938
    ## 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
  1939
    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
  1940
    ## 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
  1941
    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
  1942
    ## 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
  1943
    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
  1944
    ## 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
  1945
    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
  1946
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1947
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1948
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
  1949
    ## 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
  1950
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1951
    ## 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
  1952
    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
  1953
    ## 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
  1954
    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
  1955
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1956
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1957
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1958
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1959
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1960
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
  1961
    ## 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
  1962
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1963
    ## 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
  1964
    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
  1965
    ## 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
  1966
    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
  1967
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1968
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1969
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1970
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1971
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1972
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
  1973
    ## 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
  1974
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1975
    ## 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
  1976
    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
  1977
    ## 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
  1978
    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
  1979
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1980
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1981
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1982
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1983
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1984
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
  1985
    ## 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
  1986
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1987
    ## 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
  1988
    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
  1989
    ## 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
  1990
    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
  1991
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1992
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1993
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1994
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1995
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1996
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
  1997
    ## 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
  1998
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1999
    ## 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
  2000
    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
  2001
    ## 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
  2002
    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
  2003
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2004
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2005
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2006
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2007
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2008
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
  2009
    ## 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
  2010
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2011
    ## 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
  2012
    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
  2013
    ## 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
  2014
    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
  2015
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2016
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2017
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2018
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2019
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2020
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
  2021
    ## 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
  2022
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2023
    ## 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
  2024
    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
  2025
    ## 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
  2026
    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
  2027
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2028
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2029
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2030
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2031
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2032
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
  2033
    ## 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
  2034
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2035
    ## 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
  2036
    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
  2037
    ## 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
  2038
    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
  2039
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2040
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2041
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2042
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2043
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2044
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
  2045
    ## 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
  2046
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2047
    ## 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
  2048
    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
  2049
    ## 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
  2050
    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
  2051
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2052
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2053
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2054
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2055
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2056
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
  2057
    ## 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
  2058
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2059
    ## 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
  2060
    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
  2061
    ## 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
  2062
    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
  2063
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2064
                   [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
  2065
                   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
  2066
    ## 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
  2067
    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
  2068
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2069
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2070
                   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
  2071
    ## 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
  2072
    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
  2073
                   'uint32_t', 
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
                   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
  2076
    ## 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
  2077
    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
  2078
                   'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2079
                   [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
  2080
                   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
  2081
    ## 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
  2082
    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
  2083
                   'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2084
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2085
                   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
  2086
    ## 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
  2087
    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
  2088
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2089
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2090
                   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
  2091
    ## 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
  2092
    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
  2093
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2094
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2095
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2096
    ## 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
  2097
    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
  2098
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2099
                   [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
  2100
                   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
  2101
    ## 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
  2102
    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
  2103
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2104
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2105
                   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
  2106
    ## 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
  2107
    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
  2108
                   'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2109
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2110
                   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
  2111
    ## 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
  2112
    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
  2113
                   'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2114
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2115
                   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
  2116
    ## 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
  2117
    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
  2118
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2119
                   [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
  2120
                   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
  2121
    ## 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
  2122
    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
  2123
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2124
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2125
                   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
  2126
    ## 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
  2127
    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
  2128
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2129
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2130
                   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
  2131
    ## 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
  2132
    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
  2133
                   'ns3::EventId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2134
                   [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
  2135
                   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
  2136
    ## 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
  2137
    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
  2138
                   'ns3::EventId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2139
                   [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
  2140
                   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
  2141
    ## 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
  2142
    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
  2143
                   'ns3::EventId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2144
                   [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
  2145
                   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
  2146
    ## 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
  2147
    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
  2148
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2149
                   [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
  2150
                   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
  2151
    ## 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
  2152
    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
  2153
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2154
                   [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
  2155
                   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
  2156
    ## 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
  2157
    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
  2158
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2159
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2160
                   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
  2161
    ## 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
  2162
    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
  2163
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2164
                   [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
  2165
                   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
  2166
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2167
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2168
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
  2169
    ## 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
  2170
    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
  2171
    ## 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
  2172
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2173
    ## 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
  2174
    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
  2175
                   'uint64_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2176
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2177
    ## 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
  2178
    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
  2179
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2180
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2181
    ## 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
  2182
    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
  2183
                   'uint64_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2184
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2185
    ## 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
  2186
    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
  2187
                   'int64_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2188
                   [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
  2189
    ## 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
  2190
    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
  2191
                   'uint64_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2192
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2193
    ## 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
  2194
    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
  2195
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2196
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2197
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2198
    ## 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
  2199
    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
  2200
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2201
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2202
    ## 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
  2203
    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
  2204
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2205
                   [param('bool', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2206
    ## 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
  2207
    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
  2208
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2209
                   [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
  2210
    ## 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
  2211
    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
  2212
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2213
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2214
    ## 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
  2215
    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
  2216
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2217
                   [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
  2218
    ## 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
  2219
    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
  2220
                   'uint64_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2221
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2222
                   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
  2223
    ## 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
  2224
    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
  2225
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2226
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2227
                   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
  2228
    ## 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
  2229
    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
  2230
                   'uint64_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2231
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2232
                   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
  2233
    ## 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
  2234
    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
  2235
                   'int64_t', 
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', 'ns')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2237
                   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
  2238
    ## 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
  2239
    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
  2240
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2241
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2242
                   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
  2243
    ## 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
  2244
    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
  2245
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2246
                   [param('bool', 'arg0')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2247
                   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
  2248
    ## 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
  2249
    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
  2250
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2251
                   [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
  2252
                   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
  2253
    ## 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
  2254
    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
  2255
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2256
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2257
                   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
  2258
    ## 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
  2259
    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
  2260
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2261
                   [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
  2262
                   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
  2263
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2264
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2265
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
  2266
    ## 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
  2267
    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
  2268
    ## 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
  2269
    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
  2270
    ## 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
  2271
    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
  2272
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2273
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2274
    ## 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
  2275
    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
  2276
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2277
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2278
    ## 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
  2279
    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
  2280
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2281
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2282
    ## 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
  2283
    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
  2284
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2285
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2286
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2287
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2288
def register_Ns3Time_methods(root_module, cls):
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2289
    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
  2290
    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
  2291
    cls.add_binary_comparison_operator('<')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2292
    cls.add_binary_comparison_operator('>')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2293
    cls.add_binary_comparison_operator('!=')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2294
    cls.add_inplace_numeric_operator('+=', param('ns3::Time const &', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2295
    cls.add_inplace_numeric_operator('-=', param('ns3::Time const &', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2296
    cls.add_output_stream_operator()
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2297
    cls.add_binary_comparison_operator('<=')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2298
    cls.add_binary_comparison_operator('==')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2299
    cls.add_binary_comparison_operator('>=')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2300
    ## nstime.h (module 'core'): ns3::Time::Time() [constructor]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2301
    cls.add_constructor([])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2302
    ## 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
  2303
    cls.add_constructor([param('ns3::Time const &', 'o')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2304
    ## nstime.h (module 'core'): ns3::Time::Time(double v) [constructor]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2305
    cls.add_constructor([param('double', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2306
    ## nstime.h (module 'core'): ns3::Time::Time(int v) [constructor]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2307
    cls.add_constructor([param('int', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2308
    ## 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
  2309
    cls.add_constructor([param('long int', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2310
    ## 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
  2311
    cls.add_constructor([param('long long int', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2312
    ## 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
  2313
    cls.add_constructor([param('unsigned int', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2314
    ## 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
  2315
    cls.add_constructor([param('long unsigned int', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2316
    ## 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
  2317
    cls.add_constructor([param('long long unsigned int', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2318
    ## 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
  2319
    cls.add_constructor([param('std::string const &', 's')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2320
    ## 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
  2321
    cls.add_constructor([param('ns3::int64x64_t const &', 'value')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2322
    ## 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
  2323
    cls.add_method('Compare', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2324
                   'int', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2325
                   [param('ns3::Time const &', 'o')], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2326
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2327
    ## 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
  2328
    cls.add_method('From', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2329
                   'ns3::Time', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2330
                   [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
  2331
                   is_static=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2332
    ## 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
  2333
    cls.add_method('From', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2334
                   'ns3::Time', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2335
                   [param('ns3::int64x64_t const &', 'value')], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2336
                   is_static=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2337
    ## 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
  2338
    cls.add_method('FromDouble', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2339
                   'ns3::Time', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2340
                   [param('double', 'value'), param('ns3::Time::Unit', 'timeUnit')], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2341
                   is_static=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2342
    ## 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
  2343
    cls.add_method('FromInteger', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2344
                   'ns3::Time', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2345
                   [param('uint64_t', 'value'), param('ns3::Time::Unit', 'timeUnit')], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2346
                   is_static=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2347
    ## 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
  2348
    cls.add_method('GetDouble', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2349
                   'double', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2350
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2351
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2352
    ## 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
  2353
    cls.add_method('GetFemtoSeconds', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2354
                   'int64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2355
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2356
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2357
    ## 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
  2358
    cls.add_method('GetInteger', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2359
                   'int64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2360
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2361
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2362
    ## 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
  2363
    cls.add_method('GetMicroSeconds', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2364
                   'int64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2365
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2366
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2367
    ## 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
  2368
    cls.add_method('GetMilliSeconds', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2369
                   'int64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2370
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2371
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2372
    ## 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
  2373
    cls.add_method('GetNanoSeconds', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2374
                   'int64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2375
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2376
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2377
    ## 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
  2378
    cls.add_method('GetPicoSeconds', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2379
                   'int64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2380
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2381
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2382
    ## 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
  2383
    cls.add_method('GetResolution', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2384
                   'ns3::Time::Unit', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2385
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2386
                   is_static=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2387
    ## 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
  2388
    cls.add_method('GetSeconds', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2389
                   'double', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2390
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2391
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2392
    ## 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
  2393
    cls.add_method('GetTimeStep', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2394
                   'int64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2395
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2396
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2397
    ## 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
  2398
    cls.add_method('IsNegative', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2399
                   'bool', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2400
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2401
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2402
    ## 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
  2403
    cls.add_method('IsPositive', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2404
                   'bool', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2405
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2406
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2407
    ## 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
  2408
    cls.add_method('IsStrictlyNegative', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2409
                   'bool', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2410
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2411
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2412
    ## 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
  2413
    cls.add_method('IsStrictlyPositive', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2414
                   'bool', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2415
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2416
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2417
    ## 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
  2418
    cls.add_method('IsZero', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2419
                   'bool', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2420
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2421
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2422
    ## 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
  2423
    cls.add_method('SetResolution', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2424
                   'void', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2425
                   [param('ns3::Time::Unit', 'resolution')], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2426
                   is_static=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2427
    ## 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
  2428
    cls.add_method('To', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2429
                   'ns3::int64x64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2430
                   [param('ns3::Time::Unit', 'timeUnit')], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2431
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2432
    ## 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
  2433
    cls.add_method('ToDouble', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2434
                   'double', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2435
                   [param('ns3::Time::Unit', 'timeUnit')], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2436
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2437
    ## 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
  2438
    cls.add_method('ToInteger', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2439
                   'int64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2440
                   [param('ns3::Time::Unit', 'timeUnit')], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2441
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2442
    return
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2443
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2444
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
  2445
    ## 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
  2446
    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
  2447
    ## 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
  2448
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2449
    ## 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
  2450
    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
  2451
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2452
                   [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
  2453
                   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
  2454
    ## 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
  2455
    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
  2456
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2457
                   [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
  2458
                   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
  2459
    ## 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
  2460
    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
  2461
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2462
                   [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
  2463
                   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
  2464
    ## 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
  2465
    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
  2466
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2467
                   [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
  2468
                   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
  2469
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2470
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2471
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
  2472
    ## 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
  2473
    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
  2474
    ## 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
  2475
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2476
    ## 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
  2477
    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
  2478
    ## 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
  2479
    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
  2480
    ## 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
  2481
    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
  2482
    ## 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
  2483
    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
  2484
                   'uint64_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2485
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2486
                   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
  2487
    ## 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
  2488
    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
  2489
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2490
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2491
                   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
  2492
    ## 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
  2493
    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
  2494
                   'uint64_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2495
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2496
                   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
  2497
    ## 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
  2498
    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
  2499
                   'int64_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2500
                   [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
  2501
                   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
  2502
    ## 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
  2503
    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
  2504
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2505
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2506
                   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
  2507
    ## 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
  2508
    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
  2509
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2510
                   [param('bool', 'cond')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2511
                   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
  2512
    ## 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
  2513
    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
  2514
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2515
                   [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
  2516
                   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
  2517
    ## 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
  2518
    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
  2519
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2520
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2521
                   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
  2522
    ## 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
  2523
    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
  2524
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2525
                   [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
  2526
                   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
  2527
    ## 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
  2528
    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
  2529
                   'uint64_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2530
                   [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
  2531
                   visibility='protected')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2532
    ## 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
  2533
    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
  2534
                   'uint64_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2535
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2536
                   visibility='protected')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2537
    ## 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
  2538
    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
  2539
                   'uint64_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2540
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2541
                   visibility='protected')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2542
    ## 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
  2543
    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
  2544
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2545
                   [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
  2546
                   visibility='protected')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2547
    ## 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
  2548
    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
  2549
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2550
                   [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
  2551
                   visibility='protected')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2552
    ## 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
  2553
    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
  2554
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2555
                   [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
  2556
                   visibility='protected')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2557
    ## 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
  2558
    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
  2559
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2560
                   [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
  2561
                   visibility='protected')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2562
    ## 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
  2563
    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
  2564
                   'uint64_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2565
                   [param('timeval *', 'tv')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2566
                   visibility='protected')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2567
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2568
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2569
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
  2570
    ## 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
  2571
    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
  2572
    ## 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
  2573
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2574
    ## 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
  2575
    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
  2576
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2577
                   [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
  2578
                   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
  2579
    ## 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
  2580
    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
  2581
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2582
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2583
                   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
  2584
    ## 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
  2585
    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
  2586
                   'bool', 
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
                   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
  2589
    ## 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
  2590
    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
  2591
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2592
                   [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
  2593
                   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
  2594
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2595
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2596
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
  2597
    ## 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
  2598
    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
  2599
    ## 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
  2600
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2601
    ## 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
  2602
    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
  2603
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2604
                   [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
  2605
                   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
  2606
    ## 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
  2607
    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
  2608
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2609
                   [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
  2610
                   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
  2611
    ## 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
  2612
    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
  2613
                   '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
  2614
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2615
                   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
  2616
    ## 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
  2617
    cls.add_method('CreateValidValue', 
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  2618
                   'ns3::Ptr< ns3::AttributeValue >', 
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  2619
                   [param('ns3::AttributeValue const &', 'value')], 
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  2620
                   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
  2621
    ## 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
  2622
    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
  2623
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2624
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2625
                   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
  2626
    ## 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
  2627
    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
  2628
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2629
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2630
                   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
  2631
    ## 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
  2632
    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
  2633
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2634
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2635
                   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
  2636
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2637
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2638
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
  2639
    ## 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
  2640
    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
  2641
    ## 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
  2642
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2643
    ## 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
  2644
    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
  2645
                   '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
  2646
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2647
                   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
  2648
    ## 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
  2649
    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
  2650
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2651
                   [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
  2652
                   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
  2653
    ## 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
  2654
    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
  2655
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2656
                   [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
  2657
                   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
  2658
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2659
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2660
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
  2661
    ## 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
  2662
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2663
    ## 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
  2664
    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
  2665
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2666
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2667
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
  2668
    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
  2669
    ## 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
  2670
    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
  2671
    ## 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
  2672
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2673
    ## 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
  2674
    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
  2675
    ## 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
  2676
    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
  2677
                   '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
  2678
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2679
                   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
  2680
    ## 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
  2681
    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
  2682
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2683
                   [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
  2684
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2685
    ## 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
  2686
    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
  2687
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2688
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2689
                   is_const=True)
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'): 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
  2691
    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
  2692
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2693
                   [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
  2694
                   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
  2695
    ## 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
  2696
    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
  2697
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2698
                   [param('bool', 'value')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2699
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2700
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2701
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
  2702
    ## 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
  2703
    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
  2704
    ## 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
  2705
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2706
    ## 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
  2707
    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
  2708
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2709
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2710
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2711
    ## 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
  2712
    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
  2713
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2714
                   [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
  2715
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2716
    ## 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
  2717
    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
  2718
                   'bool', 
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
                   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
  2721
    ## 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
  2722
    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
  2723
                   'ns3::Scheduler::Event', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2724
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2725
                   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
  2726
    ## 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
  2727
    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
  2728
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2729
                   [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
  2730
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2731
    ## 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
  2732
    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
  2733
                   'ns3::Scheduler::Event', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2734
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2735
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2736
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2737
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2738
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
  2739
    ## 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
  2740
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2741
    ## 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
  2742
    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
  2743
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2744
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2745
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
  2746
    ## 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
  2747
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2748
    ## 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
  2749
    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
  2750
    ## 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
  2751
    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
  2752
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2753
                   [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
  2754
                   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
  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_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
  2758
    ## 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
  2759
    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
  2760
    ## 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
  2761
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2762
    ## 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
  2763
    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
  2764
    ## 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
  2765
    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
  2766
                   '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
  2767
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2768
                   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
  2769
    ## 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
  2770
    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
  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('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
  2773
                   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
    ## 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
  2775
    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
  2776
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2777
                   [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
  2778
                   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
  2779
    ## 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
  2780
    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
  2781
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2782
                   [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
  2783
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2784
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2785
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
  2786
    ## 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
  2787
    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
  2788
    ## 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
  2789
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2790
    ## 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
  2791
    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
  2792
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2793
                   [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
  2794
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2795
    ## 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
  2796
    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
  2797
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2798
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2799
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2800
    ## 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
  2801
    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
  2802
                   'uint32_t', 
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
                   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
  2805
    ## 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
  2806
    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
  2807
                   'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2808
                   [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
  2809
                   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
  2810
    ## 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
  2811
    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
  2812
                   'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2813
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2814
                   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
  2815
    ## 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
  2816
    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
  2817
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2818
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2819
                   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
  2820
    ## 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
  2821
    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
  2822
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2823
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2824
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2825
    ## 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
  2826
    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
  2827
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2828
                   [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
  2829
                   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
  2830
    ## 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
  2831
    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
  2832
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2833
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2834
                   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
  2835
    ## 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
  2836
    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
  2837
                   'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2838
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2839
                   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
  2840
    ## 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
  2841
    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
  2842
                   'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2843
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2844
                   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
  2845
    ## 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
  2846
    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
  2847
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2848
                   [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
  2849
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2850
    ## 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
  2851
    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
  2852
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2853
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2854
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2855
    ## 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
  2856
    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
  2857
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2858
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2859
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2860
    ## 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
  2861
    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
  2862
                   'ns3::EventId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2863
                   [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
  2864
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2865
    ## 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
  2866
    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
  2867
                   'ns3::EventId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2868
                   [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
  2869
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2870
    ## 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
  2871
    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
  2872
                   'ns3::EventId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2873
                   [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
  2874
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2875
    ## 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
  2876
    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
  2877
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2878
                   [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
  2879
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2880
    ## 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
  2881
    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
  2882
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2883
                   [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
  2884
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2885
    ## 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
  2886
    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
  2887
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2888
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2889
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2890
    ## 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
  2891
    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
  2892
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2893
                   [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
  2894
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2895
    ## 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
  2896
    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
  2897
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2898
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2899
                   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
  2900
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2901
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2902
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
  2903
    ## 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
  2904
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2905
    ## 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
  2906
    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
  2907
    ## 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
  2908
    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
  2909
    ## 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
  2910
    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
  2911
                   '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
  2912
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2913
                   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
  2914
    ## 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
  2915
    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
  2916
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2917
                   [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
  2918
                   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
    ## 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
  2920
    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
  2921
                   'double', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2922
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2923
                   is_const=True)
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'): 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
  2925
    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
  2926
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2927
                   [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
  2928
                   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
  2929
    ## 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
  2930
    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
  2931
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2932
                   [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
  2933
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2934
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2935
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
  2936
    ## 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
  2937
    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
  2938
    ## 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
  2939
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2940
    ## 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
  2941
    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
  2942
                   '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
  2943
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2944
                   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
  2945
    ## 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
  2946
    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
  2947
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2948
                   [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
  2949
                   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
  2950
    ## 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
  2951
    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
  2952
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2953
                   [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
  2954
                   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
  2955
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2956
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2957
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
  2958
    ## 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
  2959
    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
  2960
    ## 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
  2961
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2962
    ## 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
  2963
    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
  2964
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2965
                   [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
  2966
    ## 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
  2967
    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
  2968
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2969
                   [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
  2970
    ## 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
  2971
    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
  2972
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2973
                   [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
  2974
                   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
  2975
    ## 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
  2976
    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
  2977
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2978
                   [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
  2979
                   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
  2980
    ## 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
  2981
    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
  2982
                   '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
  2983
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2984
                   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
  2985
    ## 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
  2986
    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
  2987
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2988
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2989
                   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
  2990
    ## 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
  2991
    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
  2992
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2993
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2994
                   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
  2995
    ## 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
  2996
    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
  2997
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2998
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2999
                   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
  3000
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3001
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3002
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
  3003
    ## 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
  3004
    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
  3005
    ## 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
  3006
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3007
    ## 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
  3008
    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
  3009
    ## 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
  3010
    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
  3011
                   '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
  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::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
  3015
    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
  3016
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3017
                   [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
  3018
                   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
    ## 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
  3020
    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
  3021
                   'int', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3022
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3023
                   is_const=True)
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'): 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
  3025
    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
  3026
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3027
                   [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
  3028
                   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
  3029
    ## 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
  3030
    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
  3031
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3032
                   [param('int', 'v')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3033
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3034
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3035
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
  3036
    ## 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
  3037
    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
  3038
    ## 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
  3039
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3040
    ## 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
  3041
    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
  3042
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3043
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3044
    ## 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
  3045
    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
  3046
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3047
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3048
    ## 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
  3049
    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
  3050
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3051
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3052
    ## 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
  3053
    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
  3054
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3055
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3056
                   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
  3057
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3058
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3059
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
  3060
    ## 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
  3061
    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
  3062
    ## 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
  3063
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3064
    ## 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
  3065
    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
  3066
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3067
                   [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
  3068
    ## 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
  3069
    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
  3070
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3071
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3072
    ## 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
  3073
    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
  3074
                   'ns3::FdReader::Data', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3075
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3076
                   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
  3077
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3078
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3079
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
  3080
    ## 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
  3081
    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
  3082
    ## 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
  3083
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3084
    ## 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
  3085
    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
  3086
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3087
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3088
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3089
    ## 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
  3090
    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
  3091
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3092
                   [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
  3093
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3094
    ## 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
  3095
    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
  3096
                   'bool', 
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
                   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
  3099
    ## 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
  3100
    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
  3101
                   'ns3::Scheduler::Event', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3102
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3103
                   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
  3104
    ## 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
  3105
    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
  3106
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3107
                   [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
  3108
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3109
    ## 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
  3110
    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
  3111
                   'ns3::Scheduler::Event', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3112
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3113
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3114
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3115
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3116
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
  3117
    ## 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
  3118
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3119
    ## 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
  3120
    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
  3121
    ## 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
  3122
    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
  3123
    ## 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
  3124
    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
  3125
                   '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
  3126
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3127
                   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
  3128
    ## 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
  3129
    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
  3130
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3131
                   [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
  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
    ## 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
  3134
    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
  3135
                   'int64_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3136
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3137
                   is_const=True)
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'): 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
  3139
    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
  3140
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3141
                   [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
  3142
                   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
  3143
    ## 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
  3144
    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
  3145
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3146
                   [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
  3147
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3148
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3149
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
  3150
    ## 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
  3151
    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
  3152
    ## 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
  3153
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3154
    ## 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
  3155
    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
  3156
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3157
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3158
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3159
    ## 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
  3160
    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
  3161
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3162
                   [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
  3163
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3164
    ## 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
  3165
    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
  3166
                   'bool', 
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
                   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
  3169
    ## 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
  3170
    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
  3171
                   'ns3::Scheduler::Event', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3172
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3173
                   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
  3174
    ## 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
  3175
    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
  3176
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3177
                   [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
  3178
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3179
    ## 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
  3180
    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
  3181
                   'ns3::Scheduler::Event', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3182
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3183
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3184
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3185
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3186
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
  3187
    ## 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
  3188
    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
  3189
    ## 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
  3190
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3191
    ## 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
  3192
    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
  3193
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3194
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3195
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3196
    ## 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
  3197
    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
  3198
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3199
                   [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
  3200
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3201
    ## 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
  3202
    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
  3203
                   'bool', 
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
                   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
  3206
    ## 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
  3207
    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
  3208
                   'ns3::Scheduler::Event', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3209
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3210
                   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
  3211
    ## 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
  3212
    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
  3213
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3214
                   [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
  3215
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3216
    ## 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
  3217
    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
  3218
                   'ns3::Scheduler::Event', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3219
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3220
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3221
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3222
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3223
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
  3224
    ## 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
  3225
    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
  3226
    ## 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
  3227
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3228
    ## 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
  3229
    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
  3230
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3231
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3232
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3233
    ## 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
  3234
    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
  3235
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3236
                   [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
  3237
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3238
    ## 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
  3239
    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
  3240
                   'bool', 
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
                   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
  3243
    ## 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
  3244
    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
  3245
                   'ns3::Scheduler::Event', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3246
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3247
                   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
  3248
    ## 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
  3249
    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
  3250
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3251
                   [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
  3252
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3253
    ## 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
  3254
    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
  3255
                   'ns3::Scheduler::Event', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3256
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3257
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3258
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3259
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3260
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
  3261
    ## 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
  3262
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3263
    ## 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
  3264
    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
  3265
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3266
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3267
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
  3268
    ## 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
  3269
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3270
    ## 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
  3271
    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
  3272
    ## 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
  3273
    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
  3274
    ## 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
  3275
    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
  3276
                   '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
  3277
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3278
                   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
  3279
    ## 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
  3280
    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
  3281
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3282
                   [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
  3283
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3284
    ## 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
  3285
    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
  3286
                   'ns3::ObjectFactory', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3287
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3288
                   is_const=True)
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'): 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
  3290
    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
  3291
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3292
                   [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
  3293
                   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
  3294
    ## 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
  3295
    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
  3296
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3297
                   [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
  3298
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3299
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3300
def register_Ns3ObjectVectorAccessor_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
  3301
    ## object-vector.h (module 'core'): ns3::ObjectVectorAccessor::ObjectVectorAccessor() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3302
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3303
    ## object-vector.h (module 'core'): ns3::ObjectVectorAccessor::ObjectVectorAccessor(ns3::ObjectVectorAccessor 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
  3304
    cls.add_constructor([param('ns3::ObjectVectorAccessor const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3305
    ## object-vector.h (module 'core'): bool ns3::ObjectVectorAccessor::Get(ns3::ObjectBase const * object, 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
  3306
    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
  3307
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3308
                   [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
  3309
                   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
  3310
    ## object-vector.h (module 'core'): bool ns3::ObjectVectorAccessor::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
  3311
    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
  3312
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3313
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3314
                   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
  3315
    ## object-vector.h (module 'core'): bool ns3::ObjectVectorAccessor::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
  3316
    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
  3317
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3318
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3319
                   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
  3320
    ## object-vector.h (module 'core'): bool ns3::ObjectVectorAccessor::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
  3321
    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
  3322
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3323
                   [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
  3324
                   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
  3325
    ## object-vector.h (module 'core'): ns3::Ptr<ns3::Object> ns3::ObjectVectorAccessor::DoGet(ns3::ObjectBase const * object, 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
  3326
    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
  3327
                   '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
  3328
                   [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
  3329
                   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
  3330
    ## object-vector.h (module 'core'): bool ns3::ObjectVectorAccessor::DoGetN(ns3::ObjectBase const * object, uint32_t * n) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3331
    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
  3332
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3333
                   [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
  3334
                   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
  3335
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3336
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3337
def register_Ns3ObjectVectorChecker_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
  3338
    ## object-vector.h (module 'core'): ns3::ObjectVectorChecker::ObjectVectorChecker() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3339
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3340
    ## object-vector.h (module 'core'): ns3::ObjectVectorChecker::ObjectVectorChecker(ns3::ObjectVectorChecker 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
  3341
    cls.add_constructor([param('ns3::ObjectVectorChecker const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3342
    ## object-vector.h (module 'core'): ns3::TypeId ns3::ObjectVectorChecker::GetItemTypeId() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3343
    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
  3344
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3345
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3346
                   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
  3347
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3348
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3349
def register_Ns3ObjectVectorValue_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
  3350
    ## object-vector.h (module 'core'): ns3::ObjectVectorValue::ObjectVectorValue(ns3::ObjectVectorValue 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
  3351
    cls.add_constructor([param('ns3::ObjectVectorValue const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3352
    ## object-vector.h (module 'core'): ns3::ObjectVectorValue::ObjectVectorValue() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3353
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3354
    ## object-vector.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::ObjectVectorValue::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
  3355
    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
  3356
                   '__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
  3357
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3358
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3359
    ## object-vector.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::ObjectVectorValue::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
  3360
    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
  3361
                   '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
  3362
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3363
                   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
  3364
    ## object-vector.h (module 'core'): bool ns3::ObjectVectorValue::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
  3365
    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
  3366
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3367
                   [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
  3368
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3369
    ## object-vector.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::ObjectVectorValue::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
  3370
    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
  3371
                   '__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
  3372
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3373
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3374
    ## object-vector.h (module 'core'): ns3::Ptr<ns3::Object> ns3::ObjectVectorValue::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
  3375
    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
  3376
                   '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
  3377
                   [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
  3378
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3379
    ## object-vector.h (module 'core'): uint32_t ns3::ObjectVectorValue::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
  3380
    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
  3381
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3382
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3383
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3384
    ## object-vector.h (module 'core'): std::string ns3::ObjectVectorValue::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
  3385
    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
  3386
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3387
                   [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
  3388
                   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
  3389
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3390
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3391
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
  3392
    ## 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
  3393
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3394
    ## 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
  3395
    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
  3396
    ## 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
  3397
    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
  3398
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3399
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3400
                   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
  3401
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3402
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3403
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
  3404
    ## 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
  3405
    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
  3406
    ## 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
  3407
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3408
    ## 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
  3409
    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
  3410
    ## 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
  3411
    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
  3412
                   '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
  3413
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3414
                   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
  3415
    ## 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
  3416
    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
  3417
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3418
                   [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
  3419
                   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
    ## 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
  3421
    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
  3422
                   '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
  3423
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3424
                   is_const=True)
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'): 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
  3426
    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
  3427
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3428
                   [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
  3429
                   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
  3430
    ## 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
  3431
    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
  3432
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3433
                   [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
  3434
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3435
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3436
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
  3437
    ## 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
  3438
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3439
    ## 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
  3440
    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
  3441
    return
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
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
  3444
    ## 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
  3445
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3446
    ## 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
  3447
    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
  3448
    ## 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
  3449
    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
  3450
    ## 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
  3451
    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
  3452
                   '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
  3453
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3454
                   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
  3455
    ## 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
  3456
    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
  3457
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3458
                   [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
  3459
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3460
    ## 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
  3461
    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
  3462
                   'ns3::RandomVariable', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3463
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3464
                   is_const=True)
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'): 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
  3466
    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
  3467
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3468
                   [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
  3469
                   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
  3470
    ## 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
  3471
    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
  3472
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3473
                   [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
  3474
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3475
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3476
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
  3477
    ## 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
  3478
    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
  3479
    ## 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
  3480
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3481
    ## 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
  3482
    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
  3483
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3484
                   [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
  3485
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3486
    ## 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
  3487
    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
  3488
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3489
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3490
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3491
    ## 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
  3492
    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
  3493
                   'uint32_t', 
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
                   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
  3496
    ## 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
  3497
    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
  3498
                   'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3499
                   [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
  3500
                   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
  3501
    ## 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
  3502
    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
  3503
                   'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3504
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3505
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3506
    ## 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
  3507
    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
  3508
                   'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3509
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3510
                   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
  3511
    ## 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
  3512
    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
  3513
                   'ns3::RealtimeSimulatorImpl::SynchronizationMode', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3514
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3515
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3516
    ## 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
  3517
    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
  3518
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3519
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3520
                   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
  3521
    ## 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
  3522
    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
  3523
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3524
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3525
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3526
    ## 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
  3527
    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
  3528
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3529
                   [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
  3530
                   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
  3531
    ## 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
  3532
    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
  3533
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3534
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3535
                   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
  3536
    ## 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
  3537
    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
  3538
                   'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3539
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3540
                   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
  3541
    ## 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
  3542
    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
  3543
                   'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3544
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3545
                   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
  3546
    ## 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
  3547
    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
  3548
                   'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3549
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3550
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3551
    ## 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
  3552
    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
  3553
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3554
                   [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
  3555
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3556
    ## 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
  3557
    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
  3558
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3559
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3560
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3561
    ## 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
  3562
    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
  3563
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3564
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3565
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3566
    ## 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
  3567
    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
  3568
                   'ns3::EventId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3569
                   [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
  3570
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3571
    ## 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
  3572
    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
  3573
                   'ns3::EventId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3574
                   [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
  3575
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3576
    ## 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
  3577
    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
  3578
                   'ns3::EventId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3579
                   [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
  3580
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3581
    ## 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
  3582
    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
  3583
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3584
                   [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
  3585
    ## 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
  3586
    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
  3587
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3588
                   [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
    ## 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
  3590
    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
  3591
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3592
                   [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
  3593
    ## 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
  3594
    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
  3595
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3596
                   [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
  3597
    ## 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
  3598
    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
  3599
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3600
                   [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
  3601
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3602
    ## 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
  3603
    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
  3604
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3605
                   [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
  3606
    ## 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
  3607
    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
  3608
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3609
                   [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
  3610
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3611
    ## 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
  3612
    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
  3613
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3614
                   [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
  3615
    ## 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
  3616
    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
  3617
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3618
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3619
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3620
    ## 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
  3621
    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
  3622
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3623
                   [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
  3624
                   is_virtual=True)
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::DoDispose() [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('DoDispose', 
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
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3629
                   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
  3630
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3631
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3632
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
  3633
    ## 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
  3634
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3635
    ## 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
  3636
    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
  3637
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3638
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3639
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
  3640
    ## 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
  3641
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3642
    ## 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
  3643
    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
  3644
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3645
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3646
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
  3647
    ## 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
  3648
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3649
    ## 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
  3650
    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
  3651
    ## 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
  3652
    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
  3653
    ## 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
  3654
    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
  3655
                   '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
  3656
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3657
                   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
  3658
    ## 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
  3659
    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
  3660
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3661
                   [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
  3662
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3663
    ## 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
  3664
    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
  3665
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3666
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3667
                   is_const=True)
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'): 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
  3669
    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
  3670
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3671
                   [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
  3672
                   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
  3673
    ## 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
  3674
    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
  3675
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3676
                   [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
  3677
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3678
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3679
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
  3680
    ## 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
  3681
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3682
    ## 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
  3683
    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
  3684
    return
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
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
  3687
    ## 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
  3688
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3689
    ## 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
  3690
    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
  3691
    ## 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
  3692
    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
  3693
    ## 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
  3694
    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
  3695
                   '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
  3696
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3697
                   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
  3698
    ## 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
  3699
    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
  3700
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3701
                   [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
  3702
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3703
    ## 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
  3704
    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
  3705
                   'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3706
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3707
                   is_const=True)
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'): 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
  3709
    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
  3710
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3711
                   [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
  3712
                   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
  3713
    ## 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
  3714
    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
  3715
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3716
                   [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
  3717
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3718
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3719
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
  3720
    ## 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
  3721
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3722
    ## 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
  3723
    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
  3724
    return
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
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
  3727
    ## 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
  3728
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3729
    ## 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
  3730
    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
  3731
    ## 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
  3732
    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
  3733
    ## 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
  3734
    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
  3735
                   '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
  3736
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3737
                   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
  3738
    ## 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
  3739
    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
  3740
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3741
                   [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
  3742
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3743
    ## 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
  3744
    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
  3745
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3746
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3747
                   is_const=True)
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'): 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
  3749
    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
  3750
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3751
                   [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
  3752
                   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
  3753
    ## 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
  3754
    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
  3755
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3756
                   [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
  3757
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3758
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3759
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
  3760
    ## 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
  3761
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3762
    ## 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
  3763
    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
  3764
    ## 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
  3765
    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
  3766
    ## 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
  3767
    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
  3768
                   '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
  3769
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3770
                   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
  3771
    ## 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
  3772
    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
  3773
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3774
                   [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
  3775
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3776
    ## 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
  3777
    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
  3778
                   'uint64_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3779
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3780
                   is_const=True)
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'): 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
  3782
    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
  3783
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3784
                   [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
  3785
                   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
  3786
    ## 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
  3787
    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
  3788
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3789
                   [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
  3790
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3791
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3792
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
  3793
    ## 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
  3794
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3795
    ## 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
  3796
    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
  3797
    return
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
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
  3800
    ## 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
  3801
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3802
    ## 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
  3803
    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
  3804
    ## 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
  3805
    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
  3806
    ## 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
  3807
    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
  3808
                   '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
  3809
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3810
                   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
  3811
    ## 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
  3812
    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
  3813
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3814
                   [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
  3815
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3816
    ## 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
  3817
    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
  3818
                   'ns3::Vector2D', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3819
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3820
                   is_const=True)
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'): 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
  3822
    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
  3823
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3824
                   [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
  3825
                   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
  3826
    ## 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
  3827
    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
  3828
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3829
                   [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
  3830
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3831
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3832
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
  3833
    ## 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
  3834
    cls.add_constructor([])
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::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
  3836
    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
  3837
    return
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
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
  3840
    ## 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
  3841
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3842
    ## 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
  3843
    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
  3844
    ## 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
  3845
    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
  3846
    ## 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
  3847
    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
  3848
                   '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
  3849
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3850
                   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
  3851
    ## 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
  3852
    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
  3853
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3854
                   [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
  3855
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3856
    ## 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
  3857
    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
  3858
                   'ns3::Vector3D', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3859
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3860
                   is_const=True)
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'): 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
  3862
    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
  3863
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3864
                   [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
  3865
                   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
  3866
    ## 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
  3867
    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
  3868
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3869
                   [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
  3870
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3871
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3872
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
  3873
    ## 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
  3874
    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
  3875
    ## 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
  3876
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3877
    ## 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
  3878
    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
  3879
    ## 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
  3880
    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
  3881
                   '__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
  3882
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3883
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3884
    ## 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
  3885
    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
  3886
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3887
                   [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
  3888
    ## 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
  3889
    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
  3890
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3891
                   [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
  3892
    ## 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
  3893
    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
  3894
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3895
                   [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
  3896
    ## 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
  3897
    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
  3898
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3899
                   [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
  3900
    ## 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
  3901
    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
  3902
                   '__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
  3903
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3904
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3905
    ## 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
  3906
    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
  3907
                   '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
  3908
                   [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
  3909
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3910
    ## 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
  3911
    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
  3912
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3913
                   [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
  3914
                   is_const=True)
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'): 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
  3916
    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
  3917
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3918
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3919
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3920
    ## 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
  3921
    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
  3922
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3923
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3924
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3925
    ## 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
  3926
    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
  3927
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3928
                   [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
  3929
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3930
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3931
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
  3932
    module = root_module
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3933
    ## 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
  3934
    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
  3935
                        'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3936
                        [param('ns3::Time const &', 'time')])
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3937
    ## 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
  3938
    module.add_function('Abs', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3939
                        'ns3::int64x64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3940
                        [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
  3941
    ## 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
  3942
    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
  3943
                        'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3944
                        [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3945
    ## 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
  3946
    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
  3947
                        'double', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3948
                        [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
  3949
    ## 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
  3950
    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
  3951
                        'double', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3952
                        [param('ns3::Vector3D const &', 'a'), param('ns3::Vector3D const &', 'b')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3953
    ## ptr.h (module 'core'): extern ns3::Ptr<ns3::ObjectVectorValue> 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
  3954
    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
  3955
                        'ns3::Ptr< ns3::ObjectVectorValue >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3956
                        [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3957
                        template_parameters=['ns3::ObjectVectorValue'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3958
    ## 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
  3959
    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
  3960
                        '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
  3961
                        [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3962
                        template_parameters=['ns3::PointerValue'])
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3963
    ## 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
  3964
    module.add_function('FemtoSeconds', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3965
                        'ns3::Time', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3966
                        [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
  3967
    ## 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
  3968
    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
  3969
                        'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3970
                        [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
  3971
    ## 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
  3972
    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
  3973
                        'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3974
                        [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
  3975
    ## 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
  3976
    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
  3977
                        'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3978
                        [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
  3979
    ## 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
  3980
    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
  3981
                        'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3982
                        [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
  3983
    ## 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
  3984
    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
  3985
                        'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3986
                        [param('ns3::LogLevel', 'level')])
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3987
    ## log.h (module 'core'): extern void ns3::LogComponentPrintList() [free function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3988
    module.add_function('LogComponentPrintList', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3989
                        'void', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3990
                        [])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3991
    ## 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
  3992
    module.add_function('LogGetNodePrinter', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3993
                        'ns3::LogNodePrinter', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3994
                        [])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3995
    ## 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
  3996
    module.add_function('LogGetTimePrinter', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3997
                        'ns3::LogTimePrinter', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3998
                        [])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3999
    ## 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
  4000
    module.add_function('LogSetNodePrinter', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4001
                        'void', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4002
                        [param('ns3::LogNodePrinter', 'arg0')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4003
    ## 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
  4004
    module.add_function('LogSetTimePrinter', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4005
                        'void', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4006
                        [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
  4007
    ## 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
  4008
    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
  4009
                        '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
  4010
                        [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4011
    ## 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
  4012
    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
  4013
                        '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
  4014
                        [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4015
    ## 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
  4016
    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
  4017
                        '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
  4018
                        [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
  4019
    ## 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
  4020
    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
  4021
                        'ns3::EventImpl *', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4022
                        [param('void ( * ) (  ) *', 'f')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4023
    ## 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
  4024
    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
  4025
                        '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
  4026
                        [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4027
    ## 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
  4028
    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
  4029
                        '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
  4030
                        [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4031
    ## 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
  4032
    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
  4033
                        '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
  4034
                        [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4035
    ## 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
  4036
    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
  4037
                        '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
  4038
                        [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4039
    ## 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
  4040
    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
  4041
                        '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
  4042
                        [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4043
    ## 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
  4044
    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
  4045
                        '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
  4046
                        [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4047
    ## 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
  4048
    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
  4049
                        '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
  4050
                        [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4051
    ## 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
  4052
    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
  4053
                        '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
  4054
                        [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4055
    ## 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
  4056
    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
  4057
                        'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4058
                        [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
  4059
    ## 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
  4060
    module.add_function('Max', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4061
                        'ns3::int64x64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4062
                        [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
  4063
    ## 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
  4064
    module.add_function('MicroSeconds', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4065
                        'ns3::Time', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4066
                        [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
  4067
    ## 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
  4068
    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
  4069
                        'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4070
                        [param('uint64_t', 'us')])
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4071
    ## 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
  4072
    module.add_function('MilliSeconds', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4073
                        'ns3::Time', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4074
                        [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
  4075
    ## 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
  4076
    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
  4077
                        'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4078
                        [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
  4079
    ## 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
  4080
    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
  4081
                        'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4082
                        [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
  4083
    ## 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
  4084
    module.add_function('Min', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4085
                        'ns3::int64x64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4086
                        [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
  4087
    ## 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
  4088
    module.add_function('NanoSeconds', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4089
                        'ns3::Time', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4090
                        [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
  4091
    ## 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
  4092
    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
  4093
                        'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4094
                        [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
  4095
    ## 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
  4096
    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
  4097
                        'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4098
                        [])
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4099
    ## 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
  4100
    module.add_function('PicoSeconds', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4101
                        'ns3::Time', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4102
                        [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
  4103
    ## 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
  4104
    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
  4105
                        'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4106
                        [param('uint64_t', 'ps')])
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4107
    ## 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
  4108
    module.add_function('Seconds', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4109
                        'ns3::Time', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4110
                        [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
  4111
    ## 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
  4112
    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
  4113
                        'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4114
                        [param('double', 'seconds')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4115
    ## 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
  4116
    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
  4117
                        'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4118
                        [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
  4119
    ## 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
  4120
    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
  4121
                        'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4122
                        [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
  4123
    ## 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
  4124
    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
  4125
                        'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4126
                        [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4127
                        template_parameters=['double'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4128
    ## 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
  4129
    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
  4130
                        'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4131
                        [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4132
                        template_parameters=['float'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4133
    ## 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
  4134
    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
  4135
                        'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4136
                        [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4137
                        template_parameters=['long'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4138
    ## 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
  4139
    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
  4140
                        'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4141
                        [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4142
                        template_parameters=['int'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4143
    ## 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
  4144
    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
  4145
                        'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4146
                        [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4147
                        template_parameters=['short'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4148
    ## 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
  4149
    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
  4150
                        'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4151
                        [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4152
                        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
  4153
    ## 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
  4154
    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
  4155
                        'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4156
                        [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4157
                        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
  4158
    ## 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
  4159
    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
  4160
                        'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4161
                        [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4162
                        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
  4163
    ## 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
  4164
    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
  4165
                        'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4166
                        [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4167
                        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
  4168
    ## 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
  4169
    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
  4170
                        'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4171
                        [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4172
                        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
  4173
    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
  4174
    register_functions_ns3_FatalImpl(module.get_submodule('FatalImpl'), root_module)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4175
    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
  4176
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4177
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4178
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
  4179
    ## 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
  4180
    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
  4181
                        'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4182
                        [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
  4183
    ## 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
  4184
    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
  4185
                        'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4186
                        [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
  4187
    ## 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
  4188
    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
  4189
                        'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4190
                        [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
  4191
    ## 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
  4192
    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
  4193
                        'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4194
                        [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
  4195
    ## 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
  4196
    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
  4197
                        '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
  4198
                        [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
  4199
    ## 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
  4200
    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
  4201
                        'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4202
                        [])
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 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
  4204
    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
  4205
                        'ns3::Config::MatchContainer', 
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')])
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::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
  4208
    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
  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('ns3::Ptr< ns3::Object >', 'obj')])
7401
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4211
    ## 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
  4212
    module.add_function('Reset', 
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4213
                        'void', 
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4214
                        [])
6881
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 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
  4216
    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
  4217
                        'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4218
                        [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
  4219
    ## 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
  4220
    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
  4221
                        'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4222
                        [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
  4223
    ## 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
  4224
    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
  4225
                        'bool', 
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', '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
  4227
    ## 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
  4228
    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
  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('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
  4231
    ## 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
  4232
    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
  4233
                        'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4234
                        [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
  4235
    ## 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
  4236
    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
  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('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
  4239
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4240
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4241
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
  4242
    ## 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
  4243
    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
  4244
                        'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4245
                        [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4246
    ## 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
  4247
    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
  4248
                        'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4249
                        [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
  4250
    ## 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
  4251
    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
  4252
                        'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4253
                        [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
  4254
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4255
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4256
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
  4257
    ## 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
  4258
    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
  4259
                        '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
  4260
                        [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
  4261
    ## 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
  4262
    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
  4263
                        '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
  4264
                        [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
  4265
    ## 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
  4266
    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
  4267
                        '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
  4268
                        [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
  4269
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4270
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4271
def main():
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4272
    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
  4273
    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
  4274
    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
  4275
    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
  4276
    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
  4277
    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
  4278
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4279
if __name__ == '__main__':
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4280
    main()
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4281