src/core/bindings/modulegen__gcc_ILP32.py
author Mitch Watrous <watrous@u.washington.edu>
Wed, 10 Aug 2011 10:59:35 -0700
changeset 7420 ca9c09839724
parent 7407 a28fffcfb2e5
child 7586 c94d841b44fb
permissions -rw-r--r--
Add a couple of includes and rescan core module's 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: 7090
diff changeset
    88
    module.add_class('Simulator', destructor_visibility='private')
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    89
    ## system-condition.h (module 'core'): ns3::SystemCondition [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    90
    module.add_class('SystemCondition')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    91
    ## system-mutex.h (module 'core'): ns3::SystemMutex [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    92
    module.add_class('SystemMutex')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    93
    ## system-wall-clock-ms.h (module 'core'): ns3::SystemWallClockMs [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    94
    module.add_class('SystemWallClockMs')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    95
    ## timer.h (module 'core'): ns3::Timer [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    96
    module.add_class('Timer')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    97
    ## timer.h (module 'core'): ns3::Timer::DestroyPolicy [enumeration]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    98
    module.add_enum('DestroyPolicy', ['CANCEL_ON_DESTROY', 'REMOVE_ON_DESTROY', 'CHECK_ON_DESTROY'], outer_class=root_module['ns3::Timer'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    99
    ## timer.h (module 'core'): ns3::Timer::State [enumeration]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   100
    module.add_enum('State', ['RUNNING', 'EXPIRED', 'SUSPENDED'], outer_class=root_module['ns3::Timer'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   101
    ## timer-impl.h (module 'core'): ns3::TimerImpl [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   102
    module.add_class('TimerImpl', allow_subclassing=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   103
    ## random-variable.h (module 'core'): ns3::TriangularVariable [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   104
    module.add_class('TriangularVariable', parent=root_module['ns3::RandomVariable'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   105
    ## type-id.h (module 'core'): ns3::TypeId [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   106
    module.add_class('TypeId')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   107
    ## type-id.h (module 'core'): ns3::TypeId::AttributeFlag [enumeration]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   108
    module.add_enum('AttributeFlag', ['ATTR_GET', 'ATTR_SET', 'ATTR_CONSTRUCT', 'ATTR_SGC'], outer_class=root_module['ns3::TypeId'])
7401
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   109
    ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation [struct]
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   110
    module.add_class('AttributeInformation', outer_class=root_module['ns3::TypeId'])
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   111
    ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation [struct]
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   112
    module.add_class('TraceSourceInformation', outer_class=root_module['ns3::TypeId'])
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   113
    ## random-variable.h (module 'core'): ns3::UniformVariable [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   114
    module.add_class('UniformVariable', parent=root_module['ns3::RandomVariable'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   115
    ## vector.h (module 'core'): ns3::Vector2D [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   116
    module.add_class('Vector2D')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   117
    ## vector.h (module 'core'): ns3::Vector3D [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   118
    module.add_class('Vector3D')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   119
    ## watchdog.h (module 'core'): ns3::Watchdog [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   120
    module.add_class('Watchdog')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   121
    ## random-variable.h (module 'core'): ns3::WeibullVariable [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   122
    module.add_class('WeibullVariable', parent=root_module['ns3::RandomVariable'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   123
    ## random-variable.h (module 'core'): ns3::ZetaVariable [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   124
    module.add_class('ZetaVariable', parent=root_module['ns3::RandomVariable'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   125
    ## random-variable.h (module 'core'): ns3::ZipfVariable [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   126
    module.add_class('ZipfVariable', parent=root_module['ns3::RandomVariable'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   127
    ## empty.h (module 'core'): ns3::empty [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   128
    module.add_class('empty')
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   129
    ## int64x64-double.h (module 'core'): ns3::int64x64_t [class]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   130
    module.add_class('int64x64_t')
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   131
    ## random-variable.h (module 'core'): ns3::ConstantVariable [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   132
    module.add_class('ConstantVariable', parent=root_module['ns3::RandomVariable'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   133
    ## random-variable.h (module 'core'): ns3::DeterministicVariable [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   134
    module.add_class('DeterministicVariable', parent=root_module['ns3::RandomVariable'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   135
    ## random-variable.h (module 'core'): ns3::EmpiricalVariable [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   136
    module.add_class('EmpiricalVariable', parent=root_module['ns3::RandomVariable'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   137
    ## random-variable.h (module 'core'): ns3::ErlangVariable [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   138
    module.add_class('ErlangVariable', parent=root_module['ns3::RandomVariable'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   139
    ## random-variable.h (module 'core'): ns3::ExponentialVariable [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   140
    module.add_class('ExponentialVariable', parent=root_module['ns3::RandomVariable'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   141
    ## random-variable.h (module 'core'): ns3::GammaVariable [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   142
    module.add_class('GammaVariable', parent=root_module['ns3::RandomVariable'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   143
    ## random-variable.h (module 'core'): ns3::IntEmpiricalVariable [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   144
    module.add_class('IntEmpiricalVariable', parent=root_module['ns3::EmpiricalVariable'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   145
    ## random-variable.h (module 'core'): ns3::LogNormalVariable [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   146
    module.add_class('LogNormalVariable', parent=root_module['ns3::RandomVariable'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   147
    ## random-variable.h (module 'core'): ns3::NormalVariable [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   148
    module.add_class('NormalVariable', parent=root_module['ns3::RandomVariable'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   149
    ## object.h (module 'core'): ns3::Object [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   150
    module.add_class('Object', parent=root_module['ns3::SimpleRefCount< ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter >'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   151
    ## object.h (module 'core'): ns3::Object::AggregateIterator [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   152
    module.add_class('AggregateIterator', outer_class=root_module['ns3::Object'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   153
    ## random-variable.h (module 'core'): ns3::ParetoVariable [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   154
    module.add_class('ParetoVariable', parent=root_module['ns3::RandomVariable'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   155
    ## scheduler.h (module 'core'): ns3::Scheduler [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   156
    module.add_class('Scheduler', parent=root_module['ns3::Object'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   157
    ## scheduler.h (module 'core'): ns3::Scheduler::Event [struct]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   158
    module.add_class('Event', outer_class=root_module['ns3::Scheduler'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   159
    ## scheduler.h (module 'core'): ns3::Scheduler::EventKey [struct]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   160
    module.add_class('EventKey', outer_class=root_module['ns3::Scheduler'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   161
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> > [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   162
    module.add_class('SimpleRefCount', automatic_type_narrowing=True, template_parameters=['ns3::AttributeAccessor', 'ns3::empty', 'ns3::DefaultDeleter<ns3::AttributeAccessor>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   163
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter<ns3::AttributeChecker> > [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   164
    module.add_class('SimpleRefCount', automatic_type_narrowing=True, template_parameters=['ns3::AttributeChecker', 'ns3::empty', 'ns3::DefaultDeleter<ns3::AttributeChecker>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   165
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter<ns3::AttributeValue> > [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   166
    module.add_class('SimpleRefCount', automatic_type_narrowing=True, template_parameters=['ns3::AttributeValue', 'ns3::empty', 'ns3::DefaultDeleter<ns3::AttributeValue>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   167
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> > [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   168
    module.add_class('SimpleRefCount', automatic_type_narrowing=True, template_parameters=['ns3::CallbackImplBase', 'ns3::empty', 'ns3::DefaultDeleter<ns3::CallbackImplBase>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   169
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::EventImpl, ns3::empty, ns3::DefaultDeleter<ns3::EventImpl> > [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   170
    module.add_class('SimpleRefCount', automatic_type_narrowing=True, template_parameters=['ns3::EventImpl', 'ns3::empty', 'ns3::DefaultDeleter<ns3::EventImpl>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   171
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::FdReader, ns3::empty, ns3::DefaultDeleter<ns3::FdReader> > [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   172
    module.add_class('SimpleRefCount', automatic_type_narrowing=True, template_parameters=['ns3::FdReader', 'ns3::empty', 'ns3::DefaultDeleter<ns3::FdReader>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   173
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::RefCountBase, ns3::empty, ns3::DefaultDeleter<ns3::RefCountBase> > [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   174
    module.add_class('SimpleRefCount', automatic_type_narrowing=True, template_parameters=['ns3::RefCountBase', 'ns3::empty', 'ns3::DefaultDeleter<ns3::RefCountBase>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   175
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::SystemThread, ns3::empty, ns3::DefaultDeleter<ns3::SystemThread> > [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   176
    module.add_class('SimpleRefCount', automatic_type_narrowing=True, template_parameters=['ns3::SystemThread', 'ns3::empty', 'ns3::DefaultDeleter<ns3::SystemThread>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   177
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter<ns3::TraceSourceAccessor> > [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   178
    module.add_class('SimpleRefCount', automatic_type_narrowing=True, template_parameters=['ns3::TraceSourceAccessor', 'ns3::empty', 'ns3::DefaultDeleter<ns3::TraceSourceAccessor>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   179
    ## simulator-impl.h (module 'core'): ns3::SimulatorImpl [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   180
    module.add_class('SimulatorImpl', parent=root_module['ns3::Object'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   181
    ## synchronizer.h (module 'core'): ns3::Synchronizer [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   182
    module.add_class('Synchronizer', parent=root_module['ns3::Object'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   183
    ## system-thread.h (module 'core'): ns3::SystemThread [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   184
    module.add_class('SystemThread', parent=root_module['ns3::SimpleRefCount< ns3::SystemThread, ns3::empty, ns3::DefaultDeleter<ns3::SystemThread> >'])
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   185
    ## nstime.h (module 'core'): ns3::Time [class]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   186
    module.add_class('Time')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   187
    ## nstime.h (module 'core'): ns3::Time::Unit [enumeration]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   188
    module.add_enum('Unit', ['S', 'MS', 'US', 'NS', 'PS', 'FS', 'LAST'], outer_class=root_module['ns3::Time'])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   189
    ## nstime.h (module 'core'): ns3::Time [class]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   190
    root_module['ns3::Time'].implicitly_converts_to(root_module['ns3::int64x64_t'])
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   191
    ## trace-source-accessor.h (module 'core'): ns3::TraceSourceAccessor [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   192
    module.add_class('TraceSourceAccessor', parent=root_module['ns3::SimpleRefCount< ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter<ns3::TraceSourceAccessor> >'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   193
    ## wall-clock-synchronizer.h (module 'core'): ns3::WallClockSynchronizer [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   194
    module.add_class('WallClockSynchronizer', parent=root_module['ns3::Synchronizer'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   195
    ## attribute.h (module 'core'): ns3::AttributeAccessor [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   196
    module.add_class('AttributeAccessor', parent=root_module['ns3::SimpleRefCount< ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> >'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   197
    ## attribute.h (module 'core'): ns3::AttributeChecker [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   198
    module.add_class('AttributeChecker', allow_subclassing=False, automatic_type_narrowing=True, parent=root_module['ns3::SimpleRefCount< ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter<ns3::AttributeChecker> >'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   199
    ## attribute.h (module 'core'): ns3::AttributeValue [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   200
    module.add_class('AttributeValue', allow_subclassing=False, automatic_type_narrowing=True, parent=root_module['ns3::SimpleRefCount< ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter<ns3::AttributeValue> >'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   201
    ## boolean.h (module 'core'): ns3::BooleanChecker [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   202
    module.add_class('BooleanChecker', parent=root_module['ns3::AttributeChecker'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   203
    ## boolean.h (module 'core'): ns3::BooleanValue [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   204
    module.add_class('BooleanValue', parent=root_module['ns3::AttributeValue'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   205
    ## calendar-scheduler.h (module 'core'): ns3::CalendarScheduler [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   206
    module.add_class('CalendarScheduler', parent=root_module['ns3::Scheduler'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   207
    ## callback.h (module 'core'): ns3::CallbackChecker [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   208
    module.add_class('CallbackChecker', parent=root_module['ns3::AttributeChecker'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   209
    ## callback.h (module 'core'): ns3::CallbackImplBase [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   210
    module.add_class('CallbackImplBase', parent=root_module['ns3::SimpleRefCount< ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> >'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   211
    ## callback.h (module 'core'): ns3::CallbackValue [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   212
    module.add_class('CallbackValue', parent=root_module['ns3::AttributeValue'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   213
    ## default-simulator-impl.h (module 'core'): ns3::DefaultSimulatorImpl [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   214
    module.add_class('DefaultSimulatorImpl', parent=root_module['ns3::SimulatorImpl'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   215
    ## double.h (module 'core'): ns3::DoubleValue [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   216
    module.add_class('DoubleValue', parent=root_module['ns3::AttributeValue'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   217
    ## attribute.h (module 'core'): ns3::EmptyAttributeValue [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   218
    module.add_class('EmptyAttributeValue', parent=root_module['ns3::AttributeValue'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   219
    ## enum.h (module 'core'): ns3::EnumChecker [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   220
    module.add_class('EnumChecker', parent=root_module['ns3::AttributeChecker'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   221
    ## enum.h (module 'core'): ns3::EnumValue [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   222
    module.add_class('EnumValue', parent=root_module['ns3::AttributeValue'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   223
    ## event-impl.h (module 'core'): ns3::EventImpl [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   224
    module.add_class('EventImpl', parent=root_module['ns3::SimpleRefCount< ns3::EventImpl, ns3::empty, ns3::DefaultDeleter<ns3::EventImpl> >'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   225
    ## unix-fd-reader.h (module 'core'): ns3::FdReader [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   226
    module.add_class('FdReader', parent=root_module['ns3::SimpleRefCount< ns3::FdReader, ns3::empty, ns3::DefaultDeleter<ns3::FdReader> >'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   227
    ## heap-scheduler.h (module 'core'): ns3::HeapScheduler [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   228
    module.add_class('HeapScheduler', parent=root_module['ns3::Scheduler'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   229
    ## integer.h (module 'core'): ns3::IntegerValue [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   230
    module.add_class('IntegerValue', parent=root_module['ns3::AttributeValue'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   231
    ## list-scheduler.h (module 'core'): ns3::ListScheduler [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   232
    module.add_class('ListScheduler', parent=root_module['ns3::Scheduler'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   233
    ## map-scheduler.h (module 'core'): ns3::MapScheduler [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   234
    module.add_class('MapScheduler', parent=root_module['ns3::Scheduler'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   235
    ## ns2-calendar-scheduler.h (module 'core'): ns3::Ns2CalendarScheduler [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   236
    module.add_class('Ns2CalendarScheduler', parent=root_module['ns3::Scheduler'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   237
    ## object-factory.h (module 'core'): ns3::ObjectFactoryChecker [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   238
    module.add_class('ObjectFactoryChecker', parent=root_module['ns3::AttributeChecker'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   239
    ## object-factory.h (module 'core'): ns3::ObjectFactoryValue [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   240
    module.add_class('ObjectFactoryValue', parent=root_module['ns3::AttributeValue'])
7420
ca9c09839724 Add a couple of includes and rescan core module's bindings
Mitch Watrous <watrous@u.washington.edu>
parents: 7407
diff changeset
   241
    ## object-ptr-container.h (module 'core'): ns3::ObjectPtrContainerAccessor [class]
ca9c09839724 Add a couple of includes and rescan core module's bindings
Mitch Watrous <watrous@u.washington.edu>
parents: 7407
diff changeset
   242
    module.add_class('ObjectPtrContainerAccessor', parent=root_module['ns3::AttributeAccessor'])
ca9c09839724 Add a couple of includes and rescan core module's bindings
Mitch Watrous <watrous@u.washington.edu>
parents: 7407
diff changeset
   243
    ## object-ptr-container.h (module 'core'): ns3::ObjectPtrContainerChecker [class]
ca9c09839724 Add a couple of includes and rescan core module's bindings
Mitch Watrous <watrous@u.washington.edu>
parents: 7407
diff changeset
   244
    module.add_class('ObjectPtrContainerChecker', parent=root_module['ns3::AttributeChecker'])
ca9c09839724 Add a couple of includes and rescan core module's bindings
Mitch Watrous <watrous@u.washington.edu>
parents: 7407
diff changeset
   245
    ## object-ptr-container.h (module 'core'): ns3::ObjectPtrContainerValue [class]
ca9c09839724 Add a couple of includes and rescan core module's bindings
Mitch Watrous <watrous@u.washington.edu>
parents: 7407
diff changeset
   246
    module.add_class('ObjectPtrContainerValue', parent=root_module['ns3::AttributeValue'])
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   247
    ## pointer.h (module 'core'): ns3::PointerChecker [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   248
    module.add_class('PointerChecker', parent=root_module['ns3::AttributeChecker'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   249
    ## pointer.h (module 'core'): ns3::PointerValue [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   250
    module.add_class('PointerValue', parent=root_module['ns3::AttributeValue'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   251
    ## random-variable.h (module 'core'): ns3::RandomVariableChecker [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   252
    module.add_class('RandomVariableChecker', parent=root_module['ns3::AttributeChecker'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   253
    ## random-variable.h (module 'core'): ns3::RandomVariableValue [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   254
    module.add_class('RandomVariableValue', parent=root_module['ns3::AttributeValue'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   255
    ## realtime-simulator-impl.h (module 'core'): ns3::RealtimeSimulatorImpl [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   256
    module.add_class('RealtimeSimulatorImpl', parent=root_module['ns3::SimulatorImpl'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   257
    ## realtime-simulator-impl.h (module 'core'): ns3::RealtimeSimulatorImpl::SynchronizationMode [enumeration]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   258
    module.add_enum('SynchronizationMode', ['SYNC_BEST_EFFORT', 'SYNC_HARD_LIMIT'], outer_class=root_module['ns3::RealtimeSimulatorImpl'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   259
    ## ref-count-base.h (module 'core'): ns3::RefCountBase [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   260
    module.add_class('RefCountBase', parent=root_module['ns3::SimpleRefCount< ns3::RefCountBase, ns3::empty, ns3::DefaultDeleter<ns3::RefCountBase> >'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   261
    ## string.h (module 'core'): ns3::StringChecker [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   262
    module.add_class('StringChecker', parent=root_module['ns3::AttributeChecker'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   263
    ## string.h (module 'core'): ns3::StringValue [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   264
    module.add_class('StringValue', parent=root_module['ns3::AttributeValue'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   265
    ## nstime.h (module 'core'): ns3::TimeChecker [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   266
    module.add_class('TimeChecker', parent=root_module['ns3::AttributeChecker'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   267
    ## nstime.h (module 'core'): ns3::TimeValue [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   268
    module.add_class('TimeValue', parent=root_module['ns3::AttributeValue'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   269
    ## type-id.h (module 'core'): ns3::TypeIdChecker [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   270
    module.add_class('TypeIdChecker', parent=root_module['ns3::AttributeChecker'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   271
    ## type-id.h (module 'core'): ns3::TypeIdValue [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   272
    module.add_class('TypeIdValue', parent=root_module['ns3::AttributeValue'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   273
    ## uinteger.h (module 'core'): ns3::UintegerValue [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   274
    module.add_class('UintegerValue', parent=root_module['ns3::AttributeValue'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   275
    ## vector.h (module 'core'): ns3::Vector2DChecker [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   276
    module.add_class('Vector2DChecker', parent=root_module['ns3::AttributeChecker'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   277
    ## vector.h (module 'core'): ns3::Vector2DValue [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   278
    module.add_class('Vector2DValue', parent=root_module['ns3::AttributeValue'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   279
    ## vector.h (module 'core'): ns3::Vector3DChecker [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   280
    module.add_class('Vector3DChecker', parent=root_module['ns3::AttributeChecker'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   281
    ## vector.h (module 'core'): ns3::Vector3DValue [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   282
    module.add_class('Vector3DValue', parent=root_module['ns3::AttributeValue'])
7420
ca9c09839724 Add a couple of includes and rescan core module's bindings
Mitch Watrous <watrous@u.washington.edu>
parents: 7407
diff changeset
   283
    typehandlers.add_type_alias('ns3::ObjectPtrContainerValue', 'ns3::ObjectVectorValue')
ca9c09839724 Add a couple of includes and rescan core module's bindings
Mitch Watrous <watrous@u.washington.edu>
parents: 7407
diff changeset
   284
    typehandlers.add_type_alias('ns3::ObjectPtrContainerValue*', 'ns3::ObjectVectorValue*')
ca9c09839724 Add a couple of includes and rescan core module's bindings
Mitch Watrous <watrous@u.washington.edu>
parents: 7407
diff changeset
   285
    typehandlers.add_type_alias('ns3::ObjectPtrContainerValue&', 'ns3::ObjectVectorValue&')
ca9c09839724 Add a couple of includes and rescan core module's bindings
Mitch Watrous <watrous@u.washington.edu>
parents: 7407
diff changeset
   286
    module.add_typedef(root_module['ns3::ObjectPtrContainerValue'], 'ObjectVectorValue')
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   287
    typehandlers.add_type_alias('void ( * ) ( std::ostream & ) *', 'ns3::LogTimePrinter')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   288
    typehandlers.add_type_alias('void ( * ) ( std::ostream & ) **', 'ns3::LogTimePrinter*')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   289
    typehandlers.add_type_alias('void ( * ) ( std::ostream & ) *&', 'ns3::LogTimePrinter&')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   290
    typehandlers.add_type_alias('void ( * ) ( std::ostream & ) *', 'ns3::LogNodePrinter')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   291
    typehandlers.add_type_alias('void ( * ) ( std::ostream & ) **', 'ns3::LogNodePrinter*')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   292
    typehandlers.add_type_alias('void ( * ) ( std::ostream & ) *&', 'ns3::LogNodePrinter&')
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   293
    typehandlers.add_type_alias('ns3::Vector3D', 'ns3::Vector')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   294
    typehandlers.add_type_alias('ns3::Vector3D*', 'ns3::Vector*')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   295
    typehandlers.add_type_alias('ns3::Vector3D&', 'ns3::Vector&')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   296
    module.add_typedef(root_module['ns3::Vector3D'], 'Vector')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   297
    typehandlers.add_type_alias('ns3::Vector3DValue', 'ns3::VectorValue')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   298
    typehandlers.add_type_alias('ns3::Vector3DValue*', 'ns3::VectorValue*')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   299
    typehandlers.add_type_alias('ns3::Vector3DValue&', 'ns3::VectorValue&')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   300
    module.add_typedef(root_module['ns3::Vector3DValue'], 'VectorValue')
7420
ca9c09839724 Add a couple of includes and rescan core module's bindings
Mitch Watrous <watrous@u.washington.edu>
parents: 7407
diff changeset
   301
    typehandlers.add_type_alias('ns3::ObjectPtrContainerValue', 'ns3::ObjectMapValue')
ca9c09839724 Add a couple of includes and rescan core module's bindings
Mitch Watrous <watrous@u.washington.edu>
parents: 7407
diff changeset
   302
    typehandlers.add_type_alias('ns3::ObjectPtrContainerValue*', 'ns3::ObjectMapValue*')
ca9c09839724 Add a couple of includes and rescan core module's bindings
Mitch Watrous <watrous@u.washington.edu>
parents: 7407
diff changeset
   303
    typehandlers.add_type_alias('ns3::ObjectPtrContainerValue&', 'ns3::ObjectMapValue&')
ca9c09839724 Add a couple of includes and rescan core module's bindings
Mitch Watrous <watrous@u.washington.edu>
parents: 7407
diff changeset
   304
    module.add_typedef(root_module['ns3::ObjectPtrContainerValue'], 'ObjectMapValue')
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   305
    typehandlers.add_type_alias('ns3::Vector3DChecker', 'ns3::VectorChecker')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   306
    typehandlers.add_type_alias('ns3::Vector3DChecker*', 'ns3::VectorChecker*')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   307
    typehandlers.add_type_alias('ns3::Vector3DChecker&', 'ns3::VectorChecker&')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   308
    module.add_typedef(root_module['ns3::Vector3DChecker'], 'VectorChecker')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   309
    
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   310
    ## Register a nested module for the namespace Config
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   311
    
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   312
    nested_module = module.add_cpp_namespace('Config')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   313
    register_types_ns3_Config(nested_module)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   314
    
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   315
    
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   316
    ## Register a nested module for the namespace FatalImpl
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   317
    
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   318
    nested_module = module.add_cpp_namespace('FatalImpl')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   319
    register_types_ns3_FatalImpl(nested_module)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   320
    
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   321
    
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   322
    ## 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
   323
    
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   324
    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
   325
    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
   326
    
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_Config(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
    ## 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
   332
    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
   333
    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
   334
    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
   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_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
   337
    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
   338
    
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   339
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   340
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
   341
    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
   342
    
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   343
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   344
def register_methods(root_module):
7401
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   345
    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
   346
    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
   347
    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
   348
    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
   349
    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
   350
    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
   351
    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
   352
    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
   353
    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
   354
    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
   355
    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
   356
    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
   357
    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
   358
    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
   359
    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
   360
    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
   361
    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
   362
    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
   363
    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
   364
    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
   365
    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
   366
    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
   367
    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
   368
    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
   369
    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
   370
    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
   371
    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
   372
    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
   373
    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
   374
    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
   375
    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
   376
    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
   377
    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
   378
    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
   379
    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
   380
    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
   381
    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
   382
    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
   383
    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
   384
    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
   385
    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
   386
    register_Ns3Empty_methods(root_module, root_module['ns3::empty'])
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   387
    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
   388
    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
   389
    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
   390
    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
   391
    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
   392
    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
   393
    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
   394
    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
   395
    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
   396
    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
   397
    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
   398
    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
   399
    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
   400
    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
   401
    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
   402
    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
   403
    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
   404
    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
   405
    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
   406
    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
   407
    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
   408
    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
   409
    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
   410
    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
   411
    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
   412
    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
   413
    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
   414
    register_Ns3SystemThread_methods(root_module, root_module['ns3::SystemThread'])
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   415
    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
   416
    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
   417
    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
   418
    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
   419
    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
   420
    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
   421
    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
   422
    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
   423
    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
   424
    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
   425
    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
   426
    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
   427
    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
   428
    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
   429
    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
   430
    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
   431
    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
   432
    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
   433
    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
   434
    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
   435
    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
   436
    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
   437
    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
   438
    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
   439
    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
   440
    register_Ns3ObjectFactoryValue_methods(root_module, root_module['ns3::ObjectFactoryValue'])
7420
ca9c09839724 Add a couple of includes and rescan core module's bindings
Mitch Watrous <watrous@u.washington.edu>
parents: 7407
diff changeset
   441
    register_Ns3ObjectPtrContainerAccessor_methods(root_module, root_module['ns3::ObjectPtrContainerAccessor'])
ca9c09839724 Add a couple of includes and rescan core module's bindings
Mitch Watrous <watrous@u.washington.edu>
parents: 7407
diff changeset
   442
    register_Ns3ObjectPtrContainerChecker_methods(root_module, root_module['ns3::ObjectPtrContainerChecker'])
ca9c09839724 Add a couple of includes and rescan core module's bindings
Mitch Watrous <watrous@u.washington.edu>
parents: 7407
diff changeset
   443
    register_Ns3ObjectPtrContainerValue_methods(root_module, root_module['ns3::ObjectPtrContainerValue'])
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   444
    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
   445
    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
   446
    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
   447
    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
   448
    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
   449
    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
   450
    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
   451
    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
   452
    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
   453
    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
   454
    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
   455
    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
   456
    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
   457
    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
   458
    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
   459
    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
   460
    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
   461
    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
   462
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   463
7401
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   464
def register_Ns3AttributeConstructionList_methods(root_module, cls):
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   465
    ## 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
   466
    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
   467
    ## 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
   468
    cls.add_constructor([])
7401
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   469
    ## 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
   470
    cls.add_method('Add', 
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   471
                   'void', 
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   472
                   [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
   473
    ## 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
   474
    cls.add_method('Begin', 
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   475
                   '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
   476
                   [], 
7401
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   477
                   is_const=True)
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   478
    ## 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
   479
    cls.add_method('End', 
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   480
                   '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
   481
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   482
                   is_const=True)
7401
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::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
   484
    cls.add_method('Find', 
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   485
                   'ns3::Ptr< ns3::AttributeValue >', 
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   486
                   [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   487
                   is_const=True)
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   488
    return
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   489
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   490
def register_Ns3AttributeConstructionListItem_methods(root_module, cls):
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::Item() [constructor]
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   492
    cls.add_constructor([])
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   493
    ## 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
   494
    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
   495
    ## 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
   496
    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
   497
    ## 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
   498
    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
   499
    ## 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
   500
    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
   501
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   502
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   503
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
   504
    ## 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
   505
    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
   506
    ## 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
   507
    cls.add_constructor([])
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'): 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
   509
    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
   510
                   '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
   511
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   512
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   513
    ## 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
   514
    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
   515
                        visibility='protected')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   516
    ## 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
   517
    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
   518
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   519
                   [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
   520
                   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
   521
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   522
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   523
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
   524
    ## 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
   525
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   526
    ## 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
   527
    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
   528
    ## 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
   529
    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
   530
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   531
                   [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
   532
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   533
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   534
def register_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
   535
    ## 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
   536
    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
   537
    ## 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
   538
    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
   539
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   540
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   541
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
   542
    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
   543
    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
   544
    ## 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
   545
    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
   546
    ## 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
   547
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   548
    ## 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
   549
    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
   550
    ## 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
   551
    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
   552
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   553
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   554
    ## 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
   555
    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
   556
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   557
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   558
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   559
    ## event-id.h (module 'core'): 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
   560
    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
   561
                   'uint64_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   562
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   563
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   564
    ## 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
   565
    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
   566
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   567
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   568
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   569
    ## 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
   570
    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
   571
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   572
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   573
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   574
    ## 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
   575
    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
   576
                   'bool', 
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
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   579
    ## 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
   580
    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
   581
                   'ns3::EventImpl *', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   582
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   583
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   584
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   585
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   586
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
   587
    ## 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
   588
    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
   589
    ## 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
   590
    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
   591
    ## 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
   592
    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
   593
                   '__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
   594
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   595
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   596
    ## 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
   597
    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
   598
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   599
                   [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
   600
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   601
    ## 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
   602
    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
   603
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   604
                   [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
   605
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   606
    ## 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
   607
    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
   608
                   '__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
   609
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   610
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   611
    ## 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
   612
    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
   613
                   '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
   614
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   615
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   616
    ## 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
   617
    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
   618
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   619
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   620
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   621
    ## 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
   622
    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
   623
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   624
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   625
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   626
    ## 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
   627
    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
   628
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   629
                   [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
   630
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   631
    ## 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
   632
    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
   633
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   634
                   [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
   635
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   636
    ## 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
   637
    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
   638
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   639
                   [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
   640
                   is_static=True)
7401
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   641
    ## 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
   642
    cls.add_method('ResetInitialValue', 
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   643
                   'void', 
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   644
                   [])
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   645
    ## 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
   646
    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
   647
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   648
                   [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
   649
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   650
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   651
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
   652
    ## 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
   653
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   654
    ## 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
   655
    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
   656
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   657
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   658
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
   659
    ## 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
   660
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   661
    ## 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
   662
    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
   663
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   664
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   665
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
   666
    ## 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
   667
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   668
    ## 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
   669
    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
   670
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   671
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   672
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
   673
    ## 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
   674
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   675
    ## 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
   676
    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
   677
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   678
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   679
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
   680
    ## 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
   681
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   682
    ## 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
   683
    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
   684
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   685
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   686
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
   687
    ## 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
   688
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   689
    ## 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
   690
    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
   691
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   692
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   693
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
   694
    ## 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
   695
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   696
    ## 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
   697
    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
   698
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   699
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   700
def register_Ns3LogComponent_methods(root_module, cls):
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   701
    ## 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
   702
    cls.add_constructor([param('ns3::LogComponent const &', 'arg0')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   703
    ## 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
   704
    cls.add_constructor([param('char const *', 'name')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   705
    ## 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
   706
    cls.add_method('Disable', 
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('ns3::LogLevel', 'level')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   709
    ## 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
   710
    cls.add_method('Enable', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   711
                   'void', 
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
    ## 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
   714
    cls.add_method('EnvVarCheck', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   715
                   'void', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   716
                   [param('char const *', 'name')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   717
    ## 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
   718
    cls.add_method('IsEnabled', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   719
                   'bool', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   720
                   [param('ns3::LogLevel', 'level')], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   721
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   722
    ## 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
   723
    cls.add_method('IsNoneEnabled', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   724
                   'bool', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   725
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   726
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   727
    ## 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
   728
    cls.add_method('Name', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   729
                   'char const *', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   730
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   731
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   732
    return
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   733
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   734
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
   735
    ## 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
   736
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   737
    ## 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
   738
    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
   739
    ## 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
   740
    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
   741
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   742
                   [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
   743
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   744
    ## 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
   745
    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
   746
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   747
                   [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
   748
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   749
    ## 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
   750
    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
   751
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   752
                   [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
   753
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   754
    ## 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
   755
    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
   756
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   757
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   758
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   759
    ## 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
   760
    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
   761
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   762
                   [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
   763
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   764
    ## 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
   765
    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
   766
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   767
                   [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
   768
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   769
    ## 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
   770
    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
   771
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   772
                   [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
   773
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   774
    ## 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
   775
    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
   776
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   777
                   [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
   778
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   779
    ## 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
   780
    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
   781
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   782
                   [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
   783
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   784
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   785
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   786
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
   787
    ## 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
   788
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   789
    ## 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
   790
    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
   791
    ## 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
   792
    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
   793
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   794
                   [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
   795
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   796
    ## 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
   797
    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
   798
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   799
                   [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
   800
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   801
    ## 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
   802
    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
   803
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   804
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   805
                   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
   806
    ## 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
   807
    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
   808
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   809
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   810
                   is_static=True)
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'): 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
   812
    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
   813
                   'void', 
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('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
   815
    ## 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
   816
    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
   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::AttributeValue const &', 'value')])
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::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
   820
    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
   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::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
   824
    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
   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')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   827
    ## 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
   828
    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
   829
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   830
                   [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
   831
    ## 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
   832
    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
   833
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   834
                   [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
   835
    ## 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
   836
    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
   837
                   'void', 
7401
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   838
                   [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
   839
                   visibility='protected')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   840
    ## 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
   841
    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
   842
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   843
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   844
                   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
   845
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   846
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   847
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
   848
    ## 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
   849
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   850
    ## 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
   851
    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
   852
    ## 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
   853
    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
   854
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   855
                   [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
   856
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   857
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   858
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   859
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
   860
    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
   861
    ## 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
   862
    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
   863
    ## 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
   864
    cls.add_constructor([])
7401
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   865
    ## 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
   866
    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
   867
    ## 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
   868
    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
   869
                   '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
   870
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   871
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   872
    ## object-factory.h (module 'core'): ns3::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
   873
    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
   874
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   875
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   876
                   is_const=True)
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::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
   878
    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
   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('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
   881
    ## 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
   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('ns3::TypeId', 'tid')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   885
    ## 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
   886
    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
   887
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   888
                   [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
   889
    ## 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
   890
    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
   891
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   892
                   [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
   893
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   894
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   895
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
   896
    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
   897
    ## 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
   898
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   899
    ## 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
   900
    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
   901
    ## 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
   902
    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
   903
                   'uint32_t', 
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
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   906
    ## 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
   907
    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
   908
                   'double', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   909
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   910
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   911
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   912
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   913
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
   914
    ## 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
   915
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   916
    ## 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
   917
    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
   918
    ## 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
   919
    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
   920
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   921
                   [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
   922
    ## 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
   923
    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
   924
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   925
                   [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
   926
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   927
    ## rng-stream.h (module 'core'): 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
   928
    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
   929
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   930
                   [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
   931
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   932
    ## 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
   933
    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
   934
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   935
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   936
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   937
    ## 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
   938
    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
   939
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   940
                   [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
   941
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   942
    ## 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
   943
    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
   944
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   945
                   [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
   946
                   is_const=True)
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'): 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
   948
    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
   949
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   950
                   [param('bool', 'incp')])
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'): 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
   952
    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
   953
                   'void', 
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'): 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
   956
    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
   957
                   'int32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   958
                   [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
   959
    ## 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
   960
    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
   961
                   'double', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   962
                   [])
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::ResetNextSubstream() [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('ResetNextSubstream', 
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::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
   968
    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
   969
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   970
                   [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
   971
    ## 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
   972
    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
   973
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   974
                   [])
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'): 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
   976
    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
   977
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   978
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   979
    ## 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
   980
    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
   981
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   982
                   [param('bool', 'a')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   983
    ## 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
   984
    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
   985
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   986
                   [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
   987
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   988
    ## 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
   989
    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
   990
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   991
                   [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
   992
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   993
    ## 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
   994
    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
   995
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   996
                   [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
   997
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   998
    ## 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
   999
    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
  1000
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1001
                   [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
  1002
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1003
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1004
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
  1005
    ## 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
  1006
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1007
    ## 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
  1008
    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
  1009
    ## 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
  1010
    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
  1011
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1012
                   [param('uint32_t', 'seed')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1013
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1014
    ## 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
  1015
    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
  1016
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1017
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1018
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1019
    ## 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
  1020
    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
  1021
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1022
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1023
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1024
    ## 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
  1025
    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
  1026
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1027
                   [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
  1028
                   is_static=True)
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'): 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
  1030
    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
  1031
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1032
                   [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
  1033
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1034
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1035
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1036
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
  1037
    ## 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
  1038
    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
  1039
    ## 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
  1040
    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
  1041
    ## 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
  1042
    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
  1043
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1044
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1045
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
  1046
    ## 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
  1047
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1048
    ## 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
  1049
    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
  1050
    ## 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
  1051
    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
  1052
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1053
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1054
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1055
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1056
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1057
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
  1058
    ## 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
  1059
    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
  1060
    ## 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
  1061
    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
  1062
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1063
                   [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
  1064
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1065
    ## 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
  1066
    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
  1067
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1068
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1069
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1070
    ## 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
  1071
    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
  1072
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1073
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1074
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1075
    ## 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
  1076
    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
  1077
                   'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1078
                   [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
  1079
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1080
    ## 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
  1081
    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
  1082
                   '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
  1083
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1084
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1085
    ## 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
  1086
    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
  1087
                   'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1088
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1089
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1090
    ## 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
  1091
    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
  1092
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1093
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1094
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1095
    ## 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
  1096
    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
  1097
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1098
                   [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
  1099
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1100
    ## 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
  1101
    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
  1102
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1103
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1104
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1105
    ## 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
  1106
    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
  1107
                   'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1108
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1109
                   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
  1110
    ## 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
  1111
    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
  1112
                   'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1113
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1114
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1115
    ## 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
  1116
    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
  1117
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1118
                   [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
  1119
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1120
    ## 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
  1121
    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
  1122
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1123
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1124
                   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
  1125
    ## 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
  1126
    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
  1127
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1128
                   [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
  1129
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1130
    ## 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
  1131
    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
  1132
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1133
                   [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
  1134
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1135
    ## 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
  1136
    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
  1137
                   'void', 
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
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1140
    ## 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
  1141
    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
  1142
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1143
                   [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
  1144
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1145
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1146
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1147
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
  1148
    ## 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
  1149
    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
  1150
    ## 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
  1151
    cls.add_constructor([])
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::Broadcast() [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('Broadcast', 
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
                   [])
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'): 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
  1157
    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
  1158
                   'bool', 
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'): 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
  1161
    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
  1162
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1163
                   [param('bool', 'condition')])
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::Signal() [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('Signal', 
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
    ## 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
  1169
    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
  1170
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1171
                   [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
  1172
    ## 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
  1173
    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
  1174
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1175
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1176
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1177
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1178
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
  1179
    ## 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
  1180
    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
  1181
    ## 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
  1182
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1183
    ## 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
  1184
    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
  1185
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1186
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1187
    ## 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
  1188
    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
  1189
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1190
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1191
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1192
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1193
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
  1194
    ## 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
  1195
    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
  1196
    ## 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
  1197
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1198
    ## 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
  1199
    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
  1200
                   'int64_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1201
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1202
    ## 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
  1203
    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
  1204
                   'int64_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1205
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1206
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1207
    ## system-wall-clock-ms.h (module 'core'): 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
  1208
    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
  1209
                   'int64_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1210
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1211
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1212
    ## 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
  1213
    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
  1214
                   'int64_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1215
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1216
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1217
    ## 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
  1218
    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
  1219
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1220
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1221
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1222
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1223
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
  1224
    ## 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
  1225
    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
  1226
    ## 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
  1227
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1228
    ## 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
  1229
    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
  1230
    ## 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
  1231
    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
  1232
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1233
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1234
    ## 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
  1235
    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
  1236
                   'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1237
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1238
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1239
    ## timer.h (module 'core'): ns3::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
  1240
    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
  1241
                   'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1242
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1243
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1244
    ## 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
  1245
    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
  1246
                   'ns3::Timer::State', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1247
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1248
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1249
    ## 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
  1250
    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
  1251
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1252
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1253
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1254
    ## 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
  1255
    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
  1256
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1257
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1258
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1259
    ## 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
  1260
    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
  1261
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1262
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1263
                   is_const=True)
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::Remove() [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('Remove', 
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::Resume() [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('Resume', 
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
                   [])
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::Schedule() [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('Schedule', 
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
                   [])
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::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
  1277
    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
  1278
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1279
                   [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
  1280
    ## 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
  1281
    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
  1282
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1283
                   [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
  1284
    ## 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
  1285
    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
  1286
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1287
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1288
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1289
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1290
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
  1291
    ## 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
  1292
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1293
    ## 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
  1294
    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
  1295
    ## 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
  1296
    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
  1297
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1298
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1299
                   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
  1300
    ## 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
  1301
    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
  1302
                   'ns3::EventId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1303
                   [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
  1304
                   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
  1305
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1306
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1307
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
  1308
    ## 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
  1309
    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
  1310
    ## 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
  1311
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1312
    ## 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
  1313
    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
  1314
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1315
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1316
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
  1317
    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
  1318
    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
  1319
    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
  1320
    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
  1321
    ## 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
  1322
    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
  1323
    ## 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
  1324
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1325
    ## 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
  1326
    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
  1327
    ## 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
  1328
    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
  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::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
  1331
    ## 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
  1332
    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
  1333
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1334
                   [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
  1335
    ## 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
  1336
    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
  1337
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1338
                   [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
  1339
    ## 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
  1340
    cls.add_method('GetAttribute', 
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1341
                   '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
  1342
                   [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
  1343
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1344
    ## 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
  1345
    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
  1346
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1347
                   [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
  1348
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1349
    ## 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
  1350
    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
  1351
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1352
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1353
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1354
    ## 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
  1355
    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
  1356
                   '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
  1357
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1358
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1359
    ## 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
  1360
    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
  1361
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1362
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1363
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1364
    ## 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
  1365
    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
  1366
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1367
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1368
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1369
    ## 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
  1370
    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
  1371
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1372
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1373
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1374
    ## 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
  1375
    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
  1376
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1377
                   [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
  1378
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1379
    ## 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
  1380
    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
  1381
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1382
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1383
                   is_static=True)
7401
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1384
    ## 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
  1385
    cls.add_method('GetTraceSource', 
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1386
                   '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
  1387
                   [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
  1388
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1389
    ## 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
  1390
    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
  1391
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1392
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1393
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1394
    ## 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
  1395
    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
  1396
                   'uint16_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1397
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1398
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1399
    ## 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
  1400
    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
  1401
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1402
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1403
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1404
    ## 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
  1405
    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
  1406
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1407
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1408
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1409
    ## 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
  1410
    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
  1411
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1412
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1413
    ## 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
  1414
    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
  1415
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1416
                   [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
  1417
                   is_const=True)
7401
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1418
    ## 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
  1419
    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
  1420
                   'bool', 
7401
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1421
                   [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
  1422
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1423
    ## 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
  1424
    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
  1425
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1426
                   [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
  1427
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1428
    ## 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
  1429
    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
  1430
                   '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
  1431
                   [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
  1432
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1433
    ## 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
  1434
    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
  1435
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1436
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1437
                   is_const=True)
7401
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1438
    ## 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
  1439
    cls.add_method('SetAttributeInitialValue', 
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1440
                   'bool', 
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1441
                   [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
  1442
    ## 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
  1443
    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
  1444
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1445
                   [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
  1446
    ## 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
  1447
    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
  1448
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1449
                   [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
  1450
    ## 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
  1451
    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
  1452
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1453
                   [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
  1454
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1455
7401
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1456
def register_Ns3TypeIdAttributeInformation_methods(root_module, cls):
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::AttributeInformation() [constructor]
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_constructor([])
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::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
  1460
    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
  1461
    ## 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
  1462
    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
  1463
    ## 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
  1464
    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
  1465
    ## 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
  1466
    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
  1467
    ## 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
  1468
    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
  1469
    ## 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
  1470
    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
  1471
    ## 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
  1472
    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
  1473
    ## 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
  1474
    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
  1475
    return
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1476
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1477
def register_Ns3TypeIdTraceSourceInformation_methods(root_module, cls):
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::TraceSourceInformation() [constructor]
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1479
    cls.add_constructor([])
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1480
    ## type-id.h (module 'core'): ns3::TypeId::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
  1481
    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
  1482
    ## 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
  1483
    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
  1484
    ## 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
  1485
    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
  1486
    ## 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
  1487
    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
  1488
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1489
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1490
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
  1491
    ## 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
  1492
    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
  1493
    ## 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
  1494
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1495
    ## 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
  1496
    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
  1497
    ## 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
  1498
    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
  1499
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1500
                   [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
  1501
    ## 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
  1502
    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
  1503
                   'double', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1504
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1505
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1506
    ## random-variable.h (module 'core'): 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
  1507
    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
  1508
                   'double', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1509
                   [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
  1510
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1511
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1512
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
  1513
    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
  1514
    ## 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
  1515
    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
  1516
    ## 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
  1517
    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
  1518
    ## 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
  1519
    cls.add_constructor([])
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::Vector2D::x [variable]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1521
    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
  1522
    ## 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
  1523
    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
  1524
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1525
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1526
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
  1527
    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
  1528
    ## 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
  1529
    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
  1530
    ## 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
  1531
    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
  1532
    ## 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
  1533
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1534
    ## 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
  1535
    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
  1536
    ## 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
  1537
    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
  1538
    ## 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
  1539
    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
  1540
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1541
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1542
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
  1543
    ## 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
  1544
    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
  1545
    ## 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
  1546
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1547
    ## 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
  1548
    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
  1549
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1550
                   [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
  1551
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1552
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1553
def register_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
  1554
    ## 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
  1555
    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
  1556
    ## 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
  1557
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1558
    ## 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
  1559
    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
  1560
    ## 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
  1561
    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
  1562
    ## 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
  1563
    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
  1564
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1565
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1566
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
  1567
    ## 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
  1568
    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
  1569
    ## 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
  1570
    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
  1571
    ## 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
  1572
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1573
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1574
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1575
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
  1576
    ## 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
  1577
    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
  1578
    ## 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
  1579
    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
  1580
    ## 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
  1581
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1582
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1583
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1584
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
  1585
    ## 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
  1586
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1587
    ## 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
  1588
    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
  1589
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1590
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1591
def register_Ns3Int64x64_t_methods(root_module, cls):
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('long long unsigned 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('long unsigned int 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('unsigned int 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('short unsigned int 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('unsigned char 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 long 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('long 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('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('short int 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('signed char 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('double 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('ns3::int64x64_t const &', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1604
    cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long unsigned int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1605
    cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long unsigned int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1606
    cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1607
    cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short unsigned int 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('unsigned char 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 long int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1610
    cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long 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('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('short int 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('signed char 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('double 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('ns3::int64x64_t const &', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1616
    cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long unsigned int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1617
    cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long unsigned int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1618
    cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1619
    cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short unsigned int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1620
    cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned char 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 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 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('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 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('signed 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('double const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1627
    cls.add_unary_numeric_operator('-')
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('ns3::int64x64_t 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('long long unsigned int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1630
    cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long unsigned int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1631
    cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned int 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('short unsigned int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1633
    cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned char const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1634
    cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1635
    cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1636
    cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1637
    cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1638
    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
  1639
    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
  1640
    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
  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
    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
  1645
    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
  1646
    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
  1647
    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
  1648
    cls.add_output_stream_operator()
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1649
    cls.add_binary_comparison_operator('<=')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1650
    cls.add_binary_comparison_operator('==')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1651
    cls.add_binary_comparison_operator('>=')
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() [constructor]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1653
    cls.add_constructor([])
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(double v) [constructor]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1655
    cls.add_constructor([param('double', '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(int v) [constructor]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1657
    cls.add_constructor([param('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 int v) [constructor]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1659
    cls.add_constructor([param('long 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(long long int v) [constructor]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1661
    cls.add_constructor([param('long long int', 'v')])
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(unsigned int v) [constructor]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1663
    cls.add_constructor([param('unsigned int', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1664
    ## 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
  1665
    cls.add_constructor([param('long unsigned int', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1666
    ## 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
  1667
    cls.add_constructor([param('long long unsigned int', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1668
    ## 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
  1669
    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
  1670
    ## 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
  1671
    cls.add_constructor([param('ns3::int64x64_t const &', 'o')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1672
    ## 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
  1673
    cls.add_method('GetDouble', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1674
                   'double', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1675
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1676
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1677
    ## 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
  1678
    cls.add_method('GetHigh', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1679
                   'int64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1680
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1681
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1682
    ## 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
  1683
    cls.add_method('GetLow', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1684
                   'uint64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1685
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1686
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1687
    ## 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
  1688
    cls.add_method('Invert', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1689
                   'ns3::int64x64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1690
                   [param('uint64_t', 'v')], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1691
                   is_static=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1692
    ## 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
  1693
    cls.add_method('MulByInvert', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1694
                   'void', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1695
                   [param('ns3::int64x64_t const &', 'o')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1696
    return
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  1697
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1698
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
  1699
    ## 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
  1700
    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
  1701
    ## 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
  1702
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1703
    ## 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
  1704
    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
  1705
    ## 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
  1706
    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
  1707
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1708
                   [param('double', 'c')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1709
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1710
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1711
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
  1712
    ## 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
  1713
    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
  1714
    ## 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
  1715
    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
  1716
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1717
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1718
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
  1719
    ## 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
  1720
    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
  1721
    ## 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
  1722
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1723
    ## random-variable.h (module 'core'): 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
  1724
    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
  1725
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1726
                   [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
  1727
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1728
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1729
def register_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
  1730
    ## 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
  1731
    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
  1732
    ## 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
  1733
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1734
    ## random-variable.h (module 'core'): 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
  1735
    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
  1736
    ## 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
  1737
    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
  1738
                   'double', 
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
                   is_const=True)
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'): 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
  1742
    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
  1743
                   'double', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1744
                   [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
  1745
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1746
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1747
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1748
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
  1749
    ## 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
  1750
    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
  1751
    ## 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
  1752
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1753
    ## 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
  1754
    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
  1755
    ## 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
  1756
    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
  1757
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1758
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1759
def register_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
  1760
    ## 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
  1761
    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
  1762
    ## 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
  1763
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1764
    ## random-variable.h (module 'core'): ns3::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
  1765
    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
  1766
    ## 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
  1767
    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
  1768
                   'double', 
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
                   is_const=True)
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'): 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
  1772
    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
  1773
                   'double', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1774
                   [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
  1775
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1776
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1777
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1778
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
  1779
    ## 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
  1780
    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
  1781
    ## 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
  1782
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1783
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1784
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1785
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
  1786
    ## 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
  1787
    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
  1788
    ## 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
  1789
    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
  1790
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1791
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1792
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
  1793
    ## 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
  1794
    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
  1795
    ## 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
  1796
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1797
    ## random-variable.h (module 'core'): ns3::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
  1798
    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
  1799
    ## 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
  1800
    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
  1801
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1802
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1803
def register_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
  1804
    ## 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
  1805
    cls.add_constructor([])
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'): 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
  1807
    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
  1808
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1809
                   [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
  1810
    ## 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
  1811
    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
  1812
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1813
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1814
    ## 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
  1815
    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
  1816
                   'ns3::Object::AggregateIterator', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1817
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1818
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1819
    ## 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
  1820
    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
  1821
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1822
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1823
                   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
  1824
    ## 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
  1825
    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
  1826
                   '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
  1827
                   [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
  1828
                   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
  1829
    ## 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
  1830
    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
  1831
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1832
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1833
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1834
    ## 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
  1835
    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
  1836
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1837
                   [])
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'): 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
  1839
    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
  1840
                        visibility='protected')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1841
    ## 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
  1842
    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
  1843
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1844
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1845
                   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
  1846
    ## 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
  1847
    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
  1848
                   'void', 
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
                   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
  1851
    ## 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
  1852
    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
  1853
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1854
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1855
                   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
  1856
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1857
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1858
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
  1859
    ## 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
  1860
    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
  1861
    ## 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
  1862
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1863
    ## 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
  1864
    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
  1865
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1866
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1867
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1868
    ## 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
  1869
    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
  1870
                   '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
  1871
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1872
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1873
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1874
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
  1875
    ## 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
  1876
    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
  1877
    ## 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
  1878
    cls.add_constructor([])
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(double m) [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('double', 'm')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1881
    ## 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
  1882
    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
  1883
    ## 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
  1884
    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
  1885
    ## 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
  1886
    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
  1887
    ## 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
  1888
    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
  1889
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1890
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1891
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
  1892
    ## 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
  1893
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1894
    ## 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
  1895
    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
  1896
    ## 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
  1897
    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
  1898
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1899
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1900
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1901
    ## 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
  1902
    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
  1903
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1904
                   [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
  1905
                   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
  1906
    ## 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
  1907
    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
  1908
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1909
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1910
                   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
  1911
    ## 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
  1912
    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
  1913
                   'ns3::Scheduler::Event', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1914
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1915
                   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
  1916
    ## 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
  1917
    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
  1918
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1919
                   [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
  1920
                   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
  1921
    ## 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
  1922
    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
  1923
                   'ns3::Scheduler::Event', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1924
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1925
                   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
  1926
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1927
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1928
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
  1929
    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
  1930
    ## 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
  1931
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1932
    ## scheduler.h (module 'core'): ns3::Scheduler::Event::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
  1933
    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
  1934
    ## 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
  1935
    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
  1936
    ## 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
  1937
    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
  1938
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1939
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1940
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
  1941
    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
  1942
    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
  1943
    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
  1944
    ## 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
  1945
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1946
    ## 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
  1947
    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
  1948
    ## 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
  1949
    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
  1950
    ## 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
  1951
    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
  1952
    ## 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
  1953
    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
  1954
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1955
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1956
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
  1957
    ## 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
  1958
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1959
    ## 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
  1960
    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
  1961
    ## 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
  1962
    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
  1963
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1964
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1965
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1966
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1967
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1968
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
  1969
    ## 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
  1970
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1971
    ## 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
  1972
    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
  1973
    ## 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
  1974
    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
  1975
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1976
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1977
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1978
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1979
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1980
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
  1981
    ## 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
  1982
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1983
    ## 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
  1984
    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
  1985
    ## 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
  1986
    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
  1987
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1988
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1989
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1990
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1991
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1992
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
  1993
    ## 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
  1994
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1995
    ## 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
  1996
    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
  1997
    ## 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
  1998
    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
  1999
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2000
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2001
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2002
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2003
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2004
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
  2005
    ## 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
  2006
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2007
    ## 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
  2008
    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
  2009
    ## 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
  2010
    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
  2011
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2012
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2013
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2014
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2015
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2016
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
  2017
    ## 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
  2018
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2019
    ## 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
  2020
    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
  2021
    ## 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
  2022
    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
  2023
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2024
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2025
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2026
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2027
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2028
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
  2029
    ## 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
  2030
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2031
    ## 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
  2032
    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
  2033
    ## 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
  2034
    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
  2035
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2036
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2037
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2038
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2039
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2040
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
  2041
    ## 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
  2042
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2043
    ## 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
  2044
    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
  2045
    ## 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
  2046
    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
  2047
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2048
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2049
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2050
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2051
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2052
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
  2053
    ## 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
  2054
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2055
    ## 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
  2056
    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
  2057
    ## 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
  2058
    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
  2059
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2060
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2061
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2062
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2063
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2064
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
  2065
    ## 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
  2066
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2067
    ## 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
  2068
    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
  2069
    ## 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
  2070
    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
  2071
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2072
                   [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
  2073
                   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
  2074
    ## 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
  2075
    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
  2076
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2077
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2078
                   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
  2079
    ## 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
  2080
    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
  2081
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2082
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2083
                   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
  2084
    ## 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
  2085
    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
  2086
                   'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2087
                   [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
  2088
                   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
  2089
    ## 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
  2090
    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
  2091
                   'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2092
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2093
                   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
  2094
    ## 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
  2095
    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
  2096
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2097
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2098
                   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
  2099
    ## 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
  2100
    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
  2101
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2102
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2103
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2104
    ## 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
  2105
    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
  2106
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2107
                   [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
  2108
                   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
  2109
    ## 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
  2110
    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
  2111
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2112
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2113
                   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
  2114
    ## 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
  2115
    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
  2116
                   'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2117
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2118
                   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
  2119
    ## 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
  2120
    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
  2121
                   'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2122
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2123
                   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
  2124
    ## 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
  2125
    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
  2126
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2127
                   [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
  2128
                   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
  2129
    ## 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
  2130
    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
  2131
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2132
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2133
                   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
  2134
    ## 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
  2135
    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
  2136
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2137
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2138
                   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
  2139
    ## 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
  2140
    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
  2141
                   'ns3::EventId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2142
                   [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
  2143
                   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
  2144
    ## 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
  2145
    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
  2146
                   'ns3::EventId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2147
                   [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
  2148
                   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
  2149
    ## 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
  2150
    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
  2151
                   'ns3::EventId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2152
                   [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
  2153
                   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
  2154
    ## 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
  2155
    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
  2156
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2157
                   [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
  2158
                   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
  2159
    ## 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
  2160
    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
  2161
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2162
                   [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
  2163
                   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
  2164
    ## 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
  2165
    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
  2166
                   'void', 
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
                   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
  2169
    ## 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
  2170
    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
  2171
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2172
                   [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
  2173
                   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
  2174
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2175
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2176
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
  2177
    ## 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
  2178
    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
  2179
    ## 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
  2180
    cls.add_constructor([])
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::EventEnd() [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('EventEnd', 
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'): 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
  2186
    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
  2187
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2188
                   [])
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::GetCurrentRealtime() [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('GetCurrentRealtime', 
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'): 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
  2194
    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
  2195
                   'int64_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2196
                   [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
  2197
    ## 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
  2198
    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
  2199
                   'uint64_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2200
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2201
    ## 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
  2202
    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
  2203
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2204
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2205
                   is_static=True)
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'): 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
  2207
    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
  2208
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2209
                   [])
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::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
  2211
    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
  2212
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2213
                   [param('bool', 'arg0')])
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'): 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
  2215
    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
  2216
                   'void', 
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', 'ts')])
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'): 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
  2219
    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
  2220
                   'void', 
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
    ## 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
  2223
    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
  2224
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2225
                   [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
  2226
    ## 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
  2227
    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
  2228
                   'uint64_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2229
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2230
                   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
  2231
    ## 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
  2232
    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
  2233
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2234
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2235
                   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
  2236
    ## 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
  2237
    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
  2238
                   'uint64_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2239
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2240
                   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
  2241
    ## 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
  2242
    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
  2243
                   'int64_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2244
                   [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
  2245
                   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
  2246
    ## 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
  2247
    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
  2248
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2249
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2250
                   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
  2251
    ## 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
  2252
    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
  2253
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2254
                   [param('bool', 'arg0')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2255
                   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
  2256
    ## 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
  2257
    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
  2258
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2259
                   [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
  2260
                   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
  2261
    ## 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
  2262
    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
  2263
                   'void', 
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
                   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
  2266
    ## 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
  2267
    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
  2268
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2269
                   [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
  2270
                   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
  2271
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2272
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2273
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
  2274
    ## 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
  2275
    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
  2276
    ## 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
  2277
    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
  2278
    ## 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
  2279
    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
  2280
                   'bool', 
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::Join() [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('Join', 
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
    ## 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
  2287
    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
  2288
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2289
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2290
    ## 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
  2291
    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
  2292
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2293
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2294
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2295
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2296
def register_Ns3Time_methods(root_module, cls):
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2297
    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
  2298
    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
  2299
    cls.add_binary_comparison_operator('<')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2300
    cls.add_binary_comparison_operator('>')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2301
    cls.add_binary_comparison_operator('!=')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2302
    cls.add_inplace_numeric_operator('+=', param('ns3::Time const &', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2303
    cls.add_inplace_numeric_operator('-=', param('ns3::Time const &', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2304
    cls.add_output_stream_operator()
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2305
    cls.add_binary_comparison_operator('<=')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2306
    cls.add_binary_comparison_operator('==')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2307
    cls.add_binary_comparison_operator('>=')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2308
    ## nstime.h (module 'core'): ns3::Time::Time() [constructor]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2309
    cls.add_constructor([])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2310
    ## 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
  2311
    cls.add_constructor([param('ns3::Time const &', 'o')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2312
    ## nstime.h (module 'core'): ns3::Time::Time(double v) [constructor]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2313
    cls.add_constructor([param('double', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2314
    ## nstime.h (module 'core'): ns3::Time::Time(int v) [constructor]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2315
    cls.add_constructor([param('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 int v) [constructor]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2317
    cls.add_constructor([param('long int', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2318
    ## 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
  2319
    cls.add_constructor([param('long long int', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2320
    ## 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
  2321
    cls.add_constructor([param('unsigned int', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2322
    ## 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
  2323
    cls.add_constructor([param('long unsigned int', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2324
    ## 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
  2325
    cls.add_constructor([param('long long unsigned int', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2326
    ## 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
  2327
    cls.add_constructor([param('std::string const &', 's')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2328
    ## 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
  2329
    cls.add_constructor([param('ns3::int64x64_t const &', 'value')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2330
    ## 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
  2331
    cls.add_method('Compare', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2332
                   'int', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2333
                   [param('ns3::Time const &', 'o')], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2334
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2335
    ## 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
  2336
    cls.add_method('From', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2337
                   'ns3::Time', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2338
                   [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
  2339
                   is_static=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2340
    ## 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
  2341
    cls.add_method('From', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2342
                   'ns3::Time', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2343
                   [param('ns3::int64x64_t const &', 'value')], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2344
                   is_static=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2345
    ## 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
  2346
    cls.add_method('FromDouble', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2347
                   'ns3::Time', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2348
                   [param('double', 'value'), param('ns3::Time::Unit', 'timeUnit')], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2349
                   is_static=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2350
    ## 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
  2351
    cls.add_method('FromInteger', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2352
                   'ns3::Time', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2353
                   [param('uint64_t', 'value'), param('ns3::Time::Unit', 'timeUnit')], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2354
                   is_static=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2355
    ## 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
  2356
    cls.add_method('GetDouble', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2357
                   'double', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2358
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2359
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2360
    ## 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
  2361
    cls.add_method('GetFemtoSeconds', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2362
                   'int64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2363
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2364
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2365
    ## 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
  2366
    cls.add_method('GetInteger', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2367
                   'int64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2368
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2369
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2370
    ## 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
  2371
    cls.add_method('GetMicroSeconds', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2372
                   'int64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2373
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2374
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2375
    ## 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
  2376
    cls.add_method('GetMilliSeconds', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2377
                   'int64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2378
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2379
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2380
    ## 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
  2381
    cls.add_method('GetNanoSeconds', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2382
                   'int64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2383
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2384
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2385
    ## 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
  2386
    cls.add_method('GetPicoSeconds', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2387
                   'int64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2388
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2389
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2390
    ## 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
  2391
    cls.add_method('GetResolution', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2392
                   'ns3::Time::Unit', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2393
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2394
                   is_static=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2395
    ## 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
  2396
    cls.add_method('GetSeconds', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2397
                   'double', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2398
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2399
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2400
    ## 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
  2401
    cls.add_method('GetTimeStep', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2402
                   'int64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2403
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2404
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2405
    ## 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
  2406
    cls.add_method('IsNegative', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2407
                   'bool', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2408
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2409
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2410
    ## 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
  2411
    cls.add_method('IsPositive', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2412
                   'bool', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2413
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2414
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2415
    ## 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
  2416
    cls.add_method('IsStrictlyNegative', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2417
                   'bool', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2418
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2419
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2420
    ## 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
  2421
    cls.add_method('IsStrictlyPositive', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2422
                   'bool', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2423
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2424
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2425
    ## 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
  2426
    cls.add_method('IsZero', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2427
                   'bool', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2428
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2429
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2430
    ## 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
  2431
    cls.add_method('SetResolution', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2432
                   'void', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2433
                   [param('ns3::Time::Unit', 'resolution')], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2434
                   is_static=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2435
    ## 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
  2436
    cls.add_method('To', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2437
                   'ns3::int64x64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2438
                   [param('ns3::Time::Unit', 'timeUnit')], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2439
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2440
    ## 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
  2441
    cls.add_method('ToDouble', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2442
                   'double', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2443
                   [param('ns3::Time::Unit', 'timeUnit')], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2444
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2445
    ## 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
  2446
    cls.add_method('ToInteger', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2447
                   'int64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2448
                   [param('ns3::Time::Unit', 'timeUnit')], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2449
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2450
    return
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  2451
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2452
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
  2453
    ## 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
  2454
    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
  2455
    ## 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
  2456
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2457
    ## 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
  2458
    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
  2459
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2460
                   [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
  2461
                   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
  2462
    ## 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
  2463
    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
  2464
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2465
                   [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
  2466
                   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
  2467
    ## 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
  2468
    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
  2469
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2470
                   [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
  2471
                   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
  2472
    ## 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
  2473
    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
  2474
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2475
                   [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
  2476
                   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
  2477
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2478
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2479
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
  2480
    ## 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
  2481
    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
  2482
    ## 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
  2483
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2484
    ## 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
  2485
    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
  2486
    ## 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
  2487
    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
  2488
    ## 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
  2489
    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
  2490
    ## 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
  2491
    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
  2492
                   'uint64_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2493
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2494
                   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
  2495
    ## 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
  2496
    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
  2497
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2498
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2499
                   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
  2500
    ## 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
  2501
    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
  2502
                   'uint64_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2503
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2504
                   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
  2505
    ## 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
  2506
    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
  2507
                   'int64_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2508
                   [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
  2509
                   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
  2510
    ## 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
  2511
    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
  2512
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2513
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2514
                   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
  2515
    ## 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
  2516
    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
  2517
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2518
                   [param('bool', 'cond')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2519
                   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
  2520
    ## 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
  2521
    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
  2522
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2523
                   [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
  2524
                   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
  2525
    ## 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
  2526
    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
  2527
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2528
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2529
                   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
  2530
    ## 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
  2531
    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
  2532
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2533
                   [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
  2534
                   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
  2535
    ## 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
  2536
    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
  2537
                   'uint64_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2538
                   [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
  2539
                   visibility='protected')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2540
    ## 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
  2541
    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
  2542
                   'uint64_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2543
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2544
                   visibility='protected')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2545
    ## 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
  2546
    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
  2547
                   'uint64_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2548
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2549
                   visibility='protected')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2550
    ## 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
  2551
    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
  2552
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2553
                   [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
  2554
                   visibility='protected')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2555
    ## 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
  2556
    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
  2557
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2558
                   [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
  2559
                   visibility='protected')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2560
    ## 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
  2561
    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
  2562
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2563
                   [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
  2564
                   visibility='protected')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2565
    ## 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
  2566
    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
  2567
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2568
                   [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
  2569
                   visibility='protected')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2570
    ## 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
  2571
    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
  2572
                   'uint64_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2573
                   [param('timeval *', 'tv')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2574
                   visibility='protected')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2575
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2576
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2577
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
  2578
    ## 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
  2579
    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
  2580
    ## 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
  2581
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2582
    ## 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
  2583
    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
  2584
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2585
                   [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
  2586
                   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
  2587
    ## 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
  2588
    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
  2589
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2590
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2591
                   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
  2592
    ## 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
  2593
    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
  2594
                   'bool', 
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
                   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
  2597
    ## 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
  2598
    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
  2599
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2600
                   [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
  2601
                   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
  2602
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2603
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2604
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
  2605
    ## 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
  2606
    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
  2607
    ## 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
  2608
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2609
    ## 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
  2610
    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
  2611
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2612
                   [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
  2613
                   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
  2614
    ## 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
  2615
    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
  2616
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2617
                   [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
  2618
                   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
  2619
    ## 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
  2620
    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
  2621
                   '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
  2622
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2623
                   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
  2624
    ## 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
  2625
    cls.add_method('CreateValidValue', 
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  2626
                   'ns3::Ptr< ns3::AttributeValue >', 
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  2627
                   [param('ns3::AttributeValue const &', 'value')], 
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  2628
                   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
  2629
    ## 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
  2630
    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
  2631
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2632
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2633
                   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
  2634
    ## 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
  2635
    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
  2636
                   'std::string', 
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
                   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
  2639
    ## 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
  2640
    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
  2641
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2642
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2643
                   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
  2644
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2645
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2646
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
  2647
    ## 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
  2648
    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
  2649
    ## 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
  2650
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2651
    ## 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
  2652
    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
  2653
                   '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
  2654
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2655
                   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
  2656
    ## 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
  2657
    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
  2658
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2659
                   [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
  2660
                   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
  2661
    ## 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
  2662
    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
  2663
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2664
                   [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
  2665
                   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
  2666
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2667
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2668
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
  2669
    ## 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
  2670
    cls.add_constructor([])
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::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
  2672
    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
  2673
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2674
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2675
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
  2676
    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
  2677
    ## 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
  2678
    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
  2679
    ## 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
  2680
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2681
    ## 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
  2682
    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
  2683
    ## 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
  2684
    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
  2685
                   '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
  2686
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2687
                   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
  2688
    ## 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
  2689
    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
  2690
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2691
                   [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
  2692
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2693
    ## 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
  2694
    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
  2695
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2696
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2697
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2698
    ## 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
  2699
    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
  2700
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2701
                   [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
  2702
                   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
  2703
    ## 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
  2704
    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
  2705
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2706
                   [param('bool', 'value')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2707
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2708
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2709
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
  2710
    ## 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
  2711
    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
  2712
    ## 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
  2713
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2714
    ## 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
  2715
    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
  2716
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2717
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2718
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2719
    ## 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
  2720
    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
  2721
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2722
                   [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
  2723
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2724
    ## 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
  2725
    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
  2726
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2727
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2728
                   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
  2729
    ## 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
  2730
    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
  2731
                   'ns3::Scheduler::Event', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2732
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2733
                   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
  2734
    ## 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
  2735
    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
  2736
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2737
                   [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
  2738
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2739
    ## 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
  2740
    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
  2741
                   'ns3::Scheduler::Event', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2742
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2743
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2744
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2745
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2746
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
  2747
    ## 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
  2748
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2749
    ## 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
  2750
    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
  2751
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2752
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2753
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
  2754
    ## 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
  2755
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2756
    ## 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
  2757
    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
  2758
    ## 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
  2759
    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
  2760
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2761
                   [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
  2762
                   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
  2763
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2764
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2765
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
  2766
    ## 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
  2767
    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
  2768
    ## 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
  2769
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2770
    ## 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
  2771
    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
  2772
    ## 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
  2773
    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
  2774
                   '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
  2775
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2776
                   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
  2777
    ## 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
  2778
    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
  2779
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2780
                   [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
  2781
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2782
    ## 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
  2783
    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
  2784
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2785
                   [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
  2786
                   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
  2787
    ## 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
  2788
    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
  2789
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2790
                   [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
  2791
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2792
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2793
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
  2794
    ## 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
  2795
    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
  2796
    ## 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
  2797
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2798
    ## 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
  2799
    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
  2800
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2801
                   [param('ns3::EventId const &', 'ev')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2802
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2803
    ## 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
  2804
    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
  2805
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2806
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2807
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2808
    ## 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
  2809
    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
  2810
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2811
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2812
                   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
  2813
    ## 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
  2814
    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
  2815
                   'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2816
                   [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
  2817
                   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
  2818
    ## 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
  2819
    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
  2820
                   'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2821
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2822
                   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
  2823
    ## 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
  2824
    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
  2825
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2826
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2827
                   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
  2828
    ## 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
  2829
    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
  2830
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2831
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2832
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2833
    ## 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
  2834
    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
  2835
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2836
                   [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
  2837
                   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
  2838
    ## 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
  2839
    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
  2840
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2841
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2842
                   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
  2843
    ## 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
  2844
    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
  2845
                   'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2846
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2847
                   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
  2848
    ## 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
  2849
    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
  2850
                   'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2851
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2852
                   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
  2853
    ## 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
  2854
    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
  2855
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2856
                   [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
  2857
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2858
    ## 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
  2859
    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
  2860
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2861
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2862
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2863
    ## 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
  2864
    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
  2865
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2866
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2867
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2868
    ## 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
  2869
    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
  2870
                   'ns3::EventId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2871
                   [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
  2872
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2873
    ## 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
  2874
    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
  2875
                   'ns3::EventId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2876
                   [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
  2877
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2878
    ## 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
  2879
    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
  2880
                   'ns3::EventId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2881
                   [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
  2882
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2883
    ## 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
  2884
    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
  2885
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2886
                   [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
  2887
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2888
    ## 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
  2889
    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
  2890
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2891
                   [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
  2892
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2893
    ## 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
  2894
    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
  2895
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2896
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2897
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2898
    ## 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
  2899
    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
  2900
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2901
                   [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
  2902
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2903
    ## 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
  2904
    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
  2905
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2906
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2907
                   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
  2908
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2909
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2910
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
  2911
    ## 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
  2912
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2913
    ## 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
  2914
    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
  2915
    ## 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
  2916
    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
  2917
    ## 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
  2918
    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
  2919
                   '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
  2920
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2921
                   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
  2922
    ## 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
  2923
    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
  2924
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2925
                   [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
  2926
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2927
    ## 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
  2928
    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
  2929
                   'double', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2930
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2931
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2932
    ## 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
  2933
    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
  2934
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2935
                   [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
  2936
                   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
  2937
    ## 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
  2938
    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
  2939
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2940
                   [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
  2941
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2942
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2943
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
  2944
    ## 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
  2945
    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
  2946
    ## 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
  2947
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2948
    ## 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
  2949
    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
  2950
                   '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
  2951
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2952
                   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
  2953
    ## 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
  2954
    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
  2955
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2956
                   [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
  2957
                   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
  2958
    ## 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
  2959
    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
  2960
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2961
                   [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
  2962
                   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
  2963
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2964
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2965
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
  2966
    ## 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
  2967
    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
  2968
    ## 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
  2969
    cls.add_constructor([])
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'): 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
  2971
    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
  2972
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2973
                   [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
  2974
    ## 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
  2975
    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
  2976
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2977
                   [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
  2978
    ## 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
  2979
    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
  2980
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2981
                   [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
  2982
                   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
  2983
    ## 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
  2984
    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
  2985
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2986
                   [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
  2987
                   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
  2988
    ## 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
  2989
    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
  2990
                   '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
  2991
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2992
                   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
  2993
    ## 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
  2994
    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
  2995
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2996
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2997
                   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
  2998
    ## 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
  2999
    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
  3000
                   'std::string', 
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
                   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
  3003
    ## 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
  3004
    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
  3005
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3006
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3007
                   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
  3008
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3009
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3010
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
  3011
    ## 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
  3012
    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
  3013
    ## 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
  3014
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3015
    ## 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
  3016
    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
  3017
    ## 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
  3018
    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
  3019
                   '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
  3020
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3021
                   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
  3022
    ## 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
  3023
    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
  3024
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3025
                   [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
  3026
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3027
    ## 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
  3028
    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
  3029
                   'int', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3030
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3031
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3032
    ## 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
  3033
    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
  3034
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3035
                   [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
  3036
                   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
  3037
    ## 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
  3038
    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
  3039
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3040
                   [param('int', 'v')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3041
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3042
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3043
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
  3044
    ## 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
  3045
    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
  3046
    ## 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
  3047
    cls.add_constructor([])
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'): 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
  3049
    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
  3050
                   'void', 
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::Invoke() [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('Invoke', 
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
    ## 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
  3057
    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
  3058
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3059
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3060
    ## 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
  3061
    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
  3062
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3063
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3064
                   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
  3065
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3066
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3067
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
  3068
    ## 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
  3069
    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
  3070
    ## 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
  3071
    cls.add_constructor([])
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'): void ns3::FdReader::Start(int fd, ns3::Callback<void, unsigned char*, int, 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
  3073
    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
  3074
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3075
                   [param('int', 'fd'), param('ns3::Callback< void, unsigned char *, int, 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
  3076
    ## 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
  3077
    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
  3078
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3079
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3080
    ## 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
  3081
    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
  3082
                   'ns3::FdReader::Data', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3083
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3084
                   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
  3085
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3086
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3087
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
  3088
    ## 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
  3089
    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
  3090
    ## 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
  3091
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3092
    ## 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
  3093
    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
  3094
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3095
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3096
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3097
    ## 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
  3098
    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
  3099
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3100
                   [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
  3101
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3102
    ## 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
  3103
    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
  3104
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3105
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3106
                   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
  3107
    ## 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
  3108
    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
  3109
                   'ns3::Scheduler::Event', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3110
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3111
                   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
  3112
    ## 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
  3113
    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
  3114
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3115
                   [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
  3116
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3117
    ## 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
  3118
    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
  3119
                   'ns3::Scheduler::Event', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3120
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3121
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3122
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3123
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3124
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
  3125
    ## 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
  3126
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3127
    ## 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
  3128
    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
  3129
    ## 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
  3130
    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
  3131
    ## 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
  3132
    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
  3133
                   '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
  3134
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3135
                   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
  3136
    ## 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
  3137
    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
  3138
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3139
                   [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
  3140
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3141
    ## 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
  3142
    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
  3143
                   'int64_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3144
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3145
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3146
    ## 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
  3147
    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
  3148
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3149
                   [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
  3150
                   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
  3151
    ## 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
  3152
    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
  3153
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3154
                   [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
  3155
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3156
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3157
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
  3158
    ## 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
  3159
    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
  3160
    ## 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
  3161
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3162
    ## 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
  3163
    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
  3164
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3165
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3166
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3167
    ## 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
  3168
    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
  3169
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3170
                   [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
  3171
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3172
    ## 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
  3173
    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
  3174
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3175
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3176
                   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
  3177
    ## 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
  3178
    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
  3179
                   'ns3::Scheduler::Event', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3180
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3181
                   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
  3182
    ## 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
  3183
    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
  3184
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3185
                   [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
  3186
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3187
    ## 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
  3188
    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
  3189
                   'ns3::Scheduler::Event', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3190
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3191
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3192
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3193
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3194
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
  3195
    ## 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
  3196
    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
  3197
    ## 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
  3198
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3199
    ## 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
  3200
    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
  3201
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3202
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3203
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3204
    ## 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
  3205
    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
  3206
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3207
                   [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
  3208
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3209
    ## 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
  3210
    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
  3211
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3212
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3213
                   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
  3214
    ## 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
  3215
    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
  3216
                   'ns3::Scheduler::Event', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3217
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3218
                   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
  3219
    ## 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
  3220
    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
  3221
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3222
                   [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
  3223
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3224
    ## 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
  3225
    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
  3226
                   'ns3::Scheduler::Event', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3227
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3228
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3229
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3230
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3231
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
  3232
    ## 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
  3233
    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
  3234
    ## 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
  3235
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3236
    ## 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
  3237
    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
  3238
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3239
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3240
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3241
    ## 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
  3242
    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
  3243
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3244
                   [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
  3245
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3246
    ## 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
  3247
    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
  3248
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3249
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3250
                   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
  3251
    ## 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
  3252
    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
  3253
                   'ns3::Scheduler::Event', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3254
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3255
                   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
  3256
    ## 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
  3257
    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
  3258
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3259
                   [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
  3260
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3261
    ## 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
  3262
    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
  3263
                   'ns3::Scheduler::Event', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3264
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3265
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3266
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3267
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3268
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
  3269
    ## 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
  3270
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3271
    ## 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
  3272
    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
  3273
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3274
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3275
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
  3276
    ## 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
  3277
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3278
    ## 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
  3279
    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
  3280
    ## 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
  3281
    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
  3282
    ## 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
  3283
    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
  3284
                   '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
  3285
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3286
                   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
  3287
    ## 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
  3288
    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
  3289
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3290
                   [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
  3291
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3292
    ## 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
  3293
    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
  3294
                   'ns3::ObjectFactory', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3295
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3296
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3297
    ## 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
  3298
    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
  3299
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3300
                   [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
  3301
                   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
  3302
    ## 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
  3303
    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
  3304
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3305
                   [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
  3306
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3307
7420
ca9c09839724 Add a couple of includes and rescan core module's bindings
Mitch Watrous <watrous@u.washington.edu>
parents: 7407
diff changeset
  3308
def register_Ns3ObjectPtrContainerAccessor_methods(root_module, cls):
ca9c09839724 Add a couple of includes and rescan core module's bindings
Mitch Watrous <watrous@u.washington.edu>
parents: 7407
diff changeset
  3309
    ## object-ptr-container.h (module 'core'): ns3::ObjectPtrContainerAccessor::ObjectPtrContainerAccessor() [constructor]
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3310
    cls.add_constructor([])
7420
ca9c09839724 Add a couple of includes and rescan core module's bindings
Mitch Watrous <watrous@u.washington.edu>
parents: 7407
diff changeset
  3311
    ## object-ptr-container.h (module 'core'): ns3::ObjectPtrContainerAccessor::ObjectPtrContainerAccessor(ns3::ObjectPtrContainerAccessor const & arg0) [copy constructor]
ca9c09839724 Add a couple of includes and rescan core module's bindings
Mitch Watrous <watrous@u.washington.edu>
parents: 7407
diff changeset
  3312
    cls.add_constructor([param('ns3::ObjectPtrContainerAccessor const &', 'arg0')])
ca9c09839724 Add a couple of includes and rescan core module's bindings
Mitch Watrous <watrous@u.washington.edu>
parents: 7407
diff changeset
  3313
    ## object-ptr-container.h (module 'core'): bool ns3::ObjectPtrContainerAccessor::Get(ns3::ObjectBase const * object, ns3::AttributeValue & value) const [member function]
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3314
    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
  3315
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3316
                   [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
  3317
                   is_const=True, is_virtual=True)
7420
ca9c09839724 Add a couple of includes and rescan core module's bindings
Mitch Watrous <watrous@u.washington.edu>
parents: 7407
diff changeset
  3318
    ## object-ptr-container.h (module 'core'): bool ns3::ObjectPtrContainerAccessor::HasGetter() const [member function]
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3319
    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
  3320
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3321
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3322
                   is_const=True, is_virtual=True)
7420
ca9c09839724 Add a couple of includes and rescan core module's bindings
Mitch Watrous <watrous@u.washington.edu>
parents: 7407
diff changeset
  3323
    ## object-ptr-container.h (module 'core'): bool ns3::ObjectPtrContainerAccessor::HasSetter() const [member function]
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3324
    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
  3325
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3326
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3327
                   is_const=True, is_virtual=True)
7420
ca9c09839724 Add a couple of includes and rescan core module's bindings
Mitch Watrous <watrous@u.washington.edu>
parents: 7407
diff changeset
  3328
    ## object-ptr-container.h (module 'core'): bool ns3::ObjectPtrContainerAccessor::Set(ns3::ObjectBase * object, ns3::AttributeValue const & value) const [member function]
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3329
    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
  3330
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3331
                   [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
  3332
                   is_const=True, is_virtual=True)
7420
ca9c09839724 Add a couple of includes and rescan core module's bindings
Mitch Watrous <watrous@u.washington.edu>
parents: 7407
diff changeset
  3333
    ## object-ptr-container.h (module 'core'): ns3::Ptr<ns3::Object> ns3::ObjectPtrContainerAccessor::DoGet(ns3::ObjectBase const * object, uint32_t i) const [member function]
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3334
    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
  3335
                   '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
  3336
                   [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
  3337
                   is_pure_virtual=True, is_const=True, visibility='private', is_virtual=True)
7420
ca9c09839724 Add a couple of includes and rescan core module's bindings
Mitch Watrous <watrous@u.washington.edu>
parents: 7407
diff changeset
  3338
    ## object-ptr-container.h (module 'core'): bool ns3::ObjectPtrContainerAccessor::DoGetN(ns3::ObjectBase const * object, uint32_t * n) const [member function]
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3339
    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
  3340
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3341
                   [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
  3342
                   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
  3343
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3344
7420
ca9c09839724 Add a couple of includes and rescan core module's bindings
Mitch Watrous <watrous@u.washington.edu>
parents: 7407
diff changeset
  3345
def register_Ns3ObjectPtrContainerChecker_methods(root_module, cls):
ca9c09839724 Add a couple of includes and rescan core module's bindings
Mitch Watrous <watrous@u.washington.edu>
parents: 7407
diff changeset
  3346
    ## object-ptr-container.h (module 'core'): ns3::ObjectPtrContainerChecker::ObjectPtrContainerChecker() [constructor]
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3347
    cls.add_constructor([])
7420
ca9c09839724 Add a couple of includes and rescan core module's bindings
Mitch Watrous <watrous@u.washington.edu>
parents: 7407
diff changeset
  3348
    ## object-ptr-container.h (module 'core'): ns3::ObjectPtrContainerChecker::ObjectPtrContainerChecker(ns3::ObjectPtrContainerChecker const & arg0) [copy constructor]
ca9c09839724 Add a couple of includes and rescan core module's bindings
Mitch Watrous <watrous@u.washington.edu>
parents: 7407
diff changeset
  3349
    cls.add_constructor([param('ns3::ObjectPtrContainerChecker const &', 'arg0')])
ca9c09839724 Add a couple of includes and rescan core module's bindings
Mitch Watrous <watrous@u.washington.edu>
parents: 7407
diff changeset
  3350
    ## object-ptr-container.h (module 'core'): ns3::TypeId ns3::ObjectPtrContainerChecker::GetItemTypeId() const [member function]
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3351
    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
  3352
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3353
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3354
                   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
  3355
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3356
7420
ca9c09839724 Add a couple of includes and rescan core module's bindings
Mitch Watrous <watrous@u.washington.edu>
parents: 7407
diff changeset
  3357
def register_Ns3ObjectPtrContainerValue_methods(root_module, cls):
ca9c09839724 Add a couple of includes and rescan core module's bindings
Mitch Watrous <watrous@u.washington.edu>
parents: 7407
diff changeset
  3358
    ## object-ptr-container.h (module 'core'): ns3::ObjectPtrContainerValue::ObjectPtrContainerValue(ns3::ObjectPtrContainerValue const & arg0) [copy constructor]
ca9c09839724 Add a couple of includes and rescan core module's bindings
Mitch Watrous <watrous@u.washington.edu>
parents: 7407
diff changeset
  3359
    cls.add_constructor([param('ns3::ObjectPtrContainerValue const &', 'arg0')])
ca9c09839724 Add a couple of includes and rescan core module's bindings
Mitch Watrous <watrous@u.washington.edu>
parents: 7407
diff changeset
  3360
    ## object-ptr-container.h (module 'core'): ns3::ObjectPtrContainerValue::ObjectPtrContainerValue() [constructor]
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3361
    cls.add_constructor([])
7420
ca9c09839724 Add a couple of includes and rescan core module's bindings
Mitch Watrous <watrous@u.washington.edu>
parents: 7407
diff changeset
  3362
    ## object-ptr-container.h (module 'core'): __gnu_cxx::__normal_iterator<const ns3::Ptr<ns3::Object>*,std::vector<ns3::Ptr<ns3::Object>, std::allocator<ns3::Ptr<ns3::Object> > > > ns3::ObjectPtrContainerValue::Begin() const [member function]
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3363
    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
  3364
                   '__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
  3365
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3366
                   is_const=True)
7420
ca9c09839724 Add a couple of includes and rescan core module's bindings
Mitch Watrous <watrous@u.washington.edu>
parents: 7407
diff changeset
  3367
    ## object-ptr-container.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::ObjectPtrContainerValue::Copy() const [member function]
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3368
    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
  3369
                   '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
  3370
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3371
                   is_const=True, is_virtual=True)
7420
ca9c09839724 Add a couple of includes and rescan core module's bindings
Mitch Watrous <watrous@u.washington.edu>
parents: 7407
diff changeset
  3372
    ## object-ptr-container.h (module 'core'): bool ns3::ObjectPtrContainerValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3373
    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
  3374
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3375
                   [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
  3376
                   is_virtual=True)
7420
ca9c09839724 Add a couple of includes and rescan core module's bindings
Mitch Watrous <watrous@u.washington.edu>
parents: 7407
diff changeset
  3377
    ## object-ptr-container.h (module 'core'): __gnu_cxx::__normal_iterator<const ns3::Ptr<ns3::Object>*,std::vector<ns3::Ptr<ns3::Object>, std::allocator<ns3::Ptr<ns3::Object> > > > ns3::ObjectPtrContainerValue::End() const [member function]
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3378
    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
  3379
                   '__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
  3380
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3381
                   is_const=True)
7420
ca9c09839724 Add a couple of includes and rescan core module's bindings
Mitch Watrous <watrous@u.washington.edu>
parents: 7407
diff changeset
  3382
    ## object-ptr-container.h (module 'core'): ns3::Ptr<ns3::Object> ns3::ObjectPtrContainerValue::Get(uint32_t i) const [member function]
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3383
    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
  3384
                   '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
  3385
                   [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
  3386
                   is_const=True)
7420
ca9c09839724 Add a couple of includes and rescan core module's bindings
Mitch Watrous <watrous@u.washington.edu>
parents: 7407
diff changeset
  3387
    ## object-ptr-container.h (module 'core'): uint32_t ns3::ObjectPtrContainerValue::GetN() const [member function]
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3388
    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
  3389
                   'uint32_t', 
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
                   is_const=True)
7420
ca9c09839724 Add a couple of includes and rescan core module's bindings
Mitch Watrous <watrous@u.washington.edu>
parents: 7407
diff changeset
  3392
    ## object-ptr-container.h (module 'core'): std::string ns3::ObjectPtrContainerValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3393
    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
  3394
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3395
                   [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
  3396
                   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
  3397
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3398
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3399
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
  3400
    ## 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
  3401
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3402
    ## 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
  3403
    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
  3404
    ## 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
  3405
    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
  3406
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3407
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3408
                   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
  3409
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3410
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3411
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
  3412
    ## 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
  3413
    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
  3414
    ## 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
  3415
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3416
    ## 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
  3417
    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
  3418
    ## 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
  3419
    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
  3420
                   '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
  3421
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3422
                   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
  3423
    ## 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
  3424
    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
  3425
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3426
                   [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
  3427
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3428
    ## 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
  3429
    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
  3430
                   '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
  3431
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3432
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3433
    ## 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
  3434
    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
  3435
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3436
                   [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
  3437
                   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
  3438
    ## 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
  3439
    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
  3440
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3441
                   [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
  3442
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3443
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3444
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
  3445
    ## 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
  3446
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3447
    ## 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
  3448
    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
  3449
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3450
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3451
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
  3452
    ## 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
  3453
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3454
    ## 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
  3455
    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
  3456
    ## 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
  3457
    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
  3458
    ## 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
  3459
    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
  3460
                   '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
  3461
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3462
                   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
  3463
    ## 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
  3464
    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
  3465
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3466
                   [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
  3467
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3468
    ## 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
  3469
    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
  3470
                   'ns3::RandomVariable', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3471
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3472
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3473
    ## 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
  3474
    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
  3475
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3476
                   [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
  3477
                   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
  3478
    ## 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
  3479
    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
  3480
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3481
                   [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
  3482
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3483
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3484
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
  3485
    ## 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
  3486
    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
  3487
    ## 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
  3488
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3489
    ## 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
  3490
    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
  3491
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3492
                   [param('ns3::EventId const &', 'ev')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3493
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3494
    ## 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
  3495
    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
  3496
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3497
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3498
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3499
    ## 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
  3500
    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
  3501
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3502
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3503
                   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
  3504
    ## 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
  3505
    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
  3506
                   'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3507
                   [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
  3508
                   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
  3509
    ## 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
  3510
    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
  3511
                   'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3512
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3513
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3514
    ## 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
  3515
    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
  3516
                   'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3517
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3518
                   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
  3519
    ## 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
  3520
    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
  3521
                   'ns3::RealtimeSimulatorImpl::SynchronizationMode', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3522
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3523
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3524
    ## 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
  3525
    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
  3526
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3527
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3528
                   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
  3529
    ## 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
  3530
    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
  3531
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3532
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3533
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3534
    ## 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
  3535
    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
  3536
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3537
                   [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
  3538
                   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
  3539
    ## 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
  3540
    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
  3541
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3542
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3543
                   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
  3544
    ## 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
  3545
    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
  3546
                   'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3547
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3548
                   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
  3549
    ## 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
  3550
    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
  3551
                   'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3552
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3553
                   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
  3554
    ## 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
  3555
    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
  3556
                   'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3557
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3558
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3559
    ## 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
  3560
    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
  3561
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3562
                   [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
  3563
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3564
    ## 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
  3565
    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
  3566
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3567
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3568
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3569
    ## 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
  3570
    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
  3571
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3572
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3573
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3574
    ## 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
  3575
    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
  3576
                   'ns3::EventId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3577
                   [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
  3578
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3579
    ## 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
  3580
    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
  3581
                   'ns3::EventId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3582
                   [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
  3583
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3584
    ## 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
  3585
    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
  3586
                   'ns3::EventId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3587
                   [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
  3588
                   is_virtual=True)
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::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
  3590
    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
  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('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
  3593
    ## 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
  3594
    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
  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('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::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
  3598
    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
  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::EventImpl *', 'event')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3601
    ## 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
  3602
    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
  3603
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3604
                   [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
  3605
    ## 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
  3606
    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
  3607
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3608
                   [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
  3609
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3610
    ## 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
  3611
    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
  3612
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3613
                   [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
  3614
    ## 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
  3615
    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
  3616
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3617
                   [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
  3618
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3619
    ## 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
  3620
    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
  3621
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3622
                   [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
  3623
    ## 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
  3624
    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
  3625
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3626
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3627
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3628
    ## 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
  3629
    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
  3630
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3631
                   [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
  3632
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3633
    ## 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
  3634
    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
  3635
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3636
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3637
                   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
  3638
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3639
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3640
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
  3641
    ## 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
  3642
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3643
    ## 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
  3644
    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
  3645
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3646
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3647
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
  3648
    ## 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
  3649
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3650
    ## 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
  3651
    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
  3652
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3653
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3654
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
  3655
    ## 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
  3656
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3657
    ## 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
  3658
    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
  3659
    ## 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
  3660
    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
  3661
    ## 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
  3662
    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
  3663
                   '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
  3664
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3665
                   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
  3666
    ## 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
  3667
    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
  3668
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3669
                   [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
  3670
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3671
    ## 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
  3672
    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
  3673
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3674
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3675
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3676
    ## 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
  3677
    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
  3678
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3679
                   [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
  3680
                   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
  3681
    ## 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
  3682
    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
  3683
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3684
                   [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
  3685
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3686
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3687
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
  3688
    ## 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
  3689
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3690
    ## 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
  3691
    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
  3692
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3693
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3694
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
  3695
    ## 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
  3696
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3697
    ## 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
  3698
    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
  3699
    ## 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
  3700
    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
  3701
    ## 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
  3702
    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
  3703
                   '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
  3704
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3705
                   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
  3706
    ## 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
  3707
    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
  3708
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3709
                   [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
  3710
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3711
    ## 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
  3712
    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
  3713
                   'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3714
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3715
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3716
    ## 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
  3717
    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
  3718
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3719
                   [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
  3720
                   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
  3721
    ## 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
  3722
    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
  3723
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3724
                   [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
  3725
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3726
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3727
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
  3728
    ## 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
  3729
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3730
    ## 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
  3731
    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
  3732
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3733
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3734
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
  3735
    ## 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
  3736
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3737
    ## 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
  3738
    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
  3739
    ## 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
  3740
    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
  3741
    ## 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
  3742
    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
  3743
                   '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
  3744
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3745
                   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
  3746
    ## 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
  3747
    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
  3748
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3749
                   [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
  3750
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3751
    ## 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
  3752
    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
  3753
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3754
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3755
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3756
    ## 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
  3757
    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
  3758
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3759
                   [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
  3760
                   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
  3761
    ## 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
  3762
    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
  3763
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3764
                   [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
  3765
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3766
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3767
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
  3768
    ## 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
  3769
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3770
    ## 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
  3771
    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
  3772
    ## 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
  3773
    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
  3774
    ## 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
  3775
    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
  3776
                   '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
  3777
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3778
                   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
  3779
    ## 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
  3780
    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
  3781
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3782
                   [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
  3783
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3784
    ## 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
  3785
    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
  3786
                   'uint64_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3787
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3788
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3789
    ## 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
  3790
    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
  3791
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3792
                   [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
  3793
                   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
  3794
    ## 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
  3795
    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
  3796
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3797
                   [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
  3798
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3799
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3800
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
  3801
    ## 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
  3802
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3803
    ## 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
  3804
    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
  3805
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3806
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3807
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
  3808
    ## 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
  3809
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3810
    ## 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
  3811
    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
  3812
    ## 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
  3813
    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
  3814
    ## 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
  3815
    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
  3816
                   '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
  3817
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3818
                   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
  3819
    ## 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
  3820
    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
  3821
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3822
                   [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
  3823
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3824
    ## 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
  3825
    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
  3826
                   'ns3::Vector2D', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3827
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3828
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3829
    ## 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
  3830
    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
  3831
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3832
                   [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
  3833
                   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
  3834
    ## 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
  3835
    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
  3836
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3837
                   [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
  3838
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3839
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3840
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
  3841
    ## 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
  3842
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3843
    ## 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
  3844
    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
  3845
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3846
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3847
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
  3848
    ## 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
  3849
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3850
    ## 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
  3851
    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
  3852
    ## 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
  3853
    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
  3854
    ## 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
  3855
    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
  3856
                   '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
  3857
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3858
                   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
  3859
    ## 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
  3860
    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
  3861
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3862
                   [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
  3863
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3864
    ## 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
  3865
    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
  3866
                   'ns3::Vector3D', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3867
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3868
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3869
    ## 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
  3870
    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
  3871
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3872
                   [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
  3873
                   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
  3874
    ## 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
  3875
    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
  3876
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3877
                   [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
  3878
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3879
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3880
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
  3881
    ## 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
  3882
    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
  3883
    ## 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
  3884
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3885
    ## 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
  3886
    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
  3887
    ## 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
  3888
    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
  3889
                   '__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
  3890
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3891
                   is_const=True)
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::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
  3893
    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
  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::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
  3897
    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
  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'): 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
  3901
    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
  3902
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3903
                   [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
  3904
    ## 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
  3905
    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
  3906
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3907
                   [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
  3908
    ## 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
  3909
    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
  3910
                   '__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
  3911
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3912
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3913
    ## 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
  3914
    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
  3915
                   '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
  3916
                   [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
  3917
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3918
    ## 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
  3919
    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
  3920
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3921
                   [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
  3922
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3923
    ## 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
  3924
    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
  3925
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3926
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3927
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3928
    ## 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
  3929
    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
  3930
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3931
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3932
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3933
    ## 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
  3934
    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
  3935
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3936
                   [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
  3937
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3938
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3939
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
  3940
    module = root_module
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3941
    ## 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
  3942
    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
  3943
                        'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3944
                        [param('ns3::Time const &', 'time')])
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3945
    ## 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
  3946
    module.add_function('Abs', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3947
                        'ns3::int64x64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3948
                        [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
  3949
    ## 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
  3950
    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
  3951
                        'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3952
                        [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3953
    ## 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
  3954
    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
  3955
                        'double', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3956
                        [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
  3957
    ## 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
  3958
    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
  3959
                        'double', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3960
                        [param('ns3::Vector3D const &', 'a'), param('ns3::Vector3D const &', 'b')])
7420
ca9c09839724 Add a couple of includes and rescan core module's bindings
Mitch Watrous <watrous@u.washington.edu>
parents: 7407
diff changeset
  3961
    ## ptr.h (module 'core'): extern ns3::Ptr<ns3::ObjectPtrContainerValue> ns3::Create() [free function]
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3962
    module.add_function('Create', 
7420
ca9c09839724 Add a couple of includes and rescan core module's bindings
Mitch Watrous <watrous@u.washington.edu>
parents: 7407
diff changeset
  3963
                        'ns3::Ptr< ns3::ObjectPtrContainerValue >', 
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3964
                        [], 
7420
ca9c09839724 Add a couple of includes and rescan core module's bindings
Mitch Watrous <watrous@u.washington.edu>
parents: 7407
diff changeset
  3965
                        template_parameters=['ns3::ObjectPtrContainerValue'])
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3966
    ## 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
  3967
    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
  3968
                        '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
  3969
                        [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3970
                        template_parameters=['ns3::PointerValue'])
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3971
    ## 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
  3972
    module.add_function('FemtoSeconds', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3973
                        'ns3::Time', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3974
                        [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
  3975
    ## 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
  3976
    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
  3977
                        'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3978
                        [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
  3979
    ## 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
  3980
    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
  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::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
  3984
    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
  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')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3987
    ## 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
  3988
    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
  3989
                        'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3990
                        [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
  3991
    ## 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
  3992
    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
  3993
                        'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3994
                        [param('ns3::LogLevel', 'level')])
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3995
    ## log.h (module 'core'): extern void ns3::LogComponentPrintList() [free function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3996
    module.add_function('LogComponentPrintList', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3997
                        'void', 
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 ns3::LogNodePrinter ns3::LogGetNodePrinter() [free function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4000
    module.add_function('LogGetNodePrinter', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4001
                        'ns3::LogNodePrinter', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4002
                        [])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4003
    ## 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
  4004
    module.add_function('LogGetTimePrinter', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4005
                        'ns3::LogTimePrinter', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4006
                        [])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4007
    ## 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
  4008
    module.add_function('LogSetNodePrinter', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4009
                        'void', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4010
                        [param('ns3::LogNodePrinter', 'arg0')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4011
    ## 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
  4012
    module.add_function('LogSetTimePrinter', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4013
                        'void', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4014
                        [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
  4015
    ## 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
  4016
    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
  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
                        [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4019
    ## 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
  4020
    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
  4021
                        '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
  4022
                        [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4023
    ## 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
  4024
    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
  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
                        [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
  4027
    ## 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
  4028
    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
  4029
                        'ns3::EventImpl *', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4030
                        [param('void ( * ) (  ) *', 'f')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4031
    ## 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
  4032
    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
  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
    ## 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
  4036
    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
  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
    ## 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
  4040
    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
  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
    ## 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
  4044
    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
  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
    ## 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
  4048
    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
  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::MakeVector2DChecker() [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('MakeVector2DChecker', 
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
    ## 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
  4056
    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
  4057
                        '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
  4058
                        [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4059
    ## 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
  4060
    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
  4061
                        '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
  4062
                        [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4063
    ## 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
  4064
    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
  4065
                        'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4066
                        [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
  4067
    ## 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
  4068
    module.add_function('Max', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4069
                        'ns3::int64x64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4070
                        [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
  4071
    ## 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
  4072
    module.add_function('MicroSeconds', 
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', 'us')])
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::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
  4076
    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
  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', 'us')])
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4079
    ## 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
  4080
    module.add_function('MilliSeconds', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4081
                        'ns3::Time', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4082
                        [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
  4083
    ## 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
  4084
    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
  4085
                        'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4086
                        [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
  4087
    ## 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
  4088
    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
  4089
                        'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4090
                        [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
  4091
    ## 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
  4092
    module.add_function('Min', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4093
                        'ns3::int64x64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4094
                        [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
  4095
    ## 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
  4096
    module.add_function('NanoSeconds', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4097
                        'ns3::Time', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4098
                        [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
  4099
    ## 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
  4100
    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
  4101
                        'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4102
                        [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
  4103
    ## 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
  4104
    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
  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
                        [])
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4107
    ## 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
  4108
    module.add_function('PicoSeconds', 
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', 'ps')])
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::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
  4112
    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
  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('uint64_t', 'ps')])
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4115
    ## 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
  4116
    module.add_function('Seconds', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4117
                        'ns3::Time', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4118
                        [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
  4119
    ## 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
  4120
    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
  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('double', 'seconds')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4123
    ## 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
  4124
    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
  4125
                        'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4126
                        [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
  4127
    ## 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
  4128
    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
  4129
                        'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4130
                        [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
  4131
    ## 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
  4132
    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
  4133
                        'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4134
                        [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4135
                        template_parameters=['double'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4136
    ## 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
  4137
    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
  4138
                        'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4139
                        [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4140
                        template_parameters=['float'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4141
    ## 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
  4142
    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
  4143
                        'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4144
                        [], 
7090
7134392efe70 Bug 1105 Move topology helpers into separate per-device modules
John Abraham<john.abraham@gatech.edu>
parents: 7055
diff changeset
  4145
                        template_parameters=['long'])
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4146
    ## 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
  4147
    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
  4148
                        'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4149
                        [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4150
                        template_parameters=['int'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4151
    ## 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
  4152
    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
  4153
                        'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4154
                        [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4155
                        template_parameters=['short'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4156
    ## 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
  4157
    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
  4158
                        'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4159
                        [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4160
                        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
  4161
    ## 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
  4162
    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
  4163
                        'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4164
                        [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4165
                        template_parameters=['unsigned long long'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4166
    ## 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
  4167
    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
  4168
                        'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4169
                        [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4170
                        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
  4171
    ## 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
  4172
    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
  4173
                        'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4174
                        [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4175
                        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
  4176
    ## 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
  4177
    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
  4178
                        'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4179
                        [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4180
                        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
  4181
    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
  4182
    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
  4183
    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
  4184
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4185
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4186
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
  4187
    ## 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
  4188
    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
  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::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
  4192
    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
  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 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
  4196
    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
  4197
                        'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4198
                        [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
  4199
    ## 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
  4200
    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
  4201
                        'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4202
                        [param('std::string', 'path'), param('ns3::CallbackBase const &', 'cb')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4203
    ## config.h (module 'core'): extern 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
  4204
    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
  4205
                        '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
  4206
                        [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
  4207
    ## 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
  4208
    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
  4209
                        'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4210
                        [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4211
    ## config.h (module 'core'): extern 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
  4212
    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
  4213
                        'ns3::Config::MatchContainer', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4214
                        [param('std::string', 'path')])
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::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
  4216
    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
  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('ns3::Ptr< ns3::Object >', 'obj')])
7401
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4219
    ## 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
  4220
    module.add_function('Reset', 
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4221
                        'void', 
20b1d370c035 Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4222
                        [])
6881
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 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
  4224
    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
  4225
                        'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4226
                        [param('std::string', 'path'), 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::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
  4228
    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
  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::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
  4232
    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
  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::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
  4236
    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
  4237
                        'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4238
                        [param('std::string', '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
  4239
    ## 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
  4240
    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
  4241
                        'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4242
                        [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4243
    ## config.h (module 'core'): extern 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
  4244
    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
  4245
                        'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4246
                        [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
  4247
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4248
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4249
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
  4250
    ## 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
  4251
    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
  4252
                        'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4253
                        [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4254
    ## 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
  4255
    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
  4256
                        'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4257
                        [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
  4258
    ## 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
  4259
    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
  4260
                        'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4261
                        [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
  4262
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4263
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4264
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
  4265
    ## 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
  4266
    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
  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('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
  4269
    ## 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
  4270
    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
  4271
                        '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
  4272
                        [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
  4273
    ## 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
  4274
    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
  4275
                        '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
  4276
                        [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
  4277
    return
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
def main():
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4280
    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
  4281
    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
  4282
    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
  4283
    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
  4284
    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
  4285
    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
  4286
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4287
if __name__ == '__main__':
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4288
    main()
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4289