author | Mitch Watrous |
Wed, 15 Aug 2012 18:08:46 -0700 | |
changeset 8985 | 7752dc4ce7e9 |
parent 8893 | a11fdda061ae |
child 9114 | 41bfd88f8055 |
permissions | -rw-r--r-- |
8750 | 1 |
from pybindgen import Module, FileCodeSink, param, retval, cppclass, typehandlers |
2 |
||
3 |
||
4 |
import pybindgen.settings |
|
5 |
import warnings |
|
6 |
||
7 |
class ErrorHandler(pybindgen.settings.ErrorHandler): |
|
8 |
def handle_error(self, wrapper, exception, traceback_): |
|
9 |
warnings.warn("exception %r in wrapper %s" % (exception, wrapper)) |
|
10 |
return True |
|
11 |
pybindgen.settings.error_handler = ErrorHandler() |
|
12 |
||
13 |
||
14 |
import sys |
|
15 |
||
16 |
def module_init(): |
|
17 |
root_module = Module('ns.buildings', cpp_namespace='::ns3') |
|
18 |
return root_module |
|
19 |
||
20 |
def register_types(module): |
|
21 |
root_module = module.get_root() |
|
22 |
||
23 |
## propagation-environment.h (module 'propagation'): ns3::CitySize [enumeration] |
|
24 |
module.add_enum('CitySize', ['SmallCity', 'MediumCity', 'LargeCity'], import_from_module='ns.propagation') |
|
25 |
## propagation-environment.h (module 'propagation'): ns3::EnvironmentType [enumeration] |
|
26 |
module.add_enum('EnvironmentType', ['UrbanEnvironment', 'SubUrbanEnvironment', 'OpenAreasEnvironment'], import_from_module='ns.propagation') |
|
27 |
## address.h (module 'network'): ns3::Address [class] |
|
28 |
module.add_class('Address', import_from_module='ns.network') |
|
29 |
## address.h (module 'network'): ns3::Address::MaxSize_e [enumeration] |
|
30 |
module.add_enum('MaxSize_e', ['MAX_SIZE'], outer_class=root_module['ns3::Address'], import_from_module='ns.network') |
|
31 |
## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList [class] |
|
32 |
module.add_class('AttributeConstructionList', import_from_module='ns.core') |
|
33 |
## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item [struct] |
|
34 |
module.add_class('Item', import_from_module='ns.core', outer_class=root_module['ns3::AttributeConstructionList']) |
|
35 |
## box.h (module 'mobility'): ns3::Box [class] |
|
36 |
module.add_class('Box', import_from_module='ns.mobility') |
|
37 |
## box.h (module 'mobility'): ns3::Box::Side [enumeration] |
|
38 |
module.add_enum('Side', ['RIGHT', 'LEFT', 'TOP', 'BOTTOM', 'UP', 'DOWN'], outer_class=root_module['ns3::Box'], import_from_module='ns.mobility') |
|
39 |
## building-container.h (module 'buildings'): ns3::BuildingContainer [class] |
|
40 |
module.add_class('BuildingContainer') |
|
41 |
## building-list.h (module 'buildings'): ns3::BuildingList [class] |
|
42 |
module.add_class('BuildingList') |
|
43 |
## buildings-helper.h (module 'buildings'): ns3::BuildingsHelper [class] |
|
44 |
module.add_class('BuildingsHelper') |
|
45 |
## callback.h (module 'core'): ns3::CallbackBase [class] |
|
46 |
module.add_class('CallbackBase', import_from_module='ns.core') |
|
47 |
## constant-velocity-helper.h (module 'mobility'): ns3::ConstantVelocityHelper [class] |
|
48 |
module.add_class('ConstantVelocityHelper', import_from_module='ns.mobility') |
|
49 |
## ipv4-address.h (module 'network'): ns3::Ipv4Address [class] |
|
50 |
module.add_class('Ipv4Address', import_from_module='ns.network') |
|
51 |
## ipv4-address.h (module 'network'): ns3::Ipv4Address [class] |
|
52 |
root_module['ns3::Ipv4Address'].implicitly_converts_to(root_module['ns3::Address']) |
|
53 |
## ipv4-address.h (module 'network'): ns3::Ipv4Mask [class] |
|
54 |
module.add_class('Ipv4Mask', import_from_module='ns.network') |
|
55 |
## ipv6-address.h (module 'network'): ns3::Ipv6Address [class] |
|
56 |
module.add_class('Ipv6Address', import_from_module='ns.network') |
|
57 |
## ipv6-address.h (module 'network'): ns3::Ipv6Address [class] |
|
58 |
root_module['ns3::Ipv6Address'].implicitly_converts_to(root_module['ns3::Address']) |
|
59 |
## ipv6-address.h (module 'network'): ns3::Ipv6Prefix [class] |
|
60 |
module.add_class('Ipv6Prefix', import_from_module='ns.network') |
|
61 |
## node-container.h (module 'network'): ns3::NodeContainer [class] |
|
62 |
module.add_class('NodeContainer', import_from_module='ns.network') |
|
63 |
## object-base.h (module 'core'): ns3::ObjectBase [class] |
|
64 |
module.add_class('ObjectBase', allow_subclassing=True, import_from_module='ns.core') |
|
65 |
## object.h (module 'core'): ns3::ObjectDeleter [struct] |
|
66 |
module.add_class('ObjectDeleter', import_from_module='ns.core') |
|
67 |
## object-factory.h (module 'core'): ns3::ObjectFactory [class] |
|
68 |
module.add_class('ObjectFactory', import_from_module='ns.core') |
|
69 |
## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter> [class] |
|
70 |
module.add_class('SimpleRefCount', automatic_type_narrowing=True, import_from_module='ns.core', template_parameters=['ns3::Object', 'ns3::ObjectBase', 'ns3::ObjectDeleter'], parent=root_module['ns3::ObjectBase'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount')) |
|
71 |
## tag-buffer.h (module 'network'): ns3::TagBuffer [class] |
|
72 |
module.add_class('TagBuffer', import_from_module='ns.network') |
|
73 |
## type-id.h (module 'core'): ns3::TypeId [class] |
|
74 |
module.add_class('TypeId', import_from_module='ns.core') |
|
75 |
## type-id.h (module 'core'): ns3::TypeId::AttributeFlag [enumeration] |
|
76 |
module.add_enum('AttributeFlag', ['ATTR_GET', 'ATTR_SET', 'ATTR_CONSTRUCT', 'ATTR_SGC'], outer_class=root_module['ns3::TypeId'], import_from_module='ns.core') |
|
77 |
## type-id.h (module 'core'): ns3::TypeId::AttributeInformation [struct] |
|
78 |
module.add_class('AttributeInformation', import_from_module='ns.core', outer_class=root_module['ns3::TypeId']) |
|
79 |
## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation [struct] |
|
80 |
module.add_class('TraceSourceInformation', import_from_module='ns.core', outer_class=root_module['ns3::TypeId']) |
|
81 |
## vector.h (module 'core'): ns3::Vector2D [class] |
|
82 |
module.add_class('Vector2D', import_from_module='ns.core') |
|
83 |
## vector.h (module 'core'): ns3::Vector3D [class] |
|
84 |
module.add_class('Vector3D', import_from_module='ns.core') |
|
85 |
## empty.h (module 'core'): ns3::empty [class] |
|
86 |
module.add_class('empty', import_from_module='ns.core') |
|
87 |
## int64x64-double.h (module 'core'): ns3::int64x64_t [class] |
|
88 |
module.add_class('int64x64_t', import_from_module='ns.core') |
|
89 |
## object.h (module 'core'): ns3::Object [class] |
|
90 |
module.add_class('Object', import_from_module='ns.core', parent=root_module['ns3::SimpleRefCount< ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter >']) |
|
91 |
## object.h (module 'core'): ns3::Object::AggregateIterator [class] |
|
92 |
module.add_class('AggregateIterator', import_from_module='ns.core', outer_class=root_module['ns3::Object']) |
|
93 |
## position-allocator.h (module 'mobility'): ns3::PositionAllocator [class] |
|
94 |
module.add_class('PositionAllocator', import_from_module='ns.mobility', parent=root_module['ns3::Object']) |
|
95 |
## propagation-loss-model.h (module 'propagation'): ns3::PropagationLossModel [class] |
|
96 |
module.add_class('PropagationLossModel', import_from_module='ns.propagation', parent=root_module['ns3::Object']) |
|
97 |
## position-allocator.h (module 'mobility'): ns3::RandomBoxPositionAllocator [class] |
|
98 |
module.add_class('RandomBoxPositionAllocator', import_from_module='ns.mobility', parent=root_module['ns3::PositionAllocator']) |
|
99 |
## building-position-allocator.h (module 'buildings'): ns3::RandomBuildingPositionAllocator [class] |
|
100 |
module.add_class('RandomBuildingPositionAllocator', parent=root_module['ns3::PositionAllocator']) |
|
101 |
## position-allocator.h (module 'mobility'): ns3::RandomDiscPositionAllocator [class] |
|
102 |
module.add_class('RandomDiscPositionAllocator', import_from_module='ns.mobility', parent=root_module['ns3::PositionAllocator']) |
|
103 |
## propagation-loss-model.h (module 'propagation'): ns3::RandomPropagationLossModel [class] |
|
104 |
module.add_class('RandomPropagationLossModel', import_from_module='ns.propagation', parent=root_module['ns3::PropagationLossModel']) |
|
105 |
## position-allocator.h (module 'mobility'): ns3::RandomRectanglePositionAllocator [class] |
|
106 |
module.add_class('RandomRectanglePositionAllocator', import_from_module='ns.mobility', parent=root_module['ns3::PositionAllocator']) |
|
107 |
## building-position-allocator.h (module 'buildings'): ns3::RandomRoomPositionAllocator [class] |
|
108 |
module.add_class('RandomRoomPositionAllocator', parent=root_module['ns3::PositionAllocator']) |
|
8985
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
109 |
## random-variable-stream.h (module 'core'): ns3::RandomVariableStream [class] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
110 |
module.add_class('RandomVariableStream', import_from_module='ns.core', parent=root_module['ns3::Object']) |
8750 | 111 |
## propagation-loss-model.h (module 'propagation'): ns3::RangePropagationLossModel [class] |
112 |
module.add_class('RangePropagationLossModel', import_from_module='ns.propagation', parent=root_module['ns3::PropagationLossModel']) |
|
113 |
## building-position-allocator.h (module 'buildings'): ns3::SameRoomPositionAllocator [class] |
|
114 |
module.add_class('SameRoomPositionAllocator', parent=root_module['ns3::PositionAllocator']) |
|
8985
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
115 |
## random-variable-stream.h (module 'core'): ns3::SequentialRandomVariable [class] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
116 |
module.add_class('SequentialRandomVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariableStream']) |
8750 | 117 |
## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> > [class] |
118 |
module.add_class('SimpleRefCount', automatic_type_narrowing=True, import_from_module='ns.core', template_parameters=['ns3::AttributeAccessor', 'ns3::empty', 'ns3::DefaultDeleter<ns3::AttributeAccessor>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount')) |
|
119 |
## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter<ns3::AttributeChecker> > [class] |
|
120 |
module.add_class('SimpleRefCount', automatic_type_narrowing=True, import_from_module='ns.core', template_parameters=['ns3::AttributeChecker', 'ns3::empty', 'ns3::DefaultDeleter<ns3::AttributeChecker>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount')) |
|
121 |
## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter<ns3::AttributeValue> > [class] |
|
122 |
module.add_class('SimpleRefCount', automatic_type_narrowing=True, import_from_module='ns.core', template_parameters=['ns3::AttributeValue', 'ns3::empty', 'ns3::DefaultDeleter<ns3::AttributeValue>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount')) |
|
123 |
## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> > [class] |
|
124 |
module.add_class('SimpleRefCount', automatic_type_narrowing=True, import_from_module='ns.core', template_parameters=['ns3::CallbackImplBase', 'ns3::empty', 'ns3::DefaultDeleter<ns3::CallbackImplBase>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount')) |
|
125 |
## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter<ns3::TraceSourceAccessor> > [class] |
|
126 |
module.add_class('SimpleRefCount', automatic_type_narrowing=True, import_from_module='ns.core', template_parameters=['ns3::TraceSourceAccessor', 'ns3::empty', 'ns3::DefaultDeleter<ns3::TraceSourceAccessor>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount')) |
|
127 |
## propagation-loss-model.h (module 'propagation'): ns3::ThreeLogDistancePropagationLossModel [class] |
|
128 |
module.add_class('ThreeLogDistancePropagationLossModel', import_from_module='ns.propagation', parent=root_module['ns3::PropagationLossModel']) |
|
129 |
## nstime.h (module 'core'): ns3::Time [class] |
|
130 |
module.add_class('Time', import_from_module='ns.core') |
|
131 |
## nstime.h (module 'core'): ns3::Time::Unit [enumeration] |
|
132 |
module.add_enum('Unit', ['S', 'MS', 'US', 'NS', 'PS', 'FS', 'LAST'], outer_class=root_module['ns3::Time'], import_from_module='ns.core') |
|
133 |
## nstime.h (module 'core'): ns3::Time [class] |
|
134 |
root_module['ns3::Time'].implicitly_converts_to(root_module['ns3::int64x64_t']) |
|
135 |
## trace-source-accessor.h (module 'core'): ns3::TraceSourceAccessor [class] |
|
136 |
module.add_class('TraceSourceAccessor', import_from_module='ns.core', parent=root_module['ns3::SimpleRefCount< ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter<ns3::TraceSourceAccessor> >']) |
|
8985
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
137 |
## random-variable-stream.h (module 'core'): ns3::TriangularRandomVariable [class] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
138 |
module.add_class('TriangularRandomVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariableStream']) |
8750 | 139 |
## propagation-loss-model.h (module 'propagation'): ns3::TwoRayGroundPropagationLossModel [class] |
140 |
module.add_class('TwoRayGroundPropagationLossModel', import_from_module='ns.propagation', parent=root_module['ns3::PropagationLossModel']) |
|
141 |
## position-allocator.h (module 'mobility'): ns3::UniformDiscPositionAllocator [class] |
|
142 |
module.add_class('UniformDiscPositionAllocator', import_from_module='ns.mobility', parent=root_module['ns3::PositionAllocator']) |
|
8985
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
143 |
## random-variable-stream.h (module 'core'): ns3::UniformRandomVariable [class] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
144 |
module.add_class('UniformRandomVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariableStream']) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
145 |
## random-variable-stream.h (module 'core'): ns3::WeibullRandomVariable [class] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
146 |
module.add_class('WeibullRandomVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariableStream']) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
147 |
## random-variable-stream.h (module 'core'): ns3::ZetaRandomVariable [class] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
148 |
module.add_class('ZetaRandomVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariableStream']) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
149 |
## random-variable-stream.h (module 'core'): ns3::ZipfRandomVariable [class] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
150 |
module.add_class('ZipfRandomVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariableStream']) |
8750 | 151 |
## attribute.h (module 'core'): ns3::AttributeAccessor [class] |
152 |
module.add_class('AttributeAccessor', import_from_module='ns.core', parent=root_module['ns3::SimpleRefCount< ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> >']) |
|
153 |
## attribute.h (module 'core'): ns3::AttributeChecker [class] |
|
154 |
module.add_class('AttributeChecker', allow_subclassing=False, automatic_type_narrowing=True, import_from_module='ns.core', parent=root_module['ns3::SimpleRefCount< ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter<ns3::AttributeChecker> >']) |
|
155 |
## attribute.h (module 'core'): ns3::AttributeValue [class] |
|
156 |
module.add_class('AttributeValue', allow_subclassing=False, automatic_type_narrowing=True, import_from_module='ns.core', parent=root_module['ns3::SimpleRefCount< ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter<ns3::AttributeValue> >']) |
|
157 |
## box.h (module 'mobility'): ns3::BoxChecker [class] |
|
158 |
module.add_class('BoxChecker', import_from_module='ns.mobility', parent=root_module['ns3::AttributeChecker']) |
|
159 |
## box.h (module 'mobility'): ns3::BoxValue [class] |
|
160 |
module.add_class('BoxValue', import_from_module='ns.mobility', parent=root_module['ns3::AttributeValue']) |
|
161 |
## building.h (module 'buildings'): ns3::Building [class] |
|
162 |
module.add_class('Building', parent=root_module['ns3::Object']) |
|
163 |
## building.h (module 'buildings'): ns3::Building::BuildingType_t [enumeration] |
|
164 |
module.add_enum('BuildingType_t', ['Residential', 'Office', 'Commercial'], outer_class=root_module['ns3::Building']) |
|
165 |
## building.h (module 'buildings'): ns3::Building::ExtWallsType_t [enumeration] |
|
166 |
module.add_enum('ExtWallsType_t', ['Wood', 'ConcreteWithWindows', 'ConcreteWithoutWindows', 'StoneBlocks'], outer_class=root_module['ns3::Building']) |
|
167 |
## buildings-propagation-loss-model.h (module 'buildings'): ns3::BuildingsPropagationLossModel [class] |
|
168 |
module.add_class('BuildingsPropagationLossModel', parent=root_module['ns3::PropagationLossModel']) |
|
169 |
## callback.h (module 'core'): ns3::CallbackChecker [class] |
|
170 |
module.add_class('CallbackChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker']) |
|
171 |
## callback.h (module 'core'): ns3::CallbackImplBase [class] |
|
172 |
module.add_class('CallbackImplBase', import_from_module='ns.core', parent=root_module['ns3::SimpleRefCount< ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> >']) |
|
173 |
## callback.h (module 'core'): ns3::CallbackValue [class] |
|
174 |
module.add_class('CallbackValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue']) |
|
8985
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
175 |
## random-variable-stream.h (module 'core'): ns3::ConstantRandomVariable [class] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
176 |
module.add_class('ConstantRandomVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariableStream']) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
177 |
## random-variable-stream.h (module 'core'): ns3::DeterministicRandomVariable [class] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
178 |
module.add_class('DeterministicRandomVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariableStream']) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
179 |
## random-variable-stream.h (module 'core'): ns3::EmpiricalRandomVariable [class] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
180 |
module.add_class('EmpiricalRandomVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariableStream']) |
8750 | 181 |
## attribute.h (module 'core'): ns3::EmptyAttributeValue [class] |
182 |
module.add_class('EmptyAttributeValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue']) |
|
8985
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
183 |
## random-variable-stream.h (module 'core'): ns3::ErlangRandomVariable [class] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
184 |
module.add_class('ErlangRandomVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariableStream']) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
185 |
## random-variable-stream.h (module 'core'): ns3::ExponentialRandomVariable [class] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
186 |
module.add_class('ExponentialRandomVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariableStream']) |
8750 | 187 |
## propagation-loss-model.h (module 'propagation'): ns3::FixedRssLossModel [class] |
188 |
module.add_class('FixedRssLossModel', import_from_module='ns.propagation', parent=root_module['ns3::PropagationLossModel']) |
|
189 |
## propagation-loss-model.h (module 'propagation'): ns3::FriisPropagationLossModel [class] |
|
190 |
module.add_class('FriisPropagationLossModel', import_from_module='ns.propagation', parent=root_module['ns3::PropagationLossModel']) |
|
8985
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
191 |
## random-variable-stream.h (module 'core'): ns3::GammaRandomVariable [class] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
192 |
module.add_class('GammaRandomVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariableStream']) |
8750 | 193 |
## building-allocator.h (module 'buildings'): ns3::GridBuildingAllocator [class] |
194 |
module.add_class('GridBuildingAllocator', parent=root_module['ns3::Object']) |
|
195 |
## position-allocator.h (module 'mobility'): ns3::GridPositionAllocator [class] |
|
196 |
module.add_class('GridPositionAllocator', import_from_module='ns.mobility', parent=root_module['ns3::PositionAllocator']) |
|
197 |
## position-allocator.h (module 'mobility'): ns3::GridPositionAllocator::LayoutType [enumeration] |
|
198 |
module.add_enum('LayoutType', ['ROW_FIRST', 'COLUMN_FIRST'], outer_class=root_module['ns3::GridPositionAllocator'], import_from_module='ns.mobility') |
|
199 |
## hybrid-buildings-propagation-loss-model.h (module 'buildings'): ns3::HybridBuildingsPropagationLossModel [class] |
|
200 |
module.add_class('HybridBuildingsPropagationLossModel', parent=root_module['ns3::BuildingsPropagationLossModel']) |
|
201 |
## ipv4-address.h (module 'network'): ns3::Ipv4AddressChecker [class] |
|
202 |
module.add_class('Ipv4AddressChecker', import_from_module='ns.network', parent=root_module['ns3::AttributeChecker']) |
|
203 |
## ipv4-address.h (module 'network'): ns3::Ipv4AddressValue [class] |
|
204 |
module.add_class('Ipv4AddressValue', import_from_module='ns.network', parent=root_module['ns3::AttributeValue']) |
|
205 |
## ipv4-address.h (module 'network'): ns3::Ipv4MaskChecker [class] |
|
206 |
module.add_class('Ipv4MaskChecker', import_from_module='ns.network', parent=root_module['ns3::AttributeChecker']) |
|
207 |
## ipv4-address.h (module 'network'): ns3::Ipv4MaskValue [class] |
|
208 |
module.add_class('Ipv4MaskValue', import_from_module='ns.network', parent=root_module['ns3::AttributeValue']) |
|
209 |
## ipv6-address.h (module 'network'): ns3::Ipv6AddressChecker [class] |
|
210 |
module.add_class('Ipv6AddressChecker', import_from_module='ns.network', parent=root_module['ns3::AttributeChecker']) |
|
211 |
## ipv6-address.h (module 'network'): ns3::Ipv6AddressValue [class] |
|
212 |
module.add_class('Ipv6AddressValue', import_from_module='ns.network', parent=root_module['ns3::AttributeValue']) |
|
213 |
## ipv6-address.h (module 'network'): ns3::Ipv6PrefixChecker [class] |
|
214 |
module.add_class('Ipv6PrefixChecker', import_from_module='ns.network', parent=root_module['ns3::AttributeChecker']) |
|
215 |
## ipv6-address.h (module 'network'): ns3::Ipv6PrefixValue [class] |
|
216 |
module.add_class('Ipv6PrefixValue', import_from_module='ns.network', parent=root_module['ns3::AttributeValue']) |
|
217 |
## itu-r-1238-propagation-loss-model.h (module 'buildings'): ns3::ItuR1238PropagationLossModel [class] |
|
218 |
module.add_class('ItuR1238PropagationLossModel', parent=root_module['ns3::PropagationLossModel']) |
|
219 |
## position-allocator.h (module 'mobility'): ns3::ListPositionAllocator [class] |
|
220 |
module.add_class('ListPositionAllocator', import_from_module='ns.mobility', parent=root_module['ns3::PositionAllocator']) |
|
221 |
## propagation-loss-model.h (module 'propagation'): ns3::LogDistancePropagationLossModel [class] |
|
222 |
module.add_class('LogDistancePropagationLossModel', import_from_module='ns.propagation', parent=root_module['ns3::PropagationLossModel']) |
|
8985
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
223 |
## random-variable-stream.h (module 'core'): ns3::LogNormalRandomVariable [class] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
224 |
module.add_class('LogNormalRandomVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariableStream']) |
8750 | 225 |
## propagation-loss-model.h (module 'propagation'): ns3::MatrixPropagationLossModel [class] |
226 |
module.add_class('MatrixPropagationLossModel', import_from_module='ns.propagation', parent=root_module['ns3::PropagationLossModel']) |
|
227 |
## mobility-model.h (module 'mobility'): ns3::MobilityModel [class] |
|
228 |
module.add_class('MobilityModel', import_from_module='ns.mobility', parent=root_module['ns3::Object']) |
|
229 |
## propagation-loss-model.h (module 'propagation'): ns3::NakagamiPropagationLossModel [class] |
|
230 |
module.add_class('NakagamiPropagationLossModel', import_from_module='ns.propagation', parent=root_module['ns3::PropagationLossModel']) |
|
231 |
## net-device.h (module 'network'): ns3::NetDevice [class] |
|
232 |
module.add_class('NetDevice', import_from_module='ns.network', parent=root_module['ns3::Object']) |
|
233 |
## net-device.h (module 'network'): ns3::NetDevice::PacketType [enumeration] |
|
234 |
module.add_enum('PacketType', ['PACKET_HOST', 'NS3_PACKET_HOST', 'PACKET_BROADCAST', 'NS3_PACKET_BROADCAST', 'PACKET_MULTICAST', 'NS3_PACKET_MULTICAST', 'PACKET_OTHERHOST', 'NS3_PACKET_OTHERHOST'], outer_class=root_module['ns3::NetDevice'], import_from_module='ns.network') |
|
235 |
## node.h (module 'network'): ns3::Node [class] |
|
236 |
module.add_class('Node', import_from_module='ns.network', parent=root_module['ns3::Object']) |
|
8985
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
237 |
## random-variable-stream.h (module 'core'): ns3::NormalRandomVariable [class] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
238 |
module.add_class('NormalRandomVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariableStream']) |
8750 | 239 |
## object-factory.h (module 'core'): ns3::ObjectFactoryChecker [class] |
240 |
module.add_class('ObjectFactoryChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker']) |
|
241 |
## object-factory.h (module 'core'): ns3::ObjectFactoryValue [class] |
|
242 |
module.add_class('ObjectFactoryValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue']) |
|
243 |
## oh-buildings-propagation-loss-model.h (module 'buildings'): ns3::OhBuildingsPropagationLossModel [class] |
|
244 |
module.add_class('OhBuildingsPropagationLossModel', parent=root_module['ns3::BuildingsPropagationLossModel']) |
|
8985
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
245 |
## random-variable-stream.h (module 'core'): ns3::ParetoRandomVariable [class] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
246 |
module.add_class('ParetoRandomVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariableStream']) |
8750 | 247 |
## nstime.h (module 'core'): ns3::TimeChecker [class] |
248 |
module.add_class('TimeChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker']) |
|
249 |
## nstime.h (module 'core'): ns3::TimeValue [class] |
|
250 |
module.add_class('TimeValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue']) |
|
251 |
## type-id.h (module 'core'): ns3::TypeIdChecker [class] |
|
252 |
module.add_class('TypeIdChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker']) |
|
253 |
## type-id.h (module 'core'): ns3::TypeIdValue [class] |
|
254 |
module.add_class('TypeIdValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue']) |
|
255 |
## vector.h (module 'core'): ns3::Vector2DChecker [class] |
|
256 |
module.add_class('Vector2DChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker']) |
|
257 |
## vector.h (module 'core'): ns3::Vector2DValue [class] |
|
258 |
module.add_class('Vector2DValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue']) |
|
259 |
## vector.h (module 'core'): ns3::Vector3DChecker [class] |
|
260 |
module.add_class('Vector3DChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker']) |
|
261 |
## vector.h (module 'core'): ns3::Vector3DValue [class] |
|
262 |
module.add_class('Vector3DValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue']) |
|
263 |
## address.h (module 'network'): ns3::AddressChecker [class] |
|
264 |
module.add_class('AddressChecker', import_from_module='ns.network', parent=root_module['ns3::AttributeChecker']) |
|
265 |
## address.h (module 'network'): ns3::AddressValue [class] |
|
266 |
module.add_class('AddressValue', import_from_module='ns.network', parent=root_module['ns3::AttributeValue']) |
|
267 |
## buildings-mobility-model.h (module 'buildings'): ns3::BuildingsMobilityModel [class] |
|
268 |
module.add_class('BuildingsMobilityModel', parent=root_module['ns3::MobilityModel']) |
|
269 |
typehandlers.add_type_alias('ns3::Vector3DValue', 'ns3::VectorValue') |
|
270 |
typehandlers.add_type_alias('ns3::Vector3DValue*', 'ns3::VectorValue*') |
|
271 |
typehandlers.add_type_alias('ns3::Vector3DValue&', 'ns3::VectorValue&') |
|
272 |
module.add_typedef(root_module['ns3::Vector3DValue'], 'VectorValue') |
|
273 |
typehandlers.add_type_alias('ns3::Vector3D', 'ns3::Vector') |
|
274 |
typehandlers.add_type_alias('ns3::Vector3D*', 'ns3::Vector*') |
|
275 |
typehandlers.add_type_alias('ns3::Vector3D&', 'ns3::Vector&') |
|
276 |
module.add_typedef(root_module['ns3::Vector3D'], 'Vector') |
|
277 |
typehandlers.add_type_alias('ns3::Vector3DChecker', 'ns3::VectorChecker') |
|
278 |
typehandlers.add_type_alias('ns3::Vector3DChecker*', 'ns3::VectorChecker*') |
|
279 |
typehandlers.add_type_alias('ns3::Vector3DChecker&', 'ns3::VectorChecker&') |
|
280 |
module.add_typedef(root_module['ns3::Vector3DChecker'], 'VectorChecker') |
|
281 |
||
282 |
## Register a nested module for the namespace FatalImpl |
|
283 |
||
284 |
nested_module = module.add_cpp_namespace('FatalImpl') |
|
285 |
register_types_ns3_FatalImpl(nested_module) |
|
286 |
||
287 |
||
288 |
def register_types_ns3_FatalImpl(module): |
|
289 |
root_module = module.get_root() |
|
290 |
||
291 |
||
292 |
def register_methods(root_module): |
|
293 |
register_Ns3Address_methods(root_module, root_module['ns3::Address']) |
|
294 |
register_Ns3AttributeConstructionList_methods(root_module, root_module['ns3::AttributeConstructionList']) |
|
295 |
register_Ns3AttributeConstructionListItem_methods(root_module, root_module['ns3::AttributeConstructionList::Item']) |
|
296 |
register_Ns3Box_methods(root_module, root_module['ns3::Box']) |
|
297 |
register_Ns3BuildingContainer_methods(root_module, root_module['ns3::BuildingContainer']) |
|
298 |
register_Ns3BuildingList_methods(root_module, root_module['ns3::BuildingList']) |
|
299 |
register_Ns3BuildingsHelper_methods(root_module, root_module['ns3::BuildingsHelper']) |
|
300 |
register_Ns3CallbackBase_methods(root_module, root_module['ns3::CallbackBase']) |
|
301 |
register_Ns3ConstantVelocityHelper_methods(root_module, root_module['ns3::ConstantVelocityHelper']) |
|
302 |
register_Ns3Ipv4Address_methods(root_module, root_module['ns3::Ipv4Address']) |
|
303 |
register_Ns3Ipv4Mask_methods(root_module, root_module['ns3::Ipv4Mask']) |
|
304 |
register_Ns3Ipv6Address_methods(root_module, root_module['ns3::Ipv6Address']) |
|
305 |
register_Ns3Ipv6Prefix_methods(root_module, root_module['ns3::Ipv6Prefix']) |
|
306 |
register_Ns3NodeContainer_methods(root_module, root_module['ns3::NodeContainer']) |
|
307 |
register_Ns3ObjectBase_methods(root_module, root_module['ns3::ObjectBase']) |
|
308 |
register_Ns3ObjectDeleter_methods(root_module, root_module['ns3::ObjectDeleter']) |
|
309 |
register_Ns3ObjectFactory_methods(root_module, root_module['ns3::ObjectFactory']) |
|
310 |
register_Ns3SimpleRefCount__Ns3Object_Ns3ObjectBase_Ns3ObjectDeleter_methods(root_module, root_module['ns3::SimpleRefCount< ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter >']) |
|
311 |
register_Ns3TagBuffer_methods(root_module, root_module['ns3::TagBuffer']) |
|
312 |
register_Ns3TypeId_methods(root_module, root_module['ns3::TypeId']) |
|
313 |
register_Ns3TypeIdAttributeInformation_methods(root_module, root_module['ns3::TypeId::AttributeInformation']) |
|
314 |
register_Ns3TypeIdTraceSourceInformation_methods(root_module, root_module['ns3::TypeId::TraceSourceInformation']) |
|
315 |
register_Ns3Vector2D_methods(root_module, root_module['ns3::Vector2D']) |
|
316 |
register_Ns3Vector3D_methods(root_module, root_module['ns3::Vector3D']) |
|
317 |
register_Ns3Empty_methods(root_module, root_module['ns3::empty']) |
|
318 |
register_Ns3Int64x64_t_methods(root_module, root_module['ns3::int64x64_t']) |
|
319 |
register_Ns3Object_methods(root_module, root_module['ns3::Object']) |
|
320 |
register_Ns3ObjectAggregateIterator_methods(root_module, root_module['ns3::Object::AggregateIterator']) |
|
321 |
register_Ns3PositionAllocator_methods(root_module, root_module['ns3::PositionAllocator']) |
|
322 |
register_Ns3PropagationLossModel_methods(root_module, root_module['ns3::PropagationLossModel']) |
|
323 |
register_Ns3RandomBoxPositionAllocator_methods(root_module, root_module['ns3::RandomBoxPositionAllocator']) |
|
324 |
register_Ns3RandomBuildingPositionAllocator_methods(root_module, root_module['ns3::RandomBuildingPositionAllocator']) |
|
325 |
register_Ns3RandomDiscPositionAllocator_methods(root_module, root_module['ns3::RandomDiscPositionAllocator']) |
|
326 |
register_Ns3RandomPropagationLossModel_methods(root_module, root_module['ns3::RandomPropagationLossModel']) |
|
327 |
register_Ns3RandomRectanglePositionAllocator_methods(root_module, root_module['ns3::RandomRectanglePositionAllocator']) |
|
328 |
register_Ns3RandomRoomPositionAllocator_methods(root_module, root_module['ns3::RandomRoomPositionAllocator']) |
|
8985
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
329 |
register_Ns3RandomVariableStream_methods(root_module, root_module['ns3::RandomVariableStream']) |
8750 | 330 |
register_Ns3RangePropagationLossModel_methods(root_module, root_module['ns3::RangePropagationLossModel']) |
331 |
register_Ns3SameRoomPositionAllocator_methods(root_module, root_module['ns3::SameRoomPositionAllocator']) |
|
8985
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
332 |
register_Ns3SequentialRandomVariable_methods(root_module, root_module['ns3::SequentialRandomVariable']) |
8750 | 333 |
register_Ns3SimpleRefCount__Ns3AttributeAccessor_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeAccessor__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> >']) |
334 |
register_Ns3SimpleRefCount__Ns3AttributeChecker_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeChecker__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter<ns3::AttributeChecker> >']) |
|
335 |
register_Ns3SimpleRefCount__Ns3AttributeValue_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeValue__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter<ns3::AttributeValue> >']) |
|
336 |
register_Ns3SimpleRefCount__Ns3CallbackImplBase_Ns3Empty_Ns3DefaultDeleter__lt__ns3CallbackImplBase__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> >']) |
|
337 |
register_Ns3SimpleRefCount__Ns3TraceSourceAccessor_Ns3Empty_Ns3DefaultDeleter__lt__ns3TraceSourceAccessor__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter<ns3::TraceSourceAccessor> >']) |
|
338 |
register_Ns3ThreeLogDistancePropagationLossModel_methods(root_module, root_module['ns3::ThreeLogDistancePropagationLossModel']) |
|
339 |
register_Ns3Time_methods(root_module, root_module['ns3::Time']) |
|
340 |
register_Ns3TraceSourceAccessor_methods(root_module, root_module['ns3::TraceSourceAccessor']) |
|
8985
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
341 |
register_Ns3TriangularRandomVariable_methods(root_module, root_module['ns3::TriangularRandomVariable']) |
8750 | 342 |
register_Ns3TwoRayGroundPropagationLossModel_methods(root_module, root_module['ns3::TwoRayGroundPropagationLossModel']) |
343 |
register_Ns3UniformDiscPositionAllocator_methods(root_module, root_module['ns3::UniformDiscPositionAllocator']) |
|
8985
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
344 |
register_Ns3UniformRandomVariable_methods(root_module, root_module['ns3::UniformRandomVariable']) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
345 |
register_Ns3WeibullRandomVariable_methods(root_module, root_module['ns3::WeibullRandomVariable']) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
346 |
register_Ns3ZetaRandomVariable_methods(root_module, root_module['ns3::ZetaRandomVariable']) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
347 |
register_Ns3ZipfRandomVariable_methods(root_module, root_module['ns3::ZipfRandomVariable']) |
8750 | 348 |
register_Ns3AttributeAccessor_methods(root_module, root_module['ns3::AttributeAccessor']) |
349 |
register_Ns3AttributeChecker_methods(root_module, root_module['ns3::AttributeChecker']) |
|
350 |
register_Ns3AttributeValue_methods(root_module, root_module['ns3::AttributeValue']) |
|
351 |
register_Ns3BoxChecker_methods(root_module, root_module['ns3::BoxChecker']) |
|
352 |
register_Ns3BoxValue_methods(root_module, root_module['ns3::BoxValue']) |
|
353 |
register_Ns3Building_methods(root_module, root_module['ns3::Building']) |
|
354 |
register_Ns3BuildingsPropagationLossModel_methods(root_module, root_module['ns3::BuildingsPropagationLossModel']) |
|
355 |
register_Ns3CallbackChecker_methods(root_module, root_module['ns3::CallbackChecker']) |
|
356 |
register_Ns3CallbackImplBase_methods(root_module, root_module['ns3::CallbackImplBase']) |
|
357 |
register_Ns3CallbackValue_methods(root_module, root_module['ns3::CallbackValue']) |
|
8985
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
358 |
register_Ns3ConstantRandomVariable_methods(root_module, root_module['ns3::ConstantRandomVariable']) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
359 |
register_Ns3DeterministicRandomVariable_methods(root_module, root_module['ns3::DeterministicRandomVariable']) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
360 |
register_Ns3EmpiricalRandomVariable_methods(root_module, root_module['ns3::EmpiricalRandomVariable']) |
8750 | 361 |
register_Ns3EmptyAttributeValue_methods(root_module, root_module['ns3::EmptyAttributeValue']) |
8985
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
362 |
register_Ns3ErlangRandomVariable_methods(root_module, root_module['ns3::ErlangRandomVariable']) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
363 |
register_Ns3ExponentialRandomVariable_methods(root_module, root_module['ns3::ExponentialRandomVariable']) |
8750 | 364 |
register_Ns3FixedRssLossModel_methods(root_module, root_module['ns3::FixedRssLossModel']) |
365 |
register_Ns3FriisPropagationLossModel_methods(root_module, root_module['ns3::FriisPropagationLossModel']) |
|
8985
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
366 |
register_Ns3GammaRandomVariable_methods(root_module, root_module['ns3::GammaRandomVariable']) |
8750 | 367 |
register_Ns3GridBuildingAllocator_methods(root_module, root_module['ns3::GridBuildingAllocator']) |
368 |
register_Ns3GridPositionAllocator_methods(root_module, root_module['ns3::GridPositionAllocator']) |
|
369 |
register_Ns3HybridBuildingsPropagationLossModel_methods(root_module, root_module['ns3::HybridBuildingsPropagationLossModel']) |
|
370 |
register_Ns3Ipv4AddressChecker_methods(root_module, root_module['ns3::Ipv4AddressChecker']) |
|
371 |
register_Ns3Ipv4AddressValue_methods(root_module, root_module['ns3::Ipv4AddressValue']) |
|
372 |
register_Ns3Ipv4MaskChecker_methods(root_module, root_module['ns3::Ipv4MaskChecker']) |
|
373 |
register_Ns3Ipv4MaskValue_methods(root_module, root_module['ns3::Ipv4MaskValue']) |
|
374 |
register_Ns3Ipv6AddressChecker_methods(root_module, root_module['ns3::Ipv6AddressChecker']) |
|
375 |
register_Ns3Ipv6AddressValue_methods(root_module, root_module['ns3::Ipv6AddressValue']) |
|
376 |
register_Ns3Ipv6PrefixChecker_methods(root_module, root_module['ns3::Ipv6PrefixChecker']) |
|
377 |
register_Ns3Ipv6PrefixValue_methods(root_module, root_module['ns3::Ipv6PrefixValue']) |
|
378 |
register_Ns3ItuR1238PropagationLossModel_methods(root_module, root_module['ns3::ItuR1238PropagationLossModel']) |
|
379 |
register_Ns3ListPositionAllocator_methods(root_module, root_module['ns3::ListPositionAllocator']) |
|
380 |
register_Ns3LogDistancePropagationLossModel_methods(root_module, root_module['ns3::LogDistancePropagationLossModel']) |
|
8985
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
381 |
register_Ns3LogNormalRandomVariable_methods(root_module, root_module['ns3::LogNormalRandomVariable']) |
8750 | 382 |
register_Ns3MatrixPropagationLossModel_methods(root_module, root_module['ns3::MatrixPropagationLossModel']) |
383 |
register_Ns3MobilityModel_methods(root_module, root_module['ns3::MobilityModel']) |
|
384 |
register_Ns3NakagamiPropagationLossModel_methods(root_module, root_module['ns3::NakagamiPropagationLossModel']) |
|
385 |
register_Ns3NetDevice_methods(root_module, root_module['ns3::NetDevice']) |
|
386 |
register_Ns3Node_methods(root_module, root_module['ns3::Node']) |
|
8985
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
387 |
register_Ns3NormalRandomVariable_methods(root_module, root_module['ns3::NormalRandomVariable']) |
8750 | 388 |
register_Ns3ObjectFactoryChecker_methods(root_module, root_module['ns3::ObjectFactoryChecker']) |
389 |
register_Ns3ObjectFactoryValue_methods(root_module, root_module['ns3::ObjectFactoryValue']) |
|
390 |
register_Ns3OhBuildingsPropagationLossModel_methods(root_module, root_module['ns3::OhBuildingsPropagationLossModel']) |
|
8985
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
391 |
register_Ns3ParetoRandomVariable_methods(root_module, root_module['ns3::ParetoRandomVariable']) |
8750 | 392 |
register_Ns3TimeChecker_methods(root_module, root_module['ns3::TimeChecker']) |
393 |
register_Ns3TimeValue_methods(root_module, root_module['ns3::TimeValue']) |
|
394 |
register_Ns3TypeIdChecker_methods(root_module, root_module['ns3::TypeIdChecker']) |
|
395 |
register_Ns3TypeIdValue_methods(root_module, root_module['ns3::TypeIdValue']) |
|
396 |
register_Ns3Vector2DChecker_methods(root_module, root_module['ns3::Vector2DChecker']) |
|
397 |
register_Ns3Vector2DValue_methods(root_module, root_module['ns3::Vector2DValue']) |
|
398 |
register_Ns3Vector3DChecker_methods(root_module, root_module['ns3::Vector3DChecker']) |
|
399 |
register_Ns3Vector3DValue_methods(root_module, root_module['ns3::Vector3DValue']) |
|
400 |
register_Ns3AddressChecker_methods(root_module, root_module['ns3::AddressChecker']) |
|
401 |
register_Ns3AddressValue_methods(root_module, root_module['ns3::AddressValue']) |
|
402 |
register_Ns3BuildingsMobilityModel_methods(root_module, root_module['ns3::BuildingsMobilityModel']) |
|
403 |
return |
|
404 |
||
405 |
def register_Ns3Address_methods(root_module, cls): |
|
406 |
cls.add_binary_comparison_operator('<') |
|
407 |
cls.add_binary_comparison_operator('!=') |
|
408 |
cls.add_output_stream_operator() |
|
409 |
cls.add_binary_comparison_operator('==') |
|
410 |
## address.h (module 'network'): ns3::Address::Address() [constructor] |
|
411 |
cls.add_constructor([]) |
|
412 |
## address.h (module 'network'): ns3::Address::Address(uint8_t type, uint8_t const * buffer, uint8_t len) [constructor] |
|
413 |
cls.add_constructor([param('uint8_t', 'type'), param('uint8_t const *', 'buffer'), param('uint8_t', 'len')]) |
|
414 |
## address.h (module 'network'): ns3::Address::Address(ns3::Address const & address) [copy constructor] |
|
415 |
cls.add_constructor([param('ns3::Address const &', 'address')]) |
|
416 |
## address.h (module 'network'): bool ns3::Address::CheckCompatible(uint8_t type, uint8_t len) const [member function] |
|
417 |
cls.add_method('CheckCompatible', |
|
418 |
'bool', |
|
419 |
[param('uint8_t', 'type'), param('uint8_t', 'len')], |
|
420 |
is_const=True) |
|
421 |
## address.h (module 'network'): uint32_t ns3::Address::CopyAllFrom(uint8_t const * buffer, uint8_t len) [member function] |
|
422 |
cls.add_method('CopyAllFrom', |
|
423 |
'uint32_t', |
|
424 |
[param('uint8_t const *', 'buffer'), param('uint8_t', 'len')]) |
|
425 |
## address.h (module 'network'): uint32_t ns3::Address::CopyAllTo(uint8_t * buffer, uint8_t len) const [member function] |
|
426 |
cls.add_method('CopyAllTo', |
|
427 |
'uint32_t', |
|
428 |
[param('uint8_t *', 'buffer'), param('uint8_t', 'len')], |
|
429 |
is_const=True) |
|
430 |
## address.h (module 'network'): uint32_t ns3::Address::CopyFrom(uint8_t const * buffer, uint8_t len) [member function] |
|
431 |
cls.add_method('CopyFrom', |
|
432 |
'uint32_t', |
|
433 |
[param('uint8_t const *', 'buffer'), param('uint8_t', 'len')]) |
|
434 |
## address.h (module 'network'): uint32_t ns3::Address::CopyTo(uint8_t * buffer) const [member function] |
|
435 |
cls.add_method('CopyTo', |
|
436 |
'uint32_t', |
|
437 |
[param('uint8_t *', 'buffer')], |
|
438 |
is_const=True) |
|
439 |
## address.h (module 'network'): void ns3::Address::Deserialize(ns3::TagBuffer buffer) [member function] |
|
440 |
cls.add_method('Deserialize', |
|
441 |
'void', |
|
442 |
[param('ns3::TagBuffer', 'buffer')]) |
|
443 |
## address.h (module 'network'): uint8_t ns3::Address::GetLength() const [member function] |
|
444 |
cls.add_method('GetLength', |
|
445 |
'uint8_t', |
|
446 |
[], |
|
447 |
is_const=True) |
|
448 |
## address.h (module 'network'): uint32_t ns3::Address::GetSerializedSize() const [member function] |
|
449 |
cls.add_method('GetSerializedSize', |
|
450 |
'uint32_t', |
|
451 |
[], |
|
452 |
is_const=True) |
|
453 |
## address.h (module 'network'): bool ns3::Address::IsInvalid() const [member function] |
|
454 |
cls.add_method('IsInvalid', |
|
455 |
'bool', |
|
456 |
[], |
|
457 |
is_const=True) |
|
458 |
## address.h (module 'network'): bool ns3::Address::IsMatchingType(uint8_t type) const [member function] |
|
459 |
cls.add_method('IsMatchingType', |
|
460 |
'bool', |
|
461 |
[param('uint8_t', 'type')], |
|
462 |
is_const=True) |
|
463 |
## address.h (module 'network'): static uint8_t ns3::Address::Register() [member function] |
|
464 |
cls.add_method('Register', |
|
465 |
'uint8_t', |
|
466 |
[], |
|
467 |
is_static=True) |
|
468 |
## address.h (module 'network'): void ns3::Address::Serialize(ns3::TagBuffer buffer) const [member function] |
|
469 |
cls.add_method('Serialize', |
|
470 |
'void', |
|
471 |
[param('ns3::TagBuffer', 'buffer')], |
|
472 |
is_const=True) |
|
473 |
return |
|
474 |
||
475 |
def register_Ns3AttributeConstructionList_methods(root_module, cls): |
|
476 |
## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::AttributeConstructionList(ns3::AttributeConstructionList const & arg0) [copy constructor] |
|
477 |
cls.add_constructor([param('ns3::AttributeConstructionList const &', 'arg0')]) |
|
478 |
## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::AttributeConstructionList() [constructor] |
|
479 |
cls.add_constructor([]) |
|
480 |
## attribute-construction-list.h (module 'core'): void ns3::AttributeConstructionList::Add(std::string name, ns3::Ptr<ns3::AttributeChecker const> checker, ns3::Ptr<ns3::AttributeValue> value) [member function] |
|
481 |
cls.add_method('Add', |
|
482 |
'void', |
|
483 |
[param('std::string', 'name'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker'), param('ns3::Ptr< ns3::AttributeValue >', 'value')]) |
|
484 |
## attribute-construction-list.h (module 'core'): std::_List_const_iterator<ns3::AttributeConstructionList::Item> ns3::AttributeConstructionList::Begin() const [member function] |
|
485 |
cls.add_method('Begin', |
|
486 |
'std::_List_const_iterator< ns3::AttributeConstructionList::Item >', |
|
487 |
[], |
|
488 |
is_const=True) |
|
489 |
## attribute-construction-list.h (module 'core'): std::_List_const_iterator<ns3::AttributeConstructionList::Item> ns3::AttributeConstructionList::End() const [member function] |
|
490 |
cls.add_method('End', |
|
491 |
'std::_List_const_iterator< ns3::AttributeConstructionList::Item >', |
|
492 |
[], |
|
493 |
is_const=True) |
|
494 |
## attribute-construction-list.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::AttributeConstructionList::Find(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function] |
|
495 |
cls.add_method('Find', |
|
496 |
'ns3::Ptr< ns3::AttributeValue >', |
|
497 |
[param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
|
498 |
is_const=True) |
|
499 |
return |
|
500 |
||
501 |
def register_Ns3AttributeConstructionListItem_methods(root_module, cls): |
|
502 |
## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item::Item() [constructor] |
|
503 |
cls.add_constructor([]) |
|
504 |
## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item::Item(ns3::AttributeConstructionList::Item const & arg0) [copy constructor] |
|
505 |
cls.add_constructor([param('ns3::AttributeConstructionList::Item const &', 'arg0')]) |
|
506 |
## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item::checker [variable] |
|
507 |
cls.add_instance_attribute('checker', 'ns3::Ptr< ns3::AttributeChecker const >', is_const=False) |
|
508 |
## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item::name [variable] |
|
509 |
cls.add_instance_attribute('name', 'std::string', is_const=False) |
|
510 |
## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item::value [variable] |
|
511 |
cls.add_instance_attribute('value', 'ns3::Ptr< ns3::AttributeValue >', is_const=False) |
|
512 |
return |
|
513 |
||
514 |
def register_Ns3Box_methods(root_module, cls): |
|
515 |
cls.add_output_stream_operator() |
|
516 |
## box.h (module 'mobility'): ns3::Box::Box(ns3::Box const & arg0) [copy constructor] |
|
517 |
cls.add_constructor([param('ns3::Box const &', 'arg0')]) |
|
518 |
## box.h (module 'mobility'): ns3::Box::Box(double _xMin, double _xMax, double _yMin, double _yMax, double _zMin, double _zMax) [constructor] |
|
519 |
cls.add_constructor([param('double', '_xMin'), param('double', '_xMax'), param('double', '_yMin'), param('double', '_yMax'), param('double', '_zMin'), param('double', '_zMax')]) |
|
520 |
## box.h (module 'mobility'): ns3::Box::Box() [constructor] |
|
521 |
cls.add_constructor([]) |
|
522 |
## box.h (module 'mobility'): ns3::Vector ns3::Box::CalculateIntersection(ns3::Vector const & current, ns3::Vector const & speed) const [member function] |
|
523 |
cls.add_method('CalculateIntersection', |
|
524 |
'ns3::Vector', |
|
525 |
[param('ns3::Vector const &', 'current'), param('ns3::Vector const &', 'speed')], |
|
526 |
is_const=True) |
|
527 |
## box.h (module 'mobility'): ns3::Box::Side ns3::Box::GetClosestSide(ns3::Vector const & position) const [member function] |
|
528 |
cls.add_method('GetClosestSide', |
|
529 |
'ns3::Box::Side', |
|
530 |
[param('ns3::Vector const &', 'position')], |
|
531 |
is_const=True) |
|
532 |
## box.h (module 'mobility'): bool ns3::Box::IsInside(ns3::Vector const & position) const [member function] |
|
533 |
cls.add_method('IsInside', |
|
534 |
'bool', |
|
535 |
[param('ns3::Vector const &', 'position')], |
|
536 |
is_const=True) |
|
537 |
## box.h (module 'mobility'): ns3::Box::xMax [variable] |
|
538 |
cls.add_instance_attribute('xMax', 'double', is_const=False) |
|
539 |
## box.h (module 'mobility'): ns3::Box::xMin [variable] |
|
540 |
cls.add_instance_attribute('xMin', 'double', is_const=False) |
|
541 |
## box.h (module 'mobility'): ns3::Box::yMax [variable] |
|
542 |
cls.add_instance_attribute('yMax', 'double', is_const=False) |
|
543 |
## box.h (module 'mobility'): ns3::Box::yMin [variable] |
|
544 |
cls.add_instance_attribute('yMin', 'double', is_const=False) |
|
545 |
## box.h (module 'mobility'): ns3::Box::zMax [variable] |
|
546 |
cls.add_instance_attribute('zMax', 'double', is_const=False) |
|
547 |
## box.h (module 'mobility'): ns3::Box::zMin [variable] |
|
548 |
cls.add_instance_attribute('zMin', 'double', is_const=False) |
|
549 |
return |
|
550 |
||
551 |
def register_Ns3BuildingContainer_methods(root_module, cls): |
|
552 |
## building-container.h (module 'buildings'): ns3::BuildingContainer::BuildingContainer(ns3::BuildingContainer const & arg0) [copy constructor] |
|
553 |
cls.add_constructor([param('ns3::BuildingContainer const &', 'arg0')]) |
|
554 |
## building-container.h (module 'buildings'): ns3::BuildingContainer::BuildingContainer() [constructor] |
|
555 |
cls.add_constructor([]) |
|
556 |
## building-container.h (module 'buildings'): ns3::BuildingContainer::BuildingContainer(ns3::Ptr<ns3::Building> building) [constructor] |
|
557 |
cls.add_constructor([param('ns3::Ptr< ns3::Building >', 'building')]) |
|
558 |
## building-container.h (module 'buildings'): ns3::BuildingContainer::BuildingContainer(std::string buildingName) [constructor] |
|
559 |
cls.add_constructor([param('std::string', 'buildingName')]) |
|
560 |
## building-container.h (module 'buildings'): void ns3::BuildingContainer::Add(ns3::BuildingContainer other) [member function] |
|
561 |
cls.add_method('Add', |
|
562 |
'void', |
|
563 |
[param('ns3::BuildingContainer', 'other')]) |
|
564 |
## building-container.h (module 'buildings'): void ns3::BuildingContainer::Add(ns3::Ptr<ns3::Building> building) [member function] |
|
565 |
cls.add_method('Add', |
|
566 |
'void', |
|
567 |
[param('ns3::Ptr< ns3::Building >', 'building')]) |
|
568 |
## building-container.h (module 'buildings'): void ns3::BuildingContainer::Add(std::string buildingName) [member function] |
|
569 |
cls.add_method('Add', |
|
570 |
'void', |
|
571 |
[param('std::string', 'buildingName')]) |
|
572 |
## building-container.h (module 'buildings'): __gnu_cxx::__normal_iterator<const ns3::Ptr<ns3::Building>*,std::vector<ns3::Ptr<ns3::Building>, std::allocator<ns3::Ptr<ns3::Building> > > > ns3::BuildingContainer::Begin() const [member function] |
|
573 |
cls.add_method('Begin', |
|
574 |
'__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Building > const, std::vector< ns3::Ptr< ns3::Building > > >', |
|
575 |
[], |
|
576 |
is_const=True) |
|
577 |
## building-container.h (module 'buildings'): void ns3::BuildingContainer::Create(uint32_t n) [member function] |
|
578 |
cls.add_method('Create', |
|
579 |
'void', |
|
580 |
[param('uint32_t', 'n')]) |
|
581 |
## building-container.h (module 'buildings'): __gnu_cxx::__normal_iterator<const ns3::Ptr<ns3::Building>*,std::vector<ns3::Ptr<ns3::Building>, std::allocator<ns3::Ptr<ns3::Building> > > > ns3::BuildingContainer::End() const [member function] |
|
582 |
cls.add_method('End', |
|
583 |
'__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Building > const, std::vector< ns3::Ptr< ns3::Building > > >', |
|
584 |
[], |
|
585 |
is_const=True) |
|
586 |
## building-container.h (module 'buildings'): ns3::Ptr<ns3::Building> ns3::BuildingContainer::Get(uint32_t i) const [member function] |
|
587 |
cls.add_method('Get', |
|
588 |
'ns3::Ptr< ns3::Building >', |
|
589 |
[param('uint32_t', 'i')], |
|
590 |
is_const=True) |
|
591 |
## building-container.h (module 'buildings'): static ns3::BuildingContainer ns3::BuildingContainer::GetGlobal() [member function] |
|
592 |
cls.add_method('GetGlobal', |
|
593 |
'ns3::BuildingContainer', |
|
594 |
[], |
|
595 |
is_static=True) |
|
596 |
## building-container.h (module 'buildings'): uint32_t ns3::BuildingContainer::GetN() const [member function] |
|
597 |
cls.add_method('GetN', |
|
598 |
'uint32_t', |
|
599 |
[], |
|
600 |
is_const=True) |
|
601 |
return |
|
602 |
||
603 |
def register_Ns3BuildingList_methods(root_module, cls): |
|
604 |
## building-list.h (module 'buildings'): ns3::BuildingList::BuildingList() [constructor] |
|
605 |
cls.add_constructor([]) |
|
606 |
## building-list.h (module 'buildings'): ns3::BuildingList::BuildingList(ns3::BuildingList const & arg0) [copy constructor] |
|
607 |
cls.add_constructor([param('ns3::BuildingList const &', 'arg0')]) |
|
608 |
## building-list.h (module 'buildings'): static uint32_t ns3::BuildingList::Add(ns3::Ptr<ns3::Building> building) [member function] |
|
609 |
cls.add_method('Add', |
|
610 |
'uint32_t', |
|
611 |
[param('ns3::Ptr< ns3::Building >', 'building')], |
|
612 |
is_static=True) |
|
613 |
## building-list.h (module 'buildings'): static __gnu_cxx::__normal_iterator<const ns3::Ptr<ns3::Building>*,std::vector<ns3::Ptr<ns3::Building>, std::allocator<ns3::Ptr<ns3::Building> > > > ns3::BuildingList::Begin() [member function] |
|
614 |
cls.add_method('Begin', |
|
615 |
'__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Building > const, std::vector< ns3::Ptr< ns3::Building > > >', |
|
616 |
[], |
|
617 |
is_static=True) |
|
618 |
## building-list.h (module 'buildings'): static __gnu_cxx::__normal_iterator<const ns3::Ptr<ns3::Building>*,std::vector<ns3::Ptr<ns3::Building>, std::allocator<ns3::Ptr<ns3::Building> > > > ns3::BuildingList::End() [member function] |
|
619 |
cls.add_method('End', |
|
620 |
'__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Building > const, std::vector< ns3::Ptr< ns3::Building > > >', |
|
621 |
[], |
|
622 |
is_static=True) |
|
623 |
## building-list.h (module 'buildings'): static ns3::Ptr<ns3::Building> ns3::BuildingList::GetBuilding(uint32_t n) [member function] |
|
624 |
cls.add_method('GetBuilding', |
|
625 |
'ns3::Ptr< ns3::Building >', |
|
626 |
[param('uint32_t', 'n')], |
|
627 |
is_static=True) |
|
628 |
## building-list.h (module 'buildings'): static uint32_t ns3::BuildingList::GetNBuildings() [member function] |
|
629 |
cls.add_method('GetNBuildings', |
|
630 |
'uint32_t', |
|
631 |
[], |
|
632 |
is_static=True) |
|
633 |
return |
|
634 |
||
635 |
def register_Ns3BuildingsHelper_methods(root_module, cls): |
|
636 |
## buildings-helper.h (module 'buildings'): ns3::BuildingsHelper::BuildingsHelper() [constructor] |
|
637 |
cls.add_constructor([]) |
|
638 |
## buildings-helper.h (module 'buildings'): ns3::BuildingsHelper::BuildingsHelper(ns3::BuildingsHelper const & arg0) [copy constructor] |
|
639 |
cls.add_constructor([param('ns3::BuildingsHelper const &', 'arg0')]) |
|
640 |
## buildings-helper.h (module 'buildings'): static void ns3::BuildingsHelper::MakeConsistent(ns3::Ptr<ns3::BuildingsMobilityModel> bmm) [member function] |
|
641 |
cls.add_method('MakeConsistent', |
|
642 |
'void', |
|
643 |
[param('ns3::Ptr< ns3::BuildingsMobilityModel >', 'bmm')], |
|
644 |
is_static=True) |
|
645 |
## buildings-helper.h (module 'buildings'): static void ns3::BuildingsHelper::MakeMobilityModelConsistent() [member function] |
|
646 |
cls.add_method('MakeMobilityModelConsistent', |
|
647 |
'void', |
|
648 |
[], |
|
649 |
is_static=True) |
|
650 |
return |
|
651 |
||
652 |
def register_Ns3CallbackBase_methods(root_module, cls): |
|
653 |
## callback.h (module 'core'): ns3::CallbackBase::CallbackBase(ns3::CallbackBase const & arg0) [copy constructor] |
|
654 |
cls.add_constructor([param('ns3::CallbackBase const &', 'arg0')]) |
|
655 |
## callback.h (module 'core'): ns3::CallbackBase::CallbackBase() [constructor] |
|
656 |
cls.add_constructor([]) |
|
657 |
## callback.h (module 'core'): ns3::Ptr<ns3::CallbackImplBase> ns3::CallbackBase::GetImpl() const [member function] |
|
658 |
cls.add_method('GetImpl', |
|
659 |
'ns3::Ptr< ns3::CallbackImplBase >', |
|
660 |
[], |
|
661 |
is_const=True) |
|
662 |
## callback.h (module 'core'): ns3::CallbackBase::CallbackBase(ns3::Ptr<ns3::CallbackImplBase> impl) [constructor] |
|
663 |
cls.add_constructor([param('ns3::Ptr< ns3::CallbackImplBase >', 'impl')], |
|
664 |
visibility='protected') |
|
665 |
## callback.h (module 'core'): static std::string ns3::CallbackBase::Demangle(std::string const & mangled) [member function] |
|
666 |
cls.add_method('Demangle', |
|
667 |
'std::string', |
|
668 |
[param('std::string const &', 'mangled')], |
|
669 |
is_static=True, visibility='protected') |
|
670 |
return |
|
671 |
||
672 |
def register_Ns3ConstantVelocityHelper_methods(root_module, cls): |
|
673 |
## constant-velocity-helper.h (module 'mobility'): ns3::ConstantVelocityHelper::ConstantVelocityHelper(ns3::ConstantVelocityHelper const & arg0) [copy constructor] |
|
674 |
cls.add_constructor([param('ns3::ConstantVelocityHelper const &', 'arg0')]) |
|
675 |
## constant-velocity-helper.h (module 'mobility'): ns3::ConstantVelocityHelper::ConstantVelocityHelper() [constructor] |
|
676 |
cls.add_constructor([]) |
|
677 |
## constant-velocity-helper.h (module 'mobility'): ns3::ConstantVelocityHelper::ConstantVelocityHelper(ns3::Vector const & position) [constructor] |
|
678 |
cls.add_constructor([param('ns3::Vector const &', 'position')]) |
|
679 |
## constant-velocity-helper.h (module 'mobility'): ns3::ConstantVelocityHelper::ConstantVelocityHelper(ns3::Vector const & position, ns3::Vector const & vel) [constructor] |
|
680 |
cls.add_constructor([param('ns3::Vector const &', 'position'), param('ns3::Vector const &', 'vel')]) |
|
681 |
## constant-velocity-helper.h (module 'mobility'): ns3::Vector ns3::ConstantVelocityHelper::GetCurrentPosition() const [member function] |
|
682 |
cls.add_method('GetCurrentPosition', |
|
683 |
'ns3::Vector', |
|
684 |
[], |
|
685 |
is_const=True) |
|
686 |
## constant-velocity-helper.h (module 'mobility'): ns3::Vector ns3::ConstantVelocityHelper::GetVelocity() const [member function] |
|
687 |
cls.add_method('GetVelocity', |
|
688 |
'ns3::Vector', |
|
689 |
[], |
|
690 |
is_const=True) |
|
691 |
## constant-velocity-helper.h (module 'mobility'): void ns3::ConstantVelocityHelper::Pause() [member function] |
|
692 |
cls.add_method('Pause', |
|
693 |
'void', |
|
694 |
[]) |
|
695 |
## constant-velocity-helper.h (module 'mobility'): void ns3::ConstantVelocityHelper::SetPosition(ns3::Vector const & position) [member function] |
|
696 |
cls.add_method('SetPosition', |
|
697 |
'void', |
|
698 |
[param('ns3::Vector const &', 'position')]) |
|
699 |
## constant-velocity-helper.h (module 'mobility'): void ns3::ConstantVelocityHelper::SetVelocity(ns3::Vector const & vel) [member function] |
|
700 |
cls.add_method('SetVelocity', |
|
701 |
'void', |
|
702 |
[param('ns3::Vector const &', 'vel')]) |
|
703 |
## constant-velocity-helper.h (module 'mobility'): void ns3::ConstantVelocityHelper::Unpause() [member function] |
|
704 |
cls.add_method('Unpause', |
|
705 |
'void', |
|
706 |
[]) |
|
707 |
## constant-velocity-helper.h (module 'mobility'): void ns3::ConstantVelocityHelper::Update() const [member function] |
|
708 |
cls.add_method('Update', |
|
709 |
'void', |
|
710 |
[], |
|
711 |
is_const=True) |
|
712 |
## constant-velocity-helper.h (module 'mobility'): void ns3::ConstantVelocityHelper::UpdateWithBounds(ns3::Rectangle const & rectangle) const [member function] |
|
713 |
cls.add_method('UpdateWithBounds', |
|
714 |
'void', |
|
715 |
[param('ns3::Rectangle const &', 'rectangle')], |
|
716 |
is_const=True) |
|
717 |
## constant-velocity-helper.h (module 'mobility'): void ns3::ConstantVelocityHelper::UpdateWithBounds(ns3::Box const & bounds) const [member function] |
|
718 |
cls.add_method('UpdateWithBounds', |
|
719 |
'void', |
|
720 |
[param('ns3::Box const &', 'bounds')], |
|
721 |
is_const=True) |
|
722 |
return |
|
723 |
||
724 |
def register_Ns3Ipv4Address_methods(root_module, cls): |
|
725 |
cls.add_binary_comparison_operator('<') |
|
726 |
cls.add_binary_comparison_operator('!=') |
|
727 |
cls.add_output_stream_operator() |
|
728 |
cls.add_binary_comparison_operator('==') |
|
729 |
## ipv4-address.h (module 'network'): ns3::Ipv4Address::Ipv4Address(ns3::Ipv4Address const & arg0) [copy constructor] |
|
730 |
cls.add_constructor([param('ns3::Ipv4Address const &', 'arg0')]) |
|
731 |
## ipv4-address.h (module 'network'): ns3::Ipv4Address::Ipv4Address() [constructor] |
|
732 |
cls.add_constructor([]) |
|
733 |
## ipv4-address.h (module 'network'): ns3::Ipv4Address::Ipv4Address(uint32_t address) [constructor] |
|
734 |
cls.add_constructor([param('uint32_t', 'address')]) |
|
735 |
## ipv4-address.h (module 'network'): ns3::Ipv4Address::Ipv4Address(char const * address) [constructor] |
|
736 |
cls.add_constructor([param('char const *', 'address')]) |
|
737 |
## ipv4-address.h (module 'network'): ns3::Ipv4Address ns3::Ipv4Address::CombineMask(ns3::Ipv4Mask const & mask) const [member function] |
|
738 |
cls.add_method('CombineMask', |
|
739 |
'ns3::Ipv4Address', |
|
740 |
[param('ns3::Ipv4Mask const &', 'mask')], |
|
741 |
is_const=True) |
|
742 |
## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::ConvertFrom(ns3::Address const & address) [member function] |
|
743 |
cls.add_method('ConvertFrom', |
|
744 |
'ns3::Ipv4Address', |
|
745 |
[param('ns3::Address const &', 'address')], |
|
746 |
is_static=True) |
|
747 |
## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::Deserialize(uint8_t const * buf) [member function] |
|
748 |
cls.add_method('Deserialize', |
|
749 |
'ns3::Ipv4Address', |
|
750 |
[param('uint8_t const *', 'buf')], |
|
751 |
is_static=True) |
|
752 |
## ipv4-address.h (module 'network'): uint32_t ns3::Ipv4Address::Get() const [member function] |
|
753 |
cls.add_method('Get', |
|
754 |
'uint32_t', |
|
755 |
[], |
|
756 |
is_const=True) |
|
757 |
## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::GetAny() [member function] |
|
758 |
cls.add_method('GetAny', |
|
759 |
'ns3::Ipv4Address', |
|
760 |
[], |
|
761 |
is_static=True) |
|
762 |
## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::GetBroadcast() [member function] |
|
763 |
cls.add_method('GetBroadcast', |
|
764 |
'ns3::Ipv4Address', |
|
765 |
[], |
|
766 |
is_static=True) |
|
767 |
## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::GetLoopback() [member function] |
|
768 |
cls.add_method('GetLoopback', |
|
769 |
'ns3::Ipv4Address', |
|
770 |
[], |
|
771 |
is_static=True) |
|
772 |
## ipv4-address.h (module 'network'): ns3::Ipv4Address ns3::Ipv4Address::GetSubnetDirectedBroadcast(ns3::Ipv4Mask const & mask) const [member function] |
|
773 |
cls.add_method('GetSubnetDirectedBroadcast', |
|
774 |
'ns3::Ipv4Address', |
|
775 |
[param('ns3::Ipv4Mask const &', 'mask')], |
|
776 |
is_const=True) |
|
777 |
## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::GetZero() [member function] |
|
778 |
cls.add_method('GetZero', |
|
779 |
'ns3::Ipv4Address', |
|
780 |
[], |
|
781 |
is_static=True) |
|
782 |
## ipv4-address.h (module 'network'): bool ns3::Ipv4Address::IsBroadcast() const [member function] |
|
783 |
cls.add_method('IsBroadcast', |
|
784 |
'bool', |
|
785 |
[], |
|
786 |
is_const=True) |
|
787 |
## ipv4-address.h (module 'network'): bool ns3::Ipv4Address::IsEqual(ns3::Ipv4Address const & other) const [member function] |
|
788 |
cls.add_method('IsEqual', |
|
789 |
'bool', |
|
790 |
[param('ns3::Ipv4Address const &', 'other')], |
|
791 |
is_const=True) |
|
792 |
## ipv4-address.h (module 'network'): bool ns3::Ipv4Address::IsLocalMulticast() const [member function] |
|
793 |
cls.add_method('IsLocalMulticast', |
|
794 |
'bool', |
|
795 |
[], |
|
796 |
is_const=True) |
|
797 |
## ipv4-address.h (module 'network'): static bool ns3::Ipv4Address::IsMatchingType(ns3::Address const & address) [member function] |
|
798 |
cls.add_method('IsMatchingType', |
|
799 |
'bool', |
|
800 |
[param('ns3::Address const &', 'address')], |
|
801 |
is_static=True) |
|
802 |
## ipv4-address.h (module 'network'): bool ns3::Ipv4Address::IsMulticast() const [member function] |
|
803 |
cls.add_method('IsMulticast', |
|
804 |
'bool', |
|
805 |
[], |
|
806 |
is_const=True) |
|
807 |
## ipv4-address.h (module 'network'): bool ns3::Ipv4Address::IsSubnetDirectedBroadcast(ns3::Ipv4Mask const & mask) const [member function] |
|
808 |
cls.add_method('IsSubnetDirectedBroadcast', |
|
809 |
'bool', |
|
810 |
[param('ns3::Ipv4Mask const &', 'mask')], |
|
811 |
is_const=True) |
|
812 |
## ipv4-address.h (module 'network'): void ns3::Ipv4Address::Print(std::ostream & os) const [member function] |
|
813 |
cls.add_method('Print', |
|
814 |
'void', |
|
815 |
[param('std::ostream &', 'os')], |
|
816 |
is_const=True) |
|
817 |
## ipv4-address.h (module 'network'): void ns3::Ipv4Address::Serialize(uint8_t * buf) const [member function] |
|
818 |
cls.add_method('Serialize', |
|
819 |
'void', |
|
820 |
[param('uint8_t *', 'buf')], |
|
821 |
is_const=True) |
|
822 |
## ipv4-address.h (module 'network'): void ns3::Ipv4Address::Set(uint32_t address) [member function] |
|
823 |
cls.add_method('Set', |
|
824 |
'void', |
|
825 |
[param('uint32_t', 'address')]) |
|
826 |
## ipv4-address.h (module 'network'): void ns3::Ipv4Address::Set(char const * address) [member function] |
|
827 |
cls.add_method('Set', |
|
828 |
'void', |
|
829 |
[param('char const *', 'address')]) |
|
830 |
return |
|
831 |
||
832 |
def register_Ns3Ipv4Mask_methods(root_module, cls): |
|
833 |
cls.add_binary_comparison_operator('!=') |
|
834 |
cls.add_output_stream_operator() |
|
835 |
cls.add_binary_comparison_operator('==') |
|
836 |
## ipv4-address.h (module 'network'): ns3::Ipv4Mask::Ipv4Mask(ns3::Ipv4Mask const & arg0) [copy constructor] |
|
837 |
cls.add_constructor([param('ns3::Ipv4Mask const &', 'arg0')]) |
|
838 |
## ipv4-address.h (module 'network'): ns3::Ipv4Mask::Ipv4Mask() [constructor] |
|
839 |
cls.add_constructor([]) |
|
840 |
## ipv4-address.h (module 'network'): ns3::Ipv4Mask::Ipv4Mask(uint32_t mask) [constructor] |
|
841 |
cls.add_constructor([param('uint32_t', 'mask')]) |
|
842 |
## ipv4-address.h (module 'network'): ns3::Ipv4Mask::Ipv4Mask(char const * mask) [constructor] |
|
843 |
cls.add_constructor([param('char const *', 'mask')]) |
|
844 |
## ipv4-address.h (module 'network'): uint32_t ns3::Ipv4Mask::Get() const [member function] |
|
845 |
cls.add_method('Get', |
|
846 |
'uint32_t', |
|
847 |
[], |
|
848 |
is_const=True) |
|
849 |
## ipv4-address.h (module 'network'): uint32_t ns3::Ipv4Mask::GetInverse() const [member function] |
|
850 |
cls.add_method('GetInverse', |
|
851 |
'uint32_t', |
|
852 |
[], |
|
853 |
is_const=True) |
|
854 |
## ipv4-address.h (module 'network'): static ns3::Ipv4Mask ns3::Ipv4Mask::GetLoopback() [member function] |
|
855 |
cls.add_method('GetLoopback', |
|
856 |
'ns3::Ipv4Mask', |
|
857 |
[], |
|
858 |
is_static=True) |
|
859 |
## ipv4-address.h (module 'network'): static ns3::Ipv4Mask ns3::Ipv4Mask::GetOnes() [member function] |
|
860 |
cls.add_method('GetOnes', |
|
861 |
'ns3::Ipv4Mask', |
|
862 |
[], |
|
863 |
is_static=True) |
|
864 |
## ipv4-address.h (module 'network'): uint16_t ns3::Ipv4Mask::GetPrefixLength() const [member function] |
|
865 |
cls.add_method('GetPrefixLength', |
|
866 |
'uint16_t', |
|
867 |
[], |
|
868 |
is_const=True) |
|
869 |
## ipv4-address.h (module 'network'): static ns3::Ipv4Mask ns3::Ipv4Mask::GetZero() [member function] |
|
870 |
cls.add_method('GetZero', |
|
871 |
'ns3::Ipv4Mask', |
|
872 |
[], |
|
873 |
is_static=True) |
|
874 |
## ipv4-address.h (module 'network'): bool ns3::Ipv4Mask::IsEqual(ns3::Ipv4Mask other) const [member function] |
|
875 |
cls.add_method('IsEqual', |
|
876 |
'bool', |
|
877 |
[param('ns3::Ipv4Mask', 'other')], |
|
878 |
is_const=True) |
|
879 |
## ipv4-address.h (module 'network'): bool ns3::Ipv4Mask::IsMatch(ns3::Ipv4Address a, ns3::Ipv4Address b) const [member function] |
|
880 |
cls.add_method('IsMatch', |
|
881 |
'bool', |
|
882 |
[param('ns3::Ipv4Address', 'a'), param('ns3::Ipv4Address', 'b')], |
|
883 |
is_const=True) |
|
884 |
## ipv4-address.h (module 'network'): void ns3::Ipv4Mask::Print(std::ostream & os) const [member function] |
|
885 |
cls.add_method('Print', |
|
886 |
'void', |
|
887 |
[param('std::ostream &', 'os')], |
|
888 |
is_const=True) |
|
889 |
## ipv4-address.h (module 'network'): void ns3::Ipv4Mask::Set(uint32_t mask) [member function] |
|
890 |
cls.add_method('Set', |
|
891 |
'void', |
|
892 |
[param('uint32_t', 'mask')]) |
|
893 |
return |
|
894 |
||
895 |
def register_Ns3Ipv6Address_methods(root_module, cls): |
|
896 |
cls.add_binary_comparison_operator('<') |
|
897 |
cls.add_binary_comparison_operator('!=') |
|
898 |
cls.add_output_stream_operator() |
|
899 |
cls.add_binary_comparison_operator('==') |
|
900 |
## ipv6-address.h (module 'network'): ns3::Ipv6Address::Ipv6Address() [constructor] |
|
901 |
cls.add_constructor([]) |
|
902 |
## ipv6-address.h (module 'network'): ns3::Ipv6Address::Ipv6Address(char const * address) [constructor] |
|
903 |
cls.add_constructor([param('char const *', 'address')]) |
|
904 |
## ipv6-address.h (module 'network'): ns3::Ipv6Address::Ipv6Address(uint8_t * address) [constructor] |
|
905 |
cls.add_constructor([param('uint8_t *', 'address')]) |
|
906 |
## ipv6-address.h (module 'network'): ns3::Ipv6Address::Ipv6Address(ns3::Ipv6Address const & addr) [copy constructor] |
|
907 |
cls.add_constructor([param('ns3::Ipv6Address const &', 'addr')]) |
|
908 |
## ipv6-address.h (module 'network'): ns3::Ipv6Address::Ipv6Address(ns3::Ipv6Address const * addr) [constructor] |
|
909 |
cls.add_constructor([param('ns3::Ipv6Address const *', 'addr')]) |
|
910 |
## ipv6-address.h (module 'network'): ns3::Ipv6Address ns3::Ipv6Address::CombinePrefix(ns3::Ipv6Prefix const & prefix) [member function] |
|
911 |
cls.add_method('CombinePrefix', |
|
912 |
'ns3::Ipv6Address', |
|
913 |
[param('ns3::Ipv6Prefix const &', 'prefix')]) |
|
914 |
## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::ConvertFrom(ns3::Address const & address) [member function] |
|
915 |
cls.add_method('ConvertFrom', |
|
916 |
'ns3::Ipv6Address', |
|
917 |
[param('ns3::Address const &', 'address')], |
|
918 |
is_static=True) |
|
919 |
## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::Deserialize(uint8_t const * buf) [member function] |
|
920 |
cls.add_method('Deserialize', |
|
921 |
'ns3::Ipv6Address', |
|
922 |
[param('uint8_t const *', 'buf')], |
|
923 |
is_static=True) |
|
924 |
## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetAllHostsMulticast() [member function] |
|
925 |
cls.add_method('GetAllHostsMulticast', |
|
926 |
'ns3::Ipv6Address', |
|
927 |
[], |
|
928 |
is_static=True) |
|
929 |
## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetAllNodesMulticast() [member function] |
|
930 |
cls.add_method('GetAllNodesMulticast', |
|
931 |
'ns3::Ipv6Address', |
|
932 |
[], |
|
933 |
is_static=True) |
|
934 |
## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetAllRoutersMulticast() [member function] |
|
935 |
cls.add_method('GetAllRoutersMulticast', |
|
936 |
'ns3::Ipv6Address', |
|
937 |
[], |
|
938 |
is_static=True) |
|
939 |
## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetAny() [member function] |
|
940 |
cls.add_method('GetAny', |
|
941 |
'ns3::Ipv6Address', |
|
942 |
[], |
|
943 |
is_static=True) |
|
944 |
## ipv6-address.h (module 'network'): void ns3::Ipv6Address::GetBytes(uint8_t * buf) const [member function] |
|
945 |
cls.add_method('GetBytes', |
|
946 |
'void', |
|
947 |
[param('uint8_t *', 'buf')], |
|
948 |
is_const=True) |
|
949 |
## ipv6-address.h (module 'network'): ns3::Ipv4Address ns3::Ipv6Address::GetIpv4MappedAddress() const [member function] |
|
950 |
cls.add_method('GetIpv4MappedAddress', |
|
951 |
'ns3::Ipv4Address', |
|
952 |
[], |
|
953 |
is_const=True) |
|
954 |
## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetLoopback() [member function] |
|
955 |
cls.add_method('GetLoopback', |
|
956 |
'ns3::Ipv6Address', |
|
957 |
[], |
|
958 |
is_static=True) |
|
959 |
## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetOnes() [member function] |
|
960 |
cls.add_method('GetOnes', |
|
961 |
'ns3::Ipv6Address', |
|
962 |
[], |
|
963 |
is_static=True) |
|
964 |
## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetZero() [member function] |
|
965 |
cls.add_method('GetZero', |
|
966 |
'ns3::Ipv6Address', |
|
967 |
[], |
|
968 |
is_static=True) |
|
969 |
## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsAllHostsMulticast() const [member function] |
|
970 |
cls.add_method('IsAllHostsMulticast', |
|
971 |
'bool', |
|
972 |
[], |
|
973 |
is_const=True) |
|
974 |
## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsAllNodesMulticast() const [member function] |
|
975 |
cls.add_method('IsAllNodesMulticast', |
|
976 |
'bool', |
|
977 |
[], |
|
978 |
is_const=True) |
|
979 |
## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsAllRoutersMulticast() const [member function] |
|
980 |
cls.add_method('IsAllRoutersMulticast', |
|
981 |
'bool', |
|
982 |
[], |
|
983 |
is_const=True) |
|
984 |
## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsAny() const [member function] |
|
985 |
cls.add_method('IsAny', |
|
986 |
'bool', |
|
987 |
[], |
|
988 |
is_const=True) |
|
989 |
## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsEqual(ns3::Ipv6Address const & other) const [member function] |
|
990 |
cls.add_method('IsEqual', |
|
991 |
'bool', |
|
992 |
[param('ns3::Ipv6Address const &', 'other')], |
|
993 |
is_const=True) |
|
994 |
## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsIpv4MappedAddress() [member function] |
|
995 |
cls.add_method('IsIpv4MappedAddress', |
|
996 |
'bool', |
|
997 |
[]) |
|
998 |
## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsLinkLocal() const [member function] |
|
999 |
cls.add_method('IsLinkLocal', |
|
1000 |
'bool', |
|
1001 |
[], |
|
1002 |
is_const=True) |
|
1003 |
## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsLinkLocalMulticast() const [member function] |
|
1004 |
cls.add_method('IsLinkLocalMulticast', |
|
1005 |
'bool', |
|
1006 |
[], |
|
1007 |
is_const=True) |
|
1008 |
## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsLocalhost() const [member function] |
|
1009 |
cls.add_method('IsLocalhost', |
|
1010 |
'bool', |
|
1011 |
[], |
|
1012 |
is_const=True) |
|
1013 |
## ipv6-address.h (module 'network'): static bool ns3::Ipv6Address::IsMatchingType(ns3::Address const & address) [member function] |
|
1014 |
cls.add_method('IsMatchingType', |
|
1015 |
'bool', |
|
1016 |
[param('ns3::Address const &', 'address')], |
|
1017 |
is_static=True) |
|
1018 |
## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsMulticast() const [member function] |
|
1019 |
cls.add_method('IsMulticast', |
|
1020 |
'bool', |
|
1021 |
[], |
|
1022 |
is_const=True) |
|
1023 |
## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsSolicitedMulticast() const [member function] |
|
1024 |
cls.add_method('IsSolicitedMulticast', |
|
1025 |
'bool', |
|
1026 |
[], |
|
1027 |
is_const=True) |
|
1028 |
## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::MakeAutoconfiguredAddress(ns3::Mac48Address addr, ns3::Ipv6Address prefix) [member function] |
|
1029 |
cls.add_method('MakeAutoconfiguredAddress', |
|
1030 |
'ns3::Ipv6Address', |
|
1031 |
[param('ns3::Mac48Address', 'addr'), param('ns3::Ipv6Address', 'prefix')], |
|
1032 |
is_static=True) |
|
1033 |
## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::MakeAutoconfiguredLinkLocalAddress(ns3::Mac48Address mac) [member function] |
|
1034 |
cls.add_method('MakeAutoconfiguredLinkLocalAddress', |
|
1035 |
'ns3::Ipv6Address', |
|
1036 |
[param('ns3::Mac48Address', 'mac')], |
|
1037 |
is_static=True) |
|
1038 |
## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::MakeIpv4MappedAddress(ns3::Ipv4Address addr) [member function] |
|
1039 |
cls.add_method('MakeIpv4MappedAddress', |
|
1040 |
'ns3::Ipv6Address', |
|
1041 |
[param('ns3::Ipv4Address', 'addr')], |
|
1042 |
is_static=True) |
|
1043 |
## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::MakeSolicitedAddress(ns3::Ipv6Address addr) [member function] |
|
1044 |
cls.add_method('MakeSolicitedAddress', |
|
1045 |
'ns3::Ipv6Address', |
|
1046 |
[param('ns3::Ipv6Address', 'addr')], |
|
1047 |
is_static=True) |
|
1048 |
## ipv6-address.h (module 'network'): void ns3::Ipv6Address::Print(std::ostream & os) const [member function] |
|
1049 |
cls.add_method('Print', |
|
1050 |
'void', |
|
1051 |
[param('std::ostream &', 'os')], |
|
1052 |
is_const=True) |
|
1053 |
## ipv6-address.h (module 'network'): void ns3::Ipv6Address::Serialize(uint8_t * buf) const [member function] |
|
1054 |
cls.add_method('Serialize', |
|
1055 |
'void', |
|
1056 |
[param('uint8_t *', 'buf')], |
|
1057 |
is_const=True) |
|
1058 |
## ipv6-address.h (module 'network'): void ns3::Ipv6Address::Set(char const * address) [member function] |
|
1059 |
cls.add_method('Set', |
|
1060 |
'void', |
|
1061 |
[param('char const *', 'address')]) |
|
1062 |
## ipv6-address.h (module 'network'): void ns3::Ipv6Address::Set(uint8_t * address) [member function] |
|
1063 |
cls.add_method('Set', |
|
1064 |
'void', |
|
1065 |
[param('uint8_t *', 'address')]) |
|
1066 |
return |
|
1067 |
||
1068 |
def register_Ns3Ipv6Prefix_methods(root_module, cls): |
|
1069 |
cls.add_binary_comparison_operator('!=') |
|
1070 |
cls.add_output_stream_operator() |
|
1071 |
cls.add_binary_comparison_operator('==') |
|
1072 |
## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix() [constructor] |
|
1073 |
cls.add_constructor([]) |
|
1074 |
## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix(uint8_t * prefix) [constructor] |
|
1075 |
cls.add_constructor([param('uint8_t *', 'prefix')]) |
|
1076 |
## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix(char const * prefix) [constructor] |
|
1077 |
cls.add_constructor([param('char const *', 'prefix')]) |
|
1078 |
## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix(uint8_t prefix) [constructor] |
|
1079 |
cls.add_constructor([param('uint8_t', 'prefix')]) |
|
1080 |
## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix(ns3::Ipv6Prefix const & prefix) [copy constructor] |
|
1081 |
cls.add_constructor([param('ns3::Ipv6Prefix const &', 'prefix')]) |
|
1082 |
## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix(ns3::Ipv6Prefix const * prefix) [constructor] |
|
1083 |
cls.add_constructor([param('ns3::Ipv6Prefix const *', 'prefix')]) |
|
1084 |
## ipv6-address.h (module 'network'): void ns3::Ipv6Prefix::GetBytes(uint8_t * buf) const [member function] |
|
1085 |
cls.add_method('GetBytes', |
|
1086 |
'void', |
|
1087 |
[param('uint8_t *', 'buf')], |
|
1088 |
is_const=True) |
|
1089 |
## ipv6-address.h (module 'network'): static ns3::Ipv6Prefix ns3::Ipv6Prefix::GetLoopback() [member function] |
|
1090 |
cls.add_method('GetLoopback', |
|
1091 |
'ns3::Ipv6Prefix', |
|
1092 |
[], |
|
1093 |
is_static=True) |
|
1094 |
## ipv6-address.h (module 'network'): static ns3::Ipv6Prefix ns3::Ipv6Prefix::GetOnes() [member function] |
|
1095 |
cls.add_method('GetOnes', |
|
1096 |
'ns3::Ipv6Prefix', |
|
1097 |
[], |
|
1098 |
is_static=True) |
|
1099 |
## ipv6-address.h (module 'network'): uint8_t ns3::Ipv6Prefix::GetPrefixLength() const [member function] |
|
1100 |
cls.add_method('GetPrefixLength', |
|
1101 |
'uint8_t', |
|
1102 |
[], |
|
1103 |
is_const=True) |
|
1104 |
## ipv6-address.h (module 'network'): static ns3::Ipv6Prefix ns3::Ipv6Prefix::GetZero() [member function] |
|
1105 |
cls.add_method('GetZero', |
|
1106 |
'ns3::Ipv6Prefix', |
|
1107 |
[], |
|
1108 |
is_static=True) |
|
1109 |
## ipv6-address.h (module 'network'): bool ns3::Ipv6Prefix::IsEqual(ns3::Ipv6Prefix const & other) const [member function] |
|
1110 |
cls.add_method('IsEqual', |
|
1111 |
'bool', |
|
1112 |
[param('ns3::Ipv6Prefix const &', 'other')], |
|
1113 |
is_const=True) |
|
1114 |
## ipv6-address.h (module 'network'): bool ns3::Ipv6Prefix::IsMatch(ns3::Ipv6Address a, ns3::Ipv6Address b) const [member function] |
|
1115 |
cls.add_method('IsMatch', |
|
1116 |
'bool', |
|
1117 |
[param('ns3::Ipv6Address', 'a'), param('ns3::Ipv6Address', 'b')], |
|
1118 |
is_const=True) |
|
1119 |
## ipv6-address.h (module 'network'): void ns3::Ipv6Prefix::Print(std::ostream & os) const [member function] |
|
1120 |
cls.add_method('Print', |
|
1121 |
'void', |
|
1122 |
[param('std::ostream &', 'os')], |
|
1123 |
is_const=True) |
|
1124 |
return |
|
1125 |
||
1126 |
def register_Ns3NodeContainer_methods(root_module, cls): |
|
1127 |
## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer(ns3::NodeContainer const & arg0) [copy constructor] |
|
1128 |
cls.add_constructor([param('ns3::NodeContainer const &', 'arg0')]) |
|
1129 |
## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer() [constructor] |
|
1130 |
cls.add_constructor([]) |
|
1131 |
## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer(ns3::Ptr<ns3::Node> node) [constructor] |
|
1132 |
cls.add_constructor([param('ns3::Ptr< ns3::Node >', 'node')]) |
|
1133 |
## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer(std::string nodeName) [constructor] |
|
1134 |
cls.add_constructor([param('std::string', 'nodeName')]) |
|
1135 |
## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer(ns3::NodeContainer const & a, ns3::NodeContainer const & b) [constructor] |
|
1136 |
cls.add_constructor([param('ns3::NodeContainer const &', 'a'), param('ns3::NodeContainer const &', 'b')]) |
|
1137 |
## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer(ns3::NodeContainer const & a, ns3::NodeContainer const & b, ns3::NodeContainer const & c) [constructor] |
|
1138 |
cls.add_constructor([param('ns3::NodeContainer const &', 'a'), param('ns3::NodeContainer const &', 'b'), param('ns3::NodeContainer const &', 'c')]) |
|
1139 |
## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer(ns3::NodeContainer const & a, ns3::NodeContainer const & b, ns3::NodeContainer const & c, ns3::NodeContainer const & d) [constructor] |
|
1140 |
cls.add_constructor([param('ns3::NodeContainer const &', 'a'), param('ns3::NodeContainer const &', 'b'), param('ns3::NodeContainer const &', 'c'), param('ns3::NodeContainer const &', 'd')]) |
|
1141 |
## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer(ns3::NodeContainer const & a, ns3::NodeContainer const & b, ns3::NodeContainer const & c, ns3::NodeContainer const & d, ns3::NodeContainer const & e) [constructor] |
|
1142 |
cls.add_constructor([param('ns3::NodeContainer const &', 'a'), param('ns3::NodeContainer const &', 'b'), param('ns3::NodeContainer const &', 'c'), param('ns3::NodeContainer const &', 'd'), param('ns3::NodeContainer const &', 'e')]) |
|
1143 |
## node-container.h (module 'network'): void ns3::NodeContainer::Add(ns3::NodeContainer other) [member function] |
|
1144 |
cls.add_method('Add', |
|
1145 |
'void', |
|
1146 |
[param('ns3::NodeContainer', 'other')]) |
|
1147 |
## node-container.h (module 'network'): void ns3::NodeContainer::Add(ns3::Ptr<ns3::Node> node) [member function] |
|
1148 |
cls.add_method('Add', |
|
1149 |
'void', |
|
1150 |
[param('ns3::Ptr< ns3::Node >', 'node')]) |
|
1151 |
## node-container.h (module 'network'): void ns3::NodeContainer::Add(std::string nodeName) [member function] |
|
1152 |
cls.add_method('Add', |
|
1153 |
'void', |
|
1154 |
[param('std::string', 'nodeName')]) |
|
1155 |
## node-container.h (module 'network'): __gnu_cxx::__normal_iterator<ns3::Ptr<ns3::Node> const*, std::vector<ns3::Ptr<ns3::Node>, std::allocator<ns3::Ptr<ns3::Node> > > > ns3::NodeContainer::Begin() const [member function] |
|
1156 |
cls.add_method('Begin', |
|
1157 |
'__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Node >, std::vector< ns3::Ptr< ns3::Node > > >', |
|
1158 |
[], |
|
1159 |
is_const=True) |
|
1160 |
## node-container.h (module 'network'): void ns3::NodeContainer::Create(uint32_t n) [member function] |
|
1161 |
cls.add_method('Create', |
|
1162 |
'void', |
|
1163 |
[param('uint32_t', 'n')]) |
|
1164 |
## node-container.h (module 'network'): void ns3::NodeContainer::Create(uint32_t n, uint32_t systemId) [member function] |
|
1165 |
cls.add_method('Create', |
|
1166 |
'void', |
|
1167 |
[param('uint32_t', 'n'), param('uint32_t', 'systemId')]) |
|
1168 |
## node-container.h (module 'network'): __gnu_cxx::__normal_iterator<ns3::Ptr<ns3::Node> const*, std::vector<ns3::Ptr<ns3::Node>, std::allocator<ns3::Ptr<ns3::Node> > > > ns3::NodeContainer::End() const [member function] |
|
1169 |
cls.add_method('End', |
|
1170 |
'__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Node >, std::vector< ns3::Ptr< ns3::Node > > >', |
|
1171 |
[], |
|
1172 |
is_const=True) |
|
1173 |
## node-container.h (module 'network'): ns3::Ptr<ns3::Node> ns3::NodeContainer::Get(uint32_t i) const [member function] |
|
1174 |
cls.add_method('Get', |
|
1175 |
'ns3::Ptr< ns3::Node >', |
|
1176 |
[param('uint32_t', 'i')], |
|
1177 |
is_const=True) |
|
1178 |
## node-container.h (module 'network'): static ns3::NodeContainer ns3::NodeContainer::GetGlobal() [member function] |
|
1179 |
cls.add_method('GetGlobal', |
|
1180 |
'ns3::NodeContainer', |
|
1181 |
[], |
|
1182 |
is_static=True) |
|
1183 |
## node-container.h (module 'network'): uint32_t ns3::NodeContainer::GetN() const [member function] |
|
1184 |
cls.add_method('GetN', |
|
1185 |
'uint32_t', |
|
1186 |
[], |
|
1187 |
is_const=True) |
|
1188 |
return |
|
1189 |
||
1190 |
def register_Ns3ObjectBase_methods(root_module, cls): |
|
1191 |
## object-base.h (module 'core'): ns3::ObjectBase::ObjectBase() [constructor] |
|
1192 |
cls.add_constructor([]) |
|
1193 |
## object-base.h (module 'core'): ns3::ObjectBase::ObjectBase(ns3::ObjectBase const & arg0) [copy constructor] |
|
1194 |
cls.add_constructor([param('ns3::ObjectBase const &', 'arg0')]) |
|
1195 |
## object-base.h (module 'core'): void ns3::ObjectBase::GetAttribute(std::string name, ns3::AttributeValue & value) const [member function] |
|
1196 |
cls.add_method('GetAttribute', |
|
1197 |
'void', |
|
1198 |
[param('std::string', 'name'), param('ns3::AttributeValue &', 'value')], |
|
1199 |
is_const=True) |
|
1200 |
## object-base.h (module 'core'): bool ns3::ObjectBase::GetAttributeFailSafe(std::string name, ns3::AttributeValue & attribute) const [member function] |
|
1201 |
cls.add_method('GetAttributeFailSafe', |
|
1202 |
'bool', |
|
1203 |
[param('std::string', 'name'), param('ns3::AttributeValue &', 'attribute')], |
|
1204 |
is_const=True) |
|
1205 |
## object-base.h (module 'core'): ns3::TypeId ns3::ObjectBase::GetInstanceTypeId() const [member function] |
|
1206 |
cls.add_method('GetInstanceTypeId', |
|
1207 |
'ns3::TypeId', |
|
1208 |
[], |
|
1209 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
|
1210 |
## object-base.h (module 'core'): static ns3::TypeId ns3::ObjectBase::GetTypeId() [member function] |
|
1211 |
cls.add_method('GetTypeId', |
|
1212 |
'ns3::TypeId', |
|
1213 |
[], |
|
1214 |
is_static=True) |
|
1215 |
## object-base.h (module 'core'): void ns3::ObjectBase::SetAttribute(std::string name, ns3::AttributeValue const & value) [member function] |
|
1216 |
cls.add_method('SetAttribute', |
|
1217 |
'void', |
|
1218 |
[param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')]) |
|
1219 |
## object-base.h (module 'core'): bool ns3::ObjectBase::SetAttributeFailSafe(std::string name, ns3::AttributeValue const & value) [member function] |
|
1220 |
cls.add_method('SetAttributeFailSafe', |
|
1221 |
'bool', |
|
1222 |
[param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')]) |
|
1223 |
## object-base.h (module 'core'): bool ns3::ObjectBase::TraceConnect(std::string name, std::string context, ns3::CallbackBase const & cb) [member function] |
|
1224 |
cls.add_method('TraceConnect', |
|
1225 |
'bool', |
|
1226 |
[param('std::string', 'name'), param('std::string', 'context'), param('ns3::CallbackBase const &', 'cb')]) |
|
1227 |
## object-base.h (module 'core'): bool ns3::ObjectBase::TraceConnectWithoutContext(std::string name, ns3::CallbackBase const & cb) [member function] |
|
1228 |
cls.add_method('TraceConnectWithoutContext', |
|
1229 |
'bool', |
|
1230 |
[param('std::string', 'name'), param('ns3::CallbackBase const &', 'cb')]) |
|
1231 |
## object-base.h (module 'core'): bool ns3::ObjectBase::TraceDisconnect(std::string name, std::string context, ns3::CallbackBase const & cb) [member function] |
|
1232 |
cls.add_method('TraceDisconnect', |
|
1233 |
'bool', |
|
1234 |
[param('std::string', 'name'), param('std::string', 'context'), param('ns3::CallbackBase const &', 'cb')]) |
|
1235 |
## object-base.h (module 'core'): bool ns3::ObjectBase::TraceDisconnectWithoutContext(std::string name, ns3::CallbackBase const & cb) [member function] |
|
1236 |
cls.add_method('TraceDisconnectWithoutContext', |
|
1237 |
'bool', |
|
1238 |
[param('std::string', 'name'), param('ns3::CallbackBase const &', 'cb')]) |
|
1239 |
## object-base.h (module 'core'): void ns3::ObjectBase::ConstructSelf(ns3::AttributeConstructionList const & attributes) [member function] |
|
1240 |
cls.add_method('ConstructSelf', |
|
1241 |
'void', |
|
1242 |
[param('ns3::AttributeConstructionList const &', 'attributes')], |
|
1243 |
visibility='protected') |
|
1244 |
## object-base.h (module 'core'): void ns3::ObjectBase::NotifyConstructionCompleted() [member function] |
|
1245 |
cls.add_method('NotifyConstructionCompleted', |
|
1246 |
'void', |
|
1247 |
[], |
|
1248 |
visibility='protected', is_virtual=True) |
|
1249 |
return |
|
1250 |
||
1251 |
def register_Ns3ObjectDeleter_methods(root_module, cls): |
|
1252 |
## object.h (module 'core'): ns3::ObjectDeleter::ObjectDeleter() [constructor] |
|
1253 |
cls.add_constructor([]) |
|
1254 |
## object.h (module 'core'): ns3::ObjectDeleter::ObjectDeleter(ns3::ObjectDeleter const & arg0) [copy constructor] |
|
1255 |
cls.add_constructor([param('ns3::ObjectDeleter const &', 'arg0')]) |
|
1256 |
## object.h (module 'core'): static void ns3::ObjectDeleter::Delete(ns3::Object * object) [member function] |
|
1257 |
cls.add_method('Delete', |
|
1258 |
'void', |
|
1259 |
[param('ns3::Object *', 'object')], |
|
1260 |
is_static=True) |
|
1261 |
return |
|
1262 |
||
1263 |
def register_Ns3ObjectFactory_methods(root_module, cls): |
|
1264 |
cls.add_output_stream_operator() |
|
1265 |
## object-factory.h (module 'core'): ns3::ObjectFactory::ObjectFactory(ns3::ObjectFactory const & arg0) [copy constructor] |
|
1266 |
cls.add_constructor([param('ns3::ObjectFactory const &', 'arg0')]) |
|
1267 |
## object-factory.h (module 'core'): ns3::ObjectFactory::ObjectFactory() [constructor] |
|
1268 |
cls.add_constructor([]) |
|
1269 |
## object-factory.h (module 'core'): ns3::ObjectFactory::ObjectFactory(std::string typeId) [constructor] |
|
1270 |
cls.add_constructor([param('std::string', 'typeId')]) |
|
1271 |
## object-factory.h (module 'core'): ns3::Ptr<ns3::Object> ns3::ObjectFactory::Create() const [member function] |
|
1272 |
cls.add_method('Create', |
|
1273 |
'ns3::Ptr< ns3::Object >', |
|
1274 |
[], |
|
1275 |
is_const=True) |
|
1276 |
## object-factory.h (module 'core'): ns3::TypeId ns3::ObjectFactory::GetTypeId() const [member function] |
|
1277 |
cls.add_method('GetTypeId', |
|
1278 |
'ns3::TypeId', |
|
1279 |
[], |
|
1280 |
is_const=True) |
|
1281 |
## object-factory.h (module 'core'): void ns3::ObjectFactory::Set(std::string name, ns3::AttributeValue const & value) [member function] |
|
1282 |
cls.add_method('Set', |
|
1283 |
'void', |
|
1284 |
[param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')]) |
|
1285 |
## object-factory.h (module 'core'): void ns3::ObjectFactory::SetTypeId(ns3::TypeId tid) [member function] |
|
1286 |
cls.add_method('SetTypeId', |
|
1287 |
'void', |
|
1288 |
[param('ns3::TypeId', 'tid')]) |
|
1289 |
## object-factory.h (module 'core'): void ns3::ObjectFactory::SetTypeId(char const * tid) [member function] |
|
1290 |
cls.add_method('SetTypeId', |
|
1291 |
'void', |
|
1292 |
[param('char const *', 'tid')]) |
|
1293 |
## object-factory.h (module 'core'): void ns3::ObjectFactory::SetTypeId(std::string tid) [member function] |
|
1294 |
cls.add_method('SetTypeId', |
|
1295 |
'void', |
|
1296 |
[param('std::string', 'tid')]) |
|
1297 |
return |
|
1298 |
||
1299 |
def register_Ns3SimpleRefCount__Ns3Object_Ns3ObjectBase_Ns3ObjectDeleter_methods(root_module, cls): |
|
1300 |
## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter>::SimpleRefCount() [constructor] |
|
1301 |
cls.add_constructor([]) |
|
1302 |
## 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] |
|
1303 |
cls.add_constructor([param('ns3::SimpleRefCount< ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter > const &', 'o')]) |
|
1304 |
## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter>::Cleanup() [member function] |
|
1305 |
cls.add_method('Cleanup', |
|
1306 |
'void', |
|
1307 |
[], |
|
1308 |
is_static=True) |
|
1309 |
return |
|
1310 |
||
1311 |
def register_Ns3TagBuffer_methods(root_module, cls): |
|
1312 |
## tag-buffer.h (module 'network'): ns3::TagBuffer::TagBuffer(ns3::TagBuffer const & arg0) [copy constructor] |
|
1313 |
cls.add_constructor([param('ns3::TagBuffer const &', 'arg0')]) |
|
1314 |
## tag-buffer.h (module 'network'): ns3::TagBuffer::TagBuffer(uint8_t * start, uint8_t * end) [constructor] |
|
1315 |
cls.add_constructor([param('uint8_t *', 'start'), param('uint8_t *', 'end')]) |
|
1316 |
## tag-buffer.h (module 'network'): void ns3::TagBuffer::CopyFrom(ns3::TagBuffer o) [member function] |
|
1317 |
cls.add_method('CopyFrom', |
|
1318 |
'void', |
|
1319 |
[param('ns3::TagBuffer', 'o')]) |
|
1320 |
## tag-buffer.h (module 'network'): void ns3::TagBuffer::Read(uint8_t * buffer, uint32_t size) [member function] |
|
1321 |
cls.add_method('Read', |
|
1322 |
'void', |
|
1323 |
[param('uint8_t *', 'buffer'), param('uint32_t', 'size')]) |
|
1324 |
## tag-buffer.h (module 'network'): double ns3::TagBuffer::ReadDouble() [member function] |
|
1325 |
cls.add_method('ReadDouble', |
|
1326 |
'double', |
|
1327 |
[]) |
|
1328 |
## tag-buffer.h (module 'network'): uint16_t ns3::TagBuffer::ReadU16() [member function] |
|
1329 |
cls.add_method('ReadU16', |
|
1330 |
'uint16_t', |
|
1331 |
[]) |
|
1332 |
## tag-buffer.h (module 'network'): uint32_t ns3::TagBuffer::ReadU32() [member function] |
|
1333 |
cls.add_method('ReadU32', |
|
1334 |
'uint32_t', |
|
1335 |
[]) |
|
1336 |
## tag-buffer.h (module 'network'): uint64_t ns3::TagBuffer::ReadU64() [member function] |
|
1337 |
cls.add_method('ReadU64', |
|
1338 |
'uint64_t', |
|
1339 |
[]) |
|
1340 |
## tag-buffer.h (module 'network'): uint8_t ns3::TagBuffer::ReadU8() [member function] |
|
1341 |
cls.add_method('ReadU8', |
|
1342 |
'uint8_t', |
|
1343 |
[]) |
|
1344 |
## tag-buffer.h (module 'network'): void ns3::TagBuffer::TrimAtEnd(uint32_t trim) [member function] |
|
1345 |
cls.add_method('TrimAtEnd', |
|
1346 |
'void', |
|
1347 |
[param('uint32_t', 'trim')]) |
|
1348 |
## tag-buffer.h (module 'network'): void ns3::TagBuffer::Write(uint8_t const * buffer, uint32_t size) [member function] |
|
1349 |
cls.add_method('Write', |
|
1350 |
'void', |
|
1351 |
[param('uint8_t const *', 'buffer'), param('uint32_t', 'size')]) |
|
1352 |
## tag-buffer.h (module 'network'): void ns3::TagBuffer::WriteDouble(double v) [member function] |
|
1353 |
cls.add_method('WriteDouble', |
|
1354 |
'void', |
|
1355 |
[param('double', 'v')]) |
|
1356 |
## tag-buffer.h (module 'network'): void ns3::TagBuffer::WriteU16(uint16_t data) [member function] |
|
1357 |
cls.add_method('WriteU16', |
|
1358 |
'void', |
|
1359 |
[param('uint16_t', 'data')]) |
|
1360 |
## tag-buffer.h (module 'network'): void ns3::TagBuffer::WriteU32(uint32_t data) [member function] |
|
1361 |
cls.add_method('WriteU32', |
|
1362 |
'void', |
|
1363 |
[param('uint32_t', 'data')]) |
|
1364 |
## tag-buffer.h (module 'network'): void ns3::TagBuffer::WriteU64(uint64_t v) [member function] |
|
1365 |
cls.add_method('WriteU64', |
|
1366 |
'void', |
|
1367 |
[param('uint64_t', 'v')]) |
|
1368 |
## tag-buffer.h (module 'network'): void ns3::TagBuffer::WriteU8(uint8_t v) [member function] |
|
1369 |
cls.add_method('WriteU8', |
|
1370 |
'void', |
|
1371 |
[param('uint8_t', 'v')]) |
|
1372 |
return |
|
1373 |
||
1374 |
def register_Ns3TypeId_methods(root_module, cls): |
|
1375 |
cls.add_binary_comparison_operator('<') |
|
1376 |
cls.add_binary_comparison_operator('!=') |
|
1377 |
cls.add_output_stream_operator() |
|
1378 |
cls.add_binary_comparison_operator('==') |
|
1379 |
## type-id.h (module 'core'): ns3::TypeId::TypeId(char const * name) [constructor] |
|
1380 |
cls.add_constructor([param('char const *', 'name')]) |
|
1381 |
## type-id.h (module 'core'): ns3::TypeId::TypeId() [constructor] |
|
1382 |
cls.add_constructor([]) |
|
1383 |
## type-id.h (module 'core'): ns3::TypeId::TypeId(ns3::TypeId const & o) [copy constructor] |
|
1384 |
cls.add_constructor([param('ns3::TypeId const &', 'o')]) |
|
1385 |
## 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] |
|
1386 |
cls.add_method('AddAttribute', |
|
1387 |
'ns3::TypeId', |
|
1388 |
[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')]) |
|
1389 |
## 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] |
|
1390 |
cls.add_method('AddAttribute', |
|
1391 |
'ns3::TypeId', |
|
1392 |
[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')]) |
|
1393 |
## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::AddTraceSource(std::string name, std::string help, ns3::Ptr<ns3::TraceSourceAccessor const> accessor) [member function] |
|
1394 |
cls.add_method('AddTraceSource', |
|
1395 |
'ns3::TypeId', |
|
1396 |
[param('std::string', 'name'), param('std::string', 'help'), param('ns3::Ptr< ns3::TraceSourceAccessor const >', 'accessor')]) |
|
1397 |
## type-id.h (module 'core'): ns3::TypeId::AttributeInformation ns3::TypeId::GetAttribute(uint32_t i) const [member function] |
|
1398 |
cls.add_method('GetAttribute', |
|
1399 |
'ns3::TypeId::AttributeInformation', |
|
1400 |
[param('uint32_t', 'i')], |
|
1401 |
is_const=True) |
|
1402 |
## type-id.h (module 'core'): std::string ns3::TypeId::GetAttributeFullName(uint32_t i) const [member function] |
|
1403 |
cls.add_method('GetAttributeFullName', |
|
1404 |
'std::string', |
|
1405 |
[param('uint32_t', 'i')], |
|
1406 |
is_const=True) |
|
1407 |
## type-id.h (module 'core'): uint32_t ns3::TypeId::GetAttributeN() const [member function] |
|
1408 |
cls.add_method('GetAttributeN', |
|
1409 |
'uint32_t', |
|
1410 |
[], |
|
1411 |
is_const=True) |
|
1412 |
## 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] |
|
1413 |
cls.add_method('GetConstructor', |
|
1414 |
'ns3::Callback< ns3::ObjectBase *, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', |
|
1415 |
[], |
|
1416 |
is_const=True) |
|
1417 |
## type-id.h (module 'core'): std::string ns3::TypeId::GetGroupName() const [member function] |
|
1418 |
cls.add_method('GetGroupName', |
|
1419 |
'std::string', |
|
1420 |
[], |
|
1421 |
is_const=True) |
|
1422 |
## type-id.h (module 'core'): std::string ns3::TypeId::GetName() const [member function] |
|
1423 |
cls.add_method('GetName', |
|
1424 |
'std::string', |
|
1425 |
[], |
|
1426 |
is_const=True) |
|
1427 |
## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::GetParent() const [member function] |
|
1428 |
cls.add_method('GetParent', |
|
1429 |
'ns3::TypeId', |
|
1430 |
[], |
|
1431 |
is_const=True) |
|
1432 |
## type-id.h (module 'core'): static ns3::TypeId ns3::TypeId::GetRegistered(uint32_t i) [member function] |
|
1433 |
cls.add_method('GetRegistered', |
|
1434 |
'ns3::TypeId', |
|
1435 |
[param('uint32_t', 'i')], |
|
1436 |
is_static=True) |
|
1437 |
## type-id.h (module 'core'): static uint32_t ns3::TypeId::GetRegisteredN() [member function] |
|
1438 |
cls.add_method('GetRegisteredN', |
|
1439 |
'uint32_t', |
|
1440 |
[], |
|
1441 |
is_static=True) |
|
1442 |
## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation ns3::TypeId::GetTraceSource(uint32_t i) const [member function] |
|
1443 |
cls.add_method('GetTraceSource', |
|
1444 |
'ns3::TypeId::TraceSourceInformation', |
|
1445 |
[param('uint32_t', 'i')], |
|
1446 |
is_const=True) |
|
1447 |
## type-id.h (module 'core'): uint32_t ns3::TypeId::GetTraceSourceN() const [member function] |
|
1448 |
cls.add_method('GetTraceSourceN', |
|
1449 |
'uint32_t', |
|
1450 |
[], |
|
1451 |
is_const=True) |
|
1452 |
## type-id.h (module 'core'): uint16_t ns3::TypeId::GetUid() const [member function] |
|
1453 |
cls.add_method('GetUid', |
|
1454 |
'uint16_t', |
|
1455 |
[], |
|
1456 |
is_const=True) |
|
1457 |
## type-id.h (module 'core'): bool ns3::TypeId::HasConstructor() const [member function] |
|
1458 |
cls.add_method('HasConstructor', |
|
1459 |
'bool', |
|
1460 |
[], |
|
1461 |
is_const=True) |
|
1462 |
## type-id.h (module 'core'): bool ns3::TypeId::HasParent() const [member function] |
|
1463 |
cls.add_method('HasParent', |
|
1464 |
'bool', |
|
1465 |
[], |
|
1466 |
is_const=True) |
|
1467 |
## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::HideFromDocumentation() [member function] |
|
1468 |
cls.add_method('HideFromDocumentation', |
|
1469 |
'ns3::TypeId', |
|
1470 |
[]) |
|
1471 |
## type-id.h (module 'core'): bool ns3::TypeId::IsChildOf(ns3::TypeId other) const [member function] |
|
1472 |
cls.add_method('IsChildOf', |
|
1473 |
'bool', |
|
1474 |
[param('ns3::TypeId', 'other')], |
|
1475 |
is_const=True) |
|
1476 |
## type-id.h (module 'core'): bool ns3::TypeId::LookupAttributeByName(std::string name, ns3::TypeId::AttributeInformation * info) const [member function] |
|
1477 |
cls.add_method('LookupAttributeByName', |
|
1478 |
'bool', |
|
1479 |
[param('std::string', 'name'), param('ns3::TypeId::AttributeInformation *', 'info', transfer_ownership=False)], |
|
1480 |
is_const=True) |
|
1481 |
## type-id.h (module 'core'): static ns3::TypeId ns3::TypeId::LookupByName(std::string name) [member function] |
|
1482 |
cls.add_method('LookupByName', |
|
1483 |
'ns3::TypeId', |
|
1484 |
[param('std::string', 'name')], |
|
1485 |
is_static=True) |
|
1486 |
## type-id.h (module 'core'): ns3::Ptr<ns3::TraceSourceAccessor const> ns3::TypeId::LookupTraceSourceByName(std::string name) const [member function] |
|
1487 |
cls.add_method('LookupTraceSourceByName', |
|
1488 |
'ns3::Ptr< ns3::TraceSourceAccessor const >', |
|
1489 |
[param('std::string', 'name')], |
|
1490 |
is_const=True) |
|
1491 |
## type-id.h (module 'core'): bool ns3::TypeId::MustHideFromDocumentation() const [member function] |
|
1492 |
cls.add_method('MustHideFromDocumentation', |
|
1493 |
'bool', |
|
1494 |
[], |
|
1495 |
is_const=True) |
|
1496 |
## type-id.h (module 'core'): bool ns3::TypeId::SetAttributeInitialValue(uint32_t i, ns3::Ptr<ns3::AttributeValue const> initialValue) [member function] |
|
1497 |
cls.add_method('SetAttributeInitialValue', |
|
1498 |
'bool', |
|
1499 |
[param('uint32_t', 'i'), param('ns3::Ptr< ns3::AttributeValue const >', 'initialValue')]) |
|
1500 |
## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::SetGroupName(std::string groupName) [member function] |
|
1501 |
cls.add_method('SetGroupName', |
|
1502 |
'ns3::TypeId', |
|
1503 |
[param('std::string', 'groupName')]) |
|
1504 |
## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::SetParent(ns3::TypeId tid) [member function] |
|
1505 |
cls.add_method('SetParent', |
|
1506 |
'ns3::TypeId', |
|
1507 |
[param('ns3::TypeId', 'tid')]) |
|
1508 |
## type-id.h (module 'core'): void ns3::TypeId::SetUid(uint16_t tid) [member function] |
|
1509 |
cls.add_method('SetUid', |
|
1510 |
'void', |
|
1511 |
[param('uint16_t', 'tid')]) |
|
1512 |
return |
|
1513 |
||
1514 |
def register_Ns3TypeIdAttributeInformation_methods(root_module, cls): |
|
1515 |
## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::AttributeInformation() [constructor] |
|
1516 |
cls.add_constructor([]) |
|
1517 |
## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::AttributeInformation(ns3::TypeId::AttributeInformation const & arg0) [copy constructor] |
|
1518 |
cls.add_constructor([param('ns3::TypeId::AttributeInformation const &', 'arg0')]) |
|
1519 |
## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::accessor [variable] |
|
1520 |
cls.add_instance_attribute('accessor', 'ns3::Ptr< ns3::AttributeAccessor const >', is_const=False) |
|
1521 |
## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::checker [variable] |
|
1522 |
cls.add_instance_attribute('checker', 'ns3::Ptr< ns3::AttributeChecker const >', is_const=False) |
|
1523 |
## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::flags [variable] |
|
1524 |
cls.add_instance_attribute('flags', 'uint32_t', is_const=False) |
|
1525 |
## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::help [variable] |
|
1526 |
cls.add_instance_attribute('help', 'std::string', is_const=False) |
|
1527 |
## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::initialValue [variable] |
|
1528 |
cls.add_instance_attribute('initialValue', 'ns3::Ptr< ns3::AttributeValue const >', is_const=False) |
|
1529 |
## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::name [variable] |
|
1530 |
cls.add_instance_attribute('name', 'std::string', is_const=False) |
|
1531 |
## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::originalInitialValue [variable] |
|
1532 |
cls.add_instance_attribute('originalInitialValue', 'ns3::Ptr< ns3::AttributeValue const >', is_const=False) |
|
1533 |
return |
|
1534 |
||
1535 |
def register_Ns3TypeIdTraceSourceInformation_methods(root_module, cls): |
|
1536 |
## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation::TraceSourceInformation() [constructor] |
|
1537 |
cls.add_constructor([]) |
|
1538 |
## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation::TraceSourceInformation(ns3::TypeId::TraceSourceInformation const & arg0) [copy constructor] |
|
1539 |
cls.add_constructor([param('ns3::TypeId::TraceSourceInformation const &', 'arg0')]) |
|
1540 |
## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation::accessor [variable] |
|
1541 |
cls.add_instance_attribute('accessor', 'ns3::Ptr< ns3::TraceSourceAccessor const >', is_const=False) |
|
1542 |
## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation::help [variable] |
|
1543 |
cls.add_instance_attribute('help', 'std::string', is_const=False) |
|
1544 |
## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation::name [variable] |
|
1545 |
cls.add_instance_attribute('name', 'std::string', is_const=False) |
|
1546 |
return |
|
1547 |
||
1548 |
def register_Ns3Vector2D_methods(root_module, cls): |
|
1549 |
cls.add_output_stream_operator() |
|
1550 |
## vector.h (module 'core'): ns3::Vector2D::Vector2D(ns3::Vector2D const & arg0) [copy constructor] |
|
1551 |
cls.add_constructor([param('ns3::Vector2D const &', 'arg0')]) |
|
1552 |
## vector.h (module 'core'): ns3::Vector2D::Vector2D(double _x, double _y) [constructor] |
|
1553 |
cls.add_constructor([param('double', '_x'), param('double', '_y')]) |
|
1554 |
## vector.h (module 'core'): ns3::Vector2D::Vector2D() [constructor] |
|
1555 |
cls.add_constructor([]) |
|
1556 |
## vector.h (module 'core'): ns3::Vector2D::x [variable] |
|
1557 |
cls.add_instance_attribute('x', 'double', is_const=False) |
|
1558 |
## vector.h (module 'core'): ns3::Vector2D::y [variable] |
|
1559 |
cls.add_instance_attribute('y', 'double', is_const=False) |
|
1560 |
return |
|
1561 |
||
1562 |
def register_Ns3Vector3D_methods(root_module, cls): |
|
1563 |
cls.add_output_stream_operator() |
|
1564 |
## vector.h (module 'core'): ns3::Vector3D::Vector3D(ns3::Vector3D const & arg0) [copy constructor] |
|
1565 |
cls.add_constructor([param('ns3::Vector3D const &', 'arg0')]) |
|
1566 |
## vector.h (module 'core'): ns3::Vector3D::Vector3D(double _x, double _y, double _z) [constructor] |
|
1567 |
cls.add_constructor([param('double', '_x'), param('double', '_y'), param('double', '_z')]) |
|
1568 |
## vector.h (module 'core'): ns3::Vector3D::Vector3D() [constructor] |
|
1569 |
cls.add_constructor([]) |
|
1570 |
## vector.h (module 'core'): ns3::Vector3D::x [variable] |
|
1571 |
cls.add_instance_attribute('x', 'double', is_const=False) |
|
1572 |
## vector.h (module 'core'): ns3::Vector3D::y [variable] |
|
1573 |
cls.add_instance_attribute('y', 'double', is_const=False) |
|
1574 |
## vector.h (module 'core'): ns3::Vector3D::z [variable] |
|
1575 |
cls.add_instance_attribute('z', 'double', is_const=False) |
|
1576 |
return |
|
1577 |
||
1578 |
def register_Ns3Empty_methods(root_module, cls): |
|
1579 |
## empty.h (module 'core'): ns3::empty::empty() [constructor] |
|
1580 |
cls.add_constructor([]) |
|
1581 |
## empty.h (module 'core'): ns3::empty::empty(ns3::empty const & arg0) [copy constructor] |
|
1582 |
cls.add_constructor([param('ns3::empty const &', 'arg0')]) |
|
1583 |
return |
|
1584 |
||
1585 |
def register_Ns3Int64x64_t_methods(root_module, cls): |
|
1586 |
cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long unsigned int const', 'right')) |
|
1587 |
cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long unsigned int const', 'right')) |
|
1588 |
cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned int const', 'right')) |
|
1589 |
cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short unsigned int const', 'right')) |
|
1590 |
cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned char const', 'right')) |
|
1591 |
cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long int const', 'right')) |
|
1592 |
cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long int const', 'right')) |
|
1593 |
cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('int const', 'right')) |
|
1594 |
cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short int const', 'right')) |
|
1595 |
cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('signed char const', 'right')) |
|
1596 |
cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('double const', 'right')) |
|
1597 |
cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('ns3::int64x64_t const &', 'right')) |
|
1598 |
cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long unsigned int const', 'right')) |
|
1599 |
cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long unsigned int const', 'right')) |
|
1600 |
cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned int const', 'right')) |
|
1601 |
cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short unsigned int const', 'right')) |
|
1602 |
cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned char const', 'right')) |
|
1603 |
cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long int const', 'right')) |
|
1604 |
cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long int const', 'right')) |
|
1605 |
cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('int const', 'right')) |
|
1606 |
cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short int const', 'right')) |
|
1607 |
cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('signed char const', 'right')) |
|
1608 |
cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('double const', 'right')) |
|
1609 |
cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('ns3::int64x64_t const &', 'right')) |
|
1610 |
cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long unsigned int const', 'right')) |
|
1611 |
cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long unsigned int const', 'right')) |
|
1612 |
cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned int const', 'right')) |
|
1613 |
cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short unsigned int const', 'right')) |
|
1614 |
cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned char const', 'right')) |
|
1615 |
cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long int const', 'right')) |
|
1616 |
cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long int const', 'right')) |
|
1617 |
cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('int const', 'right')) |
|
1618 |
cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short int const', 'right')) |
|
1619 |
cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('signed char const', 'right')) |
|
1620 |
cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('double const', 'right')) |
|
1621 |
cls.add_unary_numeric_operator('-') |
|
1622 |
cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('ns3::int64x64_t const &', 'right')) |
|
1623 |
cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long unsigned int const', 'right')) |
|
1624 |
cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long unsigned int const', 'right')) |
|
1625 |
cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned int const', 'right')) |
|
1626 |
cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short unsigned int const', 'right')) |
|
1627 |
cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned char const', 'right')) |
|
1628 |
cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long int const', 'right')) |
|
1629 |
cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long int const', 'right')) |
|
1630 |
cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('int const', 'right')) |
|
1631 |
cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short int const', 'right')) |
|
1632 |
cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('signed char const', 'right')) |
|
1633 |
cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('double const', 'right')) |
|
1634 |
cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('ns3::int64x64_t const &', 'right')) |
|
1635 |
cls.add_binary_comparison_operator('<') |
|
1636 |
cls.add_binary_comparison_operator('>') |
|
1637 |
cls.add_binary_comparison_operator('!=') |
|
1638 |
cls.add_inplace_numeric_operator('*=', param('ns3::int64x64_t const &', 'right')) |
|
1639 |
cls.add_inplace_numeric_operator('+=', param('ns3::int64x64_t const &', 'right')) |
|
1640 |
cls.add_inplace_numeric_operator('-=', param('ns3::int64x64_t const &', 'right')) |
|
1641 |
cls.add_inplace_numeric_operator('/=', param('ns3::int64x64_t const &', 'right')) |
|
1642 |
cls.add_output_stream_operator() |
|
1643 |
cls.add_binary_comparison_operator('<=') |
|
1644 |
cls.add_binary_comparison_operator('==') |
|
1645 |
cls.add_binary_comparison_operator('>=') |
|
1646 |
## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t() [constructor] |
|
1647 |
cls.add_constructor([]) |
|
1648 |
## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(double v) [constructor] |
|
1649 |
cls.add_constructor([param('double', 'v')]) |
|
1650 |
## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(int v) [constructor] |
|
1651 |
cls.add_constructor([param('int', 'v')]) |
|
1652 |
## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(long int v) [constructor] |
|
1653 |
cls.add_constructor([param('long int', 'v')]) |
|
1654 |
## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(long long int v) [constructor] |
|
1655 |
cls.add_constructor([param('long long int', 'v')]) |
|
1656 |
## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(unsigned int v) [constructor] |
|
1657 |
cls.add_constructor([param('unsigned int', 'v')]) |
|
1658 |
## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(long unsigned int v) [constructor] |
|
1659 |
cls.add_constructor([param('long unsigned int', 'v')]) |
|
1660 |
## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(long long unsigned int v) [constructor] |
|
1661 |
cls.add_constructor([param('long long unsigned int', 'v')]) |
|
1662 |
## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(int64_t hi, uint64_t lo) [constructor] |
|
1663 |
cls.add_constructor([param('int64_t', 'hi'), param('uint64_t', 'lo')]) |
|
1664 |
## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(ns3::int64x64_t const & o) [copy constructor] |
|
1665 |
cls.add_constructor([param('ns3::int64x64_t const &', 'o')]) |
|
1666 |
## int64x64-double.h (module 'core'): double ns3::int64x64_t::GetDouble() const [member function] |
|
1667 |
cls.add_method('GetDouble', |
|
1668 |
'double', |
|
1669 |
[], |
|
1670 |
is_const=True) |
|
1671 |
## int64x64-double.h (module 'core'): int64_t ns3::int64x64_t::GetHigh() const [member function] |
|
1672 |
cls.add_method('GetHigh', |
|
1673 |
'int64_t', |
|
1674 |
[], |
|
1675 |
is_const=True) |
|
1676 |
## int64x64-double.h (module 'core'): uint64_t ns3::int64x64_t::GetLow() const [member function] |
|
1677 |
cls.add_method('GetLow', |
|
1678 |
'uint64_t', |
|
1679 |
[], |
|
1680 |
is_const=True) |
|
1681 |
## int64x64-double.h (module 'core'): static ns3::int64x64_t ns3::int64x64_t::Invert(uint64_t v) [member function] |
|
1682 |
cls.add_method('Invert', |
|
1683 |
'ns3::int64x64_t', |
|
1684 |
[param('uint64_t', 'v')], |
|
1685 |
is_static=True) |
|
1686 |
## int64x64-double.h (module 'core'): void ns3::int64x64_t::MulByInvert(ns3::int64x64_t const & o) [member function] |
|
1687 |
cls.add_method('MulByInvert', |
|
1688 |
'void', |
|
1689 |
[param('ns3::int64x64_t const &', 'o')]) |
|
1690 |
return |
|
1691 |
||
1692 |
def register_Ns3Object_methods(root_module, cls): |
|
1693 |
## object.h (module 'core'): ns3::Object::Object() [constructor] |
|
1694 |
cls.add_constructor([]) |
|
1695 |
## object.h (module 'core'): void ns3::Object::AggregateObject(ns3::Ptr<ns3::Object> other) [member function] |
|
1696 |
cls.add_method('AggregateObject', |
|
1697 |
'void', |
|
1698 |
[param('ns3::Ptr< ns3::Object >', 'other')]) |
|
1699 |
## object.h (module 'core'): void ns3::Object::Dispose() [member function] |
|
1700 |
cls.add_method('Dispose', |
|
1701 |
'void', |
|
1702 |
[]) |
|
1703 |
## object.h (module 'core'): ns3::Object::AggregateIterator ns3::Object::GetAggregateIterator() const [member function] |
|
1704 |
cls.add_method('GetAggregateIterator', |
|
1705 |
'ns3::Object::AggregateIterator', |
|
1706 |
[], |
|
1707 |
is_const=True) |
|
1708 |
## object.h (module 'core'): ns3::TypeId ns3::Object::GetInstanceTypeId() const [member function] |
|
1709 |
cls.add_method('GetInstanceTypeId', |
|
1710 |
'ns3::TypeId', |
|
1711 |
[], |
|
1712 |
is_const=True, is_virtual=True) |
|
1713 |
## object.h (module 'core'): static ns3::TypeId ns3::Object::GetTypeId() [member function] |
|
1714 |
cls.add_method('GetTypeId', |
|
1715 |
'ns3::TypeId', |
|
1716 |
[], |
|
1717 |
is_static=True) |
|
1718 |
## object.h (module 'core'): void ns3::Object::Start() [member function] |
|
1719 |
cls.add_method('Start', |
|
1720 |
'void', |
|
1721 |
[]) |
|
1722 |
## object.h (module 'core'): ns3::Object::Object(ns3::Object const & o) [copy constructor] |
|
1723 |
cls.add_constructor([param('ns3::Object const &', 'o')], |
|
1724 |
visibility='protected') |
|
1725 |
## object.h (module 'core'): void ns3::Object::DoDispose() [member function] |
|
1726 |
cls.add_method('DoDispose', |
|
1727 |
'void', |
|
1728 |
[], |
|
1729 |
visibility='protected', is_virtual=True) |
|
1730 |
## object.h (module 'core'): void ns3::Object::DoStart() [member function] |
|
1731 |
cls.add_method('DoStart', |
|
1732 |
'void', |
|
1733 |
[], |
|
1734 |
visibility='protected', is_virtual=True) |
|
1735 |
## object.h (module 'core'): void ns3::Object::NotifyNewAggregate() [member function] |
|
1736 |
cls.add_method('NotifyNewAggregate', |
|
1737 |
'void', |
|
1738 |
[], |
|
1739 |
visibility='protected', is_virtual=True) |
|
1740 |
return |
|
1741 |
||
1742 |
def register_Ns3ObjectAggregateIterator_methods(root_module, cls): |
|
1743 |
## object.h (module 'core'): ns3::Object::AggregateIterator::AggregateIterator(ns3::Object::AggregateIterator const & arg0) [copy constructor] |
|
1744 |
cls.add_constructor([param('ns3::Object::AggregateIterator const &', 'arg0')]) |
|
1745 |
## object.h (module 'core'): ns3::Object::AggregateIterator::AggregateIterator() [constructor] |
|
1746 |
cls.add_constructor([]) |
|
1747 |
## object.h (module 'core'): bool ns3::Object::AggregateIterator::HasNext() const [member function] |
|
1748 |
cls.add_method('HasNext', |
|
1749 |
'bool', |
|
1750 |
[], |
|
1751 |
is_const=True) |
|
1752 |
## object.h (module 'core'): ns3::Ptr<ns3::Object const> ns3::Object::AggregateIterator::Next() [member function] |
|
1753 |
cls.add_method('Next', |
|
1754 |
'ns3::Ptr< ns3::Object const >', |
|
1755 |
[]) |
|
1756 |
return |
|
1757 |
||
1758 |
def register_Ns3PositionAllocator_methods(root_module, cls): |
|
1759 |
## position-allocator.h (module 'mobility'): ns3::PositionAllocator::PositionAllocator(ns3::PositionAllocator const & arg0) [copy constructor] |
|
1760 |
cls.add_constructor([param('ns3::PositionAllocator const &', 'arg0')]) |
|
1761 |
## position-allocator.h (module 'mobility'): ns3::PositionAllocator::PositionAllocator() [constructor] |
|
1762 |
cls.add_constructor([]) |
|
8985
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
1763 |
## position-allocator.h (module 'mobility'): int64_t ns3::PositionAllocator::AssignStreams(int64_t stream) [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
1764 |
cls.add_method('AssignStreams', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
1765 |
'int64_t', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
1766 |
[param('int64_t', 'stream')], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
1767 |
is_pure_virtual=True, is_virtual=True) |
8750 | 1768 |
## position-allocator.h (module 'mobility'): ns3::Vector ns3::PositionAllocator::GetNext() const [member function] |
1769 |
cls.add_method('GetNext', |
|
1770 |
'ns3::Vector', |
|
1771 |
[], |
|
1772 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
|
1773 |
## position-allocator.h (module 'mobility'): static ns3::TypeId ns3::PositionAllocator::GetTypeId() [member function] |
|
1774 |
cls.add_method('GetTypeId', |
|
1775 |
'ns3::TypeId', |
|
1776 |
[], |
|
1777 |
is_static=True) |
|
1778 |
return |
|
1779 |
||
1780 |
def register_Ns3PropagationLossModel_methods(root_module, cls): |
|
1781 |
## propagation-loss-model.h (module 'propagation'): static ns3::TypeId ns3::PropagationLossModel::GetTypeId() [member function] |
|
1782 |
cls.add_method('GetTypeId', |
|
1783 |
'ns3::TypeId', |
|
1784 |
[], |
|
1785 |
is_static=True) |
|
1786 |
## propagation-loss-model.h (module 'propagation'): ns3::PropagationLossModel::PropagationLossModel() [constructor] |
|
1787 |
cls.add_constructor([]) |
|
1788 |
## propagation-loss-model.h (module 'propagation'): void ns3::PropagationLossModel::SetNext(ns3::Ptr<ns3::PropagationLossModel> next) [member function] |
|
1789 |
cls.add_method('SetNext', |
|
1790 |
'void', |
|
1791 |
[param('ns3::Ptr< ns3::PropagationLossModel >', 'next')]) |
|
8985
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
1792 |
## propagation-loss-model.h (module 'propagation'): ns3::Ptr<ns3::PropagationLossModel> ns3::PropagationLossModel::GetNext() [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
1793 |
cls.add_method('GetNext', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
1794 |
'ns3::Ptr< ns3::PropagationLossModel >', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
1795 |
[]) |
8750 | 1796 |
## propagation-loss-model.h (module 'propagation'): double ns3::PropagationLossModel::CalcRxPower(double txPowerDbm, ns3::Ptr<ns3::MobilityModel> a, ns3::Ptr<ns3::MobilityModel> b) const [member function] |
1797 |
cls.add_method('CalcRxPower', |
|
1798 |
'double', |
|
1799 |
[param('double', 'txPowerDbm'), param('ns3::Ptr< ns3::MobilityModel >', 'a'), param('ns3::Ptr< ns3::MobilityModel >', 'b')], |
|
1800 |
is_const=True) |
|
8985
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
1801 |
## propagation-loss-model.h (module 'propagation'): int64_t ns3::PropagationLossModel::AssignStreams(int64_t stream) [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
1802 |
cls.add_method('AssignStreams', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
1803 |
'int64_t', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
1804 |
[param('int64_t', 'stream')]) |
8750 | 1805 |
## propagation-loss-model.h (module 'propagation'): double ns3::PropagationLossModel::DoCalcRxPower(double txPowerDbm, ns3::Ptr<ns3::MobilityModel> a, ns3::Ptr<ns3::MobilityModel> b) const [member function] |
1806 |
cls.add_method('DoCalcRxPower', |
|
1807 |
'double', |
|
1808 |
[param('double', 'txPowerDbm'), param('ns3::Ptr< ns3::MobilityModel >', 'a'), param('ns3::Ptr< ns3::MobilityModel >', 'b')], |
|
1809 |
is_pure_virtual=True, is_const=True, visibility='private', is_virtual=True) |
|
8985
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
1810 |
## propagation-loss-model.h (module 'propagation'): int64_t ns3::PropagationLossModel::DoAssignStreams(int64_t stream) [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
1811 |
cls.add_method('DoAssignStreams', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
1812 |
'int64_t', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
1813 |
[param('int64_t', 'stream')], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
1814 |
is_pure_virtual=True, visibility='private', is_virtual=True) |
8750 | 1815 |
return |
1816 |
||
1817 |
def register_Ns3RandomBoxPositionAllocator_methods(root_module, cls): |
|
1818 |
## position-allocator.h (module 'mobility'): ns3::RandomBoxPositionAllocator::RandomBoxPositionAllocator(ns3::RandomBoxPositionAllocator const & arg0) [copy constructor] |
|
1819 |
cls.add_constructor([param('ns3::RandomBoxPositionAllocator const &', 'arg0')]) |
|
1820 |
## position-allocator.h (module 'mobility'): ns3::RandomBoxPositionAllocator::RandomBoxPositionAllocator() [constructor] |
|
1821 |
cls.add_constructor([]) |
|
8985
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
1822 |
## position-allocator.h (module 'mobility'): int64_t ns3::RandomBoxPositionAllocator::AssignStreams(int64_t stream) [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
1823 |
cls.add_method('AssignStreams', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
1824 |
'int64_t', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
1825 |
[param('int64_t', 'stream')], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
1826 |
is_virtual=True) |
8750 | 1827 |
## position-allocator.h (module 'mobility'): ns3::Vector ns3::RandomBoxPositionAllocator::GetNext() const [member function] |
1828 |
cls.add_method('GetNext', |
|
1829 |
'ns3::Vector', |
|
1830 |
[], |
|
1831 |
is_const=True, is_virtual=True) |
|
1832 |
## position-allocator.h (module 'mobility'): static ns3::TypeId ns3::RandomBoxPositionAllocator::GetTypeId() [member function] |
|
1833 |
cls.add_method('GetTypeId', |
|
1834 |
'ns3::TypeId', |
|
1835 |
[], |
|
1836 |
is_static=True) |
|
8985
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
1837 |
## position-allocator.h (module 'mobility'): void ns3::RandomBoxPositionAllocator::SetX(ns3::Ptr<ns3::RandomVariableStream> x) [member function] |
8750 | 1838 |
cls.add_method('SetX', |
1839 |
'void', |
|
8985
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
1840 |
[param('ns3::Ptr< ns3::RandomVariableStream >', 'x')]) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
1841 |
## position-allocator.h (module 'mobility'): void ns3::RandomBoxPositionAllocator::SetY(ns3::Ptr<ns3::RandomVariableStream> y) [member function] |
8750 | 1842 |
cls.add_method('SetY', |
1843 |
'void', |
|
8985
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
1844 |
[param('ns3::Ptr< ns3::RandomVariableStream >', 'y')]) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
1845 |
## position-allocator.h (module 'mobility'): void ns3::RandomBoxPositionAllocator::SetZ(ns3::Ptr<ns3::RandomVariableStream> z) [member function] |
8750 | 1846 |
cls.add_method('SetZ', |
1847 |
'void', |
|
8985
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
1848 |
[param('ns3::Ptr< ns3::RandomVariableStream >', 'z')]) |
8750 | 1849 |
return |
1850 |
||
1851 |
def register_Ns3RandomBuildingPositionAllocator_methods(root_module, cls): |
|
1852 |
## building-position-allocator.h (module 'buildings'): ns3::RandomBuildingPositionAllocator::RandomBuildingPositionAllocator(ns3::RandomBuildingPositionAllocator const & arg0) [copy constructor] |
|
1853 |
cls.add_constructor([param('ns3::RandomBuildingPositionAllocator const &', 'arg0')]) |
|
1854 |
## building-position-allocator.h (module 'buildings'): ns3::RandomBuildingPositionAllocator::RandomBuildingPositionAllocator() [constructor] |
|
1855 |
cls.add_constructor([]) |
|
8985
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
1856 |
## building-position-allocator.h (module 'buildings'): int64_t ns3::RandomBuildingPositionAllocator::AssignStreams(int64_t stream) [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
1857 |
cls.add_method('AssignStreams', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
1858 |
'int64_t', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
1859 |
[param('int64_t', 'stream')], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
1860 |
is_virtual=True) |
8750 | 1861 |
## building-position-allocator.h (module 'buildings'): ns3::Vector ns3::RandomBuildingPositionAllocator::GetNext() const [member function] |
1862 |
cls.add_method('GetNext', |
|
1863 |
'ns3::Vector', |
|
1864 |
[], |
|
1865 |
is_const=True, is_virtual=True) |
|
1866 |
## building-position-allocator.h (module 'buildings'): static ns3::TypeId ns3::RandomBuildingPositionAllocator::GetTypeId() [member function] |
|
1867 |
cls.add_method('GetTypeId', |
|
1868 |
'ns3::TypeId', |
|
1869 |
[], |
|
1870 |
is_static=True) |
|
1871 |
return |
|
1872 |
||
1873 |
def register_Ns3RandomDiscPositionAllocator_methods(root_module, cls): |
|
1874 |
## position-allocator.h (module 'mobility'): ns3::RandomDiscPositionAllocator::RandomDiscPositionAllocator(ns3::RandomDiscPositionAllocator const & arg0) [copy constructor] |
|
1875 |
cls.add_constructor([param('ns3::RandomDiscPositionAllocator const &', 'arg0')]) |
|
1876 |
## position-allocator.h (module 'mobility'): ns3::RandomDiscPositionAllocator::RandomDiscPositionAllocator() [constructor] |
|
1877 |
cls.add_constructor([]) |
|
8985
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
1878 |
## position-allocator.h (module 'mobility'): int64_t ns3::RandomDiscPositionAllocator::AssignStreams(int64_t stream) [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
1879 |
cls.add_method('AssignStreams', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
1880 |
'int64_t', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
1881 |
[param('int64_t', 'stream')], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
1882 |
is_virtual=True) |
8750 | 1883 |
## position-allocator.h (module 'mobility'): ns3::Vector ns3::RandomDiscPositionAllocator::GetNext() const [member function] |
1884 |
cls.add_method('GetNext', |
|
1885 |
'ns3::Vector', |
|
1886 |
[], |
|
1887 |
is_const=True, is_virtual=True) |
|
1888 |
## position-allocator.h (module 'mobility'): static ns3::TypeId ns3::RandomDiscPositionAllocator::GetTypeId() [member function] |
|
1889 |
cls.add_method('GetTypeId', |
|
1890 |
'ns3::TypeId', |
|
1891 |
[], |
|
1892 |
is_static=True) |
|
8985
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
1893 |
## position-allocator.h (module 'mobility'): void ns3::RandomDiscPositionAllocator::SetRho(ns3::Ptr<ns3::RandomVariableStream> rho) [member function] |
8750 | 1894 |
cls.add_method('SetRho', |
1895 |
'void', |
|
8985
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
1896 |
[param('ns3::Ptr< ns3::RandomVariableStream >', 'rho')]) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
1897 |
## position-allocator.h (module 'mobility'): void ns3::RandomDiscPositionAllocator::SetTheta(ns3::Ptr<ns3::RandomVariableStream> theta) [member function] |
8750 | 1898 |
cls.add_method('SetTheta', |
1899 |
'void', |
|
8985
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
1900 |
[param('ns3::Ptr< ns3::RandomVariableStream >', 'theta')]) |
8750 | 1901 |
## position-allocator.h (module 'mobility'): void ns3::RandomDiscPositionAllocator::SetX(double x) [member function] |
1902 |
cls.add_method('SetX', |
|
1903 |
'void', |
|
1904 |
[param('double', 'x')]) |
|
1905 |
## position-allocator.h (module 'mobility'): void ns3::RandomDiscPositionAllocator::SetY(double y) [member function] |
|
1906 |
cls.add_method('SetY', |
|
1907 |
'void', |
|
1908 |
[param('double', 'y')]) |
|
1909 |
return |
|
1910 |
||
1911 |
def register_Ns3RandomPropagationLossModel_methods(root_module, cls): |
|
1912 |
## propagation-loss-model.h (module 'propagation'): static ns3::TypeId ns3::RandomPropagationLossModel::GetTypeId() [member function] |
|
1913 |
cls.add_method('GetTypeId', |
|
1914 |
'ns3::TypeId', |
|
1915 |
[], |
|
1916 |
is_static=True) |
|
1917 |
## propagation-loss-model.h (module 'propagation'): ns3::RandomPropagationLossModel::RandomPropagationLossModel() [constructor] |
|
1918 |
cls.add_constructor([]) |
|
1919 |
## propagation-loss-model.h (module 'propagation'): double ns3::RandomPropagationLossModel::DoCalcRxPower(double txPowerDbm, ns3::Ptr<ns3::MobilityModel> a, ns3::Ptr<ns3::MobilityModel> b) const [member function] |
|
1920 |
cls.add_method('DoCalcRxPower', |
|
1921 |
'double', |
|
1922 |
[param('double', 'txPowerDbm'), param('ns3::Ptr< ns3::MobilityModel >', 'a'), param('ns3::Ptr< ns3::MobilityModel >', 'b')], |
|
1923 |
is_const=True, visibility='private', is_virtual=True) |
|
8985
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
1924 |
## propagation-loss-model.h (module 'propagation'): int64_t ns3::RandomPropagationLossModel::DoAssignStreams(int64_t stream) [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
1925 |
cls.add_method('DoAssignStreams', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
1926 |
'int64_t', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
1927 |
[param('int64_t', 'stream')], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
1928 |
visibility='private', is_virtual=True) |
8750 | 1929 |
return |
1930 |
||
1931 |
def register_Ns3RandomRectanglePositionAllocator_methods(root_module, cls): |
|
1932 |
## position-allocator.h (module 'mobility'): ns3::RandomRectanglePositionAllocator::RandomRectanglePositionAllocator(ns3::RandomRectanglePositionAllocator const & arg0) [copy constructor] |
|
1933 |
cls.add_constructor([param('ns3::RandomRectanglePositionAllocator const &', 'arg0')]) |
|
1934 |
## position-allocator.h (module 'mobility'): ns3::RandomRectanglePositionAllocator::RandomRectanglePositionAllocator() [constructor] |
|
1935 |
cls.add_constructor([]) |
|
8985
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
1936 |
## position-allocator.h (module 'mobility'): int64_t ns3::RandomRectanglePositionAllocator::AssignStreams(int64_t stream) [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
1937 |
cls.add_method('AssignStreams', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
1938 |
'int64_t', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
1939 |
[param('int64_t', 'stream')], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
1940 |
is_virtual=True) |
8750 | 1941 |
## position-allocator.h (module 'mobility'): ns3::Vector ns3::RandomRectanglePositionAllocator::GetNext() const [member function] |
1942 |
cls.add_method('GetNext', |
|
1943 |
'ns3::Vector', |
|
1944 |
[], |
|
1945 |
is_const=True, is_virtual=True) |
|
1946 |
## position-allocator.h (module 'mobility'): static ns3::TypeId ns3::RandomRectanglePositionAllocator::GetTypeId() [member function] |
|
1947 |
cls.add_method('GetTypeId', |
|
1948 |
'ns3::TypeId', |
|
1949 |
[], |
|
1950 |
is_static=True) |
|
8985
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
1951 |
## position-allocator.h (module 'mobility'): void ns3::RandomRectanglePositionAllocator::SetX(ns3::Ptr<ns3::RandomVariableStream> x) [member function] |
8750 | 1952 |
cls.add_method('SetX', |
1953 |
'void', |
|
8985
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
1954 |
[param('ns3::Ptr< ns3::RandomVariableStream >', 'x')]) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
1955 |
## position-allocator.h (module 'mobility'): void ns3::RandomRectanglePositionAllocator::SetY(ns3::Ptr<ns3::RandomVariableStream> y) [member function] |
8750 | 1956 |
cls.add_method('SetY', |
1957 |
'void', |
|
8985
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
1958 |
[param('ns3::Ptr< ns3::RandomVariableStream >', 'y')]) |
8750 | 1959 |
return |
1960 |
||
1961 |
def register_Ns3RandomRoomPositionAllocator_methods(root_module, cls): |
|
1962 |
## building-position-allocator.h (module 'buildings'): ns3::RandomRoomPositionAllocator::RandomRoomPositionAllocator(ns3::RandomRoomPositionAllocator const & arg0) [copy constructor] |
|
1963 |
cls.add_constructor([param('ns3::RandomRoomPositionAllocator const &', 'arg0')]) |
|
1964 |
## building-position-allocator.h (module 'buildings'): ns3::RandomRoomPositionAllocator::RandomRoomPositionAllocator() [constructor] |
|
1965 |
cls.add_constructor([]) |
|
8985
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
1966 |
## building-position-allocator.h (module 'buildings'): int64_t ns3::RandomRoomPositionAllocator::AssignStreams(int64_t stream) [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
1967 |
cls.add_method('AssignStreams', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
1968 |
'int64_t', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
1969 |
[param('int64_t', 'stream')], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
1970 |
is_virtual=True) |
8750 | 1971 |
## building-position-allocator.h (module 'buildings'): ns3::Vector ns3::RandomRoomPositionAllocator::GetNext() const [member function] |
1972 |
cls.add_method('GetNext', |
|
1973 |
'ns3::Vector', |
|
1974 |
[], |
|
1975 |
is_const=True, is_virtual=True) |
|
1976 |
## building-position-allocator.h (module 'buildings'): static ns3::TypeId ns3::RandomRoomPositionAllocator::GetTypeId() [member function] |
|
1977 |
cls.add_method('GetTypeId', |
|
1978 |
'ns3::TypeId', |
|
1979 |
[], |
|
1980 |
is_static=True) |
|
1981 |
return |
|
1982 |
||
8985
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
1983 |
def register_Ns3RandomVariableStream_methods(root_module, cls): |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
1984 |
## random-variable-stream.h (module 'core'): static ns3::TypeId ns3::RandomVariableStream::GetTypeId() [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
1985 |
cls.add_method('GetTypeId', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
1986 |
'ns3::TypeId', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
1987 |
[], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
1988 |
is_static=True) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
1989 |
## random-variable-stream.h (module 'core'): ns3::RandomVariableStream::RandomVariableStream() [constructor] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
1990 |
cls.add_constructor([]) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
1991 |
## random-variable-stream.h (module 'core'): void ns3::RandomVariableStream::SetStream(int64_t stream) [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
1992 |
cls.add_method('SetStream', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
1993 |
'void', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
1994 |
[param('int64_t', 'stream')]) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
1995 |
## random-variable-stream.h (module 'core'): int64_t ns3::RandomVariableStream::GetStream() const [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
1996 |
cls.add_method('GetStream', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
1997 |
'int64_t', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
1998 |
[], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
1999 |
is_const=True) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2000 |
## random-variable-stream.h (module 'core'): void ns3::RandomVariableStream::SetAntithetic(bool isAntithetic) [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2001 |
cls.add_method('SetAntithetic', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2002 |
'void', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2003 |
[param('bool', 'isAntithetic')]) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2004 |
## random-variable-stream.h (module 'core'): bool ns3::RandomVariableStream::IsAntithetic() const [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2005 |
cls.add_method('IsAntithetic', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2006 |
'bool', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2007 |
[], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2008 |
is_const=True) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2009 |
## random-variable-stream.h (module 'core'): double ns3::RandomVariableStream::GetValue() [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2010 |
cls.add_method('GetValue', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2011 |
'double', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2012 |
[], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2013 |
is_pure_virtual=True, is_virtual=True) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2014 |
## random-variable-stream.h (module 'core'): uint32_t ns3::RandomVariableStream::GetInteger() [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2015 |
cls.add_method('GetInteger', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2016 |
'uint32_t', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2017 |
[], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2018 |
is_pure_virtual=True, is_virtual=True) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2019 |
## random-variable-stream.h (module 'core'): ns3::RngStream * ns3::RandomVariableStream::Peek() const [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2020 |
cls.add_method('Peek', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2021 |
'ns3::RngStream *', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2022 |
[], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2023 |
is_const=True, visibility='protected') |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2024 |
return |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2025 |
|
8750 | 2026 |
def register_Ns3RangePropagationLossModel_methods(root_module, cls): |
2027 |
## propagation-loss-model.h (module 'propagation'): static ns3::TypeId ns3::RangePropagationLossModel::GetTypeId() [member function] |
|
2028 |
cls.add_method('GetTypeId', |
|
2029 |
'ns3::TypeId', |
|
2030 |
[], |
|
2031 |
is_static=True) |
|
2032 |
## propagation-loss-model.h (module 'propagation'): ns3::RangePropagationLossModel::RangePropagationLossModel() [constructor] |
|
2033 |
cls.add_constructor([]) |
|
2034 |
## propagation-loss-model.h (module 'propagation'): double ns3::RangePropagationLossModel::DoCalcRxPower(double txPowerDbm, ns3::Ptr<ns3::MobilityModel> a, ns3::Ptr<ns3::MobilityModel> b) const [member function] |
|
2035 |
cls.add_method('DoCalcRxPower', |
|
2036 |
'double', |
|
2037 |
[param('double', 'txPowerDbm'), param('ns3::Ptr< ns3::MobilityModel >', 'a'), param('ns3::Ptr< ns3::MobilityModel >', 'b')], |
|
2038 |
is_const=True, visibility='private', is_virtual=True) |
|
8985
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2039 |
## propagation-loss-model.h (module 'propagation'): int64_t ns3::RangePropagationLossModel::DoAssignStreams(int64_t stream) [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2040 |
cls.add_method('DoAssignStreams', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2041 |
'int64_t', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2042 |
[param('int64_t', 'stream')], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2043 |
visibility='private', is_virtual=True) |
8750 | 2044 |
return |
2045 |
||
2046 |
def register_Ns3SameRoomPositionAllocator_methods(root_module, cls): |
|
2047 |
## building-position-allocator.h (module 'buildings'): ns3::SameRoomPositionAllocator::SameRoomPositionAllocator(ns3::SameRoomPositionAllocator const & arg0) [copy constructor] |
|
2048 |
cls.add_constructor([param('ns3::SameRoomPositionAllocator const &', 'arg0')]) |
|
2049 |
## building-position-allocator.h (module 'buildings'): ns3::SameRoomPositionAllocator::SameRoomPositionAllocator() [constructor] |
|
2050 |
cls.add_constructor([]) |
|
2051 |
## building-position-allocator.h (module 'buildings'): ns3::SameRoomPositionAllocator::SameRoomPositionAllocator(ns3::NodeContainer c) [constructor] |
|
2052 |
cls.add_constructor([param('ns3::NodeContainer', 'c')]) |
|
8985
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2053 |
## building-position-allocator.h (module 'buildings'): int64_t ns3::SameRoomPositionAllocator::AssignStreams(int64_t arg0) [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2054 |
cls.add_method('AssignStreams', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2055 |
'int64_t', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2056 |
[param('int64_t', 'arg0')], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2057 |
is_virtual=True) |
8750 | 2058 |
## building-position-allocator.h (module 'buildings'): ns3::Vector ns3::SameRoomPositionAllocator::GetNext() const [member function] |
2059 |
cls.add_method('GetNext', |
|
2060 |
'ns3::Vector', |
|
2061 |
[], |
|
2062 |
is_const=True, is_virtual=True) |
|
2063 |
## building-position-allocator.h (module 'buildings'): static ns3::TypeId ns3::SameRoomPositionAllocator::GetTypeId() [member function] |
|
2064 |
cls.add_method('GetTypeId', |
|
2065 |
'ns3::TypeId', |
|
2066 |
[], |
|
2067 |
is_static=True) |
|
2068 |
return |
|
2069 |
||
8985
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2070 |
def register_Ns3SequentialRandomVariable_methods(root_module, cls): |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2071 |
## random-variable-stream.h (module 'core'): static ns3::TypeId ns3::SequentialRandomVariable::GetTypeId() [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2072 |
cls.add_method('GetTypeId', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2073 |
'ns3::TypeId', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2074 |
[], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2075 |
is_static=True) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2076 |
## random-variable-stream.h (module 'core'): ns3::SequentialRandomVariable::SequentialRandomVariable() [constructor] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2077 |
cls.add_constructor([]) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2078 |
## random-variable-stream.h (module 'core'): double ns3::SequentialRandomVariable::GetMin() const [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2079 |
cls.add_method('GetMin', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2080 |
'double', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2081 |
[], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2082 |
is_const=True) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2083 |
## random-variable-stream.h (module 'core'): double ns3::SequentialRandomVariable::GetMax() const [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2084 |
cls.add_method('GetMax', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2085 |
'double', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2086 |
[], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2087 |
is_const=True) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2088 |
## random-variable-stream.h (module 'core'): ns3::Ptr<ns3::RandomVariableStream> ns3::SequentialRandomVariable::GetIncrement() const [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2089 |
cls.add_method('GetIncrement', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2090 |
'ns3::Ptr< ns3::RandomVariableStream >', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2091 |
[], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2092 |
is_const=True) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2093 |
## random-variable-stream.h (module 'core'): uint32_t ns3::SequentialRandomVariable::GetConsecutive() const [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2094 |
cls.add_method('GetConsecutive', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2095 |
'uint32_t', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2096 |
[], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2097 |
is_const=True) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2098 |
## random-variable-stream.h (module 'core'): double ns3::SequentialRandomVariable::GetValue() [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2099 |
cls.add_method('GetValue', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2100 |
'double', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2101 |
[], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2102 |
is_virtual=True) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2103 |
## random-variable-stream.h (module 'core'): uint32_t ns3::SequentialRandomVariable::GetInteger() [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2104 |
cls.add_method('GetInteger', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2105 |
'uint32_t', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2106 |
[], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2107 |
is_virtual=True) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2108 |
return |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2109 |
|
8750 | 2110 |
def register_Ns3SimpleRefCount__Ns3AttributeAccessor_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeAccessor__gt___methods(root_module, cls): |
2111 |
## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> >::SimpleRefCount() [constructor] |
|
2112 |
cls.add_constructor([]) |
|
2113 |
## 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] |
|
2114 |
cls.add_constructor([param('ns3::SimpleRefCount< ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter< ns3::AttributeAccessor > > const &', 'o')]) |
|
2115 |
## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> >::Cleanup() [member function] |
|
2116 |
cls.add_method('Cleanup', |
|
2117 |
'void', |
|
2118 |
[], |
|
2119 |
is_static=True) |
|
2120 |
return |
|
2121 |
||
2122 |
def register_Ns3SimpleRefCount__Ns3AttributeChecker_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeChecker__gt___methods(root_module, cls): |
|
2123 |
## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter<ns3::AttributeChecker> >::SimpleRefCount() [constructor] |
|
2124 |
cls.add_constructor([]) |
|
2125 |
## 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] |
|
2126 |
cls.add_constructor([param('ns3::SimpleRefCount< ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter< ns3::AttributeChecker > > const &', 'o')]) |
|
2127 |
## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter<ns3::AttributeChecker> >::Cleanup() [member function] |
|
2128 |
cls.add_method('Cleanup', |
|
2129 |
'void', |
|
2130 |
[], |
|
2131 |
is_static=True) |
|
2132 |
return |
|
2133 |
||
2134 |
def register_Ns3SimpleRefCount__Ns3AttributeValue_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeValue__gt___methods(root_module, cls): |
|
2135 |
## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter<ns3::AttributeValue> >::SimpleRefCount() [constructor] |
|
2136 |
cls.add_constructor([]) |
|
2137 |
## 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] |
|
2138 |
cls.add_constructor([param('ns3::SimpleRefCount< ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter< ns3::AttributeValue > > const &', 'o')]) |
|
2139 |
## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter<ns3::AttributeValue> >::Cleanup() [member function] |
|
2140 |
cls.add_method('Cleanup', |
|
2141 |
'void', |
|
2142 |
[], |
|
2143 |
is_static=True) |
|
2144 |
return |
|
2145 |
||
2146 |
def register_Ns3SimpleRefCount__Ns3CallbackImplBase_Ns3Empty_Ns3DefaultDeleter__lt__ns3CallbackImplBase__gt___methods(root_module, cls): |
|
2147 |
## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> >::SimpleRefCount() [constructor] |
|
2148 |
cls.add_constructor([]) |
|
2149 |
## 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] |
|
2150 |
cls.add_constructor([param('ns3::SimpleRefCount< ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter< ns3::CallbackImplBase > > const &', 'o')]) |
|
2151 |
## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> >::Cleanup() [member function] |
|
2152 |
cls.add_method('Cleanup', |
|
2153 |
'void', |
|
2154 |
[], |
|
2155 |
is_static=True) |
|
2156 |
return |
|
2157 |
||
2158 |
def register_Ns3SimpleRefCount__Ns3TraceSourceAccessor_Ns3Empty_Ns3DefaultDeleter__lt__ns3TraceSourceAccessor__gt___methods(root_module, cls): |
|
2159 |
## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter<ns3::TraceSourceAccessor> >::SimpleRefCount() [constructor] |
|
2160 |
cls.add_constructor([]) |
|
2161 |
## 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] |
|
2162 |
cls.add_constructor([param('ns3::SimpleRefCount< ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter< ns3::TraceSourceAccessor > > const &', 'o')]) |
|
2163 |
## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter<ns3::TraceSourceAccessor> >::Cleanup() [member function] |
|
2164 |
cls.add_method('Cleanup', |
|
2165 |
'void', |
|
2166 |
[], |
|
2167 |
is_static=True) |
|
2168 |
return |
|
2169 |
||
2170 |
def register_Ns3ThreeLogDistancePropagationLossModel_methods(root_module, cls): |
|
2171 |
## propagation-loss-model.h (module 'propagation'): static ns3::TypeId ns3::ThreeLogDistancePropagationLossModel::GetTypeId() [member function] |
|
2172 |
cls.add_method('GetTypeId', |
|
2173 |
'ns3::TypeId', |
|
2174 |
[], |
|
2175 |
is_static=True) |
|
2176 |
## propagation-loss-model.h (module 'propagation'): ns3::ThreeLogDistancePropagationLossModel::ThreeLogDistancePropagationLossModel() [constructor] |
|
2177 |
cls.add_constructor([]) |
|
2178 |
## propagation-loss-model.h (module 'propagation'): double ns3::ThreeLogDistancePropagationLossModel::DoCalcRxPower(double txPowerDbm, ns3::Ptr<ns3::MobilityModel> a, ns3::Ptr<ns3::MobilityModel> b) const [member function] |
|
2179 |
cls.add_method('DoCalcRxPower', |
|
2180 |
'double', |
|
2181 |
[param('double', 'txPowerDbm'), param('ns3::Ptr< ns3::MobilityModel >', 'a'), param('ns3::Ptr< ns3::MobilityModel >', 'b')], |
|
2182 |
is_const=True, visibility='private', is_virtual=True) |
|
8985
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2183 |
## propagation-loss-model.h (module 'propagation'): int64_t ns3::ThreeLogDistancePropagationLossModel::DoAssignStreams(int64_t stream) [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2184 |
cls.add_method('DoAssignStreams', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2185 |
'int64_t', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2186 |
[param('int64_t', 'stream')], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2187 |
visibility='private', is_virtual=True) |
8750 | 2188 |
return |
2189 |
||
2190 |
def register_Ns3Time_methods(root_module, cls): |
|
2191 |
cls.add_binary_numeric_operator('+', root_module['ns3::Time'], root_module['ns3::Time'], param('ns3::Time const &', 'right')) |
|
2192 |
cls.add_binary_numeric_operator('-', root_module['ns3::Time'], root_module['ns3::Time'], param('ns3::Time const &', 'right')) |
|
2193 |
cls.add_binary_comparison_operator('<') |
|
2194 |
cls.add_binary_comparison_operator('>') |
|
2195 |
cls.add_binary_comparison_operator('!=') |
|
2196 |
cls.add_inplace_numeric_operator('+=', param('ns3::Time const &', 'right')) |
|
2197 |
cls.add_inplace_numeric_operator('-=', param('ns3::Time const &', 'right')) |
|
2198 |
cls.add_output_stream_operator() |
|
2199 |
cls.add_binary_comparison_operator('<=') |
|
2200 |
cls.add_binary_comparison_operator('==') |
|
2201 |
cls.add_binary_comparison_operator('>=') |
|
2202 |
## nstime.h (module 'core'): ns3::Time::Time() [constructor] |
|
2203 |
cls.add_constructor([]) |
|
2204 |
## nstime.h (module 'core'): ns3::Time::Time(ns3::Time const & o) [copy constructor] |
|
2205 |
cls.add_constructor([param('ns3::Time const &', 'o')]) |
|
2206 |
## nstime.h (module 'core'): ns3::Time::Time(double v) [constructor] |
|
2207 |
cls.add_constructor([param('double', 'v')]) |
|
2208 |
## nstime.h (module 'core'): ns3::Time::Time(int v) [constructor] |
|
2209 |
cls.add_constructor([param('int', 'v')]) |
|
2210 |
## nstime.h (module 'core'): ns3::Time::Time(long int v) [constructor] |
|
2211 |
cls.add_constructor([param('long int', 'v')]) |
|
2212 |
## nstime.h (module 'core'): ns3::Time::Time(long long int v) [constructor] |
|
2213 |
cls.add_constructor([param('long long int', 'v')]) |
|
2214 |
## nstime.h (module 'core'): ns3::Time::Time(unsigned int v) [constructor] |
|
2215 |
cls.add_constructor([param('unsigned int', 'v')]) |
|
2216 |
## nstime.h (module 'core'): ns3::Time::Time(long unsigned int v) [constructor] |
|
2217 |
cls.add_constructor([param('long unsigned int', 'v')]) |
|
2218 |
## nstime.h (module 'core'): ns3::Time::Time(long long unsigned int v) [constructor] |
|
2219 |
cls.add_constructor([param('long long unsigned int', 'v')]) |
|
2220 |
## nstime.h (module 'core'): ns3::Time::Time(std::string const & s) [constructor] |
|
2221 |
cls.add_constructor([param('std::string const &', 's')]) |
|
2222 |
## nstime.h (module 'core'): ns3::Time::Time(ns3::int64x64_t const & value) [constructor] |
|
2223 |
cls.add_constructor([param('ns3::int64x64_t const &', 'value')]) |
|
2224 |
## nstime.h (module 'core'): int ns3::Time::Compare(ns3::Time const & o) const [member function] |
|
2225 |
cls.add_method('Compare', |
|
2226 |
'int', |
|
2227 |
[param('ns3::Time const &', 'o')], |
|
2228 |
is_const=True) |
|
2229 |
## nstime.h (module 'core'): static ns3::Time ns3::Time::From(ns3::int64x64_t const & from, ns3::Time::Unit timeUnit) [member function] |
|
2230 |
cls.add_method('From', |
|
2231 |
'ns3::Time', |
|
2232 |
[param('ns3::int64x64_t const &', 'from'), param('ns3::Time::Unit', 'timeUnit')], |
|
2233 |
is_static=True) |
|
2234 |
## nstime.h (module 'core'): static ns3::Time ns3::Time::From(ns3::int64x64_t const & value) [member function] |
|
2235 |
cls.add_method('From', |
|
2236 |
'ns3::Time', |
|
2237 |
[param('ns3::int64x64_t const &', 'value')], |
|
2238 |
is_static=True) |
|
2239 |
## nstime.h (module 'core'): static ns3::Time ns3::Time::FromDouble(double value, ns3::Time::Unit timeUnit) [member function] |
|
2240 |
cls.add_method('FromDouble', |
|
2241 |
'ns3::Time', |
|
2242 |
[param('double', 'value'), param('ns3::Time::Unit', 'timeUnit')], |
|
2243 |
is_static=True) |
|
2244 |
## nstime.h (module 'core'): static ns3::Time ns3::Time::FromInteger(uint64_t value, ns3::Time::Unit timeUnit) [member function] |
|
2245 |
cls.add_method('FromInteger', |
|
2246 |
'ns3::Time', |
|
2247 |
[param('uint64_t', 'value'), param('ns3::Time::Unit', 'timeUnit')], |
|
2248 |
is_static=True) |
|
2249 |
## nstime.h (module 'core'): double ns3::Time::GetDouble() const [member function] |
|
2250 |
cls.add_method('GetDouble', |
|
2251 |
'double', |
|
2252 |
[], |
|
2253 |
is_const=True) |
|
2254 |
## nstime.h (module 'core'): int64_t ns3::Time::GetFemtoSeconds() const [member function] |
|
2255 |
cls.add_method('GetFemtoSeconds', |
|
2256 |
'int64_t', |
|
2257 |
[], |
|
2258 |
is_const=True) |
|
2259 |
## nstime.h (module 'core'): int64_t ns3::Time::GetInteger() const [member function] |
|
2260 |
cls.add_method('GetInteger', |
|
2261 |
'int64_t', |
|
2262 |
[], |
|
2263 |
is_const=True) |
|
2264 |
## nstime.h (module 'core'): int64_t ns3::Time::GetMicroSeconds() const [member function] |
|
2265 |
cls.add_method('GetMicroSeconds', |
|
2266 |
'int64_t', |
|
2267 |
[], |
|
2268 |
is_const=True) |
|
2269 |
## nstime.h (module 'core'): int64_t ns3::Time::GetMilliSeconds() const [member function] |
|
2270 |
cls.add_method('GetMilliSeconds', |
|
2271 |
'int64_t', |
|
2272 |
[], |
|
2273 |
is_const=True) |
|
2274 |
## nstime.h (module 'core'): int64_t ns3::Time::GetNanoSeconds() const [member function] |
|
2275 |
cls.add_method('GetNanoSeconds', |
|
2276 |
'int64_t', |
|
2277 |
[], |
|
2278 |
is_const=True) |
|
2279 |
## nstime.h (module 'core'): int64_t ns3::Time::GetPicoSeconds() const [member function] |
|
2280 |
cls.add_method('GetPicoSeconds', |
|
2281 |
'int64_t', |
|
2282 |
[], |
|
2283 |
is_const=True) |
|
2284 |
## nstime.h (module 'core'): static ns3::Time::Unit ns3::Time::GetResolution() [member function] |
|
2285 |
cls.add_method('GetResolution', |
|
2286 |
'ns3::Time::Unit', |
|
2287 |
[], |
|
2288 |
is_static=True) |
|
2289 |
## nstime.h (module 'core'): double ns3::Time::GetSeconds() const [member function] |
|
2290 |
cls.add_method('GetSeconds', |
|
2291 |
'double', |
|
2292 |
[], |
|
2293 |
is_const=True) |
|
2294 |
## nstime.h (module 'core'): int64_t ns3::Time::GetTimeStep() const [member function] |
|
2295 |
cls.add_method('GetTimeStep', |
|
2296 |
'int64_t', |
|
2297 |
[], |
|
2298 |
is_const=True) |
|
2299 |
## nstime.h (module 'core'): bool ns3::Time::IsNegative() const [member function] |
|
2300 |
cls.add_method('IsNegative', |
|
2301 |
'bool', |
|
2302 |
[], |
|
2303 |
is_const=True) |
|
2304 |
## nstime.h (module 'core'): bool ns3::Time::IsPositive() const [member function] |
|
2305 |
cls.add_method('IsPositive', |
|
2306 |
'bool', |
|
2307 |
[], |
|
2308 |
is_const=True) |
|
2309 |
## nstime.h (module 'core'): bool ns3::Time::IsStrictlyNegative() const [member function] |
|
2310 |
cls.add_method('IsStrictlyNegative', |
|
2311 |
'bool', |
|
2312 |
[], |
|
2313 |
is_const=True) |
|
2314 |
## nstime.h (module 'core'): bool ns3::Time::IsStrictlyPositive() const [member function] |
|
2315 |
cls.add_method('IsStrictlyPositive', |
|
2316 |
'bool', |
|
2317 |
[], |
|
2318 |
is_const=True) |
|
2319 |
## nstime.h (module 'core'): bool ns3::Time::IsZero() const [member function] |
|
2320 |
cls.add_method('IsZero', |
|
2321 |
'bool', |
|
2322 |
[], |
|
2323 |
is_const=True) |
|
2324 |
## nstime.h (module 'core'): static void ns3::Time::SetResolution(ns3::Time::Unit resolution) [member function] |
|
2325 |
cls.add_method('SetResolution', |
|
2326 |
'void', |
|
2327 |
[param('ns3::Time::Unit', 'resolution')], |
|
2328 |
is_static=True) |
|
2329 |
## nstime.h (module 'core'): ns3::int64x64_t ns3::Time::To(ns3::Time::Unit timeUnit) const [member function] |
|
2330 |
cls.add_method('To', |
|
2331 |
'ns3::int64x64_t', |
|
2332 |
[param('ns3::Time::Unit', 'timeUnit')], |
|
2333 |
is_const=True) |
|
2334 |
## nstime.h (module 'core'): double ns3::Time::ToDouble(ns3::Time::Unit timeUnit) const [member function] |
|
2335 |
cls.add_method('ToDouble', |
|
2336 |
'double', |
|
2337 |
[param('ns3::Time::Unit', 'timeUnit')], |
|
2338 |
is_const=True) |
|
2339 |
## nstime.h (module 'core'): int64_t ns3::Time::ToInteger(ns3::Time::Unit timeUnit) const [member function] |
|
2340 |
cls.add_method('ToInteger', |
|
2341 |
'int64_t', |
|
2342 |
[param('ns3::Time::Unit', 'timeUnit')], |
|
2343 |
is_const=True) |
|
2344 |
return |
|
2345 |
||
2346 |
def register_Ns3TraceSourceAccessor_methods(root_module, cls): |
|
2347 |
## trace-source-accessor.h (module 'core'): ns3::TraceSourceAccessor::TraceSourceAccessor(ns3::TraceSourceAccessor const & arg0) [copy constructor] |
|
2348 |
cls.add_constructor([param('ns3::TraceSourceAccessor const &', 'arg0')]) |
|
2349 |
## trace-source-accessor.h (module 'core'): ns3::TraceSourceAccessor::TraceSourceAccessor() [constructor] |
|
2350 |
cls.add_constructor([]) |
|
2351 |
## trace-source-accessor.h (module 'core'): bool ns3::TraceSourceAccessor::Connect(ns3::ObjectBase * obj, std::string context, ns3::CallbackBase const & cb) const [member function] |
|
2352 |
cls.add_method('Connect', |
|
2353 |
'bool', |
|
2354 |
[param('ns3::ObjectBase *', 'obj', transfer_ownership=False), param('std::string', 'context'), param('ns3::CallbackBase const &', 'cb')], |
|
2355 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
|
2356 |
## trace-source-accessor.h (module 'core'): bool ns3::TraceSourceAccessor::ConnectWithoutContext(ns3::ObjectBase * obj, ns3::CallbackBase const & cb) const [member function] |
|
2357 |
cls.add_method('ConnectWithoutContext', |
|
2358 |
'bool', |
|
2359 |
[param('ns3::ObjectBase *', 'obj', transfer_ownership=False), param('ns3::CallbackBase const &', 'cb')], |
|
2360 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
|
2361 |
## trace-source-accessor.h (module 'core'): bool ns3::TraceSourceAccessor::Disconnect(ns3::ObjectBase * obj, std::string context, ns3::CallbackBase const & cb) const [member function] |
|
2362 |
cls.add_method('Disconnect', |
|
2363 |
'bool', |
|
2364 |
[param('ns3::ObjectBase *', 'obj', transfer_ownership=False), param('std::string', 'context'), param('ns3::CallbackBase const &', 'cb')], |
|
2365 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
|
2366 |
## trace-source-accessor.h (module 'core'): bool ns3::TraceSourceAccessor::DisconnectWithoutContext(ns3::ObjectBase * obj, ns3::CallbackBase const & cb) const [member function] |
|
2367 |
cls.add_method('DisconnectWithoutContext', |
|
2368 |
'bool', |
|
2369 |
[param('ns3::ObjectBase *', 'obj', transfer_ownership=False), param('ns3::CallbackBase const &', 'cb')], |
|
2370 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
|
2371 |
return |
|
2372 |
||
8985
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2373 |
def register_Ns3TriangularRandomVariable_methods(root_module, cls): |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2374 |
## random-variable-stream.h (module 'core'): static ns3::TypeId ns3::TriangularRandomVariable::GetTypeId() [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2375 |
cls.add_method('GetTypeId', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2376 |
'ns3::TypeId', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2377 |
[], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2378 |
is_static=True) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2379 |
## random-variable-stream.h (module 'core'): ns3::TriangularRandomVariable::TriangularRandomVariable() [constructor] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2380 |
cls.add_constructor([]) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2381 |
## random-variable-stream.h (module 'core'): double ns3::TriangularRandomVariable::GetMean() const [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2382 |
cls.add_method('GetMean', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2383 |
'double', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2384 |
[], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2385 |
is_const=True) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2386 |
## random-variable-stream.h (module 'core'): double ns3::TriangularRandomVariable::GetMin() const [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2387 |
cls.add_method('GetMin', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2388 |
'double', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2389 |
[], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2390 |
is_const=True) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2391 |
## random-variable-stream.h (module 'core'): double ns3::TriangularRandomVariable::GetMax() const [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2392 |
cls.add_method('GetMax', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2393 |
'double', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2394 |
[], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2395 |
is_const=True) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2396 |
## random-variable-stream.h (module 'core'): double ns3::TriangularRandomVariable::GetValue(double mean, double min, double max) [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2397 |
cls.add_method('GetValue', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2398 |
'double', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2399 |
[param('double', 'mean'), param('double', 'min'), param('double', 'max')]) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2400 |
## random-variable-stream.h (module 'core'): uint32_t ns3::TriangularRandomVariable::GetInteger(uint32_t mean, uint32_t min, uint32_t max) [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2401 |
cls.add_method('GetInteger', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2402 |
'uint32_t', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2403 |
[param('uint32_t', 'mean'), param('uint32_t', 'min'), param('uint32_t', 'max')]) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2404 |
## random-variable-stream.h (module 'core'): double ns3::TriangularRandomVariable::GetValue() [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2405 |
cls.add_method('GetValue', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2406 |
'double', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2407 |
[], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2408 |
is_virtual=True) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2409 |
## random-variable-stream.h (module 'core'): uint32_t ns3::TriangularRandomVariable::GetInteger() [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2410 |
cls.add_method('GetInteger', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2411 |
'uint32_t', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2412 |
[], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2413 |
is_virtual=True) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2414 |
return |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2415 |
|
8750 | 2416 |
def register_Ns3TwoRayGroundPropagationLossModel_methods(root_module, cls): |
2417 |
## propagation-loss-model.h (module 'propagation'): static ns3::TypeId ns3::TwoRayGroundPropagationLossModel::GetTypeId() [member function] |
|
2418 |
cls.add_method('GetTypeId', |
|
2419 |
'ns3::TypeId', |
|
2420 |
[], |
|
2421 |
is_static=True) |
|
2422 |
## propagation-loss-model.h (module 'propagation'): ns3::TwoRayGroundPropagationLossModel::TwoRayGroundPropagationLossModel() [constructor] |
|
2423 |
cls.add_constructor([]) |
|
2424 |
## propagation-loss-model.h (module 'propagation'): void ns3::TwoRayGroundPropagationLossModel::SetLambda(double frequency, double speed) [member function] |
|
2425 |
cls.add_method('SetLambda', |
|
2426 |
'void', |
|
2427 |
[param('double', 'frequency'), param('double', 'speed')]) |
|
2428 |
## propagation-loss-model.h (module 'propagation'): void ns3::TwoRayGroundPropagationLossModel::SetLambda(double lambda) [member function] |
|
2429 |
cls.add_method('SetLambda', |
|
2430 |
'void', |
|
2431 |
[param('double', 'lambda')]) |
|
2432 |
## propagation-loss-model.h (module 'propagation'): void ns3::TwoRayGroundPropagationLossModel::SetSystemLoss(double systemLoss) [member function] |
|
2433 |
cls.add_method('SetSystemLoss', |
|
2434 |
'void', |
|
2435 |
[param('double', 'systemLoss')]) |
|
2436 |
## propagation-loss-model.h (module 'propagation'): void ns3::TwoRayGroundPropagationLossModel::SetMinDistance(double minDistance) [member function] |
|
2437 |
cls.add_method('SetMinDistance', |
|
2438 |
'void', |
|
2439 |
[param('double', 'minDistance')]) |
|
2440 |
## propagation-loss-model.h (module 'propagation'): double ns3::TwoRayGroundPropagationLossModel::GetMinDistance() const [member function] |
|
2441 |
cls.add_method('GetMinDistance', |
|
2442 |
'double', |
|
2443 |
[], |
|
2444 |
is_const=True) |
|
2445 |
## propagation-loss-model.h (module 'propagation'): double ns3::TwoRayGroundPropagationLossModel::GetLambda() const [member function] |
|
2446 |
cls.add_method('GetLambda', |
|
2447 |
'double', |
|
2448 |
[], |
|
2449 |
is_const=True) |
|
2450 |
## propagation-loss-model.h (module 'propagation'): double ns3::TwoRayGroundPropagationLossModel::GetSystemLoss() const [member function] |
|
2451 |
cls.add_method('GetSystemLoss', |
|
2452 |
'double', |
|
2453 |
[], |
|
2454 |
is_const=True) |
|
2455 |
## propagation-loss-model.h (module 'propagation'): void ns3::TwoRayGroundPropagationLossModel::SetHeightAboveZ(double heightAboveZ) [member function] |
|
2456 |
cls.add_method('SetHeightAboveZ', |
|
2457 |
'void', |
|
2458 |
[param('double', 'heightAboveZ')]) |
|
2459 |
## propagation-loss-model.h (module 'propagation'): double ns3::TwoRayGroundPropagationLossModel::DoCalcRxPower(double txPowerDbm, ns3::Ptr<ns3::MobilityModel> a, ns3::Ptr<ns3::MobilityModel> b) const [member function] |
|
2460 |
cls.add_method('DoCalcRxPower', |
|
2461 |
'double', |
|
2462 |
[param('double', 'txPowerDbm'), param('ns3::Ptr< ns3::MobilityModel >', 'a'), param('ns3::Ptr< ns3::MobilityModel >', 'b')], |
|
2463 |
is_const=True, visibility='private', is_virtual=True) |
|
8985
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2464 |
## propagation-loss-model.h (module 'propagation'): int64_t ns3::TwoRayGroundPropagationLossModel::DoAssignStreams(int64_t stream) [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2465 |
cls.add_method('DoAssignStreams', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2466 |
'int64_t', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2467 |
[param('int64_t', 'stream')], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2468 |
visibility='private', is_virtual=True) |
8750 | 2469 |
return |
2470 |
||
2471 |
def register_Ns3UniformDiscPositionAllocator_methods(root_module, cls): |
|
2472 |
## position-allocator.h (module 'mobility'): ns3::UniformDiscPositionAllocator::UniformDiscPositionAllocator(ns3::UniformDiscPositionAllocator const & arg0) [copy constructor] |
|
2473 |
cls.add_constructor([param('ns3::UniformDiscPositionAllocator const &', 'arg0')]) |
|
2474 |
## position-allocator.h (module 'mobility'): ns3::UniformDiscPositionAllocator::UniformDiscPositionAllocator() [constructor] |
|
2475 |
cls.add_constructor([]) |
|
8985
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2476 |
## position-allocator.h (module 'mobility'): int64_t ns3::UniformDiscPositionAllocator::AssignStreams(int64_t stream) [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2477 |
cls.add_method('AssignStreams', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2478 |
'int64_t', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2479 |
[param('int64_t', 'stream')], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2480 |
is_virtual=True) |
8750 | 2481 |
## position-allocator.h (module 'mobility'): ns3::Vector ns3::UniformDiscPositionAllocator::GetNext() const [member function] |
2482 |
cls.add_method('GetNext', |
|
2483 |
'ns3::Vector', |
|
2484 |
[], |
|
2485 |
is_const=True, is_virtual=True) |
|
2486 |
## position-allocator.h (module 'mobility'): static ns3::TypeId ns3::UniformDiscPositionAllocator::GetTypeId() [member function] |
|
2487 |
cls.add_method('GetTypeId', |
|
2488 |
'ns3::TypeId', |
|
2489 |
[], |
|
2490 |
is_static=True) |
|
2491 |
## position-allocator.h (module 'mobility'): void ns3::UniformDiscPositionAllocator::SetRho(double rho) [member function] |
|
2492 |
cls.add_method('SetRho', |
|
2493 |
'void', |
|
2494 |
[param('double', 'rho')]) |
|
2495 |
## position-allocator.h (module 'mobility'): void ns3::UniformDiscPositionAllocator::SetX(double x) [member function] |
|
2496 |
cls.add_method('SetX', |
|
2497 |
'void', |
|
2498 |
[param('double', 'x')]) |
|
2499 |
## position-allocator.h (module 'mobility'): void ns3::UniformDiscPositionAllocator::SetY(double y) [member function] |
|
2500 |
cls.add_method('SetY', |
|
2501 |
'void', |
|
2502 |
[param('double', 'y')]) |
|
2503 |
return |
|
2504 |
||
8985
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2505 |
def register_Ns3UniformRandomVariable_methods(root_module, cls): |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2506 |
## random-variable-stream.h (module 'core'): static ns3::TypeId ns3::UniformRandomVariable::GetTypeId() [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2507 |
cls.add_method('GetTypeId', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2508 |
'ns3::TypeId', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2509 |
[], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2510 |
is_static=True) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2511 |
## random-variable-stream.h (module 'core'): ns3::UniformRandomVariable::UniformRandomVariable() [constructor] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2512 |
cls.add_constructor([]) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2513 |
## random-variable-stream.h (module 'core'): double ns3::UniformRandomVariable::GetMin() const [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2514 |
cls.add_method('GetMin', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2515 |
'double', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2516 |
[], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2517 |
is_const=True) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2518 |
## random-variable-stream.h (module 'core'): double ns3::UniformRandomVariable::GetMax() const [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2519 |
cls.add_method('GetMax', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2520 |
'double', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2521 |
[], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2522 |
is_const=True) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2523 |
## random-variable-stream.h (module 'core'): double ns3::UniformRandomVariable::GetValue(double min, double max) [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2524 |
cls.add_method('GetValue', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2525 |
'double', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2526 |
[param('double', 'min'), param('double', 'max')]) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2527 |
## random-variable-stream.h (module 'core'): uint32_t ns3::UniformRandomVariable::GetInteger(uint32_t min, uint32_t max) [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2528 |
cls.add_method('GetInteger', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2529 |
'uint32_t', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2530 |
[param('uint32_t', 'min'), param('uint32_t', 'max')]) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2531 |
## random-variable-stream.h (module 'core'): double ns3::UniformRandomVariable::GetValue() [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2532 |
cls.add_method('GetValue', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2533 |
'double', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2534 |
[], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2535 |
is_virtual=True) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2536 |
## random-variable-stream.h (module 'core'): uint32_t ns3::UniformRandomVariable::GetInteger() [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2537 |
cls.add_method('GetInteger', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2538 |
'uint32_t', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2539 |
[], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2540 |
is_virtual=True) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2541 |
return |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2542 |
|
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2543 |
def register_Ns3WeibullRandomVariable_methods(root_module, cls): |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2544 |
## random-variable-stream.h (module 'core'): static ns3::TypeId ns3::WeibullRandomVariable::GetTypeId() [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2545 |
cls.add_method('GetTypeId', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2546 |
'ns3::TypeId', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2547 |
[], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2548 |
is_static=True) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2549 |
## random-variable-stream.h (module 'core'): ns3::WeibullRandomVariable::WeibullRandomVariable() [constructor] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2550 |
cls.add_constructor([]) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2551 |
## random-variable-stream.h (module 'core'): double ns3::WeibullRandomVariable::GetScale() const [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2552 |
cls.add_method('GetScale', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2553 |
'double', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2554 |
[], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2555 |
is_const=True) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2556 |
## random-variable-stream.h (module 'core'): double ns3::WeibullRandomVariable::GetShape() const [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2557 |
cls.add_method('GetShape', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2558 |
'double', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2559 |
[], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2560 |
is_const=True) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2561 |
## random-variable-stream.h (module 'core'): double ns3::WeibullRandomVariable::GetBound() const [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2562 |
cls.add_method('GetBound', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2563 |
'double', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2564 |
[], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2565 |
is_const=True) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2566 |
## random-variable-stream.h (module 'core'): double ns3::WeibullRandomVariable::GetValue(double scale, double shape, double bound) [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2567 |
cls.add_method('GetValue', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2568 |
'double', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2569 |
[param('double', 'scale'), param('double', 'shape'), param('double', 'bound')]) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2570 |
## random-variable-stream.h (module 'core'): uint32_t ns3::WeibullRandomVariable::GetInteger(uint32_t scale, uint32_t shape, uint32_t bound) [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2571 |
cls.add_method('GetInteger', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2572 |
'uint32_t', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2573 |
[param('uint32_t', 'scale'), param('uint32_t', 'shape'), param('uint32_t', 'bound')]) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2574 |
## random-variable-stream.h (module 'core'): double ns3::WeibullRandomVariable::GetValue() [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2575 |
cls.add_method('GetValue', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2576 |
'double', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2577 |
[], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2578 |
is_virtual=True) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2579 |
## random-variable-stream.h (module 'core'): uint32_t ns3::WeibullRandomVariable::GetInteger() [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2580 |
cls.add_method('GetInteger', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2581 |
'uint32_t', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2582 |
[], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2583 |
is_virtual=True) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2584 |
return |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2585 |
|
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2586 |
def register_Ns3ZetaRandomVariable_methods(root_module, cls): |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2587 |
## random-variable-stream.h (module 'core'): static ns3::TypeId ns3::ZetaRandomVariable::GetTypeId() [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2588 |
cls.add_method('GetTypeId', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2589 |
'ns3::TypeId', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2590 |
[], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2591 |
is_static=True) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2592 |
## random-variable-stream.h (module 'core'): ns3::ZetaRandomVariable::ZetaRandomVariable() [constructor] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2593 |
cls.add_constructor([]) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2594 |
## random-variable-stream.h (module 'core'): double ns3::ZetaRandomVariable::GetAlpha() const [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2595 |
cls.add_method('GetAlpha', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2596 |
'double', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2597 |
[], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2598 |
is_const=True) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2599 |
## random-variable-stream.h (module 'core'): double ns3::ZetaRandomVariable::GetValue(double alpha) [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2600 |
cls.add_method('GetValue', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2601 |
'double', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2602 |
[param('double', 'alpha')]) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2603 |
## random-variable-stream.h (module 'core'): uint32_t ns3::ZetaRandomVariable::GetInteger(uint32_t alpha) [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2604 |
cls.add_method('GetInteger', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2605 |
'uint32_t', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2606 |
[param('uint32_t', 'alpha')]) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2607 |
## random-variable-stream.h (module 'core'): double ns3::ZetaRandomVariable::GetValue() [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2608 |
cls.add_method('GetValue', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2609 |
'double', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2610 |
[], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2611 |
is_virtual=True) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2612 |
## random-variable-stream.h (module 'core'): uint32_t ns3::ZetaRandomVariable::GetInteger() [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2613 |
cls.add_method('GetInteger', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2614 |
'uint32_t', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2615 |
[], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2616 |
is_virtual=True) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2617 |
return |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2618 |
|
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2619 |
def register_Ns3ZipfRandomVariable_methods(root_module, cls): |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2620 |
## random-variable-stream.h (module 'core'): static ns3::TypeId ns3::ZipfRandomVariable::GetTypeId() [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2621 |
cls.add_method('GetTypeId', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2622 |
'ns3::TypeId', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2623 |
[], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2624 |
is_static=True) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2625 |
## random-variable-stream.h (module 'core'): ns3::ZipfRandomVariable::ZipfRandomVariable() [constructor] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2626 |
cls.add_constructor([]) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2627 |
## random-variable-stream.h (module 'core'): uint32_t ns3::ZipfRandomVariable::GetN() const [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2628 |
cls.add_method('GetN', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2629 |
'uint32_t', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2630 |
[], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2631 |
is_const=True) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2632 |
## random-variable-stream.h (module 'core'): double ns3::ZipfRandomVariable::GetAlpha() const [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2633 |
cls.add_method('GetAlpha', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2634 |
'double', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2635 |
[], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2636 |
is_const=True) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2637 |
## random-variable-stream.h (module 'core'): double ns3::ZipfRandomVariable::GetValue(uint32_t n, double alpha) [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2638 |
cls.add_method('GetValue', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2639 |
'double', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2640 |
[param('uint32_t', 'n'), param('double', 'alpha')]) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2641 |
## random-variable-stream.h (module 'core'): uint32_t ns3::ZipfRandomVariable::GetInteger(uint32_t n, uint32_t alpha) [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2642 |
cls.add_method('GetInteger', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2643 |
'uint32_t', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2644 |
[param('uint32_t', 'n'), param('uint32_t', 'alpha')]) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2645 |
## random-variable-stream.h (module 'core'): double ns3::ZipfRandomVariable::GetValue() [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2646 |
cls.add_method('GetValue', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2647 |
'double', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2648 |
[], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2649 |
is_virtual=True) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2650 |
## random-variable-stream.h (module 'core'): uint32_t ns3::ZipfRandomVariable::GetInteger() [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2651 |
cls.add_method('GetInteger', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2652 |
'uint32_t', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2653 |
[], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2654 |
is_virtual=True) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2655 |
return |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2656 |
|
8750 | 2657 |
def register_Ns3AttributeAccessor_methods(root_module, cls): |
2658 |
## attribute.h (module 'core'): ns3::AttributeAccessor::AttributeAccessor(ns3::AttributeAccessor const & arg0) [copy constructor] |
|
2659 |
cls.add_constructor([param('ns3::AttributeAccessor const &', 'arg0')]) |
|
2660 |
## attribute.h (module 'core'): ns3::AttributeAccessor::AttributeAccessor() [constructor] |
|
2661 |
cls.add_constructor([]) |
|
2662 |
## attribute.h (module 'core'): bool ns3::AttributeAccessor::Get(ns3::ObjectBase const * object, ns3::AttributeValue & attribute) const [member function] |
|
2663 |
cls.add_method('Get', |
|
2664 |
'bool', |
|
2665 |
[param('ns3::ObjectBase const *', 'object'), param('ns3::AttributeValue &', 'attribute')], |
|
2666 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
|
2667 |
## attribute.h (module 'core'): bool ns3::AttributeAccessor::HasGetter() const [member function] |
|
2668 |
cls.add_method('HasGetter', |
|
2669 |
'bool', |
|
2670 |
[], |
|
2671 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
|
2672 |
## attribute.h (module 'core'): bool ns3::AttributeAccessor::HasSetter() const [member function] |
|
2673 |
cls.add_method('HasSetter', |
|
2674 |
'bool', |
|
2675 |
[], |
|
2676 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
|
2677 |
## attribute.h (module 'core'): bool ns3::AttributeAccessor::Set(ns3::ObjectBase * object, ns3::AttributeValue const & value) const [member function] |
|
2678 |
cls.add_method('Set', |
|
2679 |
'bool', |
|
2680 |
[param('ns3::ObjectBase *', 'object', transfer_ownership=False), param('ns3::AttributeValue const &', 'value')], |
|
2681 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
|
2682 |
return |
|
2683 |
||
2684 |
def register_Ns3AttributeChecker_methods(root_module, cls): |
|
2685 |
## attribute.h (module 'core'): ns3::AttributeChecker::AttributeChecker(ns3::AttributeChecker const & arg0) [copy constructor] |
|
2686 |
cls.add_constructor([param('ns3::AttributeChecker const &', 'arg0')]) |
|
2687 |
## attribute.h (module 'core'): ns3::AttributeChecker::AttributeChecker() [constructor] |
|
2688 |
cls.add_constructor([]) |
|
2689 |
## attribute.h (module 'core'): bool ns3::AttributeChecker::Check(ns3::AttributeValue const & value) const [member function] |
|
2690 |
cls.add_method('Check', |
|
2691 |
'bool', |
|
2692 |
[param('ns3::AttributeValue const &', 'value')], |
|
2693 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
|
2694 |
## attribute.h (module 'core'): bool ns3::AttributeChecker::Copy(ns3::AttributeValue const & source, ns3::AttributeValue & destination) const [member function] |
|
2695 |
cls.add_method('Copy', |
|
2696 |
'bool', |
|
2697 |
[param('ns3::AttributeValue const &', 'source'), param('ns3::AttributeValue &', 'destination')], |
|
2698 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
|
2699 |
## attribute.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::AttributeChecker::Create() const [member function] |
|
2700 |
cls.add_method('Create', |
|
2701 |
'ns3::Ptr< ns3::AttributeValue >', |
|
2702 |
[], |
|
2703 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
|
2704 |
## attribute.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::AttributeChecker::CreateValidValue(ns3::AttributeValue const & value) const [member function] |
|
2705 |
cls.add_method('CreateValidValue', |
|
2706 |
'ns3::Ptr< ns3::AttributeValue >', |
|
2707 |
[param('ns3::AttributeValue const &', 'value')], |
|
2708 |
is_const=True) |
|
2709 |
## attribute.h (module 'core'): std::string ns3::AttributeChecker::GetUnderlyingTypeInformation() const [member function] |
|
2710 |
cls.add_method('GetUnderlyingTypeInformation', |
|
2711 |
'std::string', |
|
2712 |
[], |
|
2713 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
|
2714 |
## attribute.h (module 'core'): std::string ns3::AttributeChecker::GetValueTypeName() const [member function] |
|
2715 |
cls.add_method('GetValueTypeName', |
|
2716 |
'std::string', |
|
2717 |
[], |
|
2718 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
|
2719 |
## attribute.h (module 'core'): bool ns3::AttributeChecker::HasUnderlyingTypeInformation() const [member function] |
|
2720 |
cls.add_method('HasUnderlyingTypeInformation', |
|
2721 |
'bool', |
|
2722 |
[], |
|
2723 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
|
2724 |
return |
|
2725 |
||
2726 |
def register_Ns3AttributeValue_methods(root_module, cls): |
|
2727 |
## attribute.h (module 'core'): ns3::AttributeValue::AttributeValue(ns3::AttributeValue const & arg0) [copy constructor] |
|
2728 |
cls.add_constructor([param('ns3::AttributeValue const &', 'arg0')]) |
|
2729 |
## attribute.h (module 'core'): ns3::AttributeValue::AttributeValue() [constructor] |
|
2730 |
cls.add_constructor([]) |
|
2731 |
## attribute.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::AttributeValue::Copy() const [member function] |
|
2732 |
cls.add_method('Copy', |
|
2733 |
'ns3::Ptr< ns3::AttributeValue >', |
|
2734 |
[], |
|
2735 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
|
2736 |
## attribute.h (module 'core'): bool ns3::AttributeValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function] |
|
2737 |
cls.add_method('DeserializeFromString', |
|
2738 |
'bool', |
|
2739 |
[param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
|
2740 |
is_pure_virtual=True, is_virtual=True) |
|
2741 |
## attribute.h (module 'core'): std::string ns3::AttributeValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function] |
|
2742 |
cls.add_method('SerializeToString', |
|
2743 |
'std::string', |
|
2744 |
[param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
|
2745 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
|
2746 |
return |
|
2747 |
||
2748 |
def register_Ns3BoxChecker_methods(root_module, cls): |
|
2749 |
## box.h (module 'mobility'): ns3::BoxChecker::BoxChecker() [constructor] |
|
2750 |
cls.add_constructor([]) |
|
2751 |
## box.h (module 'mobility'): ns3::BoxChecker::BoxChecker(ns3::BoxChecker const & arg0) [copy constructor] |
|
2752 |
cls.add_constructor([param('ns3::BoxChecker const &', 'arg0')]) |
|
2753 |
return |
|
2754 |
||
2755 |
def register_Ns3BoxValue_methods(root_module, cls): |
|
2756 |
## box.h (module 'mobility'): ns3::BoxValue::BoxValue() [constructor] |
|
2757 |
cls.add_constructor([]) |
|
2758 |
## box.h (module 'mobility'): ns3::BoxValue::BoxValue(ns3::BoxValue const & arg0) [copy constructor] |
|
2759 |
cls.add_constructor([param('ns3::BoxValue const &', 'arg0')]) |
|
2760 |
## box.h (module 'mobility'): ns3::BoxValue::BoxValue(ns3::Box const & value) [constructor] |
|
2761 |
cls.add_constructor([param('ns3::Box const &', 'value')]) |
|
2762 |
## box.h (module 'mobility'): ns3::Ptr<ns3::AttributeValue> ns3::BoxValue::Copy() const [member function] |
|
2763 |
cls.add_method('Copy', |
|
2764 |
'ns3::Ptr< ns3::AttributeValue >', |
|
2765 |
[], |
|
2766 |
is_const=True, is_virtual=True) |
|
2767 |
## box.h (module 'mobility'): bool ns3::BoxValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function] |
|
2768 |
cls.add_method('DeserializeFromString', |
|
2769 |
'bool', |
|
2770 |
[param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
|
2771 |
is_virtual=True) |
|
2772 |
## box.h (module 'mobility'): ns3::Box ns3::BoxValue::Get() const [member function] |
|
2773 |
cls.add_method('Get', |
|
2774 |
'ns3::Box', |
|
2775 |
[], |
|
2776 |
is_const=True) |
|
2777 |
## box.h (module 'mobility'): std::string ns3::BoxValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function] |
|
2778 |
cls.add_method('SerializeToString', |
|
2779 |
'std::string', |
|
2780 |
[param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
|
2781 |
is_const=True, is_virtual=True) |
|
2782 |
## box.h (module 'mobility'): void ns3::BoxValue::Set(ns3::Box const & value) [member function] |
|
2783 |
cls.add_method('Set', |
|
2784 |
'void', |
|
2785 |
[param('ns3::Box const &', 'value')]) |
|
2786 |
return |
|
2787 |
||
2788 |
def register_Ns3Building_methods(root_module, cls): |
|
2789 |
## building.h (module 'buildings'): ns3::Building::Building(ns3::Building const & arg0) [copy constructor] |
|
2790 |
cls.add_constructor([param('ns3::Building const &', 'arg0')]) |
|
2791 |
## building.h (module 'buildings'): ns3::Building::Building(double xMin, double xMax, double yMin, double yMax, double zMin, double zMax) [constructor] |
|
2792 |
cls.add_constructor([param('double', 'xMin'), param('double', 'xMax'), param('double', 'yMin'), param('double', 'yMax'), param('double', 'zMin'), param('double', 'zMax')]) |
|
2793 |
## building.h (module 'buildings'): ns3::Building::Building() [constructor] |
|
2794 |
cls.add_constructor([]) |
|
2795 |
## building.h (module 'buildings'): void ns3::Building::DoDispose() [member function] |
|
2796 |
cls.add_method('DoDispose', |
|
2797 |
'void', |
|
2798 |
[], |
|
2799 |
is_virtual=True) |
|
2800 |
## building.h (module 'buildings'): ns3::Box ns3::Building::GetBoundaries() const [member function] |
|
2801 |
cls.add_method('GetBoundaries', |
|
2802 |
'ns3::Box', |
|
2803 |
[], |
|
2804 |
is_const=True) |
|
2805 |
## building.h (module 'buildings'): ns3::Building::BuildingType_t ns3::Building::GetBuildingType() const [member function] |
|
2806 |
cls.add_method('GetBuildingType', |
|
2807 |
'ns3::Building::BuildingType_t', |
|
2808 |
[], |
|
2809 |
is_const=True) |
|
2810 |
## building.h (module 'buildings'): ns3::Building::ExtWallsType_t ns3::Building::GetExtWallsType() const [member function] |
|
2811 |
cls.add_method('GetExtWallsType', |
|
2812 |
'ns3::Building::ExtWallsType_t', |
|
2813 |
[], |
|
2814 |
is_const=True) |
|
2815 |
## building.h (module 'buildings'): uint16_t ns3::Building::GetFloor(ns3::Vector position) const [member function] |
|
2816 |
cls.add_method('GetFloor', |
|
2817 |
'uint16_t', |
|
2818 |
[param('ns3::Vector', 'position')], |
|
2819 |
is_const=True) |
|
2820 |
## building.h (module 'buildings'): uint32_t ns3::Building::GetId() const [member function] |
|
2821 |
cls.add_method('GetId', |
|
2822 |
'uint32_t', |
|
2823 |
[], |
|
2824 |
is_const=True) |
|
2825 |
## building.h (module 'buildings'): uint16_t ns3::Building::GetNFloors() const [member function] |
|
2826 |
cls.add_method('GetNFloors', |
|
2827 |
'uint16_t', |
|
2828 |
[], |
|
2829 |
is_const=True) |
|
2830 |
## building.h (module 'buildings'): uint16_t ns3::Building::GetNRoomsX() const [member function] |
|
2831 |
cls.add_method('GetNRoomsX', |
|
2832 |
'uint16_t', |
|
2833 |
[], |
|
2834 |
is_const=True) |
|
2835 |
## building.h (module 'buildings'): uint16_t ns3::Building::GetNRoomsY() const [member function] |
|
2836 |
cls.add_method('GetNRoomsY', |
|
2837 |
'uint16_t', |
|
2838 |
[], |
|
2839 |
is_const=True) |
|
2840 |
## building.h (module 'buildings'): uint16_t ns3::Building::GetRoomX(ns3::Vector position) const [member function] |
|
2841 |
cls.add_method('GetRoomX', |
|
2842 |
'uint16_t', |
|
2843 |
[param('ns3::Vector', 'position')], |
|
2844 |
is_const=True) |
|
2845 |
## building.h (module 'buildings'): uint16_t ns3::Building::GetRoomY(ns3::Vector position) const [member function] |
|
2846 |
cls.add_method('GetRoomY', |
|
2847 |
'uint16_t', |
|
2848 |
[param('ns3::Vector', 'position')], |
|
2849 |
is_const=True) |
|
2850 |
## building.h (module 'buildings'): static ns3::TypeId ns3::Building::GetTypeId() [member function] |
|
2851 |
cls.add_method('GetTypeId', |
|
2852 |
'ns3::TypeId', |
|
2853 |
[], |
|
2854 |
is_static=True) |
|
2855 |
## building.h (module 'buildings'): bool ns3::Building::IsInside(ns3::Vector position) const [member function] |
|
2856 |
cls.add_method('IsInside', |
|
2857 |
'bool', |
|
2858 |
[param('ns3::Vector', 'position')], |
|
2859 |
is_const=True) |
|
2860 |
## building.h (module 'buildings'): void ns3::Building::SetBoundaries(ns3::Box box) [member function] |
|
2861 |
cls.add_method('SetBoundaries', |
|
2862 |
'void', |
|
2863 |
[param('ns3::Box', 'box')]) |
|
2864 |
## building.h (module 'buildings'): void ns3::Building::SetBuildingType(ns3::Building::BuildingType_t t) [member function] |
|
2865 |
cls.add_method('SetBuildingType', |
|
2866 |
'void', |
|
2867 |
[param('ns3::Building::BuildingType_t', 't')]) |
|
2868 |
## building.h (module 'buildings'): void ns3::Building::SetExtWallsType(ns3::Building::ExtWallsType_t t) [member function] |
|
2869 |
cls.add_method('SetExtWallsType', |
|
2870 |
'void', |
|
2871 |
[param('ns3::Building::ExtWallsType_t', 't')]) |
|
2872 |
## building.h (module 'buildings'): void ns3::Building::SetNFloors(uint16_t nfloors) [member function] |
|
2873 |
cls.add_method('SetNFloors', |
|
2874 |
'void', |
|
2875 |
[param('uint16_t', 'nfloors')]) |
|
2876 |
## building.h (module 'buildings'): void ns3::Building::SetNRoomsX(uint16_t nroomx) [member function] |
|
2877 |
cls.add_method('SetNRoomsX', |
|
2878 |
'void', |
|
2879 |
[param('uint16_t', 'nroomx')]) |
|
2880 |
## building.h (module 'buildings'): void ns3::Building::SetNRoomsY(uint16_t nroomy) [member function] |
|
2881 |
cls.add_method('SetNRoomsY', |
|
2882 |
'void', |
|
2883 |
[param('uint16_t', 'nroomy')]) |
|
2884 |
return |
|
2885 |
||
2886 |
def register_Ns3BuildingsPropagationLossModel_methods(root_module, cls): |
|
2887 |
## buildings-propagation-loss-model.h (module 'buildings'): ns3::BuildingsPropagationLossModel::BuildingsPropagationLossModel() [constructor] |
|
2888 |
cls.add_constructor([]) |
|
2889 |
## buildings-propagation-loss-model.h (module 'buildings'): double ns3::BuildingsPropagationLossModel::DoCalcRxPower(double txPowerDbm, ns3::Ptr<ns3::MobilityModel> a, ns3::Ptr<ns3::MobilityModel> b) const [member function] |
|
2890 |
cls.add_method('DoCalcRxPower', |
|
2891 |
'double', |
|
2892 |
[param('double', 'txPowerDbm'), param('ns3::Ptr< ns3::MobilityModel >', 'a'), param('ns3::Ptr< ns3::MobilityModel >', 'b')], |
|
2893 |
is_const=True, is_virtual=True) |
|
2894 |
## buildings-propagation-loss-model.h (module 'buildings'): double ns3::BuildingsPropagationLossModel::GetLoss(ns3::Ptr<ns3::MobilityModel> a, ns3::Ptr<ns3::MobilityModel> b) const [member function] |
|
2895 |
cls.add_method('GetLoss', |
|
2896 |
'double', |
|
2897 |
[param('ns3::Ptr< ns3::MobilityModel >', 'a'), param('ns3::Ptr< ns3::MobilityModel >', 'b')], |
|
2898 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
|
2899 |
## buildings-propagation-loss-model.h (module 'buildings'): static ns3::TypeId ns3::BuildingsPropagationLossModel::GetTypeId() [member function] |
|
2900 |
cls.add_method('GetTypeId', |
|
2901 |
'ns3::TypeId', |
|
2902 |
[], |
|
2903 |
is_static=True) |
|
8985
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2904 |
## buildings-propagation-loss-model.h (module 'buildings'): int64_t ns3::BuildingsPropagationLossModel::DoAssignStreams(int64_t stream) [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2905 |
cls.add_method('DoAssignStreams', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2906 |
'int64_t', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2907 |
[param('int64_t', 'stream')], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2908 |
visibility='protected', is_virtual=True) |
8750 | 2909 |
## buildings-propagation-loss-model.h (module 'buildings'): double ns3::BuildingsPropagationLossModel::EvaluateSigma(ns3::Ptr<ns3::BuildingsMobilityModel> a, ns3::Ptr<ns3::BuildingsMobilityModel> b) const [member function] |
2910 |
cls.add_method('EvaluateSigma', |
|
2911 |
'double', |
|
2912 |
[param('ns3::Ptr< ns3::BuildingsMobilityModel >', 'a'), param('ns3::Ptr< ns3::BuildingsMobilityModel >', 'b')], |
|
2913 |
is_const=True, visibility='protected') |
|
2914 |
## buildings-propagation-loss-model.h (module 'buildings'): double ns3::BuildingsPropagationLossModel::ExternalWallLoss(ns3::Ptr<ns3::BuildingsMobilityModel> a) const [member function] |
|
2915 |
cls.add_method('ExternalWallLoss', |
|
2916 |
'double', |
|
2917 |
[param('ns3::Ptr< ns3::BuildingsMobilityModel >', 'a')], |
|
2918 |
is_const=True, visibility='protected') |
|
2919 |
## buildings-propagation-loss-model.h (module 'buildings'): double ns3::BuildingsPropagationLossModel::GetShadowing(ns3::Ptr<ns3::MobilityModel> a, ns3::Ptr<ns3::MobilityModel> b) const [member function] |
|
2920 |
cls.add_method('GetShadowing', |
|
2921 |
'double', |
|
2922 |
[param('ns3::Ptr< ns3::MobilityModel >', 'a'), param('ns3::Ptr< ns3::MobilityModel >', 'b')], |
|
2923 |
is_const=True, visibility='protected') |
|
2924 |
## buildings-propagation-loss-model.h (module 'buildings'): double ns3::BuildingsPropagationLossModel::HeightLoss(ns3::Ptr<ns3::BuildingsMobilityModel> n) const [member function] |
|
2925 |
cls.add_method('HeightLoss', |
|
2926 |
'double', |
|
2927 |
[param('ns3::Ptr< ns3::BuildingsMobilityModel >', 'n')], |
|
2928 |
is_const=True, visibility='protected') |
|
2929 |
## buildings-propagation-loss-model.h (module 'buildings'): double ns3::BuildingsPropagationLossModel::InternalWallsLoss(ns3::Ptr<ns3::BuildingsMobilityModel> a, ns3::Ptr<ns3::BuildingsMobilityModel> b) const [member function] |
|
2930 |
cls.add_method('InternalWallsLoss', |
|
2931 |
'double', |
|
2932 |
[param('ns3::Ptr< ns3::BuildingsMobilityModel >', 'a'), param('ns3::Ptr< ns3::BuildingsMobilityModel >', 'b')], |
|
2933 |
is_const=True, visibility='protected') |
|
2934 |
return |
|
2935 |
||
2936 |
def register_Ns3CallbackChecker_methods(root_module, cls): |
|
2937 |
## callback.h (module 'core'): ns3::CallbackChecker::CallbackChecker() [constructor] |
|
2938 |
cls.add_constructor([]) |
|
2939 |
## callback.h (module 'core'): ns3::CallbackChecker::CallbackChecker(ns3::CallbackChecker const & arg0) [copy constructor] |
|
2940 |
cls.add_constructor([param('ns3::CallbackChecker const &', 'arg0')]) |
|
2941 |
return |
|
2942 |
||
2943 |
def register_Ns3CallbackImplBase_methods(root_module, cls): |
|
2944 |
## callback.h (module 'core'): ns3::CallbackImplBase::CallbackImplBase() [constructor] |
|
2945 |
cls.add_constructor([]) |
|
2946 |
## callback.h (module 'core'): ns3::CallbackImplBase::CallbackImplBase(ns3::CallbackImplBase const & arg0) [copy constructor] |
|
2947 |
cls.add_constructor([param('ns3::CallbackImplBase const &', 'arg0')]) |
|
2948 |
## callback.h (module 'core'): bool ns3::CallbackImplBase::IsEqual(ns3::Ptr<ns3::CallbackImplBase const> other) const [member function] |
|
2949 |
cls.add_method('IsEqual', |
|
2950 |
'bool', |
|
2951 |
[param('ns3::Ptr< ns3::CallbackImplBase const >', 'other')], |
|
2952 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
|
2953 |
return |
|
2954 |
||
2955 |
def register_Ns3CallbackValue_methods(root_module, cls): |
|
2956 |
## callback.h (module 'core'): ns3::CallbackValue::CallbackValue(ns3::CallbackValue const & arg0) [copy constructor] |
|
2957 |
cls.add_constructor([param('ns3::CallbackValue const &', 'arg0')]) |
|
2958 |
## callback.h (module 'core'): ns3::CallbackValue::CallbackValue() [constructor] |
|
2959 |
cls.add_constructor([]) |
|
2960 |
## callback.h (module 'core'): ns3::CallbackValue::CallbackValue(ns3::CallbackBase const & base) [constructor] |
|
2961 |
cls.add_constructor([param('ns3::CallbackBase const &', 'base')]) |
|
2962 |
## callback.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::CallbackValue::Copy() const [member function] |
|
2963 |
cls.add_method('Copy', |
|
2964 |
'ns3::Ptr< ns3::AttributeValue >', |
|
2965 |
[], |
|
2966 |
is_const=True, is_virtual=True) |
|
2967 |
## callback.h (module 'core'): bool ns3::CallbackValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function] |
|
2968 |
cls.add_method('DeserializeFromString', |
|
2969 |
'bool', |
|
2970 |
[param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
|
2971 |
is_virtual=True) |
|
2972 |
## callback.h (module 'core'): std::string ns3::CallbackValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function] |
|
2973 |
cls.add_method('SerializeToString', |
|
2974 |
'std::string', |
|
2975 |
[param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
|
2976 |
is_const=True, is_virtual=True) |
|
2977 |
## callback.h (module 'core'): void ns3::CallbackValue::Set(ns3::CallbackBase base) [member function] |
|
2978 |
cls.add_method('Set', |
|
2979 |
'void', |
|
2980 |
[param('ns3::CallbackBase', 'base')]) |
|
2981 |
return |
|
2982 |
||
8985
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2983 |
def register_Ns3ConstantRandomVariable_methods(root_module, cls): |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2984 |
## random-variable-stream.h (module 'core'): static ns3::TypeId ns3::ConstantRandomVariable::GetTypeId() [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2985 |
cls.add_method('GetTypeId', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2986 |
'ns3::TypeId', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2987 |
[], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2988 |
is_static=True) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2989 |
## random-variable-stream.h (module 'core'): ns3::ConstantRandomVariable::ConstantRandomVariable() [constructor] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2990 |
cls.add_constructor([]) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2991 |
## random-variable-stream.h (module 'core'): double ns3::ConstantRandomVariable::GetConstant() const [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2992 |
cls.add_method('GetConstant', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2993 |
'double', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2994 |
[], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2995 |
is_const=True) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2996 |
## random-variable-stream.h (module 'core'): double ns3::ConstantRandomVariable::GetValue(double constant) [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2997 |
cls.add_method('GetValue', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2998 |
'double', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
2999 |
[param('double', 'constant')]) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3000 |
## random-variable-stream.h (module 'core'): uint32_t ns3::ConstantRandomVariable::GetInteger(uint32_t constant) [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3001 |
cls.add_method('GetInteger', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3002 |
'uint32_t', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3003 |
[param('uint32_t', 'constant')]) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3004 |
## random-variable-stream.h (module 'core'): double ns3::ConstantRandomVariable::GetValue() [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3005 |
cls.add_method('GetValue', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3006 |
'double', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3007 |
[], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3008 |
is_virtual=True) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3009 |
## random-variable-stream.h (module 'core'): uint32_t ns3::ConstantRandomVariable::GetInteger() [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3010 |
cls.add_method('GetInteger', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3011 |
'uint32_t', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3012 |
[], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3013 |
is_virtual=True) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3014 |
return |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3015 |
|
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3016 |
def register_Ns3DeterministicRandomVariable_methods(root_module, cls): |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3017 |
## random-variable-stream.h (module 'core'): static ns3::TypeId ns3::DeterministicRandomVariable::GetTypeId() [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3018 |
cls.add_method('GetTypeId', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3019 |
'ns3::TypeId', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3020 |
[], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3021 |
is_static=True) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3022 |
## random-variable-stream.h (module 'core'): ns3::DeterministicRandomVariable::DeterministicRandomVariable() [constructor] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3023 |
cls.add_constructor([]) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3024 |
## random-variable-stream.h (module 'core'): void ns3::DeterministicRandomVariable::SetValueArray(double * values, uint64_t length) [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3025 |
cls.add_method('SetValueArray', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3026 |
'void', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3027 |
[param('double *', 'values'), param('uint64_t', 'length')]) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3028 |
## random-variable-stream.h (module 'core'): double ns3::DeterministicRandomVariable::GetValue() [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3029 |
cls.add_method('GetValue', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3030 |
'double', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3031 |
[], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3032 |
is_virtual=True) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3033 |
## random-variable-stream.h (module 'core'): uint32_t ns3::DeterministicRandomVariable::GetInteger() [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3034 |
cls.add_method('GetInteger', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3035 |
'uint32_t', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3036 |
[], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3037 |
is_virtual=True) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3038 |
return |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3039 |
|
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3040 |
def register_Ns3EmpiricalRandomVariable_methods(root_module, cls): |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3041 |
## random-variable-stream.h (module 'core'): ns3::EmpiricalRandomVariable::EmpiricalRandomVariable() [constructor] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3042 |
cls.add_constructor([]) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3043 |
## random-variable-stream.h (module 'core'): void ns3::EmpiricalRandomVariable::CDF(double v, double c) [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3044 |
cls.add_method('CDF', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3045 |
'void', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3046 |
[param('double', 'v'), param('double', 'c')]) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3047 |
## random-variable-stream.h (module 'core'): uint32_t ns3::EmpiricalRandomVariable::GetInteger() [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3048 |
cls.add_method('GetInteger', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3049 |
'uint32_t', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3050 |
[], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3051 |
is_virtual=True) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3052 |
## random-variable-stream.h (module 'core'): static ns3::TypeId ns3::EmpiricalRandomVariable::GetTypeId() [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3053 |
cls.add_method('GetTypeId', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3054 |
'ns3::TypeId', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3055 |
[], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3056 |
is_static=True) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3057 |
## random-variable-stream.h (module 'core'): double ns3::EmpiricalRandomVariable::GetValue() [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3058 |
cls.add_method('GetValue', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3059 |
'double', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3060 |
[], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3061 |
is_virtual=True) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3062 |
## random-variable-stream.h (module 'core'): double ns3::EmpiricalRandomVariable::Interpolate(double arg0, double arg1, double arg2, double arg3, double arg4) [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3063 |
cls.add_method('Interpolate', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3064 |
'double', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3065 |
[param('double', 'arg0'), param('double', 'arg1'), param('double', 'arg2'), param('double', 'arg3'), param('double', 'arg4')], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3066 |
visibility='private', is_virtual=True) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3067 |
## random-variable-stream.h (module 'core'): void ns3::EmpiricalRandomVariable::Validate() [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3068 |
cls.add_method('Validate', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3069 |
'void', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3070 |
[], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3071 |
visibility='private', is_virtual=True) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3072 |
return |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3073 |
|
8750 | 3074 |
def register_Ns3EmptyAttributeValue_methods(root_module, cls): |
3075 |
## attribute.h (module 'core'): ns3::EmptyAttributeValue::EmptyAttributeValue(ns3::EmptyAttributeValue const & arg0) [copy constructor] |
|
3076 |
cls.add_constructor([param('ns3::EmptyAttributeValue const &', 'arg0')]) |
|
3077 |
## attribute.h (module 'core'): ns3::EmptyAttributeValue::EmptyAttributeValue() [constructor] |
|
3078 |
cls.add_constructor([]) |
|
3079 |
## attribute.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::EmptyAttributeValue::Copy() const [member function] |
|
3080 |
cls.add_method('Copy', |
|
3081 |
'ns3::Ptr< ns3::AttributeValue >', |
|
3082 |
[], |
|
3083 |
is_const=True, visibility='private', is_virtual=True) |
|
3084 |
## attribute.h (module 'core'): bool ns3::EmptyAttributeValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function] |
|
3085 |
cls.add_method('DeserializeFromString', |
|
3086 |
'bool', |
|
3087 |
[param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
|
3088 |
visibility='private', is_virtual=True) |
|
3089 |
## attribute.h (module 'core'): std::string ns3::EmptyAttributeValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function] |
|
3090 |
cls.add_method('SerializeToString', |
|
3091 |
'std::string', |
|
3092 |
[param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
|
3093 |
is_const=True, visibility='private', is_virtual=True) |
|
3094 |
return |
|
3095 |
||
8985
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3096 |
def register_Ns3ErlangRandomVariable_methods(root_module, cls): |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3097 |
## random-variable-stream.h (module 'core'): static ns3::TypeId ns3::ErlangRandomVariable::GetTypeId() [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3098 |
cls.add_method('GetTypeId', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3099 |
'ns3::TypeId', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3100 |
[], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3101 |
is_static=True) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3102 |
## random-variable-stream.h (module 'core'): ns3::ErlangRandomVariable::ErlangRandomVariable() [constructor] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3103 |
cls.add_constructor([]) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3104 |
## random-variable-stream.h (module 'core'): uint32_t ns3::ErlangRandomVariable::GetK() const [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3105 |
cls.add_method('GetK', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3106 |
'uint32_t', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3107 |
[], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3108 |
is_const=True) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3109 |
## random-variable-stream.h (module 'core'): double ns3::ErlangRandomVariable::GetLambda() const [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3110 |
cls.add_method('GetLambda', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3111 |
'double', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3112 |
[], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3113 |
is_const=True) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3114 |
## random-variable-stream.h (module 'core'): double ns3::ErlangRandomVariable::GetValue(uint32_t k, double lambda) [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3115 |
cls.add_method('GetValue', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3116 |
'double', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3117 |
[param('uint32_t', 'k'), param('double', 'lambda')]) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3118 |
## random-variable-stream.h (module 'core'): uint32_t ns3::ErlangRandomVariable::GetInteger(uint32_t k, uint32_t lambda) [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3119 |
cls.add_method('GetInteger', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3120 |
'uint32_t', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3121 |
[param('uint32_t', 'k'), param('uint32_t', 'lambda')]) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3122 |
## random-variable-stream.h (module 'core'): double ns3::ErlangRandomVariable::GetValue() [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3123 |
cls.add_method('GetValue', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3124 |
'double', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3125 |
[], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3126 |
is_virtual=True) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3127 |
## random-variable-stream.h (module 'core'): uint32_t ns3::ErlangRandomVariable::GetInteger() [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3128 |
cls.add_method('GetInteger', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3129 |
'uint32_t', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3130 |
[], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3131 |
is_virtual=True) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3132 |
return |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3133 |
|
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3134 |
def register_Ns3ExponentialRandomVariable_methods(root_module, cls): |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3135 |
## random-variable-stream.h (module 'core'): static ns3::TypeId ns3::ExponentialRandomVariable::GetTypeId() [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3136 |
cls.add_method('GetTypeId', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3137 |
'ns3::TypeId', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3138 |
[], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3139 |
is_static=True) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3140 |
## random-variable-stream.h (module 'core'): ns3::ExponentialRandomVariable::ExponentialRandomVariable() [constructor] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3141 |
cls.add_constructor([]) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3142 |
## random-variable-stream.h (module 'core'): double ns3::ExponentialRandomVariable::GetMean() const [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3143 |
cls.add_method('GetMean', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3144 |
'double', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3145 |
[], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3146 |
is_const=True) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3147 |
## random-variable-stream.h (module 'core'): double ns3::ExponentialRandomVariable::GetBound() const [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3148 |
cls.add_method('GetBound', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3149 |
'double', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3150 |
[], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3151 |
is_const=True) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3152 |
## random-variable-stream.h (module 'core'): double ns3::ExponentialRandomVariable::GetValue(double mean, double bound) [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3153 |
cls.add_method('GetValue', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3154 |
'double', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3155 |
[param('double', 'mean'), param('double', 'bound')]) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3156 |
## random-variable-stream.h (module 'core'): uint32_t ns3::ExponentialRandomVariable::GetInteger(uint32_t mean, uint32_t bound) [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3157 |
cls.add_method('GetInteger', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3158 |
'uint32_t', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3159 |
[param('uint32_t', 'mean'), param('uint32_t', 'bound')]) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3160 |
## random-variable-stream.h (module 'core'): double ns3::ExponentialRandomVariable::GetValue() [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3161 |
cls.add_method('GetValue', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3162 |
'double', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3163 |
[], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3164 |
is_virtual=True) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3165 |
## random-variable-stream.h (module 'core'): uint32_t ns3::ExponentialRandomVariable::GetInteger() [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3166 |
cls.add_method('GetInteger', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3167 |
'uint32_t', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3168 |
[], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3169 |
is_virtual=True) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3170 |
return |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3171 |
|
8750 | 3172 |
def register_Ns3FixedRssLossModel_methods(root_module, cls): |
3173 |
## propagation-loss-model.h (module 'propagation'): static ns3::TypeId ns3::FixedRssLossModel::GetTypeId() [member function] |
|
3174 |
cls.add_method('GetTypeId', |
|
3175 |
'ns3::TypeId', |
|
3176 |
[], |
|
3177 |
is_static=True) |
|
3178 |
## propagation-loss-model.h (module 'propagation'): ns3::FixedRssLossModel::FixedRssLossModel() [constructor] |
|
3179 |
cls.add_constructor([]) |
|
3180 |
## propagation-loss-model.h (module 'propagation'): void ns3::FixedRssLossModel::SetRss(double rss) [member function] |
|
3181 |
cls.add_method('SetRss', |
|
3182 |
'void', |
|
3183 |
[param('double', 'rss')]) |
|
3184 |
## propagation-loss-model.h (module 'propagation'): double ns3::FixedRssLossModel::DoCalcRxPower(double txPowerDbm, ns3::Ptr<ns3::MobilityModel> a, ns3::Ptr<ns3::MobilityModel> b) const [member function] |
|
3185 |
cls.add_method('DoCalcRxPower', |
|
3186 |
'double', |
|
3187 |
[param('double', 'txPowerDbm'), param('ns3::Ptr< ns3::MobilityModel >', 'a'), param('ns3::Ptr< ns3::MobilityModel >', 'b')], |
|
3188 |
is_const=True, visibility='private', is_virtual=True) |
|
8985
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3189 |
## propagation-loss-model.h (module 'propagation'): int64_t ns3::FixedRssLossModel::DoAssignStreams(int64_t stream) [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3190 |
cls.add_method('DoAssignStreams', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3191 |
'int64_t', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3192 |
[param('int64_t', 'stream')], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3193 |
visibility='private', is_virtual=True) |
8750 | 3194 |
return |
3195 |
||
3196 |
def register_Ns3FriisPropagationLossModel_methods(root_module, cls): |
|
3197 |
## propagation-loss-model.h (module 'propagation'): static ns3::TypeId ns3::FriisPropagationLossModel::GetTypeId() [member function] |
|
3198 |
cls.add_method('GetTypeId', |
|
3199 |
'ns3::TypeId', |
|
3200 |
[], |
|
3201 |
is_static=True) |
|
3202 |
## propagation-loss-model.h (module 'propagation'): ns3::FriisPropagationLossModel::FriisPropagationLossModel() [constructor] |
|
3203 |
cls.add_constructor([]) |
|
3204 |
## propagation-loss-model.h (module 'propagation'): void ns3::FriisPropagationLossModel::SetLambda(double frequency, double speed) [member function] |
|
3205 |
cls.add_method('SetLambda', |
|
3206 |
'void', |
|
3207 |
[param('double', 'frequency'), param('double', 'speed')]) |
|
3208 |
## propagation-loss-model.h (module 'propagation'): void ns3::FriisPropagationLossModel::SetLambda(double lambda) [member function] |
|
3209 |
cls.add_method('SetLambda', |
|
3210 |
'void', |
|
3211 |
[param('double', 'lambda')]) |
|
3212 |
## propagation-loss-model.h (module 'propagation'): void ns3::FriisPropagationLossModel::SetSystemLoss(double systemLoss) [member function] |
|
3213 |
cls.add_method('SetSystemLoss', |
|
3214 |
'void', |
|
3215 |
[param('double', 'systemLoss')]) |
|
3216 |
## propagation-loss-model.h (module 'propagation'): void ns3::FriisPropagationLossModel::SetMinDistance(double minDistance) [member function] |
|
3217 |
cls.add_method('SetMinDistance', |
|
3218 |
'void', |
|
3219 |
[param('double', 'minDistance')]) |
|
3220 |
## propagation-loss-model.h (module 'propagation'): double ns3::FriisPropagationLossModel::GetMinDistance() const [member function] |
|
3221 |
cls.add_method('GetMinDistance', |
|
3222 |
'double', |
|
3223 |
[], |
|
3224 |
is_const=True) |
|
3225 |
## propagation-loss-model.h (module 'propagation'): double ns3::FriisPropagationLossModel::GetLambda() const [member function] |
|
3226 |
cls.add_method('GetLambda', |
|
3227 |
'double', |
|
3228 |
[], |
|
3229 |
is_const=True) |
|
3230 |
## propagation-loss-model.h (module 'propagation'): double ns3::FriisPropagationLossModel::GetSystemLoss() const [member function] |
|
3231 |
cls.add_method('GetSystemLoss', |
|
3232 |
'double', |
|
3233 |
[], |
|
3234 |
is_const=True) |
|
3235 |
## propagation-loss-model.h (module 'propagation'): double ns3::FriisPropagationLossModel::DoCalcRxPower(double txPowerDbm, ns3::Ptr<ns3::MobilityModel> a, ns3::Ptr<ns3::MobilityModel> b) const [member function] |
|
3236 |
cls.add_method('DoCalcRxPower', |
|
3237 |
'double', |
|
3238 |
[param('double', 'txPowerDbm'), param('ns3::Ptr< ns3::MobilityModel >', 'a'), param('ns3::Ptr< ns3::MobilityModel >', 'b')], |
|
3239 |
is_const=True, visibility='private', is_virtual=True) |
|
8985
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3240 |
## propagation-loss-model.h (module 'propagation'): int64_t ns3::FriisPropagationLossModel::DoAssignStreams(int64_t stream) [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3241 |
cls.add_method('DoAssignStreams', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3242 |
'int64_t', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3243 |
[param('int64_t', 'stream')], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3244 |
visibility='private', is_virtual=True) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3245 |
return |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3246 |
|
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3247 |
def register_Ns3GammaRandomVariable_methods(root_module, cls): |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3248 |
## random-variable-stream.h (module 'core'): static ns3::TypeId ns3::GammaRandomVariable::GetTypeId() [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3249 |
cls.add_method('GetTypeId', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3250 |
'ns3::TypeId', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3251 |
[], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3252 |
is_static=True) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3253 |
## random-variable-stream.h (module 'core'): ns3::GammaRandomVariable::GammaRandomVariable() [constructor] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3254 |
cls.add_constructor([]) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3255 |
## random-variable-stream.h (module 'core'): double ns3::GammaRandomVariable::GetAlpha() const [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3256 |
cls.add_method('GetAlpha', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3257 |
'double', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3258 |
[], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3259 |
is_const=True) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3260 |
## random-variable-stream.h (module 'core'): double ns3::GammaRandomVariable::GetBeta() const [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3261 |
cls.add_method('GetBeta', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3262 |
'double', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3263 |
[], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3264 |
is_const=True) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3265 |
## random-variable-stream.h (module 'core'): double ns3::GammaRandomVariable::GetValue(double alpha, double beta) [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3266 |
cls.add_method('GetValue', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3267 |
'double', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3268 |
[param('double', 'alpha'), param('double', 'beta')]) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3269 |
## random-variable-stream.h (module 'core'): uint32_t ns3::GammaRandomVariable::GetInteger(uint32_t alpha, uint32_t beta) [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3270 |
cls.add_method('GetInteger', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3271 |
'uint32_t', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3272 |
[param('uint32_t', 'alpha'), param('uint32_t', 'beta')]) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3273 |
## random-variable-stream.h (module 'core'): double ns3::GammaRandomVariable::GetValue() [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3274 |
cls.add_method('GetValue', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3275 |
'double', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3276 |
[], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3277 |
is_virtual=True) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3278 |
## random-variable-stream.h (module 'core'): uint32_t ns3::GammaRandomVariable::GetInteger() [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3279 |
cls.add_method('GetInteger', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3280 |
'uint32_t', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3281 |
[], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3282 |
is_virtual=True) |
8750 | 3283 |
return |
3284 |
||
3285 |
def register_Ns3GridBuildingAllocator_methods(root_module, cls): |
|
3286 |
## building-allocator.h (module 'buildings'): ns3::GridBuildingAllocator::GridBuildingAllocator(ns3::GridBuildingAllocator const & arg0) [copy constructor] |
|
3287 |
cls.add_constructor([param('ns3::GridBuildingAllocator const &', 'arg0')]) |
|
3288 |
## building-allocator.h (module 'buildings'): ns3::GridBuildingAllocator::GridBuildingAllocator() [constructor] |
|
3289 |
cls.add_constructor([]) |
|
3290 |
## building-allocator.h (module 'buildings'): ns3::BuildingContainer ns3::GridBuildingAllocator::Create(uint32_t n) const [member function] |
|
3291 |
cls.add_method('Create', |
|
3292 |
'ns3::BuildingContainer', |
|
3293 |
[param('uint32_t', 'n')], |
|
3294 |
is_const=True) |
|
3295 |
## building-allocator.h (module 'buildings'): static ns3::TypeId ns3::GridBuildingAllocator::GetTypeId() [member function] |
|
3296 |
cls.add_method('GetTypeId', |
|
3297 |
'ns3::TypeId', |
|
3298 |
[], |
|
3299 |
is_static=True) |
|
3300 |
## building-allocator.h (module 'buildings'): void ns3::GridBuildingAllocator::SetBuildingAttribute(std::string n, ns3::AttributeValue const & v) [member function] |
|
3301 |
cls.add_method('SetBuildingAttribute', |
|
3302 |
'void', |
|
3303 |
[param('std::string', 'n'), param('ns3::AttributeValue const &', 'v')]) |
|
3304 |
return |
|
3305 |
||
3306 |
def register_Ns3GridPositionAllocator_methods(root_module, cls): |
|
3307 |
## position-allocator.h (module 'mobility'): ns3::GridPositionAllocator::GridPositionAllocator(ns3::GridPositionAllocator const & arg0) [copy constructor] |
|
3308 |
cls.add_constructor([param('ns3::GridPositionAllocator const &', 'arg0')]) |
|
3309 |
## position-allocator.h (module 'mobility'): ns3::GridPositionAllocator::GridPositionAllocator() [constructor] |
|
3310 |
cls.add_constructor([]) |
|
8985
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3311 |
## position-allocator.h (module 'mobility'): int64_t ns3::GridPositionAllocator::AssignStreams(int64_t stream) [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3312 |
cls.add_method('AssignStreams', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3313 |
'int64_t', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3314 |
[param('int64_t', 'stream')], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3315 |
is_virtual=True) |
8750 | 3316 |
## position-allocator.h (module 'mobility'): double ns3::GridPositionAllocator::GetDeltaX() const [member function] |
3317 |
cls.add_method('GetDeltaX', |
|
3318 |
'double', |
|
3319 |
[], |
|
3320 |
is_const=True) |
|
3321 |
## position-allocator.h (module 'mobility'): double ns3::GridPositionAllocator::GetDeltaY() const [member function] |
|
3322 |
cls.add_method('GetDeltaY', |
|
3323 |
'double', |
|
3324 |
[], |
|
3325 |
is_const=True) |
|
3326 |
## position-allocator.h (module 'mobility'): ns3::GridPositionAllocator::LayoutType ns3::GridPositionAllocator::GetLayoutType() const [member function] |
|
3327 |
cls.add_method('GetLayoutType', |
|
3328 |
'ns3::GridPositionAllocator::LayoutType', |
|
3329 |
[], |
|
3330 |
is_const=True) |
|
3331 |
## position-allocator.h (module 'mobility'): double ns3::GridPositionAllocator::GetMinX() const [member function] |
|
3332 |
cls.add_method('GetMinX', |
|
3333 |
'double', |
|
3334 |
[], |
|
3335 |
is_const=True) |
|
3336 |
## position-allocator.h (module 'mobility'): double ns3::GridPositionAllocator::GetMinY() const [member function] |
|
3337 |
cls.add_method('GetMinY', |
|
3338 |
'double', |
|
3339 |
[], |
|
3340 |
is_const=True) |
|
3341 |
## position-allocator.h (module 'mobility'): uint32_t ns3::GridPositionAllocator::GetN() const [member function] |
|
3342 |
cls.add_method('GetN', |
|
3343 |
'uint32_t', |
|
3344 |
[], |
|
3345 |
is_const=True) |
|
3346 |
## position-allocator.h (module 'mobility'): ns3::Vector ns3::GridPositionAllocator::GetNext() const [member function] |
|
3347 |
cls.add_method('GetNext', |
|
3348 |
'ns3::Vector', |
|
3349 |
[], |
|
3350 |
is_const=True, is_virtual=True) |
|
3351 |
## position-allocator.h (module 'mobility'): static ns3::TypeId ns3::GridPositionAllocator::GetTypeId() [member function] |
|
3352 |
cls.add_method('GetTypeId', |
|
3353 |
'ns3::TypeId', |
|
3354 |
[], |
|
3355 |
is_static=True) |
|
3356 |
## position-allocator.h (module 'mobility'): void ns3::GridPositionAllocator::SetDeltaX(double deltaX) [member function] |
|
3357 |
cls.add_method('SetDeltaX', |
|
3358 |
'void', |
|
3359 |
[param('double', 'deltaX')]) |
|
3360 |
## position-allocator.h (module 'mobility'): void ns3::GridPositionAllocator::SetDeltaY(double deltaY) [member function] |
|
3361 |
cls.add_method('SetDeltaY', |
|
3362 |
'void', |
|
3363 |
[param('double', 'deltaY')]) |
|
3364 |
## position-allocator.h (module 'mobility'): void ns3::GridPositionAllocator::SetLayoutType(ns3::GridPositionAllocator::LayoutType layoutType) [member function] |
|
3365 |
cls.add_method('SetLayoutType', |
|
3366 |
'void', |
|
3367 |
[param('ns3::GridPositionAllocator::LayoutType', 'layoutType')]) |
|
3368 |
## position-allocator.h (module 'mobility'): void ns3::GridPositionAllocator::SetMinX(double xMin) [member function] |
|
3369 |
cls.add_method('SetMinX', |
|
3370 |
'void', |
|
3371 |
[param('double', 'xMin')]) |
|
3372 |
## position-allocator.h (module 'mobility'): void ns3::GridPositionAllocator::SetMinY(double yMin) [member function] |
|
3373 |
cls.add_method('SetMinY', |
|
3374 |
'void', |
|
3375 |
[param('double', 'yMin')]) |
|
3376 |
## position-allocator.h (module 'mobility'): void ns3::GridPositionAllocator::SetN(uint32_t n) [member function] |
|
3377 |
cls.add_method('SetN', |
|
3378 |
'void', |
|
3379 |
[param('uint32_t', 'n')]) |
|
3380 |
return |
|
3381 |
||
3382 |
def register_Ns3HybridBuildingsPropagationLossModel_methods(root_module, cls): |
|
3383 |
## hybrid-buildings-propagation-loss-model.h (module 'buildings'): static ns3::TypeId ns3::HybridBuildingsPropagationLossModel::GetTypeId() [member function] |
|
3384 |
cls.add_method('GetTypeId', |
|
3385 |
'ns3::TypeId', |
|
3386 |
[], |
|
3387 |
is_static=True) |
|
3388 |
## hybrid-buildings-propagation-loss-model.h (module 'buildings'): ns3::HybridBuildingsPropagationLossModel::HybridBuildingsPropagationLossModel() [constructor] |
|
3389 |
cls.add_constructor([]) |
|
3390 |
## hybrid-buildings-propagation-loss-model.h (module 'buildings'): void ns3::HybridBuildingsPropagationLossModel::SetEnvironment(ns3::EnvironmentType env) [member function] |
|
3391 |
cls.add_method('SetEnvironment', |
|
3392 |
'void', |
|
3393 |
[param('ns3::EnvironmentType', 'env')]) |
|
3394 |
## hybrid-buildings-propagation-loss-model.h (module 'buildings'): void ns3::HybridBuildingsPropagationLossModel::SetCitySize(ns3::CitySize size) [member function] |
|
3395 |
cls.add_method('SetCitySize', |
|
3396 |
'void', |
|
3397 |
[param('ns3::CitySize', 'size')]) |
|
3398 |
## hybrid-buildings-propagation-loss-model.h (module 'buildings'): void ns3::HybridBuildingsPropagationLossModel::SetFrequency(double freq) [member function] |
|
3399 |
cls.add_method('SetFrequency', |
|
3400 |
'void', |
|
3401 |
[param('double', 'freq')]) |
|
3402 |
## hybrid-buildings-propagation-loss-model.h (module 'buildings'): void ns3::HybridBuildingsPropagationLossModel::SetRooftopHeight(double rooftopHeight) [member function] |
|
3403 |
cls.add_method('SetRooftopHeight', |
|
3404 |
'void', |
|
3405 |
[param('double', 'rooftopHeight')]) |
|
3406 |
## hybrid-buildings-propagation-loss-model.h (module 'buildings'): double ns3::HybridBuildingsPropagationLossModel::GetLoss(ns3::Ptr<ns3::MobilityModel> a, ns3::Ptr<ns3::MobilityModel> b) const [member function] |
|
3407 |
cls.add_method('GetLoss', |
|
3408 |
'double', |
|
3409 |
[param('ns3::Ptr< ns3::MobilityModel >', 'a'), param('ns3::Ptr< ns3::MobilityModel >', 'b')], |
|
3410 |
is_const=True, is_virtual=True) |
|
3411 |
return |
|
3412 |
||
3413 |
def register_Ns3Ipv4AddressChecker_methods(root_module, cls): |
|
3414 |
## ipv4-address.h (module 'network'): ns3::Ipv4AddressChecker::Ipv4AddressChecker() [constructor] |
|
3415 |
cls.add_constructor([]) |
|
3416 |
## ipv4-address.h (module 'network'): ns3::Ipv4AddressChecker::Ipv4AddressChecker(ns3::Ipv4AddressChecker const & arg0) [copy constructor] |
|
3417 |
cls.add_constructor([param('ns3::Ipv4AddressChecker const &', 'arg0')]) |
|
3418 |
return |
|
3419 |
||
3420 |
def register_Ns3Ipv4AddressValue_methods(root_module, cls): |
|
3421 |
## ipv4-address.h (module 'network'): ns3::Ipv4AddressValue::Ipv4AddressValue() [constructor] |
|
3422 |
cls.add_constructor([]) |
|
3423 |
## ipv4-address.h (module 'network'): ns3::Ipv4AddressValue::Ipv4AddressValue(ns3::Ipv4AddressValue const & arg0) [copy constructor] |
|
3424 |
cls.add_constructor([param('ns3::Ipv4AddressValue const &', 'arg0')]) |
|
3425 |
## ipv4-address.h (module 'network'): ns3::Ipv4AddressValue::Ipv4AddressValue(ns3::Ipv4Address const & value) [constructor] |
|
3426 |
cls.add_constructor([param('ns3::Ipv4Address const &', 'value')]) |
|
3427 |
## ipv4-address.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::Ipv4AddressValue::Copy() const [member function] |
|
3428 |
cls.add_method('Copy', |
|
3429 |
'ns3::Ptr< ns3::AttributeValue >', |
|
3430 |
[], |
|
3431 |
is_const=True, is_virtual=True) |
|
3432 |
## ipv4-address.h (module 'network'): bool ns3::Ipv4AddressValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function] |
|
3433 |
cls.add_method('DeserializeFromString', |
|
3434 |
'bool', |
|
3435 |
[param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
|
3436 |
is_virtual=True) |
|
3437 |
## ipv4-address.h (module 'network'): ns3::Ipv4Address ns3::Ipv4AddressValue::Get() const [member function] |
|
3438 |
cls.add_method('Get', |
|
3439 |
'ns3::Ipv4Address', |
|
3440 |
[], |
|
3441 |
is_const=True) |
|
3442 |
## ipv4-address.h (module 'network'): std::string ns3::Ipv4AddressValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function] |
|
3443 |
cls.add_method('SerializeToString', |
|
3444 |
'std::string', |
|
3445 |
[param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
|
3446 |
is_const=True, is_virtual=True) |
|
3447 |
## ipv4-address.h (module 'network'): void ns3::Ipv4AddressValue::Set(ns3::Ipv4Address const & value) [member function] |
|
3448 |
cls.add_method('Set', |
|
3449 |
'void', |
|
3450 |
[param('ns3::Ipv4Address const &', 'value')]) |
|
3451 |
return |
|
3452 |
||
3453 |
def register_Ns3Ipv4MaskChecker_methods(root_module, cls): |
|
3454 |
## ipv4-address.h (module 'network'): ns3::Ipv4MaskChecker::Ipv4MaskChecker() [constructor] |
|
3455 |
cls.add_constructor([]) |
|
3456 |
## ipv4-address.h (module 'network'): ns3::Ipv4MaskChecker::Ipv4MaskChecker(ns3::Ipv4MaskChecker const & arg0) [copy constructor] |
|
3457 |
cls.add_constructor([param('ns3::Ipv4MaskChecker const &', 'arg0')]) |
|
3458 |
return |
|
3459 |
||
3460 |
def register_Ns3Ipv4MaskValue_methods(root_module, cls): |
|
3461 |
## ipv4-address.h (module 'network'): ns3::Ipv4MaskValue::Ipv4MaskValue() [constructor] |
|
3462 |
cls.add_constructor([]) |
|
3463 |
## ipv4-address.h (module 'network'): ns3::Ipv4MaskValue::Ipv4MaskValue(ns3::Ipv4MaskValue const & arg0) [copy constructor] |
|
3464 |
cls.add_constructor([param('ns3::Ipv4MaskValue const &', 'arg0')]) |
|
3465 |
## ipv4-address.h (module 'network'): ns3::Ipv4MaskValue::Ipv4MaskValue(ns3::Ipv4Mask const & value) [constructor] |
|
3466 |
cls.add_constructor([param('ns3::Ipv4Mask const &', 'value')]) |
|
3467 |
## ipv4-address.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::Ipv4MaskValue::Copy() const [member function] |
|
3468 |
cls.add_method('Copy', |
|
3469 |
'ns3::Ptr< ns3::AttributeValue >', |
|
3470 |
[], |
|
3471 |
is_const=True, is_virtual=True) |
|
3472 |
## ipv4-address.h (module 'network'): bool ns3::Ipv4MaskValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function] |
|
3473 |
cls.add_method('DeserializeFromString', |
|
3474 |
'bool', |
|
3475 |
[param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
|
3476 |
is_virtual=True) |
|
3477 |
## ipv4-address.h (module 'network'): ns3::Ipv4Mask ns3::Ipv4MaskValue::Get() const [member function] |
|
3478 |
cls.add_method('Get', |
|
3479 |
'ns3::Ipv4Mask', |
|
3480 |
[], |
|
3481 |
is_const=True) |
|
3482 |
## ipv4-address.h (module 'network'): std::string ns3::Ipv4MaskValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function] |
|
3483 |
cls.add_method('SerializeToString', |
|
3484 |
'std::string', |
|
3485 |
[param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
|
3486 |
is_const=True, is_virtual=True) |
|
3487 |
## ipv4-address.h (module 'network'): void ns3::Ipv4MaskValue::Set(ns3::Ipv4Mask const & value) [member function] |
|
3488 |
cls.add_method('Set', |
|
3489 |
'void', |
|
3490 |
[param('ns3::Ipv4Mask const &', 'value')]) |
|
3491 |
return |
|
3492 |
||
3493 |
def register_Ns3Ipv6AddressChecker_methods(root_module, cls): |
|
3494 |
## ipv6-address.h (module 'network'): ns3::Ipv6AddressChecker::Ipv6AddressChecker() [constructor] |
|
3495 |
cls.add_constructor([]) |
|
3496 |
## ipv6-address.h (module 'network'): ns3::Ipv6AddressChecker::Ipv6AddressChecker(ns3::Ipv6AddressChecker const & arg0) [copy constructor] |
|
3497 |
cls.add_constructor([param('ns3::Ipv6AddressChecker const &', 'arg0')]) |
|
3498 |
return |
|
3499 |
||
3500 |
def register_Ns3Ipv6AddressValue_methods(root_module, cls): |
|
3501 |
## ipv6-address.h (module 'network'): ns3::Ipv6AddressValue::Ipv6AddressValue() [constructor] |
|
3502 |
cls.add_constructor([]) |
|
3503 |
## ipv6-address.h (module 'network'): ns3::Ipv6AddressValue::Ipv6AddressValue(ns3::Ipv6AddressValue const & arg0) [copy constructor] |
|
3504 |
cls.add_constructor([param('ns3::Ipv6AddressValue const &', 'arg0')]) |
|
3505 |
## ipv6-address.h (module 'network'): ns3::Ipv6AddressValue::Ipv6AddressValue(ns3::Ipv6Address const & value) [constructor] |
|
3506 |
cls.add_constructor([param('ns3::Ipv6Address const &', 'value')]) |
|
3507 |
## ipv6-address.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::Ipv6AddressValue::Copy() const [member function] |
|
3508 |
cls.add_method('Copy', |
|
3509 |
'ns3::Ptr< ns3::AttributeValue >', |
|
3510 |
[], |
|
3511 |
is_const=True, is_virtual=True) |
|
3512 |
## ipv6-address.h (module 'network'): bool ns3::Ipv6AddressValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function] |
|
3513 |
cls.add_method('DeserializeFromString', |
|
3514 |
'bool', |
|
3515 |
[param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
|
3516 |
is_virtual=True) |
|
3517 |
## ipv6-address.h (module 'network'): ns3::Ipv6Address ns3::Ipv6AddressValue::Get() const [member function] |
|
3518 |
cls.add_method('Get', |
|
3519 |
'ns3::Ipv6Address', |
|
3520 |
[], |
|
3521 |
is_const=True) |
|
3522 |
## ipv6-address.h (module 'network'): std::string ns3::Ipv6AddressValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function] |
|
3523 |
cls.add_method('SerializeToString', |
|
3524 |
'std::string', |
|
3525 |
[param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
|
3526 |
is_const=True, is_virtual=True) |
|
3527 |
## ipv6-address.h (module 'network'): void ns3::Ipv6AddressValue::Set(ns3::Ipv6Address const & value) [member function] |
|
3528 |
cls.add_method('Set', |
|
3529 |
'void', |
|
3530 |
[param('ns3::Ipv6Address const &', 'value')]) |
|
3531 |
return |
|
3532 |
||
3533 |
def register_Ns3Ipv6PrefixChecker_methods(root_module, cls): |
|
3534 |
## ipv6-address.h (module 'network'): ns3::Ipv6PrefixChecker::Ipv6PrefixChecker() [constructor] |
|
3535 |
cls.add_constructor([]) |
|
3536 |
## ipv6-address.h (module 'network'): ns3::Ipv6PrefixChecker::Ipv6PrefixChecker(ns3::Ipv6PrefixChecker const & arg0) [copy constructor] |
|
3537 |
cls.add_constructor([param('ns3::Ipv6PrefixChecker const &', 'arg0')]) |
|
3538 |
return |
|
3539 |
||
3540 |
def register_Ns3Ipv6PrefixValue_methods(root_module, cls): |
|
3541 |
## ipv6-address.h (module 'network'): ns3::Ipv6PrefixValue::Ipv6PrefixValue() [constructor] |
|
3542 |
cls.add_constructor([]) |
|
3543 |
## ipv6-address.h (module 'network'): ns3::Ipv6PrefixValue::Ipv6PrefixValue(ns3::Ipv6PrefixValue const & arg0) [copy constructor] |
|
3544 |
cls.add_constructor([param('ns3::Ipv6PrefixValue const &', 'arg0')]) |
|
3545 |
## ipv6-address.h (module 'network'): ns3::Ipv6PrefixValue::Ipv6PrefixValue(ns3::Ipv6Prefix const & value) [constructor] |
|
3546 |
cls.add_constructor([param('ns3::Ipv6Prefix const &', 'value')]) |
|
3547 |
## ipv6-address.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::Ipv6PrefixValue::Copy() const [member function] |
|
3548 |
cls.add_method('Copy', |
|
3549 |
'ns3::Ptr< ns3::AttributeValue >', |
|
3550 |
[], |
|
3551 |
is_const=True, is_virtual=True) |
|
3552 |
## ipv6-address.h (module 'network'): bool ns3::Ipv6PrefixValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function] |
|
3553 |
cls.add_method('DeserializeFromString', |
|
3554 |
'bool', |
|
3555 |
[param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
|
3556 |
is_virtual=True) |
|
3557 |
## ipv6-address.h (module 'network'): ns3::Ipv6Prefix ns3::Ipv6PrefixValue::Get() const [member function] |
|
3558 |
cls.add_method('Get', |
|
3559 |
'ns3::Ipv6Prefix', |
|
3560 |
[], |
|
3561 |
is_const=True) |
|
3562 |
## ipv6-address.h (module 'network'): std::string ns3::Ipv6PrefixValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function] |
|
3563 |
cls.add_method('SerializeToString', |
|
3564 |
'std::string', |
|
3565 |
[param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
|
3566 |
is_const=True, is_virtual=True) |
|
3567 |
## ipv6-address.h (module 'network'): void ns3::Ipv6PrefixValue::Set(ns3::Ipv6Prefix const & value) [member function] |
|
3568 |
cls.add_method('Set', |
|
3569 |
'void', |
|
3570 |
[param('ns3::Ipv6Prefix const &', 'value')]) |
|
3571 |
return |
|
3572 |
||
3573 |
def register_Ns3ItuR1238PropagationLossModel_methods(root_module, cls): |
|
3574 |
## itu-r-1238-propagation-loss-model.h (module 'buildings'): ns3::ItuR1238PropagationLossModel::ItuR1238PropagationLossModel() [constructor] |
|
3575 |
cls.add_constructor([]) |
|
3576 |
## itu-r-1238-propagation-loss-model.h (module 'buildings'): static ns3::TypeId ns3::ItuR1238PropagationLossModel::GetTypeId() [member function] |
|
3577 |
cls.add_method('GetTypeId', |
|
3578 |
'ns3::TypeId', |
|
3579 |
[], |
|
3580 |
is_static=True) |
|
3581 |
## itu-r-1238-propagation-loss-model.h (module 'buildings'): double ns3::ItuR1238PropagationLossModel::GetLoss(ns3::Ptr<ns3::MobilityModel> a, ns3::Ptr<ns3::MobilityModel> b) const [member function] |
|
3582 |
cls.add_method('GetLoss', |
|
3583 |
'double', |
|
3584 |
[param('ns3::Ptr< ns3::MobilityModel >', 'a'), param('ns3::Ptr< ns3::MobilityModel >', 'b')], |
|
3585 |
is_const=True) |
|
3586 |
## itu-r-1238-propagation-loss-model.h (module 'buildings'): double ns3::ItuR1238PropagationLossModel::DoCalcRxPower(double txPowerDbm, ns3::Ptr<ns3::MobilityModel> a, ns3::Ptr<ns3::MobilityModel> b) const [member function] |
|
3587 |
cls.add_method('DoCalcRxPower', |
|
3588 |
'double', |
|
3589 |
[param('double', 'txPowerDbm'), param('ns3::Ptr< ns3::MobilityModel >', 'a'), param('ns3::Ptr< ns3::MobilityModel >', 'b')], |
|
3590 |
is_const=True, visibility='private', is_virtual=True) |
|
8985
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3591 |
## itu-r-1238-propagation-loss-model.h (module 'buildings'): int64_t ns3::ItuR1238PropagationLossModel::DoAssignStreams(int64_t stream) [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3592 |
cls.add_method('DoAssignStreams', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3593 |
'int64_t', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3594 |
[param('int64_t', 'stream')], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3595 |
visibility='private', is_virtual=True) |
8750 | 3596 |
return |
3597 |
||
3598 |
def register_Ns3ListPositionAllocator_methods(root_module, cls): |
|
3599 |
## position-allocator.h (module 'mobility'): ns3::ListPositionAllocator::ListPositionAllocator(ns3::ListPositionAllocator const & arg0) [copy constructor] |
|
3600 |
cls.add_constructor([param('ns3::ListPositionAllocator const &', 'arg0')]) |
|
3601 |
## position-allocator.h (module 'mobility'): ns3::ListPositionAllocator::ListPositionAllocator() [constructor] |
|
3602 |
cls.add_constructor([]) |
|
3603 |
## position-allocator.h (module 'mobility'): void ns3::ListPositionAllocator::Add(ns3::Vector v) [member function] |
|
3604 |
cls.add_method('Add', |
|
3605 |
'void', |
|
3606 |
[param('ns3::Vector', 'v')]) |
|
8985
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3607 |
## position-allocator.h (module 'mobility'): int64_t ns3::ListPositionAllocator::AssignStreams(int64_t stream) [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3608 |
cls.add_method('AssignStreams', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3609 |
'int64_t', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3610 |
[param('int64_t', 'stream')], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3611 |
is_virtual=True) |
8750 | 3612 |
## position-allocator.h (module 'mobility'): ns3::Vector ns3::ListPositionAllocator::GetNext() const [member function] |
3613 |
cls.add_method('GetNext', |
|
3614 |
'ns3::Vector', |
|
3615 |
[], |
|
3616 |
is_const=True, is_virtual=True) |
|
3617 |
## position-allocator.h (module 'mobility'): static ns3::TypeId ns3::ListPositionAllocator::GetTypeId() [member function] |
|
3618 |
cls.add_method('GetTypeId', |
|
3619 |
'ns3::TypeId', |
|
3620 |
[], |
|
3621 |
is_static=True) |
|
3622 |
return |
|
3623 |
||
3624 |
def register_Ns3LogDistancePropagationLossModel_methods(root_module, cls): |
|
3625 |
## propagation-loss-model.h (module 'propagation'): static ns3::TypeId ns3::LogDistancePropagationLossModel::GetTypeId() [member function] |
|
3626 |
cls.add_method('GetTypeId', |
|
3627 |
'ns3::TypeId', |
|
3628 |
[], |
|
3629 |
is_static=True) |
|
3630 |
## propagation-loss-model.h (module 'propagation'): ns3::LogDistancePropagationLossModel::LogDistancePropagationLossModel() [constructor] |
|
3631 |
cls.add_constructor([]) |
|
3632 |
## propagation-loss-model.h (module 'propagation'): void ns3::LogDistancePropagationLossModel::SetPathLossExponent(double n) [member function] |
|
3633 |
cls.add_method('SetPathLossExponent', |
|
3634 |
'void', |
|
3635 |
[param('double', 'n')]) |
|
3636 |
## propagation-loss-model.h (module 'propagation'): double ns3::LogDistancePropagationLossModel::GetPathLossExponent() const [member function] |
|
3637 |
cls.add_method('GetPathLossExponent', |
|
3638 |
'double', |
|
3639 |
[], |
|
3640 |
is_const=True) |
|
3641 |
## propagation-loss-model.h (module 'propagation'): void ns3::LogDistancePropagationLossModel::SetReference(double referenceDistance, double referenceLoss) [member function] |
|
3642 |
cls.add_method('SetReference', |
|
3643 |
'void', |
|
3644 |
[param('double', 'referenceDistance'), param('double', 'referenceLoss')]) |
|
3645 |
## propagation-loss-model.h (module 'propagation'): double ns3::LogDistancePropagationLossModel::DoCalcRxPower(double txPowerDbm, ns3::Ptr<ns3::MobilityModel> a, ns3::Ptr<ns3::MobilityModel> b) const [member function] |
|
3646 |
cls.add_method('DoCalcRxPower', |
|
3647 |
'double', |
|
3648 |
[param('double', 'txPowerDbm'), param('ns3::Ptr< ns3::MobilityModel >', 'a'), param('ns3::Ptr< ns3::MobilityModel >', 'b')], |
|
3649 |
is_const=True, visibility='private', is_virtual=True) |
|
8985
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3650 |
## propagation-loss-model.h (module 'propagation'): int64_t ns3::LogDistancePropagationLossModel::DoAssignStreams(int64_t stream) [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3651 |
cls.add_method('DoAssignStreams', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3652 |
'int64_t', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3653 |
[param('int64_t', 'stream')], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3654 |
visibility='private', is_virtual=True) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3655 |
return |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3656 |
|
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3657 |
def register_Ns3LogNormalRandomVariable_methods(root_module, cls): |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3658 |
## random-variable-stream.h (module 'core'): static ns3::TypeId ns3::LogNormalRandomVariable::GetTypeId() [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3659 |
cls.add_method('GetTypeId', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3660 |
'ns3::TypeId', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3661 |
[], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3662 |
is_static=True) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3663 |
## random-variable-stream.h (module 'core'): ns3::LogNormalRandomVariable::LogNormalRandomVariable() [constructor] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3664 |
cls.add_constructor([]) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3665 |
## random-variable-stream.h (module 'core'): double ns3::LogNormalRandomVariable::GetMu() const [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3666 |
cls.add_method('GetMu', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3667 |
'double', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3668 |
[], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3669 |
is_const=True) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3670 |
## random-variable-stream.h (module 'core'): double ns3::LogNormalRandomVariable::GetSigma() const [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3671 |
cls.add_method('GetSigma', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3672 |
'double', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3673 |
[], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3674 |
is_const=True) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3675 |
## random-variable-stream.h (module 'core'): double ns3::LogNormalRandomVariable::GetValue(double mu, double sigma) [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3676 |
cls.add_method('GetValue', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3677 |
'double', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3678 |
[param('double', 'mu'), param('double', 'sigma')]) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3679 |
## random-variable-stream.h (module 'core'): uint32_t ns3::LogNormalRandomVariable::GetInteger(uint32_t mu, uint32_t sigma) [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3680 |
cls.add_method('GetInteger', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3681 |
'uint32_t', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3682 |
[param('uint32_t', 'mu'), param('uint32_t', 'sigma')]) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3683 |
## random-variable-stream.h (module 'core'): double ns3::LogNormalRandomVariable::GetValue() [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3684 |
cls.add_method('GetValue', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3685 |
'double', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3686 |
[], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3687 |
is_virtual=True) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3688 |
## random-variable-stream.h (module 'core'): uint32_t ns3::LogNormalRandomVariable::GetInteger() [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3689 |
cls.add_method('GetInteger', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3690 |
'uint32_t', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3691 |
[], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3692 |
is_virtual=True) |
8750 | 3693 |
return |
3694 |
||
3695 |
def register_Ns3MatrixPropagationLossModel_methods(root_module, cls): |
|
3696 |
## propagation-loss-model.h (module 'propagation'): static ns3::TypeId ns3::MatrixPropagationLossModel::GetTypeId() [member function] |
|
3697 |
cls.add_method('GetTypeId', |
|
3698 |
'ns3::TypeId', |
|
3699 |
[], |
|
3700 |
is_static=True) |
|
3701 |
## propagation-loss-model.h (module 'propagation'): ns3::MatrixPropagationLossModel::MatrixPropagationLossModel() [constructor] |
|
3702 |
cls.add_constructor([]) |
|
3703 |
## propagation-loss-model.h (module 'propagation'): void ns3::MatrixPropagationLossModel::SetLoss(ns3::Ptr<ns3::MobilityModel> a, ns3::Ptr<ns3::MobilityModel> b, double loss, bool symmetric=true) [member function] |
|
3704 |
cls.add_method('SetLoss', |
|
3705 |
'void', |
|
3706 |
[param('ns3::Ptr< ns3::MobilityModel >', 'a'), param('ns3::Ptr< ns3::MobilityModel >', 'b'), param('double', 'loss'), param('bool', 'symmetric', default_value='true')]) |
|
3707 |
## propagation-loss-model.h (module 'propagation'): void ns3::MatrixPropagationLossModel::SetDefaultLoss(double arg0) [member function] |
|
3708 |
cls.add_method('SetDefaultLoss', |
|
3709 |
'void', |
|
3710 |
[param('double', 'arg0')]) |
|
3711 |
## propagation-loss-model.h (module 'propagation'): double ns3::MatrixPropagationLossModel::DoCalcRxPower(double txPowerDbm, ns3::Ptr<ns3::MobilityModel> a, ns3::Ptr<ns3::MobilityModel> b) const [member function] |
|
3712 |
cls.add_method('DoCalcRxPower', |
|
3713 |
'double', |
|
3714 |
[param('double', 'txPowerDbm'), param('ns3::Ptr< ns3::MobilityModel >', 'a'), param('ns3::Ptr< ns3::MobilityModel >', 'b')], |
|
3715 |
is_const=True, visibility='private', is_virtual=True) |
|
8985
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3716 |
## propagation-loss-model.h (module 'propagation'): int64_t ns3::MatrixPropagationLossModel::DoAssignStreams(int64_t stream) [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3717 |
cls.add_method('DoAssignStreams', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3718 |
'int64_t', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3719 |
[param('int64_t', 'stream')], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3720 |
visibility='private', is_virtual=True) |
8750 | 3721 |
return |
3722 |
||
3723 |
def register_Ns3MobilityModel_methods(root_module, cls): |
|
3724 |
## mobility-model.h (module 'mobility'): ns3::MobilityModel::MobilityModel(ns3::MobilityModel const & arg0) [copy constructor] |
|
3725 |
cls.add_constructor([param('ns3::MobilityModel const &', 'arg0')]) |
|
3726 |
## mobility-model.h (module 'mobility'): ns3::MobilityModel::MobilityModel() [constructor] |
|
3727 |
cls.add_constructor([]) |
|
8985
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3728 |
## mobility-model.h (module 'mobility'): int64_t ns3::MobilityModel::AssignStreams(int64_t stream) [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3729 |
cls.add_method('AssignStreams', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3730 |
'int64_t', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3731 |
[param('int64_t', 'stream')]) |
8750 | 3732 |
## mobility-model.h (module 'mobility'): double ns3::MobilityModel::GetDistanceFrom(ns3::Ptr<const ns3::MobilityModel> position) const [member function] |
3733 |
cls.add_method('GetDistanceFrom', |
|
3734 |
'double', |
|
3735 |
[param('ns3::Ptr< ns3::MobilityModel const >', 'position')], |
|
3736 |
is_const=True) |
|
3737 |
## mobility-model.h (module 'mobility'): ns3::Vector ns3::MobilityModel::GetPosition() const [member function] |
|
3738 |
cls.add_method('GetPosition', |
|
3739 |
'ns3::Vector', |
|
3740 |
[], |
|
3741 |
is_const=True) |
|
3742 |
## mobility-model.h (module 'mobility'): double ns3::MobilityModel::GetRelativeSpeed(ns3::Ptr<const ns3::MobilityModel> other) const [member function] |
|
3743 |
cls.add_method('GetRelativeSpeed', |
|
3744 |
'double', |
|
3745 |
[param('ns3::Ptr< ns3::MobilityModel const >', 'other')], |
|
3746 |
is_const=True) |
|
3747 |
## mobility-model.h (module 'mobility'): static ns3::TypeId ns3::MobilityModel::GetTypeId() [member function] |
|
3748 |
cls.add_method('GetTypeId', |
|
3749 |
'ns3::TypeId', |
|
3750 |
[], |
|
3751 |
is_static=True) |
|
3752 |
## mobility-model.h (module 'mobility'): ns3::Vector ns3::MobilityModel::GetVelocity() const [member function] |
|
3753 |
cls.add_method('GetVelocity', |
|
3754 |
'ns3::Vector', |
|
3755 |
[], |
|
3756 |
is_const=True) |
|
3757 |
## mobility-model.h (module 'mobility'): void ns3::MobilityModel::SetPosition(ns3::Vector const & position) [member function] |
|
3758 |
cls.add_method('SetPosition', |
|
3759 |
'void', |
|
3760 |
[param('ns3::Vector const &', 'position')]) |
|
3761 |
## mobility-model.h (module 'mobility'): void ns3::MobilityModel::NotifyCourseChange() const [member function] |
|
3762 |
cls.add_method('NotifyCourseChange', |
|
3763 |
'void', |
|
3764 |
[], |
|
3765 |
is_const=True, visibility='protected') |
|
8985
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3766 |
## mobility-model.h (module 'mobility'): int64_t ns3::MobilityModel::DoAssignStreams(int64_t start) [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3767 |
cls.add_method('DoAssignStreams', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3768 |
'int64_t', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3769 |
[param('int64_t', 'start')], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3770 |
visibility='private', is_virtual=True) |
8750 | 3771 |
## mobility-model.h (module 'mobility'): ns3::Vector ns3::MobilityModel::DoGetPosition() const [member function] |
3772 |
cls.add_method('DoGetPosition', |
|
3773 |
'ns3::Vector', |
|
3774 |
[], |
|
3775 |
is_pure_virtual=True, is_const=True, visibility='private', is_virtual=True) |
|
3776 |
## mobility-model.h (module 'mobility'): ns3::Vector ns3::MobilityModel::DoGetVelocity() const [member function] |
|
3777 |
cls.add_method('DoGetVelocity', |
|
3778 |
'ns3::Vector', |
|
3779 |
[], |
|
3780 |
is_pure_virtual=True, is_const=True, visibility='private', is_virtual=True) |
|
3781 |
## mobility-model.h (module 'mobility'): void ns3::MobilityModel::DoSetPosition(ns3::Vector const & position) [member function] |
|
3782 |
cls.add_method('DoSetPosition', |
|
3783 |
'void', |
|
3784 |
[param('ns3::Vector const &', 'position')], |
|
3785 |
is_pure_virtual=True, visibility='private', is_virtual=True) |
|
3786 |
return |
|
3787 |
||
3788 |
def register_Ns3NakagamiPropagationLossModel_methods(root_module, cls): |
|
3789 |
## propagation-loss-model.h (module 'propagation'): static ns3::TypeId ns3::NakagamiPropagationLossModel::GetTypeId() [member function] |
|
3790 |
cls.add_method('GetTypeId', |
|
3791 |
'ns3::TypeId', |
|
3792 |
[], |
|
3793 |
is_static=True) |
|
3794 |
## propagation-loss-model.h (module 'propagation'): ns3::NakagamiPropagationLossModel::NakagamiPropagationLossModel() [constructor] |
|
3795 |
cls.add_constructor([]) |
|
3796 |
## propagation-loss-model.h (module 'propagation'): double ns3::NakagamiPropagationLossModel::DoCalcRxPower(double txPowerDbm, ns3::Ptr<ns3::MobilityModel> a, ns3::Ptr<ns3::MobilityModel> b) const [member function] |
|
3797 |
cls.add_method('DoCalcRxPower', |
|
3798 |
'double', |
|
3799 |
[param('double', 'txPowerDbm'), param('ns3::Ptr< ns3::MobilityModel >', 'a'), param('ns3::Ptr< ns3::MobilityModel >', 'b')], |
|
3800 |
is_const=True, visibility='private', is_virtual=True) |
|
8985
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3801 |
## propagation-loss-model.h (module 'propagation'): int64_t ns3::NakagamiPropagationLossModel::DoAssignStreams(int64_t stream) [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3802 |
cls.add_method('DoAssignStreams', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3803 |
'int64_t', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3804 |
[param('int64_t', 'stream')], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
3805 |
visibility='private', is_virtual=True) |
8750 | 3806 |
return |
3807 |
||
3808 |
def register_Ns3NetDevice_methods(root_module, cls): |
|
3809 |
## net-device.h (module 'network'): ns3::NetDevice::NetDevice() [constructor] |
|
3810 |
cls.add_constructor([]) |
|
3811 |
## net-device.h (module 'network'): ns3::NetDevice::NetDevice(ns3::NetDevice const & arg0) [copy constructor] |
|
3812 |
cls.add_constructor([param('ns3::NetDevice const &', 'arg0')]) |
|
3813 |
## net-device.h (module 'network'): void ns3::NetDevice::AddLinkChangeCallback(ns3::Callback<void,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty> callback) [member function] |
|
3814 |
cls.add_method('AddLinkChangeCallback', |
|
3815 |
'void', |
|
3816 |
[param('ns3::Callback< void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'callback')], |
|
3817 |
is_pure_virtual=True, is_virtual=True) |
|
3818 |
## net-device.h (module 'network'): ns3::Address ns3::NetDevice::GetAddress() const [member function] |
|
3819 |
cls.add_method('GetAddress', |
|
3820 |
'ns3::Address', |
|
3821 |
[], |
|
3822 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
|
3823 |
## net-device.h (module 'network'): ns3::Address ns3::NetDevice::GetBroadcast() const [member function] |
|
3824 |
cls.add_method('GetBroadcast', |
|
3825 |
'ns3::Address', |
|
3826 |
[], |
|
3827 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
|
3828 |
## net-device.h (module 'network'): ns3::Ptr<ns3::Channel> ns3::NetDevice::GetChannel() const [member function] |
|
3829 |
cls.add_method('GetChannel', |
|
3830 |
'ns3::Ptr< ns3::Channel >', |
|
3831 |
[], |
|
3832 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
|
3833 |
## net-device.h (module 'network'): uint32_t ns3::NetDevice::GetIfIndex() const [member function] |
|
3834 |
cls.add_method('GetIfIndex', |
|
3835 |
'uint32_t', |
|
3836 |
[], |
|
3837 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
|
3838 |
## net-device.h (module 'network'): uint16_t ns3::NetDevice::GetMtu() const [member function] |
|
3839 |
cls.add_method('GetMtu', |
|
3840 |
'uint16_t', |
|
3841 |
[], |
|
3842 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
|
3843 |
## net-device.h (module 'network'): ns3::Address ns3::NetDevice::GetMulticast(ns3::Ipv4Address multicastGroup) const [member function] |
|
3844 |
cls.add_method('GetMulticast', |
|
3845 |
'ns3::Address', |
|
3846 |
[param('ns3::Ipv4Address', 'multicastGroup')], |
|
3847 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
|
3848 |
## net-device.h (module 'network'): ns3::Address ns3::NetDevice::GetMulticast(ns3::Ipv6Address addr) const [member function] |
|
3849 |
cls.add_method('GetMulticast', |
|
3850 |
'ns3::Address', |
|
3851 |
[param('ns3::Ipv6Address', 'addr')], |
|
3852 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
|
3853 |
## net-device.h (module 'network'): ns3::Ptr<ns3::Node> ns3::NetDevice::GetNode() const [member function] |
|
3854 |
cls.add_method('GetNode', |
|
3855 |
'ns3::Ptr< ns3::Node >', |
|
3856 |
[], |
|
3857 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
|
3858 |
## net-device.h (module 'network'): static ns3::TypeId ns3::NetDevice::GetTypeId() [member function] |
|
3859 |
cls.add_method('GetTypeId', |
|
3860 |
'ns3::TypeId', |
|
3861 |
[], |
|
3862 |
is_static=True) |
|
3863 |
## net-device.h (module 'network'): bool ns3::NetDevice::IsBridge() const [member function] |
|
3864 |
cls.add_method('IsBridge', |
|
3865 |
'bool', |
|
3866 |
[], |
|
3867 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
|
3868 |
## net-device.h (module 'network'): bool ns3::NetDevice::IsBroadcast() const [member function] |
|
3869 |
cls.add_method('IsBroadcast', |
|
3870 |
'bool', |
|
3871 |
[], |
|
3872 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
|
3873 |
## net-device.h (module 'network'): bool ns3::NetDevice::IsLinkUp() const [member function] |
|
3874 |
cls.add_method('IsLinkUp', |
|
3875 |
'bool', |
|
3876 |
[], |
|
3877 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
|
3878 |
## net-device.h (module 'network'): bool ns3::NetDevice::IsMulticast() const [member function] |
|
3879 |
cls.add_method('IsMulticast', |
|
3880 |
'bool', |
|
3881 |
[], |
|
3882 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
|
3883 |
## net-device.h (module 'network'): bool ns3::NetDevice::IsPointToPoint() const [member function] |
|
3884 |
cls.add_method('IsPointToPoint', |
|
3885 |
'bool', |
|
3886 |
[], |
|
3887 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
|
3888 |
## net-device.h (module 'network'): bool ns3::NetDevice::NeedsArp() const [member function] |
|
3889 |
cls.add_method('NeedsArp', |
|
3890 |
'bool', |
|
3891 |
[], |
|
3892 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
|
3893 |
## net-device.h (module 'network'): bool ns3::NetDevice::Send(ns3::Ptr<ns3::Packet> packet, ns3::Address const & dest, uint16_t protocolNumber) [member function] |
|
3894 |
cls.add_method('Send', |
|
3895 |
'bool', |
|
3896 |
[param('ns3::Ptr< ns3::Packet >', 'packet'), param('ns3::Address const &', 'dest'), param('uint16_t', 'protocolNumber')], |
|
3897 |
is_pure_virtual=True, is_virtual=True) |
|
3898 |
## net-device.h (module 'network'): bool ns3::NetDevice::SendFrom(ns3::Ptr<ns3::Packet> packet, ns3::Address const & source, ns3::Address const & dest, uint16_t protocolNumber) [member function] |
|
3899 |
cls.add_method('SendFrom', |
|
3900 |
'bool', |
|
3901 |
[param('ns3::Ptr< ns3::Packet >', 'packet'), param('ns3::Address const &', 'source'), param('ns3::Address const &', 'dest'), param('uint16_t', 'protocolNumber')], |
|
3902 |
is_pure_virtual=True, is_virtual=True) |
|
3903 |
## net-device.h (module 'network'): void ns3::NetDevice::SetAddress(ns3::Address address) [member function] |
|
3904 |
cls.add_method('SetAddress', |
|
3905 |
'void', |
|
3906 |
[param('ns3::Address', 'address')], |
|
3907 |
is_pure_virtual=True, is_virtual=True) |
|
3908 |
## net-device.h (module 'network'): void ns3::NetDevice::SetIfIndex(uint32_t const index) [member function] |
|
3909 |
cls.add_method('SetIfIndex', |
|
3910 |
'void', |
|
3911 |
[param('uint32_t const', 'index')], |
|
3912 |
is_pure_virtual=True, is_virtual=True) |
|
3913 |
## net-device.h (module 'network'): bool ns3::NetDevice::SetMtu(uint16_t const mtu) [member function] |
|
3914 |
cls.add_method('SetMtu', |
|
3915 |
'bool', |
|
3916 |
[param('uint16_t const', 'mtu')], |
|
3917 |
is_pure_virtual=True, is_virtual=True) |
|
3918 |
## net-device.h (module 'network'): void ns3::NetDevice::SetNode(ns3::Ptr<ns3::Node> node) [member function] |
|
3919 |
cls.add_method('SetNode', |
|
3920 |
'void', |
|
3921 |
[param('ns3::Ptr< ns3::Node >', 'node')], |
|
3922 |
is_pure_virtual=True, is_virtual=True) |
|
3923 |
## net-device.h (module 'network'): void ns3::NetDevice::SetPromiscReceiveCallback(ns3::Callback<bool,ns3::Ptr<ns3::NetDevice>,ns3::Ptr<const ns3::Packet>,short unsigned int,const ns3::Address&,const ns3::Address&,ns3::NetDevice::PacketType,ns3::empty,ns3::empty,ns3::empty> cb) [member function] |
|
3924 |
cls.add_method('SetPromiscReceiveCallback', |
|
3925 |
'void', |
|
3926 |
[param('ns3::Callback< bool, ns3::Ptr< ns3::NetDevice >, ns3::Ptr< ns3::Packet const >, short unsigned int, ns3::Address const &, ns3::Address const &, ns3::NetDevice::PacketType, ns3::empty, ns3::empty, ns3::empty >', 'cb')], |
|
3927 |
is_pure_virtual=True, is_virtual=True) |
|
3928 |
## net-device.h (module 'network'): void ns3::NetDevice::SetReceiveCallback(ns3::Callback<bool,ns3::Ptr<ns3::NetDevice>,ns3::Ptr<const ns3::Packet>,short unsigned int,const ns3::Address&,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty> cb) [member function] |
|
3929 |
cls.add_method('SetReceiveCallback', |
|
3930 |
'void', |
|
3931 |
[param('ns3::Callback< bool, ns3::Ptr< ns3::NetDevice >, ns3::Ptr< ns3::Packet const >, short unsigned int, ns3::Address const &, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'cb')], |
|
3932 |
is_pure_virtual=True, is_virtual=True) |
|
3933 |
## net-device.h (module 'network'): bool ns3::NetDevice::SupportsSendFrom() const [member function] |
|
3934 |
cls.add_method('SupportsSendFrom', |
|
3935 |
'bool', |
|
3936 |
[], |
|
3937 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
|
3938 |
return |
|
3939 |
||
3940 |
def register_Ns3Node_methods(root_module, cls): |
|
3941 |
## node.h (module 'network'): ns3::Node::Node(ns3::Node const & arg0) [copy constructor] |
|
3942 |
cls.add_constructor([param('ns3::Node const &', 'arg0')]) |
|
3943 |
## node.h (module 'network'): ns3::Node::Node() [constructor] |
|
3944 |
cls.add_constructor([]) |
|
3945 |
## node.h (module 'network'): ns3::Node::Node(uint32_t systemId) [constructor] |
|
3946 |
cls.add_constructor([param('uint32_t', 'systemId')]) |
|
3947 |
## node.h (module 'network'): uint32_t ns3::Node::AddApplication(ns3::Ptr<ns3::Application> application) [member function] |
|
3948 |
cls.add_method('AddApplication', |
|
3949 |
'uint32_t', |
|
3950 |
[param('ns3::Ptr< ns3::Application >', 'application')]) |
|
3951 |
## node.h (module 'network'): uint32_t ns3::Node::AddDevice(ns3::Ptr<ns3::NetDevice> device) [member function] |
|
3952 |
cls.add_method('AddDevice', |
|
3953 |
'uint32_t', |
|
3954 |
[param('ns3::Ptr< ns3::NetDevice >', 'device')]) |
|
3955 |
## node.h (module 'network'): static bool ns3::Node::ChecksumEnabled() [member function] |
|
3956 |
cls.add_method('ChecksumEnabled', |
|
3957 |
'bool', |
|
3958 |
[], |
|
3959 |
is_static=True) |
|
3960 |
## node.h (module 'network'): ns3::Ptr<ns3::Application> ns3::Node::GetApplication(uint32_t index) const [member function] |
|
3961 |
cls.add_method('GetApplication', |
|
3962 |
'ns3::Ptr< ns3::Application >', |
|
3963 |
[param('uint32_t', 'index')], |
|
3964 |
is_const=True) |
|
3965 |
## node.h (module 'network'): ns3::Ptr<ns3::NetDevice> ns3::Node::GetDevice(uint32_t index) const [member function] |
|
3966 |
cls.add_method('GetDevice', |
|
3967 |
'ns3::Ptr< ns3::NetDevice >', |
|
3968 |
[param('uint32_t', 'index')], |
|
3969 |
is_const=True) |
|
3970 |
## node.h (module 'network'): uint32_t ns3::Node::GetId() const [member function] |
|
3971 |
cls.add_method('GetId', |
|
3972 |
'uint32_t', |
|
3973 |
[], |
|
3974 |
is_const=True) |
|
3975 |
## node.h (module 'network'): uint32_t ns3::Node::GetNApplications() const [member function] |
|
3976 |
cls.add_method('GetNApplications', |
|
3977 |
'uint32_t', |
|
3978 |
[], |
|
3979 |
is_const=True) |
|
3980 |
## node.h (module 'network'): uint32_t ns3::Node::GetNDevices() const [member function] |
|
3981 |
cls.add_method('GetNDevices', |
|
3982 |
'uint32_t', |
|
3983 |
[], |
|
3984 |
is_const=True) |
|
3985 |
## node.h (module 'network'): uint32_t ns3::Node::GetSystemId() const [member function] |
|
3986 |
cls.add_method('GetSystemId', |
|
3987 |
'uint32_t', |
|
3988 |
[], |
|
3989 |
is_const=True) |
|
3990 |
## node.h (module 'network'): static ns3::TypeId ns3::Node::GetTypeId() [member function] |
|
3991 |
cls.add_method('GetTypeId', |
|
3992 |
'ns3::TypeId', |
|
3993 |
[], |
|
3994 |
is_static=True) |
|
3995 |
## node.h (module 'network'): void ns3::Node::RegisterDeviceAdditionListener(ns3::Callback<void,ns3::Ptr<ns3::NetDevice>,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty> listener) [member function] |
|
3996 |
cls.add_method('RegisterDeviceAdditionListener', |
|
3997 |
'void', |
|
3998 |
[param('ns3::Callback< void, ns3::Ptr< ns3::NetDevice >, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'listener')]) |
|
3999 |
## node.h (module 'network'): void ns3::Node::RegisterProtocolHandler(ns3::Callback<void, ns3::Ptr<ns3::NetDevice>, ns3::Ptr<ns3::Packet const>, unsigned short, ns3::Address const&, ns3::Address const&, ns3::NetDevice::PacketType, ns3::empty, ns3::empty, ns3::empty> handler, uint16_t protocolType, ns3::Ptr<ns3::NetDevice> device, bool promiscuous=false) [member function] |
|
4000 |
cls.add_method('RegisterProtocolHandler', |
|
4001 |
'void', |
|
4002 |
[param('ns3::Callback< void, ns3::Ptr< ns3::NetDevice >, ns3::Ptr< ns3::Packet const >, unsigned short, ns3::Address const &, ns3::Address const &, ns3::NetDevice::PacketType, ns3::empty, ns3::empty, ns3::empty >', 'handler'), param('uint16_t', 'protocolType'), param('ns3::Ptr< ns3::NetDevice >', 'device'), param('bool', 'promiscuous', default_value='false')]) |
|
4003 |
## node.h (module 'network'): void ns3::Node::UnregisterDeviceAdditionListener(ns3::Callback<void,ns3::Ptr<ns3::NetDevice>,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty> listener) [member function] |
|
4004 |
cls.add_method('UnregisterDeviceAdditionListener', |
|
4005 |
'void', |
|
4006 |
[param('ns3::Callback< void, ns3::Ptr< ns3::NetDevice >, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'listener')]) |
|
4007 |
## node.h (module 'network'): void ns3::Node::UnregisterProtocolHandler(ns3::Callback<void, ns3::Ptr<ns3::NetDevice>, ns3::Ptr<ns3::Packet const>, unsigned short, ns3::Address const&, ns3::Address const&, ns3::NetDevice::PacketType, ns3::empty, ns3::empty, ns3::empty> handler) [member function] |
|
4008 |
cls.add_method('UnregisterProtocolHandler', |
|
4009 |
'void', |
|
4010 |
[param('ns3::Callback< void, ns3::Ptr< ns3::NetDevice >, ns3::Ptr< ns3::Packet const >, unsigned short, ns3::Address const &, ns3::Address const &, ns3::NetDevice::PacketType, ns3::empty, ns3::empty, ns3::empty >', 'handler')]) |
|
4011 |
## node.h (module 'network'): void ns3::Node::DoDispose() [member function] |
|
4012 |
cls.add_method('DoDispose', |
|
4013 |
'void', |
|
4014 |
[], |
|
4015 |
visibility='protected', is_virtual=True) |
|
4016 |
## node.h (module 'network'): void ns3::Node::DoStart() [member function] |
|
4017 |
cls.add_method('DoStart', |
|
4018 |
'void', |
|
4019 |
[], |
|
4020 |
visibility='protected', is_virtual=True) |
|
4021 |
return |
|
4022 |
||
8985
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
4023 |
def register_Ns3NormalRandomVariable_methods(root_module, cls): |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
4024 |
## random-variable-stream.h (module 'core'): ns3::NormalRandomVariable::INFINITE_VALUE [variable] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
4025 |
cls.add_static_attribute('INFINITE_VALUE', 'double const', is_const=True) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
4026 |
## random-variable-stream.h (module 'core'): static ns3::TypeId ns3::NormalRandomVariable::GetTypeId() [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
4027 |
cls.add_method('GetTypeId', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
4028 |
'ns3::TypeId', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
4029 |
[], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
4030 |
is_static=True) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
4031 |
## random-variable-stream.h (module 'core'): ns3::NormalRandomVariable::NormalRandomVariable() [constructor] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
4032 |
cls.add_constructor([]) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
4033 |
## random-variable-stream.h (module 'core'): double ns3::NormalRandomVariable::GetMean() const [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
4034 |
cls.add_method('GetMean', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
4035 |
'double', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
4036 |
[], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
4037 |
is_const=True) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
4038 |
## random-variable-stream.h (module 'core'): double ns3::NormalRandomVariable::GetVariance() const [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
4039 |
cls.add_method('GetVariance', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
4040 |
'double', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
4041 |
[], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
4042 |
is_const=True) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
4043 |
## random-variable-stream.h (module 'core'): double ns3::NormalRandomVariable::GetBound() const [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
4044 |
cls.add_method('GetBound', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
4045 |
'double', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
4046 |
[], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
4047 |
is_const=True) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
4048 |
## random-variable-stream.h (module 'core'): double ns3::NormalRandomVariable::GetValue(double mean, double variance, double bound) [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
4049 |
cls.add_method('GetValue', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
4050 |
'double', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
4051 |
[param('double', 'mean'), param('double', 'variance'), param('double', 'bound')]) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
4052 |
## random-variable-stream.h (module 'core'): uint32_t ns3::NormalRandomVariable::GetInteger(uint32_t mean, uint32_t variance, uint32_t bound) [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
4053 |
cls.add_method('GetInteger', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
4054 |
'uint32_t', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
4055 |
[param('uint32_t', 'mean'), param('uint32_t', 'variance'), param('uint32_t', 'bound')]) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
4056 |
## random-variable-stream.h (module 'core'): double ns3::NormalRandomVariable::GetValue() [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
4057 |
cls.add_method('GetValue', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
4058 |
'double', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
4059 |
[], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
4060 |
is_virtual=True) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
4061 |
## random-variable-stream.h (module 'core'): uint32_t ns3::NormalRandomVariable::GetInteger() [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
4062 |
cls.add_method('GetInteger', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
4063 |
'uint32_t', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
4064 |
[], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
4065 |
is_virtual=True) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
4066 |
return |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
4067 |
|
8750 | 4068 |
def register_Ns3ObjectFactoryChecker_methods(root_module, cls): |
4069 |
## object-factory.h (module 'core'): ns3::ObjectFactoryChecker::ObjectFactoryChecker() [constructor] |
|
4070 |
cls.add_constructor([]) |
|
4071 |
## object-factory.h (module 'core'): ns3::ObjectFactoryChecker::ObjectFactoryChecker(ns3::ObjectFactoryChecker const & arg0) [copy constructor] |
|
4072 |
cls.add_constructor([param('ns3::ObjectFactoryChecker const &', 'arg0')]) |
|
4073 |
return |
|
4074 |
||
4075 |
def register_Ns3ObjectFactoryValue_methods(root_module, cls): |
|
4076 |
## object-factory.h (module 'core'): ns3::ObjectFactoryValue::ObjectFactoryValue() [constructor] |
|
4077 |
cls.add_constructor([]) |
|
4078 |
## object-factory.h (module 'core'): ns3::ObjectFactoryValue::ObjectFactoryValue(ns3::ObjectFactoryValue const & arg0) [copy constructor] |
|
4079 |
cls.add_constructor([param('ns3::ObjectFactoryValue const &', 'arg0')]) |
|
4080 |
## object-factory.h (module 'core'): ns3::ObjectFactoryValue::ObjectFactoryValue(ns3::ObjectFactory const & value) [constructor] |
|
4081 |
cls.add_constructor([param('ns3::ObjectFactory const &', 'value')]) |
|
4082 |
## object-factory.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::ObjectFactoryValue::Copy() const [member function] |
|
4083 |
cls.add_method('Copy', |
|
4084 |
'ns3::Ptr< ns3::AttributeValue >', |
|
4085 |
[], |
|
4086 |
is_const=True, is_virtual=True) |
|
4087 |
## object-factory.h (module 'core'): bool ns3::ObjectFactoryValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function] |
|
4088 |
cls.add_method('DeserializeFromString', |
|
4089 |
'bool', |
|
4090 |
[param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
|
4091 |
is_virtual=True) |
|
4092 |
## object-factory.h (module 'core'): ns3::ObjectFactory ns3::ObjectFactoryValue::Get() const [member function] |
|
4093 |
cls.add_method('Get', |
|
4094 |
'ns3::ObjectFactory', |
|
4095 |
[], |
|
4096 |
is_const=True) |
|
4097 |
## object-factory.h (module 'core'): std::string ns3::ObjectFactoryValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function] |
|
4098 |
cls.add_method('SerializeToString', |
|
4099 |
'std::string', |
|
4100 |
[param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
|
4101 |
is_const=True, is_virtual=True) |
|
4102 |
## object-factory.h (module 'core'): void ns3::ObjectFactoryValue::Set(ns3::ObjectFactory const & value) [member function] |
|
4103 |
cls.add_method('Set', |
|
4104 |
'void', |
|
4105 |
[param('ns3::ObjectFactory const &', 'value')]) |
|
4106 |
return |
|
4107 |
||
4108 |
def register_Ns3OhBuildingsPropagationLossModel_methods(root_module, cls): |
|
4109 |
## oh-buildings-propagation-loss-model.h (module 'buildings'): static ns3::TypeId ns3::OhBuildingsPropagationLossModel::GetTypeId() [member function] |
|
4110 |
cls.add_method('GetTypeId', |
|
4111 |
'ns3::TypeId', |
|
4112 |
[], |
|
4113 |
is_static=True) |
|
4114 |
## oh-buildings-propagation-loss-model.h (module 'buildings'): ns3::OhBuildingsPropagationLossModel::OhBuildingsPropagationLossModel() [constructor] |
|
4115 |
cls.add_constructor([]) |
|
4116 |
## oh-buildings-propagation-loss-model.h (module 'buildings'): double ns3::OhBuildingsPropagationLossModel::GetLoss(ns3::Ptr<ns3::MobilityModel> a, ns3::Ptr<ns3::MobilityModel> b) const [member function] |
|
4117 |
cls.add_method('GetLoss', |
|
4118 |
'double', |
|
4119 |
[param('ns3::Ptr< ns3::MobilityModel >', 'a'), param('ns3::Ptr< ns3::MobilityModel >', 'b')], |
|
4120 |
is_const=True, is_virtual=True) |
|
4121 |
return |
|
4122 |
||
8985
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
4123 |
def register_Ns3ParetoRandomVariable_methods(root_module, cls): |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
4124 |
## random-variable-stream.h (module 'core'): static ns3::TypeId ns3::ParetoRandomVariable::GetTypeId() [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
4125 |
cls.add_method('GetTypeId', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
4126 |
'ns3::TypeId', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
4127 |
[], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
4128 |
is_static=True) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
4129 |
## random-variable-stream.h (module 'core'): ns3::ParetoRandomVariable::ParetoRandomVariable() [constructor] |
8750 | 4130 |
cls.add_constructor([]) |
8985
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
4131 |
## random-variable-stream.h (module 'core'): double ns3::ParetoRandomVariable::GetMean() const [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
4132 |
cls.add_method('GetMean', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
4133 |
'double', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
4134 |
[], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
4135 |
is_const=True) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
4136 |
## random-variable-stream.h (module 'core'): double ns3::ParetoRandomVariable::GetShape() const [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
4137 |
cls.add_method('GetShape', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
4138 |
'double', |
8750 | 4139 |
[], |
4140 |
is_const=True) |
|
8985
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
4141 |
## random-variable-stream.h (module 'core'): double ns3::ParetoRandomVariable::GetBound() const [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
4142 |
cls.add_method('GetBound', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
4143 |
'double', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
4144 |
[], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
4145 |
is_const=True) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
4146 |
## random-variable-stream.h (module 'core'): double ns3::ParetoRandomVariable::GetValue(double mean, double shape, double bound) [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
4147 |
cls.add_method('GetValue', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
4148 |
'double', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
4149 |
[param('double', 'mean'), param('double', 'shape'), param('double', 'bound')]) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
4150 |
## random-variable-stream.h (module 'core'): uint32_t ns3::ParetoRandomVariable::GetInteger(uint32_t mean, uint32_t shape, uint32_t bound) [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
4151 |
cls.add_method('GetInteger', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
4152 |
'uint32_t', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
4153 |
[param('uint32_t', 'mean'), param('uint32_t', 'shape'), param('uint32_t', 'bound')]) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
4154 |
## random-variable-stream.h (module 'core'): double ns3::ParetoRandomVariable::GetValue() [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
4155 |
cls.add_method('GetValue', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
4156 |
'double', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
4157 |
[], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
4158 |
is_virtual=True) |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
4159 |
## random-variable-stream.h (module 'core'): uint32_t ns3::ParetoRandomVariable::GetInteger() [member function] |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
4160 |
cls.add_method('GetInteger', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
4161 |
'uint32_t', |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
4162 |
[], |
7752dc4ce7e9
Replace src/buildings and src/propagation usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents:
8893
diff
changeset
|
4163 |
is_virtual=True) |
8750 | 4164 |
return |
4165 |
||
4166 |
def register_Ns3TimeChecker_methods(root_module, cls): |
|
4167 |
## nstime.h (module 'core'): ns3::TimeChecker::TimeChecker() [constructor] |
|
4168 |
cls.add_constructor([]) |
|
4169 |
## nstime.h (module 'core'): ns3::TimeChecker::TimeChecker(ns3::TimeChecker const & arg0) [copy constructor] |
|
4170 |
cls.add_constructor([param('ns3::TimeChecker const &', 'arg0')]) |
|
4171 |
return |
|
4172 |
||
4173 |
def register_Ns3TimeValue_methods(root_module, cls): |
|
4174 |
## nstime.h (module 'core'): ns3::TimeValue::TimeValue() [constructor] |
|
4175 |
cls.add_constructor([]) |
|
4176 |
## nstime.h (module 'core'): ns3::TimeValue::TimeValue(ns3::TimeValue const & arg0) [copy constructor] |
|
4177 |
cls.add_constructor([param('ns3::TimeValue const &', 'arg0')]) |
|
4178 |
## nstime.h (module 'core'): ns3::TimeValue::TimeValue(ns3::Time const & value) [constructor] |
|
4179 |
cls.add_constructor([param('ns3::Time const &', 'value')]) |
|
4180 |
## nstime.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::TimeValue::Copy() const [member function] |
|
4181 |
cls.add_method('Copy', |
|
4182 |
'ns3::Ptr< ns3::AttributeValue >', |
|
4183 |
[], |
|
4184 |
is_const=True, is_virtual=True) |
|
4185 |
## nstime.h (module 'core'): bool ns3::TimeValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function] |
|
4186 |
cls.add_method('DeserializeFromString', |
|
4187 |
'bool', |
|
4188 |
[param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
|
4189 |
is_virtual=True) |
|
4190 |
## nstime.h (module 'core'): ns3::Time ns3::TimeValue::Get() const [member function] |
|
4191 |
cls.add_method('Get', |
|
4192 |
'ns3::Time', |
|
4193 |
[], |
|
4194 |
is_const=True) |
|
4195 |
## nstime.h (module 'core'): std::string ns3::TimeValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function] |
|
4196 |
cls.add_method('SerializeToString', |
|
4197 |
'std::string', |
|
4198 |
[param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
|
4199 |
is_const=True, is_virtual=True) |
|
4200 |
## nstime.h (module 'core'): void ns3::TimeValue::Set(ns3::Time const & value) [member function] |
|
4201 |
cls.add_method('Set', |
|
4202 |
'void', |
|
4203 |
[param('ns3::Time const &', 'value')]) |
|
4204 |
return |
|
4205 |
||
4206 |
def register_Ns3TypeIdChecker_methods(root_module, cls): |
|
4207 |
## type-id.h (module 'core'): ns3::TypeIdChecker::TypeIdChecker() [constructor] |
|
4208 |
cls.add_constructor([]) |
|
4209 |
## type-id.h (module 'core'): ns3::TypeIdChecker::TypeIdChecker(ns3::TypeIdChecker const & arg0) [copy constructor] |
|
4210 |
cls.add_constructor([param('ns3::TypeIdChecker const &', 'arg0')]) |
|
4211 |
return |
|
4212 |
||
4213 |
def register_Ns3TypeIdValue_methods(root_module, cls): |
|
4214 |
## type-id.h (module 'core'): ns3::TypeIdValue::TypeIdValue() [constructor] |
|
4215 |
cls.add_constructor([]) |
|
4216 |
## type-id.h (module 'core'): ns3::TypeIdValue::TypeIdValue(ns3::TypeIdValue const & arg0) [copy constructor] |
|
4217 |
cls.add_constructor([param('ns3::TypeIdValue const &', 'arg0')]) |
|
4218 |
## type-id.h (module 'core'): ns3::TypeIdValue::TypeIdValue(ns3::TypeId const & value) [constructor] |
|
4219 |
cls.add_constructor([param('ns3::TypeId const &', 'value')]) |
|
4220 |
## type-id.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::TypeIdValue::Copy() const [member function] |
|
4221 |
cls.add_method('Copy', |
|
4222 |
'ns3::Ptr< ns3::AttributeValue >', |
|
4223 |
[], |
|
4224 |
is_const=True, is_virtual=True) |
|
4225 |
## type-id.h (module 'core'): bool ns3::TypeIdValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function] |
|
4226 |
cls.add_method('DeserializeFromString', |
|
4227 |
'bool', |
|
4228 |
[param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
|
4229 |
is_virtual=True) |
|
4230 |
## type-id.h (module 'core'): ns3::TypeId ns3::TypeIdValue::Get() const [member function] |
|
4231 |
cls.add_method('Get', |
|
4232 |
'ns3::TypeId', |
|
4233 |
[], |
|
4234 |
is_const=True) |
|
4235 |
## type-id.h (module 'core'): std::string ns3::TypeIdValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function] |
|
4236 |
cls.add_method('SerializeToString', |
|
4237 |
'std::string', |
|
4238 |
[param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
|
4239 |
is_const=True, is_virtual=True) |
|
4240 |
## type-id.h (module 'core'): void ns3::TypeIdValue::Set(ns3::TypeId const & value) [member function] |
|
4241 |
cls.add_method('Set', |
|
4242 |
'void', |
|
4243 |
[param('ns3::TypeId const &', 'value')]) |
|
4244 |
return |
|
4245 |
||
4246 |
def register_Ns3Vector2DChecker_methods(root_module, cls): |
|
4247 |
## vector.h (module 'core'): ns3::Vector2DChecker::Vector2DChecker() [constructor] |
|
4248 |
cls.add_constructor([]) |
|
4249 |
## vector.h (module 'core'): ns3::Vector2DChecker::Vector2DChecker(ns3::Vector2DChecker const & arg0) [copy constructor] |
|
4250 |
cls.add_constructor([param('ns3::Vector2DChecker const &', 'arg0')]) |
|
4251 |
return |
|
4252 |
||
4253 |
def register_Ns3Vector2DValue_methods(root_module, cls): |
|
4254 |
## vector.h (module 'core'): ns3::Vector2DValue::Vector2DValue() [constructor] |
|
4255 |
cls.add_constructor([]) |
|
4256 |
## vector.h (module 'core'): ns3::Vector2DValue::Vector2DValue(ns3::Vector2DValue const & arg0) [copy constructor] |
|
4257 |
cls.add_constructor([param('ns3::Vector2DValue const &', 'arg0')]) |
|
4258 |
## vector.h (module 'core'): ns3::Vector2DValue::Vector2DValue(ns3::Vector2D const & value) [constructor] |
|
4259 |
cls.add_constructor([param('ns3::Vector2D const &', 'value')]) |
|
4260 |
## vector.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::Vector2DValue::Copy() const [member function] |
|
4261 |
cls.add_method('Copy', |
|
4262 |
'ns3::Ptr< ns3::AttributeValue >', |
|
4263 |
[], |
|
4264 |
is_const=True, is_virtual=True) |
|
4265 |
## vector.h (module 'core'): bool ns3::Vector2DValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function] |
|
4266 |
cls.add_method('DeserializeFromString', |
|
4267 |
'bool', |
|
4268 |
[param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
|
4269 |
is_virtual=True) |
|
4270 |
## vector.h (module 'core'): ns3::Vector2D ns3::Vector2DValue::Get() const [member function] |
|
4271 |
cls.add_method('Get', |
|
4272 |
'ns3::Vector2D', |
|
4273 |
[], |
|
4274 |
is_const=True) |
|
4275 |
## vector.h (module 'core'): std::string ns3::Vector2DValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function] |
|
4276 |
cls.add_method('SerializeToString', |
|
4277 |
'std::string', |
|
4278 |
[param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
|
4279 |
is_const=True, is_virtual=True) |
|
4280 |
## vector.h (module 'core'): void ns3::Vector2DValue::Set(ns3::Vector2D const & value) [member function] |
|
4281 |
cls.add_method('Set', |
|
4282 |
'void', |
|
4283 |
[param('ns3::Vector2D const &', 'value')]) |
|
4284 |
return |
|
4285 |
||
4286 |
def register_Ns3Vector3DChecker_methods(root_module, cls): |
|
4287 |
## vector.h (module 'core'): ns3::Vector3DChecker::Vector3DChecker() [constructor] |
|
4288 |
cls.add_constructor([]) |
|
4289 |
## vector.h (module 'core'): ns3::Vector3DChecker::Vector3DChecker(ns3::Vector3DChecker const & arg0) [copy constructor] |
|
4290 |
cls.add_constructor([param('ns3::Vector3DChecker const &', 'arg0')]) |
|
4291 |
return |
|
4292 |
||
4293 |
def register_Ns3Vector3DValue_methods(root_module, cls): |
|
4294 |
## vector.h (module 'core'): ns3::Vector3DValue::Vector3DValue() [constructor] |
|
4295 |
cls.add_constructor([]) |
|
4296 |
## vector.h (module 'core'): ns3::Vector3DValue::Vector3DValue(ns3::Vector3DValue const & arg0) [copy constructor] |
|
4297 |
cls.add_constructor([param('ns3::Vector3DValue const &', 'arg0')]) |
|
4298 |
## vector.h (module 'core'): ns3::Vector3DValue::Vector3DValue(ns3::Vector3D const & value) [constructor] |
|
4299 |
cls.add_constructor([param('ns3::Vector3D const &', 'value')]) |
|
4300 |
## vector.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::Vector3DValue::Copy() const [member function] |
|
4301 |
cls.add_method('Copy', |
|
4302 |
'ns3::Ptr< ns3::AttributeValue >', |
|
4303 |
[], |
|
4304 |
is_const=True, is_virtual=True) |
|
4305 |
## vector.h (module 'core'): bool ns3::Vector3DValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function] |
|
4306 |
cls.add_method('DeserializeFromString', |
|
4307 |
'bool', |
|
4308 |
[param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
|
4309 |
is_virtual=True) |
|
4310 |
## vector.h (module 'core'): ns3::Vector3D ns3::Vector3DValue::Get() const [member function] |
|
4311 |
cls.add_method('Get', |
|
4312 |
'ns3::Vector3D', |
|
4313 |
[], |
|
4314 |
is_const=True) |
|
4315 |
## vector.h (module 'core'): std::string ns3::Vector3DValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function] |
|
4316 |
cls.add_method('SerializeToString', |
|
4317 |
'std::string', |
|
4318 |
[param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
|
4319 |
is_const=True, is_virtual=True) |
|
4320 |
## vector.h (module 'core'): void ns3::Vector3DValue::Set(ns3::Vector3D const & value) [member function] |
|
4321 |
cls.add_method('Set', |
|
4322 |
'void', |
|
4323 |
[param('ns3::Vector3D const &', 'value')]) |
|
4324 |
return |
|
4325 |
||
4326 |
def register_Ns3AddressChecker_methods(root_module, cls): |
|
4327 |
## address.h (module 'network'): ns3::AddressChecker::AddressChecker() [constructor] |
|
4328 |
cls.add_constructor([]) |
|
4329 |
## address.h (module 'network'): ns3::AddressChecker::AddressChecker(ns3::AddressChecker const & arg0) [copy constructor] |
|
4330 |
cls.add_constructor([param('ns3::AddressChecker const &', 'arg0')]) |
|
4331 |
return |
|
4332 |
||
4333 |
def register_Ns3AddressValue_methods(root_module, cls): |
|
4334 |
## address.h (module 'network'): ns3::AddressValue::AddressValue() [constructor] |
|
4335 |
cls.add_constructor([]) |
|
4336 |
## address.h (module 'network'): ns3::AddressValue::AddressValue(ns3::AddressValue const & arg0) [copy constructor] |
|
4337 |
cls.add_constructor([param('ns3::AddressValue const &', 'arg0')]) |
|
4338 |
## address.h (module 'network'): ns3::AddressValue::AddressValue(ns3::Address const & value) [constructor] |
|
4339 |
cls.add_constructor([param('ns3::Address const &', 'value')]) |
|
4340 |
## address.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::AddressValue::Copy() const [member function] |
|
4341 |
cls.add_method('Copy', |
|
4342 |
'ns3::Ptr< ns3::AttributeValue >', |
|
4343 |
[], |
|
4344 |
is_const=True, is_virtual=True) |
|
4345 |
## address.h (module 'network'): bool ns3::AddressValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function] |
|
4346 |
cls.add_method('DeserializeFromString', |
|
4347 |
'bool', |
|
4348 |
[param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
|
4349 |
is_virtual=True) |
|
4350 |
## address.h (module 'network'): ns3::Address ns3::AddressValue::Get() const [member function] |
|
4351 |
cls.add_method('Get', |
|
4352 |
'ns3::Address', |
|
4353 |
[], |
|
4354 |
is_const=True) |
|
4355 |
## address.h (module 'network'): std::string ns3::AddressValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function] |
|
4356 |
cls.add_method('SerializeToString', |
|
4357 |
'std::string', |
|
4358 |
[param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
|
4359 |
is_const=True, is_virtual=True) |
|
4360 |
## address.h (module 'network'): void ns3::AddressValue::Set(ns3::Address const & value) [member function] |
|
4361 |
cls.add_method('Set', |
|
4362 |
'void', |
|
4363 |
[param('ns3::Address const &', 'value')]) |
|
4364 |
return |
|
4365 |
||
4366 |
def register_Ns3BuildingsMobilityModel_methods(root_module, cls): |
|
4367 |
## buildings-mobility-model.h (module 'buildings'): ns3::BuildingsMobilityModel::BuildingsMobilityModel(ns3::BuildingsMobilityModel const & arg0) [copy constructor] |
|
4368 |
cls.add_constructor([param('ns3::BuildingsMobilityModel const &', 'arg0')]) |
|
4369 |
## buildings-mobility-model.h (module 'buildings'): ns3::BuildingsMobilityModel::BuildingsMobilityModel() [constructor] |
|
4370 |
cls.add_constructor([]) |
|
4371 |
## buildings-mobility-model.h (module 'buildings'): ns3::Ptr<ns3::Building> ns3::BuildingsMobilityModel::GetBuilding() [member function] |
|
4372 |
cls.add_method('GetBuilding', |
|
4373 |
'ns3::Ptr< ns3::Building >', |
|
4374 |
[]) |
|
4375 |
## buildings-mobility-model.h (module 'buildings'): uint8_t ns3::BuildingsMobilityModel::GetFloorNumber() [member function] |
|
4376 |
cls.add_method('GetFloorNumber', |
|
4377 |
'uint8_t', |
|
4378 |
[]) |
|
4379 |
## buildings-mobility-model.h (module 'buildings'): uint8_t ns3::BuildingsMobilityModel::GetRoomNumberX() [member function] |
|
4380 |
cls.add_method('GetRoomNumberX', |
|
4381 |
'uint8_t', |
|
4382 |
[]) |
|
4383 |
## buildings-mobility-model.h (module 'buildings'): uint8_t ns3::BuildingsMobilityModel::GetRoomNumberY() [member function] |
|
4384 |
cls.add_method('GetRoomNumberY', |
|
4385 |
'uint8_t', |
|
4386 |
[]) |
|
4387 |
## buildings-mobility-model.h (module 'buildings'): static ns3::TypeId ns3::BuildingsMobilityModel::GetTypeId() [member function] |
|
4388 |
cls.add_method('GetTypeId', |
|
4389 |
'ns3::TypeId', |
|
4390 |
[], |
|
4391 |
is_static=True) |
|
4392 |
## buildings-mobility-model.h (module 'buildings'): bool ns3::BuildingsMobilityModel::IsIndoor() [member function] |
|
4393 |
cls.add_method('IsIndoor', |
|
4394 |
'bool', |
|
4395 |
[]) |
|
4396 |
## buildings-mobility-model.h (module 'buildings'): bool ns3::BuildingsMobilityModel::IsOutdoor() [member function] |
|
4397 |
cls.add_method('IsOutdoor', |
|
4398 |
'bool', |
|
4399 |
[]) |
|
4400 |
## buildings-mobility-model.h (module 'buildings'): void ns3::BuildingsMobilityModel::SetIndoor(ns3::Ptr<ns3::Building> building, uint8_t nfloor, uint8_t nroomx, uint8_t nroomy) [member function] |
|
4401 |
cls.add_method('SetIndoor', |
|
4402 |
'void', |
|
4403 |
[param('ns3::Ptr< ns3::Building >', 'building'), param('uint8_t', 'nfloor'), param('uint8_t', 'nroomx'), param('uint8_t', 'nroomy')]) |
|
4404 |
## buildings-mobility-model.h (module 'buildings'): void ns3::BuildingsMobilityModel::SetOutdoor() [member function] |
|
4405 |
cls.add_method('SetOutdoor', |
|
4406 |
'void', |
|
4407 |
[]) |
|
4408 |
## buildings-mobility-model.h (module 'buildings'): void ns3::BuildingsMobilityModel::DoDispose() [member function] |
|
4409 |
cls.add_method('DoDispose', |
|
4410 |
'void', |
|
4411 |
[], |
|
4412 |
visibility='private', is_virtual=True) |
|
4413 |
## buildings-mobility-model.h (module 'buildings'): ns3::Vector ns3::BuildingsMobilityModel::DoGetPosition() const [member function] |
|
4414 |
cls.add_method('DoGetPosition', |
|
4415 |
'ns3::Vector', |
|
4416 |
[], |
|
4417 |
is_const=True, visibility='private', is_virtual=True) |
|
4418 |
## buildings-mobility-model.h (module 'buildings'): ns3::Vector ns3::BuildingsMobilityModel::DoGetVelocity() const [member function] |
|
4419 |
cls.add_method('DoGetVelocity', |
|
4420 |
'ns3::Vector', |
|
4421 |
[], |
|
4422 |
is_const=True, visibility='private', is_virtual=True) |
|
4423 |
## buildings-mobility-model.h (module 'buildings'): void ns3::BuildingsMobilityModel::DoSetPosition(ns3::Vector const & position) [member function] |
|
4424 |
cls.add_method('DoSetPosition', |
|
4425 |
'void', |
|
4426 |
[param('ns3::Vector const &', 'position')], |
|
4427 |
visibility='private', is_virtual=True) |
|
4428 |
return |
|
4429 |
||
4430 |
def register_functions(root_module): |
|
4431 |
module = root_module |
|
4432 |
register_functions_ns3_FatalImpl(module.get_submodule('FatalImpl'), root_module) |
|
4433 |
return |
|
4434 |
||
4435 |
def register_functions_ns3_FatalImpl(module, root_module): |
|
4436 |
return |
|
4437 |
||
4438 |
def main(): |
|
4439 |
out = FileCodeSink(sys.stdout) |
|
4440 |
root_module = module_init() |
|
4441 |
register_types(root_module) |
|
4442 |
register_methods(root_module) |
|
4443 |
register_functions(root_module) |
|
4444 |
root_module.generate(out) |
|
4445 |
||
4446 |
if __name__ == '__main__': |
|
4447 |
main() |
|
4448 |