author | Mitch Watrous |
Fri, 19 Apr 2013 17:17:35 -0700 | |
changeset 9708 | 443bde2aa701 |
parent 9195 | f0be2daaa38f |
child 9901 | 9a100979b2df |
permissions | -rw-r--r-- |
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] |
9190 | 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', 'LOG_PREFIX_LEVEL', 'LOG_PREFIX_ALL']) |
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') |
8880 | 79 |
## rng-seed-manager.h (module 'core'): ns3::RngSeedManager [class] |
80 |
module.add_class('RngSeedManager') |
|
6881
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
81 |
## 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
|
82 |
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
|
83 |
## random-variable.h (module 'core'): ns3::SequentialVariable [class] |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
84 |
module.add_class('SequentialVariable', parent=root_module['ns3::RandomVariable']) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
85 |
## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter> [class] |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
86 |
module.add_class('SimpleRefCount', automatic_type_narrowing=True, template_parameters=['ns3::Object', 'ns3::ObjectBase', 'ns3::ObjectDeleter'], parent=root_module['ns3::ObjectBase'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount')) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
87 |
## simulator.h (module 'core'): ns3::Simulator [class] |
7375
5ccbfab63589
Rescan all python bindings for all modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7055
diff
changeset
|
88 |
module.add_class('Simulator', destructor_visibility='private') |
6881
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
89 |
## system-condition.h (module 'core'): ns3::SystemCondition [class] |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
90 |
module.add_class('SystemCondition') |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
91 |
## system-mutex.h (module 'core'): ns3::SystemMutex [class] |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
92 |
module.add_class('SystemMutex') |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
93 |
## system-wall-clock-ms.h (module 'core'): ns3::SystemWallClockMs [class] |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
94 |
module.add_class('SystemWallClockMs') |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
95 |
## timer.h (module 'core'): ns3::Timer [class] |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
96 |
module.add_class('Timer') |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
97 |
## timer.h (module 'core'): ns3::Timer::DestroyPolicy [enumeration] |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
98 |
module.add_enum('DestroyPolicy', ['CANCEL_ON_DESTROY', 'REMOVE_ON_DESTROY', 'CHECK_ON_DESTROY'], outer_class=root_module['ns3::Timer']) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
99 |
## timer.h (module 'core'): ns3::Timer::State [enumeration] |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
100 |
module.add_enum('State', ['RUNNING', 'EXPIRED', 'SUSPENDED'], outer_class=root_module['ns3::Timer']) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
101 |
## timer-impl.h (module 'core'): ns3::TimerImpl [class] |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
102 |
module.add_class('TimerImpl', allow_subclassing=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
103 |
## random-variable.h (module 'core'): ns3::TriangularVariable [class] |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
104 |
module.add_class('TriangularVariable', parent=root_module['ns3::RandomVariable']) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
105 |
## type-id.h (module 'core'): ns3::TypeId [class] |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
106 |
module.add_class('TypeId') |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
107 |
## type-id.h (module 'core'): ns3::TypeId::AttributeFlag [enumeration] |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
108 |
module.add_enum('AttributeFlag', ['ATTR_GET', 'ATTR_SET', 'ATTR_CONSTRUCT', 'ATTR_SGC'], outer_class=root_module['ns3::TypeId']) |
7401
20b1d370c035
Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
109 |
## type-id.h (module 'core'): ns3::TypeId::AttributeInformation [struct] |
20b1d370c035
Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
110 |
module.add_class('AttributeInformation', outer_class=root_module['ns3::TypeId']) |
20b1d370c035
Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
111 |
## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation [struct] |
20b1d370c035
Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
112 |
module.add_class('TraceSourceInformation', outer_class=root_module['ns3::TypeId']) |
6881
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
113 |
## random-variable.h (module 'core'): ns3::UniformVariable [class] |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
114 |
module.add_class('UniformVariable', parent=root_module['ns3::RandomVariable']) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
115 |
## vector.h (module 'core'): ns3::Vector2D [class] |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
116 |
module.add_class('Vector2D') |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
117 |
## vector.h (module 'core'): ns3::Vector3D [class] |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
118 |
module.add_class('Vector3D') |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
119 |
## watchdog.h (module 'core'): ns3::Watchdog [class] |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
120 |
module.add_class('Watchdog') |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
121 |
## random-variable.h (module 'core'): ns3::WeibullVariable [class] |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
122 |
module.add_class('WeibullVariable', parent=root_module['ns3::RandomVariable']) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
123 |
## random-variable.h (module 'core'): ns3::ZetaVariable [class] |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
124 |
module.add_class('ZetaVariable', parent=root_module['ns3::RandomVariable']) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
125 |
## random-variable.h (module 'core'): ns3::ZipfVariable [class] |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
126 |
module.add_class('ZipfVariable', parent=root_module['ns3::RandomVariable']) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
127 |
## empty.h (module 'core'): ns3::empty [class] |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
128 |
module.add_class('empty') |
7055
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
129 |
## int64x64-double.h (module 'core'): ns3::int64x64_t [class] |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
130 |
module.add_class('int64x64_t') |
6881
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
131 |
## random-variable.h (module 'core'): ns3::ConstantVariable [class] |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
132 |
module.add_class('ConstantVariable', parent=root_module['ns3::RandomVariable']) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
133 |
## random-variable.h (module 'core'): ns3::DeterministicVariable [class] |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
134 |
module.add_class('DeterministicVariable', parent=root_module['ns3::RandomVariable']) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
135 |
## random-variable.h (module 'core'): ns3::EmpiricalVariable [class] |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
136 |
module.add_class('EmpiricalVariable', parent=root_module['ns3::RandomVariable']) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
137 |
## random-variable.h (module 'core'): ns3::ErlangVariable [class] |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
138 |
module.add_class('ErlangVariable', parent=root_module['ns3::RandomVariable']) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
139 |
## random-variable.h (module 'core'): ns3::ExponentialVariable [class] |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
140 |
module.add_class('ExponentialVariable', parent=root_module['ns3::RandomVariable']) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
141 |
## random-variable.h (module 'core'): ns3::GammaVariable [class] |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
142 |
module.add_class('GammaVariable', parent=root_module['ns3::RandomVariable']) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
143 |
## random-variable.h (module 'core'): ns3::IntEmpiricalVariable [class] |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
144 |
module.add_class('IntEmpiricalVariable', parent=root_module['ns3::EmpiricalVariable']) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
145 |
## random-variable.h (module 'core'): ns3::LogNormalVariable [class] |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
146 |
module.add_class('LogNormalVariable', parent=root_module['ns3::RandomVariable']) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
147 |
## random-variable.h (module 'core'): ns3::NormalVariable [class] |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
148 |
module.add_class('NormalVariable', parent=root_module['ns3::RandomVariable']) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
149 |
## object.h (module 'core'): ns3::Object [class] |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
150 |
module.add_class('Object', parent=root_module['ns3::SimpleRefCount< ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter >']) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
151 |
## object.h (module 'core'): ns3::Object::AggregateIterator [class] |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
152 |
module.add_class('AggregateIterator', outer_class=root_module['ns3::Object']) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
153 |
## random-variable.h (module 'core'): ns3::ParetoVariable [class] |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
154 |
module.add_class('ParetoVariable', parent=root_module['ns3::RandomVariable']) |
8880 | 155 |
## random-variable-stream.h (module 'core'): ns3::RandomVariableStream [class] |
156 |
module.add_class('RandomVariableStream', parent=root_module['ns3::Object']) |
|
6881
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 [class] |
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('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
|
159 |
## 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
|
160 |
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
|
161 |
## 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
|
162 |
module.add_class('EventKey', outer_class=root_module['ns3::Scheduler']) |
8880 | 163 |
## random-variable-stream.h (module 'core'): ns3::SequentialRandomVariable [class] |
164 |
module.add_class('SequentialRandomVariable', parent=root_module['ns3::RandomVariableStream']) |
|
6881
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::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
|
166 |
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
|
167 |
## 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
|
168 |
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
|
169 |
## 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
|
170 |
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
|
171 |
## 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
|
172 |
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
|
173 |
## 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
|
174 |
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
|
175 |
## 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
|
176 |
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
|
177 |
## 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
|
178 |
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
|
179 |
## 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
|
180 |
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
|
181 |
## 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
|
182 |
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
|
183 |
## 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
|
184 |
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
|
185 |
## 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
|
186 |
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
|
187 |
## 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
|
188 |
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
|
189 |
## nstime.h (module 'core'): ns3::Time [class] |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
190 |
module.add_class('Time') |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
191 |
## nstime.h (module 'core'): ns3::Time::Unit [enumeration] |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
192 |
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
|
193 |
## nstime.h (module 'core'): ns3::Time [class] |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
194 |
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
|
195 |
## 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
|
196 |
module.add_class('TraceSourceAccessor', parent=root_module['ns3::SimpleRefCount< ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter<ns3::TraceSourceAccessor> >']) |
8880 | 197 |
## random-variable-stream.h (module 'core'): ns3::TriangularRandomVariable [class] |
198 |
module.add_class('TriangularRandomVariable', parent=root_module['ns3::RandomVariableStream']) |
|
199 |
## random-variable-stream.h (module 'core'): ns3::UniformRandomVariable [class] |
|
200 |
module.add_class('UniformRandomVariable', parent=root_module['ns3::RandomVariableStream']) |
|
6881
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
201 |
## 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
|
202 |
module.add_class('WallClockSynchronizer', parent=root_module['ns3::Synchronizer']) |
8880 | 203 |
## random-variable-stream.h (module 'core'): ns3::WeibullRandomVariable [class] |
204 |
module.add_class('WeibullRandomVariable', parent=root_module['ns3::RandomVariableStream']) |
|
205 |
## random-variable-stream.h (module 'core'): ns3::ZetaRandomVariable [class] |
|
206 |
module.add_class('ZetaRandomVariable', parent=root_module['ns3::RandomVariableStream']) |
|
207 |
## random-variable-stream.h (module 'core'): ns3::ZipfRandomVariable [class] |
|
208 |
module.add_class('ZipfRandomVariable', parent=root_module['ns3::RandomVariableStream']) |
|
6881
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
209 |
## 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
|
210 |
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
|
211 |
## 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
|
212 |
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
|
213 |
## 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
|
214 |
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
|
215 |
## 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
|
216 |
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
|
217 |
## 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
|
218 |
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
|
219 |
## 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
|
220 |
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
|
221 |
## 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
|
222 |
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
|
223 |
## 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
|
224 |
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
|
225 |
## 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
|
226 |
module.add_class('CallbackValue', parent=root_module['ns3::AttributeValue']) |
8880 | 227 |
## random-variable-stream.h (module 'core'): ns3::ConstantRandomVariable [class] |
228 |
module.add_class('ConstantRandomVariable', parent=root_module['ns3::RandomVariableStream']) |
|
6881
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
229 |
## 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
|
230 |
module.add_class('DefaultSimulatorImpl', parent=root_module['ns3::SimulatorImpl']) |
8880 | 231 |
## random-variable-stream.h (module 'core'): ns3::DeterministicRandomVariable [class] |
232 |
module.add_class('DeterministicRandomVariable', parent=root_module['ns3::RandomVariableStream']) |
|
6881
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
233 |
## 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
|
234 |
module.add_class('DoubleValue', parent=root_module['ns3::AttributeValue']) |
8880 | 235 |
## random-variable-stream.h (module 'core'): ns3::EmpiricalRandomVariable [class] |
236 |
module.add_class('EmpiricalRandomVariable', parent=root_module['ns3::RandomVariableStream']) |
|
6881
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
237 |
## 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
|
238 |
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
|
239 |
## 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
|
240 |
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
|
241 |
## 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
|
242 |
module.add_class('EnumValue', parent=root_module['ns3::AttributeValue']) |
8880 | 243 |
## random-variable-stream.h (module 'core'): ns3::ErlangRandomVariable [class] |
244 |
module.add_class('ErlangRandomVariable', parent=root_module['ns3::RandomVariableStream']) |
|
6881
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
245 |
## 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
|
246 |
module.add_class('EventImpl', parent=root_module['ns3::SimpleRefCount< ns3::EventImpl, ns3::empty, ns3::DefaultDeleter<ns3::EventImpl> >']) |
8880 | 247 |
## random-variable-stream.h (module 'core'): ns3::ExponentialRandomVariable [class] |
248 |
module.add_class('ExponentialRandomVariable', parent=root_module['ns3::RandomVariableStream']) |
|
6881
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
249 |
## 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
|
250 |
module.add_class('FdReader', parent=root_module['ns3::SimpleRefCount< ns3::FdReader, ns3::empty, ns3::DefaultDeleter<ns3::FdReader> >']) |
8880 | 251 |
## random-variable-stream.h (module 'core'): ns3::GammaRandomVariable [class] |
252 |
module.add_class('GammaRandomVariable', parent=root_module['ns3::RandomVariableStream']) |
|
6881
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
253 |
## 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
|
254 |
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
|
255 |
## 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
|
256 |
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
|
257 |
## 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
|
258 |
module.add_class('ListScheduler', parent=root_module['ns3::Scheduler']) |
8880 | 259 |
## random-variable-stream.h (module 'core'): ns3::LogNormalRandomVariable [class] |
260 |
module.add_class('LogNormalRandomVariable', parent=root_module['ns3::RandomVariableStream']) |
|
6881
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
261 |
## 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
|
262 |
module.add_class('MapScheduler', parent=root_module['ns3::Scheduler']) |
8880 | 263 |
## random-variable-stream.h (module 'core'): ns3::NormalRandomVariable [class] |
264 |
module.add_class('NormalRandomVariable', parent=root_module['ns3::RandomVariableStream']) |
|
6881
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
265 |
## 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
|
266 |
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
|
267 |
## 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
|
268 |
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
|
269 |
## 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
|
270 |
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
|
271 |
## 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
|
272 |
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
|
273 |
## 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
|
274 |
module.add_class('ObjectPtrContainerValue', parent=root_module['ns3::AttributeValue']) |
8880 | 275 |
## random-variable-stream.h (module 'core'): ns3::ParetoRandomVariable [class] |
276 |
module.add_class('ParetoRandomVariable', parent=root_module['ns3::RandomVariableStream']) |
|
6881
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
277 |
## 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
|
278 |
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
|
279 |
## 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
|
280 |
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
|
281 |
## 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
|
282 |
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
|
283 |
## 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
|
284 |
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
|
285 |
## 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
|
286 |
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
|
287 |
## 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
|
288 |
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
|
289 |
## 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
|
290 |
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
|
291 |
## 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
|
292 |
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
|
293 |
## 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
|
294 |
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
|
295 |
## 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
|
296 |
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
|
297 |
## 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
|
298 |
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
|
299 |
## 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
|
300 |
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
|
301 |
## 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
|
302 |
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
|
303 |
## 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
|
304 |
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
|
305 |
## 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
|
306 |
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
|
307 |
## 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
|
308 |
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
|
309 |
## 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
|
310 |
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
|
311 |
## 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
|
312 |
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
|
313 |
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
|
314 |
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
|
315 |
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
|
316 |
module.add_typedef(root_module['ns3::ObjectPtrContainerValue'], 'ObjectVectorValue') |
7055
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
317 |
typehandlers.add_type_alias('void ( * ) ( std::ostream & ) *', 'ns3::LogTimePrinter') |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
318 |
typehandlers.add_type_alias('void ( * ) ( std::ostream & ) **', 'ns3::LogTimePrinter*') |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
319 |
typehandlers.add_type_alias('void ( * ) ( std::ostream & ) *&', 'ns3::LogTimePrinter&') |
8880 | 320 |
typehandlers.add_type_alias('ns3::RngSeedManager', 'ns3::SeedManager') |
321 |
typehandlers.add_type_alias('ns3::RngSeedManager*', 'ns3::SeedManager*') |
|
322 |
typehandlers.add_type_alias('ns3::RngSeedManager&', 'ns3::SeedManager&') |
|
323 |
module.add_typedef(root_module['ns3::RngSeedManager'], 'SeedManager') |
|
7055
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
324 |
typehandlers.add_type_alias('void ( * ) ( std::ostream & ) *', 'ns3::LogNodePrinter') |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
325 |
typehandlers.add_type_alias('void ( * ) ( std::ostream & ) **', 'ns3::LogNodePrinter*') |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
326 |
typehandlers.add_type_alias('void ( * ) ( std::ostream & ) *&', 'ns3::LogNodePrinter&') |
9195
f0be2daaa38f
bug 954: back out changesets 1a2abe07b53d, 8934b7c0c1cb, and 8ef8d8bae350
Tom Henderson <tomh@tomh.org>
parents:
9190
diff
changeset
|
327 |
typehandlers.add_type_alias('ns3::Vector3D', 'ns3::Vector') |
f0be2daaa38f
bug 954: back out changesets 1a2abe07b53d, 8934b7c0c1cb, and 8ef8d8bae350
Tom Henderson <tomh@tomh.org>
parents:
9190
diff
changeset
|
328 |
typehandlers.add_type_alias('ns3::Vector3D*', 'ns3::Vector*') |
f0be2daaa38f
bug 954: back out changesets 1a2abe07b53d, 8934b7c0c1cb, and 8ef8d8bae350
Tom Henderson <tomh@tomh.org>
parents:
9190
diff
changeset
|
329 |
typehandlers.add_type_alias('ns3::Vector3D&', 'ns3::Vector&') |
f0be2daaa38f
bug 954: back out changesets 1a2abe07b53d, 8934b7c0c1cb, and 8ef8d8bae350
Tom Henderson <tomh@tomh.org>
parents:
9190
diff
changeset
|
330 |
module.add_typedef(root_module['ns3::Vector3D'], 'Vector') |
6881
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
331 |
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
|
332 |
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
|
333 |
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
|
334 |
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
|
335 |
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
|
336 |
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
|
337 |
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
|
338 |
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
|
339 |
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
|
340 |
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
|
341 |
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
|
342 |
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
|
343 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
344 |
## 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
|
345 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
346 |
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
|
347 |
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
|
348 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
349 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
350 |
## 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
|
351 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
352 |
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
|
353 |
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
|
354 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
355 |
|
7586 | 356 |
## Register a nested module for the namespace SystemPath |
357 |
||
358 |
nested_module = module.add_cpp_namespace('SystemPath') |
|
359 |
register_types_ns3_SystemPath(nested_module) |
|
360 |
||
361 |
||
6881
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
362 |
## 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
|
363 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
364 |
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
|
365 |
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
|
366 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
367 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
368 |
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
|
369 |
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
|
370 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
371 |
## 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
|
372 |
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
|
373 |
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
|
374 |
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
|
375 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
376 |
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
|
377 |
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
|
378 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
379 |
|
7586 | 380 |
def register_types_ns3_SystemPath(module): |
381 |
root_module = module.get_root() |
|
382 |
||
383 |
module.add_container('std::list< std::string >', 'std::string', container_type='list') |
|
384 |
||
6881
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
385 |
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
|
386 |
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
|
387 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
388 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
389 |
def register_methods(root_module): |
7401
20b1d370c035
Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
390 |
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
|
391 |
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
|
392 |
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
|
393 |
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
|
394 |
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
|
395 |
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
|
396 |
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
|
397 |
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
|
398 |
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
|
399 |
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
|
400 |
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
|
401 |
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
|
402 |
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
|
403 |
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
|
404 |
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
|
405 |
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
|
406 |
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
|
407 |
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
|
408 |
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
|
409 |
register_Ns3RandomVariable_methods(root_module, root_module['ns3::RandomVariable']) |
8880 | 410 |
register_Ns3RngSeedManager_methods(root_module, root_module['ns3::RngSeedManager']) |
6881
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
411 |
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
|
412 |
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
|
413 |
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
|
414 |
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
|
415 |
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
|
416 |
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
|
417 |
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
|
418 |
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
|
419 |
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
|
420 |
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
|
421 |
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
|
422 |
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
|
423 |
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
|
424 |
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
|
425 |
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
|
426 |
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
|
427 |
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
|
428 |
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
|
429 |
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
|
430 |
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
|
431 |
register_Ns3Empty_methods(root_module, root_module['ns3::empty']) |
7055
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
432 |
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
|
433 |
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
|
434 |
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
|
435 |
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
|
436 |
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
|
437 |
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
|
438 |
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
|
439 |
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
|
440 |
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
|
441 |
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
|
442 |
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
|
443 |
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
|
444 |
register_Ns3ParetoVariable_methods(root_module, root_module['ns3::ParetoVariable']) |
8880 | 445 |
register_Ns3RandomVariableStream_methods(root_module, root_module['ns3::RandomVariableStream']) |
6881
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
446 |
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
|
447 |
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
|
448 |
register_Ns3SchedulerEventKey_methods(root_module, root_module['ns3::Scheduler::EventKey']) |
8880 | 449 |
register_Ns3SequentialRandomVariable_methods(root_module, root_module['ns3::SequentialRandomVariable']) |
6881
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
450 |
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
|
451 |
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
|
452 |
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
|
453 |
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
|
454 |
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
|
455 |
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
|
456 |
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
|
457 |
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
|
458 |
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
|
459 |
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
|
460 |
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
|
461 |
register_Ns3SystemThread_methods(root_module, root_module['ns3::SystemThread']) |
7055
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
462 |
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
|
463 |
register_Ns3TraceSourceAccessor_methods(root_module, root_module['ns3::TraceSourceAccessor']) |
8880 | 464 |
register_Ns3TriangularRandomVariable_methods(root_module, root_module['ns3::TriangularRandomVariable']) |
465 |
register_Ns3UniformRandomVariable_methods(root_module, root_module['ns3::UniformRandomVariable']) |
|
6881
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
466 |
register_Ns3WallClockSynchronizer_methods(root_module, root_module['ns3::WallClockSynchronizer']) |
8880 | 467 |
register_Ns3WeibullRandomVariable_methods(root_module, root_module['ns3::WeibullRandomVariable']) |
468 |
register_Ns3ZetaRandomVariable_methods(root_module, root_module['ns3::ZetaRandomVariable']) |
|
469 |
register_Ns3ZipfRandomVariable_methods(root_module, root_module['ns3::ZipfRandomVariable']) |
|
6881
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
470 |
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
|
471 |
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
|
472 |
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
|
473 |
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
|
474 |
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
|
475 |
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
|
476 |
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
|
477 |
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
|
478 |
register_Ns3CallbackValue_methods(root_module, root_module['ns3::CallbackValue']) |
8880 | 479 |
register_Ns3ConstantRandomVariable_methods(root_module, root_module['ns3::ConstantRandomVariable']) |
6881
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
480 |
register_Ns3DefaultSimulatorImpl_methods(root_module, root_module['ns3::DefaultSimulatorImpl']) |
8880 | 481 |
register_Ns3DeterministicRandomVariable_methods(root_module, root_module['ns3::DeterministicRandomVariable']) |
6881
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
482 |
register_Ns3DoubleValue_methods(root_module, root_module['ns3::DoubleValue']) |
8880 | 483 |
register_Ns3EmpiricalRandomVariable_methods(root_module, root_module['ns3::EmpiricalRandomVariable']) |
6881
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
484 |
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
|
485 |
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
|
486 |
register_Ns3EnumValue_methods(root_module, root_module['ns3::EnumValue']) |
8880 | 487 |
register_Ns3ErlangRandomVariable_methods(root_module, root_module['ns3::ErlangRandomVariable']) |
6881
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
488 |
register_Ns3EventImpl_methods(root_module, root_module['ns3::EventImpl']) |
8880 | 489 |
register_Ns3ExponentialRandomVariable_methods(root_module, root_module['ns3::ExponentialRandomVariable']) |
6881
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
490 |
register_Ns3FdReader_methods(root_module, root_module['ns3::FdReader']) |
8880 | 491 |
register_Ns3GammaRandomVariable_methods(root_module, root_module['ns3::GammaRandomVariable']) |
6881
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
492 |
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
|
493 |
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
|
494 |
register_Ns3ListScheduler_methods(root_module, root_module['ns3::ListScheduler']) |
8880 | 495 |
register_Ns3LogNormalRandomVariable_methods(root_module, root_module['ns3::LogNormalRandomVariable']) |
6881
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
496 |
register_Ns3MapScheduler_methods(root_module, root_module['ns3::MapScheduler']) |
8880 | 497 |
register_Ns3NormalRandomVariable_methods(root_module, root_module['ns3::NormalRandomVariable']) |
6881
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
498 |
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
|
499 |
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
|
500 |
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
|
501 |
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
|
502 |
register_Ns3ObjectPtrContainerValue_methods(root_module, root_module['ns3::ObjectPtrContainerValue']) |
8880 | 503 |
register_Ns3ParetoRandomVariable_methods(root_module, root_module['ns3::ParetoRandomVariable']) |
6881
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
504 |
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
|
505 |
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
|
506 |
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
|
507 |
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
|
508 |
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
|
509 |
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
|
510 |
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
|
511 |
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
|
512 |
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
|
513 |
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
|
514 |
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
|
515 |
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
|
516 |
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
|
517 |
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
|
518 |
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
|
519 |
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
|
520 |
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
|
521 |
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
|
522 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
523 |
|
7401
20b1d370c035
Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
524 |
def register_Ns3AttributeConstructionList_methods(root_module, cls): |
20b1d370c035
Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
525 |
## 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
|
526 |
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
|
527 |
## 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
|
528 |
cls.add_constructor([]) |
7401
20b1d370c035
Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
529 |
## 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
|
530 |
cls.add_method('Add', |
20b1d370c035
Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
531 |
'void', |
20b1d370c035
Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
532 |
[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
|
533 |
## 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
|
534 |
cls.add_method('Begin', |
20b1d370c035
Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
535 |
'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
|
536 |
[], |
7401
20b1d370c035
Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
537 |
is_const=True) |
20b1d370c035
Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
538 |
## 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
|
539 |
cls.add_method('End', |
20b1d370c035
Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
540 |
'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
|
541 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
542 |
is_const=True) |
7401
20b1d370c035
Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
543 |
## 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
|
544 |
cls.add_method('Find', |
20b1d370c035
Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
545 |
'ns3::Ptr< ns3::AttributeValue >', |
20b1d370c035
Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
546 |
[param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
20b1d370c035
Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
547 |
is_const=True) |
20b1d370c035
Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
548 |
return |
20b1d370c035
Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
549 |
|
20b1d370c035
Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
550 |
def register_Ns3AttributeConstructionListItem_methods(root_module, cls): |
20b1d370c035
Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
551 |
## 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
|
552 |
cls.add_constructor([]) |
20b1d370c035
Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
553 |
## 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
|
554 |
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
|
555 |
## 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
|
556 |
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
|
557 |
## 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
|
558 |
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
|
559 |
## 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
|
560 |
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
|
561 |
return |
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 |
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
|
564 |
## 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
|
565 |
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
|
566 |
## 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
|
567 |
cls.add_constructor([]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
568 |
## 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
|
569 |
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
|
570 |
'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
|
571 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
572 |
is_const=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
573 |
## 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
|
574 |
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
|
575 |
visibility='protected') |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
576 |
## 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
|
577 |
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
|
578 |
'std::string', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
579 |
[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
|
580 |
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
|
581 |
return |
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 |
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
|
584 |
## 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
|
585 |
cls.add_constructor([]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
586 |
## 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
|
587 |
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
|
588 |
## 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
|
589 |
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
|
590 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
591 |
[param('std::string 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
|
592 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
593 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
594 |
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
|
595 |
## 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
|
596 |
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
|
597 |
## 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
|
598 |
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
|
599 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
600 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
601 |
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
|
602 |
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
|
603 |
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
|
604 |
## 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
|
605 |
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
|
606 |
## 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
|
607 |
cls.add_constructor([]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
608 |
## 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
|
609 |
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
|
610 |
## 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
|
611 |
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
|
612 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
613 |
[]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
614 |
## 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
|
615 |
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
|
616 |
'uint32_t', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
617 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
618 |
is_const=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
619 |
## 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
|
620 |
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
|
621 |
'uint64_t', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
622 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
623 |
is_const=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
624 |
## 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
|
625 |
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
|
626 |
'uint32_t', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
627 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
628 |
is_const=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
629 |
## 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
|
630 |
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
|
631 |
'bool', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
632 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
633 |
is_const=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
634 |
## 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
|
635 |
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
|
636 |
'bool', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
637 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
638 |
is_const=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
639 |
## 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
|
640 |
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
|
641 |
'ns3::EventImpl *', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
642 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
643 |
is_const=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
644 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
645 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
646 |
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
|
647 |
## 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
|
648 |
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
|
649 |
## 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
|
650 |
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
|
651 |
## 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
|
652 |
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
|
653 |
'__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
|
654 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
655 |
is_static=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
656 |
## global-value.h (module 'core'): 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
|
657 |
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
|
658 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
659 |
[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
|
660 |
is_static=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
661 |
## 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
|
662 |
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
|
663 |
'bool', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
664 |
[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
|
665 |
is_static=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
666 |
## 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
|
667 |
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
|
668 |
'__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
|
669 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
670 |
is_static=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
671 |
## 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
|
672 |
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
|
673 |
'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
|
674 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
675 |
is_const=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
676 |
## 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
|
677 |
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
|
678 |
'std::string', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
679 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
680 |
is_const=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
681 |
## 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
|
682 |
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
|
683 |
'std::string', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
684 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
685 |
is_const=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
686 |
## 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
|
687 |
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
|
688 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
689 |
[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
|
690 |
is_const=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
691 |
## 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
|
692 |
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
|
693 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
694 |
[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
|
695 |
is_static=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
696 |
## 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
|
697 |
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
|
698 |
'bool', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
699 |
[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
|
700 |
is_static=True) |
7401
20b1d370c035
Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
701 |
## 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
|
702 |
cls.add_method('ResetInitialValue', |
20b1d370c035
Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
703 |
'void', |
20b1d370c035
Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
704 |
[]) |
6881
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
705 |
## 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
|
706 |
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
|
707 |
'bool', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
708 |
[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
|
709 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
710 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
711 |
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
|
712 |
## 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
|
713 |
cls.add_constructor([]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
714 |
## 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
|
715 |
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
|
716 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
717 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
718 |
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
|
719 |
## 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
|
720 |
cls.add_constructor([]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
721 |
## 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
|
722 |
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
|
723 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
724 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
725 |
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
|
726 |
## 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
|
727 |
cls.add_constructor([]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
728 |
## 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
|
729 |
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
|
730 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
731 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
732 |
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
|
733 |
## 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
|
734 |
cls.add_constructor([]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
735 |
## 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
|
736 |
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
|
737 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
738 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
739 |
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
|
740 |
## 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
|
741 |
cls.add_constructor([]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
742 |
## 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
|
743 |
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
|
744 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
745 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
746 |
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
|
747 |
## 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
|
748 |
cls.add_constructor([]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
749 |
## 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
|
750 |
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
|
751 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
752 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
753 |
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
|
754 |
## 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
|
755 |
cls.add_constructor([]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
756 |
## 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
|
757 |
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
|
758 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
759 |
|
7055
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
760 |
def register_Ns3LogComponent_methods(root_module, cls): |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
761 |
## 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
|
762 |
cls.add_constructor([param('ns3::LogComponent const &', 'arg0')]) |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
763 |
## 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
|
764 |
cls.add_constructor([param('char const *', 'name')]) |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
765 |
## 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
|
766 |
cls.add_method('Disable', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
767 |
'void', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
768 |
[param('ns3::LogLevel', 'level')]) |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
769 |
## 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
|
770 |
cls.add_method('Enable', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
771 |
'void', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
772 |
[param('ns3::LogLevel', 'level')]) |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
773 |
## 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
|
774 |
cls.add_method('EnvVarCheck', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
775 |
'void', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
776 |
[param('char const *', 'name')]) |
9190 | 777 |
## log.h (module 'core'): std::string ns3::LogComponent::GetLevelLabel(ns3::LogLevel const level) const [member function] |
778 |
cls.add_method('GetLevelLabel', |
|
779 |
'std::string', |
|
780 |
[param('ns3::LogLevel const', 'level')], |
|
781 |
is_const=True) |
|
7055
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
782 |
## 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
|
783 |
cls.add_method('IsEnabled', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
784 |
'bool', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
785 |
[param('ns3::LogLevel', 'level')], |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
786 |
is_const=True) |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
787 |
## 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
|
788 |
cls.add_method('IsNoneEnabled', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
789 |
'bool', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
790 |
[], |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
791 |
is_const=True) |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
792 |
## 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
|
793 |
cls.add_method('Name', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
794 |
'char const *', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
795 |
[], |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
796 |
is_const=True) |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
797 |
return |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
798 |
|
6881
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
799 |
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
|
800 |
## 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
|
801 |
cls.add_constructor([]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
802 |
## 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
|
803 |
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
|
804 |
## 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
|
805 |
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
|
806 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
807 |
[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
|
808 |
is_static=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
809 |
## 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
|
810 |
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
|
811 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
812 |
[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
|
813 |
is_static=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
814 |
## 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
|
815 |
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
|
816 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
817 |
[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
|
818 |
is_static=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
819 |
## 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
|
820 |
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
|
821 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
822 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
823 |
is_static=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
824 |
## 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
|
825 |
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
|
826 |
'std::string', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
827 |
[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
|
828 |
is_static=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
829 |
## 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
|
830 |
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
|
831 |
'std::string', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
832 |
[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
|
833 |
is_static=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
834 |
## 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
|
835 |
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
|
836 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
837 |
[param('std::string', '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
|
838 |
is_static=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
839 |
## 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
|
840 |
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
|
841 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
842 |
[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
|
843 |
is_static=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
844 |
## 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
|
845 |
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
|
846 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
847 |
[param('ns3::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
|
848 |
is_static=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
849 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
850 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
851 |
def register_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
|
852 |
## 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
|
853 |
cls.add_constructor([]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
854 |
## 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
|
855 |
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
|
856 |
## 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
|
857 |
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
|
858 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
859 |
[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
|
860 |
is_const=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
861 |
## 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
|
862 |
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
|
863 |
'bool', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
864 |
[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
|
865 |
is_const=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
866 |
## 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
|
867 |
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
|
868 |
'ns3::TypeId', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
869 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
870 |
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
|
871 |
## 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
|
872 |
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
|
873 |
'ns3::TypeId', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
874 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
875 |
is_static=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
876 |
## 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
|
877 |
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
|
878 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
879 |
[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
|
880 |
## 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
|
881 |
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
|
882 |
'bool', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
883 |
[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
|
884 |
## 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
|
885 |
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
|
886 |
'bool', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
887 |
[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
|
888 |
## 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
|
889 |
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
|
890 |
'bool', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
891 |
[param('std::string', 'name'), param('ns3::CallbackBase const &', 'cb')]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
892 |
## 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
|
893 |
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
|
894 |
'bool', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
895 |
[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
|
896 |
## 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
|
897 |
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
|
898 |
'bool', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
899 |
[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
|
900 |
## 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
|
901 |
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
|
902 |
'void', |
7401
20b1d370c035
Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
903 |
[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
|
904 |
visibility='protected') |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
905 |
## 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
|
906 |
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
|
907 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
908 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
909 |
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
|
910 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
911 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
912 |
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
|
913 |
## 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
|
914 |
cls.add_constructor([]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
915 |
## 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
|
916 |
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
|
917 |
## 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
|
918 |
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
|
919 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
920 |
[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
|
921 |
is_static=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
922 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
923 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
924 |
def register_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
|
925 |
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
|
926 |
## 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
|
927 |
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
|
928 |
## 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
|
929 |
cls.add_constructor([]) |
7401
20b1d370c035
Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
930 |
## 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
|
931 |
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
|
932 |
## 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
|
933 |
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
|
934 |
'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
|
935 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
936 |
is_const=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
937 |
## 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
|
938 |
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
|
939 |
'ns3::TypeId', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
940 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
941 |
is_const=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
942 |
## 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
|
943 |
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
|
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('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
|
946 |
## 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
|
947 |
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
|
948 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
949 |
[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
|
950 |
## 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
|
951 |
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
|
952 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
953 |
[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
|
954 |
## 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
|
955 |
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
|
956 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
957 |
[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
|
958 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
959 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
960 |
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
|
961 |
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
|
962 |
## 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
|
963 |
cls.add_constructor([]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
964 |
## 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
|
965 |
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
|
966 |
## 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
|
967 |
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
|
968 |
'uint32_t', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
969 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
970 |
is_const=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
971 |
## 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
|
972 |
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
|
973 |
'double', |
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 |
is_const=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
976 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
977 |
|
8880 | 978 |
def register_Ns3RngSeedManager_methods(root_module, cls): |
979 |
## rng-seed-manager.h (module 'core'): ns3::RngSeedManager::RngSeedManager() [constructor] |
|
6881
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
980 |
cls.add_constructor([]) |
8880 | 981 |
## rng-seed-manager.h (module 'core'): ns3::RngSeedManager::RngSeedManager(ns3::RngSeedManager const & arg0) [copy constructor] |
982 |
cls.add_constructor([param('ns3::RngSeedManager const &', 'arg0')]) |
|
983 |
## rng-seed-manager.h (module 'core'): static uint64_t ns3::RngSeedManager::GetNextStreamIndex() [member function] |
|
984 |
cls.add_method('GetNextStreamIndex', |
|
985 |
'uint64_t', |
|
986 |
[], |
|
6881
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) |
8880 | 988 |
## rng-seed-manager.h (module 'core'): static uint64_t ns3::RngSeedManager::GetRun() [member function] |
989 |
cls.add_method('GetRun', |
|
990 |
'uint64_t', |
|
991 |
[], |
|
6881
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) |
8880 | 993 |
## rng-seed-manager.h (module 'core'): static uint32_t ns3::RngSeedManager::GetSeed() [member function] |
994 |
cls.add_method('GetSeed', |
|
6881
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
995 |
'uint32_t', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
996 |
[], |
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) |
8880 | 998 |
## rng-seed-manager.h (module 'core'): static void ns3::RngSeedManager::SetRun(uint64_t run) [member function] |
999 |
cls.add_method('SetRun', |
|
6881
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1000 |
'void', |
8880 | 1001 |
[param('uint64_t', 'run')], |
6881
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1002 |
is_static=True) |
8880 | 1003 |
## rng-seed-manager.h (module 'core'): static void ns3::RngSeedManager::SetSeed(uint32_t seed) [member function] |
1004 |
cls.add_method('SetSeed', |
|
6881
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1005 |
'void', |
8880 | 1006 |
[param('uint32_t', 'seed')], |
1007 |
is_static=True) |
|
1008 |
return |
|
1009 |
||
1010 |
def register_Ns3RngStream_methods(root_module, cls): |
|
1011 |
## rng-stream.h (module 'core'): ns3::RngStream::RngStream(uint32_t seed, uint64_t stream, uint64_t substream) [constructor] |
|
1012 |
cls.add_constructor([param('uint32_t', 'seed'), param('uint64_t', 'stream'), param('uint64_t', 'substream')]) |
|
1013 |
## rng-stream.h (module 'core'): ns3::RngStream::RngStream(ns3::RngStream const & arg0) [copy constructor] |
|
1014 |
cls.add_constructor([param('ns3::RngStream const &', 'arg0')]) |
|
6881
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1015 |
## 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
|
1016 |
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
|
1017 |
'double', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1018 |
[]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1019 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1020 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1021 |
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
|
1022 |
## 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
|
1023 |
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
|
1024 |
## 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
|
1025 |
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
|
1026 |
## 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
|
1027 |
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
|
1028 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1029 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1030 |
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
|
1031 |
## 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
|
1032 |
cls.add_constructor([]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1033 |
## 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
|
1034 |
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
|
1035 |
## 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
|
1036 |
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
|
1037 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1038 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1039 |
is_static=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1040 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1041 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1042 |
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
|
1043 |
## 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
|
1044 |
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
|
1045 |
## 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
|
1046 |
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
|
1047 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1048 |
[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
|
1049 |
is_static=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1050 |
## simulator.h (module 'core'): 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
|
1051 |
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
|
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 |
## 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
|
1056 |
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
|
1057 |
'uint32_t', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1058 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1059 |
is_static=True) |
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 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
|
1061 |
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
|
1062 |
'ns3::Time', |
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 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
|
1066 |
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
|
1067 |
'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
|
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 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
|
1071 |
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
|
1072 |
'ns3::Time', |
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 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
|
1076 |
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
|
1077 |
'uint32_t', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1078 |
[], |
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 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
|
1081 |
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
|
1082 |
'bool', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1083 |
[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
|
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 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
|
1086 |
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
|
1087 |
'bool', |
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 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
|
1091 |
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
|
1092 |
'ns3::Time', |
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 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
|
1096 |
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
|
1097 |
'void', |
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 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
|
1101 |
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
|
1102 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1103 |
[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
|
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 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
|
1106 |
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
|
1107 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1108 |
[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
|
1109 |
is_static=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 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
|
1111 |
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
|
1112 |
'void', |
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::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
|
1116 |
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
|
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::Time const &', 'time')], |
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 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1121 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1122 |
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
|
1123 |
## 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
|
1124 |
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
|
1125 |
## 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
|
1126 |
cls.add_constructor([]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1127 |
## 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
|
1128 |
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
|
1129 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1130 |
[]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1131 |
## 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
|
1132 |
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
|
1133 |
'bool', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1134 |
[]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1135 |
## 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
|
1136 |
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
|
1137 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1138 |
[param('bool', 'condition')]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1139 |
## 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
|
1140 |
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
|
1141 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1142 |
[]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1143 |
## 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
|
1144 |
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
|
1145 |
'bool', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1146 |
[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
|
1147 |
## 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
|
1148 |
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
|
1149 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1150 |
[]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1151 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1152 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1153 |
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
|
1154 |
## 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
|
1155 |
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
|
1156 |
## 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
|
1157 |
cls.add_constructor([]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1158 |
## 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
|
1159 |
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
|
1160 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1161 |
[]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1162 |
## 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
|
1163 |
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
|
1164 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1165 |
[]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1166 |
return |
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 |
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
|
1169 |
## 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
|
1170 |
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
|
1171 |
## 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
|
1172 |
cls.add_constructor([]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1173 |
## 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
|
1174 |
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
|
1175 |
'int64_t', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1176 |
[]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1177 |
## 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
|
1178 |
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
|
1179 |
'int64_t', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1180 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1181 |
is_const=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1182 |
## 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
|
1183 |
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
|
1184 |
'int64_t', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1185 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1186 |
is_const=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1187 |
## 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
|
1188 |
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
|
1189 |
'int64_t', |
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 |
is_const=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1192 |
## 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
|
1193 |
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
|
1194 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1195 |
[]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1196 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1197 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1198 |
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
|
1199 |
## 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
|
1200 |
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
|
1201 |
## 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
|
1202 |
cls.add_constructor([]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1203 |
## 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
|
1204 |
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
|
1205 |
## 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
|
1206 |
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
|
1207 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1208 |
[]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1209 |
## 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
|
1210 |
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
|
1211 |
'ns3::Time', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1212 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1213 |
is_const=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1214 |
## 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
|
1215 |
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
|
1216 |
'ns3::Time', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1217 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1218 |
is_const=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1219 |
## 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
|
1220 |
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
|
1221 |
'ns3::Timer::State', |
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 |
is_const=True) |
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'): 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
|
1225 |
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
|
1226 |
'bool', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1227 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1228 |
is_const=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1229 |
## 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
|
1230 |
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
|
1231 |
'bool', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1232 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1233 |
is_const=True) |
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'): 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
|
1235 |
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
|
1236 |
'bool', |
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'): 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
|
1240 |
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
|
1241 |
'void', |
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 |
## 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
|
1244 |
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
|
1245 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1246 |
[]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1247 |
## 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
|
1248 |
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
|
1249 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1250 |
[]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1251 |
## timer.h (module 'core'): 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
|
1252 |
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
|
1253 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1254 |
[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
|
1255 |
## 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
|
1256 |
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
|
1257 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1258 |
[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
|
1259 |
## 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
|
1260 |
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
|
1261 |
'void', |
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 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1264 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1265 |
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
|
1266 |
## 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
|
1267 |
cls.add_constructor([]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1268 |
## 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
|
1269 |
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
|
1270 |
## 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
|
1271 |
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
|
1272 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1273 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1274 |
is_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
|
1275 |
## 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
|
1276 |
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
|
1277 |
'ns3::EventId', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1278 |
[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
|
1279 |
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
|
1280 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1281 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1282 |
def register_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
|
1283 |
## 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
|
1284 |
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
|
1285 |
## 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
|
1286 |
cls.add_constructor([]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1287 |
## 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
|
1288 |
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
|
1289 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1290 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1291 |
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
|
1292 |
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
|
1293 |
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
|
1294 |
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
|
1295 |
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
|
1296 |
## 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
|
1297 |
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
|
1298 |
## 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
|
1299 |
cls.add_constructor([]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1300 |
## 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
|
1301 |
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
|
1302 |
## 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
|
1303 |
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
|
1304 |
'ns3::TypeId', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1305 |
[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
|
1306 |
## 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
|
1307 |
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
|
1308 |
'ns3::TypeId', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1309 |
[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
|
1310 |
## 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
|
1311 |
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
|
1312 |
'ns3::TypeId', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1313 |
[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
|
1314 |
## 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
|
1315 |
cls.add_method('GetAttribute', |
20b1d370c035
Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1316 |
'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
|
1317 |
[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
|
1318 |
is_const=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1319 |
## type-id.h (module 'core'): 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
|
1320 |
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
|
1321 |
'std::string', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1322 |
[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
|
1323 |
is_const=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1324 |
## 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
|
1325 |
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
|
1326 |
'uint32_t', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1327 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1328 |
is_const=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1329 |
## 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
|
1330 |
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
|
1331 |
'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
|
1332 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1333 |
is_const=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1334 |
## type-id.h (module 'core'): 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
|
1335 |
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
|
1336 |
'std::string', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1337 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1338 |
is_const=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1339 |
## 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
|
1340 |
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
|
1341 |
'std::string', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1342 |
[], |
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'): 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
|
1345 |
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
|
1346 |
'ns3::TypeId', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1347 |
[], |
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'): 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
|
1350 |
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
|
1351 |
'ns3::TypeId', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1352 |
[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
|
1353 |
is_static=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'): 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
|
1355 |
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
|
1356 |
'uint32_t', |
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_static=True) |
7401
20b1d370c035
Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1359 |
## 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
|
1360 |
cls.add_method('GetTraceSource', |
20b1d370c035
Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1361 |
'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
|
1362 |
[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
|
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'): 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
|
1365 |
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
|
1366 |
'uint32_t', |
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'): 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
|
1370 |
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
|
1371 |
'uint16_t', |
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'): 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
|
1375 |
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
|
1376 |
'bool', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1377 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1378 |
is_const=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'): 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
|
1380 |
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
|
1381 |
'bool', |
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_const=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1384 |
## 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
|
1385 |
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
|
1386 |
'ns3::TypeId', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1387 |
[]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1388 |
## 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
|
1389 |
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
|
1390 |
'bool', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1391 |
[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
|
1392 |
is_const=True) |
7401
20b1d370c035
Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1393 |
## 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
|
1394 |
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
|
1395 |
'bool', |
7723
dfd109d5caf0
Bug 1349 - TypeId.LookupAttributeByName Python bindings missing
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7586
diff
changeset
|
1396 |
[param('std::string', 'name'), param('ns3::TypeId::AttributeInformation *', 'info', transfer_ownership=False)], |
6881
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1397 |
is_const=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1398 |
## 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
|
1399 |
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
|
1400 |
'ns3::TypeId', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1401 |
[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
|
1402 |
is_static=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1403 |
## 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
|
1404 |
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
|
1405 |
'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
|
1406 |
[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
|
1407 |
is_const=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1408 |
## 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
|
1409 |
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
|
1410 |
'bool', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1411 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1412 |
is_const=True) |
7401
20b1d370c035
Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1413 |
## 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
|
1414 |
cls.add_method('SetAttributeInitialValue', |
20b1d370c035
Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1415 |
'bool', |
20b1d370c035
Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1416 |
[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
|
1417 |
## 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
|
1418 |
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
|
1419 |
'ns3::TypeId', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1420 |
[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
|
1421 |
## 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
|
1422 |
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
|
1423 |
'ns3::TypeId', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1424 |
[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
|
1425 |
## 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
|
1426 |
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
|
1427 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1428 |
[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
|
1429 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1430 |
|
7401
20b1d370c035
Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1431 |
def register_Ns3TypeIdAttributeInformation_methods(root_module, cls): |
20b1d370c035
Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1432 |
## 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
|
1433 |
cls.add_constructor([]) |
7401
20b1d370c035
Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1434 |
## 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
|
1435 |
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
|
1436 |
## 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
|
1437 |
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
|
1438 |
## 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
|
1439 |
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
|
1440 |
## 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
|
1441 |
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
|
1442 |
## 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
|
1443 |
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
|
1444 |
## 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
|
1445 |
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
|
1446 |
## 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
|
1447 |
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
|
1448 |
## 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
|
1449 |
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
|
1450 |
return |
20b1d370c035
Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1451 |
|
20b1d370c035
Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1452 |
def register_Ns3TypeIdTraceSourceInformation_methods(root_module, cls): |
20b1d370c035
Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1453 |
## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation::TraceSourceInformation() [constructor] |
20b1d370c035
Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1454 |
cls.add_constructor([]) |
20b1d370c035
Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1455 |
## type-id.h (module 'core'): ns3::TypeId::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
|
1456 |
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
|
1457 |
## 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
|
1458 |
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
|
1459 |
## 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
|
1460 |
cls.add_instance_attribute('help', 'std::string', is_const=False) |
20b1d370c035
Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1461 |
## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation::name [variable] |
20b1d370c035
Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1462 |
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
|
1463 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1464 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1465 |
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
|
1466 |
## 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
|
1467 |
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
|
1468 |
## 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
|
1469 |
cls.add_constructor([]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1470 |
## 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
|
1471 |
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
|
1472 |
## 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
|
1473 |
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
|
1474 |
'uint32_t', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1475 |
[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
|
1476 |
## 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
|
1477 |
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
|
1478 |
'double', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1479 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1480 |
is_const=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1481 |
## 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
|
1482 |
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
|
1483 |
'double', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1484 |
[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
|
1485 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1486 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1487 |
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
|
1488 |
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
|
1489 |
## 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
|
1490 |
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
|
1491 |
## 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
|
1492 |
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
|
1493 |
## 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
|
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 |
## 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
|
1496 |
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
|
1497 |
## 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
|
1498 |
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
|
1499 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1500 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1501 |
def register_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
|
1502 |
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
|
1503 |
## 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
|
1504 |
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
|
1505 |
## 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
|
1506 |
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
|
1507 |
## 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
|
1508 |
cls.add_constructor([]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1509 |
## 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
|
1510 |
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
|
1511 |
## 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
|
1512 |
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
|
1513 |
## 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
|
1514 |
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
|
1515 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1516 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1517 |
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
|
1518 |
## 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
|
1519 |
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
|
1520 |
## 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
|
1521 |
cls.add_constructor([]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1522 |
## 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
|
1523 |
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
|
1524 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1525 |
[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
|
1526 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1527 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1528 |
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
|
1529 |
## 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
|
1530 |
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
|
1531 |
## 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
|
1532 |
cls.add_constructor([]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1533 |
## 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
|
1534 |
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
|
1535 |
## 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
|
1536 |
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
|
1537 |
## 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
|
1538 |
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
|
1539 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1540 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1541 |
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
|
1542 |
## 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
|
1543 |
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
|
1544 |
## 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
|
1545 |
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
|
1546 |
## 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
|
1547 |
cls.add_constructor([]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1548 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1549 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1550 |
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
|
1551 |
## 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
|
1552 |
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
|
1553 |
## 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
|
1554 |
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
|
1555 |
## 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
|
1556 |
cls.add_constructor([]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1557 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1558 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1559 |
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
|
1560 |
## 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
|
1561 |
cls.add_constructor([]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1562 |
## 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
|
1563 |
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
|
1564 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1565 |
|
7055
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
1566 |
def register_Ns3Int64x64_t_methods(root_module, cls): |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
1567 |
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
|
1568 |
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
|
1569 |
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
|
1570 |
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
|
1571 |
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
|
1572 |
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
|
1573 |
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
|
1574 |
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
|
1575 |
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
|
1576 |
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
|
1577 |
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
|
1578 |
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
|
1579 |
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
|
1580 |
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
|
1581 |
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
|
1582 |
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
|
1583 |
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
|
1584 |
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
|
1585 |
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
|
1586 |
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
|
1587 |
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
|
1588 |
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
|
1589 |
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
|
1590 |
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
|
1591 |
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
|
1592 |
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
|
1593 |
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
|
1594 |
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
|
1595 |
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
|
1596 |
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
|
1597 |
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
|
1598 |
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
|
1599 |
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
|
1600 |
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
|
1601 |
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
|
1602 |
cls.add_unary_numeric_operator('-') |
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_comparison_operator('<') |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
1617 |
cls.add_binary_comparison_operator('>') |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
1618 |
cls.add_binary_comparison_operator('!=') |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
1619 |
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
|
1620 |
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
|
1621 |
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
|
1622 |
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
|
1623 |
cls.add_output_stream_operator() |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
1624 |
cls.add_binary_comparison_operator('<=') |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
1625 |
cls.add_binary_comparison_operator('==') |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
1626 |
cls.add_binary_comparison_operator('>=') |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
1627 |
## 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
|
1628 |
cls.add_constructor([]) |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
1629 |
## 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
|
1630 |
cls.add_constructor([param('double', 'v')]) |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
1631 |
## 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
|
1632 |
cls.add_constructor([param('int', 'v')]) |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
1633 |
## 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
|
1634 |
cls.add_constructor([param('long int', 'v')]) |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
1635 |
## 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
|
1636 |
cls.add_constructor([param('long long int', 'v')]) |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
1637 |
## 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
|
1638 |
cls.add_constructor([param('unsigned int', 'v')]) |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
1639 |
## 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
|
1640 |
cls.add_constructor([param('long unsigned int', 'v')]) |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
1641 |
## 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
|
1642 |
cls.add_constructor([param('long long unsigned int', 'v')]) |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
1643 |
## 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
|
1644 |
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
|
1645 |
## 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
|
1646 |
cls.add_constructor([param('ns3::int64x64_t const &', 'o')]) |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
1647 |
## 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
|
1648 |
cls.add_method('GetDouble', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
1649 |
'double', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
1650 |
[], |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
1651 |
is_const=True) |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
1652 |
## 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
|
1653 |
cls.add_method('GetHigh', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
1654 |
'int64_t', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
1655 |
[], |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
1656 |
is_const=True) |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
1657 |
## 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
|
1658 |
cls.add_method('GetLow', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
1659 |
'uint64_t', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
1660 |
[], |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
1661 |
is_const=True) |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
1662 |
## 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
|
1663 |
cls.add_method('Invert', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
1664 |
'ns3::int64x64_t', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
1665 |
[param('uint64_t', 'v')], |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
1666 |
is_static=True) |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
1667 |
## 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
|
1668 |
cls.add_method('MulByInvert', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
1669 |
'void', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
1670 |
[param('ns3::int64x64_t const &', 'o')]) |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
1671 |
return |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
1672 |
|
6881
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1673 |
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
|
1674 |
## 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
|
1675 |
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
|
1676 |
## 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
|
1677 |
cls.add_constructor([]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1678 |
## 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
|
1679 |
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
|
1680 |
## 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
|
1681 |
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
|
1682 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1683 |
[param('double', 'c')]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1684 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1685 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1686 |
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
|
1687 |
## 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
|
1688 |
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
|
1689 |
## 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
|
1690 |
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
|
1691 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1692 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1693 |
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
|
1694 |
## 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
|
1695 |
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
|
1696 |
## 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
|
1697 |
cls.add_constructor([]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1698 |
## 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
|
1699 |
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
|
1700 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1701 |
[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
|
1702 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1703 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1704 |
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
|
1705 |
## 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
|
1706 |
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
|
1707 |
## 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
|
1708 |
cls.add_constructor([]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1709 |
## 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
|
1710 |
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
|
1711 |
## 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
|
1712 |
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
|
1713 |
'double', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1714 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1715 |
is_const=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1716 |
## random-variable.h (module 'core'): 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
|
1717 |
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
|
1718 |
'double', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1719 |
[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
|
1720 |
is_const=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1721 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1722 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1723 |
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
|
1724 |
## 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
|
1725 |
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
|
1726 |
## 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
|
1727 |
cls.add_constructor([]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1728 |
## random-variable.h (module 'core'): 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
|
1729 |
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
|
1730 |
## 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
|
1731 |
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
|
1732 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1733 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1734 |
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
|
1735 |
## 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
|
1736 |
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
|
1737 |
## 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
|
1738 |
cls.add_constructor([]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1739 |
## 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
|
1740 |
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
|
1741 |
## 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
|
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 |
[], |
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 |
## 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
|
1747 |
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
|
1748 |
'double', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1749 |
[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
|
1750 |
is_const=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1751 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1752 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1753 |
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
|
1754 |
## 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
|
1755 |
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
|
1756 |
## 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
|
1757 |
cls.add_constructor([]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1758 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1759 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1760 |
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
|
1761 |
## 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
|
1762 |
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
|
1763 |
## 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
|
1764 |
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
|
1765 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1766 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1767 |
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
|
1768 |
## 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
|
1769 |
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
|
1770 |
## 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
|
1771 |
cls.add_constructor([]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1772 |
## 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
|
1773 |
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
|
1774 |
## 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
|
1775 |
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
|
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_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
|
1779 |
## 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
|
1780 |
cls.add_constructor([]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1781 |
## 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
|
1782 |
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
|
1783 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1784 |
[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
|
1785 |
## 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
|
1786 |
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
|
1787 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1788 |
[]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1789 |
## 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
|
1790 |
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
|
1791 |
'ns3::Object::AggregateIterator', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1792 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1793 |
is_const=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1794 |
## 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
|
1795 |
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
|
1796 |
'ns3::TypeId', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1797 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1798 |
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
|
1799 |
## 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
|
1800 |
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
|
1801 |
'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
|
1802 |
[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
|
1803 |
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
|
1804 |
## 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
|
1805 |
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
|
1806 |
'ns3::TypeId', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1807 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1808 |
is_static=True) |
9708 | 1809 |
## object.h (module 'core'): void ns3::Object::Initialize() [member function] |
1810 |
cls.add_method('Initialize', |
|
6881
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1811 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1812 |
[]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1813 |
## 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
|
1814 |
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
|
1815 |
visibility='protected') |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1816 |
## 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
|
1817 |
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
|
1818 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1819 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1820 |
visibility='protected', is_virtual=True) |
9708 | 1821 |
## object.h (module 'core'): void ns3::Object::DoInitialize() [member function] |
1822 |
cls.add_method('DoInitialize', |
|
6881
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1823 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1824 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1825 |
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
|
1826 |
## 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
|
1827 |
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
|
1828 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1829 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1830 |
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
|
1831 |
return |
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 |
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
|
1834 |
## 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
|
1835 |
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
|
1836 |
## 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
|
1837 |
cls.add_constructor([]) |
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'): 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
|
1839 |
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
|
1840 |
'bool', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1841 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1842 |
is_const=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1843 |
## object.h (module 'core'): 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
|
1844 |
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
|
1845 |
'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
|
1846 |
[]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1847 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1848 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1849 |
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
|
1850 |
## 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
|
1851 |
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
|
1852 |
## 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
|
1853 |
cls.add_constructor([]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1854 |
## 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
|
1855 |
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
|
1856 |
## 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
|
1857 |
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
|
1858 |
## 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
|
1859 |
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
|
1860 |
## 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
|
1861 |
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
|
1862 |
## 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
|
1863 |
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
|
1864 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1865 |
|
8880 | 1866 |
def register_Ns3RandomVariableStream_methods(root_module, cls): |
1867 |
## random-variable-stream.h (module 'core'): static ns3::TypeId ns3::RandomVariableStream::GetTypeId() [member function] |
|
1868 |
cls.add_method('GetTypeId', |
|
1869 |
'ns3::TypeId', |
|
1870 |
[], |
|
1871 |
is_static=True) |
|
1872 |
## random-variable-stream.h (module 'core'): ns3::RandomVariableStream::RandomVariableStream() [constructor] |
|
1873 |
cls.add_constructor([]) |
|
1874 |
## random-variable-stream.h (module 'core'): void ns3::RandomVariableStream::SetStream(int64_t stream) [member function] |
|
1875 |
cls.add_method('SetStream', |
|
1876 |
'void', |
|
1877 |
[param('int64_t', 'stream')]) |
|
1878 |
## random-variable-stream.h (module 'core'): int64_t ns3::RandomVariableStream::GetStream() const [member function] |
|
1879 |
cls.add_method('GetStream', |
|
1880 |
'int64_t', |
|
1881 |
[], |
|
1882 |
is_const=True) |
|
1883 |
## random-variable-stream.h (module 'core'): void ns3::RandomVariableStream::SetAntithetic(bool isAntithetic) [member function] |
|
1884 |
cls.add_method('SetAntithetic', |
|
1885 |
'void', |
|
1886 |
[param('bool', 'isAntithetic')]) |
|
1887 |
## random-variable-stream.h (module 'core'): bool ns3::RandomVariableStream::IsAntithetic() const [member function] |
|
1888 |
cls.add_method('IsAntithetic', |
|
1889 |
'bool', |
|
1890 |
[], |
|
1891 |
is_const=True) |
|
1892 |
## random-variable-stream.h (module 'core'): double ns3::RandomVariableStream::GetValue() [member function] |
|
1893 |
cls.add_method('GetValue', |
|
1894 |
'double', |
|
1895 |
[], |
|
1896 |
is_pure_virtual=True, is_virtual=True) |
|
1897 |
## random-variable-stream.h (module 'core'): uint32_t ns3::RandomVariableStream::GetInteger() [member function] |
|
1898 |
cls.add_method('GetInteger', |
|
1899 |
'uint32_t', |
|
1900 |
[], |
|
1901 |
is_pure_virtual=True, is_virtual=True) |
|
1902 |
## random-variable-stream.h (module 'core'): ns3::RngStream * ns3::RandomVariableStream::Peek() const [member function] |
|
1903 |
cls.add_method('Peek', |
|
1904 |
'ns3::RngStream *', |
|
1905 |
[], |
|
1906 |
is_const=True, visibility='protected') |
|
1907 |
return |
|
1908 |
||
6881
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1909 |
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
|
1910 |
## 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
|
1911 |
cls.add_constructor([]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1912 |
## scheduler.h (module 'core'): 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
|
1913 |
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
|
1914 |
## 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
|
1915 |
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
|
1916 |
'ns3::TypeId', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1917 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1918 |
is_static=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1919 |
## 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
|
1920 |
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
|
1921 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1922 |
[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
|
1923 |
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
|
1924 |
## 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
|
1925 |
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
|
1926 |
'bool', |
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 |
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
|
1929 |
## 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
|
1930 |
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
|
1931 |
'ns3::Scheduler::Event', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1932 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1933 |
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
|
1934 |
## 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
|
1935 |
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
|
1936 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1937 |
[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
|
1938 |
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
|
1939 |
## 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
|
1940 |
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
|
1941 |
'ns3::Scheduler::Event', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1942 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1943 |
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
|
1944 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1945 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1946 |
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
|
1947 |
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
|
1948 |
## 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
|
1949 |
cls.add_constructor([]) |
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::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
|
1951 |
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
|
1952 |
## 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
|
1953 |
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
|
1954 |
## 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
|
1955 |
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
|
1956 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1957 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1958 |
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
|
1959 |
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
|
1960 |
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
|
1961 |
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
|
1962 |
## 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
|
1963 |
cls.add_constructor([]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1964 |
## 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
|
1965 |
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
|
1966 |
## 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
|
1967 |
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
|
1968 |
## 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
|
1969 |
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
|
1970 |
## 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
|
1971 |
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
|
1972 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1973 |
|
8880 | 1974 |
def register_Ns3SequentialRandomVariable_methods(root_module, cls): |
1975 |
## random-variable-stream.h (module 'core'): static ns3::TypeId ns3::SequentialRandomVariable::GetTypeId() [member function] |
|
1976 |
cls.add_method('GetTypeId', |
|
1977 |
'ns3::TypeId', |
|
1978 |
[], |
|
1979 |
is_static=True) |
|
1980 |
## random-variable-stream.h (module 'core'): ns3::SequentialRandomVariable::SequentialRandomVariable() [constructor] |
|
1981 |
cls.add_constructor([]) |
|
1982 |
## random-variable-stream.h (module 'core'): double ns3::SequentialRandomVariable::GetMin() const [member function] |
|
1983 |
cls.add_method('GetMin', |
|
1984 |
'double', |
|
1985 |
[], |
|
1986 |
is_const=True) |
|
1987 |
## random-variable-stream.h (module 'core'): double ns3::SequentialRandomVariable::GetMax() const [member function] |
|
1988 |
cls.add_method('GetMax', |
|
1989 |
'double', |
|
1990 |
[], |
|
1991 |
is_const=True) |
|
1992 |
## random-variable-stream.h (module 'core'): ns3::Ptr<ns3::RandomVariableStream> ns3::SequentialRandomVariable::GetIncrement() const [member function] |
|
1993 |
cls.add_method('GetIncrement', |
|
1994 |
'ns3::Ptr< ns3::RandomVariableStream >', |
|
1995 |
[], |
|
1996 |
is_const=True) |
|
1997 |
## random-variable-stream.h (module 'core'): uint32_t ns3::SequentialRandomVariable::GetConsecutive() const [member function] |
|
1998 |
cls.add_method('GetConsecutive', |
|
1999 |
'uint32_t', |
|
2000 |
[], |
|
2001 |
is_const=True) |
|
2002 |
## random-variable-stream.h (module 'core'): double ns3::SequentialRandomVariable::GetValue() [member function] |
|
2003 |
cls.add_method('GetValue', |
|
2004 |
'double', |
|
2005 |
[], |
|
2006 |
is_virtual=True) |
|
2007 |
## random-variable-stream.h (module 'core'): uint32_t ns3::SequentialRandomVariable::GetInteger() [member function] |
|
2008 |
cls.add_method('GetInteger', |
|
2009 |
'uint32_t', |
|
2010 |
[], |
|
2011 |
is_virtual=True) |
|
2012 |
return |
|
2013 |
||
6881
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2014 |
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
|
2015 |
## 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
|
2016 |
cls.add_constructor([]) |
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::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
|
2018 |
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
|
2019 |
## 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
|
2020 |
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
|
2021 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2022 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2023 |
is_static=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2024 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2025 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2026 |
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
|
2027 |
## 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
|
2028 |
cls.add_constructor([]) |
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::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
|
2030 |
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
|
2031 |
## 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
|
2032 |
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
|
2033 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2034 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2035 |
is_static=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2036 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2037 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2038 |
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
|
2039 |
## 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
|
2040 |
cls.add_constructor([]) |
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::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
|
2042 |
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
|
2043 |
## 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
|
2044 |
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
|
2045 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2046 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2047 |
is_static=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2048 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2049 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2050 |
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
|
2051 |
## 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
|
2052 |
cls.add_constructor([]) |
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::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
|
2054 |
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
|
2055 |
## 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
|
2056 |
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
|
2057 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2058 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2059 |
is_static=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2060 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2061 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2062 |
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
|
2063 |
## 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
|
2064 |
cls.add_constructor([]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2065 |
## 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
|
2066 |
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
|
2067 |
## 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
|
2068 |
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
|
2069 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2070 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2071 |
is_static=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2072 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2073 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2074 |
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
|
2075 |
## 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
|
2076 |
cls.add_constructor([]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2077 |
## 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
|
2078 |
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
|
2079 |
## 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
|
2080 |
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
|
2081 |
'void', |
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_static=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2084 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2085 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2086 |
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
|
2087 |
## 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
|
2088 |
cls.add_constructor([]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2089 |
## 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
|
2090 |
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
|
2091 |
## 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
|
2092 |
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
|
2093 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2094 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2095 |
is_static=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2096 |
return |
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 |
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
|
2099 |
## 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
|
2100 |
cls.add_constructor([]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2101 |
## 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
|
2102 |
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
|
2103 |
## 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
|
2104 |
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
|
2105 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2106 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2107 |
is_static=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2108 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2109 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2110 |
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
|
2111 |
## 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
|
2112 |
cls.add_constructor([]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2113 |
## 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
|
2114 |
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
|
2115 |
## 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
|
2116 |
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
|
2117 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2118 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2119 |
is_static=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2120 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2121 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2122 |
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
|
2123 |
## 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
|
2124 |
cls.add_constructor([]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2125 |
## simulator-impl.h (module 'core'): ns3::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
|
2126 |
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
|
2127 |
## 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
|
2128 |
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
|
2129 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2130 |
[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
|
2131 |
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
|
2132 |
## 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
|
2133 |
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
|
2134 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2135 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2136 |
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
|
2137 |
## 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
|
2138 |
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
|
2139 |
'uint32_t', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2140 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2141 |
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
|
2142 |
## 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
|
2143 |
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
|
2144 |
'ns3::Time', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2145 |
[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
|
2146 |
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
|
2147 |
## 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
|
2148 |
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
|
2149 |
'ns3::Time', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2150 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2151 |
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
|
2152 |
## 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
|
2153 |
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
|
2154 |
'uint32_t', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2155 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2156 |
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
|
2157 |
## 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
|
2158 |
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
|
2159 |
'ns3::TypeId', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2160 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2161 |
is_static=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2162 |
## 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
|
2163 |
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
|
2164 |
'bool', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2165 |
[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
|
2166 |
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
|
2167 |
## 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
|
2168 |
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
|
2169 |
'bool', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2170 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2171 |
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
|
2172 |
## 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
|
2173 |
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
|
2174 |
'ns3::Time', |
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 |
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
|
2177 |
## 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
|
2178 |
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
|
2179 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2180 |
[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
|
2181 |
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
|
2182 |
## 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
|
2183 |
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
|
2184 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2185 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2186 |
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
|
2187 |
## 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
|
2188 |
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
|
2189 |
'ns3::EventId', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2190 |
[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
|
2191 |
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
|
2192 |
## 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
|
2193 |
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
|
2194 |
'ns3::EventId', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2195 |
[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
|
2196 |
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
|
2197 |
## 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
|
2198 |
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
|
2199 |
'ns3::EventId', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2200 |
[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
|
2201 |
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
|
2202 |
## 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
|
2203 |
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
|
2204 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2205 |
[param('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
|
2206 |
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
|
2207 |
## 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
|
2208 |
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
|
2209 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2210 |
[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
|
2211 |
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
|
2212 |
## 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
|
2213 |
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
|
2214 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2215 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2216 |
is_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
|
2217 |
## 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
|
2218 |
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
|
2219 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2220 |
[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
|
2221 |
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
|
2222 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2223 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2224 |
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
|
2225 |
## 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
|
2226 |
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
|
2227 |
## 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
|
2228 |
cls.add_constructor([]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2229 |
## synchronizer.h (module 'core'): 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
|
2230 |
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
|
2231 |
'uint64_t', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2232 |
[]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2233 |
## synchronizer.h (module 'core'): 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
|
2234 |
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
|
2235 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2236 |
[]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2237 |
## synchronizer.h (module 'core'): uint64_t ns3::Synchronizer::GetCurrentRealtime() [member function] |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2238 |
cls.add_method('GetCurrentRealtime', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2239 |
'uint64_t', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2240 |
[]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2241 |
## 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
|
2242 |
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
|
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', 'ts')]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2245 |
## 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
|
2246 |
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
|
2247 |
'uint64_t', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2248 |
[]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2249 |
## 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
|
2250 |
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
|
2251 |
'ns3::TypeId', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2252 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2253 |
is_static=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2254 |
## 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
|
2255 |
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
|
2256 |
'bool', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2257 |
[]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2258 |
## synchronizer.h (module 'core'): 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
|
2259 |
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
|
2260 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2261 |
[param('bool', 'arg0')]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2262 |
## synchronizer.h (module 'core'): void ns3::Synchronizer::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
|
2263 |
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
|
2264 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2265 |
[param('uint64_t', 'ts')]) |
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'): 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
|
2267 |
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
|
2268 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2269 |
[]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2270 |
## 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
|
2271 |
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
|
2272 |
'bool', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2273 |
[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
|
2274 |
## 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
|
2275 |
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
|
2276 |
'uint64_t', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2277 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2278 |
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
|
2279 |
## 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
|
2280 |
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
|
2281 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2282 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2283 |
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
|
2284 |
## 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
|
2285 |
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
|
2286 |
'uint64_t', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2287 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2288 |
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
|
2289 |
## 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
|
2290 |
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
|
2291 |
'int64_t', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2292 |
[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
|
2293 |
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
|
2294 |
## 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
|
2295 |
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
|
2296 |
'bool', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2297 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2298 |
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
|
2299 |
## 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
|
2300 |
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
|
2301 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2302 |
[param('bool', 'arg0')], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2303 |
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
|
2304 |
## 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
|
2305 |
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
|
2306 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2307 |
[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
|
2308 |
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
|
2309 |
## 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
|
2310 |
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
|
2311 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2312 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2313 |
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
|
2314 |
## 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
|
2315 |
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
|
2316 |
'bool', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2317 |
[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
|
2318 |
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
|
2319 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2320 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2321 |
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
|
2322 |
## 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
|
2323 |
cls.add_constructor([param('ns3::SystemThread const &', 'arg0')]) |
7788 | 2324 |
## 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] |
6881
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2325 |
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')]) |
7788 | 2326 |
## system-thread.h (module 'core'): static bool ns3::SystemThread::Equals(pthread_t id) [member function] |
2327 |
cls.add_method('Equals', |
|
6881
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2328 |
'bool', |
7788 | 2329 |
[param('pthread_t', 'id')], |
2330 |
is_static=True) |
|
6881
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2331 |
## 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
|
2332 |
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
|
2333 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2334 |
[]) |
7788 | 2335 |
## system-thread.h (module 'core'): static pthread_t ns3::SystemThread::Self() [member function] |
2336 |
cls.add_method('Self', |
|
2337 |
'pthread_t', |
|
2338 |
[], |
|
2339 |
is_static=True) |
|
6881
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2340 |
## 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
|
2341 |
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
|
2342 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2343 |
[]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2344 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2345 |
|
7055
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2346 |
def register_Ns3Time_methods(root_module, cls): |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2347 |
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
|
2348 |
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
|
2349 |
cls.add_binary_comparison_operator('<') |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2350 |
cls.add_binary_comparison_operator('>') |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2351 |
cls.add_binary_comparison_operator('!=') |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2352 |
cls.add_inplace_numeric_operator('+=', param('ns3::Time const &', 'right')) |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2353 |
cls.add_inplace_numeric_operator('-=', param('ns3::Time const &', 'right')) |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2354 |
cls.add_output_stream_operator() |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2355 |
cls.add_binary_comparison_operator('<=') |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2356 |
cls.add_binary_comparison_operator('==') |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2357 |
cls.add_binary_comparison_operator('>=') |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2358 |
## nstime.h (module 'core'): ns3::Time::Time() [constructor] |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2359 |
cls.add_constructor([]) |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2360 |
## 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
|
2361 |
cls.add_constructor([param('ns3::Time const &', 'o')]) |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2362 |
## nstime.h (module 'core'): ns3::Time::Time(double v) [constructor] |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2363 |
cls.add_constructor([param('double', 'v')]) |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2364 |
## nstime.h (module 'core'): ns3::Time::Time(int v) [constructor] |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2365 |
cls.add_constructor([param('int', 'v')]) |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2366 |
## 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
|
2367 |
cls.add_constructor([param('long int', 'v')]) |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2368 |
## 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
|
2369 |
cls.add_constructor([param('long long int', 'v')]) |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2370 |
## 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
|
2371 |
cls.add_constructor([param('unsigned int', 'v')]) |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2372 |
## 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
|
2373 |
cls.add_constructor([param('long unsigned int', 'v')]) |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2374 |
## 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
|
2375 |
cls.add_constructor([param('long long unsigned int', 'v')]) |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2376 |
## 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
|
2377 |
cls.add_constructor([param('std::string const &', 's')]) |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2378 |
## 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
|
2379 |
cls.add_constructor([param('ns3::int64x64_t const &', 'value')]) |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2380 |
## 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
|
2381 |
cls.add_method('Compare', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2382 |
'int', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2383 |
[param('ns3::Time const &', 'o')], |
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'): 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
|
2386 |
cls.add_method('From', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2387 |
'ns3::Time', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2388 |
[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
|
2389 |
is_static=True) |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2390 |
## 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
|
2391 |
cls.add_method('From', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2392 |
'ns3::Time', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2393 |
[param('ns3::int64x64_t const &', 'value')], |
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'): 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
|
2396 |
cls.add_method('FromDouble', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2397 |
'ns3::Time', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2398 |
[param('double', 'value'), param('ns3::Time::Unit', 'timeUnit')], |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2399 |
is_static=True) |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2400 |
## 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
|
2401 |
cls.add_method('FromInteger', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2402 |
'ns3::Time', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2403 |
[param('uint64_t', 'value'), param('ns3::Time::Unit', 'timeUnit')], |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2404 |
is_static=True) |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2405 |
## 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
|
2406 |
cls.add_method('GetDouble', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2407 |
'double', |
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'): int64_t ns3::Time::GetFemtoSeconds() const [member function] |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2411 |
cls.add_method('GetFemtoSeconds', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2412 |
'int64_t', |
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'): int64_t ns3::Time::GetInteger() const [member function] |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2416 |
cls.add_method('GetInteger', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2417 |
'int64_t', |
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'): int64_t ns3::Time::GetMicroSeconds() const [member function] |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2421 |
cls.add_method('GetMicroSeconds', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2422 |
'int64_t', |
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'): int64_t ns3::Time::GetMilliSeconds() const [member function] |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2426 |
cls.add_method('GetMilliSeconds', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2427 |
'int64_t', |
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'): int64_t ns3::Time::GetNanoSeconds() const [member function] |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2431 |
cls.add_method('GetNanoSeconds', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2432 |
'int64_t', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2433 |
[], |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2434 |
is_const=True) |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2435 |
## 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
|
2436 |
cls.add_method('GetPicoSeconds', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2437 |
'int64_t', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2438 |
[], |
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'): static ns3::Time::Unit ns3::Time::GetResolution() [member function] |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2441 |
cls.add_method('GetResolution', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2442 |
'ns3::Time::Unit', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2443 |
[], |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2444 |
is_static=True) |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2445 |
## 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
|
2446 |
cls.add_method('GetSeconds', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2447 |
'double', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2448 |
[], |
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 |
## 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
|
2451 |
cls.add_method('GetTimeStep', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2452 |
'int64_t', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2453 |
[], |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2454 |
is_const=True) |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2455 |
## 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
|
2456 |
cls.add_method('IsNegative', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2457 |
'bool', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2458 |
[], |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2459 |
is_const=True) |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2460 |
## 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
|
2461 |
cls.add_method('IsPositive', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2462 |
'bool', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2463 |
[], |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2464 |
is_const=True) |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2465 |
## 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
|
2466 |
cls.add_method('IsStrictlyNegative', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2467 |
'bool', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2468 |
[], |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2469 |
is_const=True) |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2470 |
## 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
|
2471 |
cls.add_method('IsStrictlyPositive', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2472 |
'bool', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2473 |
[], |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2474 |
is_const=True) |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2475 |
## 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
|
2476 |
cls.add_method('IsZero', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2477 |
'bool', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2478 |
[], |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2479 |
is_const=True) |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2480 |
## 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
|
2481 |
cls.add_method('SetResolution', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2482 |
'void', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2483 |
[param('ns3::Time::Unit', 'resolution')], |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2484 |
is_static=True) |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2485 |
## 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
|
2486 |
cls.add_method('To', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2487 |
'ns3::int64x64_t', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2488 |
[param('ns3::Time::Unit', 'timeUnit')], |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2489 |
is_const=True) |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2490 |
## 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
|
2491 |
cls.add_method('ToDouble', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2492 |
'double', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2493 |
[param('ns3::Time::Unit', 'timeUnit')], |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2494 |
is_const=True) |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2495 |
## 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
|
2496 |
cls.add_method('ToInteger', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2497 |
'int64_t', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2498 |
[param('ns3::Time::Unit', 'timeUnit')], |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2499 |
is_const=True) |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2500 |
return |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
2501 |
|
6881
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2502 |
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
|
2503 |
## 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
|
2504 |
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
|
2505 |
## 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
|
2506 |
cls.add_constructor([]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2507 |
## 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
|
2508 |
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
|
2509 |
'bool', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2510 |
[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
|
2511 |
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
|
2512 |
## 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
|
2513 |
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
|
2514 |
'bool', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2515 |
[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
|
2516 |
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
|
2517 |
## 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
|
2518 |
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
|
2519 |
'bool', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2520 |
[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
|
2521 |
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
|
2522 |
## 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
|
2523 |
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
|
2524 |
'bool', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2525 |
[param('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
|
2526 |
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
|
2527 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2528 |
|
8880 | 2529 |
def register_Ns3TriangularRandomVariable_methods(root_module, cls): |
2530 |
## random-variable-stream.h (module 'core'): static ns3::TypeId ns3::TriangularRandomVariable::GetTypeId() [member function] |
|
2531 |
cls.add_method('GetTypeId', |
|
2532 |
'ns3::TypeId', |
|
2533 |
[], |
|
2534 |
is_static=True) |
|
2535 |
## random-variable-stream.h (module 'core'): ns3::TriangularRandomVariable::TriangularRandomVariable() [constructor] |
|
2536 |
cls.add_constructor([]) |
|
2537 |
## random-variable-stream.h (module 'core'): double ns3::TriangularRandomVariable::GetMean() const [member function] |
|
2538 |
cls.add_method('GetMean', |
|
2539 |
'double', |
|
2540 |
[], |
|
2541 |
is_const=True) |
|
2542 |
## random-variable-stream.h (module 'core'): double ns3::TriangularRandomVariable::GetMin() const [member function] |
|
2543 |
cls.add_method('GetMin', |
|
2544 |
'double', |
|
2545 |
[], |
|
2546 |
is_const=True) |
|
2547 |
## random-variable-stream.h (module 'core'): double ns3::TriangularRandomVariable::GetMax() const [member function] |
|
2548 |
cls.add_method('GetMax', |
|
2549 |
'double', |
|
2550 |
[], |
|
2551 |
is_const=True) |
|
2552 |
## random-variable-stream.h (module 'core'): double ns3::TriangularRandomVariable::GetValue(double mean, double min, double max) [member function] |
|
2553 |
cls.add_method('GetValue', |
|
2554 |
'double', |
|
2555 |
[param('double', 'mean'), param('double', 'min'), param('double', 'max')]) |
|
2556 |
## random-variable-stream.h (module 'core'): uint32_t ns3::TriangularRandomVariable::GetInteger(uint32_t mean, uint32_t min, uint32_t max) [member function] |
|
2557 |
cls.add_method('GetInteger', |
|
2558 |
'uint32_t', |
|
2559 |
[param('uint32_t', 'mean'), param('uint32_t', 'min'), param('uint32_t', 'max')]) |
|
2560 |
## random-variable-stream.h (module 'core'): double ns3::TriangularRandomVariable::GetValue() [member function] |
|
2561 |
cls.add_method('GetValue', |
|
2562 |
'double', |
|
2563 |
[], |
|
2564 |
is_virtual=True) |
|
2565 |
## random-variable-stream.h (module 'core'): uint32_t ns3::TriangularRandomVariable::GetInteger() [member function] |
|
2566 |
cls.add_method('GetInteger', |
|
2567 |
'uint32_t', |
|
2568 |
[], |
|
2569 |
is_virtual=True) |
|
2570 |
return |
|
2571 |
||
2572 |
def register_Ns3UniformRandomVariable_methods(root_module, cls): |
|
2573 |
## random-variable-stream.h (module 'core'): static ns3::TypeId ns3::UniformRandomVariable::GetTypeId() [member function] |
|
2574 |
cls.add_method('GetTypeId', |
|
2575 |
'ns3::TypeId', |
|
2576 |
[], |
|
2577 |
is_static=True) |
|
2578 |
## random-variable-stream.h (module 'core'): ns3::UniformRandomVariable::UniformRandomVariable() [constructor] |
|
2579 |
cls.add_constructor([]) |
|
2580 |
## random-variable-stream.h (module 'core'): double ns3::UniformRandomVariable::GetMin() const [member function] |
|
2581 |
cls.add_method('GetMin', |
|
2582 |
'double', |
|
2583 |
[], |
|
2584 |
is_const=True) |
|
2585 |
## random-variable-stream.h (module 'core'): double ns3::UniformRandomVariable::GetMax() const [member function] |
|
2586 |
cls.add_method('GetMax', |
|
2587 |
'double', |
|
2588 |
[], |
|
2589 |
is_const=True) |
|
2590 |
## random-variable-stream.h (module 'core'): double ns3::UniformRandomVariable::GetValue(double min, double max) [member function] |
|
2591 |
cls.add_method('GetValue', |
|
2592 |
'double', |
|
2593 |
[param('double', 'min'), param('double', 'max')]) |
|
2594 |
## random-variable-stream.h (module 'core'): uint32_t ns3::UniformRandomVariable::GetInteger(uint32_t min, uint32_t max) [member function] |
|
2595 |
cls.add_method('GetInteger', |
|
2596 |
'uint32_t', |
|
2597 |
[param('uint32_t', 'min'), param('uint32_t', 'max')]) |
|
2598 |
## random-variable-stream.h (module 'core'): double ns3::UniformRandomVariable::GetValue() [member function] |
|
2599 |
cls.add_method('GetValue', |
|
2600 |
'double', |
|
2601 |
[], |
|
2602 |
is_virtual=True) |
|
2603 |
## random-variable-stream.h (module 'core'): uint32_t ns3::UniformRandomVariable::GetInteger() [member function] |
|
2604 |
cls.add_method('GetInteger', |
|
2605 |
'uint32_t', |
|
2606 |
[], |
|
2607 |
is_virtual=True) |
|
2608 |
return |
|
2609 |
||
6881
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2610 |
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
|
2611 |
## 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
|
2612 |
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
|
2613 |
## 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
|
2614 |
cls.add_constructor([]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2615 |
## 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
|
2616 |
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
|
2617 |
## 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
|
2618 |
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
|
2619 |
## 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
|
2620 |
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
|
2621 |
## 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
|
2622 |
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
|
2623 |
'uint64_t', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2624 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2625 |
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
|
2626 |
## 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
|
2627 |
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
|
2628 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2629 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2630 |
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
|
2631 |
## 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
|
2632 |
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
|
2633 |
'uint64_t', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2634 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2635 |
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
|
2636 |
## 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
|
2637 |
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
|
2638 |
'int64_t', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2639 |
[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
|
2640 |
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
|
2641 |
## 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
|
2642 |
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
|
2643 |
'bool', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2644 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2645 |
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
|
2646 |
## 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
|
2647 |
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
|
2648 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2649 |
[param('bool', 'cond')], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2650 |
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
|
2651 |
## 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
|
2652 |
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
|
2653 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2654 |
[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
|
2655 |
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
|
2656 |
## 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
|
2657 |
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
|
2658 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2659 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2660 |
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
|
2661 |
## 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
|
2662 |
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
|
2663 |
'bool', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2664 |
[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
|
2665 |
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
|
2666 |
## 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
|
2667 |
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
|
2668 |
'uint64_t', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2669 |
[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
|
2670 |
visibility='protected') |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2671 |
## 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
|
2672 |
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
|
2673 |
'uint64_t', |
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 |
visibility='protected') |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2676 |
## 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
|
2677 |
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
|
2678 |
'uint64_t', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2679 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2680 |
visibility='protected') |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2681 |
## 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
|
2682 |
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
|
2683 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2684 |
[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
|
2685 |
visibility='protected') |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2686 |
## 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
|
2687 |
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
|
2688 |
'bool', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2689 |
[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
|
2690 |
visibility='protected') |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2691 |
## 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
|
2692 |
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
|
2693 |
'bool', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2694 |
[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
|
2695 |
visibility='protected') |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2696 |
## 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
|
2697 |
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
|
2698 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2699 |
[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
|
2700 |
visibility='protected') |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2701 |
## 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
|
2702 |
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
|
2703 |
'uint64_t', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2704 |
[param('timeval *', 'tv')], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2705 |
visibility='protected') |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2706 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2707 |
|
8880 | 2708 |
def register_Ns3WeibullRandomVariable_methods(root_module, cls): |
2709 |
## random-variable-stream.h (module 'core'): static ns3::TypeId ns3::WeibullRandomVariable::GetTypeId() [member function] |
|
2710 |
cls.add_method('GetTypeId', |
|
2711 |
'ns3::TypeId', |
|
2712 |
[], |
|
2713 |
is_static=True) |
|
2714 |
## random-variable-stream.h (module 'core'): ns3::WeibullRandomVariable::WeibullRandomVariable() [constructor] |
|
2715 |
cls.add_constructor([]) |
|
2716 |
## random-variable-stream.h (module 'core'): double ns3::WeibullRandomVariable::GetScale() const [member function] |
|
2717 |
cls.add_method('GetScale', |
|
2718 |
'double', |
|
2719 |
[], |
|
2720 |
is_const=True) |
|
2721 |
## random-variable-stream.h (module 'core'): double ns3::WeibullRandomVariable::GetShape() const [member function] |
|
2722 |
cls.add_method('GetShape', |
|
2723 |
'double', |
|
2724 |
[], |
|
2725 |
is_const=True) |
|
2726 |
## random-variable-stream.h (module 'core'): double ns3::WeibullRandomVariable::GetBound() const [member function] |
|
2727 |
cls.add_method('GetBound', |
|
2728 |
'double', |
|
2729 |
[], |
|
2730 |
is_const=True) |
|
2731 |
## random-variable-stream.h (module 'core'): double ns3::WeibullRandomVariable::GetValue(double scale, double shape, double bound) [member function] |
|
2732 |
cls.add_method('GetValue', |
|
2733 |
'double', |
|
2734 |
[param('double', 'scale'), param('double', 'shape'), param('double', 'bound')]) |
|
2735 |
## random-variable-stream.h (module 'core'): uint32_t ns3::WeibullRandomVariable::GetInteger(uint32_t scale, uint32_t shape, uint32_t bound) [member function] |
|
2736 |
cls.add_method('GetInteger', |
|
2737 |
'uint32_t', |
|
2738 |
[param('uint32_t', 'scale'), param('uint32_t', 'shape'), param('uint32_t', 'bound')]) |
|
2739 |
## random-variable-stream.h (module 'core'): double ns3::WeibullRandomVariable::GetValue() [member function] |
|
2740 |
cls.add_method('GetValue', |
|
2741 |
'double', |
|
2742 |
[], |
|
2743 |
is_virtual=True) |
|
2744 |
## random-variable-stream.h (module 'core'): uint32_t ns3::WeibullRandomVariable::GetInteger() [member function] |
|
2745 |
cls.add_method('GetInteger', |
|
2746 |
'uint32_t', |
|
2747 |
[], |
|
2748 |
is_virtual=True) |
|
2749 |
return |
|
2750 |
||
2751 |
def register_Ns3ZetaRandomVariable_methods(root_module, cls): |
|
2752 |
## random-variable-stream.h (module 'core'): static ns3::TypeId ns3::ZetaRandomVariable::GetTypeId() [member function] |
|
2753 |
cls.add_method('GetTypeId', |
|
2754 |
'ns3::TypeId', |
|
2755 |
[], |
|
2756 |
is_static=True) |
|
2757 |
## random-variable-stream.h (module 'core'): ns3::ZetaRandomVariable::ZetaRandomVariable() [constructor] |
|
2758 |
cls.add_constructor([]) |
|
2759 |
## random-variable-stream.h (module 'core'): double ns3::ZetaRandomVariable::GetAlpha() const [member function] |
|
2760 |
cls.add_method('GetAlpha', |
|
2761 |
'double', |
|
2762 |
[], |
|
2763 |
is_const=True) |
|
2764 |
## random-variable-stream.h (module 'core'): double ns3::ZetaRandomVariable::GetValue(double alpha) [member function] |
|
2765 |
cls.add_method('GetValue', |
|
2766 |
'double', |
|
2767 |
[param('double', 'alpha')]) |
|
2768 |
## random-variable-stream.h (module 'core'): uint32_t ns3::ZetaRandomVariable::GetInteger(uint32_t alpha) [member function] |
|
2769 |
cls.add_method('GetInteger', |
|
2770 |
'uint32_t', |
|
2771 |
[param('uint32_t', 'alpha')]) |
|
2772 |
## random-variable-stream.h (module 'core'): double ns3::ZetaRandomVariable::GetValue() [member function] |
|
2773 |
cls.add_method('GetValue', |
|
2774 |
'double', |
|
2775 |
[], |
|
2776 |
is_virtual=True) |
|
2777 |
## random-variable-stream.h (module 'core'): uint32_t ns3::ZetaRandomVariable::GetInteger() [member function] |
|
2778 |
cls.add_method('GetInteger', |
|
2779 |
'uint32_t', |
|
2780 |
[], |
|
2781 |
is_virtual=True) |
|
2782 |
return |
|
2783 |
||
2784 |
def register_Ns3ZipfRandomVariable_methods(root_module, cls): |
|
2785 |
## random-variable-stream.h (module 'core'): static ns3::TypeId ns3::ZipfRandomVariable::GetTypeId() [member function] |
|
2786 |
cls.add_method('GetTypeId', |
|
2787 |
'ns3::TypeId', |
|
2788 |
[], |
|
2789 |
is_static=True) |
|
2790 |
## random-variable-stream.h (module 'core'): ns3::ZipfRandomVariable::ZipfRandomVariable() [constructor] |
|
2791 |
cls.add_constructor([]) |
|
2792 |
## random-variable-stream.h (module 'core'): uint32_t ns3::ZipfRandomVariable::GetN() const [member function] |
|
2793 |
cls.add_method('GetN', |
|
2794 |
'uint32_t', |
|
2795 |
[], |
|
2796 |
is_const=True) |
|
2797 |
## random-variable-stream.h (module 'core'): double ns3::ZipfRandomVariable::GetAlpha() const [member function] |
|
2798 |
cls.add_method('GetAlpha', |
|
2799 |
'double', |
|
2800 |
[], |
|
2801 |
is_const=True) |
|
2802 |
## random-variable-stream.h (module 'core'): double ns3::ZipfRandomVariable::GetValue(uint32_t n, double alpha) [member function] |
|
2803 |
cls.add_method('GetValue', |
|
2804 |
'double', |
|
2805 |
[param('uint32_t', 'n'), param('double', 'alpha')]) |
|
2806 |
## random-variable-stream.h (module 'core'): uint32_t ns3::ZipfRandomVariable::GetInteger(uint32_t n, uint32_t alpha) [member function] |
|
2807 |
cls.add_method('GetInteger', |
|
2808 |
'uint32_t', |
|
2809 |
[param('uint32_t', 'n'), param('uint32_t', 'alpha')]) |
|
2810 |
## random-variable-stream.h (module 'core'): double ns3::ZipfRandomVariable::GetValue() [member function] |
|
2811 |
cls.add_method('GetValue', |
|
2812 |
'double', |
|
2813 |
[], |
|
2814 |
is_virtual=True) |
|
2815 |
## random-variable-stream.h (module 'core'): uint32_t ns3::ZipfRandomVariable::GetInteger() [member function] |
|
2816 |
cls.add_method('GetInteger', |
|
2817 |
'uint32_t', |
|
2818 |
[], |
|
2819 |
is_virtual=True) |
|
2820 |
return |
|
2821 |
||
6881
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2822 |
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
|
2823 |
## 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
|
2824 |
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
|
2825 |
## 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
|
2826 |
cls.add_constructor([]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2827 |
## 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
|
2828 |
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
|
2829 |
'bool', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2830 |
[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
|
2831 |
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
|
2832 |
## 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
|
2833 |
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
|
2834 |
'bool', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2835 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2836 |
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
|
2837 |
## 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
|
2838 |
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
|
2839 |
'bool', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2840 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2841 |
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
|
2842 |
## 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
|
2843 |
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
|
2844 |
'bool', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2845 |
[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
|
2846 |
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
|
2847 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2848 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2849 |
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
|
2850 |
## 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
|
2851 |
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
|
2852 |
## 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
|
2853 |
cls.add_constructor([]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2854 |
## 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
|
2855 |
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
|
2856 |
'bool', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2857 |
[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
|
2858 |
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
|
2859 |
## 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
|
2860 |
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
|
2861 |
'bool', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2862 |
[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
|
2863 |
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
|
2864 |
## 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
|
2865 |
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
|
2866 |
'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
|
2867 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2868 |
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
|
2869 |
## 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
|
2870 |
cls.add_method('CreateValidValue', |
20b1d370c035
Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
2871 |
'ns3::Ptr< ns3::AttributeValue >', |
20b1d370c035
Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
2872 |
[param('ns3::AttributeValue const &', 'value')], |
20b1d370c035
Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
2873 |
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
|
2874 |
## 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
|
2875 |
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
|
2876 |
'std::string', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2877 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2878 |
is_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
|
2879 |
## 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
|
2880 |
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
|
2881 |
'std::string', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2882 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2883 |
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
|
2884 |
## 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
|
2885 |
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
|
2886 |
'bool', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2887 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2888 |
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
|
2889 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2890 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2891 |
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
|
2892 |
## 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
|
2893 |
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
|
2894 |
## 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
|
2895 |
cls.add_constructor([]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2896 |
## 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
|
2897 |
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
|
2898 |
'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
|
2899 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2900 |
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
|
2901 |
## 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
|
2902 |
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
|
2903 |
'bool', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2904 |
[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
|
2905 |
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
|
2906 |
## 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
|
2907 |
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
|
2908 |
'std::string', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2909 |
[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
|
2910 |
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
|
2911 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2912 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2913 |
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
|
2914 |
## 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
|
2915 |
cls.add_constructor([]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2916 |
## 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
|
2917 |
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
|
2918 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2919 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2920 |
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
|
2921 |
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
|
2922 |
## 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
|
2923 |
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
|
2924 |
## 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
|
2925 |
cls.add_constructor([]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2926 |
## 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
|
2927 |
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
|
2928 |
## 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
|
2929 |
cls.add_method('Copy', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2930 |
'ns3::Ptr< ns3::AttributeValue >', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2931 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2932 |
is_const=True, is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2933 |
## 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
|
2934 |
cls.add_method('DeserializeFromString', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2935 |
'bool', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2936 |
[param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2937 |
is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2938 |
## 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
|
2939 |
cls.add_method('Get', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2940 |
'bool', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2941 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2942 |
is_const=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2943 |
## 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
|
2944 |
cls.add_method('SerializeToString', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2945 |
'std::string', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2946 |
[param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2947 |
is_const=True, is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2948 |
## 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
|
2949 |
cls.add_method('Set', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2950 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2951 |
[param('bool', 'value')]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2952 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2953 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2954 |
def register_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
|
2955 |
## 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
|
2956 |
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
|
2957 |
## 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
|
2958 |
cls.add_constructor([]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2959 |
## 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
|
2960 |
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
|
2961 |
'ns3::TypeId', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2962 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2963 |
is_static=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2964 |
## 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
|
2965 |
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
|
2966 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2967 |
[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
|
2968 |
is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2969 |
## 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
|
2970 |
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
|
2971 |
'bool', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2972 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2973 |
is_const=True, is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2974 |
## 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
|
2975 |
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
|
2976 |
'ns3::Scheduler::Event', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2977 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2978 |
is_const=True, is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2979 |
## 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
|
2980 |
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
|
2981 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2982 |
[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
|
2983 |
is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2984 |
## 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
|
2985 |
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
|
2986 |
'ns3::Scheduler::Event', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2987 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2988 |
is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2989 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2990 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2991 |
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
|
2992 |
## 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
|
2993 |
cls.add_constructor([]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2994 |
## 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
|
2995 |
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
|
2996 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2997 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2998 |
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
|
2999 |
## 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
|
3000 |
cls.add_constructor([]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3001 |
## 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
|
3002 |
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
|
3003 |
## 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
|
3004 |
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
|
3005 |
'bool', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3006 |
[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
|
3007 |
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
|
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_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
|
3011 |
## 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
|
3012 |
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
|
3013 |
## 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
|
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 |
## 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
|
3016 |
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
|
3017 |
## 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
|
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 |
## 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
|
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 |
## 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
|
3028 |
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
|
3029 |
'std::string', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3030 |
[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
|
3031 |
is_const=True, is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3032 |
## 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
|
3033 |
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
|
3034 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3035 |
[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
|
3036 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3037 |
|
8880 | 3038 |
def register_Ns3ConstantRandomVariable_methods(root_module, cls): |
3039 |
## random-variable-stream.h (module 'core'): static ns3::TypeId ns3::ConstantRandomVariable::GetTypeId() [member function] |
|
3040 |
cls.add_method('GetTypeId', |
|
3041 |
'ns3::TypeId', |
|
3042 |
[], |
|
3043 |
is_static=True) |
|
3044 |
## random-variable-stream.h (module 'core'): ns3::ConstantRandomVariable::ConstantRandomVariable() [constructor] |
|
3045 |
cls.add_constructor([]) |
|
3046 |
## random-variable-stream.h (module 'core'): double ns3::ConstantRandomVariable::GetConstant() const [member function] |
|
3047 |
cls.add_method('GetConstant', |
|
3048 |
'double', |
|
3049 |
[], |
|
3050 |
is_const=True) |
|
3051 |
## random-variable-stream.h (module 'core'): double ns3::ConstantRandomVariable::GetValue(double constant) [member function] |
|
3052 |
cls.add_method('GetValue', |
|
3053 |
'double', |
|
3054 |
[param('double', 'constant')]) |
|
3055 |
## random-variable-stream.h (module 'core'): uint32_t ns3::ConstantRandomVariable::GetInteger(uint32_t constant) [member function] |
|
3056 |
cls.add_method('GetInteger', |
|
3057 |
'uint32_t', |
|
3058 |
[param('uint32_t', 'constant')]) |
|
3059 |
## random-variable-stream.h (module 'core'): double ns3::ConstantRandomVariable::GetValue() [member function] |
|
3060 |
cls.add_method('GetValue', |
|
3061 |
'double', |
|
3062 |
[], |
|
3063 |
is_virtual=True) |
|
3064 |
## random-variable-stream.h (module 'core'): uint32_t ns3::ConstantRandomVariable::GetInteger() [member function] |
|
3065 |
cls.add_method('GetInteger', |
|
3066 |
'uint32_t', |
|
3067 |
[], |
|
3068 |
is_virtual=True) |
|
3069 |
return |
|
3070 |
||
6881
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3071 |
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
|
3072 |
## 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
|
3073 |
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
|
3074 |
## 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
|
3075 |
cls.add_constructor([]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3076 |
## 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
|
3077 |
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
|
3078 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3079 |
[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
|
3080 |
is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3081 |
## 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
|
3082 |
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
|
3083 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3084 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3085 |
is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3086 |
## 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
|
3087 |
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
|
3088 |
'uint32_t', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3089 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3090 |
is_const=True, is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3091 |
## 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
|
3092 |
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
|
3093 |
'ns3::Time', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3094 |
[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
|
3095 |
is_const=True, is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3096 |
## 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
|
3097 |
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
|
3098 |
'ns3::Time', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3099 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3100 |
is_const=True, is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3101 |
## 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
|
3102 |
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
|
3103 |
'uint32_t', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3104 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3105 |
is_const=True, is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3106 |
## 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
|
3107 |
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
|
3108 |
'ns3::TypeId', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3109 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3110 |
is_static=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3111 |
## 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
|
3112 |
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
|
3113 |
'bool', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3114 |
[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
|
3115 |
is_const=True, is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3116 |
## 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
|
3117 |
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
|
3118 |
'bool', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3119 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3120 |
is_const=True, is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3121 |
## 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
|
3122 |
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
|
3123 |
'ns3::Time', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3124 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3125 |
is_const=True, is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3126 |
## 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
|
3127 |
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
|
3128 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3129 |
[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
|
3130 |
is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3131 |
## 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
|
3132 |
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
|
3133 |
'void', |
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_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3136 |
## 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
|
3137 |
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
|
3138 |
'ns3::EventId', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3139 |
[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
|
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 |
## 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
|
3142 |
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
|
3143 |
'ns3::EventId', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3144 |
[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
|
3145 |
is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3146 |
## 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
|
3147 |
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
|
3148 |
'ns3::EventId', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3149 |
[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
|
3150 |
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 |
## 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
|
3152 |
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
|
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('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
|
3155 |
is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3156 |
## 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
|
3157 |
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
|
3158 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3159 |
[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
|
3160 |
is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3161 |
## 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
|
3162 |
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
|
3163 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3164 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3165 |
is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3166 |
## 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
|
3167 |
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
|
3168 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3169 |
[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
|
3170 |
is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3171 |
## 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
|
3172 |
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
|
3173 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3174 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3175 |
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
|
3176 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3177 |
|
8880 | 3178 |
def register_Ns3DeterministicRandomVariable_methods(root_module, cls): |
3179 |
## random-variable-stream.h (module 'core'): static ns3::TypeId ns3::DeterministicRandomVariable::GetTypeId() [member function] |
|
3180 |
cls.add_method('GetTypeId', |
|
3181 |
'ns3::TypeId', |
|
3182 |
[], |
|
3183 |
is_static=True) |
|
3184 |
## random-variable-stream.h (module 'core'): ns3::DeterministicRandomVariable::DeterministicRandomVariable() [constructor] |
|
3185 |
cls.add_constructor([]) |
|
3186 |
## random-variable-stream.h (module 'core'): void ns3::DeterministicRandomVariable::SetValueArray(double * values, uint64_t length) [member function] |
|
3187 |
cls.add_method('SetValueArray', |
|
3188 |
'void', |
|
3189 |
[param('double *', 'values'), param('uint64_t', 'length')]) |
|
3190 |
## random-variable-stream.h (module 'core'): double ns3::DeterministicRandomVariable::GetValue() [member function] |
|
3191 |
cls.add_method('GetValue', |
|
3192 |
'double', |
|
3193 |
[], |
|
3194 |
is_virtual=True) |
|
3195 |
## random-variable-stream.h (module 'core'): uint32_t ns3::DeterministicRandomVariable::GetInteger() [member function] |
|
3196 |
cls.add_method('GetInteger', |
|
3197 |
'uint32_t', |
|
3198 |
[], |
|
3199 |
is_virtual=True) |
|
3200 |
return |
|
3201 |
||
6881
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3202 |
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
|
3203 |
## 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
|
3204 |
cls.add_constructor([]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3205 |
## 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
|
3206 |
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
|
3207 |
## 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
|
3208 |
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
|
3209 |
## 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
|
3210 |
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
|
3211 |
'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
|
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 |
## 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
|
3215 |
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
|
3216 |
'bool', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3217 |
[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
|
3218 |
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 |
## 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
|
3220 |
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
|
3221 |
'double', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3222 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3223 |
is_const=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3224 |
## 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
|
3225 |
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
|
3226 |
'std::string', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3227 |
[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
|
3228 |
is_const=True, 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 |
## 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
|
3230 |
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
|
3231 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3232 |
[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
|
3233 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3234 |
|
8880 | 3235 |
def register_Ns3EmpiricalRandomVariable_methods(root_module, cls): |
3236 |
## random-variable-stream.h (module 'core'): ns3::EmpiricalRandomVariable::EmpiricalRandomVariable() [constructor] |
|
3237 |
cls.add_constructor([]) |
|
3238 |
## random-variable-stream.h (module 'core'): void ns3::EmpiricalRandomVariable::CDF(double v, double c) [member function] |
|
3239 |
cls.add_method('CDF', |
|
3240 |
'void', |
|
3241 |
[param('double', 'v'), param('double', 'c')]) |
|
3242 |
## random-variable-stream.h (module 'core'): uint32_t ns3::EmpiricalRandomVariable::GetInteger() [member function] |
|
3243 |
cls.add_method('GetInteger', |
|
3244 |
'uint32_t', |
|
3245 |
[], |
|
3246 |
is_virtual=True) |
|
3247 |
## random-variable-stream.h (module 'core'): static ns3::TypeId ns3::EmpiricalRandomVariable::GetTypeId() [member function] |
|
3248 |
cls.add_method('GetTypeId', |
|
3249 |
'ns3::TypeId', |
|
3250 |
[], |
|
3251 |
is_static=True) |
|
3252 |
## random-variable-stream.h (module 'core'): double ns3::EmpiricalRandomVariable::GetValue() [member function] |
|
3253 |
cls.add_method('GetValue', |
|
3254 |
'double', |
|
3255 |
[], |
|
3256 |
is_virtual=True) |
|
3257 |
## random-variable-stream.h (module 'core'): double ns3::EmpiricalRandomVariable::Interpolate(double arg0, double arg1, double arg2, double arg3, double arg4) [member function] |
|
3258 |
cls.add_method('Interpolate', |
|
3259 |
'double', |
|
3260 |
[param('double', 'arg0'), param('double', 'arg1'), param('double', 'arg2'), param('double', 'arg3'), param('double', 'arg4')], |
|
3261 |
visibility='private', is_virtual=True) |
|
3262 |
## random-variable-stream.h (module 'core'): void ns3::EmpiricalRandomVariable::Validate() [member function] |
|
3263 |
cls.add_method('Validate', |
|
3264 |
'void', |
|
3265 |
[], |
|
3266 |
visibility='private', is_virtual=True) |
|
3267 |
return |
|
3268 |
||
6881
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3269 |
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
|
3270 |
## 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
|
3271 |
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
|
3272 |
## 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
|
3273 |
cls.add_constructor([]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3274 |
## 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
|
3275 |
cls.add_method('Copy', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3276 |
'ns3::Ptr< ns3::AttributeValue >', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3277 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3278 |
is_const=True, 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
|
3279 |
## 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
|
3280 |
cls.add_method('DeserializeFromString', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3281 |
'bool', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3282 |
[param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3283 |
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
|
3284 |
## 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
|
3285 |
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
|
3286 |
'std::string', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3287 |
[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
|
3288 |
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
|
3289 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3290 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3291 |
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
|
3292 |
## 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
|
3293 |
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
|
3294 |
## 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
|
3295 |
cls.add_constructor([]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3296 |
## 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
|
3297 |
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
|
3298 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3299 |
[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
|
3300 |
## 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
|
3301 |
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
|
3302 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3303 |
[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
|
3304 |
## 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
|
3305 |
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
|
3306 |
'bool', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3307 |
[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
|
3308 |
is_const=True, is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3309 |
## 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
|
3310 |
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
|
3311 |
'bool', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3312 |
[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
|
3313 |
is_const=True, is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3314 |
## 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
|
3315 |
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
|
3316 |
'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
|
3317 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3318 |
is_const=True, is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3319 |
## 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
|
3320 |
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
|
3321 |
'std::string', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3322 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3323 |
is_const=True, is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3324 |
## 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
|
3325 |
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
|
3326 |
'std::string', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3327 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3328 |
is_const=True, is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3329 |
## 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
|
3330 |
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
|
3331 |
'bool', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3332 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3333 |
is_const=True, is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3334 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3335 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3336 |
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
|
3337 |
## 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
|
3338 |
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
|
3339 |
## 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
|
3340 |
cls.add_constructor([]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3341 |
## 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
|
3342 |
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
|
3343 |
## 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
|
3344 |
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
|
3345 |
'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
|
3346 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3347 |
is_const=True, is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3348 |
## 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
|
3349 |
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
|
3350 |
'bool', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3351 |
[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
|
3352 |
is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3353 |
## 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
|
3354 |
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
|
3355 |
'int', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3356 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3357 |
is_const=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3358 |
## 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
|
3359 |
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
|
3360 |
'std::string', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3361 |
[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
|
3362 |
is_const=True, is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3363 |
## 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
|
3364 |
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
|
3365 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3366 |
[param('int', 'v')]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3367 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3368 |
|
8880 | 3369 |
def register_Ns3ErlangRandomVariable_methods(root_module, cls): |
3370 |
## random-variable-stream.h (module 'core'): static ns3::TypeId ns3::ErlangRandomVariable::GetTypeId() [member function] |
|
3371 |
cls.add_method('GetTypeId', |
|
3372 |
'ns3::TypeId', |
|
3373 |
[], |
|
3374 |
is_static=True) |
|
3375 |
## random-variable-stream.h (module 'core'): ns3::ErlangRandomVariable::ErlangRandomVariable() [constructor] |
|
3376 |
cls.add_constructor([]) |
|
3377 |
## random-variable-stream.h (module 'core'): uint32_t ns3::ErlangRandomVariable::GetK() const [member function] |
|
3378 |
cls.add_method('GetK', |
|
3379 |
'uint32_t', |
|
3380 |
[], |
|
3381 |
is_const=True) |
|
3382 |
## random-variable-stream.h (module 'core'): double ns3::ErlangRandomVariable::GetLambda() const [member function] |
|
3383 |
cls.add_method('GetLambda', |
|
3384 |
'double', |
|
3385 |
[], |
|
3386 |
is_const=True) |
|
3387 |
## random-variable-stream.h (module 'core'): double ns3::ErlangRandomVariable::GetValue(uint32_t k, double lambda) [member function] |
|
3388 |
cls.add_method('GetValue', |
|
3389 |
'double', |
|
3390 |
[param('uint32_t', 'k'), param('double', 'lambda')]) |
|
3391 |
## random-variable-stream.h (module 'core'): uint32_t ns3::ErlangRandomVariable::GetInteger(uint32_t k, uint32_t lambda) [member function] |
|
3392 |
cls.add_method('GetInteger', |
|
3393 |
'uint32_t', |
|
3394 |
[param('uint32_t', 'k'), param('uint32_t', 'lambda')]) |
|
3395 |
## random-variable-stream.h (module 'core'): double ns3::ErlangRandomVariable::GetValue() [member function] |
|
3396 |
cls.add_method('GetValue', |
|
3397 |
'double', |
|
3398 |
[], |
|
3399 |
is_virtual=True) |
|
3400 |
## random-variable-stream.h (module 'core'): uint32_t ns3::ErlangRandomVariable::GetInteger() [member function] |
|
3401 |
cls.add_method('GetInteger', |
|
3402 |
'uint32_t', |
|
3403 |
[], |
|
3404 |
is_virtual=True) |
|
3405 |
return |
|
3406 |
||
6881
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3407 |
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
|
3408 |
## 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
|
3409 |
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
|
3410 |
## 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
|
3411 |
cls.add_constructor([]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3412 |
## 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
|
3413 |
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
|
3414 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3415 |
[]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3416 |
## 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
|
3417 |
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
|
3418 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3419 |
[]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3420 |
## 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
|
3421 |
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
|
3422 |
'bool', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3423 |
[]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3424 |
## 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
|
3425 |
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
|
3426 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3427 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3428 |
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
|
3429 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3430 |
|
8880 | 3431 |
def register_Ns3ExponentialRandomVariable_methods(root_module, cls): |
3432 |
## random-variable-stream.h (module 'core'): static ns3::TypeId ns3::ExponentialRandomVariable::GetTypeId() [member function] |
|
3433 |
cls.add_method('GetTypeId', |
|
3434 |
'ns3::TypeId', |
|
3435 |
[], |
|
3436 |
is_static=True) |
|
3437 |
## random-variable-stream.h (module 'core'): ns3::ExponentialRandomVariable::ExponentialRandomVariable() [constructor] |
|
3438 |
cls.add_constructor([]) |
|
3439 |
## random-variable-stream.h (module 'core'): double ns3::ExponentialRandomVariable::GetMean() const [member function] |
|
3440 |
cls.add_method('GetMean', |
|
3441 |
'double', |
|
3442 |
[], |
|
3443 |
is_const=True) |
|
3444 |
## random-variable-stream.h (module 'core'): double ns3::ExponentialRandomVariable::GetBound() const [member function] |
|
3445 |
cls.add_method('GetBound', |
|
3446 |
'double', |
|
3447 |
[], |
|
3448 |
is_const=True) |
|
3449 |
## random-variable-stream.h (module 'core'): double ns3::ExponentialRandomVariable::GetValue(double mean, double bound) [member function] |
|
3450 |
cls.add_method('GetValue', |
|
3451 |
'double', |
|
3452 |
[param('double', 'mean'), param('double', 'bound')]) |
|
3453 |
## random-variable-stream.h (module 'core'): uint32_t ns3::ExponentialRandomVariable::GetInteger(uint32_t mean, uint32_t bound) [member function] |
|
3454 |
cls.add_method('GetInteger', |
|
3455 |
'uint32_t', |
|
3456 |
[param('uint32_t', 'mean'), param('uint32_t', 'bound')]) |
|
3457 |
## random-variable-stream.h (module 'core'): double ns3::ExponentialRandomVariable::GetValue() [member function] |
|
3458 |
cls.add_method('GetValue', |
|
3459 |
'double', |
|
3460 |
[], |
|
3461 |
is_virtual=True) |
|
3462 |
## random-variable-stream.h (module 'core'): uint32_t ns3::ExponentialRandomVariable::GetInteger() [member function] |
|
3463 |
cls.add_method('GetInteger', |
|
3464 |
'uint32_t', |
|
3465 |
[], |
|
3466 |
is_virtual=True) |
|
3467 |
return |
|
3468 |
||
6881
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3469 |
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
|
3470 |
## 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
|
3471 |
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
|
3472 |
## 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
|
3473 |
cls.add_constructor([]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3474 |
## unix-fd-reader.h (module 'core'): void ns3::FdReader::Start(int fd, ns3::Callback<void, unsigned char*, long, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> readCallback) [member function] |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3475 |
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
|
3476 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3477 |
[param('int', 'fd'), param('ns3::Callback< void, unsigned char *, long, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'readCallback')]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3478 |
## 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
|
3479 |
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
|
3480 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3481 |
[]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3482 |
## 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
|
3483 |
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
|
3484 |
'ns3::FdReader::Data', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3485 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3486 |
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
|
3487 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3488 |
|
8880 | 3489 |
def register_Ns3GammaRandomVariable_methods(root_module, cls): |
3490 |
## random-variable-stream.h (module 'core'): static ns3::TypeId ns3::GammaRandomVariable::GetTypeId() [member function] |
|
3491 |
cls.add_method('GetTypeId', |
|
3492 |
'ns3::TypeId', |
|
3493 |
[], |
|
3494 |
is_static=True) |
|
3495 |
## random-variable-stream.h (module 'core'): ns3::GammaRandomVariable::GammaRandomVariable() [constructor] |
|
3496 |
cls.add_constructor([]) |
|
3497 |
## random-variable-stream.h (module 'core'): double ns3::GammaRandomVariable::GetAlpha() const [member function] |
|
3498 |
cls.add_method('GetAlpha', |
|
3499 |
'double', |
|
3500 |
[], |
|
3501 |
is_const=True) |
|
3502 |
## random-variable-stream.h (module 'core'): double ns3::GammaRandomVariable::GetBeta() const [member function] |
|
3503 |
cls.add_method('GetBeta', |
|
3504 |
'double', |
|
3505 |
[], |
|
3506 |
is_const=True) |
|
3507 |
## random-variable-stream.h (module 'core'): double ns3::GammaRandomVariable::GetValue(double alpha, double beta) [member function] |
|
3508 |
cls.add_method('GetValue', |
|
3509 |
'double', |
|
3510 |
[param('double', 'alpha'), param('double', 'beta')]) |
|
3511 |
## random-variable-stream.h (module 'core'): uint32_t ns3::GammaRandomVariable::GetInteger(uint32_t alpha, uint32_t beta) [member function] |
|
3512 |
cls.add_method('GetInteger', |
|
3513 |
'uint32_t', |
|
3514 |
[param('uint32_t', 'alpha'), param('uint32_t', 'beta')]) |
|
3515 |
## random-variable-stream.h (module 'core'): double ns3::GammaRandomVariable::GetValue() [member function] |
|
3516 |
cls.add_method('GetValue', |
|
3517 |
'double', |
|
3518 |
[], |
|
3519 |
is_virtual=True) |
|
3520 |
## random-variable-stream.h (module 'core'): uint32_t ns3::GammaRandomVariable::GetInteger() [member function] |
|
3521 |
cls.add_method('GetInteger', |
|
3522 |
'uint32_t', |
|
3523 |
[], |
|
3524 |
is_virtual=True) |
|
3525 |
return |
|
3526 |
||
6881
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3527 |
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
|
3528 |
## 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
|
3529 |
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
|
3530 |
## 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
|
3531 |
cls.add_constructor([]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3532 |
## 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
|
3533 |
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
|
3534 |
'ns3::TypeId', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3535 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3536 |
is_static=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3537 |
## 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
|
3538 |
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
|
3539 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3540 |
[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
|
3541 |
is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3542 |
## 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
|
3543 |
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
|
3544 |
'bool', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3545 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3546 |
is_const=True, is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3547 |
## 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
|
3548 |
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
|
3549 |
'ns3::Scheduler::Event', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3550 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3551 |
is_const=True, is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3552 |
## 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
|
3553 |
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
|
3554 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3555 |
[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
|
3556 |
is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3557 |
## 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
|
3558 |
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
|
3559 |
'ns3::Scheduler::Event', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3560 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3561 |
is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3562 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3563 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3564 |
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
|
3565 |
## 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
|
3566 |
cls.add_constructor([]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3567 |
## 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
|
3568 |
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
|
3569 |
## 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
|
3570 |
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
|
3571 |
## 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
|
3572 |
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
|
3573 |
'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
|
3574 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3575 |
is_const=True, is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3576 |
## 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
|
3577 |
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
|
3578 |
'bool', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3579 |
[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
|
3580 |
is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3581 |
## 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
|
3582 |
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
|
3583 |
'int64_t', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3584 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3585 |
is_const=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3586 |
## 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
|
3587 |
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
|
3588 |
'std::string', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3589 |
[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
|
3590 |
is_const=True, is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3591 |
## 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
|
3592 |
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
|
3593 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3594 |
[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
|
3595 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3596 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3597 |
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
|
3598 |
## 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
|
3599 |
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
|
3600 |
## 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
|
3601 |
cls.add_constructor([]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3602 |
## 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
|
3603 |
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
|
3604 |
'ns3::TypeId', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3605 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3606 |
is_static=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3607 |
## 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
|
3608 |
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
|
3609 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3610 |
[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
|
3611 |
is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3612 |
## 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
|
3613 |
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
|
3614 |
'bool', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3615 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3616 |
is_const=True, is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3617 |
## 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
|
3618 |
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
|
3619 |
'ns3::Scheduler::Event', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3620 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3621 |
is_const=True, is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3622 |
## 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
|
3623 |
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
|
3624 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3625 |
[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
|
3626 |
is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3627 |
## 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
|
3628 |
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
|
3629 |
'ns3::Scheduler::Event', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3630 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3631 |
is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3632 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3633 |
|
8880 | 3634 |
def register_Ns3LogNormalRandomVariable_methods(root_module, cls): |
3635 |
## random-variable-stream.h (module 'core'): static ns3::TypeId ns3::LogNormalRandomVariable::GetTypeId() [member function] |
|
3636 |
cls.add_method('GetTypeId', |
|
3637 |
'ns3::TypeId', |
|
3638 |
[], |
|
3639 |
is_static=True) |
|
3640 |
## random-variable-stream.h (module 'core'): ns3::LogNormalRandomVariable::LogNormalRandomVariable() [constructor] |
|
3641 |
cls.add_constructor([]) |
|
3642 |
## random-variable-stream.h (module 'core'): double ns3::LogNormalRandomVariable::GetMu() const [member function] |
|
3643 |
cls.add_method('GetMu', |
|
3644 |
'double', |
|
3645 |
[], |
|
3646 |
is_const=True) |
|
3647 |
## random-variable-stream.h (module 'core'): double ns3::LogNormalRandomVariable::GetSigma() const [member function] |
|
3648 |
cls.add_method('GetSigma', |
|
3649 |
'double', |
|
3650 |
[], |
|
3651 |
is_const=True) |
|
3652 |
## random-variable-stream.h (module 'core'): double ns3::LogNormalRandomVariable::GetValue(double mu, double sigma) [member function] |
|
3653 |
cls.add_method('GetValue', |
|
3654 |
'double', |
|
3655 |
[param('double', 'mu'), param('double', 'sigma')]) |
|
3656 |
## random-variable-stream.h (module 'core'): uint32_t ns3::LogNormalRandomVariable::GetInteger(uint32_t mu, uint32_t sigma) [member function] |
|
3657 |
cls.add_method('GetInteger', |
|
3658 |
'uint32_t', |
|
3659 |
[param('uint32_t', 'mu'), param('uint32_t', 'sigma')]) |
|
3660 |
## random-variable-stream.h (module 'core'): double ns3::LogNormalRandomVariable::GetValue() [member function] |
|
3661 |
cls.add_method('GetValue', |
|
3662 |
'double', |
|
3663 |
[], |
|
3664 |
is_virtual=True) |
|
3665 |
## random-variable-stream.h (module 'core'): uint32_t ns3::LogNormalRandomVariable::GetInteger() [member function] |
|
3666 |
cls.add_method('GetInteger', |
|
3667 |
'uint32_t', |
|
3668 |
[], |
|
3669 |
is_virtual=True) |
|
3670 |
return |
|
3671 |
||
6881
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3672 |
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
|
3673 |
## 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
|
3674 |
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
|
3675 |
## 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
|
3676 |
cls.add_constructor([]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3677 |
## 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
|
3678 |
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
|
3679 |
'ns3::TypeId', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3680 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3681 |
is_static=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3682 |
## 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
|
3683 |
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
|
3684 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3685 |
[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
|
3686 |
is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3687 |
## 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
|
3688 |
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
|
3689 |
'bool', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3690 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3691 |
is_const=True, is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3692 |
## 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
|
3693 |
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
|
3694 |
'ns3::Scheduler::Event', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3695 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3696 |
is_const=True, is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3697 |
## 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
|
3698 |
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
|
3699 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3700 |
[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
|
3701 |
is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3702 |
## 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
|
3703 |
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
|
3704 |
'ns3::Scheduler::Event', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3705 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3706 |
is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3707 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3708 |
|
8880 | 3709 |
def register_Ns3NormalRandomVariable_methods(root_module, cls): |
3710 |
## random-variable-stream.h (module 'core'): ns3::NormalRandomVariable::INFINITE_VALUE [variable] |
|
3711 |
cls.add_static_attribute('INFINITE_VALUE', 'double const', is_const=True) |
|
3712 |
## random-variable-stream.h (module 'core'): static ns3::TypeId ns3::NormalRandomVariable::GetTypeId() [member function] |
|
3713 |
cls.add_method('GetTypeId', |
|
3714 |
'ns3::TypeId', |
|
3715 |
[], |
|
3716 |
is_static=True) |
|
3717 |
## random-variable-stream.h (module 'core'): ns3::NormalRandomVariable::NormalRandomVariable() [constructor] |
|
3718 |
cls.add_constructor([]) |
|
3719 |
## random-variable-stream.h (module 'core'): double ns3::NormalRandomVariable::GetMean() const [member function] |
|
3720 |
cls.add_method('GetMean', |
|
3721 |
'double', |
|
3722 |
[], |
|
3723 |
is_const=True) |
|
3724 |
## random-variable-stream.h (module 'core'): double ns3::NormalRandomVariable::GetVariance() const [member function] |
|
3725 |
cls.add_method('GetVariance', |
|
3726 |
'double', |
|
3727 |
[], |
|
3728 |
is_const=True) |
|
3729 |
## random-variable-stream.h (module 'core'): double ns3::NormalRandomVariable::GetBound() const [member function] |
|
3730 |
cls.add_method('GetBound', |
|
3731 |
'double', |
|
3732 |
[], |
|
3733 |
is_const=True) |
|
9114 | 3734 |
## random-variable-stream.h (module 'core'): double ns3::NormalRandomVariable::GetValue(double mean, double variance, double bound=ns3::NormalRandomVariable::INFINITE_VALUE) [member function] |
8880 | 3735 |
cls.add_method('GetValue', |
3736 |
'double', |
|
9114 | 3737 |
[param('double', 'mean'), param('double', 'variance'), param('double', 'bound', default_value='ns3::NormalRandomVariable::INFINITE_VALUE')]) |
8880 | 3738 |
## random-variable-stream.h (module 'core'): uint32_t ns3::NormalRandomVariable::GetInteger(uint32_t mean, uint32_t variance, uint32_t bound) [member function] |
3739 |
cls.add_method('GetInteger', |
|
3740 |
'uint32_t', |
|
3741 |
[param('uint32_t', 'mean'), param('uint32_t', 'variance'), param('uint32_t', 'bound')]) |
|
3742 |
## random-variable-stream.h (module 'core'): double ns3::NormalRandomVariable::GetValue() [member function] |
|
3743 |
cls.add_method('GetValue', |
|
3744 |
'double', |
|
3745 |
[], |
|
3746 |
is_virtual=True) |
|
3747 |
## random-variable-stream.h (module 'core'): uint32_t ns3::NormalRandomVariable::GetInteger() [member function] |
|
3748 |
cls.add_method('GetInteger', |
|
3749 |
'uint32_t', |
|
3750 |
[], |
|
3751 |
is_virtual=True) |
|
3752 |
return |
|
3753 |
||
6881
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3754 |
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
|
3755 |
## 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
|
3756 |
cls.add_constructor([]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3757 |
## 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
|
3758 |
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
|
3759 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3760 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3761 |
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
|
3762 |
## 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
|
3763 |
cls.add_constructor([]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3764 |
## 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
|
3765 |
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
|
3766 |
## 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
|
3767 |
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
|
3768 |
## 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
|
3769 |
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
|
3770 |
'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
|
3771 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3772 |
is_const=True, is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3773 |
## 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
|
3774 |
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
|
3775 |
'bool', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3776 |
[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
|
3777 |
is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3778 |
## 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
|
3779 |
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
|
3780 |
'ns3::ObjectFactory', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3781 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3782 |
is_const=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3783 |
## 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
|
3784 |
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
|
3785 |
'std::string', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3786 |
[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
|
3787 |
is_const=True, is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3788 |
## 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
|
3789 |
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
|
3790 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3791 |
[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
|
3792 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3793 |
|
7420
ca9c09839724
Add a couple of includes and rescan core module's bindings
Mitch Watrous <watrous@u.washington.edu>
parents:
7407
diff
changeset
|
3794 |
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
|
3795 |
## 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
|
3796 |
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
|
3797 |
## 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
|
3798 |
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
|
3799 |
## 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
|
3800 |
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
|
3801 |
'bool', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3802 |
[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
|
3803 |
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
|
3804 |
## 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
|
3805 |
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
|
3806 |
'bool', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3807 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3808 |
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
|
3809 |
## 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
|
3810 |
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
|
3811 |
'bool', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3812 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3813 |
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
|
3814 |
## 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
|
3815 |
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
|
3816 |
'bool', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3817 |
[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
|
3818 |
is_const=True, is_virtual=True) |
8750 | 3819 |
## object-ptr-container.h (module 'core'): ns3::Ptr<ns3::Object> ns3::ObjectPtrContainerAccessor::DoGet(ns3::ObjectBase const * object, uint32_t i, uint32_t * index) 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
|
3820 |
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
|
3821 |
'ns3::Ptr< ns3::Object >', |
8750 | 3822 |
[param('ns3::ObjectBase const *', 'object'), param('uint32_t', 'i'), param('uint32_t *', 'index')], |
6881
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3823 |
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
|
3824 |
## 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
|
3825 |
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
|
3826 |
'bool', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3827 |
[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
|
3828 |
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
|
3829 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3830 |
|
7420
ca9c09839724
Add a couple of includes and rescan core module's bindings
Mitch Watrous <watrous@u.washington.edu>
parents:
7407
diff
changeset
|
3831 |
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
|
3832 |
## 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
|
3833 |
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
|
3834 |
## 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
|
3835 |
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
|
3836 |
## 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
|
3837 |
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
|
3838 |
'ns3::TypeId', |
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 |
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
|
3841 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3842 |
|
7420
ca9c09839724
Add a couple of includes and rescan core module's bindings
Mitch Watrous <watrous@u.washington.edu>
parents:
7407
diff
changeset
|
3843 |
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
|
3844 |
## 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
|
3845 |
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
|
3846 |
## 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
|
3847 |
cls.add_constructor([]) |
8750 | 3848 |
## object-ptr-container.h (module 'core'): std::_Rb_tree_const_iterator<std::pair<const unsigned int, 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
|
3849 |
cls.add_method('Begin', |
8750 | 3850 |
'std::_Rb_tree_const_iterator< std::pair< unsigned int const, ns3::Ptr< ns3::Object > > >', |
6881
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3851 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3852 |
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
|
3853 |
## 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
|
3854 |
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
|
3855 |
'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
|
3856 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3857 |
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
|
3858 |
## 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
|
3859 |
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
|
3860 |
'bool', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3861 |
[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
|
3862 |
is_virtual=True) |
8750 | 3863 |
## object-ptr-container.h (module 'core'): std::_Rb_tree_const_iterator<std::pair<const unsigned int, 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
|
3864 |
cls.add_method('End', |
8750 | 3865 |
'std::_Rb_tree_const_iterator< std::pair< unsigned int const, ns3::Ptr< ns3::Object > > >', |
6881
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3866 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3867 |
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
|
3868 |
## 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
|
3869 |
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
|
3870 |
'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
|
3871 |
[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
|
3872 |
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
|
3873 |
## 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
|
3874 |
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
|
3875 |
'uint32_t', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3876 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3877 |
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
|
3878 |
## 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
|
3879 |
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
|
3880 |
'std::string', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3881 |
[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
|
3882 |
is_const=True, is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3883 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3884 |
|
8880 | 3885 |
def register_Ns3ParetoRandomVariable_methods(root_module, cls): |
3886 |
## random-variable-stream.h (module 'core'): static ns3::TypeId ns3::ParetoRandomVariable::GetTypeId() [member function] |
|
3887 |
cls.add_method('GetTypeId', |
|
3888 |
'ns3::TypeId', |
|
3889 |
[], |
|
3890 |
is_static=True) |
|
3891 |
## random-variable-stream.h (module 'core'): ns3::ParetoRandomVariable::ParetoRandomVariable() [constructor] |
|
3892 |
cls.add_constructor([]) |
|
3893 |
## random-variable-stream.h (module 'core'): double ns3::ParetoRandomVariable::GetMean() const [member function] |
|
3894 |
cls.add_method('GetMean', |
|
3895 |
'double', |
|
3896 |
[], |
|
3897 |
is_const=True) |
|
3898 |
## random-variable-stream.h (module 'core'): double ns3::ParetoRandomVariable::GetShape() const [member function] |
|
3899 |
cls.add_method('GetShape', |
|
3900 |
'double', |
|
3901 |
[], |
|
3902 |
is_const=True) |
|
3903 |
## random-variable-stream.h (module 'core'): double ns3::ParetoRandomVariable::GetBound() const [member function] |
|
3904 |
cls.add_method('GetBound', |
|
3905 |
'double', |
|
3906 |
[], |
|
3907 |
is_const=True) |
|
3908 |
## random-variable-stream.h (module 'core'): double ns3::ParetoRandomVariable::GetValue(double mean, double shape, double bound) [member function] |
|
3909 |
cls.add_method('GetValue', |
|
3910 |
'double', |
|
3911 |
[param('double', 'mean'), param('double', 'shape'), param('double', 'bound')]) |
|
3912 |
## random-variable-stream.h (module 'core'): uint32_t ns3::ParetoRandomVariable::GetInteger(uint32_t mean, uint32_t shape, uint32_t bound) [member function] |
|
3913 |
cls.add_method('GetInteger', |
|
3914 |
'uint32_t', |
|
3915 |
[param('uint32_t', 'mean'), param('uint32_t', 'shape'), param('uint32_t', 'bound')]) |
|
3916 |
## random-variable-stream.h (module 'core'): double ns3::ParetoRandomVariable::GetValue() [member function] |
|
3917 |
cls.add_method('GetValue', |
|
3918 |
'double', |
|
3919 |
[], |
|
3920 |
is_virtual=True) |
|
3921 |
## random-variable-stream.h (module 'core'): uint32_t ns3::ParetoRandomVariable::GetInteger() [member function] |
|
3922 |
cls.add_method('GetInteger', |
|
3923 |
'uint32_t', |
|
3924 |
[], |
|
3925 |
is_virtual=True) |
|
3926 |
return |
|
3927 |
||
6881
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3928 |
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
|
3929 |
## 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
|
3930 |
cls.add_constructor([]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3931 |
## 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
|
3932 |
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
|
3933 |
## 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
|
3934 |
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
|
3935 |
'ns3::TypeId', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3936 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3937 |
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
|
3938 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3939 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3940 |
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
|
3941 |
## 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
|
3942 |
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
|
3943 |
## 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
|
3944 |
cls.add_constructor([]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3945 |
## 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
|
3946 |
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
|
3947 |
## 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
|
3948 |
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
|
3949 |
'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
|
3950 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3951 |
is_const=True, is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3952 |
## 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
|
3953 |
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
|
3954 |
'bool', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3955 |
[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
|
3956 |
is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3957 |
## 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
|
3958 |
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
|
3959 |
'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
|
3960 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3961 |
is_const=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3962 |
## 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
|
3963 |
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
|
3964 |
'std::string', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3965 |
[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
|
3966 |
is_const=True, is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3967 |
## 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
|
3968 |
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
|
3969 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3970 |
[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
|
3971 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3972 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3973 |
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
|
3974 |
## 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
|
3975 |
cls.add_constructor([]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3976 |
## 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
|
3977 |
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
|
3978 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3979 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3980 |
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
|
3981 |
## 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
|
3982 |
cls.add_constructor([]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3983 |
## 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
|
3984 |
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
|
3985 |
## 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
|
3986 |
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
|
3987 |
## 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
|
3988 |
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
|
3989 |
'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
|
3990 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3991 |
is_const=True, is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3992 |
## 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
|
3993 |
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
|
3994 |
'bool', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3995 |
[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
|
3996 |
is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3997 |
## 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
|
3998 |
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
|
3999 |
'ns3::RandomVariable', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4000 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4001 |
is_const=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4002 |
## 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
|
4003 |
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
|
4004 |
'std::string', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4005 |
[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
|
4006 |
is_const=True, is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4007 |
## 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
|
4008 |
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
|
4009 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4010 |
[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
|
4011 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4012 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4013 |
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
|
4014 |
## 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
|
4015 |
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
|
4016 |
## 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
|
4017 |
cls.add_constructor([]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4018 |
## 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
|
4019 |
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
|
4020 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4021 |
[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
|
4022 |
is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4023 |
## 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
|
4024 |
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
|
4025 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4026 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4027 |
is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4028 |
## 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
|
4029 |
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
|
4030 |
'uint32_t', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4031 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4032 |
is_const=True, is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4033 |
## 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
|
4034 |
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
|
4035 |
'ns3::Time', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4036 |
[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
|
4037 |
is_const=True, is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4038 |
## 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
|
4039 |
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
|
4040 |
'ns3::Time', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4041 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4042 |
is_const=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4043 |
## 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
|
4044 |
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
|
4045 |
'ns3::Time', |
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 |
is_const=True, is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4048 |
## 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
|
4049 |
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
|
4050 |
'ns3::RealtimeSimulatorImpl::SynchronizationMode', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4051 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4052 |
is_const=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4053 |
## 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
|
4054 |
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
|
4055 |
'uint32_t', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4056 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4057 |
is_const=True, is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4058 |
## 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
|
4059 |
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
|
4060 |
'ns3::TypeId', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4061 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4062 |
is_static=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4063 |
## 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
|
4064 |
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
|
4065 |
'bool', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4066 |
[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
|
4067 |
is_const=True, is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4068 |
## 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
|
4069 |
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
|
4070 |
'bool', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4071 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4072 |
is_const=True, is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4073 |
## 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
|
4074 |
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
|
4075 |
'ns3::Time', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4076 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4077 |
is_const=True, is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4078 |
## 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
|
4079 |
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
|
4080 |
'ns3::Time', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4081 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4082 |
is_const=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4083 |
## 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
|
4084 |
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
|
4085 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4086 |
[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
|
4087 |
is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4088 |
## 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
|
4089 |
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
|
4090 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4091 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4092 |
is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4093 |
## 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
|
4094 |
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
|
4095 |
'ns3::EventId', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4096 |
[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
|
4097 |
is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4098 |
## 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
|
4099 |
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
|
4100 |
'ns3::EventId', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4101 |
[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
|
4102 |
is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4103 |
## 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
|
4104 |
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
|
4105 |
'ns3::EventId', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4106 |
[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
|
4107 |
is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4108 |
## 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
|
4109 |
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
|
4110 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4111 |
[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
|
4112 |
## 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
|
4113 |
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
|
4114 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4115 |
[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
|
4116 |
## 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
|
4117 |
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
|
4118 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4119 |
[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
|
4120 |
## 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
|
4121 |
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
|
4122 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4123 |
[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
|
4124 |
## 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
|
4125 |
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
|
4126 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4127 |
[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
|
4128 |
is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4129 |
## 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
|
4130 |
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
|
4131 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4132 |
[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
|
4133 |
## 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
|
4134 |
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
|
4135 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4136 |
[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
|
4137 |
is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4138 |
## 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
|
4139 |
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
|
4140 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4141 |
[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
|
4142 |
## 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
|
4143 |
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
|
4144 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4145 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4146 |
is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4147 |
## 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
|
4148 |
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
|
4149 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4150 |
[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
|
4151 |
is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4152 |
## 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
|
4153 |
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
|
4154 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4155 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4156 |
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
|
4157 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4158 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4159 |
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
|
4160 |
## 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
|
4161 |
cls.add_constructor([]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4162 |
## 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
|
4163 |
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
|
4164 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4165 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4166 |
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
|
4167 |
## 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
|
4168 |
cls.add_constructor([]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4169 |
## 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
|
4170 |
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
|
4171 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4172 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4173 |
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
|
4174 |
## 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
|
4175 |
cls.add_constructor([]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4176 |
## 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
|
4177 |
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
|
4178 |
## 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
|
4179 |
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
|
4180 |
## 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
|
4181 |
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
|
4182 |
'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
|
4183 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4184 |
is_const=True, is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4185 |
## 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
|
4186 |
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
|
4187 |
'bool', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4188 |
[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
|
4189 |
is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4190 |
## 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
|
4191 |
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
|
4192 |
'std::string', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4193 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4194 |
is_const=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4195 |
## 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
|
4196 |
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
|
4197 |
'std::string', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4198 |
[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
|
4199 |
is_const=True, is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4200 |
## 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
|
4201 |
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
|
4202 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4203 |
[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
|
4204 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4205 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4206 |
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
|
4207 |
## 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
|
4208 |
cls.add_constructor([]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4209 |
## 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
|
4210 |
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
|
4211 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4212 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4213 |
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
|
4214 |
## 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
|
4215 |
cls.add_constructor([]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4216 |
## 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
|
4217 |
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
|
4218 |
## 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
|
4219 |
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
|
4220 |
## 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
|
4221 |
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
|
4222 |
'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
|
4223 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4224 |
is_const=True, is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4225 |
## 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
|
4226 |
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
|
4227 |
'bool', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4228 |
[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
|
4229 |
is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4230 |
## 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
|
4231 |
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
|
4232 |
'ns3::Time', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4233 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4234 |
is_const=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4235 |
## 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
|
4236 |
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
|
4237 |
'std::string', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4238 |
[param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4239 |
is_const=True, is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4240 |
## 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
|
4241 |
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
|
4242 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4243 |
[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
|
4244 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4245 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4246 |
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
|
4247 |
## 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
|
4248 |
cls.add_constructor([]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4249 |
## 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
|
4250 |
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
|
4251 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4252 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4253 |
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
|
4254 |
## 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
|
4255 |
cls.add_constructor([]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4256 |
## 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
|
4257 |
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
|
4258 |
## 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
|
4259 |
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
|
4260 |
## 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
|
4261 |
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
|
4262 |
'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
|
4263 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4264 |
is_const=True, is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4265 |
## 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
|
4266 |
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
|
4267 |
'bool', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4268 |
[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
|
4269 |
is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4270 |
## 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
|
4271 |
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
|
4272 |
'ns3::TypeId', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4273 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4274 |
is_const=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4275 |
## 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
|
4276 |
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
|
4277 |
'std::string', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4278 |
[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
|
4279 |
is_const=True, is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4280 |
## 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
|
4281 |
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
|
4282 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4283 |
[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
|
4284 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4285 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4286 |
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
|
4287 |
## 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
|
4288 |
cls.add_constructor([]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4289 |
## 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
|
4290 |
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
|
4291 |
## 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
|
4292 |
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
|
4293 |
## 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
|
4294 |
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
|
4295 |
'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
|
4296 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4297 |
is_const=True, is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4298 |
## 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
|
4299 |
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
|
4300 |
'bool', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4301 |
[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
|
4302 |
is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4303 |
## 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
|
4304 |
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
|
4305 |
'uint64_t', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4306 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4307 |
is_const=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4308 |
## 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
|
4309 |
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
|
4310 |
'std::string', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4311 |
[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
|
4312 |
is_const=True, is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4313 |
## 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
|
4314 |
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
|
4315 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4316 |
[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
|
4317 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4318 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4319 |
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
|
4320 |
## 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
|
4321 |
cls.add_constructor([]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4322 |
## 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
|
4323 |
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
|
4324 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4325 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4326 |
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
|
4327 |
## 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
|
4328 |
cls.add_constructor([]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4329 |
## 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
|
4330 |
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
|
4331 |
## 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
|
4332 |
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
|
4333 |
## 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
|
4334 |
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
|
4335 |
'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
|
4336 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4337 |
is_const=True, is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4338 |
## 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
|
4339 |
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
|
4340 |
'bool', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4341 |
[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
|
4342 |
is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4343 |
## 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
|
4344 |
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
|
4345 |
'ns3::Vector2D', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4346 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4347 |
is_const=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4348 |
## 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
|
4349 |
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
|
4350 |
'std::string', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4351 |
[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
|
4352 |
is_const=True, is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4353 |
## 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
|
4354 |
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
|
4355 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4356 |
[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
|
4357 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4358 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4359 |
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
|
4360 |
## 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
|
4361 |
cls.add_constructor([]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4362 |
## 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
|
4363 |
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
|
4364 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4365 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4366 |
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
|
4367 |
## 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
|
4368 |
cls.add_constructor([]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4369 |
## 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
|
4370 |
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
|
4371 |
## 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
|
4372 |
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
|
4373 |
## 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
|
4374 |
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
|
4375 |
'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
|
4376 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4377 |
is_const=True, is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4378 |
## 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
|
4379 |
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
|
4380 |
'bool', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4381 |
[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
|
4382 |
is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4383 |
## 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
|
4384 |
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
|
4385 |
'ns3::Vector3D', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4386 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4387 |
is_const=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4388 |
## 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
|
4389 |
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
|
4390 |
'std::string', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4391 |
[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
|
4392 |
is_const=True, is_virtual=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4393 |
## 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
|
4394 |
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
|
4395 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4396 |
[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
|
4397 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4398 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4399 |
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
|
4400 |
## 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
|
4401 |
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
|
4402 |
## 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
|
4403 |
cls.add_constructor([]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4404 |
## 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
|
4405 |
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
|
4406 |
## 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
|
4407 |
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
|
4408 |
'__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
|
4409 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4410 |
is_const=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4411 |
## 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
|
4412 |
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
|
4413 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4414 |
[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
|
4415 |
## 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
|
4416 |
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
|
4417 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4418 |
[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
|
4419 |
## 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
|
4420 |
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
|
4421 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4422 |
[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
|
4423 |
## 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
|
4424 |
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
|
4425 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4426 |
[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
|
4427 |
## 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
|
4428 |
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
|
4429 |
'__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
|
4430 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4431 |
is_const=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4432 |
## 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
|
4433 |
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
|
4434 |
'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
|
4435 |
[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
|
4436 |
is_const=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4437 |
## 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
|
4438 |
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
|
4439 |
'std::string', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4440 |
[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
|
4441 |
is_const=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4442 |
## 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
|
4443 |
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
|
4444 |
'uint32_t', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4445 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4446 |
is_const=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4447 |
## 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
|
4448 |
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
|
4449 |
'std::string', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4450 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4451 |
is_const=True) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4452 |
## 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
|
4453 |
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
|
4454 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4455 |
[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
|
4456 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4457 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4458 |
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
|
4459 |
module = root_module |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4460 |
## 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
|
4461 |
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
|
4462 |
'ns3::Time', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4463 |
[param('ns3::Time const &', 'time')]) |
7055
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
4464 |
## 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
|
4465 |
module.add_function('Abs', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
4466 |
'ns3::int64x64_t', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
4467 |
[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
|
4468 |
## 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
|
4469 |
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
|
4470 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4471 |
[]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4472 |
## 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
|
4473 |
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
|
4474 |
'double', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4475 |
[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
|
4476 |
## 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
|
4477 |
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
|
4478 |
'double', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4479 |
[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
|
4480 |
## 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
|
4481 |
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
|
4482 |
'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
|
4483 |
[], |
7420
ca9c09839724
Add a couple of includes and rescan core module's bindings
Mitch Watrous <watrous@u.washington.edu>
parents:
7407
diff
changeset
|
4484 |
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
|
4485 |
## 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
|
4486 |
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
|
4487 |
'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
|
4488 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4489 |
template_parameters=['ns3::PointerValue']) |
7055
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
4490 |
## 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
|
4491 |
module.add_function('FemtoSeconds', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
4492 |
'ns3::Time', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
4493 |
[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
|
4494 |
## 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
|
4495 |
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
|
4496 |
'ns3::Time', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4497 |
[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
|
4498 |
## 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
|
4499 |
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
|
4500 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4501 |
[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
|
4502 |
## 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
|
4503 |
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
|
4504 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4505 |
[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
|
4506 |
## 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
|
4507 |
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
|
4508 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4509 |
[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
|
4510 |
## 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
|
4511 |
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
|
4512 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4513 |
[param('ns3::LogLevel', 'level')]) |
7055
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
4514 |
## log.h (module 'core'): extern void ns3::LogComponentPrintList() [free function] |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
4515 |
module.add_function('LogComponentPrintList', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
4516 |
'void', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
4517 |
[]) |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
4518 |
## 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
|
4519 |
module.add_function('LogGetNodePrinter', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
4520 |
'ns3::LogNodePrinter', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
4521 |
[]) |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
4522 |
## 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
|
4523 |
module.add_function('LogGetTimePrinter', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
4524 |
'ns3::LogTimePrinter', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
4525 |
[]) |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
4526 |
## 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
|
4527 |
module.add_function('LogSetNodePrinter', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
4528 |
'void', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
4529 |
[param('ns3::LogNodePrinter', 'arg0')]) |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
4530 |
## 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
|
4531 |
module.add_function('LogSetTimePrinter', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
4532 |
'void', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
4533 |
[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
|
4534 |
## 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
|
4535 |
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
|
4536 |
'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
|
4537 |
[]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4538 |
## 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
|
4539 |
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
|
4540 |
'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
|
4541 |
[]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4542 |
## 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
|
4543 |
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
|
4544 |
'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
|
4545 |
[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
|
4546 |
## 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
|
4547 |
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
|
4548 |
'ns3::EventImpl *', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4549 |
[param('void ( * ) ( ) *', 'f')]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4550 |
## 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
|
4551 |
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
|
4552 |
'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
|
4553 |
[]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4554 |
## 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
|
4555 |
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
|
4556 |
'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
|
4557 |
[]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4558 |
## 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
|
4559 |
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
|
4560 |
'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
|
4561 |
[]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4562 |
## 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
|
4563 |
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
|
4564 |
'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
|
4565 |
[]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4566 |
## 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
|
4567 |
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
|
4568 |
'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
|
4569 |
[]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4570 |
## 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
|
4571 |
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
|
4572 |
'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
|
4573 |
[]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4574 |
## 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
|
4575 |
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
|
4576 |
'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
|
4577 |
[]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4578 |
## 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
|
4579 |
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
|
4580 |
'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
|
4581 |
[]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4582 |
## 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
|
4583 |
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
|
4584 |
'ns3::Time', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4585 |
[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
|
4586 |
## 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
|
4587 |
module.add_function('Max', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
4588 |
'ns3::int64x64_t', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
4589 |
[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
|
4590 |
## 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
|
4591 |
module.add_function('MicroSeconds', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
4592 |
'ns3::Time', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
4593 |
[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
|
4594 |
## 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
|
4595 |
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
|
4596 |
'ns3::Time', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4597 |
[param('uint64_t', 'us')]) |
7055
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
4598 |
## 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
|
4599 |
module.add_function('MilliSeconds', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
4600 |
'ns3::Time', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
4601 |
[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
|
4602 |
## 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
|
4603 |
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
|
4604 |
'ns3::Time', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4605 |
[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
|
4606 |
## 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
|
4607 |
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
|
4608 |
'ns3::Time', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4609 |
[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
|
4610 |
## 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
|
4611 |
module.add_function('Min', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
4612 |
'ns3::int64x64_t', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
4613 |
[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
|
4614 |
## 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
|
4615 |
module.add_function('NanoSeconds', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
4616 |
'ns3::Time', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
4617 |
[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
|
4618 |
## 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
|
4619 |
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
|
4620 |
'ns3::Time', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4621 |
[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
|
4622 |
## 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
|
4623 |
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
|
4624 |
'ns3::Time', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4625 |
[]) |
7055
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
4626 |
## 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
|
4627 |
module.add_function('PicoSeconds', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
4628 |
'ns3::Time', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
4629 |
[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
|
4630 |
## 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
|
4631 |
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
|
4632 |
'ns3::Time', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4633 |
[param('uint64_t', 'ps')]) |
7055
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
4634 |
## 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
|
4635 |
module.add_function('Seconds', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
4636 |
'ns3::Time', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6990
diff
changeset
|
4637 |
[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
|
4638 |
## 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
|
4639 |
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
|
4640 |
'ns3::Time', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4641 |
[param('double', 'seconds')]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4642 |
## 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
|
4643 |
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
|
4644 |
'bool', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4645 |
[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
|
4646 |
## 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
|
4647 |
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
|
4648 |
'ns3::Time', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4649 |
[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
|
4650 |
## 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
|
4651 |
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
|
4652 |
'std::string', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4653 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4654 |
template_parameters=['double']) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4655 |
## 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
|
4656 |
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
|
4657 |
'std::string', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4658 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4659 |
template_parameters=['float']) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4660 |
## 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
|
4661 |
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
|
4662 |
'std::string', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4663 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4664 |
template_parameters=['long']) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4665 |
## 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
|
4666 |
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
|
4667 |
'std::string', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4668 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4669 |
template_parameters=['int']) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4670 |
## 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
|
4671 |
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
|
4672 |
'std::string', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4673 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4674 |
template_parameters=['short']) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4675 |
## 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
|
4676 |
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
|
4677 |
'std::string', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4678 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4679 |
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
|
4680 |
## 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
|
4681 |
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
|
4682 |
'std::string', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4683 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4684 |
template_parameters=['unsigned long']) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4685 |
## 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
|
4686 |
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
|
4687 |
'std::string', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4688 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4689 |
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
|
4690 |
## 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
|
4691 |
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
|
4692 |
'std::string', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4693 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4694 |
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
|
4695 |
## 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
|
4696 |
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
|
4697 |
'std::string', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4698 |
[], |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4699 |
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
|
4700 |
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
|
4701 |
register_functions_ns3_FatalImpl(module.get_submodule('FatalImpl'), root_module) |
7586 | 4702 |
register_functions_ns3_SystemPath(module.get_submodule('SystemPath'), root_module) |
6881
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4703 |
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
|
4704 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4705 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4706 |
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
|
4707 |
## 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
|
4708 |
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
|
4709 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4710 |
[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
|
4711 |
## 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
|
4712 |
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
|
4713 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4714 |
[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
|
4715 |
## 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
|
4716 |
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
|
4717 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4718 |
[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
|
4719 |
## 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
|
4720 |
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
|
4721 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4722 |
[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
|
4723 |
## 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
|
4724 |
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
|
4725 |
'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
|
4726 |
[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
|
4727 |
## 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
|
4728 |
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
|
4729 |
'uint32_t', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4730 |
[]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4731 |
## 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
|
4732 |
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
|
4733 |
'ns3::Config::MatchContainer', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4734 |
[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
|
4735 |
## 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
|
4736 |
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
|
4737 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4738 |
[param('ns3::Ptr< ns3::Object >', 'obj')]) |
7401
20b1d370c035
Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
4739 |
## 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
|
4740 |
module.add_function('Reset', |
20b1d370c035
Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
4741 |
'void', |
20b1d370c035
Rescan 'core' module API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
4742 |
[]) |
6881
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4743 |
## 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
|
4744 |
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
|
4745 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4746 |
[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
|
4747 |
## 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
|
4748 |
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
|
4749 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4750 |
[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
|
4751 |
## 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
|
4752 |
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
|
4753 |
'bool', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4754 |
[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
|
4755 |
## 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
|
4756 |
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
|
4757 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4758 |
[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
|
4759 |
## 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
|
4760 |
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
|
4761 |
'bool', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4762 |
[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
|
4763 |
## 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
|
4764 |
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
|
4765 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4766 |
[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
|
4767 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4768 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4769 |
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
|
4770 |
## 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
|
4771 |
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
|
4772 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4773 |
[]) |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4774 |
## 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
|
4775 |
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
|
4776 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4777 |
[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
|
4778 |
## 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
|
4779 |
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
|
4780 |
'void', |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4781 |
[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
|
4782 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4783 |
|
7586 | 4784 |
def register_functions_ns3_SystemPath(module, root_module): |
4785 |
## system-path.h (module 'core'): extern std::string ns3::SystemPath::Append(std::string left, std::string right) [free function] |
|
4786 |
module.add_function('Append', |
|
4787 |
'std::string', |
|
4788 |
[param('std::string', 'left'), param('std::string', 'right')]) |
|
4789 |
## system-path.h (module 'core'): extern std::string ns3::SystemPath::FindSelfDirectory() [free function] |
|
4790 |
module.add_function('FindSelfDirectory', |
|
4791 |
'std::string', |
|
4792 |
[]) |
|
4793 |
## system-path.h (module 'core'): extern std::string ns3::SystemPath::Join(std::_List_const_iterator<std::basic_string<char, std::char_traits<char>, std::allocator<char> > > begin, std::_List_const_iterator<std::basic_string<char, std::char_traits<char>, std::allocator<char> > > end) [free function] |
|
4794 |
module.add_function('Join', |
|
4795 |
'std::string', |
|
4796 |
[param('std::_List_const_iterator< std::basic_string< char, std::char_traits< char >, std::allocator< char > > >', 'begin'), param('std::_List_const_iterator< std::basic_string< char, std::char_traits< char >, std::allocator< char > > >', 'end')]) |
|
4797 |
## system-path.h (module 'core'): extern void ns3::SystemPath::MakeDirectories(std::string path) [free function] |
|
4798 |
module.add_function('MakeDirectories', |
|
4799 |
'void', |
|
4800 |
[param('std::string', 'path')]) |
|
4801 |
## system-path.h (module 'core'): extern std::string ns3::SystemPath::MakeTemporaryDirectoryName() [free function] |
|
4802 |
module.add_function('MakeTemporaryDirectoryName', |
|
4803 |
'std::string', |
|
4804 |
[]) |
|
4805 |
## system-path.h (module 'core'): extern std::list<std::string, std::allocator<std::string> > ns3::SystemPath::ReadFiles(std::string path) [free function] |
|
4806 |
module.add_function('ReadFiles', |
|
4807 |
'std::list< std::string >', |
|
4808 |
[param('std::string', 'path')]) |
|
4809 |
## system-path.h (module 'core'): extern std::list<std::string, std::allocator<std::string> > ns3::SystemPath::Split(std::string path) [free function] |
|
4810 |
module.add_function('Split', |
|
4811 |
'std::list< std::string >', |
|
4812 |
[param('std::string', 'path')]) |
|
4813 |
return |
|
4814 |
||
6881
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4815 |
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
|
4816 |
## 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
|
4817 |
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
|
4818 |
'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
|
4819 |
[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
|
4820 |
## 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
|
4821 |
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
|
4822 |
'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
|
4823 |
[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
|
4824 |
## 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
|
4825 |
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
|
4826 |
'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
|
4827 |
[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
|
4828 |
return |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4829 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4830 |
def main(): |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4831 |
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
|
4832 |
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
|
4833 |
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
|
4834 |
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
|
4835 |
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
|
4836 |
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
|
4837 |
|
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4838 |
if __name__ == '__main__': |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4839 |
main() |
318bdcde36e7
Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4840 |