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 |
## random-variable.h (module 'core'): ns3::RandomVariable [class]
|
|
70 |
module.add_class('RandomVariable', import_from_module='ns.core')
|
8893
|
71 |
## rng-seed-manager.h (module 'core'): ns3::RngSeedManager [class]
|
|
72 |
module.add_class('RngSeedManager', import_from_module='ns.core')
|
8750
|
73 |
## random-variable.h (module 'core'): ns3::SequentialVariable [class]
|
|
74 |
module.add_class('SequentialVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
|
|
75 |
## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter> [class]
|
|
76 |
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'))
|
|
77 |
## tag-buffer.h (module 'network'): ns3::TagBuffer [class]
|
|
78 |
module.add_class('TagBuffer', import_from_module='ns.network')
|
|
79 |
## random-variable.h (module 'core'): ns3::TriangularVariable [class]
|
|
80 |
module.add_class('TriangularVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
|
|
81 |
## type-id.h (module 'core'): ns3::TypeId [class]
|
|
82 |
module.add_class('TypeId', import_from_module='ns.core')
|
|
83 |
## type-id.h (module 'core'): ns3::TypeId::AttributeFlag [enumeration]
|
|
84 |
module.add_enum('AttributeFlag', ['ATTR_GET', 'ATTR_SET', 'ATTR_CONSTRUCT', 'ATTR_SGC'], outer_class=root_module['ns3::TypeId'], import_from_module='ns.core')
|
|
85 |
## type-id.h (module 'core'): ns3::TypeId::AttributeInformation [struct]
|
|
86 |
module.add_class('AttributeInformation', import_from_module='ns.core', outer_class=root_module['ns3::TypeId'])
|
|
87 |
## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation [struct]
|
|
88 |
module.add_class('TraceSourceInformation', import_from_module='ns.core', outer_class=root_module['ns3::TypeId'])
|
|
89 |
## random-variable.h (module 'core'): ns3::UniformVariable [class]
|
|
90 |
module.add_class('UniformVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
|
|
91 |
## vector.h (module 'core'): ns3::Vector2D [class]
|
|
92 |
module.add_class('Vector2D', import_from_module='ns.core')
|
|
93 |
## vector.h (module 'core'): ns3::Vector3D [class]
|
|
94 |
module.add_class('Vector3D', import_from_module='ns.core')
|
|
95 |
## random-variable.h (module 'core'): ns3::WeibullVariable [class]
|
|
96 |
module.add_class('WeibullVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
|
|
97 |
## random-variable.h (module 'core'): ns3::ZetaVariable [class]
|
|
98 |
module.add_class('ZetaVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
|
|
99 |
## random-variable.h (module 'core'): ns3::ZipfVariable [class]
|
|
100 |
module.add_class('ZipfVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
|
|
101 |
## empty.h (module 'core'): ns3::empty [class]
|
|
102 |
module.add_class('empty', import_from_module='ns.core')
|
|
103 |
## int64x64-double.h (module 'core'): ns3::int64x64_t [class]
|
|
104 |
module.add_class('int64x64_t', import_from_module='ns.core')
|
|
105 |
## random-variable.h (module 'core'): ns3::ConstantVariable [class]
|
|
106 |
module.add_class('ConstantVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
|
|
107 |
## random-variable.h (module 'core'): ns3::DeterministicVariable [class]
|
|
108 |
module.add_class('DeterministicVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
|
|
109 |
## random-variable.h (module 'core'): ns3::EmpiricalVariable [class]
|
|
110 |
module.add_class('EmpiricalVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
|
|
111 |
## random-variable.h (module 'core'): ns3::ErlangVariable [class]
|
|
112 |
module.add_class('ErlangVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
|
|
113 |
## random-variable.h (module 'core'): ns3::ExponentialVariable [class]
|
|
114 |
module.add_class('ExponentialVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
|
|
115 |
## random-variable.h (module 'core'): ns3::GammaVariable [class]
|
|
116 |
module.add_class('GammaVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
|
|
117 |
## random-variable.h (module 'core'): ns3::IntEmpiricalVariable [class]
|
|
118 |
module.add_class('IntEmpiricalVariable', import_from_module='ns.core', parent=root_module['ns3::EmpiricalVariable'])
|
|
119 |
## random-variable.h (module 'core'): ns3::LogNormalVariable [class]
|
|
120 |
module.add_class('LogNormalVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
|
|
121 |
## random-variable.h (module 'core'): ns3::NormalVariable [class]
|
|
122 |
module.add_class('NormalVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
|
|
123 |
## object.h (module 'core'): ns3::Object [class]
|
|
124 |
module.add_class('Object', import_from_module='ns.core', parent=root_module['ns3::SimpleRefCount< ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter >'])
|
|
125 |
## object.h (module 'core'): ns3::Object::AggregateIterator [class]
|
|
126 |
module.add_class('AggregateIterator', import_from_module='ns.core', outer_class=root_module['ns3::Object'])
|
|
127 |
## random-variable.h (module 'core'): ns3::ParetoVariable [class]
|
|
128 |
module.add_class('ParetoVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
|
|
129 |
## position-allocator.h (module 'mobility'): ns3::PositionAllocator [class]
|
|
130 |
module.add_class('PositionAllocator', import_from_module='ns.mobility', parent=root_module['ns3::Object'])
|
|
131 |
## propagation-loss-model.h (module 'propagation'): ns3::PropagationLossModel [class]
|
|
132 |
module.add_class('PropagationLossModel', import_from_module='ns.propagation', parent=root_module['ns3::Object'])
|
|
133 |
## position-allocator.h (module 'mobility'): ns3::RandomBoxPositionAllocator [class]
|
|
134 |
module.add_class('RandomBoxPositionAllocator', import_from_module='ns.mobility', parent=root_module['ns3::PositionAllocator'])
|
|
135 |
## building-position-allocator.h (module 'buildings'): ns3::RandomBuildingPositionAllocator [class]
|
|
136 |
module.add_class('RandomBuildingPositionAllocator', parent=root_module['ns3::PositionAllocator'])
|
|
137 |
## position-allocator.h (module 'mobility'): ns3::RandomDiscPositionAllocator [class]
|
|
138 |
module.add_class('RandomDiscPositionAllocator', import_from_module='ns.mobility', parent=root_module['ns3::PositionAllocator'])
|
|
139 |
## propagation-loss-model.h (module 'propagation'): ns3::RandomPropagationLossModel [class]
|
|
140 |
module.add_class('RandomPropagationLossModel', import_from_module='ns.propagation', parent=root_module['ns3::PropagationLossModel'])
|
|
141 |
## position-allocator.h (module 'mobility'): ns3::RandomRectanglePositionAllocator [class]
|
|
142 |
module.add_class('RandomRectanglePositionAllocator', import_from_module='ns.mobility', parent=root_module['ns3::PositionAllocator'])
|
|
143 |
## building-position-allocator.h (module 'buildings'): ns3::RandomRoomPositionAllocator [class]
|
|
144 |
module.add_class('RandomRoomPositionAllocator', parent=root_module['ns3::PositionAllocator'])
|
|
145 |
## propagation-loss-model.h (module 'propagation'): ns3::RangePropagationLossModel [class]
|
|
146 |
module.add_class('RangePropagationLossModel', import_from_module='ns.propagation', parent=root_module['ns3::PropagationLossModel'])
|
|
147 |
## building-position-allocator.h (module 'buildings'): ns3::SameRoomPositionAllocator [class]
|
|
148 |
module.add_class('SameRoomPositionAllocator', parent=root_module['ns3::PositionAllocator'])
|
|
149 |
## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> > [class]
|
|
150 |
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'))
|
|
151 |
## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter<ns3::AttributeChecker> > [class]
|
|
152 |
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'))
|
|
153 |
## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter<ns3::AttributeValue> > [class]
|
|
154 |
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'))
|
|
155 |
## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> > [class]
|
|
156 |
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'))
|
|
157 |
## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter<ns3::TraceSourceAccessor> > [class]
|
|
158 |
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'))
|
|
159 |
## propagation-loss-model.h (module 'propagation'): ns3::ThreeLogDistancePropagationLossModel [class]
|
|
160 |
module.add_class('ThreeLogDistancePropagationLossModel', import_from_module='ns.propagation', parent=root_module['ns3::PropagationLossModel'])
|
|
161 |
## nstime.h (module 'core'): ns3::Time [class]
|
|
162 |
module.add_class('Time', import_from_module='ns.core')
|
|
163 |
## nstime.h (module 'core'): ns3::Time::Unit [enumeration]
|
|
164 |
module.add_enum('Unit', ['S', 'MS', 'US', 'NS', 'PS', 'FS', 'LAST'], outer_class=root_module['ns3::Time'], import_from_module='ns.core')
|
|
165 |
## nstime.h (module 'core'): ns3::Time [class]
|
|
166 |
root_module['ns3::Time'].implicitly_converts_to(root_module['ns3::int64x64_t'])
|
|
167 |
## trace-source-accessor.h (module 'core'): ns3::TraceSourceAccessor [class]
|
|
168 |
module.add_class('TraceSourceAccessor', import_from_module='ns.core', parent=root_module['ns3::SimpleRefCount< ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter<ns3::TraceSourceAccessor> >'])
|
|
169 |
## propagation-loss-model.h (module 'propagation'): ns3::TwoRayGroundPropagationLossModel [class]
|
|
170 |
module.add_class('TwoRayGroundPropagationLossModel', import_from_module='ns.propagation', parent=root_module['ns3::PropagationLossModel'])
|
|
171 |
## position-allocator.h (module 'mobility'): ns3::UniformDiscPositionAllocator [class]
|
|
172 |
module.add_class('UniformDiscPositionAllocator', import_from_module='ns.mobility', parent=root_module['ns3::PositionAllocator'])
|
|
173 |
## attribute.h (module 'core'): ns3::AttributeAccessor [class]
|
|
174 |
module.add_class('AttributeAccessor', import_from_module='ns.core', parent=root_module['ns3::SimpleRefCount< ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> >'])
|
|
175 |
## attribute.h (module 'core'): ns3::AttributeChecker [class]
|
|
176 |
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> >'])
|
|
177 |
## attribute.h (module 'core'): ns3::AttributeValue [class]
|
|
178 |
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> >'])
|
|
179 |
## box.h (module 'mobility'): ns3::BoxChecker [class]
|
|
180 |
module.add_class('BoxChecker', import_from_module='ns.mobility', parent=root_module['ns3::AttributeChecker'])
|
|
181 |
## box.h (module 'mobility'): ns3::BoxValue [class]
|
|
182 |
module.add_class('BoxValue', import_from_module='ns.mobility', parent=root_module['ns3::AttributeValue'])
|
|
183 |
## building.h (module 'buildings'): ns3::Building [class]
|
|
184 |
module.add_class('Building', parent=root_module['ns3::Object'])
|
|
185 |
## building.h (module 'buildings'): ns3::Building::BuildingType_t [enumeration]
|
|
186 |
module.add_enum('BuildingType_t', ['Residential', 'Office', 'Commercial'], outer_class=root_module['ns3::Building'])
|
|
187 |
## building.h (module 'buildings'): ns3::Building::ExtWallsType_t [enumeration]
|
|
188 |
module.add_enum('ExtWallsType_t', ['Wood', 'ConcreteWithWindows', 'ConcreteWithoutWindows', 'StoneBlocks'], outer_class=root_module['ns3::Building'])
|
|
189 |
## buildings-propagation-loss-model.h (module 'buildings'): ns3::BuildingsPropagationLossModel [class]
|
|
190 |
module.add_class('BuildingsPropagationLossModel', parent=root_module['ns3::PropagationLossModel'])
|
|
191 |
## callback.h (module 'core'): ns3::CallbackChecker [class]
|
|
192 |
module.add_class('CallbackChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker'])
|
|
193 |
## callback.h (module 'core'): ns3::CallbackImplBase [class]
|
|
194 |
module.add_class('CallbackImplBase', import_from_module='ns.core', parent=root_module['ns3::SimpleRefCount< ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> >'])
|
|
195 |
## callback.h (module 'core'): ns3::CallbackValue [class]
|
|
196 |
module.add_class('CallbackValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
|
|
197 |
## attribute.h (module 'core'): ns3::EmptyAttributeValue [class]
|
|
198 |
module.add_class('EmptyAttributeValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
|
|
199 |
## propagation-loss-model.h (module 'propagation'): ns3::FixedRssLossModel [class]
|
|
200 |
module.add_class('FixedRssLossModel', import_from_module='ns.propagation', parent=root_module['ns3::PropagationLossModel'])
|
|
201 |
## propagation-loss-model.h (module 'propagation'): ns3::FriisPropagationLossModel [class]
|
|
202 |
module.add_class('FriisPropagationLossModel', import_from_module='ns.propagation', parent=root_module['ns3::PropagationLossModel'])
|
|
203 |
## building-allocator.h (module 'buildings'): ns3::GridBuildingAllocator [class]
|
|
204 |
module.add_class('GridBuildingAllocator', parent=root_module['ns3::Object'])
|
|
205 |
## position-allocator.h (module 'mobility'): ns3::GridPositionAllocator [class]
|
|
206 |
module.add_class('GridPositionAllocator', import_from_module='ns.mobility', parent=root_module['ns3::PositionAllocator'])
|
|
207 |
## position-allocator.h (module 'mobility'): ns3::GridPositionAllocator::LayoutType [enumeration]
|
|
208 |
module.add_enum('LayoutType', ['ROW_FIRST', 'COLUMN_FIRST'], outer_class=root_module['ns3::GridPositionAllocator'], import_from_module='ns.mobility')
|
|
209 |
## hybrid-buildings-propagation-loss-model.h (module 'buildings'): ns3::HybridBuildingsPropagationLossModel [class]
|
|
210 |
module.add_class('HybridBuildingsPropagationLossModel', parent=root_module['ns3::BuildingsPropagationLossModel'])
|
|
211 |
## ipv4-address.h (module 'network'): ns3::Ipv4AddressChecker [class]
|
|
212 |
module.add_class('Ipv4AddressChecker', import_from_module='ns.network', parent=root_module['ns3::AttributeChecker'])
|
|
213 |
## ipv4-address.h (module 'network'): ns3::Ipv4AddressValue [class]
|
|
214 |
module.add_class('Ipv4AddressValue', import_from_module='ns.network', parent=root_module['ns3::AttributeValue'])
|
|
215 |
## ipv4-address.h (module 'network'): ns3::Ipv4MaskChecker [class]
|
|
216 |
module.add_class('Ipv4MaskChecker', import_from_module='ns.network', parent=root_module['ns3::AttributeChecker'])
|
|
217 |
## ipv4-address.h (module 'network'): ns3::Ipv4MaskValue [class]
|
|
218 |
module.add_class('Ipv4MaskValue', import_from_module='ns.network', parent=root_module['ns3::AttributeValue'])
|
|
219 |
## ipv6-address.h (module 'network'): ns3::Ipv6AddressChecker [class]
|
|
220 |
module.add_class('Ipv6AddressChecker', import_from_module='ns.network', parent=root_module['ns3::AttributeChecker'])
|
|
221 |
## ipv6-address.h (module 'network'): ns3::Ipv6AddressValue [class]
|
|
222 |
module.add_class('Ipv6AddressValue', import_from_module='ns.network', parent=root_module['ns3::AttributeValue'])
|
|
223 |
## ipv6-address.h (module 'network'): ns3::Ipv6PrefixChecker [class]
|
|
224 |
module.add_class('Ipv6PrefixChecker', import_from_module='ns.network', parent=root_module['ns3::AttributeChecker'])
|
|
225 |
## ipv6-address.h (module 'network'): ns3::Ipv6PrefixValue [class]
|
|
226 |
module.add_class('Ipv6PrefixValue', import_from_module='ns.network', parent=root_module['ns3::AttributeValue'])
|
|
227 |
## itu-r-1238-propagation-loss-model.h (module 'buildings'): ns3::ItuR1238PropagationLossModel [class]
|
|
228 |
module.add_class('ItuR1238PropagationLossModel', parent=root_module['ns3::PropagationLossModel'])
|
|
229 |
## position-allocator.h (module 'mobility'): ns3::ListPositionAllocator [class]
|
|
230 |
module.add_class('ListPositionAllocator', import_from_module='ns.mobility', parent=root_module['ns3::PositionAllocator'])
|
|
231 |
## propagation-loss-model.h (module 'propagation'): ns3::LogDistancePropagationLossModel [class]
|
|
232 |
module.add_class('LogDistancePropagationLossModel', import_from_module='ns.propagation', parent=root_module['ns3::PropagationLossModel'])
|
|
233 |
## propagation-loss-model.h (module 'propagation'): ns3::MatrixPropagationLossModel [class]
|
|
234 |
module.add_class('MatrixPropagationLossModel', import_from_module='ns.propagation', parent=root_module['ns3::PropagationLossModel'])
|
|
235 |
## mobility-model.h (module 'mobility'): ns3::MobilityModel [class]
|
|
236 |
module.add_class('MobilityModel', import_from_module='ns.mobility', parent=root_module['ns3::Object'])
|
|
237 |
## propagation-loss-model.h (module 'propagation'): ns3::NakagamiPropagationLossModel [class]
|
|
238 |
module.add_class('NakagamiPropagationLossModel', import_from_module='ns.propagation', parent=root_module['ns3::PropagationLossModel'])
|
|
239 |
## net-device.h (module 'network'): ns3::NetDevice [class]
|
|
240 |
module.add_class('NetDevice', import_from_module='ns.network', parent=root_module['ns3::Object'])
|
|
241 |
## net-device.h (module 'network'): ns3::NetDevice::PacketType [enumeration]
|
|
242 |
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')
|
|
243 |
## node.h (module 'network'): ns3::Node [class]
|
|
244 |
module.add_class('Node', import_from_module='ns.network', parent=root_module['ns3::Object'])
|
|
245 |
## object-factory.h (module 'core'): ns3::ObjectFactoryChecker [class]
|
|
246 |
module.add_class('ObjectFactoryChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker'])
|
|
247 |
## object-factory.h (module 'core'): ns3::ObjectFactoryValue [class]
|
|
248 |
module.add_class('ObjectFactoryValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
|
|
249 |
## oh-buildings-propagation-loss-model.h (module 'buildings'): ns3::OhBuildingsPropagationLossModel [class]
|
|
250 |
module.add_class('OhBuildingsPropagationLossModel', parent=root_module['ns3::BuildingsPropagationLossModel'])
|
|
251 |
## random-variable.h (module 'core'): ns3::RandomVariableChecker [class]
|
|
252 |
module.add_class('RandomVariableChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker'])
|
|
253 |
## random-variable.h (module 'core'): ns3::RandomVariableValue [class]
|
|
254 |
module.add_class('RandomVariableValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
|
|
255 |
## nstime.h (module 'core'): ns3::TimeChecker [class]
|
|
256 |
module.add_class('TimeChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker'])
|
|
257 |
## nstime.h (module 'core'): ns3::TimeValue [class]
|
|
258 |
module.add_class('TimeValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
|
|
259 |
## type-id.h (module 'core'): ns3::TypeIdChecker [class]
|
|
260 |
module.add_class('TypeIdChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker'])
|
|
261 |
## type-id.h (module 'core'): ns3::TypeIdValue [class]
|
|
262 |
module.add_class('TypeIdValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
|
|
263 |
## vector.h (module 'core'): ns3::Vector2DChecker [class]
|
|
264 |
module.add_class('Vector2DChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker'])
|
|
265 |
## vector.h (module 'core'): ns3::Vector2DValue [class]
|
|
266 |
module.add_class('Vector2DValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
|
|
267 |
## vector.h (module 'core'): ns3::Vector3DChecker [class]
|
|
268 |
module.add_class('Vector3DChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker'])
|
|
269 |
## vector.h (module 'core'): ns3::Vector3DValue [class]
|
|
270 |
module.add_class('Vector3DValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
|
|
271 |
## address.h (module 'network'): ns3::AddressChecker [class]
|
|
272 |
module.add_class('AddressChecker', import_from_module='ns.network', parent=root_module['ns3::AttributeChecker'])
|
|
273 |
## address.h (module 'network'): ns3::AddressValue [class]
|
|
274 |
module.add_class('AddressValue', import_from_module='ns.network', parent=root_module['ns3::AttributeValue'])
|
|
275 |
## buildings-mobility-model.h (module 'buildings'): ns3::BuildingsMobilityModel [class]
|
|
276 |
module.add_class('BuildingsMobilityModel', parent=root_module['ns3::MobilityModel'])
|
|
277 |
typehandlers.add_type_alias('ns3::Vector3DValue', 'ns3::VectorValue')
|
|
278 |
typehandlers.add_type_alias('ns3::Vector3DValue*', 'ns3::VectorValue*')
|
|
279 |
typehandlers.add_type_alias('ns3::Vector3DValue&', 'ns3::VectorValue&')
|
|
280 |
module.add_typedef(root_module['ns3::Vector3DValue'], 'VectorValue')
|
8893
|
281 |
typehandlers.add_type_alias('ns3::RngSeedManager', 'ns3::SeedManager')
|
|
282 |
typehandlers.add_type_alias('ns3::RngSeedManager*', 'ns3::SeedManager*')
|
|
283 |
typehandlers.add_type_alias('ns3::RngSeedManager&', 'ns3::SeedManager&')
|
|
284 |
module.add_typedef(root_module['ns3::RngSeedManager'], 'SeedManager')
|
8750
|
285 |
typehandlers.add_type_alias('ns3::Vector3D', 'ns3::Vector')
|
|
286 |
typehandlers.add_type_alias('ns3::Vector3D*', 'ns3::Vector*')
|
|
287 |
typehandlers.add_type_alias('ns3::Vector3D&', 'ns3::Vector&')
|
|
288 |
module.add_typedef(root_module['ns3::Vector3D'], 'Vector')
|
|
289 |
typehandlers.add_type_alias('ns3::Vector3DChecker', 'ns3::VectorChecker')
|
|
290 |
typehandlers.add_type_alias('ns3::Vector3DChecker*', 'ns3::VectorChecker*')
|
|
291 |
typehandlers.add_type_alias('ns3::Vector3DChecker&', 'ns3::VectorChecker&')
|
|
292 |
module.add_typedef(root_module['ns3::Vector3DChecker'], 'VectorChecker')
|
|
293 |
|
|
294 |
## Register a nested module for the namespace FatalImpl
|
|
295 |
|
|
296 |
nested_module = module.add_cpp_namespace('FatalImpl')
|
|
297 |
register_types_ns3_FatalImpl(nested_module)
|
|
298 |
|
|
299 |
|
|
300 |
def register_types_ns3_FatalImpl(module):
|
|
301 |
root_module = module.get_root()
|
|
302 |
|
|
303 |
|
|
304 |
def register_methods(root_module):
|
|
305 |
register_Ns3Address_methods(root_module, root_module['ns3::Address'])
|
|
306 |
register_Ns3AttributeConstructionList_methods(root_module, root_module['ns3::AttributeConstructionList'])
|
|
307 |
register_Ns3AttributeConstructionListItem_methods(root_module, root_module['ns3::AttributeConstructionList::Item'])
|
|
308 |
register_Ns3Box_methods(root_module, root_module['ns3::Box'])
|
|
309 |
register_Ns3BuildingContainer_methods(root_module, root_module['ns3::BuildingContainer'])
|
|
310 |
register_Ns3BuildingList_methods(root_module, root_module['ns3::BuildingList'])
|
|
311 |
register_Ns3BuildingsHelper_methods(root_module, root_module['ns3::BuildingsHelper'])
|
|
312 |
register_Ns3CallbackBase_methods(root_module, root_module['ns3::CallbackBase'])
|
|
313 |
register_Ns3ConstantVelocityHelper_methods(root_module, root_module['ns3::ConstantVelocityHelper'])
|
|
314 |
register_Ns3Ipv4Address_methods(root_module, root_module['ns3::Ipv4Address'])
|
|
315 |
register_Ns3Ipv4Mask_methods(root_module, root_module['ns3::Ipv4Mask'])
|
|
316 |
register_Ns3Ipv6Address_methods(root_module, root_module['ns3::Ipv6Address'])
|
|
317 |
register_Ns3Ipv6Prefix_methods(root_module, root_module['ns3::Ipv6Prefix'])
|
|
318 |
register_Ns3NodeContainer_methods(root_module, root_module['ns3::NodeContainer'])
|
|
319 |
register_Ns3ObjectBase_methods(root_module, root_module['ns3::ObjectBase'])
|
|
320 |
register_Ns3ObjectDeleter_methods(root_module, root_module['ns3::ObjectDeleter'])
|
|
321 |
register_Ns3ObjectFactory_methods(root_module, root_module['ns3::ObjectFactory'])
|
|
322 |
register_Ns3RandomVariable_methods(root_module, root_module['ns3::RandomVariable'])
|
8893
|
323 |
register_Ns3RngSeedManager_methods(root_module, root_module['ns3::RngSeedManager'])
|
8750
|
324 |
register_Ns3SequentialVariable_methods(root_module, root_module['ns3::SequentialVariable'])
|
|
325 |
register_Ns3SimpleRefCount__Ns3Object_Ns3ObjectBase_Ns3ObjectDeleter_methods(root_module, root_module['ns3::SimpleRefCount< ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter >'])
|
|
326 |
register_Ns3TagBuffer_methods(root_module, root_module['ns3::TagBuffer'])
|
|
327 |
register_Ns3TriangularVariable_methods(root_module, root_module['ns3::TriangularVariable'])
|
|
328 |
register_Ns3TypeId_methods(root_module, root_module['ns3::TypeId'])
|
|
329 |
register_Ns3TypeIdAttributeInformation_methods(root_module, root_module['ns3::TypeId::AttributeInformation'])
|
|
330 |
register_Ns3TypeIdTraceSourceInformation_methods(root_module, root_module['ns3::TypeId::TraceSourceInformation'])
|
|
331 |
register_Ns3UniformVariable_methods(root_module, root_module['ns3::UniformVariable'])
|
|
332 |
register_Ns3Vector2D_methods(root_module, root_module['ns3::Vector2D'])
|
|
333 |
register_Ns3Vector3D_methods(root_module, root_module['ns3::Vector3D'])
|
|
334 |
register_Ns3WeibullVariable_methods(root_module, root_module['ns3::WeibullVariable'])
|
|
335 |
register_Ns3ZetaVariable_methods(root_module, root_module['ns3::ZetaVariable'])
|
|
336 |
register_Ns3ZipfVariable_methods(root_module, root_module['ns3::ZipfVariable'])
|
|
337 |
register_Ns3Empty_methods(root_module, root_module['ns3::empty'])
|
|
338 |
register_Ns3Int64x64_t_methods(root_module, root_module['ns3::int64x64_t'])
|
|
339 |
register_Ns3ConstantVariable_methods(root_module, root_module['ns3::ConstantVariable'])
|
|
340 |
register_Ns3DeterministicVariable_methods(root_module, root_module['ns3::DeterministicVariable'])
|
|
341 |
register_Ns3EmpiricalVariable_methods(root_module, root_module['ns3::EmpiricalVariable'])
|
|
342 |
register_Ns3ErlangVariable_methods(root_module, root_module['ns3::ErlangVariable'])
|
|
343 |
register_Ns3ExponentialVariable_methods(root_module, root_module['ns3::ExponentialVariable'])
|
|
344 |
register_Ns3GammaVariable_methods(root_module, root_module['ns3::GammaVariable'])
|
|
345 |
register_Ns3IntEmpiricalVariable_methods(root_module, root_module['ns3::IntEmpiricalVariable'])
|
|
346 |
register_Ns3LogNormalVariable_methods(root_module, root_module['ns3::LogNormalVariable'])
|
|
347 |
register_Ns3NormalVariable_methods(root_module, root_module['ns3::NormalVariable'])
|
|
348 |
register_Ns3Object_methods(root_module, root_module['ns3::Object'])
|
|
349 |
register_Ns3ObjectAggregateIterator_methods(root_module, root_module['ns3::Object::AggregateIterator'])
|
|
350 |
register_Ns3ParetoVariable_methods(root_module, root_module['ns3::ParetoVariable'])
|
|
351 |
register_Ns3PositionAllocator_methods(root_module, root_module['ns3::PositionAllocator'])
|
|
352 |
register_Ns3PropagationLossModel_methods(root_module, root_module['ns3::PropagationLossModel'])
|
|
353 |
register_Ns3RandomBoxPositionAllocator_methods(root_module, root_module['ns3::RandomBoxPositionAllocator'])
|
|
354 |
register_Ns3RandomBuildingPositionAllocator_methods(root_module, root_module['ns3::RandomBuildingPositionAllocator'])
|
|
355 |
register_Ns3RandomDiscPositionAllocator_methods(root_module, root_module['ns3::RandomDiscPositionAllocator'])
|
|
356 |
register_Ns3RandomPropagationLossModel_methods(root_module, root_module['ns3::RandomPropagationLossModel'])
|
|
357 |
register_Ns3RandomRectanglePositionAllocator_methods(root_module, root_module['ns3::RandomRectanglePositionAllocator'])
|
|
358 |
register_Ns3RandomRoomPositionAllocator_methods(root_module, root_module['ns3::RandomRoomPositionAllocator'])
|
|
359 |
register_Ns3RangePropagationLossModel_methods(root_module, root_module['ns3::RangePropagationLossModel'])
|
|
360 |
register_Ns3SameRoomPositionAllocator_methods(root_module, root_module['ns3::SameRoomPositionAllocator'])
|
|
361 |
register_Ns3SimpleRefCount__Ns3AttributeAccessor_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeAccessor__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> >'])
|
|
362 |
register_Ns3SimpleRefCount__Ns3AttributeChecker_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeChecker__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter<ns3::AttributeChecker> >'])
|
|
363 |
register_Ns3SimpleRefCount__Ns3AttributeValue_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeValue__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter<ns3::AttributeValue> >'])
|
|
364 |
register_Ns3SimpleRefCount__Ns3CallbackImplBase_Ns3Empty_Ns3DefaultDeleter__lt__ns3CallbackImplBase__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> >'])
|
|
365 |
register_Ns3SimpleRefCount__Ns3TraceSourceAccessor_Ns3Empty_Ns3DefaultDeleter__lt__ns3TraceSourceAccessor__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter<ns3::TraceSourceAccessor> >'])
|
|
366 |
register_Ns3ThreeLogDistancePropagationLossModel_methods(root_module, root_module['ns3::ThreeLogDistancePropagationLossModel'])
|
|
367 |
register_Ns3Time_methods(root_module, root_module['ns3::Time'])
|
|
368 |
register_Ns3TraceSourceAccessor_methods(root_module, root_module['ns3::TraceSourceAccessor'])
|
|
369 |
register_Ns3TwoRayGroundPropagationLossModel_methods(root_module, root_module['ns3::TwoRayGroundPropagationLossModel'])
|
|
370 |
register_Ns3UniformDiscPositionAllocator_methods(root_module, root_module['ns3::UniformDiscPositionAllocator'])
|
|
371 |
register_Ns3AttributeAccessor_methods(root_module, root_module['ns3::AttributeAccessor'])
|
|
372 |
register_Ns3AttributeChecker_methods(root_module, root_module['ns3::AttributeChecker'])
|
|
373 |
register_Ns3AttributeValue_methods(root_module, root_module['ns3::AttributeValue'])
|
|
374 |
register_Ns3BoxChecker_methods(root_module, root_module['ns3::BoxChecker'])
|
|
375 |
register_Ns3BoxValue_methods(root_module, root_module['ns3::BoxValue'])
|
|
376 |
register_Ns3Building_methods(root_module, root_module['ns3::Building'])
|
|
377 |
register_Ns3BuildingsPropagationLossModel_methods(root_module, root_module['ns3::BuildingsPropagationLossModel'])
|
|
378 |
register_Ns3CallbackChecker_methods(root_module, root_module['ns3::CallbackChecker'])
|
|
379 |
register_Ns3CallbackImplBase_methods(root_module, root_module['ns3::CallbackImplBase'])
|
|
380 |
register_Ns3CallbackValue_methods(root_module, root_module['ns3::CallbackValue'])
|
|
381 |
register_Ns3EmptyAttributeValue_methods(root_module, root_module['ns3::EmptyAttributeValue'])
|
|
382 |
register_Ns3FixedRssLossModel_methods(root_module, root_module['ns3::FixedRssLossModel'])
|
|
383 |
register_Ns3FriisPropagationLossModel_methods(root_module, root_module['ns3::FriisPropagationLossModel'])
|
|
384 |
register_Ns3GridBuildingAllocator_methods(root_module, root_module['ns3::GridBuildingAllocator'])
|
|
385 |
register_Ns3GridPositionAllocator_methods(root_module, root_module['ns3::GridPositionAllocator'])
|
|
386 |
register_Ns3HybridBuildingsPropagationLossModel_methods(root_module, root_module['ns3::HybridBuildingsPropagationLossModel'])
|
|
387 |
register_Ns3Ipv4AddressChecker_methods(root_module, root_module['ns3::Ipv4AddressChecker'])
|
|
388 |
register_Ns3Ipv4AddressValue_methods(root_module, root_module['ns3::Ipv4AddressValue'])
|
|
389 |
register_Ns3Ipv4MaskChecker_methods(root_module, root_module['ns3::Ipv4MaskChecker'])
|
|
390 |
register_Ns3Ipv4MaskValue_methods(root_module, root_module['ns3::Ipv4MaskValue'])
|
|
391 |
register_Ns3Ipv6AddressChecker_methods(root_module, root_module['ns3::Ipv6AddressChecker'])
|
|
392 |
register_Ns3Ipv6AddressValue_methods(root_module, root_module['ns3::Ipv6AddressValue'])
|
|
393 |
register_Ns3Ipv6PrefixChecker_methods(root_module, root_module['ns3::Ipv6PrefixChecker'])
|
|
394 |
register_Ns3Ipv6PrefixValue_methods(root_module, root_module['ns3::Ipv6PrefixValue'])
|
|
395 |
register_Ns3ItuR1238PropagationLossModel_methods(root_module, root_module['ns3::ItuR1238PropagationLossModel'])
|
|
396 |
register_Ns3ListPositionAllocator_methods(root_module, root_module['ns3::ListPositionAllocator'])
|
|
397 |
register_Ns3LogDistancePropagationLossModel_methods(root_module, root_module['ns3::LogDistancePropagationLossModel'])
|
|
398 |
register_Ns3MatrixPropagationLossModel_methods(root_module, root_module['ns3::MatrixPropagationLossModel'])
|
|
399 |
register_Ns3MobilityModel_methods(root_module, root_module['ns3::MobilityModel'])
|
|
400 |
register_Ns3NakagamiPropagationLossModel_methods(root_module, root_module['ns3::NakagamiPropagationLossModel'])
|
|
401 |
register_Ns3NetDevice_methods(root_module, root_module['ns3::NetDevice'])
|
|
402 |
register_Ns3Node_methods(root_module, root_module['ns3::Node'])
|
|
403 |
register_Ns3ObjectFactoryChecker_methods(root_module, root_module['ns3::ObjectFactoryChecker'])
|
|
404 |
register_Ns3ObjectFactoryValue_methods(root_module, root_module['ns3::ObjectFactoryValue'])
|
|
405 |
register_Ns3OhBuildingsPropagationLossModel_methods(root_module, root_module['ns3::OhBuildingsPropagationLossModel'])
|
|
406 |
register_Ns3RandomVariableChecker_methods(root_module, root_module['ns3::RandomVariableChecker'])
|
|
407 |
register_Ns3RandomVariableValue_methods(root_module, root_module['ns3::RandomVariableValue'])
|
|
408 |
register_Ns3TimeChecker_methods(root_module, root_module['ns3::TimeChecker'])
|
|
409 |
register_Ns3TimeValue_methods(root_module, root_module['ns3::TimeValue'])
|
|
410 |
register_Ns3TypeIdChecker_methods(root_module, root_module['ns3::TypeIdChecker'])
|
|
411 |
register_Ns3TypeIdValue_methods(root_module, root_module['ns3::TypeIdValue'])
|
|
412 |
register_Ns3Vector2DChecker_methods(root_module, root_module['ns3::Vector2DChecker'])
|
|
413 |
register_Ns3Vector2DValue_methods(root_module, root_module['ns3::Vector2DValue'])
|
|
414 |
register_Ns3Vector3DChecker_methods(root_module, root_module['ns3::Vector3DChecker'])
|
|
415 |
register_Ns3Vector3DValue_methods(root_module, root_module['ns3::Vector3DValue'])
|
|
416 |
register_Ns3AddressChecker_methods(root_module, root_module['ns3::AddressChecker'])
|
|
417 |
register_Ns3AddressValue_methods(root_module, root_module['ns3::AddressValue'])
|
|
418 |
register_Ns3BuildingsMobilityModel_methods(root_module, root_module['ns3::BuildingsMobilityModel'])
|
|
419 |
return
|
|
420 |
|
|
421 |
def register_Ns3Address_methods(root_module, cls):
|
|
422 |
cls.add_binary_comparison_operator('<')
|
|
423 |
cls.add_binary_comparison_operator('!=')
|
|
424 |
cls.add_output_stream_operator()
|
|
425 |
cls.add_binary_comparison_operator('==')
|
|
426 |
## address.h (module 'network'): ns3::Address::Address() [constructor]
|
|
427 |
cls.add_constructor([])
|
|
428 |
## address.h (module 'network'): ns3::Address::Address(uint8_t type, uint8_t const * buffer, uint8_t len) [constructor]
|
|
429 |
cls.add_constructor([param('uint8_t', 'type'), param('uint8_t const *', 'buffer'), param('uint8_t', 'len')])
|
|
430 |
## address.h (module 'network'): ns3::Address::Address(ns3::Address const & address) [copy constructor]
|
|
431 |
cls.add_constructor([param('ns3::Address const &', 'address')])
|
|
432 |
## address.h (module 'network'): bool ns3::Address::CheckCompatible(uint8_t type, uint8_t len) const [member function]
|
|
433 |
cls.add_method('CheckCompatible',
|
|
434 |
'bool',
|
|
435 |
[param('uint8_t', 'type'), param('uint8_t', 'len')],
|
|
436 |
is_const=True)
|
|
437 |
## address.h (module 'network'): uint32_t ns3::Address::CopyAllFrom(uint8_t const * buffer, uint8_t len) [member function]
|
|
438 |
cls.add_method('CopyAllFrom',
|
|
439 |
'uint32_t',
|
|
440 |
[param('uint8_t const *', 'buffer'), param('uint8_t', 'len')])
|
|
441 |
## address.h (module 'network'): uint32_t ns3::Address::CopyAllTo(uint8_t * buffer, uint8_t len) const [member function]
|
|
442 |
cls.add_method('CopyAllTo',
|
|
443 |
'uint32_t',
|
|
444 |
[param('uint8_t *', 'buffer'), param('uint8_t', 'len')],
|
|
445 |
is_const=True)
|
|
446 |
## address.h (module 'network'): uint32_t ns3::Address::CopyFrom(uint8_t const * buffer, uint8_t len) [member function]
|
|
447 |
cls.add_method('CopyFrom',
|
|
448 |
'uint32_t',
|
|
449 |
[param('uint8_t const *', 'buffer'), param('uint8_t', 'len')])
|
|
450 |
## address.h (module 'network'): uint32_t ns3::Address::CopyTo(uint8_t * buffer) const [member function]
|
|
451 |
cls.add_method('CopyTo',
|
|
452 |
'uint32_t',
|
|
453 |
[param('uint8_t *', 'buffer')],
|
|
454 |
is_const=True)
|
|
455 |
## address.h (module 'network'): void ns3::Address::Deserialize(ns3::TagBuffer buffer) [member function]
|
|
456 |
cls.add_method('Deserialize',
|
|
457 |
'void',
|
|
458 |
[param('ns3::TagBuffer', 'buffer')])
|
|
459 |
## address.h (module 'network'): uint8_t ns3::Address::GetLength() const [member function]
|
|
460 |
cls.add_method('GetLength',
|
|
461 |
'uint8_t',
|
|
462 |
[],
|
|
463 |
is_const=True)
|
|
464 |
## address.h (module 'network'): uint32_t ns3::Address::GetSerializedSize() const [member function]
|
|
465 |
cls.add_method('GetSerializedSize',
|
|
466 |
'uint32_t',
|
|
467 |
[],
|
|
468 |
is_const=True)
|
|
469 |
## address.h (module 'network'): bool ns3::Address::IsInvalid() const [member function]
|
|
470 |
cls.add_method('IsInvalid',
|
|
471 |
'bool',
|
|
472 |
[],
|
|
473 |
is_const=True)
|
|
474 |
## address.h (module 'network'): bool ns3::Address::IsMatchingType(uint8_t type) const [member function]
|
|
475 |
cls.add_method('IsMatchingType',
|
|
476 |
'bool',
|
|
477 |
[param('uint8_t', 'type')],
|
|
478 |
is_const=True)
|
|
479 |
## address.h (module 'network'): static uint8_t ns3::Address::Register() [member function]
|
|
480 |
cls.add_method('Register',
|
|
481 |
'uint8_t',
|
|
482 |
[],
|
|
483 |
is_static=True)
|
|
484 |
## address.h (module 'network'): void ns3::Address::Serialize(ns3::TagBuffer buffer) const [member function]
|
|
485 |
cls.add_method('Serialize',
|
|
486 |
'void',
|
|
487 |
[param('ns3::TagBuffer', 'buffer')],
|
|
488 |
is_const=True)
|
|
489 |
return
|
|
490 |
|
|
491 |
def register_Ns3AttributeConstructionList_methods(root_module, cls):
|
|
492 |
## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::AttributeConstructionList(ns3::AttributeConstructionList const & arg0) [copy constructor]
|
|
493 |
cls.add_constructor([param('ns3::AttributeConstructionList const &', 'arg0')])
|
|
494 |
## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::AttributeConstructionList() [constructor]
|
|
495 |
cls.add_constructor([])
|
|
496 |
## 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]
|
|
497 |
cls.add_method('Add',
|
|
498 |
'void',
|
|
499 |
[param('std::string', 'name'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker'), param('ns3::Ptr< ns3::AttributeValue >', 'value')])
|
|
500 |
## attribute-construction-list.h (module 'core'): std::_List_const_iterator<ns3::AttributeConstructionList::Item> ns3::AttributeConstructionList::Begin() const [member function]
|
|
501 |
cls.add_method('Begin',
|
|
502 |
'std::_List_const_iterator< ns3::AttributeConstructionList::Item >',
|
|
503 |
[],
|
|
504 |
is_const=True)
|
|
505 |
## attribute-construction-list.h (module 'core'): std::_List_const_iterator<ns3::AttributeConstructionList::Item> ns3::AttributeConstructionList::End() const [member function]
|
|
506 |
cls.add_method('End',
|
|
507 |
'std::_List_const_iterator< ns3::AttributeConstructionList::Item >',
|
|
508 |
[],
|
|
509 |
is_const=True)
|
|
510 |
## attribute-construction-list.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::AttributeConstructionList::Find(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
|
|
511 |
cls.add_method('Find',
|
|
512 |
'ns3::Ptr< ns3::AttributeValue >',
|
|
513 |
[param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
|
|
514 |
is_const=True)
|
|
515 |
return
|
|
516 |
|
|
517 |
def register_Ns3AttributeConstructionListItem_methods(root_module, cls):
|
|
518 |
## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item::Item() [constructor]
|
|
519 |
cls.add_constructor([])
|
|
520 |
## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item::Item(ns3::AttributeConstructionList::Item const & arg0) [copy constructor]
|
|
521 |
cls.add_constructor([param('ns3::AttributeConstructionList::Item const &', 'arg0')])
|
|
522 |
## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item::checker [variable]
|
|
523 |
cls.add_instance_attribute('checker', 'ns3::Ptr< ns3::AttributeChecker const >', is_const=False)
|
|
524 |
## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item::name [variable]
|
|
525 |
cls.add_instance_attribute('name', 'std::string', is_const=False)
|
|
526 |
## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item::value [variable]
|
|
527 |
cls.add_instance_attribute('value', 'ns3::Ptr< ns3::AttributeValue >', is_const=False)
|
|
528 |
return
|
|
529 |
|
|
530 |
def register_Ns3Box_methods(root_module, cls):
|
|
531 |
cls.add_output_stream_operator()
|
|
532 |
## box.h (module 'mobility'): ns3::Box::Box(ns3::Box const & arg0) [copy constructor]
|
|
533 |
cls.add_constructor([param('ns3::Box const &', 'arg0')])
|
|
534 |
## box.h (module 'mobility'): ns3::Box::Box(double _xMin, double _xMax, double _yMin, double _yMax, double _zMin, double _zMax) [constructor]
|
|
535 |
cls.add_constructor([param('double', '_xMin'), param('double', '_xMax'), param('double', '_yMin'), param('double', '_yMax'), param('double', '_zMin'), param('double', '_zMax')])
|
|
536 |
## box.h (module 'mobility'): ns3::Box::Box() [constructor]
|
|
537 |
cls.add_constructor([])
|
|
538 |
## box.h (module 'mobility'): ns3::Vector ns3::Box::CalculateIntersection(ns3::Vector const & current, ns3::Vector const & speed) const [member function]
|
|
539 |
cls.add_method('CalculateIntersection',
|
|
540 |
'ns3::Vector',
|
|
541 |
[param('ns3::Vector const &', 'current'), param('ns3::Vector const &', 'speed')],
|
|
542 |
is_const=True)
|
|
543 |
## box.h (module 'mobility'): ns3::Box::Side ns3::Box::GetClosestSide(ns3::Vector const & position) const [member function]
|
|
544 |
cls.add_method('GetClosestSide',
|
|
545 |
'ns3::Box::Side',
|
|
546 |
[param('ns3::Vector const &', 'position')],
|
|
547 |
is_const=True)
|
|
548 |
## box.h (module 'mobility'): bool ns3::Box::IsInside(ns3::Vector const & position) const [member function]
|
|
549 |
cls.add_method('IsInside',
|
|
550 |
'bool',
|
|
551 |
[param('ns3::Vector const &', 'position')],
|
|
552 |
is_const=True)
|
|
553 |
## box.h (module 'mobility'): ns3::Box::xMax [variable]
|
|
554 |
cls.add_instance_attribute('xMax', 'double', is_const=False)
|
|
555 |
## box.h (module 'mobility'): ns3::Box::xMin [variable]
|
|
556 |
cls.add_instance_attribute('xMin', 'double', is_const=False)
|
|
557 |
## box.h (module 'mobility'): ns3::Box::yMax [variable]
|
|
558 |
cls.add_instance_attribute('yMax', 'double', is_const=False)
|
|
559 |
## box.h (module 'mobility'): ns3::Box::yMin [variable]
|
|
560 |
cls.add_instance_attribute('yMin', 'double', is_const=False)
|
|
561 |
## box.h (module 'mobility'): ns3::Box::zMax [variable]
|
|
562 |
cls.add_instance_attribute('zMax', 'double', is_const=False)
|
|
563 |
## box.h (module 'mobility'): ns3::Box::zMin [variable]
|
|
564 |
cls.add_instance_attribute('zMin', 'double', is_const=False)
|
|
565 |
return
|
|
566 |
|
|
567 |
def register_Ns3BuildingContainer_methods(root_module, cls):
|
|
568 |
## building-container.h (module 'buildings'): ns3::BuildingContainer::BuildingContainer(ns3::BuildingContainer const & arg0) [copy constructor]
|
|
569 |
cls.add_constructor([param('ns3::BuildingContainer const &', 'arg0')])
|
|
570 |
## building-container.h (module 'buildings'): ns3::BuildingContainer::BuildingContainer() [constructor]
|
|
571 |
cls.add_constructor([])
|
|
572 |
## building-container.h (module 'buildings'): ns3::BuildingContainer::BuildingContainer(ns3::Ptr<ns3::Building> building) [constructor]
|
|
573 |
cls.add_constructor([param('ns3::Ptr< ns3::Building >', 'building')])
|
|
574 |
## building-container.h (module 'buildings'): ns3::BuildingContainer::BuildingContainer(std::string buildingName) [constructor]
|
|
575 |
cls.add_constructor([param('std::string', 'buildingName')])
|
|
576 |
## building-container.h (module 'buildings'): void ns3::BuildingContainer::Add(ns3::BuildingContainer other) [member function]
|
|
577 |
cls.add_method('Add',
|
|
578 |
'void',
|
|
579 |
[param('ns3::BuildingContainer', 'other')])
|
|
580 |
## building-container.h (module 'buildings'): void ns3::BuildingContainer::Add(ns3::Ptr<ns3::Building> building) [member function]
|
|
581 |
cls.add_method('Add',
|
|
582 |
'void',
|
|
583 |
[param('ns3::Ptr< ns3::Building >', 'building')])
|
|
584 |
## building-container.h (module 'buildings'): void ns3::BuildingContainer::Add(std::string buildingName) [member function]
|
|
585 |
cls.add_method('Add',
|
|
586 |
'void',
|
|
587 |
[param('std::string', 'buildingName')])
|
|
588 |
## 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]
|
|
589 |
cls.add_method('Begin',
|
|
590 |
'__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Building > const, std::vector< ns3::Ptr< ns3::Building > > >',
|
|
591 |
[],
|
|
592 |
is_const=True)
|
|
593 |
## building-container.h (module 'buildings'): void ns3::BuildingContainer::Create(uint32_t n) [member function]
|
|
594 |
cls.add_method('Create',
|
|
595 |
'void',
|
|
596 |
[param('uint32_t', 'n')])
|
|
597 |
## 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]
|
|
598 |
cls.add_method('End',
|
|
599 |
'__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Building > const, std::vector< ns3::Ptr< ns3::Building > > >',
|
|
600 |
[],
|
|
601 |
is_const=True)
|
|
602 |
## building-container.h (module 'buildings'): ns3::Ptr<ns3::Building> ns3::BuildingContainer::Get(uint32_t i) const [member function]
|
|
603 |
cls.add_method('Get',
|
|
604 |
'ns3::Ptr< ns3::Building >',
|
|
605 |
[param('uint32_t', 'i')],
|
|
606 |
is_const=True)
|
|
607 |
## building-container.h (module 'buildings'): static ns3::BuildingContainer ns3::BuildingContainer::GetGlobal() [member function]
|
|
608 |
cls.add_method('GetGlobal',
|
|
609 |
'ns3::BuildingContainer',
|
|
610 |
[],
|
|
611 |
is_static=True)
|
|
612 |
## building-container.h (module 'buildings'): uint32_t ns3::BuildingContainer::GetN() const [member function]
|
|
613 |
cls.add_method('GetN',
|
|
614 |
'uint32_t',
|
|
615 |
[],
|
|
616 |
is_const=True)
|
|
617 |
return
|
|
618 |
|
|
619 |
def register_Ns3BuildingList_methods(root_module, cls):
|
|
620 |
## building-list.h (module 'buildings'): ns3::BuildingList::BuildingList() [constructor]
|
|
621 |
cls.add_constructor([])
|
|
622 |
## building-list.h (module 'buildings'): ns3::BuildingList::BuildingList(ns3::BuildingList const & arg0) [copy constructor]
|
|
623 |
cls.add_constructor([param('ns3::BuildingList const &', 'arg0')])
|
|
624 |
## building-list.h (module 'buildings'): static uint32_t ns3::BuildingList::Add(ns3::Ptr<ns3::Building> building) [member function]
|
|
625 |
cls.add_method('Add',
|
|
626 |
'uint32_t',
|
|
627 |
[param('ns3::Ptr< ns3::Building >', 'building')],
|
|
628 |
is_static=True)
|
|
629 |
## 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]
|
|
630 |
cls.add_method('Begin',
|
|
631 |
'__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Building > const, std::vector< ns3::Ptr< ns3::Building > > >',
|
|
632 |
[],
|
|
633 |
is_static=True)
|
|
634 |
## 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]
|
|
635 |
cls.add_method('End',
|
|
636 |
'__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Building > const, std::vector< ns3::Ptr< ns3::Building > > >',
|
|
637 |
[],
|
|
638 |
is_static=True)
|
|
639 |
## building-list.h (module 'buildings'): static ns3::Ptr<ns3::Building> ns3::BuildingList::GetBuilding(uint32_t n) [member function]
|
|
640 |
cls.add_method('GetBuilding',
|
|
641 |
'ns3::Ptr< ns3::Building >',
|
|
642 |
[param('uint32_t', 'n')],
|
|
643 |
is_static=True)
|
|
644 |
## building-list.h (module 'buildings'): static uint32_t ns3::BuildingList::GetNBuildings() [member function]
|
|
645 |
cls.add_method('GetNBuildings',
|
|
646 |
'uint32_t',
|
|
647 |
[],
|
|
648 |
is_static=True)
|
|
649 |
return
|
|
650 |
|
|
651 |
def register_Ns3BuildingsHelper_methods(root_module, cls):
|
|
652 |
## buildings-helper.h (module 'buildings'): ns3::BuildingsHelper::BuildingsHelper() [constructor]
|
|
653 |
cls.add_constructor([])
|
|
654 |
## buildings-helper.h (module 'buildings'): ns3::BuildingsHelper::BuildingsHelper(ns3::BuildingsHelper const & arg0) [copy constructor]
|
|
655 |
cls.add_constructor([param('ns3::BuildingsHelper const &', 'arg0')])
|
|
656 |
## buildings-helper.h (module 'buildings'): static void ns3::BuildingsHelper::MakeConsistent(ns3::Ptr<ns3::BuildingsMobilityModel> bmm) [member function]
|
|
657 |
cls.add_method('MakeConsistent',
|
|
658 |
'void',
|
|
659 |
[param('ns3::Ptr< ns3::BuildingsMobilityModel >', 'bmm')],
|
|
660 |
is_static=True)
|
|
661 |
## buildings-helper.h (module 'buildings'): static void ns3::BuildingsHelper::MakeMobilityModelConsistent() [member function]
|
|
662 |
cls.add_method('MakeMobilityModelConsistent',
|
|
663 |
'void',
|
|
664 |
[],
|
|
665 |
is_static=True)
|
|
666 |
return
|
|
667 |
|
|
668 |
def register_Ns3CallbackBase_methods(root_module, cls):
|
|
669 |
## callback.h (module 'core'): ns3::CallbackBase::CallbackBase(ns3::CallbackBase const & arg0) [copy constructor]
|
|
670 |
cls.add_constructor([param('ns3::CallbackBase const &', 'arg0')])
|
|
671 |
## callback.h (module 'core'): ns3::CallbackBase::CallbackBase() [constructor]
|
|
672 |
cls.add_constructor([])
|
|
673 |
## callback.h (module 'core'): ns3::Ptr<ns3::CallbackImplBase> ns3::CallbackBase::GetImpl() const [member function]
|
|
674 |
cls.add_method('GetImpl',
|
|
675 |
'ns3::Ptr< ns3::CallbackImplBase >',
|
|
676 |
[],
|
|
677 |
is_const=True)
|
|
678 |
## callback.h (module 'core'): ns3::CallbackBase::CallbackBase(ns3::Ptr<ns3::CallbackImplBase> impl) [constructor]
|
|
679 |
cls.add_constructor([param('ns3::Ptr< ns3::CallbackImplBase >', 'impl')],
|
|
680 |
visibility='protected')
|
|
681 |
## callback.h (module 'core'): static std::string ns3::CallbackBase::Demangle(std::string const & mangled) [member function]
|
|
682 |
cls.add_method('Demangle',
|
|
683 |
'std::string',
|
|
684 |
[param('std::string const &', 'mangled')],
|
|
685 |
is_static=True, visibility='protected')
|
|
686 |
return
|
|
687 |
|
|
688 |
def register_Ns3ConstantVelocityHelper_methods(root_module, cls):
|
|
689 |
## constant-velocity-helper.h (module 'mobility'): ns3::ConstantVelocityHelper::ConstantVelocityHelper(ns3::ConstantVelocityHelper const & arg0) [copy constructor]
|
|
690 |
cls.add_constructor([param('ns3::ConstantVelocityHelper const &', 'arg0')])
|
|
691 |
## constant-velocity-helper.h (module 'mobility'): ns3::ConstantVelocityHelper::ConstantVelocityHelper() [constructor]
|
|
692 |
cls.add_constructor([])
|
|
693 |
## constant-velocity-helper.h (module 'mobility'): ns3::ConstantVelocityHelper::ConstantVelocityHelper(ns3::Vector const & position) [constructor]
|
|
694 |
cls.add_constructor([param('ns3::Vector const &', 'position')])
|
|
695 |
## constant-velocity-helper.h (module 'mobility'): ns3::ConstantVelocityHelper::ConstantVelocityHelper(ns3::Vector const & position, ns3::Vector const & vel) [constructor]
|
|
696 |
cls.add_constructor([param('ns3::Vector const &', 'position'), param('ns3::Vector const &', 'vel')])
|
|
697 |
## constant-velocity-helper.h (module 'mobility'): ns3::Vector ns3::ConstantVelocityHelper::GetCurrentPosition() const [member function]
|
|
698 |
cls.add_method('GetCurrentPosition',
|
|
699 |
'ns3::Vector',
|
|
700 |
[],
|
|
701 |
is_const=True)
|
|
702 |
## constant-velocity-helper.h (module 'mobility'): ns3::Vector ns3::ConstantVelocityHelper::GetVelocity() const [member function]
|
|
703 |
cls.add_method('GetVelocity',
|
|
704 |
'ns3::Vector',
|
|
705 |
[],
|
|
706 |
is_const=True)
|
|
707 |
## constant-velocity-helper.h (module 'mobility'): void ns3::ConstantVelocityHelper::Pause() [member function]
|
|
708 |
cls.add_method('Pause',
|
|
709 |
'void',
|
|
710 |
[])
|
|
711 |
## constant-velocity-helper.h (module 'mobility'): void ns3::ConstantVelocityHelper::SetPosition(ns3::Vector const & position) [member function]
|
|
712 |
cls.add_method('SetPosition',
|
|
713 |
'void',
|
|
714 |
[param('ns3::Vector const &', 'position')])
|
|
715 |
## constant-velocity-helper.h (module 'mobility'): void ns3::ConstantVelocityHelper::SetVelocity(ns3::Vector const & vel) [member function]
|
|
716 |
cls.add_method('SetVelocity',
|
|
717 |
'void',
|
|
718 |
[param('ns3::Vector const &', 'vel')])
|
|
719 |
## constant-velocity-helper.h (module 'mobility'): void ns3::ConstantVelocityHelper::Unpause() [member function]
|
|
720 |
cls.add_method('Unpause',
|
|
721 |
'void',
|
|
722 |
[])
|
|
723 |
## constant-velocity-helper.h (module 'mobility'): void ns3::ConstantVelocityHelper::Update() const [member function]
|
|
724 |
cls.add_method('Update',
|
|
725 |
'void',
|
|
726 |
[],
|
|
727 |
is_const=True)
|
|
728 |
## constant-velocity-helper.h (module 'mobility'): void ns3::ConstantVelocityHelper::UpdateWithBounds(ns3::Rectangle const & rectangle) const [member function]
|
|
729 |
cls.add_method('UpdateWithBounds',
|
|
730 |
'void',
|
|
731 |
[param('ns3::Rectangle const &', 'rectangle')],
|
|
732 |
is_const=True)
|
|
733 |
## constant-velocity-helper.h (module 'mobility'): void ns3::ConstantVelocityHelper::UpdateWithBounds(ns3::Box const & bounds) const [member function]
|
|
734 |
cls.add_method('UpdateWithBounds',
|
|
735 |
'void',
|
|
736 |
[param('ns3::Box const &', 'bounds')],
|
|
737 |
is_const=True)
|
|
738 |
return
|
|
739 |
|
|
740 |
def register_Ns3Ipv4Address_methods(root_module, cls):
|
|
741 |
cls.add_binary_comparison_operator('<')
|
|
742 |
cls.add_binary_comparison_operator('!=')
|
|
743 |
cls.add_output_stream_operator()
|
|
744 |
cls.add_binary_comparison_operator('==')
|
|
745 |
## ipv4-address.h (module 'network'): ns3::Ipv4Address::Ipv4Address(ns3::Ipv4Address const & arg0) [copy constructor]
|
|
746 |
cls.add_constructor([param('ns3::Ipv4Address const &', 'arg0')])
|
|
747 |
## ipv4-address.h (module 'network'): ns3::Ipv4Address::Ipv4Address() [constructor]
|
|
748 |
cls.add_constructor([])
|
|
749 |
## ipv4-address.h (module 'network'): ns3::Ipv4Address::Ipv4Address(uint32_t address) [constructor]
|
|
750 |
cls.add_constructor([param('uint32_t', 'address')])
|
|
751 |
## ipv4-address.h (module 'network'): ns3::Ipv4Address::Ipv4Address(char const * address) [constructor]
|
|
752 |
cls.add_constructor([param('char const *', 'address')])
|
|
753 |
## ipv4-address.h (module 'network'): ns3::Ipv4Address ns3::Ipv4Address::CombineMask(ns3::Ipv4Mask const & mask) const [member function]
|
|
754 |
cls.add_method('CombineMask',
|
|
755 |
'ns3::Ipv4Address',
|
|
756 |
[param('ns3::Ipv4Mask const &', 'mask')],
|
|
757 |
is_const=True)
|
|
758 |
## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::ConvertFrom(ns3::Address const & address) [member function]
|
|
759 |
cls.add_method('ConvertFrom',
|
|
760 |
'ns3::Ipv4Address',
|
|
761 |
[param('ns3::Address const &', 'address')],
|
|
762 |
is_static=True)
|
|
763 |
## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::Deserialize(uint8_t const * buf) [member function]
|
|
764 |
cls.add_method('Deserialize',
|
|
765 |
'ns3::Ipv4Address',
|
|
766 |
[param('uint8_t const *', 'buf')],
|
|
767 |
is_static=True)
|
|
768 |
## ipv4-address.h (module 'network'): uint32_t ns3::Ipv4Address::Get() const [member function]
|
|
769 |
cls.add_method('Get',
|
|
770 |
'uint32_t',
|
|
771 |
[],
|
|
772 |
is_const=True)
|
|
773 |
## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::GetAny() [member function]
|
|
774 |
cls.add_method('GetAny',
|
|
775 |
'ns3::Ipv4Address',
|
|
776 |
[],
|
|
777 |
is_static=True)
|
|
778 |
## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::GetBroadcast() [member function]
|
|
779 |
cls.add_method('GetBroadcast',
|
|
780 |
'ns3::Ipv4Address',
|
|
781 |
[],
|
|
782 |
is_static=True)
|
|
783 |
## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::GetLoopback() [member function]
|
|
784 |
cls.add_method('GetLoopback',
|
|
785 |
'ns3::Ipv4Address',
|
|
786 |
[],
|
|
787 |
is_static=True)
|
|
788 |
## ipv4-address.h (module 'network'): ns3::Ipv4Address ns3::Ipv4Address::GetSubnetDirectedBroadcast(ns3::Ipv4Mask const & mask) const [member function]
|
|
789 |
cls.add_method('GetSubnetDirectedBroadcast',
|
|
790 |
'ns3::Ipv4Address',
|
|
791 |
[param('ns3::Ipv4Mask const &', 'mask')],
|
|
792 |
is_const=True)
|
|
793 |
## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::GetZero() [member function]
|
|
794 |
cls.add_method('GetZero',
|
|
795 |
'ns3::Ipv4Address',
|
|
796 |
[],
|
|
797 |
is_static=True)
|
|
798 |
## ipv4-address.h (module 'network'): bool ns3::Ipv4Address::IsBroadcast() const [member function]
|
|
799 |
cls.add_method('IsBroadcast',
|
|
800 |
'bool',
|
|
801 |
[],
|
|
802 |
is_const=True)
|
|
803 |
## ipv4-address.h (module 'network'): bool ns3::Ipv4Address::IsEqual(ns3::Ipv4Address const & other) const [member function]
|
|
804 |
cls.add_method('IsEqual',
|
|
805 |
'bool',
|
|
806 |
[param('ns3::Ipv4Address const &', 'other')],
|
|
807 |
is_const=True)
|
|
808 |
## ipv4-address.h (module 'network'): bool ns3::Ipv4Address::IsLocalMulticast() const [member function]
|
|
809 |
cls.add_method('IsLocalMulticast',
|
|
810 |
'bool',
|
|
811 |
[],
|
|
812 |
is_const=True)
|
|
813 |
## ipv4-address.h (module 'network'): static bool ns3::Ipv4Address::IsMatchingType(ns3::Address const & address) [member function]
|
|
814 |
cls.add_method('IsMatchingType',
|
|
815 |
'bool',
|
|
816 |
[param('ns3::Address const &', 'address')],
|
|
817 |
is_static=True)
|
|
818 |
## ipv4-address.h (module 'network'): bool ns3::Ipv4Address::IsMulticast() const [member function]
|
|
819 |
cls.add_method('IsMulticast',
|
|
820 |
'bool',
|
|
821 |
[],
|
|
822 |
is_const=True)
|
|
823 |
## ipv4-address.h (module 'network'): bool ns3::Ipv4Address::IsSubnetDirectedBroadcast(ns3::Ipv4Mask const & mask) const [member function]
|
|
824 |
cls.add_method('IsSubnetDirectedBroadcast',
|
|
825 |
'bool',
|
|
826 |
[param('ns3::Ipv4Mask const &', 'mask')],
|
|
827 |
is_const=True)
|
|
828 |
## ipv4-address.h (module 'network'): void ns3::Ipv4Address::Print(std::ostream & os) const [member function]
|
|
829 |
cls.add_method('Print',
|
|
830 |
'void',
|
|
831 |
[param('std::ostream &', 'os')],
|
|
832 |
is_const=True)
|
|
833 |
## ipv4-address.h (module 'network'): void ns3::Ipv4Address::Serialize(uint8_t * buf) const [member function]
|
|
834 |
cls.add_method('Serialize',
|
|
835 |
'void',
|
|
836 |
[param('uint8_t *', 'buf')],
|
|
837 |
is_const=True)
|
|
838 |
## ipv4-address.h (module 'network'): void ns3::Ipv4Address::Set(uint32_t address) [member function]
|
|
839 |
cls.add_method('Set',
|
|
840 |
'void',
|
|
841 |
[param('uint32_t', 'address')])
|
|
842 |
## ipv4-address.h (module 'network'): void ns3::Ipv4Address::Set(char const * address) [member function]
|
|
843 |
cls.add_method('Set',
|
|
844 |
'void',
|
|
845 |
[param('char const *', 'address')])
|
|
846 |
return
|
|
847 |
|
|
848 |
def register_Ns3Ipv4Mask_methods(root_module, cls):
|
|
849 |
cls.add_binary_comparison_operator('!=')
|
|
850 |
cls.add_output_stream_operator()
|
|
851 |
cls.add_binary_comparison_operator('==')
|
|
852 |
## ipv4-address.h (module 'network'): ns3::Ipv4Mask::Ipv4Mask(ns3::Ipv4Mask const & arg0) [copy constructor]
|
|
853 |
cls.add_constructor([param('ns3::Ipv4Mask const &', 'arg0')])
|
|
854 |
## ipv4-address.h (module 'network'): ns3::Ipv4Mask::Ipv4Mask() [constructor]
|
|
855 |
cls.add_constructor([])
|
|
856 |
## ipv4-address.h (module 'network'): ns3::Ipv4Mask::Ipv4Mask(uint32_t mask) [constructor]
|
|
857 |
cls.add_constructor([param('uint32_t', 'mask')])
|
|
858 |
## ipv4-address.h (module 'network'): ns3::Ipv4Mask::Ipv4Mask(char const * mask) [constructor]
|
|
859 |
cls.add_constructor([param('char const *', 'mask')])
|
|
860 |
## ipv4-address.h (module 'network'): uint32_t ns3::Ipv4Mask::Get() const [member function]
|
|
861 |
cls.add_method('Get',
|
|
862 |
'uint32_t',
|
|
863 |
[],
|
|
864 |
is_const=True)
|
|
865 |
## ipv4-address.h (module 'network'): uint32_t ns3::Ipv4Mask::GetInverse() const [member function]
|
|
866 |
cls.add_method('GetInverse',
|
|
867 |
'uint32_t',
|
|
868 |
[],
|
|
869 |
is_const=True)
|
|
870 |
## ipv4-address.h (module 'network'): static ns3::Ipv4Mask ns3::Ipv4Mask::GetLoopback() [member function]
|
|
871 |
cls.add_method('GetLoopback',
|
|
872 |
'ns3::Ipv4Mask',
|
|
873 |
[],
|
|
874 |
is_static=True)
|
|
875 |
## ipv4-address.h (module 'network'): static ns3::Ipv4Mask ns3::Ipv4Mask::GetOnes() [member function]
|
|
876 |
cls.add_method('GetOnes',
|
|
877 |
'ns3::Ipv4Mask',
|
|
878 |
[],
|
|
879 |
is_static=True)
|
|
880 |
## ipv4-address.h (module 'network'): uint16_t ns3::Ipv4Mask::GetPrefixLength() const [member function]
|
|
881 |
cls.add_method('GetPrefixLength',
|
|
882 |
'uint16_t',
|
|
883 |
[],
|
|
884 |
is_const=True)
|
|
885 |
## ipv4-address.h (module 'network'): static ns3::Ipv4Mask ns3::Ipv4Mask::GetZero() [member function]
|
|
886 |
cls.add_method('GetZero',
|
|
887 |
'ns3::Ipv4Mask',
|
|
888 |
[],
|
|
889 |
is_static=True)
|
|
890 |
## ipv4-address.h (module 'network'): bool ns3::Ipv4Mask::IsEqual(ns3::Ipv4Mask other) const [member function]
|
|
891 |
cls.add_method('IsEqual',
|
|
892 |
'bool',
|
|
893 |
[param('ns3::Ipv4Mask', 'other')],
|
|
894 |
is_const=True)
|
|
895 |
## ipv4-address.h (module 'network'): bool ns3::Ipv4Mask::IsMatch(ns3::Ipv4Address a, ns3::Ipv4Address b) const [member function]
|
|
896 |
cls.add_method('IsMatch',
|
|
897 |
'bool',
|
|
898 |
[param('ns3::Ipv4Address', 'a'), param('ns3::Ipv4Address', 'b')],
|
|
899 |
is_const=True)
|
|
900 |
## ipv4-address.h (module 'network'): void ns3::Ipv4Mask::Print(std::ostream & os) const [member function]
|
|
901 |
cls.add_method('Print',
|
|
902 |
'void',
|
|
903 |
[param('std::ostream &', 'os')],
|
|
904 |
is_const=True)
|
|
905 |
## ipv4-address.h (module 'network'): void ns3::Ipv4Mask::Set(uint32_t mask) [member function]
|
|
906 |
cls.add_method('Set',
|
|
907 |
'void',
|
|
908 |
[param('uint32_t', 'mask')])
|
|
909 |
return
|
|
910 |
|
|
911 |
def register_Ns3Ipv6Address_methods(root_module, cls):
|
|
912 |
cls.add_binary_comparison_operator('<')
|
|
913 |
cls.add_binary_comparison_operator('!=')
|
|
914 |
cls.add_output_stream_operator()
|
|
915 |
cls.add_binary_comparison_operator('==')
|
|
916 |
## ipv6-address.h (module 'network'): ns3::Ipv6Address::Ipv6Address() [constructor]
|
|
917 |
cls.add_constructor([])
|
|
918 |
## ipv6-address.h (module 'network'): ns3::Ipv6Address::Ipv6Address(char const * address) [constructor]
|
|
919 |
cls.add_constructor([param('char const *', 'address')])
|
|
920 |
## ipv6-address.h (module 'network'): ns3::Ipv6Address::Ipv6Address(uint8_t * address) [constructor]
|
|
921 |
cls.add_constructor([param('uint8_t *', 'address')])
|
|
922 |
## ipv6-address.h (module 'network'): ns3::Ipv6Address::Ipv6Address(ns3::Ipv6Address const & addr) [copy constructor]
|
|
923 |
cls.add_constructor([param('ns3::Ipv6Address const &', 'addr')])
|
|
924 |
## ipv6-address.h (module 'network'): ns3::Ipv6Address::Ipv6Address(ns3::Ipv6Address const * addr) [constructor]
|
|
925 |
cls.add_constructor([param('ns3::Ipv6Address const *', 'addr')])
|
|
926 |
## ipv6-address.h (module 'network'): ns3::Ipv6Address ns3::Ipv6Address::CombinePrefix(ns3::Ipv6Prefix const & prefix) [member function]
|
|
927 |
cls.add_method('CombinePrefix',
|
|
928 |
'ns3::Ipv6Address',
|
|
929 |
[param('ns3::Ipv6Prefix const &', 'prefix')])
|
|
930 |
## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::ConvertFrom(ns3::Address const & address) [member function]
|
|
931 |
cls.add_method('ConvertFrom',
|
|
932 |
'ns3::Ipv6Address',
|
|
933 |
[param('ns3::Address const &', 'address')],
|
|
934 |
is_static=True)
|
|
935 |
## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::Deserialize(uint8_t const * buf) [member function]
|
|
936 |
cls.add_method('Deserialize',
|
|
937 |
'ns3::Ipv6Address',
|
|
938 |
[param('uint8_t const *', 'buf')],
|
|
939 |
is_static=True)
|
|
940 |
## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetAllHostsMulticast() [member function]
|
|
941 |
cls.add_method('GetAllHostsMulticast',
|
|
942 |
'ns3::Ipv6Address',
|
|
943 |
[],
|
|
944 |
is_static=True)
|
|
945 |
## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetAllNodesMulticast() [member function]
|
|
946 |
cls.add_method('GetAllNodesMulticast',
|
|
947 |
'ns3::Ipv6Address',
|
|
948 |
[],
|
|
949 |
is_static=True)
|
|
950 |
## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetAllRoutersMulticast() [member function]
|
|
951 |
cls.add_method('GetAllRoutersMulticast',
|
|
952 |
'ns3::Ipv6Address',
|
|
953 |
[],
|
|
954 |
is_static=True)
|
|
955 |
## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetAny() [member function]
|
|
956 |
cls.add_method('GetAny',
|
|
957 |
'ns3::Ipv6Address',
|
|
958 |
[],
|
|
959 |
is_static=True)
|
|
960 |
## ipv6-address.h (module 'network'): void ns3::Ipv6Address::GetBytes(uint8_t * buf) const [member function]
|
|
961 |
cls.add_method('GetBytes',
|
|
962 |
'void',
|
|
963 |
[param('uint8_t *', 'buf')],
|
|
964 |
is_const=True)
|
|
965 |
## ipv6-address.h (module 'network'): ns3::Ipv4Address ns3::Ipv6Address::GetIpv4MappedAddress() const [member function]
|
|
966 |
cls.add_method('GetIpv4MappedAddress',
|
|
967 |
'ns3::Ipv4Address',
|
|
968 |
[],
|
|
969 |
is_const=True)
|
|
970 |
## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetLoopback() [member function]
|
|
971 |
cls.add_method('GetLoopback',
|
|
972 |
'ns3::Ipv6Address',
|
|
973 |
[],
|
|
974 |
is_static=True)
|
|
975 |
## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetOnes() [member function]
|
|
976 |
cls.add_method('GetOnes',
|
|
977 |
'ns3::Ipv6Address',
|
|
978 |
[],
|
|
979 |
is_static=True)
|
|
980 |
## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetZero() [member function]
|
|
981 |
cls.add_method('GetZero',
|
|
982 |
'ns3::Ipv6Address',
|
|
983 |
[],
|
|
984 |
is_static=True)
|
|
985 |
## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsAllHostsMulticast() const [member function]
|
|
986 |
cls.add_method('IsAllHostsMulticast',
|
|
987 |
'bool',
|
|
988 |
[],
|
|
989 |
is_const=True)
|
|
990 |
## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsAllNodesMulticast() const [member function]
|
|
991 |
cls.add_method('IsAllNodesMulticast',
|
|
992 |
'bool',
|
|
993 |
[],
|
|
994 |
is_const=True)
|
|
995 |
## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsAllRoutersMulticast() const [member function]
|
|
996 |
cls.add_method('IsAllRoutersMulticast',
|
|
997 |
'bool',
|
|
998 |
[],
|
|
999 |
is_const=True)
|
|
1000 |
## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsAny() const [member function]
|
|
1001 |
cls.add_method('IsAny',
|
|
1002 |
'bool',
|
|
1003 |
[],
|
|
1004 |
is_const=True)
|
|
1005 |
## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsEqual(ns3::Ipv6Address const & other) const [member function]
|
|
1006 |
cls.add_method('IsEqual',
|
|
1007 |
'bool',
|
|
1008 |
[param('ns3::Ipv6Address const &', 'other')],
|
|
1009 |
is_const=True)
|
|
1010 |
## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsIpv4MappedAddress() [member function]
|
|
1011 |
cls.add_method('IsIpv4MappedAddress',
|
|
1012 |
'bool',
|
|
1013 |
[])
|
|
1014 |
## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsLinkLocal() const [member function]
|
|
1015 |
cls.add_method('IsLinkLocal',
|
|
1016 |
'bool',
|
|
1017 |
[],
|
|
1018 |
is_const=True)
|
|
1019 |
## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsLinkLocalMulticast() const [member function]
|
|
1020 |
cls.add_method('IsLinkLocalMulticast',
|
|
1021 |
'bool',
|
|
1022 |
[],
|
|
1023 |
is_const=True)
|
|
1024 |
## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsLocalhost() const [member function]
|
|
1025 |
cls.add_method('IsLocalhost',
|
|
1026 |
'bool',
|
|
1027 |
[],
|
|
1028 |
is_const=True)
|
|
1029 |
## ipv6-address.h (module 'network'): static bool ns3::Ipv6Address::IsMatchingType(ns3::Address const & address) [member function]
|
|
1030 |
cls.add_method('IsMatchingType',
|
|
1031 |
'bool',
|
|
1032 |
[param('ns3::Address const &', 'address')],
|
|
1033 |
is_static=True)
|
|
1034 |
## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsMulticast() const [member function]
|
|
1035 |
cls.add_method('IsMulticast',
|
|
1036 |
'bool',
|
|
1037 |
[],
|
|
1038 |
is_const=True)
|
|
1039 |
## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsSolicitedMulticast() const [member function]
|
|
1040 |
cls.add_method('IsSolicitedMulticast',
|
|
1041 |
'bool',
|
|
1042 |
[],
|
|
1043 |
is_const=True)
|
|
1044 |
## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::MakeAutoconfiguredAddress(ns3::Mac48Address addr, ns3::Ipv6Address prefix) [member function]
|
|
1045 |
cls.add_method('MakeAutoconfiguredAddress',
|
|
1046 |
'ns3::Ipv6Address',
|
|
1047 |
[param('ns3::Mac48Address', 'addr'), param('ns3::Ipv6Address', 'prefix')],
|
|
1048 |
is_static=True)
|
|
1049 |
## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::MakeAutoconfiguredLinkLocalAddress(ns3::Mac48Address mac) [member function]
|
|
1050 |
cls.add_method('MakeAutoconfiguredLinkLocalAddress',
|
|
1051 |
'ns3::Ipv6Address',
|
|
1052 |
[param('ns3::Mac48Address', 'mac')],
|
|
1053 |
is_static=True)
|
|
1054 |
## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::MakeIpv4MappedAddress(ns3::Ipv4Address addr) [member function]
|
|
1055 |
cls.add_method('MakeIpv4MappedAddress',
|
|
1056 |
'ns3::Ipv6Address',
|
|
1057 |
[param('ns3::Ipv4Address', 'addr')],
|
|
1058 |
is_static=True)
|
|
1059 |
## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::MakeSolicitedAddress(ns3::Ipv6Address addr) [member function]
|
|
1060 |
cls.add_method('MakeSolicitedAddress',
|
|
1061 |
'ns3::Ipv6Address',
|
|
1062 |
[param('ns3::Ipv6Address', 'addr')],
|
|
1063 |
is_static=True)
|
|
1064 |
## ipv6-address.h (module 'network'): void ns3::Ipv6Address::Print(std::ostream & os) const [member function]
|
|
1065 |
cls.add_method('Print',
|
|
1066 |
'void',
|
|
1067 |
[param('std::ostream &', 'os')],
|
|
1068 |
is_const=True)
|
|
1069 |
## ipv6-address.h (module 'network'): void ns3::Ipv6Address::Serialize(uint8_t * buf) const [member function]
|
|
1070 |
cls.add_method('Serialize',
|
|
1071 |
'void',
|
|
1072 |
[param('uint8_t *', 'buf')],
|
|
1073 |
is_const=True)
|
|
1074 |
## ipv6-address.h (module 'network'): void ns3::Ipv6Address::Set(char const * address) [member function]
|
|
1075 |
cls.add_method('Set',
|
|
1076 |
'void',
|
|
1077 |
[param('char const *', 'address')])
|
|
1078 |
## ipv6-address.h (module 'network'): void ns3::Ipv6Address::Set(uint8_t * address) [member function]
|
|
1079 |
cls.add_method('Set',
|
|
1080 |
'void',
|
|
1081 |
[param('uint8_t *', 'address')])
|
|
1082 |
return
|
|
1083 |
|
|
1084 |
def register_Ns3Ipv6Prefix_methods(root_module, cls):
|
|
1085 |
cls.add_binary_comparison_operator('!=')
|
|
1086 |
cls.add_output_stream_operator()
|
|
1087 |
cls.add_binary_comparison_operator('==')
|
|
1088 |
## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix() [constructor]
|
|
1089 |
cls.add_constructor([])
|
|
1090 |
## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix(uint8_t * prefix) [constructor]
|
|
1091 |
cls.add_constructor([param('uint8_t *', 'prefix')])
|
|
1092 |
## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix(char const * prefix) [constructor]
|
|
1093 |
cls.add_constructor([param('char const *', 'prefix')])
|
|
1094 |
## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix(uint8_t prefix) [constructor]
|
|
1095 |
cls.add_constructor([param('uint8_t', 'prefix')])
|
|
1096 |
## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix(ns3::Ipv6Prefix const & prefix) [copy constructor]
|
|
1097 |
cls.add_constructor([param('ns3::Ipv6Prefix const &', 'prefix')])
|
|
1098 |
## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix(ns3::Ipv6Prefix const * prefix) [constructor]
|
|
1099 |
cls.add_constructor([param('ns3::Ipv6Prefix const *', 'prefix')])
|
|
1100 |
## ipv6-address.h (module 'network'): void ns3::Ipv6Prefix::GetBytes(uint8_t * buf) const [member function]
|
|
1101 |
cls.add_method('GetBytes',
|
|
1102 |
'void',
|
|
1103 |
[param('uint8_t *', 'buf')],
|
|
1104 |
is_const=True)
|
|
1105 |
## ipv6-address.h (module 'network'): static ns3::Ipv6Prefix ns3::Ipv6Prefix::GetLoopback() [member function]
|
|
1106 |
cls.add_method('GetLoopback',
|
|
1107 |
'ns3::Ipv6Prefix',
|
|
1108 |
[],
|
|
1109 |
is_static=True)
|
|
1110 |
## ipv6-address.h (module 'network'): static ns3::Ipv6Prefix ns3::Ipv6Prefix::GetOnes() [member function]
|
|
1111 |
cls.add_method('GetOnes',
|
|
1112 |
'ns3::Ipv6Prefix',
|
|
1113 |
[],
|
|
1114 |
is_static=True)
|
|
1115 |
## ipv6-address.h (module 'network'): uint8_t ns3::Ipv6Prefix::GetPrefixLength() const [member function]
|
|
1116 |
cls.add_method('GetPrefixLength',
|
|
1117 |
'uint8_t',
|
|
1118 |
[],
|
|
1119 |
is_const=True)
|
|
1120 |
## ipv6-address.h (module 'network'): static ns3::Ipv6Prefix ns3::Ipv6Prefix::GetZero() [member function]
|
|
1121 |
cls.add_method('GetZero',
|
|
1122 |
'ns3::Ipv6Prefix',
|
|
1123 |
[],
|
|
1124 |
is_static=True)
|
|
1125 |
## ipv6-address.h (module 'network'): bool ns3::Ipv6Prefix::IsEqual(ns3::Ipv6Prefix const & other) const [member function]
|
|
1126 |
cls.add_method('IsEqual',
|
|
1127 |
'bool',
|
|
1128 |
[param('ns3::Ipv6Prefix const &', 'other')],
|
|
1129 |
is_const=True)
|
|
1130 |
## ipv6-address.h (module 'network'): bool ns3::Ipv6Prefix::IsMatch(ns3::Ipv6Address a, ns3::Ipv6Address b) const [member function]
|
|
1131 |
cls.add_method('IsMatch',
|
|
1132 |
'bool',
|
|
1133 |
[param('ns3::Ipv6Address', 'a'), param('ns3::Ipv6Address', 'b')],
|
|
1134 |
is_const=True)
|
|
1135 |
## ipv6-address.h (module 'network'): void ns3::Ipv6Prefix::Print(std::ostream & os) const [member function]
|
|
1136 |
cls.add_method('Print',
|
|
1137 |
'void',
|
|
1138 |
[param('std::ostream &', 'os')],
|
|
1139 |
is_const=True)
|
|
1140 |
return
|
|
1141 |
|
|
1142 |
def register_Ns3NodeContainer_methods(root_module, cls):
|
|
1143 |
## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer(ns3::NodeContainer const & arg0) [copy constructor]
|
|
1144 |
cls.add_constructor([param('ns3::NodeContainer const &', 'arg0')])
|
|
1145 |
## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer() [constructor]
|
|
1146 |
cls.add_constructor([])
|
|
1147 |
## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer(ns3::Ptr<ns3::Node> node) [constructor]
|
|
1148 |
cls.add_constructor([param('ns3::Ptr< ns3::Node >', 'node')])
|
|
1149 |
## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer(std::string nodeName) [constructor]
|
|
1150 |
cls.add_constructor([param('std::string', 'nodeName')])
|
|
1151 |
## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer(ns3::NodeContainer const & a, ns3::NodeContainer const & b) [constructor]
|
|
1152 |
cls.add_constructor([param('ns3::NodeContainer const &', 'a'), param('ns3::NodeContainer const &', 'b')])
|
|
1153 |
## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer(ns3::NodeContainer const & a, ns3::NodeContainer const & b, ns3::NodeContainer const & c) [constructor]
|
|
1154 |
cls.add_constructor([param('ns3::NodeContainer const &', 'a'), param('ns3::NodeContainer const &', 'b'), param('ns3::NodeContainer const &', 'c')])
|
|
1155 |
## 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]
|
|
1156 |
cls.add_constructor([param('ns3::NodeContainer const &', 'a'), param('ns3::NodeContainer const &', 'b'), param('ns3::NodeContainer const &', 'c'), param('ns3::NodeContainer const &', 'd')])
|
|
1157 |
## 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]
|
|
1158 |
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')])
|
|
1159 |
## node-container.h (module 'network'): void ns3::NodeContainer::Add(ns3::NodeContainer other) [member function]
|
|
1160 |
cls.add_method('Add',
|
|
1161 |
'void',
|
|
1162 |
[param('ns3::NodeContainer', 'other')])
|
|
1163 |
## node-container.h (module 'network'): void ns3::NodeContainer::Add(ns3::Ptr<ns3::Node> node) [member function]
|
|
1164 |
cls.add_method('Add',
|
|
1165 |
'void',
|
|
1166 |
[param('ns3::Ptr< ns3::Node >', 'node')])
|
|
1167 |
## node-container.h (module 'network'): void ns3::NodeContainer::Add(std::string nodeName) [member function]
|
|
1168 |
cls.add_method('Add',
|
|
1169 |
'void',
|
|
1170 |
[param('std::string', 'nodeName')])
|
|
1171 |
## 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]
|
|
1172 |
cls.add_method('Begin',
|
|
1173 |
'__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Node >, std::vector< ns3::Ptr< ns3::Node > > >',
|
|
1174 |
[],
|
|
1175 |
is_const=True)
|
|
1176 |
## node-container.h (module 'network'): void ns3::NodeContainer::Create(uint32_t n) [member function]
|
|
1177 |
cls.add_method('Create',
|
|
1178 |
'void',
|
|
1179 |
[param('uint32_t', 'n')])
|
|
1180 |
## node-container.h (module 'network'): void ns3::NodeContainer::Create(uint32_t n, uint32_t systemId) [member function]
|
|
1181 |
cls.add_method('Create',
|
|
1182 |
'void',
|
|
1183 |
[param('uint32_t', 'n'), param('uint32_t', 'systemId')])
|
|
1184 |
## 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]
|
|
1185 |
cls.add_method('End',
|
|
1186 |
'__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Node >, std::vector< ns3::Ptr< ns3::Node > > >',
|
|
1187 |
[],
|
|
1188 |
is_const=True)
|
|
1189 |
## node-container.h (module 'network'): ns3::Ptr<ns3::Node> ns3::NodeContainer::Get(uint32_t i) const [member function]
|
|
1190 |
cls.add_method('Get',
|
|
1191 |
'ns3::Ptr< ns3::Node >',
|
|
1192 |
[param('uint32_t', 'i')],
|
|
1193 |
is_const=True)
|
|
1194 |
## node-container.h (module 'network'): static ns3::NodeContainer ns3::NodeContainer::GetGlobal() [member function]
|
|
1195 |
cls.add_method('GetGlobal',
|
|
1196 |
'ns3::NodeContainer',
|
|
1197 |
[],
|
|
1198 |
is_static=True)
|
|
1199 |
## node-container.h (module 'network'): uint32_t ns3::NodeContainer::GetN() const [member function]
|
|
1200 |
cls.add_method('GetN',
|
|
1201 |
'uint32_t',
|
|
1202 |
[],
|
|
1203 |
is_const=True)
|
|
1204 |
return
|
|
1205 |
|
|
1206 |
def register_Ns3ObjectBase_methods(root_module, cls):
|
|
1207 |
## object-base.h (module 'core'): ns3::ObjectBase::ObjectBase() [constructor]
|
|
1208 |
cls.add_constructor([])
|
|
1209 |
## object-base.h (module 'core'): ns3::ObjectBase::ObjectBase(ns3::ObjectBase const & arg0) [copy constructor]
|
|
1210 |
cls.add_constructor([param('ns3::ObjectBase const &', 'arg0')])
|
|
1211 |
## object-base.h (module 'core'): void ns3::ObjectBase::GetAttribute(std::string name, ns3::AttributeValue & value) const [member function]
|
|
1212 |
cls.add_method('GetAttribute',
|
|
1213 |
'void',
|
|
1214 |
[param('std::string', 'name'), param('ns3::AttributeValue &', 'value')],
|
|
1215 |
is_const=True)
|
|
1216 |
## object-base.h (module 'core'): bool ns3::ObjectBase::GetAttributeFailSafe(std::string name, ns3::AttributeValue & attribute) const [member function]
|
|
1217 |
cls.add_method('GetAttributeFailSafe',
|
|
1218 |
'bool',
|
|
1219 |
[param('std::string', 'name'), param('ns3::AttributeValue &', 'attribute')],
|
|
1220 |
is_const=True)
|
|
1221 |
## object-base.h (module 'core'): ns3::TypeId ns3::ObjectBase::GetInstanceTypeId() const [member function]
|
|
1222 |
cls.add_method('GetInstanceTypeId',
|
|
1223 |
'ns3::TypeId',
|
|
1224 |
[],
|
|
1225 |
is_pure_virtual=True, is_const=True, is_virtual=True)
|
|
1226 |
## object-base.h (module 'core'): static ns3::TypeId ns3::ObjectBase::GetTypeId() [member function]
|
|
1227 |
cls.add_method('GetTypeId',
|
|
1228 |
'ns3::TypeId',
|
|
1229 |
[],
|
|
1230 |
is_static=True)
|
|
1231 |
## object-base.h (module 'core'): void ns3::ObjectBase::SetAttribute(std::string name, ns3::AttributeValue const & value) [member function]
|
|
1232 |
cls.add_method('SetAttribute',
|
|
1233 |
'void',
|
|
1234 |
[param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')])
|
|
1235 |
## object-base.h (module 'core'): bool ns3::ObjectBase::SetAttributeFailSafe(std::string name, ns3::AttributeValue const & value) [member function]
|
|
1236 |
cls.add_method('SetAttributeFailSafe',
|
|
1237 |
'bool',
|
|
1238 |
[param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')])
|
|
1239 |
## object-base.h (module 'core'): bool ns3::ObjectBase::TraceConnect(std::string name, std::string context, ns3::CallbackBase const & cb) [member function]
|
|
1240 |
cls.add_method('TraceConnect',
|
|
1241 |
'bool',
|
|
1242 |
[param('std::string', 'name'), param('std::string', 'context'), param('ns3::CallbackBase const &', 'cb')])
|
|
1243 |
## object-base.h (module 'core'): bool ns3::ObjectBase::TraceConnectWithoutContext(std::string name, ns3::CallbackBase const & cb) [member function]
|
|
1244 |
cls.add_method('TraceConnectWithoutContext',
|
|
1245 |
'bool',
|
|
1246 |
[param('std::string', 'name'), param('ns3::CallbackBase const &', 'cb')])
|
|
1247 |
## object-base.h (module 'core'): bool ns3::ObjectBase::TraceDisconnect(std::string name, std::string context, ns3::CallbackBase const & cb) [member function]
|
|
1248 |
cls.add_method('TraceDisconnect',
|
|
1249 |
'bool',
|
|
1250 |
[param('std::string', 'name'), param('std::string', 'context'), param('ns3::CallbackBase const &', 'cb')])
|
|
1251 |
## object-base.h (module 'core'): bool ns3::ObjectBase::TraceDisconnectWithoutContext(std::string name, ns3::CallbackBase const & cb) [member function]
|
|
1252 |
cls.add_method('TraceDisconnectWithoutContext',
|
|
1253 |
'bool',
|
|
1254 |
[param('std::string', 'name'), param('ns3::CallbackBase const &', 'cb')])
|
|
1255 |
## object-base.h (module 'core'): void ns3::ObjectBase::ConstructSelf(ns3::AttributeConstructionList const & attributes) [member function]
|
|
1256 |
cls.add_method('ConstructSelf',
|
|
1257 |
'void',
|
|
1258 |
[param('ns3::AttributeConstructionList const &', 'attributes')],
|
|
1259 |
visibility='protected')
|
|
1260 |
## object-base.h (module 'core'): void ns3::ObjectBase::NotifyConstructionCompleted() [member function]
|
|
1261 |
cls.add_method('NotifyConstructionCompleted',
|
|
1262 |
'void',
|
|
1263 |
[],
|
|
1264 |
visibility='protected', is_virtual=True)
|
|
1265 |
return
|
|
1266 |
|
|
1267 |
def register_Ns3ObjectDeleter_methods(root_module, cls):
|
|
1268 |
## object.h (module 'core'): ns3::ObjectDeleter::ObjectDeleter() [constructor]
|
|
1269 |
cls.add_constructor([])
|
|
1270 |
## object.h (module 'core'): ns3::ObjectDeleter::ObjectDeleter(ns3::ObjectDeleter const & arg0) [copy constructor]
|
|
1271 |
cls.add_constructor([param('ns3::ObjectDeleter const &', 'arg0')])
|
|
1272 |
## object.h (module 'core'): static void ns3::ObjectDeleter::Delete(ns3::Object * object) [member function]
|
|
1273 |
cls.add_method('Delete',
|
|
1274 |
'void',
|
|
1275 |
[param('ns3::Object *', 'object')],
|
|
1276 |
is_static=True)
|
|
1277 |
return
|
|
1278 |
|
|
1279 |
def register_Ns3ObjectFactory_methods(root_module, cls):
|
|
1280 |
cls.add_output_stream_operator()
|
|
1281 |
## object-factory.h (module 'core'): ns3::ObjectFactory::ObjectFactory(ns3::ObjectFactory const & arg0) [copy constructor]
|
|
1282 |
cls.add_constructor([param('ns3::ObjectFactory const &', 'arg0')])
|
|
1283 |
## object-factory.h (module 'core'): ns3::ObjectFactory::ObjectFactory() [constructor]
|
|
1284 |
cls.add_constructor([])
|
|
1285 |
## object-factory.h (module 'core'): ns3::ObjectFactory::ObjectFactory(std::string typeId) [constructor]
|
|
1286 |
cls.add_constructor([param('std::string', 'typeId')])
|
|
1287 |
## object-factory.h (module 'core'): ns3::Ptr<ns3::Object> ns3::ObjectFactory::Create() const [member function]
|
|
1288 |
cls.add_method('Create',
|
|
1289 |
'ns3::Ptr< ns3::Object >',
|
|
1290 |
[],
|
|
1291 |
is_const=True)
|
|
1292 |
## object-factory.h (module 'core'): ns3::TypeId ns3::ObjectFactory::GetTypeId() const [member function]
|
|
1293 |
cls.add_method('GetTypeId',
|
|
1294 |
'ns3::TypeId',
|
|
1295 |
[],
|
|
1296 |
is_const=True)
|
|
1297 |
## object-factory.h (module 'core'): void ns3::ObjectFactory::Set(std::string name, ns3::AttributeValue const & value) [member function]
|
|
1298 |
cls.add_method('Set',
|
|
1299 |
'void',
|
|
1300 |
[param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')])
|
|
1301 |
## object-factory.h (module 'core'): void ns3::ObjectFactory::SetTypeId(ns3::TypeId tid) [member function]
|
|
1302 |
cls.add_method('SetTypeId',
|
|
1303 |
'void',
|
|
1304 |
[param('ns3::TypeId', 'tid')])
|
|
1305 |
## object-factory.h (module 'core'): void ns3::ObjectFactory::SetTypeId(char const * tid) [member function]
|
|
1306 |
cls.add_method('SetTypeId',
|
|
1307 |
'void',
|
|
1308 |
[param('char const *', 'tid')])
|
|
1309 |
## object-factory.h (module 'core'): void ns3::ObjectFactory::SetTypeId(std::string tid) [member function]
|
|
1310 |
cls.add_method('SetTypeId',
|
|
1311 |
'void',
|
|
1312 |
[param('std::string', 'tid')])
|
|
1313 |
return
|
|
1314 |
|
|
1315 |
def register_Ns3RandomVariable_methods(root_module, cls):
|
|
1316 |
cls.add_output_stream_operator()
|
|
1317 |
## random-variable.h (module 'core'): ns3::RandomVariable::RandomVariable() [constructor]
|
|
1318 |
cls.add_constructor([])
|
|
1319 |
## random-variable.h (module 'core'): ns3::RandomVariable::RandomVariable(ns3::RandomVariable const & o) [copy constructor]
|
|
1320 |
cls.add_constructor([param('ns3::RandomVariable const &', 'o')])
|
|
1321 |
## random-variable.h (module 'core'): uint32_t ns3::RandomVariable::GetInteger() const [member function]
|
|
1322 |
cls.add_method('GetInteger',
|
|
1323 |
'uint32_t',
|
|
1324 |
[],
|
|
1325 |
is_const=True)
|
|
1326 |
## random-variable.h (module 'core'): double ns3::RandomVariable::GetValue() const [member function]
|
|
1327 |
cls.add_method('GetValue',
|
|
1328 |
'double',
|
|
1329 |
[],
|
|
1330 |
is_const=True)
|
|
1331 |
return
|
|
1332 |
|
8893
|
1333 |
def register_Ns3RngSeedManager_methods(root_module, cls):
|
|
1334 |
## rng-seed-manager.h (module 'core'): ns3::RngSeedManager::RngSeedManager() [constructor]
|
8750
|
1335 |
cls.add_constructor([])
|
8893
|
1336 |
## rng-seed-manager.h (module 'core'): ns3::RngSeedManager::RngSeedManager(ns3::RngSeedManager const & arg0) [copy constructor]
|
|
1337 |
cls.add_constructor([param('ns3::RngSeedManager const &', 'arg0')])
|
|
1338 |
## rng-seed-manager.h (module 'core'): static uint64_t ns3::RngSeedManager::GetNextStreamIndex() [member function]
|
|
1339 |
cls.add_method('GetNextStreamIndex',
|
|
1340 |
'uint64_t',
|
8750
|
1341 |
[],
|
|
1342 |
is_static=True)
|
8893
|
1343 |
## rng-seed-manager.h (module 'core'): static uint64_t ns3::RngSeedManager::GetRun() [member function]
|
|
1344 |
cls.add_method('GetRun',
|
|
1345 |
'uint64_t',
|
|
1346 |
[],
|
|
1347 |
is_static=True)
|
|
1348 |
## rng-seed-manager.h (module 'core'): static uint32_t ns3::RngSeedManager::GetSeed() [member function]
|
8750
|
1349 |
cls.add_method('GetSeed',
|
|
1350 |
'uint32_t',
|
|
1351 |
[],
|
|
1352 |
is_static=True)
|
8893
|
1353 |
## rng-seed-manager.h (module 'core'): static void ns3::RngSeedManager::SetRun(uint64_t run) [member function]
|
8750
|
1354 |
cls.add_method('SetRun',
|
|
1355 |
'void',
|
8893
|
1356 |
[param('uint64_t', 'run')],
|
8750
|
1357 |
is_static=True)
|
8893
|
1358 |
## rng-seed-manager.h (module 'core'): static void ns3::RngSeedManager::SetSeed(uint32_t seed) [member function]
|
8750
|
1359 |
cls.add_method('SetSeed',
|
|
1360 |
'void',
|
|
1361 |
[param('uint32_t', 'seed')],
|
|
1362 |
is_static=True)
|
|
1363 |
return
|
|
1364 |
|
|
1365 |
def register_Ns3SequentialVariable_methods(root_module, cls):
|
|
1366 |
## random-variable.h (module 'core'): ns3::SequentialVariable::SequentialVariable(ns3::SequentialVariable const & arg0) [copy constructor]
|
|
1367 |
cls.add_constructor([param('ns3::SequentialVariable const &', 'arg0')])
|
|
1368 |
## random-variable.h (module 'core'): ns3::SequentialVariable::SequentialVariable(double f, double l, double i=1, uint32_t c=1) [constructor]
|
|
1369 |
cls.add_constructor([param('double', 'f'), param('double', 'l'), param('double', 'i', default_value='1'), param('uint32_t', 'c', default_value='1')])
|
|
1370 |
## random-variable.h (module 'core'): ns3::SequentialVariable::SequentialVariable(double f, double l, ns3::RandomVariable const & i, uint32_t c=1) [constructor]
|
|
1371 |
cls.add_constructor([param('double', 'f'), param('double', 'l'), param('ns3::RandomVariable const &', 'i'), param('uint32_t', 'c', default_value='1')])
|
|
1372 |
return
|
|
1373 |
|
|
1374 |
def register_Ns3SimpleRefCount__Ns3Object_Ns3ObjectBase_Ns3ObjectDeleter_methods(root_module, cls):
|
|
1375 |
## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter>::SimpleRefCount() [constructor]
|
|
1376 |
cls.add_constructor([])
|
|
1377 |
## 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]
|
|
1378 |
cls.add_constructor([param('ns3::SimpleRefCount< ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter > const &', 'o')])
|
|
1379 |
## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter>::Cleanup() [member function]
|
|
1380 |
cls.add_method('Cleanup',
|
|
1381 |
'void',
|
|
1382 |
[],
|
|
1383 |
is_static=True)
|
|
1384 |
return
|
|
1385 |
|
|
1386 |
def register_Ns3TagBuffer_methods(root_module, cls):
|
|
1387 |
## tag-buffer.h (module 'network'): ns3::TagBuffer::TagBuffer(ns3::TagBuffer const & arg0) [copy constructor]
|
|
1388 |
cls.add_constructor([param('ns3::TagBuffer const &', 'arg0')])
|
|
1389 |
## tag-buffer.h (module 'network'): ns3::TagBuffer::TagBuffer(uint8_t * start, uint8_t * end) [constructor]
|
|
1390 |
cls.add_constructor([param('uint8_t *', 'start'), param('uint8_t *', 'end')])
|
|
1391 |
## tag-buffer.h (module 'network'): void ns3::TagBuffer::CopyFrom(ns3::TagBuffer o) [member function]
|
|
1392 |
cls.add_method('CopyFrom',
|
|
1393 |
'void',
|
|
1394 |
[param('ns3::TagBuffer', 'o')])
|
|
1395 |
## tag-buffer.h (module 'network'): void ns3::TagBuffer::Read(uint8_t * buffer, uint32_t size) [member function]
|
|
1396 |
cls.add_method('Read',
|
|
1397 |
'void',
|
|
1398 |
[param('uint8_t *', 'buffer'), param('uint32_t', 'size')])
|
|
1399 |
## tag-buffer.h (module 'network'): double ns3::TagBuffer::ReadDouble() [member function]
|
|
1400 |
cls.add_method('ReadDouble',
|
|
1401 |
'double',
|
|
1402 |
[])
|
|
1403 |
## tag-buffer.h (module 'network'): uint16_t ns3::TagBuffer::ReadU16() [member function]
|
|
1404 |
cls.add_method('ReadU16',
|
|
1405 |
'uint16_t',
|
|
1406 |
[])
|
|
1407 |
## tag-buffer.h (module 'network'): uint32_t ns3::TagBuffer::ReadU32() [member function]
|
|
1408 |
cls.add_method('ReadU32',
|
|
1409 |
'uint32_t',
|
|
1410 |
[])
|
|
1411 |
## tag-buffer.h (module 'network'): uint64_t ns3::TagBuffer::ReadU64() [member function]
|
|
1412 |
cls.add_method('ReadU64',
|
|
1413 |
'uint64_t',
|
|
1414 |
[])
|
|
1415 |
## tag-buffer.h (module 'network'): uint8_t ns3::TagBuffer::ReadU8() [member function]
|
|
1416 |
cls.add_method('ReadU8',
|
|
1417 |
'uint8_t',
|
|
1418 |
[])
|
|
1419 |
## tag-buffer.h (module 'network'): void ns3::TagBuffer::TrimAtEnd(uint32_t trim) [member function]
|
|
1420 |
cls.add_method('TrimAtEnd',
|
|
1421 |
'void',
|
|
1422 |
[param('uint32_t', 'trim')])
|
|
1423 |
## tag-buffer.h (module 'network'): void ns3::TagBuffer::Write(uint8_t const * buffer, uint32_t size) [member function]
|
|
1424 |
cls.add_method('Write',
|
|
1425 |
'void',
|
|
1426 |
[param('uint8_t const *', 'buffer'), param('uint32_t', 'size')])
|
|
1427 |
## tag-buffer.h (module 'network'): void ns3::TagBuffer::WriteDouble(double v) [member function]
|
|
1428 |
cls.add_method('WriteDouble',
|
|
1429 |
'void',
|
|
1430 |
[param('double', 'v')])
|
|
1431 |
## tag-buffer.h (module 'network'): void ns3::TagBuffer::WriteU16(uint16_t data) [member function]
|
|
1432 |
cls.add_method('WriteU16',
|
|
1433 |
'void',
|
|
1434 |
[param('uint16_t', 'data')])
|
|
1435 |
## tag-buffer.h (module 'network'): void ns3::TagBuffer::WriteU32(uint32_t data) [member function]
|
|
1436 |
cls.add_method('WriteU32',
|
|
1437 |
'void',
|
|
1438 |
[param('uint32_t', 'data')])
|
|
1439 |
## tag-buffer.h (module 'network'): void ns3::TagBuffer::WriteU64(uint64_t v) [member function]
|
|
1440 |
cls.add_method('WriteU64',
|
|
1441 |
'void',
|
|
1442 |
[param('uint64_t', 'v')])
|
|
1443 |
## tag-buffer.h (module 'network'): void ns3::TagBuffer::WriteU8(uint8_t v) [member function]
|
|
1444 |
cls.add_method('WriteU8',
|
|
1445 |
'void',
|
|
1446 |
[param('uint8_t', 'v')])
|
|
1447 |
return
|
|
1448 |
|
|
1449 |
def register_Ns3TriangularVariable_methods(root_module, cls):
|
|
1450 |
## random-variable.h (module 'core'): ns3::TriangularVariable::TriangularVariable(ns3::TriangularVariable const & arg0) [copy constructor]
|
|
1451 |
cls.add_constructor([param('ns3::TriangularVariable const &', 'arg0')])
|
|
1452 |
## random-variable.h (module 'core'): ns3::TriangularVariable::TriangularVariable() [constructor]
|
|
1453 |
cls.add_constructor([])
|
|
1454 |
## random-variable.h (module 'core'): ns3::TriangularVariable::TriangularVariable(double s, double l, double mean) [constructor]
|
|
1455 |
cls.add_constructor([param('double', 's'), param('double', 'l'), param('double', 'mean')])
|
|
1456 |
return
|
|
1457 |
|
|
1458 |
def register_Ns3TypeId_methods(root_module, cls):
|
|
1459 |
cls.add_binary_comparison_operator('<')
|
|
1460 |
cls.add_binary_comparison_operator('!=')
|
|
1461 |
cls.add_output_stream_operator()
|
|
1462 |
cls.add_binary_comparison_operator('==')
|
|
1463 |
## type-id.h (module 'core'): ns3::TypeId::TypeId(char const * name) [constructor]
|
|
1464 |
cls.add_constructor([param('char const *', 'name')])
|
|
1465 |
## type-id.h (module 'core'): ns3::TypeId::TypeId() [constructor]
|
|
1466 |
cls.add_constructor([])
|
|
1467 |
## type-id.h (module 'core'): ns3::TypeId::TypeId(ns3::TypeId const & o) [copy constructor]
|
|
1468 |
cls.add_constructor([param('ns3::TypeId const &', 'o')])
|
|
1469 |
## 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]
|
|
1470 |
cls.add_method('AddAttribute',
|
|
1471 |
'ns3::TypeId',
|
|
1472 |
[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')])
|
|
1473 |
## 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]
|
|
1474 |
cls.add_method('AddAttribute',
|
|
1475 |
'ns3::TypeId',
|
|
1476 |
[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')])
|
|
1477 |
## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::AddTraceSource(std::string name, std::string help, ns3::Ptr<ns3::TraceSourceAccessor const> accessor) [member function]
|
|
1478 |
cls.add_method('AddTraceSource',
|
|
1479 |
'ns3::TypeId',
|
|
1480 |
[param('std::string', 'name'), param('std::string', 'help'), param('ns3::Ptr< ns3::TraceSourceAccessor const >', 'accessor')])
|
|
1481 |
## type-id.h (module 'core'): ns3::TypeId::AttributeInformation ns3::TypeId::GetAttribute(uint32_t i) const [member function]
|
|
1482 |
cls.add_method('GetAttribute',
|
|
1483 |
'ns3::TypeId::AttributeInformation',
|
|
1484 |
[param('uint32_t', 'i')],
|
|
1485 |
is_const=True)
|
|
1486 |
## type-id.h (module 'core'): std::string ns3::TypeId::GetAttributeFullName(uint32_t i) const [member function]
|
|
1487 |
cls.add_method('GetAttributeFullName',
|
|
1488 |
'std::string',
|
|
1489 |
[param('uint32_t', 'i')],
|
|
1490 |
is_const=True)
|
|
1491 |
## type-id.h (module 'core'): uint32_t ns3::TypeId::GetAttributeN() const [member function]
|
|
1492 |
cls.add_method('GetAttributeN',
|
|
1493 |
'uint32_t',
|
|
1494 |
[],
|
|
1495 |
is_const=True)
|
|
1496 |
## 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]
|
|
1497 |
cls.add_method('GetConstructor',
|
|
1498 |
'ns3::Callback< ns3::ObjectBase *, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >',
|
|
1499 |
[],
|
|
1500 |
is_const=True)
|
|
1501 |
## type-id.h (module 'core'): std::string ns3::TypeId::GetGroupName() const [member function]
|
|
1502 |
cls.add_method('GetGroupName',
|
|
1503 |
'std::string',
|
|
1504 |
[],
|
|
1505 |
is_const=True)
|
|
1506 |
## type-id.h (module 'core'): std::string ns3::TypeId::GetName() const [member function]
|
|
1507 |
cls.add_method('GetName',
|
|
1508 |
'std::string',
|
|
1509 |
[],
|
|
1510 |
is_const=True)
|
|
1511 |
## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::GetParent() const [member function]
|
|
1512 |
cls.add_method('GetParent',
|
|
1513 |
'ns3::TypeId',
|
|
1514 |
[],
|
|
1515 |
is_const=True)
|
|
1516 |
## type-id.h (module 'core'): static ns3::TypeId ns3::TypeId::GetRegistered(uint32_t i) [member function]
|
|
1517 |
cls.add_method('GetRegistered',
|
|
1518 |
'ns3::TypeId',
|
|
1519 |
[param('uint32_t', 'i')],
|
|
1520 |
is_static=True)
|
|
1521 |
## type-id.h (module 'core'): static uint32_t ns3::TypeId::GetRegisteredN() [member function]
|
|
1522 |
cls.add_method('GetRegisteredN',
|
|
1523 |
'uint32_t',
|
|
1524 |
[],
|
|
1525 |
is_static=True)
|
|
1526 |
## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation ns3::TypeId::GetTraceSource(uint32_t i) const [member function]
|
|
1527 |
cls.add_method('GetTraceSource',
|
|
1528 |
'ns3::TypeId::TraceSourceInformation',
|
|
1529 |
[param('uint32_t', 'i')],
|
|
1530 |
is_const=True)
|
|
1531 |
## type-id.h (module 'core'): uint32_t ns3::TypeId::GetTraceSourceN() const [member function]
|
|
1532 |
cls.add_method('GetTraceSourceN',
|
|
1533 |
'uint32_t',
|
|
1534 |
[],
|
|
1535 |
is_const=True)
|
|
1536 |
## type-id.h (module 'core'): uint16_t ns3::TypeId::GetUid() const [member function]
|
|
1537 |
cls.add_method('GetUid',
|
|
1538 |
'uint16_t',
|
|
1539 |
[],
|
|
1540 |
is_const=True)
|
|
1541 |
## type-id.h (module 'core'): bool ns3::TypeId::HasConstructor() const [member function]
|
|
1542 |
cls.add_method('HasConstructor',
|
|
1543 |
'bool',
|
|
1544 |
[],
|
|
1545 |
is_const=True)
|
|
1546 |
## type-id.h (module 'core'): bool ns3::TypeId::HasParent() const [member function]
|
|
1547 |
cls.add_method('HasParent',
|
|
1548 |
'bool',
|
|
1549 |
[],
|
|
1550 |
is_const=True)
|
|
1551 |
## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::HideFromDocumentation() [member function]
|
|
1552 |
cls.add_method('HideFromDocumentation',
|
|
1553 |
'ns3::TypeId',
|
|
1554 |
[])
|
|
1555 |
## type-id.h (module 'core'): bool ns3::TypeId::IsChildOf(ns3::TypeId other) const [member function]
|
|
1556 |
cls.add_method('IsChildOf',
|
|
1557 |
'bool',
|
|
1558 |
[param('ns3::TypeId', 'other')],
|
|
1559 |
is_const=True)
|
|
1560 |
## type-id.h (module 'core'): bool ns3::TypeId::LookupAttributeByName(std::string name, ns3::TypeId::AttributeInformation * info) const [member function]
|
|
1561 |
cls.add_method('LookupAttributeByName',
|
|
1562 |
'bool',
|
|
1563 |
[param('std::string', 'name'), param('ns3::TypeId::AttributeInformation *', 'info', transfer_ownership=False)],
|
|
1564 |
is_const=True)
|
|
1565 |
## type-id.h (module 'core'): static ns3::TypeId ns3::TypeId::LookupByName(std::string name) [member function]
|
|
1566 |
cls.add_method('LookupByName',
|
|
1567 |
'ns3::TypeId',
|
|
1568 |
[param('std::string', 'name')],
|
|
1569 |
is_static=True)
|
|
1570 |
## type-id.h (module 'core'): ns3::Ptr<ns3::TraceSourceAccessor const> ns3::TypeId::LookupTraceSourceByName(std::string name) const [member function]
|
|
1571 |
cls.add_method('LookupTraceSourceByName',
|
|
1572 |
'ns3::Ptr< ns3::TraceSourceAccessor const >',
|
|
1573 |
[param('std::string', 'name')],
|
|
1574 |
is_const=True)
|
|
1575 |
## type-id.h (module 'core'): bool ns3::TypeId::MustHideFromDocumentation() const [member function]
|
|
1576 |
cls.add_method('MustHideFromDocumentation',
|
|
1577 |
'bool',
|
|
1578 |
[],
|
|
1579 |
is_const=True)
|
|
1580 |
## type-id.h (module 'core'): bool ns3::TypeId::SetAttributeInitialValue(uint32_t i, ns3::Ptr<ns3::AttributeValue const> initialValue) [member function]
|
|
1581 |
cls.add_method('SetAttributeInitialValue',
|
|
1582 |
'bool',
|
|
1583 |
[param('uint32_t', 'i'), param('ns3::Ptr< ns3::AttributeValue const >', 'initialValue')])
|
|
1584 |
## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::SetGroupName(std::string groupName) [member function]
|
|
1585 |
cls.add_method('SetGroupName',
|
|
1586 |
'ns3::TypeId',
|
|
1587 |
[param('std::string', 'groupName')])
|
|
1588 |
## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::SetParent(ns3::TypeId tid) [member function]
|
|
1589 |
cls.add_method('SetParent',
|
|
1590 |
'ns3::TypeId',
|
|
1591 |
[param('ns3::TypeId', 'tid')])
|
|
1592 |
## type-id.h (module 'core'): void ns3::TypeId::SetUid(uint16_t tid) [member function]
|
|
1593 |
cls.add_method('SetUid',
|
|
1594 |
'void',
|
|
1595 |
[param('uint16_t', 'tid')])
|
|
1596 |
return
|
|
1597 |
|
|
1598 |
def register_Ns3TypeIdAttributeInformation_methods(root_module, cls):
|
|
1599 |
## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::AttributeInformation() [constructor]
|
|
1600 |
cls.add_constructor([])
|
|
1601 |
## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::AttributeInformation(ns3::TypeId::AttributeInformation const & arg0) [copy constructor]
|
|
1602 |
cls.add_constructor([param('ns3::TypeId::AttributeInformation const &', 'arg0')])
|
|
1603 |
## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::accessor [variable]
|
|
1604 |
cls.add_instance_attribute('accessor', 'ns3::Ptr< ns3::AttributeAccessor const >', is_const=False)
|
|
1605 |
## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::checker [variable]
|
|
1606 |
cls.add_instance_attribute('checker', 'ns3::Ptr< ns3::AttributeChecker const >', is_const=False)
|
|
1607 |
## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::flags [variable]
|
|
1608 |
cls.add_instance_attribute('flags', 'uint32_t', is_const=False)
|
|
1609 |
## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::help [variable]
|
|
1610 |
cls.add_instance_attribute('help', 'std::string', is_const=False)
|
|
1611 |
## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::initialValue [variable]
|
|
1612 |
cls.add_instance_attribute('initialValue', 'ns3::Ptr< ns3::AttributeValue const >', is_const=False)
|
|
1613 |
## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::name [variable]
|
|
1614 |
cls.add_instance_attribute('name', 'std::string', is_const=False)
|
|
1615 |
## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::originalInitialValue [variable]
|
|
1616 |
cls.add_instance_attribute('originalInitialValue', 'ns3::Ptr< ns3::AttributeValue const >', is_const=False)
|
|
1617 |
return
|
|
1618 |
|
|
1619 |
def register_Ns3TypeIdTraceSourceInformation_methods(root_module, cls):
|
|
1620 |
## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation::TraceSourceInformation() [constructor]
|
|
1621 |
cls.add_constructor([])
|
|
1622 |
## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation::TraceSourceInformation(ns3::TypeId::TraceSourceInformation const & arg0) [copy constructor]
|
|
1623 |
cls.add_constructor([param('ns3::TypeId::TraceSourceInformation const &', 'arg0')])
|
|
1624 |
## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation::accessor [variable]
|
|
1625 |
cls.add_instance_attribute('accessor', 'ns3::Ptr< ns3::TraceSourceAccessor const >', is_const=False)
|
|
1626 |
## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation::help [variable]
|
|
1627 |
cls.add_instance_attribute('help', 'std::string', is_const=False)
|
|
1628 |
## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation::name [variable]
|
|
1629 |
cls.add_instance_attribute('name', 'std::string', is_const=False)
|
|
1630 |
return
|
|
1631 |
|
|
1632 |
def register_Ns3UniformVariable_methods(root_module, cls):
|
|
1633 |
## random-variable.h (module 'core'): ns3::UniformVariable::UniformVariable(ns3::UniformVariable const & arg0) [copy constructor]
|
|
1634 |
cls.add_constructor([param('ns3::UniformVariable const &', 'arg0')])
|
|
1635 |
## random-variable.h (module 'core'): ns3::UniformVariable::UniformVariable() [constructor]
|
|
1636 |
cls.add_constructor([])
|
|
1637 |
## random-variable.h (module 'core'): ns3::UniformVariable::UniformVariable(double s, double l) [constructor]
|
|
1638 |
cls.add_constructor([param('double', 's'), param('double', 'l')])
|
|
1639 |
## random-variable.h (module 'core'): uint32_t ns3::UniformVariable::GetInteger(uint32_t s, uint32_t l) [member function]
|
|
1640 |
cls.add_method('GetInteger',
|
|
1641 |
'uint32_t',
|
|
1642 |
[param('uint32_t', 's'), param('uint32_t', 'l')])
|
|
1643 |
## random-variable.h (module 'core'): double ns3::UniformVariable::GetValue() const [member function]
|
|
1644 |
cls.add_method('GetValue',
|
|
1645 |
'double',
|
|
1646 |
[],
|
|
1647 |
is_const=True)
|
|
1648 |
## random-variable.h (module 'core'): double ns3::UniformVariable::GetValue(double s, double l) [member function]
|
|
1649 |
cls.add_method('GetValue',
|
|
1650 |
'double',
|
|
1651 |
[param('double', 's'), param('double', 'l')])
|
|
1652 |
return
|
|
1653 |
|
|
1654 |
def register_Ns3Vector2D_methods(root_module, cls):
|
|
1655 |
cls.add_output_stream_operator()
|
|
1656 |
## vector.h (module 'core'): ns3::Vector2D::Vector2D(ns3::Vector2D const & arg0) [copy constructor]
|
|
1657 |
cls.add_constructor([param('ns3::Vector2D const &', 'arg0')])
|
|
1658 |
## vector.h (module 'core'): ns3::Vector2D::Vector2D(double _x, double _y) [constructor]
|
|
1659 |
cls.add_constructor([param('double', '_x'), param('double', '_y')])
|
|
1660 |
## vector.h (module 'core'): ns3::Vector2D::Vector2D() [constructor]
|
|
1661 |
cls.add_constructor([])
|
|
1662 |
## vector.h (module 'core'): ns3::Vector2D::x [variable]
|
|
1663 |
cls.add_instance_attribute('x', 'double', is_const=False)
|
|
1664 |
## vector.h (module 'core'): ns3::Vector2D::y [variable]
|
|
1665 |
cls.add_instance_attribute('y', 'double', is_const=False)
|
|
1666 |
return
|
|
1667 |
|
|
1668 |
def register_Ns3Vector3D_methods(root_module, cls):
|
|
1669 |
cls.add_output_stream_operator()
|
|
1670 |
## vector.h (module 'core'): ns3::Vector3D::Vector3D(ns3::Vector3D const & arg0) [copy constructor]
|
|
1671 |
cls.add_constructor([param('ns3::Vector3D const &', 'arg0')])
|
|
1672 |
## vector.h (module 'core'): ns3::Vector3D::Vector3D(double _x, double _y, double _z) [constructor]
|
|
1673 |
cls.add_constructor([param('double', '_x'), param('double', '_y'), param('double', '_z')])
|
|
1674 |
## vector.h (module 'core'): ns3::Vector3D::Vector3D() [constructor]
|
|
1675 |
cls.add_constructor([])
|
|
1676 |
## vector.h (module 'core'): ns3::Vector3D::x [variable]
|
|
1677 |
cls.add_instance_attribute('x', 'double', is_const=False)
|
|
1678 |
## vector.h (module 'core'): ns3::Vector3D::y [variable]
|
|
1679 |
cls.add_instance_attribute('y', 'double', is_const=False)
|
|
1680 |
## vector.h (module 'core'): ns3::Vector3D::z [variable]
|
|
1681 |
cls.add_instance_attribute('z', 'double', is_const=False)
|
|
1682 |
return
|
|
1683 |
|
|
1684 |
def register_Ns3WeibullVariable_methods(root_module, cls):
|
|
1685 |
## random-variable.h (module 'core'): ns3::WeibullVariable::WeibullVariable(ns3::WeibullVariable const & arg0) [copy constructor]
|
|
1686 |
cls.add_constructor([param('ns3::WeibullVariable const &', 'arg0')])
|
|
1687 |
## random-variable.h (module 'core'): ns3::WeibullVariable::WeibullVariable() [constructor]
|
|
1688 |
cls.add_constructor([])
|
|
1689 |
## random-variable.h (module 'core'): ns3::WeibullVariable::WeibullVariable(double m) [constructor]
|
|
1690 |
cls.add_constructor([param('double', 'm')])
|
|
1691 |
## random-variable.h (module 'core'): ns3::WeibullVariable::WeibullVariable(double m, double s) [constructor]
|
|
1692 |
cls.add_constructor([param('double', 'm'), param('double', 's')])
|
|
1693 |
## random-variable.h (module 'core'): ns3::WeibullVariable::WeibullVariable(double m, double s, double b) [constructor]
|
|
1694 |
cls.add_constructor([param('double', 'm'), param('double', 's'), param('double', 'b')])
|
|
1695 |
return
|
|
1696 |
|
|
1697 |
def register_Ns3ZetaVariable_methods(root_module, cls):
|
|
1698 |
## random-variable.h (module 'core'): ns3::ZetaVariable::ZetaVariable(ns3::ZetaVariable const & arg0) [copy constructor]
|
|
1699 |
cls.add_constructor([param('ns3::ZetaVariable const &', 'arg0')])
|
|
1700 |
## random-variable.h (module 'core'): ns3::ZetaVariable::ZetaVariable(double alpha) [constructor]
|
|
1701 |
cls.add_constructor([param('double', 'alpha')])
|
|
1702 |
## random-variable.h (module 'core'): ns3::ZetaVariable::ZetaVariable() [constructor]
|
|
1703 |
cls.add_constructor([])
|
|
1704 |
return
|
|
1705 |
|
|
1706 |
def register_Ns3ZipfVariable_methods(root_module, cls):
|
|
1707 |
## random-variable.h (module 'core'): ns3::ZipfVariable::ZipfVariable(ns3::ZipfVariable const & arg0) [copy constructor]
|
|
1708 |
cls.add_constructor([param('ns3::ZipfVariable const &', 'arg0')])
|
|
1709 |
## random-variable.h (module 'core'): ns3::ZipfVariable::ZipfVariable(long int N, double alpha) [constructor]
|
|
1710 |
cls.add_constructor([param('long int', 'N'), param('double', 'alpha')])
|
|
1711 |
## random-variable.h (module 'core'): ns3::ZipfVariable::ZipfVariable() [constructor]
|
|
1712 |
cls.add_constructor([])
|
|
1713 |
return
|
|
1714 |
|
|
1715 |
def register_Ns3Empty_methods(root_module, cls):
|
|
1716 |
## empty.h (module 'core'): ns3::empty::empty() [constructor]
|
|
1717 |
cls.add_constructor([])
|
|
1718 |
## empty.h (module 'core'): ns3::empty::empty(ns3::empty const & arg0) [copy constructor]
|
|
1719 |
cls.add_constructor([param('ns3::empty const &', 'arg0')])
|
|
1720 |
return
|
|
1721 |
|
|
1722 |
def register_Ns3Int64x64_t_methods(root_module, cls):
|
|
1723 |
cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long unsigned int const', 'right'))
|
|
1724 |
cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long unsigned int const', 'right'))
|
|
1725 |
cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned int const', 'right'))
|
|
1726 |
cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short unsigned int const', 'right'))
|
|
1727 |
cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned char const', 'right'))
|
|
1728 |
cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long int const', 'right'))
|
|
1729 |
cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long int const', 'right'))
|
|
1730 |
cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('int const', 'right'))
|
|
1731 |
cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short int const', 'right'))
|
|
1732 |
cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('signed char const', 'right'))
|
|
1733 |
cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('double const', 'right'))
|
|
1734 |
cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('ns3::int64x64_t const &', 'right'))
|
|
1735 |
cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long unsigned int const', 'right'))
|
|
1736 |
cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long unsigned int const', 'right'))
|
|
1737 |
cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned int const', 'right'))
|
|
1738 |
cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short unsigned int const', 'right'))
|
|
1739 |
cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned char const', 'right'))
|
|
1740 |
cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long int const', 'right'))
|
|
1741 |
cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long int const', 'right'))
|
|
1742 |
cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('int const', 'right'))
|
|
1743 |
cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short int const', 'right'))
|
|
1744 |
cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('signed char const', 'right'))
|
|
1745 |
cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('double const', 'right'))
|
|
1746 |
cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('ns3::int64x64_t const &', 'right'))
|
|
1747 |
cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long unsigned int const', 'right'))
|
|
1748 |
cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long unsigned int const', 'right'))
|
|
1749 |
cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned int const', 'right'))
|
|
1750 |
cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short unsigned int const', 'right'))
|
|
1751 |
cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned char const', 'right'))
|
|
1752 |
cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long int const', 'right'))
|
|
1753 |
cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long int const', 'right'))
|
|
1754 |
cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('int const', 'right'))
|
|
1755 |
cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short int const', 'right'))
|
|
1756 |
cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('signed char const', 'right'))
|
|
1757 |
cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('double const', 'right'))
|
|
1758 |
cls.add_unary_numeric_operator('-')
|
|
1759 |
cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('ns3::int64x64_t const &', 'right'))
|
|
1760 |
cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long unsigned int const', 'right'))
|
|
1761 |
cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long unsigned int const', 'right'))
|
|
1762 |
cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned int const', 'right'))
|
|
1763 |
cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short unsigned int const', 'right'))
|
|
1764 |
cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned char const', 'right'))
|
|
1765 |
cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long int const', 'right'))
|
|
1766 |
cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long int const', 'right'))
|
|
1767 |
cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('int const', 'right'))
|
|
1768 |
cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short int const', 'right'))
|
|
1769 |
cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('signed char const', 'right'))
|
|
1770 |
cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('double const', 'right'))
|
|
1771 |
cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('ns3::int64x64_t const &', 'right'))
|
|
1772 |
cls.add_binary_comparison_operator('<')
|
|
1773 |
cls.add_binary_comparison_operator('>')
|
|
1774 |
cls.add_binary_comparison_operator('!=')
|
|
1775 |
cls.add_inplace_numeric_operator('*=', param('ns3::int64x64_t const &', 'right'))
|
|
1776 |
cls.add_inplace_numeric_operator('+=', param('ns3::int64x64_t const &', 'right'))
|
|
1777 |
cls.add_inplace_numeric_operator('-=', param('ns3::int64x64_t const &', 'right'))
|
|
1778 |
cls.add_inplace_numeric_operator('/=', param('ns3::int64x64_t const &', 'right'))
|
|
1779 |
cls.add_output_stream_operator()
|
|
1780 |
cls.add_binary_comparison_operator('<=')
|
|
1781 |
cls.add_binary_comparison_operator('==')
|
|
1782 |
cls.add_binary_comparison_operator('>=')
|
|
1783 |
## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t() [constructor]
|
|
1784 |
cls.add_constructor([])
|
|
1785 |
## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(double v) [constructor]
|
|
1786 |
cls.add_constructor([param('double', 'v')])
|
|
1787 |
## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(int v) [constructor]
|
|
1788 |
cls.add_constructor([param('int', 'v')])
|
|
1789 |
## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(long int v) [constructor]
|
|
1790 |
cls.add_constructor([param('long int', 'v')])
|
|
1791 |
## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(long long int v) [constructor]
|
|
1792 |
cls.add_constructor([param('long long int', 'v')])
|
|
1793 |
## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(unsigned int v) [constructor]
|
|
1794 |
cls.add_constructor([param('unsigned int', 'v')])
|
|
1795 |
## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(long unsigned int v) [constructor]
|
|
1796 |
cls.add_constructor([param('long unsigned int', 'v')])
|
|
1797 |
## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(long long unsigned int v) [constructor]
|
|
1798 |
cls.add_constructor([param('long long unsigned int', 'v')])
|
|
1799 |
## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(int64_t hi, uint64_t lo) [constructor]
|
|
1800 |
cls.add_constructor([param('int64_t', 'hi'), param('uint64_t', 'lo')])
|
|
1801 |
## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(ns3::int64x64_t const & o) [copy constructor]
|
|
1802 |
cls.add_constructor([param('ns3::int64x64_t const &', 'o')])
|
|
1803 |
## int64x64-double.h (module 'core'): double ns3::int64x64_t::GetDouble() const [member function]
|
|
1804 |
cls.add_method('GetDouble',
|
|
1805 |
'double',
|
|
1806 |
[],
|
|
1807 |
is_const=True)
|
|
1808 |
## int64x64-double.h (module 'core'): int64_t ns3::int64x64_t::GetHigh() const [member function]
|
|
1809 |
cls.add_method('GetHigh',
|
|
1810 |
'int64_t',
|
|
1811 |
[],
|
|
1812 |
is_const=True)
|
|
1813 |
## int64x64-double.h (module 'core'): uint64_t ns3::int64x64_t::GetLow() const [member function]
|
|
1814 |
cls.add_method('GetLow',
|
|
1815 |
'uint64_t',
|
|
1816 |
[],
|
|
1817 |
is_const=True)
|
|
1818 |
## int64x64-double.h (module 'core'): static ns3::int64x64_t ns3::int64x64_t::Invert(uint64_t v) [member function]
|
|
1819 |
cls.add_method('Invert',
|
|
1820 |
'ns3::int64x64_t',
|
|
1821 |
[param('uint64_t', 'v')],
|
|
1822 |
is_static=True)
|
|
1823 |
## int64x64-double.h (module 'core'): void ns3::int64x64_t::MulByInvert(ns3::int64x64_t const & o) [member function]
|
|
1824 |
cls.add_method('MulByInvert',
|
|
1825 |
'void',
|
|
1826 |
[param('ns3::int64x64_t const &', 'o')])
|
|
1827 |
return
|
|
1828 |
|
|
1829 |
def register_Ns3ConstantVariable_methods(root_module, cls):
|
|
1830 |
## random-variable.h (module 'core'): ns3::ConstantVariable::ConstantVariable(ns3::ConstantVariable const & arg0) [copy constructor]
|
|
1831 |
cls.add_constructor([param('ns3::ConstantVariable const &', 'arg0')])
|
|
1832 |
## random-variable.h (module 'core'): ns3::ConstantVariable::ConstantVariable() [constructor]
|
|
1833 |
cls.add_constructor([])
|
|
1834 |
## random-variable.h (module 'core'): ns3::ConstantVariable::ConstantVariable(double c) [constructor]
|
|
1835 |
cls.add_constructor([param('double', 'c')])
|
|
1836 |
## random-variable.h (module 'core'): void ns3::ConstantVariable::SetConstant(double c) [member function]
|
|
1837 |
cls.add_method('SetConstant',
|
|
1838 |
'void',
|
|
1839 |
[param('double', 'c')])
|
|
1840 |
return
|
|
1841 |
|
|
1842 |
def register_Ns3DeterministicVariable_methods(root_module, cls):
|
|
1843 |
## random-variable.h (module 'core'): ns3::DeterministicVariable::DeterministicVariable(ns3::DeterministicVariable const & arg0) [copy constructor]
|
|
1844 |
cls.add_constructor([param('ns3::DeterministicVariable const &', 'arg0')])
|
|
1845 |
## random-variable.h (module 'core'): ns3::DeterministicVariable::DeterministicVariable(double * d, uint32_t c) [constructor]
|
|
1846 |
cls.add_constructor([param('double *', 'd'), param('uint32_t', 'c')])
|
|
1847 |
return
|
|
1848 |
|
|
1849 |
def register_Ns3EmpiricalVariable_methods(root_module, cls):
|
|
1850 |
## random-variable.h (module 'core'): ns3::EmpiricalVariable::EmpiricalVariable(ns3::EmpiricalVariable const & arg0) [copy constructor]
|
|
1851 |
cls.add_constructor([param('ns3::EmpiricalVariable const &', 'arg0')])
|
|
1852 |
## random-variable.h (module 'core'): ns3::EmpiricalVariable::EmpiricalVariable() [constructor]
|
|
1853 |
cls.add_constructor([])
|
|
1854 |
## random-variable.h (module 'core'): void ns3::EmpiricalVariable::CDF(double v, double c) [member function]
|
|
1855 |
cls.add_method('CDF',
|
|
1856 |
'void',
|
|
1857 |
[param('double', 'v'), param('double', 'c')])
|
|
1858 |
return
|
|
1859 |
|
|
1860 |
def register_Ns3ErlangVariable_methods(root_module, cls):
|
|
1861 |
## random-variable.h (module 'core'): ns3::ErlangVariable::ErlangVariable(ns3::ErlangVariable const & arg0) [copy constructor]
|
|
1862 |
cls.add_constructor([param('ns3::ErlangVariable const &', 'arg0')])
|
|
1863 |
## random-variable.h (module 'core'): ns3::ErlangVariable::ErlangVariable() [constructor]
|
|
1864 |
cls.add_constructor([])
|
|
1865 |
## random-variable.h (module 'core'): ns3::ErlangVariable::ErlangVariable(unsigned int k, double lambda) [constructor]
|
|
1866 |
cls.add_constructor([param('unsigned int', 'k'), param('double', 'lambda')])
|
|
1867 |
## random-variable.h (module 'core'): double ns3::ErlangVariable::GetValue() const [member function]
|
|
1868 |
cls.add_method('GetValue',
|
|
1869 |
'double',
|
|
1870 |
[],
|
|
1871 |
is_const=True)
|
|
1872 |
## random-variable.h (module 'core'): double ns3::ErlangVariable::GetValue(unsigned int k, double lambda) const [member function]
|
|
1873 |
cls.add_method('GetValue',
|
|
1874 |
'double',
|
|
1875 |
[param('unsigned int', 'k'), param('double', 'lambda')],
|
|
1876 |
is_const=True)
|
|
1877 |
return
|
|
1878 |
|
|
1879 |
def register_Ns3ExponentialVariable_methods(root_module, cls):
|
|
1880 |
## random-variable.h (module 'core'): ns3::ExponentialVariable::ExponentialVariable(ns3::ExponentialVariable const & arg0) [copy constructor]
|
|
1881 |
cls.add_constructor([param('ns3::ExponentialVariable const &', 'arg0')])
|
|
1882 |
## random-variable.h (module 'core'): ns3::ExponentialVariable::ExponentialVariable() [constructor]
|
|
1883 |
cls.add_constructor([])
|
|
1884 |
## random-variable.h (module 'core'): ns3::ExponentialVariable::ExponentialVariable(double m) [constructor]
|
|
1885 |
cls.add_constructor([param('double', 'm')])
|
|
1886 |
## random-variable.h (module 'core'): ns3::ExponentialVariable::ExponentialVariable(double m, double b) [constructor]
|
|
1887 |
cls.add_constructor([param('double', 'm'), param('double', 'b')])
|
|
1888 |
return
|
|
1889 |
|
|
1890 |
def register_Ns3GammaVariable_methods(root_module, cls):
|
|
1891 |
## random-variable.h (module 'core'): ns3::GammaVariable::GammaVariable(ns3::GammaVariable const & arg0) [copy constructor]
|
|
1892 |
cls.add_constructor([param('ns3::GammaVariable const &', 'arg0')])
|
|
1893 |
## random-variable.h (module 'core'): ns3::GammaVariable::GammaVariable() [constructor]
|
|
1894 |
cls.add_constructor([])
|
|
1895 |
## random-variable.h (module 'core'): ns3::GammaVariable::GammaVariable(double alpha, double beta) [constructor]
|
|
1896 |
cls.add_constructor([param('double', 'alpha'), param('double', 'beta')])
|
|
1897 |
## random-variable.h (module 'core'): double ns3::GammaVariable::GetValue() const [member function]
|
|
1898 |
cls.add_method('GetValue',
|
|
1899 |
'double',
|
|
1900 |
[],
|
|
1901 |
is_const=True)
|
|
1902 |
## random-variable.h (module 'core'): double ns3::GammaVariable::GetValue(double alpha, double beta) const [member function]
|
|
1903 |
cls.add_method('GetValue',
|
|
1904 |
'double',
|
|
1905 |
[param('double', 'alpha'), param('double', 'beta')],
|
|
1906 |
is_const=True)
|
|
1907 |
return
|
|
1908 |
|
|
1909 |
def register_Ns3IntEmpiricalVariable_methods(root_module, cls):
|
|
1910 |
## random-variable.h (module 'core'): ns3::IntEmpiricalVariable::IntEmpiricalVariable(ns3::IntEmpiricalVariable const & arg0) [copy constructor]
|
|
1911 |
cls.add_constructor([param('ns3::IntEmpiricalVariable const &', 'arg0')])
|
|
1912 |
## random-variable.h (module 'core'): ns3::IntEmpiricalVariable::IntEmpiricalVariable() [constructor]
|
|
1913 |
cls.add_constructor([])
|
|
1914 |
return
|
|
1915 |
|
|
1916 |
def register_Ns3LogNormalVariable_methods(root_module, cls):
|
|
1917 |
## random-variable.h (module 'core'): ns3::LogNormalVariable::LogNormalVariable(ns3::LogNormalVariable const & arg0) [copy constructor]
|
|
1918 |
cls.add_constructor([param('ns3::LogNormalVariable const &', 'arg0')])
|
|
1919 |
## random-variable.h (module 'core'): ns3::LogNormalVariable::LogNormalVariable(double mu, double sigma) [constructor]
|
|
1920 |
cls.add_constructor([param('double', 'mu'), param('double', 'sigma')])
|
|
1921 |
return
|
|
1922 |
|
|
1923 |
def register_Ns3NormalVariable_methods(root_module, cls):
|
|
1924 |
## random-variable.h (module 'core'): ns3::NormalVariable::NormalVariable(ns3::NormalVariable const & arg0) [copy constructor]
|
|
1925 |
cls.add_constructor([param('ns3::NormalVariable const &', 'arg0')])
|
|
1926 |
## random-variable.h (module 'core'): ns3::NormalVariable::NormalVariable() [constructor]
|
|
1927 |
cls.add_constructor([])
|
|
1928 |
## random-variable.h (module 'core'): ns3::NormalVariable::NormalVariable(double m, double v) [constructor]
|
|
1929 |
cls.add_constructor([param('double', 'm'), param('double', 'v')])
|
|
1930 |
## random-variable.h (module 'core'): ns3::NormalVariable::NormalVariable(double m, double v, double b) [constructor]
|
|
1931 |
cls.add_constructor([param('double', 'm'), param('double', 'v'), param('double', 'b')])
|
|
1932 |
return
|
|
1933 |
|
|
1934 |
def register_Ns3Object_methods(root_module, cls):
|
|
1935 |
## object.h (module 'core'): ns3::Object::Object() [constructor]
|
|
1936 |
cls.add_constructor([])
|
|
1937 |
## object.h (module 'core'): void ns3::Object::AggregateObject(ns3::Ptr<ns3::Object> other) [member function]
|
|
1938 |
cls.add_method('AggregateObject',
|
|
1939 |
'void',
|
|
1940 |
[param('ns3::Ptr< ns3::Object >', 'other')])
|
|
1941 |
## object.h (module 'core'): void ns3::Object::Dispose() [member function]
|
|
1942 |
cls.add_method('Dispose',
|
|
1943 |
'void',
|
|
1944 |
[])
|
|
1945 |
## object.h (module 'core'): ns3::Object::AggregateIterator ns3::Object::GetAggregateIterator() const [member function]
|
|
1946 |
cls.add_method('GetAggregateIterator',
|
|
1947 |
'ns3::Object::AggregateIterator',
|
|
1948 |
[],
|
|
1949 |
is_const=True)
|
|
1950 |
## object.h (module 'core'): ns3::TypeId ns3::Object::GetInstanceTypeId() const [member function]
|
|
1951 |
cls.add_method('GetInstanceTypeId',
|
|
1952 |
'ns3::TypeId',
|
|
1953 |
[],
|
|
1954 |
is_const=True, is_virtual=True)
|
|
1955 |
## object.h (module 'core'): static ns3::TypeId ns3::Object::GetTypeId() [member function]
|
|
1956 |
cls.add_method('GetTypeId',
|
|
1957 |
'ns3::TypeId',
|
|
1958 |
[],
|
|
1959 |
is_static=True)
|
|
1960 |
## object.h (module 'core'): void ns3::Object::Start() [member function]
|
|
1961 |
cls.add_method('Start',
|
|
1962 |
'void',
|
|
1963 |
[])
|
|
1964 |
## object.h (module 'core'): ns3::Object::Object(ns3::Object const & o) [copy constructor]
|
|
1965 |
cls.add_constructor([param('ns3::Object const &', 'o')],
|
|
1966 |
visibility='protected')
|
|
1967 |
## object.h (module 'core'): void ns3::Object::DoDispose() [member function]
|
|
1968 |
cls.add_method('DoDispose',
|
|
1969 |
'void',
|
|
1970 |
[],
|
|
1971 |
visibility='protected', is_virtual=True)
|
|
1972 |
## object.h (module 'core'): void ns3::Object::DoStart() [member function]
|
|
1973 |
cls.add_method('DoStart',
|
|
1974 |
'void',
|
|
1975 |
[],
|
|
1976 |
visibility='protected', is_virtual=True)
|
|
1977 |
## object.h (module 'core'): void ns3::Object::NotifyNewAggregate() [member function]
|
|
1978 |
cls.add_method('NotifyNewAggregate',
|
|
1979 |
'void',
|
|
1980 |
[],
|
|
1981 |
visibility='protected', is_virtual=True)
|
|
1982 |
return
|
|
1983 |
|
|
1984 |
def register_Ns3ObjectAggregateIterator_methods(root_module, cls):
|
|
1985 |
## object.h (module 'core'): ns3::Object::AggregateIterator::AggregateIterator(ns3::Object::AggregateIterator const & arg0) [copy constructor]
|
|
1986 |
cls.add_constructor([param('ns3::Object::AggregateIterator const &', 'arg0')])
|
|
1987 |
## object.h (module 'core'): ns3::Object::AggregateIterator::AggregateIterator() [constructor]
|
|
1988 |
cls.add_constructor([])
|
|
1989 |
## object.h (module 'core'): bool ns3::Object::AggregateIterator::HasNext() const [member function]
|
|
1990 |
cls.add_method('HasNext',
|
|
1991 |
'bool',
|
|
1992 |
[],
|
|
1993 |
is_const=True)
|
|
1994 |
## object.h (module 'core'): ns3::Ptr<ns3::Object const> ns3::Object::AggregateIterator::Next() [member function]
|
|
1995 |
cls.add_method('Next',
|
|
1996 |
'ns3::Ptr< ns3::Object const >',
|
|
1997 |
[])
|
|
1998 |
return
|
|
1999 |
|
|
2000 |
def register_Ns3ParetoVariable_methods(root_module, cls):
|
|
2001 |
## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable(ns3::ParetoVariable const & arg0) [copy constructor]
|
|
2002 |
cls.add_constructor([param('ns3::ParetoVariable const &', 'arg0')])
|
|
2003 |
## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable() [constructor]
|
|
2004 |
cls.add_constructor([])
|
|
2005 |
## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable(double m) [constructor]
|
|
2006 |
cls.add_constructor([param('double', 'm')])
|
|
2007 |
## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable(double m, double s) [constructor]
|
|
2008 |
cls.add_constructor([param('double', 'm'), param('double', 's')])
|
|
2009 |
## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable(double m, double s, double b) [constructor]
|
|
2010 |
cls.add_constructor([param('double', 'm'), param('double', 's'), param('double', 'b')])
|
|
2011 |
## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable(std::pair<double,double> params) [constructor]
|
|
2012 |
cls.add_constructor([param('std::pair< double, double >', 'params')])
|
|
2013 |
## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable(std::pair<double,double> params, double b) [constructor]
|
|
2014 |
cls.add_constructor([param('std::pair< double, double >', 'params'), param('double', 'b')])
|
|
2015 |
return
|
|
2016 |
|
|
2017 |
def register_Ns3PositionAllocator_methods(root_module, cls):
|
|
2018 |
## position-allocator.h (module 'mobility'): ns3::PositionAllocator::PositionAllocator(ns3::PositionAllocator const & arg0) [copy constructor]
|
|
2019 |
cls.add_constructor([param('ns3::PositionAllocator const &', 'arg0')])
|
|
2020 |
## position-allocator.h (module 'mobility'): ns3::PositionAllocator::PositionAllocator() [constructor]
|
|
2021 |
cls.add_constructor([])
|
|
2022 |
## position-allocator.h (module 'mobility'): ns3::Vector ns3::PositionAllocator::GetNext() const [member function]
|
|
2023 |
cls.add_method('GetNext',
|
|
2024 |
'ns3::Vector',
|
|
2025 |
[],
|
|
2026 |
is_pure_virtual=True, is_const=True, is_virtual=True)
|
|
2027 |
## position-allocator.h (module 'mobility'): static ns3::TypeId ns3::PositionAllocator::GetTypeId() [member function]
|
|
2028 |
cls.add_method('GetTypeId',
|
|
2029 |
'ns3::TypeId',
|
|
2030 |
[],
|
|
2031 |
is_static=True)
|
|
2032 |
return
|
|
2033 |
|
|
2034 |
def register_Ns3PropagationLossModel_methods(root_module, cls):
|
|
2035 |
## propagation-loss-model.h (module 'propagation'): static ns3::TypeId ns3::PropagationLossModel::GetTypeId() [member function]
|
|
2036 |
cls.add_method('GetTypeId',
|
|
2037 |
'ns3::TypeId',
|
|
2038 |
[],
|
|
2039 |
is_static=True)
|
|
2040 |
## propagation-loss-model.h (module 'propagation'): ns3::PropagationLossModel::PropagationLossModel() [constructor]
|
|
2041 |
cls.add_constructor([])
|
|
2042 |
## propagation-loss-model.h (module 'propagation'): void ns3::PropagationLossModel::SetNext(ns3::Ptr<ns3::PropagationLossModel> next) [member function]
|
|
2043 |
cls.add_method('SetNext',
|
|
2044 |
'void',
|
|
2045 |
[param('ns3::Ptr< ns3::PropagationLossModel >', 'next')])
|
|
2046 |
## 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]
|
|
2047 |
cls.add_method('CalcRxPower',
|
|
2048 |
'double',
|
|
2049 |
[param('double', 'txPowerDbm'), param('ns3::Ptr< ns3::MobilityModel >', 'a'), param('ns3::Ptr< ns3::MobilityModel >', 'b')],
|
|
2050 |
is_const=True)
|
|
2051 |
## 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]
|
|
2052 |
cls.add_method('DoCalcRxPower',
|
|
2053 |
'double',
|
|
2054 |
[param('double', 'txPowerDbm'), param('ns3::Ptr< ns3::MobilityModel >', 'a'), param('ns3::Ptr< ns3::MobilityModel >', 'b')],
|
|
2055 |
is_pure_virtual=True, is_const=True, visibility='private', is_virtual=True)
|
|
2056 |
return
|
|
2057 |
|
|
2058 |
def register_Ns3RandomBoxPositionAllocator_methods(root_module, cls):
|
|
2059 |
## position-allocator.h (module 'mobility'): ns3::RandomBoxPositionAllocator::RandomBoxPositionAllocator(ns3::RandomBoxPositionAllocator const & arg0) [copy constructor]
|
|
2060 |
cls.add_constructor([param('ns3::RandomBoxPositionAllocator const &', 'arg0')])
|
|
2061 |
## position-allocator.h (module 'mobility'): ns3::RandomBoxPositionAllocator::RandomBoxPositionAllocator() [constructor]
|
|
2062 |
cls.add_constructor([])
|
|
2063 |
## position-allocator.h (module 'mobility'): ns3::Vector ns3::RandomBoxPositionAllocator::GetNext() const [member function]
|
|
2064 |
cls.add_method('GetNext',
|
|
2065 |
'ns3::Vector',
|
|
2066 |
[],
|
|
2067 |
is_const=True, is_virtual=True)
|
|
2068 |
## position-allocator.h (module 'mobility'): static ns3::TypeId ns3::RandomBoxPositionAllocator::GetTypeId() [member function]
|
|
2069 |
cls.add_method('GetTypeId',
|
|
2070 |
'ns3::TypeId',
|
|
2071 |
[],
|
|
2072 |
is_static=True)
|
|
2073 |
## position-allocator.h (module 'mobility'): void ns3::RandomBoxPositionAllocator::SetX(ns3::RandomVariable x) [member function]
|
|
2074 |
cls.add_method('SetX',
|
|
2075 |
'void',
|
|
2076 |
[param('ns3::RandomVariable', 'x')])
|
|
2077 |
## position-allocator.h (module 'mobility'): void ns3::RandomBoxPositionAllocator::SetY(ns3::RandomVariable y) [member function]
|
|
2078 |
cls.add_method('SetY',
|
|
2079 |
'void',
|
|
2080 |
[param('ns3::RandomVariable', 'y')])
|
|
2081 |
## position-allocator.h (module 'mobility'): void ns3::RandomBoxPositionAllocator::SetZ(ns3::RandomVariable z) [member function]
|
|
2082 |
cls.add_method('SetZ',
|
|
2083 |
'void',
|
|
2084 |
[param('ns3::RandomVariable', 'z')])
|
|
2085 |
return
|
|
2086 |
|
|
2087 |
def register_Ns3RandomBuildingPositionAllocator_methods(root_module, cls):
|
|
2088 |
## building-position-allocator.h (module 'buildings'): ns3::RandomBuildingPositionAllocator::RandomBuildingPositionAllocator(ns3::RandomBuildingPositionAllocator const & arg0) [copy constructor]
|
|
2089 |
cls.add_constructor([param('ns3::RandomBuildingPositionAllocator const &', 'arg0')])
|
|
2090 |
## building-position-allocator.h (module 'buildings'): ns3::RandomBuildingPositionAllocator::RandomBuildingPositionAllocator() [constructor]
|
|
2091 |
cls.add_constructor([])
|
|
2092 |
## building-position-allocator.h (module 'buildings'): ns3::Vector ns3::RandomBuildingPositionAllocator::GetNext() const [member function]
|
|
2093 |
cls.add_method('GetNext',
|
|
2094 |
'ns3::Vector',
|
|
2095 |
[],
|
|
2096 |
is_const=True, is_virtual=True)
|
|
2097 |
## building-position-allocator.h (module 'buildings'): static ns3::TypeId ns3::RandomBuildingPositionAllocator::GetTypeId() [member function]
|
|
2098 |
cls.add_method('GetTypeId',
|
|
2099 |
'ns3::TypeId',
|
|
2100 |
[],
|
|
2101 |
is_static=True)
|
|
2102 |
return
|
|
2103 |
|
|
2104 |
def register_Ns3RandomDiscPositionAllocator_methods(root_module, cls):
|
|
2105 |
## position-allocator.h (module 'mobility'): ns3::RandomDiscPositionAllocator::RandomDiscPositionAllocator(ns3::RandomDiscPositionAllocator const & arg0) [copy constructor]
|
|
2106 |
cls.add_constructor([param('ns3::RandomDiscPositionAllocator const &', 'arg0')])
|
|
2107 |
## position-allocator.h (module 'mobility'): ns3::RandomDiscPositionAllocator::RandomDiscPositionAllocator() [constructor]
|
|
2108 |
cls.add_constructor([])
|
|
2109 |
## position-allocator.h (module 'mobility'): ns3::Vector ns3::RandomDiscPositionAllocator::GetNext() const [member function]
|
|
2110 |
cls.add_method('GetNext',
|
|
2111 |
'ns3::Vector',
|
|
2112 |
[],
|
|
2113 |
is_const=True, is_virtual=True)
|
|
2114 |
## position-allocator.h (module 'mobility'): static ns3::TypeId ns3::RandomDiscPositionAllocator::GetTypeId() [member function]
|
|
2115 |
cls.add_method('GetTypeId',
|
|
2116 |
'ns3::TypeId',
|
|
2117 |
[],
|
|
2118 |
is_static=True)
|
|
2119 |
## position-allocator.h (module 'mobility'): void ns3::RandomDiscPositionAllocator::SetRho(ns3::RandomVariable rho) [member function]
|
|
2120 |
cls.add_method('SetRho',
|
|
2121 |
'void',
|
|
2122 |
[param('ns3::RandomVariable', 'rho')])
|
|
2123 |
## position-allocator.h (module 'mobility'): void ns3::RandomDiscPositionAllocator::SetTheta(ns3::RandomVariable theta) [member function]
|
|
2124 |
cls.add_method('SetTheta',
|
|
2125 |
'void',
|
|
2126 |
[param('ns3::RandomVariable', 'theta')])
|
|
2127 |
## position-allocator.h (module 'mobility'): void ns3::RandomDiscPositionAllocator::SetX(double x) [member function]
|
|
2128 |
cls.add_method('SetX',
|
|
2129 |
'void',
|
|
2130 |
[param('double', 'x')])
|
|
2131 |
## position-allocator.h (module 'mobility'): void ns3::RandomDiscPositionAllocator::SetY(double y) [member function]
|
|
2132 |
cls.add_method('SetY',
|
|
2133 |
'void',
|
|
2134 |
[param('double', 'y')])
|
|
2135 |
return
|
|
2136 |
|
|
2137 |
def register_Ns3RandomPropagationLossModel_methods(root_module, cls):
|
|
2138 |
## propagation-loss-model.h (module 'propagation'): static ns3::TypeId ns3::RandomPropagationLossModel::GetTypeId() [member function]
|
|
2139 |
cls.add_method('GetTypeId',
|
|
2140 |
'ns3::TypeId',
|
|
2141 |
[],
|
|
2142 |
is_static=True)
|
|
2143 |
## propagation-loss-model.h (module 'propagation'): ns3::RandomPropagationLossModel::RandomPropagationLossModel() [constructor]
|
|
2144 |
cls.add_constructor([])
|
|
2145 |
## 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]
|
|
2146 |
cls.add_method('DoCalcRxPower',
|
|
2147 |
'double',
|
|
2148 |
[param('double', 'txPowerDbm'), param('ns3::Ptr< ns3::MobilityModel >', 'a'), param('ns3::Ptr< ns3::MobilityModel >', 'b')],
|
|
2149 |
is_const=True, visibility='private', is_virtual=True)
|
|
2150 |
return
|
|
2151 |
|
|
2152 |
def register_Ns3RandomRectanglePositionAllocator_methods(root_module, cls):
|
|
2153 |
## position-allocator.h (module 'mobility'): ns3::RandomRectanglePositionAllocator::RandomRectanglePositionAllocator(ns3::RandomRectanglePositionAllocator const & arg0) [copy constructor]
|
|
2154 |
cls.add_constructor([param('ns3::RandomRectanglePositionAllocator const &', 'arg0')])
|
|
2155 |
## position-allocator.h (module 'mobility'): ns3::RandomRectanglePositionAllocator::RandomRectanglePositionAllocator() [constructor]
|
|
2156 |
cls.add_constructor([])
|
|
2157 |
## position-allocator.h (module 'mobility'): ns3::Vector ns3::RandomRectanglePositionAllocator::GetNext() const [member function]
|
|
2158 |
cls.add_method('GetNext',
|
|
2159 |
'ns3::Vector',
|
|
2160 |
[],
|
|
2161 |
is_const=True, is_virtual=True)
|
|
2162 |
## position-allocator.h (module 'mobility'): static ns3::TypeId ns3::RandomRectanglePositionAllocator::GetTypeId() [member function]
|
|
2163 |
cls.add_method('GetTypeId',
|
|
2164 |
'ns3::TypeId',
|
|
2165 |
[],
|
|
2166 |
is_static=True)
|
|
2167 |
## position-allocator.h (module 'mobility'): void ns3::RandomRectanglePositionAllocator::SetX(ns3::RandomVariable x) [member function]
|
|
2168 |
cls.add_method('SetX',
|
|
2169 |
'void',
|
|
2170 |
[param('ns3::RandomVariable', 'x')])
|
|
2171 |
## position-allocator.h (module 'mobility'): void ns3::RandomRectanglePositionAllocator::SetY(ns3::RandomVariable y) [member function]
|
|
2172 |
cls.add_method('SetY',
|
|
2173 |
'void',
|
|
2174 |
[param('ns3::RandomVariable', 'y')])
|
|
2175 |
return
|
|
2176 |
|
|
2177 |
def register_Ns3RandomRoomPositionAllocator_methods(root_module, cls):
|
|
2178 |
## building-position-allocator.h (module 'buildings'): ns3::RandomRoomPositionAllocator::RandomRoomPositionAllocator(ns3::RandomRoomPositionAllocator const & arg0) [copy constructor]
|
|
2179 |
cls.add_constructor([param('ns3::RandomRoomPositionAllocator const &', 'arg0')])
|
|
2180 |
## building-position-allocator.h (module 'buildings'): ns3::RandomRoomPositionAllocator::RandomRoomPositionAllocator() [constructor]
|
|
2181 |
cls.add_constructor([])
|
|
2182 |
## building-position-allocator.h (module 'buildings'): ns3::Vector ns3::RandomRoomPositionAllocator::GetNext() const [member function]
|
|
2183 |
cls.add_method('GetNext',
|
|
2184 |
'ns3::Vector',
|
|
2185 |
[],
|
|
2186 |
is_const=True, is_virtual=True)
|
|
2187 |
## building-position-allocator.h (module 'buildings'): static ns3::TypeId ns3::RandomRoomPositionAllocator::GetTypeId() [member function]
|
|
2188 |
cls.add_method('GetTypeId',
|
|
2189 |
'ns3::TypeId',
|
|
2190 |
[],
|
|
2191 |
is_static=True)
|
|
2192 |
return
|
|
2193 |
|
|
2194 |
def register_Ns3RangePropagationLossModel_methods(root_module, cls):
|
|
2195 |
## propagation-loss-model.h (module 'propagation'): static ns3::TypeId ns3::RangePropagationLossModel::GetTypeId() [member function]
|
|
2196 |
cls.add_method('GetTypeId',
|
|
2197 |
'ns3::TypeId',
|
|
2198 |
[],
|
|
2199 |
is_static=True)
|
|
2200 |
## propagation-loss-model.h (module 'propagation'): ns3::RangePropagationLossModel::RangePropagationLossModel() [constructor]
|
|
2201 |
cls.add_constructor([])
|
|
2202 |
## 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]
|
|
2203 |
cls.add_method('DoCalcRxPower',
|
|
2204 |
'double',
|
|
2205 |
[param('double', 'txPowerDbm'), param('ns3::Ptr< ns3::MobilityModel >', 'a'), param('ns3::Ptr< ns3::MobilityModel >', 'b')],
|
|
2206 |
is_const=True, visibility='private', is_virtual=True)
|
|
2207 |
return
|
|
2208 |
|
|
2209 |
def register_Ns3SameRoomPositionAllocator_methods(root_module, cls):
|
|
2210 |
## building-position-allocator.h (module 'buildings'): ns3::SameRoomPositionAllocator::SameRoomPositionAllocator(ns3::SameRoomPositionAllocator const & arg0) [copy constructor]
|
|
2211 |
cls.add_constructor([param('ns3::SameRoomPositionAllocator const &', 'arg0')])
|
|
2212 |
## building-position-allocator.h (module 'buildings'): ns3::SameRoomPositionAllocator::SameRoomPositionAllocator() [constructor]
|
|
2213 |
cls.add_constructor([])
|
|
2214 |
## building-position-allocator.h (module 'buildings'): ns3::SameRoomPositionAllocator::SameRoomPositionAllocator(ns3::NodeContainer c) [constructor]
|
|
2215 |
cls.add_constructor([param('ns3::NodeContainer', 'c')])
|
|
2216 |
## building-position-allocator.h (module 'buildings'): ns3::Vector ns3::SameRoomPositionAllocator::GetNext() const [member function]
|
|
2217 |
cls.add_method('GetNext',
|
|
2218 |
'ns3::Vector',
|
|
2219 |
[],
|
|
2220 |
is_const=True, is_virtual=True)
|
|
2221 |
## building-position-allocator.h (module 'buildings'): static ns3::TypeId ns3::SameRoomPositionAllocator::GetTypeId() [member function]
|
|
2222 |
cls.add_method('GetTypeId',
|
|
2223 |
'ns3::TypeId',
|
|
2224 |
[],
|
|
2225 |
is_static=True)
|
|
2226 |
return
|
|
2227 |
|
|
2228 |
def register_Ns3SimpleRefCount__Ns3AttributeAccessor_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeAccessor__gt___methods(root_module, cls):
|
|
2229 |
## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> >::SimpleRefCount() [constructor]
|
|
2230 |
cls.add_constructor([])
|
|
2231 |
## 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]
|
|
2232 |
cls.add_constructor([param('ns3::SimpleRefCount< ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter< ns3::AttributeAccessor > > const &', 'o')])
|
|
2233 |
## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> >::Cleanup() [member function]
|
|
2234 |
cls.add_method('Cleanup',
|
|
2235 |
'void',
|
|
2236 |
[],
|
|
2237 |
is_static=True)
|
|
2238 |
return
|
|
2239 |
|
|
2240 |
def register_Ns3SimpleRefCount__Ns3AttributeChecker_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeChecker__gt___methods(root_module, cls):
|
|
2241 |
## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter<ns3::AttributeChecker> >::SimpleRefCount() [constructor]
|
|
2242 |
cls.add_constructor([])
|
|
2243 |
## 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]
|
|
2244 |
cls.add_constructor([param('ns3::SimpleRefCount< ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter< ns3::AttributeChecker > > const &', 'o')])
|
|
2245 |
## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter<ns3::AttributeChecker> >::Cleanup() [member function]
|
|
2246 |
cls.add_method('Cleanup',
|
|
2247 |
'void',
|
|
2248 |
[],
|
|
2249 |
is_static=True)
|
|
2250 |
return
|
|
2251 |
|
|
2252 |
def register_Ns3SimpleRefCount__Ns3AttributeValue_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeValue__gt___methods(root_module, cls):
|
|
2253 |
## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter<ns3::AttributeValue> >::SimpleRefCount() [constructor]
|
|
2254 |
cls.add_constructor([])
|
|
2255 |
## 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]
|
|
2256 |
cls.add_constructor([param('ns3::SimpleRefCount< ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter< ns3::AttributeValue > > const &', 'o')])
|
|
2257 |
## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter<ns3::AttributeValue> >::Cleanup() [member function]
|
|
2258 |
cls.add_method('Cleanup',
|
|
2259 |
'void',
|
|
2260 |
[],
|
|
2261 |
is_static=True)
|
|
2262 |
return
|
|
2263 |
|
|
2264 |
def register_Ns3SimpleRefCount__Ns3CallbackImplBase_Ns3Empty_Ns3DefaultDeleter__lt__ns3CallbackImplBase__gt___methods(root_module, cls):
|
|
2265 |
## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> >::SimpleRefCount() [constructor]
|
|
2266 |
cls.add_constructor([])
|
|
2267 |
## 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]
|
|
2268 |
cls.add_constructor([param('ns3::SimpleRefCount< ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter< ns3::CallbackImplBase > > const &', 'o')])
|
|
2269 |
## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> >::Cleanup() [member function]
|
|
2270 |
cls.add_method('Cleanup',
|
|
2271 |
'void',
|
|
2272 |
[],
|
|
2273 |
is_static=True)
|
|
2274 |
return
|
|
2275 |
|
|
2276 |
def register_Ns3SimpleRefCount__Ns3TraceSourceAccessor_Ns3Empty_Ns3DefaultDeleter__lt__ns3TraceSourceAccessor__gt___methods(root_module, cls):
|
|
2277 |
## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter<ns3::TraceSourceAccessor> >::SimpleRefCount() [constructor]
|
|
2278 |
cls.add_constructor([])
|
|
2279 |
## 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]
|
|
2280 |
cls.add_constructor([param('ns3::SimpleRefCount< ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter< ns3::TraceSourceAccessor > > const &', 'o')])
|
|
2281 |
## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter<ns3::TraceSourceAccessor> >::Cleanup() [member function]
|
|
2282 |
cls.add_method('Cleanup',
|
|
2283 |
'void',
|
|
2284 |
[],
|
|
2285 |
is_static=True)
|
|
2286 |
return
|
|
2287 |
|
|
2288 |
def register_Ns3ThreeLogDistancePropagationLossModel_methods(root_module, cls):
|
|
2289 |
## propagation-loss-model.h (module 'propagation'): static ns3::TypeId ns3::ThreeLogDistancePropagationLossModel::GetTypeId() [member function]
|
|
2290 |
cls.add_method('GetTypeId',
|
|
2291 |
'ns3::TypeId',
|
|
2292 |
[],
|
|
2293 |
is_static=True)
|
|
2294 |
## propagation-loss-model.h (module 'propagation'): ns3::ThreeLogDistancePropagationLossModel::ThreeLogDistancePropagationLossModel() [constructor]
|
|
2295 |
cls.add_constructor([])
|
|
2296 |
## 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]
|
|
2297 |
cls.add_method('DoCalcRxPower',
|
|
2298 |
'double',
|
|
2299 |
[param('double', 'txPowerDbm'), param('ns3::Ptr< ns3::MobilityModel >', 'a'), param('ns3::Ptr< ns3::MobilityModel >', 'b')],
|
|
2300 |
is_const=True, visibility='private', is_virtual=True)
|
|
2301 |
return
|
|
2302 |
|
|
2303 |
def register_Ns3Time_methods(root_module, cls):
|
|
2304 |
cls.add_binary_numeric_operator('+', root_module['ns3::Time'], root_module['ns3::Time'], param('ns3::Time const &', 'right'))
|
|
2305 |
cls.add_binary_numeric_operator('-', root_module['ns3::Time'], root_module['ns3::Time'], param('ns3::Time const &', 'right'))
|
|
2306 |
cls.add_binary_comparison_operator('<')
|
|
2307 |
cls.add_binary_comparison_operator('>')
|
|
2308 |
cls.add_binary_comparison_operator('!=')
|
|
2309 |
cls.add_inplace_numeric_operator('+=', param('ns3::Time const &', 'right'))
|
|
2310 |
cls.add_inplace_numeric_operator('-=', param('ns3::Time const &', 'right'))
|
|
2311 |
cls.add_output_stream_operator()
|
|
2312 |
cls.add_binary_comparison_operator('<=')
|
|
2313 |
cls.add_binary_comparison_operator('==')
|
|
2314 |
cls.add_binary_comparison_operator('>=')
|
|
2315 |
## nstime.h (module 'core'): ns3::Time::Time() [constructor]
|
|
2316 |
cls.add_constructor([])
|
|
2317 |
## nstime.h (module 'core'): ns3::Time::Time(ns3::Time const & o) [copy constructor]
|
|
2318 |
cls.add_constructor([param('ns3::Time const &', 'o')])
|
|
2319 |
## nstime.h (module 'core'): ns3::Time::Time(double v) [constructor]
|
|
2320 |
cls.add_constructor([param('double', 'v')])
|
|
2321 |
## nstime.h (module 'core'): ns3::Time::Time(int v) [constructor]
|
|
2322 |
cls.add_constructor([param('int', 'v')])
|
|
2323 |
## nstime.h (module 'core'): ns3::Time::Time(long int v) [constructor]
|
|
2324 |
cls.add_constructor([param('long int', 'v')])
|
|
2325 |
## nstime.h (module 'core'): ns3::Time::Time(long long int v) [constructor]
|
|
2326 |
cls.add_constructor([param('long long int', 'v')])
|
|
2327 |
## nstime.h (module 'core'): ns3::Time::Time(unsigned int v) [constructor]
|
|
2328 |
cls.add_constructor([param('unsigned int', 'v')])
|
|
2329 |
## nstime.h (module 'core'): ns3::Time::Time(long unsigned int v) [constructor]
|
|
2330 |
cls.add_constructor([param('long unsigned int', 'v')])
|
|
2331 |
## nstime.h (module 'core'): ns3::Time::Time(long long unsigned int v) [constructor]
|
|
2332 |
cls.add_constructor([param('long long unsigned int', 'v')])
|
|
2333 |
## nstime.h (module 'core'): ns3::Time::Time(std::string const & s) [constructor]
|
|
2334 |
cls.add_constructor([param('std::string const &', 's')])
|
|
2335 |
## nstime.h (module 'core'): ns3::Time::Time(ns3::int64x64_t const & value) [constructor]
|
|
2336 |
cls.add_constructor([param('ns3::int64x64_t const &', 'value')])
|
|
2337 |
## nstime.h (module 'core'): int ns3::Time::Compare(ns3::Time const & o) const [member function]
|
|
2338 |
cls.add_method('Compare',
|
|
2339 |
'int',
|
|
2340 |
[param('ns3::Time const &', 'o')],
|
|
2341 |
is_const=True)
|
|
2342 |
## nstime.h (module 'core'): static ns3::Time ns3::Time::From(ns3::int64x64_t const & from, ns3::Time::Unit timeUnit) [member function]
|
|
2343 |
cls.add_method('From',
|
|
2344 |
'ns3::Time',
|
|
2345 |
[param('ns3::int64x64_t const &', 'from'), param('ns3::Time::Unit', 'timeUnit')],
|
|
2346 |
is_static=True)
|
|
2347 |
## nstime.h (module 'core'): static ns3::Time ns3::Time::From(ns3::int64x64_t const & value) [member function]
|
|
2348 |
cls.add_method('From',
|
|
2349 |
'ns3::Time',
|
|
2350 |
[param('ns3::int64x64_t const &', 'value')],
|
|
2351 |
is_static=True)
|
|
2352 |
## nstime.h (module 'core'): static ns3::Time ns3::Time::FromDouble(double value, ns3::Time::Unit timeUnit) [member function]
|
|
2353 |
cls.add_method('FromDouble',
|
|
2354 |
'ns3::Time',
|
|
2355 |
[param('double', 'value'), param('ns3::Time::Unit', 'timeUnit')],
|
|
2356 |
is_static=True)
|
|
2357 |
## nstime.h (module 'core'): static ns3::Time ns3::Time::FromInteger(uint64_t value, ns3::Time::Unit timeUnit) [member function]
|
|
2358 |
cls.add_method('FromInteger',
|
|
2359 |
'ns3::Time',
|
|
2360 |
[param('uint64_t', 'value'), param('ns3::Time::Unit', 'timeUnit')],
|
|
2361 |
is_static=True)
|
|
2362 |
## nstime.h (module 'core'): double ns3::Time::GetDouble() const [member function]
|
|
2363 |
cls.add_method('GetDouble',
|
|
2364 |
'double',
|
|
2365 |
[],
|
|
2366 |
is_const=True)
|
|
2367 |
## nstime.h (module 'core'): int64_t ns3::Time::GetFemtoSeconds() const [member function]
|
|
2368 |
cls.add_method('GetFemtoSeconds',
|
|
2369 |
'int64_t',
|
|
2370 |
[],
|
|
2371 |
is_const=True)
|
|
2372 |
## nstime.h (module 'core'): int64_t ns3::Time::GetInteger() const [member function]
|
|
2373 |
cls.add_method('GetInteger',
|
|
2374 |
'int64_t',
|
|
2375 |
[],
|
|
2376 |
is_const=True)
|
|
2377 |
## nstime.h (module 'core'): int64_t ns3::Time::GetMicroSeconds() const [member function]
|
|
2378 |
cls.add_method('GetMicroSeconds',
|
|
2379 |
'int64_t',
|
|
2380 |
[],
|
|
2381 |
is_const=True)
|
|
2382 |
## nstime.h (module 'core'): int64_t ns3::Time::GetMilliSeconds() const [member function]
|
|
2383 |
cls.add_method('GetMilliSeconds',
|
|
2384 |
'int64_t',
|
|
2385 |
[],
|
|
2386 |
is_const=True)
|
|
2387 |
## nstime.h (module 'core'): int64_t ns3::Time::GetNanoSeconds() const [member function]
|
|
2388 |
cls.add_method('GetNanoSeconds',
|
|
2389 |
'int64_t',
|
|
2390 |
[],
|
|
2391 |
is_const=True)
|
|
2392 |
## nstime.h (module 'core'): int64_t ns3::Time::GetPicoSeconds() const [member function]
|
|
2393 |
cls.add_method('GetPicoSeconds',
|
|
2394 |
'int64_t',
|
|
2395 |
[],
|
|
2396 |
is_const=True)
|
|
2397 |
## nstime.h (module 'core'): static ns3::Time::Unit ns3::Time::GetResolution() [member function]
|
|
2398 |
cls.add_method('GetResolution',
|
|
2399 |
'ns3::Time::Unit',
|
|
2400 |
[],
|
|
2401 |
is_static=True)
|
|
2402 |
## nstime.h (module 'core'): double ns3::Time::GetSeconds() const [member function]
|
|
2403 |
cls.add_method('GetSeconds',
|
|
2404 |
'double',
|
|
2405 |
[],
|
|
2406 |
is_const=True)
|
|
2407 |
## nstime.h (module 'core'): int64_t ns3::Time::GetTimeStep() const [member function]
|
|
2408 |
cls.add_method('GetTimeStep',
|
|
2409 |
'int64_t',
|
|
2410 |
[],
|
|
2411 |
is_const=True)
|
|
2412 |
## nstime.h (module 'core'): bool ns3::Time::IsNegative() const [member function]
|
|
2413 |
cls.add_method('IsNegative',
|
|
2414 |
'bool',
|
|
2415 |
[],
|
|
2416 |
is_const=True)
|
|
2417 |
## nstime.h (module 'core'): bool ns3::Time::IsPositive() const [member function]
|
|
2418 |
cls.add_method('IsPositive',
|
|
2419 |
'bool',
|
|
2420 |
[],
|
|
2421 |
is_const=True)
|
|
2422 |
## nstime.h (module 'core'): bool ns3::Time::IsStrictlyNegative() const [member function]
|
|
2423 |
cls.add_method('IsStrictlyNegative',
|
|
2424 |
'bool',
|
|
2425 |
[],
|
|
2426 |
is_const=True)
|
|
2427 |
## nstime.h (module 'core'): bool ns3::Time::IsStrictlyPositive() const [member function]
|
|
2428 |
cls.add_method('IsStrictlyPositive',
|
|
2429 |
'bool',
|
|
2430 |
[],
|
|
2431 |
is_const=True)
|
|
2432 |
## nstime.h (module 'core'): bool ns3::Time::IsZero() const [member function]
|
|
2433 |
cls.add_method('IsZero',
|
|
2434 |
'bool',
|
|
2435 |
[],
|
|
2436 |
is_const=True)
|
|
2437 |
## nstime.h (module 'core'): static void ns3::Time::SetResolution(ns3::Time::Unit resolution) [member function]
|
|
2438 |
cls.add_method('SetResolution',
|
|
2439 |
'void',
|
|
2440 |
[param('ns3::Time::Unit', 'resolution')],
|
|
2441 |
is_static=True)
|
|
2442 |
## nstime.h (module 'core'): ns3::int64x64_t ns3::Time::To(ns3::Time::Unit timeUnit) const [member function]
|
|
2443 |
cls.add_method('To',
|
|
2444 |
'ns3::int64x64_t',
|
|
2445 |
[param('ns3::Time::Unit', 'timeUnit')],
|
|
2446 |
is_const=True)
|
|
2447 |
## nstime.h (module 'core'): double ns3::Time::ToDouble(ns3::Time::Unit timeUnit) const [member function]
|
|
2448 |
cls.add_method('ToDouble',
|
|
2449 |
'double',
|
|
2450 |
[param('ns3::Time::Unit', 'timeUnit')],
|
|
2451 |
is_const=True)
|
|
2452 |
## nstime.h (module 'core'): int64_t ns3::Time::ToInteger(ns3::Time::Unit timeUnit) const [member function]
|
|
2453 |
cls.add_method('ToInteger',
|
|
2454 |
'int64_t',
|
|
2455 |
[param('ns3::Time::Unit', 'timeUnit')],
|
|
2456 |
is_const=True)
|
|
2457 |
return
|
|
2458 |
|
|
2459 |
def register_Ns3TraceSourceAccessor_methods(root_module, cls):
|
|
2460 |
## trace-source-accessor.h (module 'core'): ns3::TraceSourceAccessor::TraceSourceAccessor(ns3::TraceSourceAccessor const & arg0) [copy constructor]
|
|
2461 |
cls.add_constructor([param('ns3::TraceSourceAccessor const &', 'arg0')])
|
|
2462 |
## trace-source-accessor.h (module 'core'): ns3::TraceSourceAccessor::TraceSourceAccessor() [constructor]
|
|
2463 |
cls.add_constructor([])
|
|
2464 |
## trace-source-accessor.h (module 'core'): bool ns3::TraceSourceAccessor::Connect(ns3::ObjectBase * obj, std::string context, ns3::CallbackBase const & cb) const [member function]
|
|
2465 |
cls.add_method('Connect',
|
|
2466 |
'bool',
|
|
2467 |
[param('ns3::ObjectBase *', 'obj', transfer_ownership=False), param('std::string', 'context'), param('ns3::CallbackBase const &', 'cb')],
|
|
2468 |
is_pure_virtual=True, is_const=True, is_virtual=True)
|
|
2469 |
## trace-source-accessor.h (module 'core'): bool ns3::TraceSourceAccessor::ConnectWithoutContext(ns3::ObjectBase * obj, ns3::CallbackBase const & cb) const [member function]
|
|
2470 |
cls.add_method('ConnectWithoutContext',
|
|
2471 |
'bool',
|
|
2472 |
[param('ns3::ObjectBase *', 'obj', transfer_ownership=False), param('ns3::CallbackBase const &', 'cb')],
|
|
2473 |
is_pure_virtual=True, is_const=True, is_virtual=True)
|
|
2474 |
## trace-source-accessor.h (module 'core'): bool ns3::TraceSourceAccessor::Disconnect(ns3::ObjectBase * obj, std::string context, ns3::CallbackBase const & cb) const [member function]
|
|
2475 |
cls.add_method('Disconnect',
|
|
2476 |
'bool',
|
|
2477 |
[param('ns3::ObjectBase *', 'obj', transfer_ownership=False), param('std::string', 'context'), param('ns3::CallbackBase const &', 'cb')],
|
|
2478 |
is_pure_virtual=True, is_const=True, is_virtual=True)
|
|
2479 |
## trace-source-accessor.h (module 'core'): bool ns3::TraceSourceAccessor::DisconnectWithoutContext(ns3::ObjectBase * obj, ns3::CallbackBase const & cb) const [member function]
|
|
2480 |
cls.add_method('DisconnectWithoutContext',
|
|
2481 |
'bool',
|
|
2482 |
[param('ns3::ObjectBase *', 'obj', transfer_ownership=False), param('ns3::CallbackBase const &', 'cb')],
|
|
2483 |
is_pure_virtual=True, is_const=True, is_virtual=True)
|
|
2484 |
return
|
|
2485 |
|
|
2486 |
def register_Ns3TwoRayGroundPropagationLossModel_methods(root_module, cls):
|
|
2487 |
## propagation-loss-model.h (module 'propagation'): static ns3::TypeId ns3::TwoRayGroundPropagationLossModel::GetTypeId() [member function]
|
|
2488 |
cls.add_method('GetTypeId',
|
|
2489 |
'ns3::TypeId',
|
|
2490 |
[],
|
|
2491 |
is_static=True)
|
|
2492 |
## propagation-loss-model.h (module 'propagation'): ns3::TwoRayGroundPropagationLossModel::TwoRayGroundPropagationLossModel() [constructor]
|
|
2493 |
cls.add_constructor([])
|
|
2494 |
## propagation-loss-model.h (module 'propagation'): void ns3::TwoRayGroundPropagationLossModel::SetLambda(double frequency, double speed) [member function]
|
|
2495 |
cls.add_method('SetLambda',
|
|
2496 |
'void',
|
|
2497 |
[param('double', 'frequency'), param('double', 'speed')])
|
|
2498 |
## propagation-loss-model.h (module 'propagation'): void ns3::TwoRayGroundPropagationLossModel::SetLambda(double lambda) [member function]
|
|
2499 |
cls.add_method('SetLambda',
|
|
2500 |
'void',
|
|
2501 |
[param('double', 'lambda')])
|
|
2502 |
## propagation-loss-model.h (module 'propagation'): void ns3::TwoRayGroundPropagationLossModel::SetSystemLoss(double systemLoss) [member function]
|
|
2503 |
cls.add_method('SetSystemLoss',
|
|
2504 |
'void',
|
|
2505 |
[param('double', 'systemLoss')])
|
|
2506 |
## propagation-loss-model.h (module 'propagation'): void ns3::TwoRayGroundPropagationLossModel::SetMinDistance(double minDistance) [member function]
|
|
2507 |
cls.add_method('SetMinDistance',
|
|
2508 |
'void',
|
|
2509 |
[param('double', 'minDistance')])
|
|
2510 |
## propagation-loss-model.h (module 'propagation'): double ns3::TwoRayGroundPropagationLossModel::GetMinDistance() const [member function]
|
|
2511 |
cls.add_method('GetMinDistance',
|
|
2512 |
'double',
|
|
2513 |
[],
|
|
2514 |
is_const=True)
|
|
2515 |
## propagation-loss-model.h (module 'propagation'): double ns3::TwoRayGroundPropagationLossModel::GetLambda() const [member function]
|
|
2516 |
cls.add_method('GetLambda',
|
|
2517 |
'double',
|
|
2518 |
[],
|
|
2519 |
is_const=True)
|
|
2520 |
## propagation-loss-model.h (module 'propagation'): double ns3::TwoRayGroundPropagationLossModel::GetSystemLoss() const [member function]
|
|
2521 |
cls.add_method('GetSystemLoss',
|
|
2522 |
'double',
|
|
2523 |
[],
|
|
2524 |
is_const=True)
|
|
2525 |
## propagation-loss-model.h (module 'propagation'): void ns3::TwoRayGroundPropagationLossModel::SetHeightAboveZ(double heightAboveZ) [member function]
|
|
2526 |
cls.add_method('SetHeightAboveZ',
|
|
2527 |
'void',
|
|
2528 |
[param('double', 'heightAboveZ')])
|
|
2529 |
## 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]
|
|
2530 |
cls.add_method('DoCalcRxPower',
|
|
2531 |
'double',
|
|
2532 |
[param('double', 'txPowerDbm'), param('ns3::Ptr< ns3::MobilityModel >', 'a'), param('ns3::Ptr< ns3::MobilityModel >', 'b')],
|
|
2533 |
is_const=True, visibility='private', is_virtual=True)
|
|
2534 |
return
|
|
2535 |
|
|
2536 |
def register_Ns3UniformDiscPositionAllocator_methods(root_module, cls):
|
|
2537 |
## position-allocator.h (module 'mobility'): ns3::UniformDiscPositionAllocator::UniformDiscPositionAllocator(ns3::UniformDiscPositionAllocator const & arg0) [copy constructor]
|
|
2538 |
cls.add_constructor([param('ns3::UniformDiscPositionAllocator const &', 'arg0')])
|
|
2539 |
## position-allocator.h (module 'mobility'): ns3::UniformDiscPositionAllocator::UniformDiscPositionAllocator() [constructor]
|
|
2540 |
cls.add_constructor([])
|
|
2541 |
## position-allocator.h (module 'mobility'): ns3::Vector ns3::UniformDiscPositionAllocator::GetNext() const [member function]
|
|
2542 |
cls.add_method('GetNext',
|
|
2543 |
'ns3::Vector',
|
|
2544 |
[],
|
|
2545 |
is_const=True, is_virtual=True)
|
|
2546 |
## position-allocator.h (module 'mobility'): static ns3::TypeId ns3::UniformDiscPositionAllocator::GetTypeId() [member function]
|
|
2547 |
cls.add_method('GetTypeId',
|
|
2548 |
'ns3::TypeId',
|
|
2549 |
[],
|
|
2550 |
is_static=True)
|
|
2551 |
## position-allocator.h (module 'mobility'): void ns3::UniformDiscPositionAllocator::SetRho(double rho) [member function]
|
|
2552 |
cls.add_method('SetRho',
|
|
2553 |
'void',
|
|
2554 |
[param('double', 'rho')])
|
|
2555 |
## position-allocator.h (module 'mobility'): void ns3::UniformDiscPositionAllocator::SetX(double x) [member function]
|
|
2556 |
cls.add_method('SetX',
|
|
2557 |
'void',
|
|
2558 |
[param('double', 'x')])
|
|
2559 |
## position-allocator.h (module 'mobility'): void ns3::UniformDiscPositionAllocator::SetY(double y) [member function]
|
|
2560 |
cls.add_method('SetY',
|
|
2561 |
'void',
|
|
2562 |
[param('double', 'y')])
|
|
2563 |
return
|
|
2564 |
|
|
2565 |
def register_Ns3AttributeAccessor_methods(root_module, cls):
|
|
2566 |
## attribute.h (module 'core'): ns3::AttributeAccessor::AttributeAccessor(ns3::AttributeAccessor const & arg0) [copy constructor]
|
|
2567 |
cls.add_constructor([param('ns3::AttributeAccessor const &', 'arg0')])
|
|
2568 |
## attribute.h (module 'core'): ns3::AttributeAccessor::AttributeAccessor() [constructor]
|
|
2569 |
cls.add_constructor([])
|
|
2570 |
## attribute.h (module 'core'): bool ns3::AttributeAccessor::Get(ns3::ObjectBase const * object, ns3::AttributeValue & attribute) const [member function]
|
|
2571 |
cls.add_method('Get',
|
|
2572 |
'bool',
|
|
2573 |
[param('ns3::ObjectBase const *', 'object'), param('ns3::AttributeValue &', 'attribute')],
|
|
2574 |
is_pure_virtual=True, is_const=True, is_virtual=True)
|
|
2575 |
## attribute.h (module 'core'): bool ns3::AttributeAccessor::HasGetter() const [member function]
|
|
2576 |
cls.add_method('HasGetter',
|
|
2577 |
'bool',
|
|
2578 |
[],
|
|
2579 |
is_pure_virtual=True, is_const=True, is_virtual=True)
|
|
2580 |
## attribute.h (module 'core'): bool ns3::AttributeAccessor::HasSetter() const [member function]
|
|
2581 |
cls.add_method('HasSetter',
|
|
2582 |
'bool',
|
|
2583 |
[],
|
|
2584 |
is_pure_virtual=True, is_const=True, is_virtual=True)
|
|
2585 |
## attribute.h (module 'core'): bool ns3::AttributeAccessor::Set(ns3::ObjectBase * object, ns3::AttributeValue const & value) const [member function]
|
|
2586 |
cls.add_method('Set',
|
|
2587 |
'bool',
|
|
2588 |
[param('ns3::ObjectBase *', 'object', transfer_ownership=False), param('ns3::AttributeValue const &', 'value')],
|
|
2589 |
is_pure_virtual=True, is_const=True, is_virtual=True)
|
|
2590 |
return
|
|
2591 |
|
|
2592 |
def register_Ns3AttributeChecker_methods(root_module, cls):
|
|
2593 |
## attribute.h (module 'core'): ns3::AttributeChecker::AttributeChecker(ns3::AttributeChecker const & arg0) [copy constructor]
|
|
2594 |
cls.add_constructor([param('ns3::AttributeChecker const &', 'arg0')])
|
|
2595 |
## attribute.h (module 'core'): ns3::AttributeChecker::AttributeChecker() [constructor]
|
|
2596 |
cls.add_constructor([])
|
|
2597 |
## attribute.h (module 'core'): bool ns3::AttributeChecker::Check(ns3::AttributeValue const & value) const [member function]
|
|
2598 |
cls.add_method('Check',
|
|
2599 |
'bool',
|
|
2600 |
[param('ns3::AttributeValue const &', 'value')],
|
|
2601 |
is_pure_virtual=True, is_const=True, is_virtual=True)
|
|
2602 |
## attribute.h (module 'core'): bool ns3::AttributeChecker::Copy(ns3::AttributeValue const & source, ns3::AttributeValue & destination) const [member function]
|
|
2603 |
cls.add_method('Copy',
|
|
2604 |
'bool',
|
|
2605 |
[param('ns3::AttributeValue const &', 'source'), param('ns3::AttributeValue &', 'destination')],
|
|
2606 |
is_pure_virtual=True, is_const=True, is_virtual=True)
|
|
2607 |
## attribute.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::AttributeChecker::Create() const [member function]
|
|
2608 |
cls.add_method('Create',
|
|
2609 |
'ns3::Ptr< ns3::AttributeValue >',
|
|
2610 |
[],
|
|
2611 |
is_pure_virtual=True, is_const=True, is_virtual=True)
|
|
2612 |
## attribute.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::AttributeChecker::CreateValidValue(ns3::AttributeValue const & value) const [member function]
|
|
2613 |
cls.add_method('CreateValidValue',
|
|
2614 |
'ns3::Ptr< ns3::AttributeValue >',
|
|
2615 |
[param('ns3::AttributeValue const &', 'value')],
|
|
2616 |
is_const=True)
|
|
2617 |
## attribute.h (module 'core'): std::string ns3::AttributeChecker::GetUnderlyingTypeInformation() const [member function]
|
|
2618 |
cls.add_method('GetUnderlyingTypeInformation',
|
|
2619 |
'std::string',
|
|
2620 |
[],
|
|
2621 |
is_pure_virtual=True, is_const=True, is_virtual=True)
|
|
2622 |
## attribute.h (module 'core'): std::string ns3::AttributeChecker::GetValueTypeName() const [member function]
|
|
2623 |
cls.add_method('GetValueTypeName',
|
|
2624 |
'std::string',
|
|
2625 |
[],
|
|
2626 |
is_pure_virtual=True, is_const=True, is_virtual=True)
|
|
2627 |
## attribute.h (module 'core'): bool ns3::AttributeChecker::HasUnderlyingTypeInformation() const [member function]
|
|
2628 |
cls.add_method('HasUnderlyingTypeInformation',
|
|
2629 |
'bool',
|
|
2630 |
[],
|
|
2631 |
is_pure_virtual=True, is_const=True, is_virtual=True)
|
|
2632 |
return
|
|
2633 |
|
|
2634 |
def register_Ns3AttributeValue_methods(root_module, cls):
|
|
2635 |
## attribute.h (module 'core'): ns3::AttributeValue::AttributeValue(ns3::AttributeValue const & arg0) [copy constructor]
|
|
2636 |
cls.add_constructor([param('ns3::AttributeValue const &', 'arg0')])
|
|
2637 |
## attribute.h (module 'core'): ns3::AttributeValue::AttributeValue() [constructor]
|
|
2638 |
cls.add_constructor([])
|
|
2639 |
## attribute.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::AttributeValue::Copy() const [member function]
|
|
2640 |
cls.add_method('Copy',
|
|
2641 |
'ns3::Ptr< ns3::AttributeValue >',
|
|
2642 |
[],
|
|
2643 |
is_pure_virtual=True, is_const=True, is_virtual=True)
|
|
2644 |
## attribute.h (module 'core'): bool ns3::AttributeValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
|
|
2645 |
cls.add_method('DeserializeFromString',
|
|
2646 |
'bool',
|
|
2647 |
[param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
|
|
2648 |
is_pure_virtual=True, is_virtual=True)
|
|
2649 |
## attribute.h (module 'core'): std::string ns3::AttributeValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
|
|
2650 |
cls.add_method('SerializeToString',
|
|
2651 |
'std::string',
|
|
2652 |
[param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
|
|
2653 |
is_pure_virtual=True, is_const=True, is_virtual=True)
|
|
2654 |
return
|
|
2655 |
|
|
2656 |
def register_Ns3BoxChecker_methods(root_module, cls):
|
|
2657 |
## box.h (module 'mobility'): ns3::BoxChecker::BoxChecker() [constructor]
|
|
2658 |
cls.add_constructor([])
|
|
2659 |
## box.h (module 'mobility'): ns3::BoxChecker::BoxChecker(ns3::BoxChecker const & arg0) [copy constructor]
|
|
2660 |
cls.add_constructor([param('ns3::BoxChecker const &', 'arg0')])
|
|
2661 |
return
|
|
2662 |
|
|
2663 |
def register_Ns3BoxValue_methods(root_module, cls):
|
|
2664 |
## box.h (module 'mobility'): ns3::BoxValue::BoxValue() [constructor]
|
|
2665 |
cls.add_constructor([])
|
|
2666 |
## box.h (module 'mobility'): ns3::BoxValue::BoxValue(ns3::BoxValue const & arg0) [copy constructor]
|
|
2667 |
cls.add_constructor([param('ns3::BoxValue const &', 'arg0')])
|
|
2668 |
## box.h (module 'mobility'): ns3::BoxValue::BoxValue(ns3::Box const & value) [constructor]
|
|
2669 |
cls.add_constructor([param('ns3::Box const &', 'value')])
|
|
2670 |
## box.h (module 'mobility'): ns3::Ptr<ns3::AttributeValue> ns3::BoxValue::Copy() const [member function]
|
|
2671 |
cls.add_method('Copy',
|
|
2672 |
'ns3::Ptr< ns3::AttributeValue >',
|
|
2673 |
[],
|
|
2674 |
is_const=True, is_virtual=True)
|
|
2675 |
## box.h (module 'mobility'): bool ns3::BoxValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
|
|
2676 |
cls.add_method('DeserializeFromString',
|
|
2677 |
'bool',
|
|
2678 |
[param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
|
|
2679 |
is_virtual=True)
|
|
2680 |
## box.h (module 'mobility'): ns3::Box ns3::BoxValue::Get() const [member function]
|
|
2681 |
cls.add_method('Get',
|
|
2682 |
'ns3::Box',
|
|
2683 |
[],
|
|
2684 |
is_const=True)
|
|
2685 |
## box.h (module 'mobility'): std::string ns3::BoxValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
|
|
2686 |
cls.add_method('SerializeToString',
|
|
2687 |
'std::string',
|
|
2688 |
[param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
|
|
2689 |
is_const=True, is_virtual=True)
|
|
2690 |
## box.h (module 'mobility'): void ns3::BoxValue::Set(ns3::Box const & value) [member function]
|
|
2691 |
cls.add_method('Set',
|
|
2692 |
'void',
|
|
2693 |
[param('ns3::Box const &', 'value')])
|
|
2694 |
return
|
|
2695 |
|
|
2696 |
def register_Ns3Building_methods(root_module, cls):
|
|
2697 |
## building.h (module 'buildings'): ns3::Building::Building(ns3::Building const & arg0) [copy constructor]
|
|
2698 |
cls.add_constructor([param('ns3::Building const &', 'arg0')])
|
|
2699 |
## building.h (module 'buildings'): ns3::Building::Building(double xMin, double xMax, double yMin, double yMax, double zMin, double zMax) [constructor]
|
|
2700 |
cls.add_constructor([param('double', 'xMin'), param('double', 'xMax'), param('double', 'yMin'), param('double', 'yMax'), param('double', 'zMin'), param('double', 'zMax')])
|
|
2701 |
## building.h (module 'buildings'): ns3::Building::Building() [constructor]
|
|
2702 |
cls.add_constructor([])
|
|
2703 |
## building.h (module 'buildings'): void ns3::Building::DoDispose() [member function]
|
|
2704 |
cls.add_method('DoDispose',
|
|
2705 |
'void',
|
|
2706 |
[],
|
|
2707 |
is_virtual=True)
|
|
2708 |
## building.h (module 'buildings'): ns3::Box ns3::Building::GetBoundaries() const [member function]
|
|
2709 |
cls.add_method('GetBoundaries',
|
|
2710 |
'ns3::Box',
|
|
2711 |
[],
|
|
2712 |
is_const=True)
|
|
2713 |
## building.h (module 'buildings'): ns3::Building::BuildingType_t ns3::Building::GetBuildingType() const [member function]
|
|
2714 |
cls.add_method('GetBuildingType',
|
|
2715 |
'ns3::Building::BuildingType_t',
|
|
2716 |
[],
|
|
2717 |
is_const=True)
|
|
2718 |
## building.h (module 'buildings'): ns3::Building::ExtWallsType_t ns3::Building::GetExtWallsType() const [member function]
|
|
2719 |
cls.add_method('GetExtWallsType',
|
|
2720 |
'ns3::Building::ExtWallsType_t',
|
|
2721 |
[],
|
|
2722 |
is_const=True)
|
|
2723 |
## building.h (module 'buildings'): uint16_t ns3::Building::GetFloor(ns3::Vector position) const [member function]
|
|
2724 |
cls.add_method('GetFloor',
|
|
2725 |
'uint16_t',
|
|
2726 |
[param('ns3::Vector', 'position')],
|
|
2727 |
is_const=True)
|
|
2728 |
## building.h (module 'buildings'): uint32_t ns3::Building::GetId() const [member function]
|
|
2729 |
cls.add_method('GetId',
|
|
2730 |
'uint32_t',
|
|
2731 |
[],
|
|
2732 |
is_const=True)
|
|
2733 |
## building.h (module 'buildings'): uint16_t ns3::Building::GetNFloors() const [member function]
|
|
2734 |
cls.add_method('GetNFloors',
|
|
2735 |
'uint16_t',
|
|
2736 |
[],
|
|
2737 |
is_const=True)
|
|
2738 |
## building.h (module 'buildings'): uint16_t ns3::Building::GetNRoomsX() const [member function]
|
|
2739 |
cls.add_method('GetNRoomsX',
|
|
2740 |
'uint16_t',
|
|
2741 |
[],
|
|
2742 |
is_const=True)
|
|
2743 |
## building.h (module 'buildings'): uint16_t ns3::Building::GetNRoomsY() const [member function]
|
|
2744 |
cls.add_method('GetNRoomsY',
|
|
2745 |
'uint16_t',
|
|
2746 |
[],
|
|
2747 |
is_const=True)
|
|
2748 |
## building.h (module 'buildings'): uint16_t ns3::Building::GetRoomX(ns3::Vector position) const [member function]
|
|
2749 |
cls.add_method('GetRoomX',
|
|
2750 |
'uint16_t',
|
|
2751 |
[param('ns3::Vector', 'position')],
|
|
2752 |
is_const=True)
|
|
2753 |
## building.h (module 'buildings'): uint16_t ns3::Building::GetRoomY(ns3::Vector position) const [member function]
|
|
2754 |
cls.add_method('GetRoomY',
|
|
2755 |
'uint16_t',
|
|
2756 |
[param('ns3::Vector', 'position')],
|
|
2757 |
is_const=True)
|
|
2758 |
## building.h (module 'buildings'): static ns3::TypeId ns3::Building::GetTypeId() [member function]
|
|
2759 |
cls.add_method('GetTypeId',
|
|
2760 |
'ns3::TypeId',
|
|
2761 |
[],
|
|
2762 |
is_static=True)
|
|
2763 |
## building.h (module 'buildings'): bool ns3::Building::IsInside(ns3::Vector position) const [member function]
|
|
2764 |
cls.add_method('IsInside',
|
|
2765 |
'bool',
|
|
2766 |
[param('ns3::Vector', 'position')],
|
|
2767 |
is_const=True)
|
|
2768 |
## building.h (module 'buildings'): void ns3::Building::SetBoundaries(ns3::Box box) [member function]
|
|
2769 |
cls.add_method('SetBoundaries',
|
|
2770 |
'void',
|
|
2771 |
[param('ns3::Box', 'box')])
|
|
2772 |
## building.h (module 'buildings'): void ns3::Building::SetBuildingType(ns3::Building::BuildingType_t t) [member function]
|
|
2773 |
cls.add_method('SetBuildingType',
|
|
2774 |
'void',
|
|
2775 |
[param('ns3::Building::BuildingType_t', 't')])
|
|
2776 |
## building.h (module 'buildings'): void ns3::Building::SetExtWallsType(ns3::Building::ExtWallsType_t t) [member function]
|
|
2777 |
cls.add_method('SetExtWallsType',
|
|
2778 |
'void',
|
|
2779 |
[param('ns3::Building::ExtWallsType_t', 't')])
|
|
2780 |
## building.h (module 'buildings'): void ns3::Building::SetNFloors(uint16_t nfloors) [member function]
|
|
2781 |
cls.add_method('SetNFloors',
|
|
2782 |
'void',
|
|
2783 |
[param('uint16_t', 'nfloors')])
|
|
2784 |
## building.h (module 'buildings'): void ns3::Building::SetNRoomsX(uint16_t nroomx) [member function]
|
|
2785 |
cls.add_method('SetNRoomsX',
|
|
2786 |
'void',
|
|
2787 |
[param('uint16_t', 'nroomx')])
|
|
2788 |
## building.h (module 'buildings'): void ns3::Building::SetNRoomsY(uint16_t nroomy) [member function]
|
|
2789 |
cls.add_method('SetNRoomsY',
|
|
2790 |
'void',
|
|
2791 |
[param('uint16_t', 'nroomy')])
|
|
2792 |
return
|
|
2793 |
|
|
2794 |
def register_Ns3BuildingsPropagationLossModel_methods(root_module, cls):
|
|
2795 |
## buildings-propagation-loss-model.h (module 'buildings'): ns3::BuildingsPropagationLossModel::BuildingsPropagationLossModel() [constructor]
|
|
2796 |
cls.add_constructor([])
|
|
2797 |
## 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]
|
|
2798 |
cls.add_method('DoCalcRxPower',
|
|
2799 |
'double',
|
|
2800 |
[param('double', 'txPowerDbm'), param('ns3::Ptr< ns3::MobilityModel >', 'a'), param('ns3::Ptr< ns3::MobilityModel >', 'b')],
|
|
2801 |
is_const=True, is_virtual=True)
|
|
2802 |
## buildings-propagation-loss-model.h (module 'buildings'): double ns3::BuildingsPropagationLossModel::GetLoss(ns3::Ptr<ns3::MobilityModel> a, ns3::Ptr<ns3::MobilityModel> b) const [member function]
|
|
2803 |
cls.add_method('GetLoss',
|
|
2804 |
'double',
|
|
2805 |
[param('ns3::Ptr< ns3::MobilityModel >', 'a'), param('ns3::Ptr< ns3::MobilityModel >', 'b')],
|
|
2806 |
is_pure_virtual=True, is_const=True, is_virtual=True)
|
|
2807 |
## buildings-propagation-loss-model.h (module 'buildings'): static ns3::TypeId ns3::BuildingsPropagationLossModel::GetTypeId() [member function]
|
|
2808 |
cls.add_method('GetTypeId',
|
|
2809 |
'ns3::TypeId',
|
|
2810 |
[],
|
|
2811 |
is_static=True)
|
|
2812 |
## buildings-propagation-loss-model.h (module 'buildings'): double ns3::BuildingsPropagationLossModel::EvaluateSigma(ns3::Ptr<ns3::BuildingsMobilityModel> a, ns3::Ptr<ns3::BuildingsMobilityModel> b) const [member function]
|
|
2813 |
cls.add_method('EvaluateSigma',
|
|
2814 |
'double',
|
|
2815 |
[param('ns3::Ptr< ns3::BuildingsMobilityModel >', 'a'), param('ns3::Ptr< ns3::BuildingsMobilityModel >', 'b')],
|
|
2816 |
is_const=True, visibility='protected')
|
|
2817 |
## buildings-propagation-loss-model.h (module 'buildings'): double ns3::BuildingsPropagationLossModel::ExternalWallLoss(ns3::Ptr<ns3::BuildingsMobilityModel> a) const [member function]
|
|
2818 |
cls.add_method('ExternalWallLoss',
|
|
2819 |
'double',
|
|
2820 |
[param('ns3::Ptr< ns3::BuildingsMobilityModel >', 'a')],
|
|
2821 |
is_const=True, visibility='protected')
|
|
2822 |
## buildings-propagation-loss-model.h (module 'buildings'): double ns3::BuildingsPropagationLossModel::GetShadowing(ns3::Ptr<ns3::MobilityModel> a, ns3::Ptr<ns3::MobilityModel> b) const [member function]
|
|
2823 |
cls.add_method('GetShadowing',
|
|
2824 |
'double',
|
|
2825 |
[param('ns3::Ptr< ns3::MobilityModel >', 'a'), param('ns3::Ptr< ns3::MobilityModel >', 'b')],
|
|
2826 |
is_const=True, visibility='protected')
|
|
2827 |
## buildings-propagation-loss-model.h (module 'buildings'): double ns3::BuildingsPropagationLossModel::HeightLoss(ns3::Ptr<ns3::BuildingsMobilityModel> n) const [member function]
|
|
2828 |
cls.add_method('HeightLoss',
|
|
2829 |
'double',
|
|
2830 |
[param('ns3::Ptr< ns3::BuildingsMobilityModel >', 'n')],
|
|
2831 |
is_const=True, visibility='protected')
|
|
2832 |
## buildings-propagation-loss-model.h (module 'buildings'): double ns3::BuildingsPropagationLossModel::InternalWallsLoss(ns3::Ptr<ns3::BuildingsMobilityModel> a, ns3::Ptr<ns3::BuildingsMobilityModel> b) const [member function]
|
|
2833 |
cls.add_method('InternalWallsLoss',
|
|
2834 |
'double',
|
|
2835 |
[param('ns3::Ptr< ns3::BuildingsMobilityModel >', 'a'), param('ns3::Ptr< ns3::BuildingsMobilityModel >', 'b')],
|
|
2836 |
is_const=True, visibility='protected')
|
|
2837 |
return
|
|
2838 |
|
|
2839 |
def register_Ns3CallbackChecker_methods(root_module, cls):
|
|
2840 |
## callback.h (module 'core'): ns3::CallbackChecker::CallbackChecker() [constructor]
|
|
2841 |
cls.add_constructor([])
|
|
2842 |
## callback.h (module 'core'): ns3::CallbackChecker::CallbackChecker(ns3::CallbackChecker const & arg0) [copy constructor]
|
|
2843 |
cls.add_constructor([param('ns3::CallbackChecker const &', 'arg0')])
|
|
2844 |
return
|
|
2845 |
|
|
2846 |
def register_Ns3CallbackImplBase_methods(root_module, cls):
|
|
2847 |
## callback.h (module 'core'): ns3::CallbackImplBase::CallbackImplBase() [constructor]
|
|
2848 |
cls.add_constructor([])
|
|
2849 |
## callback.h (module 'core'): ns3::CallbackImplBase::CallbackImplBase(ns3::CallbackImplBase const & arg0) [copy constructor]
|
|
2850 |
cls.add_constructor([param('ns3::CallbackImplBase const &', 'arg0')])
|
|
2851 |
## callback.h (module 'core'): bool ns3::CallbackImplBase::IsEqual(ns3::Ptr<ns3::CallbackImplBase const> other) const [member function]
|
|
2852 |
cls.add_method('IsEqual',
|
|
2853 |
'bool',
|
|
2854 |
[param('ns3::Ptr< ns3::CallbackImplBase const >', 'other')],
|
|
2855 |
is_pure_virtual=True, is_const=True, is_virtual=True)
|
|
2856 |
return
|
|
2857 |
|
|
2858 |
def register_Ns3CallbackValue_methods(root_module, cls):
|
|
2859 |
## callback.h (module 'core'): ns3::CallbackValue::CallbackValue(ns3::CallbackValue const & arg0) [copy constructor]
|
|
2860 |
cls.add_constructor([param('ns3::CallbackValue const &', 'arg0')])
|
|
2861 |
## callback.h (module 'core'): ns3::CallbackValue::CallbackValue() [constructor]
|
|
2862 |
cls.add_constructor([])
|
|
2863 |
## callback.h (module 'core'): ns3::CallbackValue::CallbackValue(ns3::CallbackBase const & base) [constructor]
|
|
2864 |
cls.add_constructor([param('ns3::CallbackBase const &', 'base')])
|
|
2865 |
## callback.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::CallbackValue::Copy() const [member function]
|
|
2866 |
cls.add_method('Copy',
|
|
2867 |
'ns3::Ptr< ns3::AttributeValue >',
|
|
2868 |
[],
|
|
2869 |
is_const=True, is_virtual=True)
|
|
2870 |
## callback.h (module 'core'): bool ns3::CallbackValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
|
|
2871 |
cls.add_method('DeserializeFromString',
|
|
2872 |
'bool',
|
|
2873 |
[param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
|
|
2874 |
is_virtual=True)
|
|
2875 |
## callback.h (module 'core'): std::string ns3::CallbackValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
|
|
2876 |
cls.add_method('SerializeToString',
|
|
2877 |
'std::string',
|
|
2878 |
[param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
|
|
2879 |
is_const=True, is_virtual=True)
|
|
2880 |
## callback.h (module 'core'): void ns3::CallbackValue::Set(ns3::CallbackBase base) [member function]
|
|
2881 |
cls.add_method('Set',
|
|
2882 |
'void',
|
|
2883 |
[param('ns3::CallbackBase', 'base')])
|
|
2884 |
return
|
|
2885 |
|
|
2886 |
def register_Ns3EmptyAttributeValue_methods(root_module, cls):
|
|
2887 |
## attribute.h (module 'core'): ns3::EmptyAttributeValue::EmptyAttributeValue(ns3::EmptyAttributeValue const & arg0) [copy constructor]
|
|
2888 |
cls.add_constructor([param('ns3::EmptyAttributeValue const &', 'arg0')])
|
|
2889 |
## attribute.h (module 'core'): ns3::EmptyAttributeValue::EmptyAttributeValue() [constructor]
|
|
2890 |
cls.add_constructor([])
|
|
2891 |
## attribute.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::EmptyAttributeValue::Copy() const [member function]
|
|
2892 |
cls.add_method('Copy',
|
|
2893 |
'ns3::Ptr< ns3::AttributeValue >',
|
|
2894 |
[],
|
|
2895 |
is_const=True, visibility='private', is_virtual=True)
|
|
2896 |
## attribute.h (module 'core'): bool ns3::EmptyAttributeValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
|
|
2897 |
cls.add_method('DeserializeFromString',
|
|
2898 |
'bool',
|
|
2899 |
[param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
|
|
2900 |
visibility='private', is_virtual=True)
|
|
2901 |
## attribute.h (module 'core'): std::string ns3::EmptyAttributeValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
|
|
2902 |
cls.add_method('SerializeToString',
|
|
2903 |
'std::string',
|
|
2904 |
[param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
|
|
2905 |
is_const=True, visibility='private', is_virtual=True)
|
|
2906 |
return
|
|
2907 |
|
|
2908 |
def register_Ns3FixedRssLossModel_methods(root_module, cls):
|
|
2909 |
## propagation-loss-model.h (module 'propagation'): static ns3::TypeId ns3::FixedRssLossModel::GetTypeId() [member function]
|
|
2910 |
cls.add_method('GetTypeId',
|
|
2911 |
'ns3::TypeId',
|
|
2912 |
[],
|
|
2913 |
is_static=True)
|
|
2914 |
## propagation-loss-model.h (module 'propagation'): ns3::FixedRssLossModel::FixedRssLossModel() [constructor]
|
|
2915 |
cls.add_constructor([])
|
|
2916 |
## propagation-loss-model.h (module 'propagation'): void ns3::FixedRssLossModel::SetRss(double rss) [member function]
|
|
2917 |
cls.add_method('SetRss',
|
|
2918 |
'void',
|
|
2919 |
[param('double', 'rss')])
|
|
2920 |
## 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]
|
|
2921 |
cls.add_method('DoCalcRxPower',
|
|
2922 |
'double',
|
|
2923 |
[param('double', 'txPowerDbm'), param('ns3::Ptr< ns3::MobilityModel >', 'a'), param('ns3::Ptr< ns3::MobilityModel >', 'b')],
|
|
2924 |
is_const=True, visibility='private', is_virtual=True)
|
|
2925 |
return
|
|
2926 |
|
|
2927 |
def register_Ns3FriisPropagationLossModel_methods(root_module, cls):
|
|
2928 |
## propagation-loss-model.h (module 'propagation'): static ns3::TypeId ns3::FriisPropagationLossModel::GetTypeId() [member function]
|
|
2929 |
cls.add_method('GetTypeId',
|
|
2930 |
'ns3::TypeId',
|
|
2931 |
[],
|
|
2932 |
is_static=True)
|
|
2933 |
## propagation-loss-model.h (module 'propagation'): ns3::FriisPropagationLossModel::FriisPropagationLossModel() [constructor]
|
|
2934 |
cls.add_constructor([])
|
|
2935 |
## propagation-loss-model.h (module 'propagation'): void ns3::FriisPropagationLossModel::SetLambda(double frequency, double speed) [member function]
|
|
2936 |
cls.add_method('SetLambda',
|
|
2937 |
'void',
|
|
2938 |
[param('double', 'frequency'), param('double', 'speed')])
|
|
2939 |
## propagation-loss-model.h (module 'propagation'): void ns3::FriisPropagationLossModel::SetLambda(double lambda) [member function]
|
|
2940 |
cls.add_method('SetLambda',
|
|
2941 |
'void',
|
|
2942 |
[param('double', 'lambda')])
|
|
2943 |
## propagation-loss-model.h (module 'propagation'): void ns3::FriisPropagationLossModel::SetSystemLoss(double systemLoss) [member function]
|
|
2944 |
cls.add_method('SetSystemLoss',
|
|
2945 |
'void',
|
|
2946 |
[param('double', 'systemLoss')])
|
|
2947 |
## propagation-loss-model.h (module 'propagation'): void ns3::FriisPropagationLossModel::SetMinDistance(double minDistance) [member function]
|
|
2948 |
cls.add_method('SetMinDistance',
|
|
2949 |
'void',
|
|
2950 |
[param('double', 'minDistance')])
|
|
2951 |
## propagation-loss-model.h (module 'propagation'): double ns3::FriisPropagationLossModel::GetMinDistance() const [member function]
|
|
2952 |
cls.add_method('GetMinDistance',
|
|
2953 |
'double',
|
|
2954 |
[],
|
|
2955 |
is_const=True)
|
|
2956 |
## propagation-loss-model.h (module 'propagation'): double ns3::FriisPropagationLossModel::GetLambda() const [member function]
|
|
2957 |
cls.add_method('GetLambda',
|
|
2958 |
'double',
|
|
2959 |
[],
|
|
2960 |
is_const=True)
|
|
2961 |
## propagation-loss-model.h (module 'propagation'): double ns3::FriisPropagationLossModel::GetSystemLoss() const [member function]
|
|
2962 |
cls.add_method('GetSystemLoss',
|
|
2963 |
'double',
|
|
2964 |
[],
|
|
2965 |
is_const=True)
|
|
2966 |
## 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]
|
|
2967 |
cls.add_method('DoCalcRxPower',
|
|
2968 |
'double',
|
|
2969 |
[param('double', 'txPowerDbm'), param('ns3::Ptr< ns3::MobilityModel >', 'a'), param('ns3::Ptr< ns3::MobilityModel >', 'b')],
|
|
2970 |
is_const=True, visibility='private', is_virtual=True)
|
|
2971 |
return
|
|
2972 |
|
|
2973 |
def register_Ns3GridBuildingAllocator_methods(root_module, cls):
|
|
2974 |
## building-allocator.h (module 'buildings'): ns3::GridBuildingAllocator::GridBuildingAllocator(ns3::GridBuildingAllocator const & arg0) [copy constructor]
|
|
2975 |
cls.add_constructor([param('ns3::GridBuildingAllocator const &', 'arg0')])
|
|
2976 |
## building-allocator.h (module 'buildings'): ns3::GridBuildingAllocator::GridBuildingAllocator() [constructor]
|
|
2977 |
cls.add_constructor([])
|
|
2978 |
## building-allocator.h (module 'buildings'): ns3::BuildingContainer ns3::GridBuildingAllocator::Create(uint32_t n) const [member function]
|
|
2979 |
cls.add_method('Create',
|
|
2980 |
'ns3::BuildingContainer',
|
|
2981 |
[param('uint32_t', 'n')],
|
|
2982 |
is_const=True)
|
|
2983 |
## building-allocator.h (module 'buildings'): static ns3::TypeId ns3::GridBuildingAllocator::GetTypeId() [member function]
|
|
2984 |
cls.add_method('GetTypeId',
|
|
2985 |
'ns3::TypeId',
|
|
2986 |
[],
|
|
2987 |
is_static=True)
|
|
2988 |
## building-allocator.h (module 'buildings'): void ns3::GridBuildingAllocator::SetBuildingAttribute(std::string n, ns3::AttributeValue const & v) [member function]
|
|
2989 |
cls.add_method('SetBuildingAttribute',
|
|
2990 |
'void',
|
|
2991 |
[param('std::string', 'n'), param('ns3::AttributeValue const &', 'v')])
|
|
2992 |
return
|
|
2993 |
|
|
2994 |
def register_Ns3GridPositionAllocator_methods(root_module, cls):
|
|
2995 |
## position-allocator.h (module 'mobility'): ns3::GridPositionAllocator::GridPositionAllocator(ns3::GridPositionAllocator const & arg0) [copy constructor]
|
|
2996 |
cls.add_constructor([param('ns3::GridPositionAllocator const &', 'arg0')])
|
|
2997 |
## position-allocator.h (module 'mobility'): ns3::GridPositionAllocator::GridPositionAllocator() [constructor]
|
|
2998 |
cls.add_constructor([])
|
|
2999 |
## position-allocator.h (module 'mobility'): double ns3::GridPositionAllocator::GetDeltaX() const [member function]
|
|
3000 |
cls.add_method('GetDeltaX',
|
|
3001 |
'double',
|
|
3002 |
[],
|
|
3003 |
is_const=True)
|
|
3004 |
## position-allocator.h (module 'mobility'): double ns3::GridPositionAllocator::GetDeltaY() const [member function]
|
|
3005 |
cls.add_method('GetDeltaY',
|
|
3006 |
'double',
|
|
3007 |
[],
|
|
3008 |
is_const=True)
|
|
3009 |
## position-allocator.h (module 'mobility'): ns3::GridPositionAllocator::LayoutType ns3::GridPositionAllocator::GetLayoutType() const [member function]
|
|
3010 |
cls.add_method('GetLayoutType',
|
|
3011 |
'ns3::GridPositionAllocator::LayoutType',
|
|
3012 |
[],
|
|
3013 |
is_const=True)
|
|
3014 |
## position-allocator.h (module 'mobility'): double ns3::GridPositionAllocator::GetMinX() const [member function]
|
|
3015 |
cls.add_method('GetMinX',
|
|
3016 |
'double',
|
|
3017 |
[],
|
|
3018 |
is_const=True)
|
|
3019 |
## position-allocator.h (module 'mobility'): double ns3::GridPositionAllocator::GetMinY() const [member function]
|
|
3020 |
cls.add_method('GetMinY',
|
|
3021 |
'double',
|
|
3022 |
[],
|
|
3023 |
is_const=True)
|
|
3024 |
## position-allocator.h (module 'mobility'): uint32_t ns3::GridPositionAllocator::GetN() const [member function]
|
|
3025 |
cls.add_method('GetN',
|
|
3026 |
'uint32_t',
|
|
3027 |
[],
|
|
3028 |
is_const=True)
|
|
3029 |
## position-allocator.h (module 'mobility'): ns3::Vector ns3::GridPositionAllocator::GetNext() const [member function]
|
|
3030 |
cls.add_method('GetNext',
|
|
3031 |
'ns3::Vector',
|
|
3032 |
[],
|
|
3033 |
is_const=True, is_virtual=True)
|
|
3034 |
## position-allocator.h (module 'mobility'): static ns3::TypeId ns3::GridPositionAllocator::GetTypeId() [member function]
|
|
3035 |
cls.add_method('GetTypeId',
|
|
3036 |
'ns3::TypeId',
|
|
3037 |
[],
|
|
3038 |
is_static=True)
|
|
3039 |
## position-allocator.h (module 'mobility'): void ns3::GridPositionAllocator::SetDeltaX(double deltaX) [member function]
|
|
3040 |
cls.add_method('SetDeltaX',
|
|
3041 |
'void',
|
|
3042 |
[param('double', 'deltaX')])
|
|
3043 |
## position-allocator.h (module 'mobility'): void ns3::GridPositionAllocator::SetDeltaY(double deltaY) [member function]
|
|
3044 |
cls.add_method('SetDeltaY',
|
|
3045 |
'void',
|
|
3046 |
[param('double', 'deltaY')])
|
|
3047 |
## position-allocator.h (module 'mobility'): void ns3::GridPositionAllocator::SetLayoutType(ns3::GridPositionAllocator::LayoutType layoutType) [member function]
|
|
3048 |
cls.add_method('SetLayoutType',
|
|
3049 |
'void',
|
|
3050 |
[param('ns3::GridPositionAllocator::LayoutType', 'layoutType')])
|
|
3051 |
## position-allocator.h (module 'mobility'): void ns3::GridPositionAllocator::SetMinX(double xMin) [member function]
|
|
3052 |
cls.add_method('SetMinX',
|
|
3053 |
'void',
|
|
3054 |
[param('double', 'xMin')])
|
|
3055 |
## position-allocator.h (module 'mobility'): void ns3::GridPositionAllocator::SetMinY(double yMin) [member function]
|
|
3056 |
cls.add_method('SetMinY',
|
|
3057 |
'void',
|
|
3058 |
[param('double', 'yMin')])
|
|
3059 |
## position-allocator.h (module 'mobility'): void ns3::GridPositionAllocator::SetN(uint32_t n) [member function]
|
|
3060 |
cls.add_method('SetN',
|
|
3061 |
'void',
|
|
3062 |
[param('uint32_t', 'n')])
|
|
3063 |
return
|
|
3064 |
|
|
3065 |
def register_Ns3HybridBuildingsPropagationLossModel_methods(root_module, cls):
|
|
3066 |
## hybrid-buildings-propagation-loss-model.h (module 'buildings'): static ns3::TypeId ns3::HybridBuildingsPropagationLossModel::GetTypeId() [member function]
|
|
3067 |
cls.add_method('GetTypeId',
|
|
3068 |
'ns3::TypeId',
|
|
3069 |
[],
|
|
3070 |
is_static=True)
|
|
3071 |
## hybrid-buildings-propagation-loss-model.h (module 'buildings'): ns3::HybridBuildingsPropagationLossModel::HybridBuildingsPropagationLossModel() [constructor]
|
|
3072 |
cls.add_constructor([])
|
|
3073 |
## hybrid-buildings-propagation-loss-model.h (module 'buildings'): void ns3::HybridBuildingsPropagationLossModel::SetEnvironment(ns3::EnvironmentType env) [member function]
|
|
3074 |
cls.add_method('SetEnvironment',
|
|
3075 |
'void',
|
|
3076 |
[param('ns3::EnvironmentType', 'env')])
|
|
3077 |
## hybrid-buildings-propagation-loss-model.h (module 'buildings'): void ns3::HybridBuildingsPropagationLossModel::SetCitySize(ns3::CitySize size) [member function]
|
|
3078 |
cls.add_method('SetCitySize',
|
|
3079 |
'void',
|
|
3080 |
[param('ns3::CitySize', 'size')])
|
|
3081 |
## hybrid-buildings-propagation-loss-model.h (module 'buildings'): void ns3::HybridBuildingsPropagationLossModel::SetFrequency(double freq) [member function]
|
|
3082 |
cls.add_method('SetFrequency',
|
|
3083 |
'void',
|
|
3084 |
[param('double', 'freq')])
|
|
3085 |
## hybrid-buildings-propagation-loss-model.h (module 'buildings'): void ns3::HybridBuildingsPropagationLossModel::SetRooftopHeight(double rooftopHeight) [member function]
|
|
3086 |
cls.add_method('SetRooftopHeight',
|
|
3087 |
'void',
|
|
3088 |
[param('double', 'rooftopHeight')])
|
|
3089 |
## 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]
|
|
3090 |
cls.add_method('GetLoss',
|
|
3091 |
'double',
|
|
3092 |
[param('ns3::Ptr< ns3::MobilityModel >', 'a'), param('ns3::Ptr< ns3::MobilityModel >', 'b')],
|
|
3093 |
is_const=True, is_virtual=True)
|
|
3094 |
return
|
|
3095 |
|
|
3096 |
def register_Ns3Ipv4AddressChecker_methods(root_module, cls):
|
|
3097 |
## ipv4-address.h (module 'network'): ns3::Ipv4AddressChecker::Ipv4AddressChecker() [constructor]
|
|
3098 |
cls.add_constructor([])
|
|
3099 |
## ipv4-address.h (module 'network'): ns3::Ipv4AddressChecker::Ipv4AddressChecker(ns3::Ipv4AddressChecker const & arg0) [copy constructor]
|
|
3100 |
cls.add_constructor([param('ns3::Ipv4AddressChecker const &', 'arg0')])
|
|
3101 |
return
|
|
3102 |
|
|
3103 |
def register_Ns3Ipv4AddressValue_methods(root_module, cls):
|
|
3104 |
## ipv4-address.h (module 'network'): ns3::Ipv4AddressValue::Ipv4AddressValue() [constructor]
|
|
3105 |
cls.add_constructor([])
|
|
3106 |
## ipv4-address.h (module 'network'): ns3::Ipv4AddressValue::Ipv4AddressValue(ns3::Ipv4AddressValue const & arg0) [copy constructor]
|
|
3107 |
cls.add_constructor([param('ns3::Ipv4AddressValue const &', 'arg0')])
|
|
3108 |
## ipv4-address.h (module 'network'): ns3::Ipv4AddressValue::Ipv4AddressValue(ns3::Ipv4Address const & value) [constructor]
|
|
3109 |
cls.add_constructor([param('ns3::Ipv4Address const &', 'value')])
|
|
3110 |
## ipv4-address.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::Ipv4AddressValue::Copy() const [member function]
|
|
3111 |
cls.add_method('Copy',
|
|
3112 |
'ns3::Ptr< ns3::AttributeValue >',
|
|
3113 |
[],
|
|
3114 |
is_const=True, is_virtual=True)
|
|
3115 |
## ipv4-address.h (module 'network'): bool ns3::Ipv4AddressValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
|
|
3116 |
cls.add_method('DeserializeFromString',
|
|
3117 |
'bool',
|
|
3118 |
[param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
|
|
3119 |
is_virtual=True)
|
|
3120 |
## ipv4-address.h (module 'network'): ns3::Ipv4Address ns3::Ipv4AddressValue::Get() const [member function]
|
|
3121 |
cls.add_method('Get',
|
|
3122 |
'ns3::Ipv4Address',
|
|
3123 |
[],
|
|
3124 |
is_const=True)
|
|
3125 |
## ipv4-address.h (module 'network'): std::string ns3::Ipv4AddressValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
|
|
3126 |
cls.add_method('SerializeToString',
|
|
3127 |
'std::string',
|
|
3128 |
[param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
|
|
3129 |
is_const=True, is_virtual=True)
|
|
3130 |
## ipv4-address.h (module 'network'): void ns3::Ipv4AddressValue::Set(ns3::Ipv4Address const & value) [member function]
|
|
3131 |
cls.add_method('Set',
|
|
3132 |
'void',
|
|
3133 |
[param('ns3::Ipv4Address const &', 'value')])
|
|
3134 |
return
|
|
3135 |
|
|
3136 |
def register_Ns3Ipv4MaskChecker_methods(root_module, cls):
|
|
3137 |
## ipv4-address.h (module 'network'): ns3::Ipv4MaskChecker::Ipv4MaskChecker() [constructor]
|
|
3138 |
cls.add_constructor([])
|
|
3139 |
## ipv4-address.h (module 'network'): ns3::Ipv4MaskChecker::Ipv4MaskChecker(ns3::Ipv4MaskChecker const & arg0) [copy constructor]
|
|
3140 |
cls.add_constructor([param('ns3::Ipv4MaskChecker const &', 'arg0')])
|
|
3141 |
return
|
|
3142 |
|
|
3143 |
def register_Ns3Ipv4MaskValue_methods(root_module, cls):
|
|
3144 |
## ipv4-address.h (module 'network'): ns3::Ipv4MaskValue::Ipv4MaskValue() [constructor]
|
|
3145 |
cls.add_constructor([])
|
|
3146 |
## ipv4-address.h (module 'network'): ns3::Ipv4MaskValue::Ipv4MaskValue(ns3::Ipv4MaskValue const & arg0) [copy constructor]
|
|
3147 |
cls.add_constructor([param('ns3::Ipv4MaskValue const &', 'arg0')])
|
|
3148 |
## ipv4-address.h (module 'network'): ns3::Ipv4MaskValue::Ipv4MaskValue(ns3::Ipv4Mask const & value) [constructor]
|
|
3149 |
cls.add_constructor([param('ns3::Ipv4Mask const &', 'value')])
|
|
3150 |
## ipv4-address.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::Ipv4MaskValue::Copy() const [member function]
|
|
3151 |
cls.add_method('Copy',
|
|
3152 |
'ns3::Ptr< ns3::AttributeValue >',
|
|
3153 |
[],
|
|
3154 |
is_const=True, is_virtual=True)
|
|
3155 |
## ipv4-address.h (module 'network'): bool ns3::Ipv4MaskValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
|
|
3156 |
cls.add_method('DeserializeFromString',
|
|
3157 |
'bool',
|
|
3158 |
[param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
|
|
3159 |
is_virtual=True)
|
|
3160 |
## ipv4-address.h (module 'network'): ns3::Ipv4Mask ns3::Ipv4MaskValue::Get() const [member function]
|
|
3161 |
cls.add_method('Get',
|
|
3162 |
'ns3::Ipv4Mask',
|
|
3163 |
[],
|
|
3164 |
is_const=True)
|
|
3165 |
## ipv4-address.h (module 'network'): std::string ns3::Ipv4MaskValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
|
|
3166 |
cls.add_method('SerializeToString',
|
|
3167 |
'std::string',
|
|
3168 |
[param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
|
|
3169 |
is_const=True, is_virtual=True)
|
|
3170 |
## ipv4-address.h (module 'network'): void ns3::Ipv4MaskValue::Set(ns3::Ipv4Mask const & value) [member function]
|
|
3171 |
cls.add_method('Set',
|
|
3172 |
'void',
|
|
3173 |
[param('ns3::Ipv4Mask const &', 'value')])
|
|
3174 |
return
|
|
3175 |
|
|
3176 |
def register_Ns3Ipv6AddressChecker_methods(root_module, cls):
|
|
3177 |
## ipv6-address.h (module 'network'): ns3::Ipv6AddressChecker::Ipv6AddressChecker() [constructor]
|
|
3178 |
cls.add_constructor([])
|
|
3179 |
## ipv6-address.h (module 'network'): ns3::Ipv6AddressChecker::Ipv6AddressChecker(ns3::Ipv6AddressChecker const & arg0) [copy constructor]
|
|
3180 |
cls.add_constructor([param('ns3::Ipv6AddressChecker const &', 'arg0')])
|
|
3181 |
return
|
|
3182 |
|
|
3183 |
def register_Ns3Ipv6AddressValue_methods(root_module, cls):
|
|
3184 |
## ipv6-address.h (module 'network'): ns3::Ipv6AddressValue::Ipv6AddressValue() [constructor]
|
|
3185 |
cls.add_constructor([])
|
|
3186 |
## ipv6-address.h (module 'network'): ns3::Ipv6AddressValue::Ipv6AddressValue(ns3::Ipv6AddressValue const & arg0) [copy constructor]
|
|
3187 |
cls.add_constructor([param('ns3::Ipv6AddressValue const &', 'arg0')])
|
|
3188 |
## ipv6-address.h (module 'network'): ns3::Ipv6AddressValue::Ipv6AddressValue(ns3::Ipv6Address const & value) [constructor]
|
|
3189 |
cls.add_constructor([param('ns3::Ipv6Address const &', 'value')])
|
|
3190 |
## ipv6-address.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::Ipv6AddressValue::Copy() const [member function]
|
|
3191 |
cls.add_method('Copy',
|
|
3192 |
'ns3::Ptr< ns3::AttributeValue >',
|
|
3193 |
[],
|
|
3194 |
is_const=True, is_virtual=True)
|
|
3195 |
## ipv6-address.h (module 'network'): bool ns3::Ipv6AddressValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
|
|
3196 |
cls.add_method('DeserializeFromString',
|
|
3197 |
'bool',
|
|
3198 |
[param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
|
|
3199 |
is_virtual=True)
|
|
3200 |
## ipv6-address.h (module 'network'): ns3::Ipv6Address ns3::Ipv6AddressValue::Get() const [member function]
|
|
3201 |
cls.add_method('Get',
|
|
3202 |
'ns3::Ipv6Address',
|
|
3203 |
[],
|
|
3204 |
is_const=True)
|
|
3205 |
## ipv6-address.h (module 'network'): std::string ns3::Ipv6AddressValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
|
|
3206 |
cls.add_method('SerializeToString',
|
|
3207 |
'std::string',
|
|
3208 |
[param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
|
|
3209 |
is_const=True, is_virtual=True)
|
|
3210 |
## ipv6-address.h (module 'network'): void ns3::Ipv6AddressValue::Set(ns3::Ipv6Address const & value) [member function]
|
|
3211 |
cls.add_method('Set',
|
|
3212 |
'void',
|
|
3213 |
[param('ns3::Ipv6Address const &', 'value')])
|
|
3214 |
return
|
|
3215 |
|
|
3216 |
def register_Ns3Ipv6PrefixChecker_methods(root_module, cls):
|
|
3217 |
## ipv6-address.h (module 'network'): ns3::Ipv6PrefixChecker::Ipv6PrefixChecker() [constructor]
|
|
3218 |
cls.add_constructor([])
|
|
3219 |
## ipv6-address.h (module 'network'): ns3::Ipv6PrefixChecker::Ipv6PrefixChecker(ns3::Ipv6PrefixChecker const & arg0) [copy constructor]
|
|
3220 |
cls.add_constructor([param('ns3::Ipv6PrefixChecker const &', 'arg0')])
|
|
3221 |
return
|
|
3222 |
|
|
3223 |
def register_Ns3Ipv6PrefixValue_methods(root_module, cls):
|
|
3224 |
## ipv6-address.h (module 'network'): ns3::Ipv6PrefixValue::Ipv6PrefixValue() [constructor]
|
|
3225 |
cls.add_constructor([])
|
|
3226 |
## ipv6-address.h (module 'network'): ns3::Ipv6PrefixValue::Ipv6PrefixValue(ns3::Ipv6PrefixValue const & arg0) [copy constructor]
|
|
3227 |
cls.add_constructor([param('ns3::Ipv6PrefixValue const &', 'arg0')])
|
|
3228 |
## ipv6-address.h (module 'network'): ns3::Ipv6PrefixValue::Ipv6PrefixValue(ns3::Ipv6Prefix const & value) [constructor]
|
|
3229 |
cls.add_constructor([param('ns3::Ipv6Prefix const &', 'value')])
|
|
3230 |
## ipv6-address.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::Ipv6PrefixValue::Copy() const [member function]
|
|
3231 |
cls.add_method('Copy',
|
|
3232 |
'ns3::Ptr< ns3::AttributeValue >',
|
|
3233 |
[],
|
|
3234 |
is_const=True, is_virtual=True)
|
|
3235 |
## ipv6-address.h (module 'network'): bool ns3::Ipv6PrefixValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
|
|
3236 |
cls.add_method('DeserializeFromString',
|
|
3237 |
'bool',
|
|
3238 |
[param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
|
|
3239 |
is_virtual=True)
|
|
3240 |
## ipv6-address.h (module 'network'): ns3::Ipv6Prefix ns3::Ipv6PrefixValue::Get() const [member function]
|
|
3241 |
cls.add_method('Get',
|
|
3242 |
'ns3::Ipv6Prefix',
|
|
3243 |
[],
|
|
3244 |
is_const=True)
|
|
3245 |
## ipv6-address.h (module 'network'): std::string ns3::Ipv6PrefixValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
|
|
3246 |
cls.add_method('SerializeToString',
|
|
3247 |
'std::string',
|
|
3248 |
[param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
|
|
3249 |
is_const=True, is_virtual=True)
|
|
3250 |
## ipv6-address.h (module 'network'): void ns3::Ipv6PrefixValue::Set(ns3::Ipv6Prefix const & value) [member function]
|
|
3251 |
cls.add_method('Set',
|
|
3252 |
'void',
|
|
3253 |
[param('ns3::Ipv6Prefix const &', 'value')])
|
|
3254 |
return
|
|
3255 |
|
|
3256 |
def register_Ns3ItuR1238PropagationLossModel_methods(root_module, cls):
|
|
3257 |
## itu-r-1238-propagation-loss-model.h (module 'buildings'): ns3::ItuR1238PropagationLossModel::ItuR1238PropagationLossModel() [constructor]
|
|
3258 |
cls.add_constructor([])
|
|
3259 |
## itu-r-1238-propagation-loss-model.h (module 'buildings'): static ns3::TypeId ns3::ItuR1238PropagationLossModel::GetTypeId() [member function]
|
|
3260 |
cls.add_method('GetTypeId',
|
|
3261 |
'ns3::TypeId',
|
|
3262 |
[],
|
|
3263 |
is_static=True)
|
|
3264 |
## 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]
|
|
3265 |
cls.add_method('GetLoss',
|
|
3266 |
'double',
|
|
3267 |
[param('ns3::Ptr< ns3::MobilityModel >', 'a'), param('ns3::Ptr< ns3::MobilityModel >', 'b')],
|
|
3268 |
is_const=True)
|
|
3269 |
## 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]
|
|
3270 |
cls.add_method('DoCalcRxPower',
|
|
3271 |
'double',
|
|
3272 |
[param('double', 'txPowerDbm'), param('ns3::Ptr< ns3::MobilityModel >', 'a'), param('ns3::Ptr< ns3::MobilityModel >', 'b')],
|
|
3273 |
is_const=True, visibility='private', is_virtual=True)
|
|
3274 |
return
|
|
3275 |
|
|
3276 |
def register_Ns3ListPositionAllocator_methods(root_module, cls):
|
|
3277 |
## position-allocator.h (module 'mobility'): ns3::ListPositionAllocator::ListPositionAllocator(ns3::ListPositionAllocator const & arg0) [copy constructor]
|
|
3278 |
cls.add_constructor([param('ns3::ListPositionAllocator const &', 'arg0')])
|
|
3279 |
## position-allocator.h (module 'mobility'): ns3::ListPositionAllocator::ListPositionAllocator() [constructor]
|
|
3280 |
cls.add_constructor([])
|
|
3281 |
## position-allocator.h (module 'mobility'): void ns3::ListPositionAllocator::Add(ns3::Vector v) [member function]
|
|
3282 |
cls.add_method('Add',
|
|
3283 |
'void',
|
|
3284 |
[param('ns3::Vector', 'v')])
|
|
3285 |
## position-allocator.h (module 'mobility'): ns3::Vector ns3::ListPositionAllocator::GetNext() const [member function]
|
|
3286 |
cls.add_method('GetNext',
|
|
3287 |
'ns3::Vector',
|
|
3288 |
[],
|
|
3289 |
is_const=True, is_virtual=True)
|
|
3290 |
## position-allocator.h (module 'mobility'): static ns3::TypeId ns3::ListPositionAllocator::GetTypeId() [member function]
|
|
3291 |
cls.add_method('GetTypeId',
|
|
3292 |
'ns3::TypeId',
|
|
3293 |
[],
|
|
3294 |
is_static=True)
|
|
3295 |
return
|
|
3296 |
|
|
3297 |
def register_Ns3LogDistancePropagationLossModel_methods(root_module, cls):
|
|
3298 |
## propagation-loss-model.h (module 'propagation'): static ns3::TypeId ns3::LogDistancePropagationLossModel::GetTypeId() [member function]
|
|
3299 |
cls.add_method('GetTypeId',
|
|
3300 |
'ns3::TypeId',
|
|
3301 |
[],
|
|
3302 |
is_static=True)
|
|
3303 |
## propagation-loss-model.h (module 'propagation'): ns3::LogDistancePropagationLossModel::LogDistancePropagationLossModel() [constructor]
|
|
3304 |
cls.add_constructor([])
|
|
3305 |
## propagation-loss-model.h (module 'propagation'): void ns3::LogDistancePropagationLossModel::SetPathLossExponent(double n) [member function]
|
|
3306 |
cls.add_method('SetPathLossExponent',
|
|
3307 |
'void',
|
|
3308 |
[param('double', 'n')])
|
|
3309 |
## propagation-loss-model.h (module 'propagation'): double ns3::LogDistancePropagationLossModel::GetPathLossExponent() const [member function]
|
|
3310 |
cls.add_method('GetPathLossExponent',
|
|
3311 |
'double',
|
|
3312 |
[],
|
|
3313 |
is_const=True)
|
|
3314 |
## propagation-loss-model.h (module 'propagation'): void ns3::LogDistancePropagationLossModel::SetReference(double referenceDistance, double referenceLoss) [member function]
|
|
3315 |
cls.add_method('SetReference',
|
|
3316 |
'void',
|
|
3317 |
[param('double', 'referenceDistance'), param('double', 'referenceLoss')])
|
|
3318 |
## 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]
|
|
3319 |
cls.add_method('DoCalcRxPower',
|
|
3320 |
'double',
|
|
3321 |
[param('double', 'txPowerDbm'), param('ns3::Ptr< ns3::MobilityModel >', 'a'), param('ns3::Ptr< ns3::MobilityModel >', 'b')],
|
|
3322 |
is_const=True, visibility='private', is_virtual=True)
|
|
3323 |
return
|
|
3324 |
|
|
3325 |
def register_Ns3MatrixPropagationLossModel_methods(root_module, cls):
|
|
3326 |
## propagation-loss-model.h (module 'propagation'): static ns3::TypeId ns3::MatrixPropagationLossModel::GetTypeId() [member function]
|
|
3327 |
cls.add_method('GetTypeId',
|
|
3328 |
'ns3::TypeId',
|
|
3329 |
[],
|
|
3330 |
is_static=True)
|
|
3331 |
## propagation-loss-model.h (module 'propagation'): ns3::MatrixPropagationLossModel::MatrixPropagationLossModel() [constructor]
|
|
3332 |
cls.add_constructor([])
|
|
3333 |
## 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]
|
|
3334 |
cls.add_method('SetLoss',
|
|
3335 |
'void',
|
|
3336 |
[param('ns3::Ptr< ns3::MobilityModel >', 'a'), param('ns3::Ptr< ns3::MobilityModel >', 'b'), param('double', 'loss'), param('bool', 'symmetric', default_value='true')])
|
|
3337 |
## propagation-loss-model.h (module 'propagation'): void ns3::MatrixPropagationLossModel::SetDefaultLoss(double arg0) [member function]
|
|
3338 |
cls.add_method('SetDefaultLoss',
|
|
3339 |
'void',
|
|
3340 |
[param('double', 'arg0')])
|
|
3341 |
## 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]
|
|
3342 |
cls.add_method('DoCalcRxPower',
|
|
3343 |
'double',
|
|
3344 |
[param('double', 'txPowerDbm'), param('ns3::Ptr< ns3::MobilityModel >', 'a'), param('ns3::Ptr< ns3::MobilityModel >', 'b')],
|
|
3345 |
is_const=True, visibility='private', is_virtual=True)
|
|
3346 |
return
|
|
3347 |
|
|
3348 |
def register_Ns3MobilityModel_methods(root_module, cls):
|
|
3349 |
## mobility-model.h (module 'mobility'): ns3::MobilityModel::MobilityModel(ns3::MobilityModel const & arg0) [copy constructor]
|
|
3350 |
cls.add_constructor([param('ns3::MobilityModel const &', 'arg0')])
|
|
3351 |
## mobility-model.h (module 'mobility'): ns3::MobilityModel::MobilityModel() [constructor]
|
|
3352 |
cls.add_constructor([])
|
|
3353 |
## mobility-model.h (module 'mobility'): double ns3::MobilityModel::GetDistanceFrom(ns3::Ptr<const ns3::MobilityModel> position) const [member function]
|
|
3354 |
cls.add_method('GetDistanceFrom',
|
|
3355 |
'double',
|
|
3356 |
[param('ns3::Ptr< ns3::MobilityModel const >', 'position')],
|
|
3357 |
is_const=True)
|
|
3358 |
## mobility-model.h (module 'mobility'): ns3::Vector ns3::MobilityModel::GetPosition() const [member function]
|
|
3359 |
cls.add_method('GetPosition',
|
|
3360 |
'ns3::Vector',
|
|
3361 |
[],
|
|
3362 |
is_const=True)
|
|
3363 |
## mobility-model.h (module 'mobility'): double ns3::MobilityModel::GetRelativeSpeed(ns3::Ptr<const ns3::MobilityModel> other) const [member function]
|
|
3364 |
cls.add_method('GetRelativeSpeed',
|
|
3365 |
'double',
|
|
3366 |
[param('ns3::Ptr< ns3::MobilityModel const >', 'other')],
|
|
3367 |
is_const=True)
|
|
3368 |
## mobility-model.h (module 'mobility'): static ns3::TypeId ns3::MobilityModel::GetTypeId() [member function]
|
|
3369 |
cls.add_method('GetTypeId',
|
|
3370 |
'ns3::TypeId',
|
|
3371 |
[],
|
|
3372 |
is_static=True)
|
|
3373 |
## mobility-model.h (module 'mobility'): ns3::Vector ns3::MobilityModel::GetVelocity() const [member function]
|
|
3374 |
cls.add_method('GetVelocity',
|
|
3375 |
'ns3::Vector',
|
|
3376 |
[],
|
|
3377 |
is_const=True)
|
|
3378 |
## mobility-model.h (module 'mobility'): void ns3::MobilityModel::SetPosition(ns3::Vector const & position) [member function]
|
|
3379 |
cls.add_method('SetPosition',
|
|
3380 |
'void',
|
|
3381 |
[param('ns3::Vector const &', 'position')])
|
|
3382 |
## mobility-model.h (module 'mobility'): void ns3::MobilityModel::NotifyCourseChange() const [member function]
|
|
3383 |
cls.add_method('NotifyCourseChange',
|
|
3384 |
'void',
|
|
3385 |
[],
|
|
3386 |
is_const=True, visibility='protected')
|
|
3387 |
## mobility-model.h (module 'mobility'): ns3::Vector ns3::MobilityModel::DoGetPosition() const [member function]
|
|
3388 |
cls.add_method('DoGetPosition',
|
|
3389 |
'ns3::Vector',
|
|
3390 |
[],
|
|
3391 |
is_pure_virtual=True, is_const=True, visibility='private', is_virtual=True)
|
|
3392 |
## mobility-model.h (module 'mobility'): ns3::Vector ns3::MobilityModel::DoGetVelocity() const [member function]
|
|
3393 |
cls.add_method('DoGetVelocity',
|
|
3394 |
'ns3::Vector',
|
|
3395 |
[],
|
|
3396 |
is_pure_virtual=True, is_const=True, visibility='private', is_virtual=True)
|
|
3397 |
## mobility-model.h (module 'mobility'): void ns3::MobilityModel::DoSetPosition(ns3::Vector const & position) [member function]
|
|
3398 |
cls.add_method('DoSetPosition',
|
|
3399 |
'void',
|
|
3400 |
[param('ns3::Vector const &', 'position')],
|
|
3401 |
is_pure_virtual=True, visibility='private', is_virtual=True)
|
|
3402 |
return
|
|
3403 |
|
|
3404 |
def register_Ns3NakagamiPropagationLossModel_methods(root_module, cls):
|
|
3405 |
## propagation-loss-model.h (module 'propagation'): static ns3::TypeId ns3::NakagamiPropagationLossModel::GetTypeId() [member function]
|
|
3406 |
cls.add_method('GetTypeId',
|
|
3407 |
'ns3::TypeId',
|
|
3408 |
[],
|
|
3409 |
is_static=True)
|
|
3410 |
## propagation-loss-model.h (module 'propagation'): ns3::NakagamiPropagationLossModel::NakagamiPropagationLossModel() [constructor]
|
|
3411 |
cls.add_constructor([])
|
|
3412 |
## 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]
|
|
3413 |
cls.add_method('DoCalcRxPower',
|
|
3414 |
'double',
|
|
3415 |
[param('double', 'txPowerDbm'), param('ns3::Ptr< ns3::MobilityModel >', 'a'), param('ns3::Ptr< ns3::MobilityModel >', 'b')],
|
|
3416 |
is_const=True, visibility='private', is_virtual=True)
|
|
3417 |
return
|
|
3418 |
|
|
3419 |
def register_Ns3NetDevice_methods(root_module, cls):
|
|
3420 |
## net-device.h (module 'network'): ns3::NetDevice::NetDevice() [constructor]
|
|
3421 |
cls.add_constructor([])
|
|
3422 |
## net-device.h (module 'network'): ns3::NetDevice::NetDevice(ns3::NetDevice const & arg0) [copy constructor]
|
|
3423 |
cls.add_constructor([param('ns3::NetDevice const &', 'arg0')])
|
|
3424 |
## 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]
|
|
3425 |
cls.add_method('AddLinkChangeCallback',
|
|
3426 |
'void',
|
|
3427 |
[param('ns3::Callback< void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'callback')],
|
|
3428 |
is_pure_virtual=True, is_virtual=True)
|
|
3429 |
## net-device.h (module 'network'): ns3::Address ns3::NetDevice::GetAddress() const [member function]
|
|
3430 |
cls.add_method('GetAddress',
|
|
3431 |
'ns3::Address',
|
|
3432 |
[],
|
|
3433 |
is_pure_virtual=True, is_const=True, is_virtual=True)
|
|
3434 |
## net-device.h (module 'network'): ns3::Address ns3::NetDevice::GetBroadcast() const [member function]
|
|
3435 |
cls.add_method('GetBroadcast',
|
|
3436 |
'ns3::Address',
|
|
3437 |
[],
|
|
3438 |
is_pure_virtual=True, is_const=True, is_virtual=True)
|
|
3439 |
## net-device.h (module 'network'): ns3::Ptr<ns3::Channel> ns3::NetDevice::GetChannel() const [member function]
|
|
3440 |
cls.add_method('GetChannel',
|
|
3441 |
'ns3::Ptr< ns3::Channel >',
|
|
3442 |
[],
|
|
3443 |
is_pure_virtual=True, is_const=True, is_virtual=True)
|
|
3444 |
## net-device.h (module 'network'): uint32_t ns3::NetDevice::GetIfIndex() const [member function]
|
|
3445 |
cls.add_method('GetIfIndex',
|
|
3446 |
'uint32_t',
|
|
3447 |
[],
|
|
3448 |
is_pure_virtual=True, is_const=True, is_virtual=True)
|
|
3449 |
## net-device.h (module 'network'): uint16_t ns3::NetDevice::GetMtu() const [member function]
|
|
3450 |
cls.add_method('GetMtu',
|
|
3451 |
'uint16_t',
|
|
3452 |
[],
|
|
3453 |
is_pure_virtual=True, is_const=True, is_virtual=True)
|
|
3454 |
## net-device.h (module 'network'): ns3::Address ns3::NetDevice::GetMulticast(ns3::Ipv4Address multicastGroup) const [member function]
|
|
3455 |
cls.add_method('GetMulticast',
|
|
3456 |
'ns3::Address',
|
|
3457 |
[param('ns3::Ipv4Address', 'multicastGroup')],
|
|
3458 |
is_pure_virtual=True, is_const=True, is_virtual=True)
|
|
3459 |
## net-device.h (module 'network'): ns3::Address ns3::NetDevice::GetMulticast(ns3::Ipv6Address addr) const [member function]
|
|
3460 |
cls.add_method('GetMulticast',
|
|
3461 |
'ns3::Address',
|
|
3462 |
[param('ns3::Ipv6Address', 'addr')],
|
|
3463 |
is_pure_virtual=True, is_const=True, is_virtual=True)
|
|
3464 |
## net-device.h (module 'network'): ns3::Ptr<ns3::Node> ns3::NetDevice::GetNode() const [member function]
|
|
3465 |
cls.add_method('GetNode',
|
|
3466 |
'ns3::Ptr< ns3::Node >',
|
|
3467 |
[],
|
|
3468 |
is_pure_virtual=True, is_const=True, is_virtual=True)
|
|
3469 |
## net-device.h (module 'network'): static ns3::TypeId ns3::NetDevice::GetTypeId() [member function]
|
|
3470 |
cls.add_method('GetTypeId',
|
|
3471 |
'ns3::TypeId',
|
|
3472 |
[],
|
|
3473 |
is_static=True)
|
|
3474 |
## net-device.h (module 'network'): bool ns3::NetDevice::IsBridge() const [member function]
|
|
3475 |
cls.add_method('IsBridge',
|
|
3476 |
'bool',
|
|
3477 |
[],
|
|
3478 |
is_pure_virtual=True, is_const=True, is_virtual=True)
|
|
3479 |
## net-device.h (module 'network'): bool ns3::NetDevice::IsBroadcast() const [member function]
|
|
3480 |
cls.add_method('IsBroadcast',
|
|
3481 |
'bool',
|
|
3482 |
[],
|
|
3483 |
is_pure_virtual=True, is_const=True, is_virtual=True)
|
|
3484 |
## net-device.h (module 'network'): bool ns3::NetDevice::IsLinkUp() const [member function]
|
|
3485 |
cls.add_method('IsLinkUp',
|
|
3486 |
'bool',
|
|
3487 |
[],
|
|
3488 |
is_pure_virtual=True, is_const=True, is_virtual=True)
|
|
3489 |
## net-device.h (module 'network'): bool ns3::NetDevice::IsMulticast() const [member function]
|
|
3490 |
cls.add_method('IsMulticast',
|
|
3491 |
'bool',
|
|
3492 |
[],
|
|
3493 |
is_pure_virtual=True, is_const=True, is_virtual=True)
|
|
3494 |
## net-device.h (module 'network'): bool ns3::NetDevice::IsPointToPoint() const [member function]
|
|
3495 |
cls.add_method('IsPointToPoint',
|
|
3496 |
'bool',
|
|
3497 |
[],
|
|
3498 |
is_pure_virtual=True, is_const=True, is_virtual=True)
|
|
3499 |
## net-device.h (module 'network'): bool ns3::NetDevice::NeedsArp() const [member function]
|
|
3500 |
cls.add_method('NeedsArp',
|
|
3501 |
'bool',
|
|
3502 |
[],
|
|
3503 |
is_pure_virtual=True, is_const=True, is_virtual=True)
|
|
3504 |
## net-device.h (module 'network'): bool ns3::NetDevice::Send(ns3::Ptr<ns3::Packet> packet, ns3::Address const & dest, uint16_t protocolNumber) [member function]
|
|
3505 |
cls.add_method('Send',
|
|
3506 |
'bool',
|
|
3507 |
[param('ns3::Ptr< ns3::Packet >', 'packet'), param('ns3::Address const &', 'dest'), param('uint16_t', 'protocolNumber')],
|
|
3508 |
is_pure_virtual=True, is_virtual=True)
|
|
3509 |
## 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]
|
|
3510 |
cls.add_method('SendFrom',
|
|
3511 |
'bool',
|
|
3512 |
[param('ns3::Ptr< ns3::Packet >', 'packet'), param('ns3::Address const &', 'source'), param('ns3::Address const &', 'dest'), param('uint16_t', 'protocolNumber')],
|
|
3513 |
is_pure_virtual=True, is_virtual=True)
|
|
3514 |
## net-device.h (module 'network'): void ns3::NetDevice::SetAddress(ns3::Address address) [member function]
|
|
3515 |
cls.add_method('SetAddress',
|
|
3516 |
'void',
|
|
3517 |
[param('ns3::Address', 'address')],
|
|
3518 |
is_pure_virtual=True, is_virtual=True)
|
|
3519 |
## net-device.h (module 'network'): void ns3::NetDevice::SetIfIndex(uint32_t const index) [member function]
|
|
3520 |
cls.add_method('SetIfIndex',
|
|
3521 |
'void',
|
|
3522 |
[param('uint32_t const', 'index')],
|
|
3523 |
is_pure_virtual=True, is_virtual=True)
|
|
3524 |
## net-device.h (module 'network'): bool ns3::NetDevice::SetMtu(uint16_t const mtu) [member function]
|
|
3525 |
cls.add_method('SetMtu',
|
|
3526 |
'bool',
|
|
3527 |
[param('uint16_t const', 'mtu')],
|
|
3528 |
is_pure_virtual=True, is_virtual=True)
|
|
3529 |
## net-device.h (module 'network'): void ns3::NetDevice::SetNode(ns3::Ptr<ns3::Node> node) [member function]
|
|
3530 |
cls.add_method('SetNode',
|
|
3531 |
'void',
|
|
3532 |
[param('ns3::Ptr< ns3::Node >', 'node')],
|
|
3533 |
is_pure_virtual=True, is_virtual=True)
|
|
3534 |
## 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]
|
|
3535 |
cls.add_method('SetPromiscReceiveCallback',
|
|
3536 |
'void',
|
|
3537 |
[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')],
|
|
3538 |
is_pure_virtual=True, is_virtual=True)
|
|
3539 |
## 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]
|
|
3540 |
cls.add_method('SetReceiveCallback',
|
|
3541 |
'void',
|
|
3542 |
[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')],
|
|
3543 |
is_pure_virtual=True, is_virtual=True)
|
|
3544 |
## net-device.h (module 'network'): bool ns3::NetDevice::SupportsSendFrom() const [member function]
|
|
3545 |
cls.add_method('SupportsSendFrom',
|
|
3546 |
'bool',
|
|
3547 |
[],
|
|
3548 |
is_pure_virtual=True, is_const=True, is_virtual=True)
|
|
3549 |
return
|
|
3550 |
|
|
3551 |
def register_Ns3Node_methods(root_module, cls):
|
|
3552 |
## node.h (module 'network'): ns3::Node::Node(ns3::Node const & arg0) [copy constructor]
|
|
3553 |
cls.add_constructor([param('ns3::Node const &', 'arg0')])
|
|
3554 |
## node.h (module 'network'): ns3::Node::Node() [constructor]
|
|
3555 |
cls.add_constructor([])
|
|
3556 |
## node.h (module 'network'): ns3::Node::Node(uint32_t systemId) [constructor]
|
|
3557 |
cls.add_constructor([param('uint32_t', 'systemId')])
|
|
3558 |
## node.h (module 'network'): uint32_t ns3::Node::AddApplication(ns3::Ptr<ns3::Application> application) [member function]
|
|
3559 |
cls.add_method('AddApplication',
|
|
3560 |
'uint32_t',
|
|
3561 |
[param('ns3::Ptr< ns3::Application >', 'application')])
|
|
3562 |
## node.h (module 'network'): uint32_t ns3::Node::AddDevice(ns3::Ptr<ns3::NetDevice> device) [member function]
|
|
3563 |
cls.add_method('AddDevice',
|
|
3564 |
'uint32_t',
|
|
3565 |
[param('ns3::Ptr< ns3::NetDevice >', 'device')])
|
|
3566 |
## node.h (module 'network'): static bool ns3::Node::ChecksumEnabled() [member function]
|
|
3567 |
cls.add_method('ChecksumEnabled',
|
|
3568 |
'bool',
|
|
3569 |
[],
|
|
3570 |
is_static=True)
|
|
3571 |
## node.h (module 'network'): ns3::Ptr<ns3::Application> ns3::Node::GetApplication(uint32_t index) const [member function]
|
|
3572 |
cls.add_method('GetApplication',
|
|
3573 |
'ns3::Ptr< ns3::Application >',
|
|
3574 |
[param('uint32_t', 'index')],
|
|
3575 |
is_const=True)
|
|
3576 |
## node.h (module 'network'): ns3::Ptr<ns3::NetDevice> ns3::Node::GetDevice(uint32_t index) const [member function]
|
|
3577 |
cls.add_method('GetDevice',
|
|
3578 |
'ns3::Ptr< ns3::NetDevice >',
|
|
3579 |
[param('uint32_t', 'index')],
|
|
3580 |
is_const=True)
|
|
3581 |
## node.h (module 'network'): uint32_t ns3::Node::GetId() const [member function]
|
|
3582 |
cls.add_method('GetId',
|
|
3583 |
'uint32_t',
|
|
3584 |
[],
|
|
3585 |
is_const=True)
|
|
3586 |
## node.h (module 'network'): uint32_t ns3::Node::GetNApplications() const [member function]
|
|
3587 |
cls.add_method('GetNApplications',
|
|
3588 |
'uint32_t',
|
|
3589 |
[],
|
|
3590 |
is_const=True)
|
|
3591 |
## node.h (module 'network'): uint32_t ns3::Node::GetNDevices() const [member function]
|
|
3592 |
cls.add_method('GetNDevices',
|
|
3593 |
'uint32_t',
|
|
3594 |
[],
|
|
3595 |
is_const=True)
|
|
3596 |
## node.h (module 'network'): uint32_t ns3::Node::GetSystemId() const [member function]
|
|
3597 |
cls.add_method('GetSystemId',
|
|
3598 |
'uint32_t',
|
|
3599 |
[],
|
|
3600 |
is_const=True)
|
|
3601 |
## node.h (module 'network'): static ns3::TypeId ns3::Node::GetTypeId() [member function]
|
|
3602 |
cls.add_method('GetTypeId',
|
|
3603 |
'ns3::TypeId',
|
|
3604 |
[],
|
|
3605 |
is_static=True)
|
|
3606 |
## 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]
|
|
3607 |
cls.add_method('RegisterDeviceAdditionListener',
|
|
3608 |
'void',
|
|
3609 |
[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')])
|
|
3610 |
## 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]
|
|
3611 |
cls.add_method('RegisterProtocolHandler',
|
|
3612 |
'void',
|
|
3613 |
[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')])
|
|
3614 |
## 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]
|
|
3615 |
cls.add_method('UnregisterDeviceAdditionListener',
|
|
3616 |
'void',
|
|
3617 |
[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')])
|
|
3618 |
## 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]
|
|
3619 |
cls.add_method('UnregisterProtocolHandler',
|
|
3620 |
'void',
|
|
3621 |
[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')])
|
|
3622 |
## node.h (module 'network'): void ns3::Node::DoDispose() [member function]
|
|
3623 |
cls.add_method('DoDispose',
|
|
3624 |
'void',
|
|
3625 |
[],
|
|
3626 |
visibility='protected', is_virtual=True)
|
|
3627 |
## node.h (module 'network'): void ns3::Node::DoStart() [member function]
|
|
3628 |
cls.add_method('DoStart',
|
|
3629 |
'void',
|
|
3630 |
[],
|
|
3631 |
visibility='protected', is_virtual=True)
|
|
3632 |
return
|
|
3633 |
|
|
3634 |
def register_Ns3ObjectFactoryChecker_methods(root_module, cls):
|
|
3635 |
## object-factory.h (module 'core'): ns3::ObjectFactoryChecker::ObjectFactoryChecker() [constructor]
|
|
3636 |
cls.add_constructor([])
|
|
3637 |
## object-factory.h (module 'core'): ns3::ObjectFactoryChecker::ObjectFactoryChecker(ns3::ObjectFactoryChecker const & arg0) [copy constructor]
|
|
3638 |
cls.add_constructor([param('ns3::ObjectFactoryChecker const &', 'arg0')])
|
|
3639 |
return
|
|
3640 |
|
|
3641 |
def register_Ns3ObjectFactoryValue_methods(root_module, cls):
|
|
3642 |
## object-factory.h (module 'core'): ns3::ObjectFactoryValue::ObjectFactoryValue() [constructor]
|
|
3643 |
cls.add_constructor([])
|
|
3644 |
## object-factory.h (module 'core'): ns3::ObjectFactoryValue::ObjectFactoryValue(ns3::ObjectFactoryValue const & arg0) [copy constructor]
|
|
3645 |
cls.add_constructor([param('ns3::ObjectFactoryValue const &', 'arg0')])
|
|
3646 |
## object-factory.h (module 'core'): ns3::ObjectFactoryValue::ObjectFactoryValue(ns3::ObjectFactory const & value) [constructor]
|
|
3647 |
cls.add_constructor([param('ns3::ObjectFactory const &', 'value')])
|
|
3648 |
## object-factory.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::ObjectFactoryValue::Copy() const [member function]
|
|
3649 |
cls.add_method('Copy',
|
|
3650 |
'ns3::Ptr< ns3::AttributeValue >',
|
|
3651 |
[],
|
|
3652 |
is_const=True, is_virtual=True)
|
|
3653 |
## object-factory.h (module 'core'): bool ns3::ObjectFactoryValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
|
|
3654 |
cls.add_method('DeserializeFromString',
|
|
3655 |
'bool',
|
|
3656 |
[param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
|
|
3657 |
is_virtual=True)
|
|
3658 |
## object-factory.h (module 'core'): ns3::ObjectFactory ns3::ObjectFactoryValue::Get() const [member function]
|
|
3659 |
cls.add_method('Get',
|
|
3660 |
'ns3::ObjectFactory',
|
|
3661 |
[],
|
|
3662 |
is_const=True)
|
|
3663 |
## object-factory.h (module 'core'): std::string ns3::ObjectFactoryValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
|
|
3664 |
cls.add_method('SerializeToString',
|
|
3665 |
'std::string',
|
|
3666 |
[param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
|
|
3667 |
is_const=True, is_virtual=True)
|
|
3668 |
## object-factory.h (module 'core'): void ns3::ObjectFactoryValue::Set(ns3::ObjectFactory const & value) [member function]
|
|
3669 |
cls.add_method('Set',
|
|
3670 |
'void',
|
|
3671 |
[param('ns3::ObjectFactory const &', 'value')])
|
|
3672 |
return
|
|
3673 |
|
|
3674 |
def register_Ns3OhBuildingsPropagationLossModel_methods(root_module, cls):
|
|
3675 |
## oh-buildings-propagation-loss-model.h (module 'buildings'): static ns3::TypeId ns3::OhBuildingsPropagationLossModel::GetTypeId() [member function]
|
|
3676 |
cls.add_method('GetTypeId',
|
|
3677 |
'ns3::TypeId',
|
|
3678 |
[],
|
|
3679 |
is_static=True)
|
|
3680 |
## oh-buildings-propagation-loss-model.h (module 'buildings'): ns3::OhBuildingsPropagationLossModel::OhBuildingsPropagationLossModel() [constructor]
|
|
3681 |
cls.add_constructor([])
|
|
3682 |
## 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]
|
|
3683 |
cls.add_method('GetLoss',
|
|
3684 |
'double',
|
|
3685 |
[param('ns3::Ptr< ns3::MobilityModel >', 'a'), param('ns3::Ptr< ns3::MobilityModel >', 'b')],
|
|
3686 |
is_const=True, is_virtual=True)
|
|
3687 |
return
|
|
3688 |
|
|
3689 |
def register_Ns3RandomVariableChecker_methods(root_module, cls):
|
|
3690 |
## random-variable.h (module 'core'): ns3::RandomVariableChecker::RandomVariableChecker() [constructor]
|
|
3691 |
cls.add_constructor([])
|
|
3692 |
## random-variable.h (module 'core'): ns3::RandomVariableChecker::RandomVariableChecker(ns3::RandomVariableChecker const & arg0) [copy constructor]
|
|
3693 |
cls.add_constructor([param('ns3::RandomVariableChecker const &', 'arg0')])
|
|
3694 |
return
|
|
3695 |
|
|
3696 |
def register_Ns3RandomVariableValue_methods(root_module, cls):
|
|
3697 |
## random-variable.h (module 'core'): ns3::RandomVariableValue::RandomVariableValue() [constructor]
|
|
3698 |
cls.add_constructor([])
|
|
3699 |
## random-variable.h (module 'core'): ns3::RandomVariableValue::RandomVariableValue(ns3::RandomVariableValue const & arg0) [copy constructor]
|
|
3700 |
cls.add_constructor([param('ns3::RandomVariableValue const &', 'arg0')])
|
|
3701 |
## random-variable.h (module 'core'): ns3::RandomVariableValue::RandomVariableValue(ns3::RandomVariable const & value) [constructor]
|
|
3702 |
cls.add_constructor([param('ns3::RandomVariable const &', 'value')])
|
|
3703 |
## random-variable.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::RandomVariableValue::Copy() const [member function]
|
|
3704 |
cls.add_method('Copy',
|
|
3705 |
'ns3::Ptr< ns3::AttributeValue >',
|
|
3706 |
[],
|
|
3707 |
is_const=True, is_virtual=True)
|
|
3708 |
## random-variable.h (module 'core'): bool ns3::RandomVariableValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
|
|
3709 |
cls.add_method('DeserializeFromString',
|
|
3710 |
'bool',
|
|
3711 |
[param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
|
|
3712 |
is_virtual=True)
|
|
3713 |
## random-variable.h (module 'core'): ns3::RandomVariable ns3::RandomVariableValue::Get() const [member function]
|
|
3714 |
cls.add_method('Get',
|
|
3715 |
'ns3::RandomVariable',
|
|
3716 |
[],
|
|
3717 |
is_const=True)
|
|
3718 |
## random-variable.h (module 'core'): std::string ns3::RandomVariableValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
|
|
3719 |
cls.add_method('SerializeToString',
|
|
3720 |
'std::string',
|
|
3721 |
[param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
|
|
3722 |
is_const=True, is_virtual=True)
|
|
3723 |
## random-variable.h (module 'core'): void ns3::RandomVariableValue::Set(ns3::RandomVariable const & value) [member function]
|
|
3724 |
cls.add_method('Set',
|
|
3725 |
'void',
|
|
3726 |
[param('ns3::RandomVariable const &', 'value')])
|
|
3727 |
return
|
|
3728 |
|
|
3729 |
def register_Ns3TimeChecker_methods(root_module, cls):
|
|
3730 |
## nstime.h (module 'core'): ns3::TimeChecker::TimeChecker() [constructor]
|
|
3731 |
cls.add_constructor([])
|
|
3732 |
## nstime.h (module 'core'): ns3::TimeChecker::TimeChecker(ns3::TimeChecker const & arg0) [copy constructor]
|
|
3733 |
cls.add_constructor([param('ns3::TimeChecker const &', 'arg0')])
|
|
3734 |
return
|
|
3735 |
|
|
3736 |
def register_Ns3TimeValue_methods(root_module, cls):
|
|
3737 |
## nstime.h (module 'core'): ns3::TimeValue::TimeValue() [constructor]
|
|
3738 |
cls.add_constructor([])
|
|
3739 |
## nstime.h (module 'core'): ns3::TimeValue::TimeValue(ns3::TimeValue const & arg0) [copy constructor]
|
|
3740 |
cls.add_constructor([param('ns3::TimeValue const &', 'arg0')])
|
|
3741 |
## nstime.h (module 'core'): ns3::TimeValue::TimeValue(ns3::Time const & value) [constructor]
|
|
3742 |
cls.add_constructor([param('ns3::Time const &', 'value')])
|
|
3743 |
## nstime.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::TimeValue::Copy() const [member function]
|
|
3744 |
cls.add_method('Copy',
|
|
3745 |
'ns3::Ptr< ns3::AttributeValue >',
|
|
3746 |
[],
|
|
3747 |
is_const=True, is_virtual=True)
|
|
3748 |
## nstime.h (module 'core'): bool ns3::TimeValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
|
|
3749 |
cls.add_method('DeserializeFromString',
|
|
3750 |
'bool',
|
|
3751 |
[param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
|
|
3752 |
is_virtual=True)
|
|
3753 |
## nstime.h (module 'core'): ns3::Time ns3::TimeValue::Get() const [member function]
|
|
3754 |
cls.add_method('Get',
|
|
3755 |
'ns3::Time',
|
|
3756 |
[],
|
|
3757 |
is_const=True)
|
|
3758 |
## nstime.h (module 'core'): std::string ns3::TimeValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
|
|
3759 |
cls.add_method('SerializeToString',
|
|
3760 |
'std::string',
|
|
3761 |
[param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
|
|
3762 |
is_const=True, is_virtual=True)
|
|
3763 |
## nstime.h (module 'core'): void ns3::TimeValue::Set(ns3::Time const & value) [member function]
|
|
3764 |
cls.add_method('Set',
|
|
3765 |
'void',
|
|
3766 |
[param('ns3::Time const &', 'value')])
|
|
3767 |
return
|
|
3768 |
|
|
3769 |
def register_Ns3TypeIdChecker_methods(root_module, cls):
|
|
3770 |
## type-id.h (module 'core'): ns3::TypeIdChecker::TypeIdChecker() [constructor]
|
|
3771 |
cls.add_constructor([])
|
|
3772 |
## type-id.h (module 'core'): ns3::TypeIdChecker::TypeIdChecker(ns3::TypeIdChecker const & arg0) [copy constructor]
|
|
3773 |
cls.add_constructor([param('ns3::TypeIdChecker const &', 'arg0')])
|
|
3774 |
return
|
|
3775 |
|
|
3776 |
def register_Ns3TypeIdValue_methods(root_module, cls):
|
|
3777 |
## type-id.h (module 'core'): ns3::TypeIdValue::TypeIdValue() [constructor]
|
|
3778 |
cls.add_constructor([])
|
|
3779 |
## type-id.h (module 'core'): ns3::TypeIdValue::TypeIdValue(ns3::TypeIdValue const & arg0) [copy constructor]
|
|
3780 |
cls.add_constructor([param('ns3::TypeIdValue const &', 'arg0')])
|
|
3781 |
## type-id.h (module 'core'): ns3::TypeIdValue::TypeIdValue(ns3::TypeId const & value) [constructor]
|
|
3782 |
cls.add_constructor([param('ns3::TypeId const &', 'value')])
|
|
3783 |
## type-id.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::TypeIdValue::Copy() const [member function]
|
|
3784 |
cls.add_method('Copy',
|
|
3785 |
'ns3::Ptr< ns3::AttributeValue >',
|
|
3786 |
[],
|
|
3787 |
is_const=True, is_virtual=True)
|
|
3788 |
## type-id.h (module 'core'): bool ns3::TypeIdValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
|
|
3789 |
cls.add_method('DeserializeFromString',
|
|
3790 |
'bool',
|
|
3791 |
[param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
|
|
3792 |
is_virtual=True)
|
|
3793 |
## type-id.h (module 'core'): ns3::TypeId ns3::TypeIdValue::Get() const [member function]
|
|
3794 |
cls.add_method('Get',
|
|
3795 |
'ns3::TypeId',
|
|
3796 |
[],
|
|
3797 |
is_const=True)
|
|
3798 |
## type-id.h (module 'core'): std::string ns3::TypeIdValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
|
|
3799 |
cls.add_method('SerializeToString',
|
|
3800 |
'std::string',
|
|
3801 |
[param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
|
|
3802 |
is_const=True, is_virtual=True)
|
|
3803 |
## type-id.h (module 'core'): void ns3::TypeIdValue::Set(ns3::TypeId const & value) [member function]
|
|
3804 |
cls.add_method('Set',
|
|
3805 |
'void',
|
|
3806 |
[param('ns3::TypeId const &', 'value')])
|
|
3807 |
return
|
|
3808 |
|
|
3809 |
def register_Ns3Vector2DChecker_methods(root_module, cls):
|
|
3810 |
## vector.h (module 'core'): ns3::Vector2DChecker::Vector2DChecker() [constructor]
|
|
3811 |
cls.add_constructor([])
|
|
3812 |
## vector.h (module 'core'): ns3::Vector2DChecker::Vector2DChecker(ns3::Vector2DChecker const & arg0) [copy constructor]
|
|
3813 |
cls.add_constructor([param('ns3::Vector2DChecker const &', 'arg0')])
|
|
3814 |
return
|
|
3815 |
|
|
3816 |
def register_Ns3Vector2DValue_methods(root_module, cls):
|
|
3817 |
## vector.h (module 'core'): ns3::Vector2DValue::Vector2DValue() [constructor]
|
|
3818 |
cls.add_constructor([])
|
|
3819 |
## vector.h (module 'core'): ns3::Vector2DValue::Vector2DValue(ns3::Vector2DValue const & arg0) [copy constructor]
|
|
3820 |
cls.add_constructor([param('ns3::Vector2DValue const &', 'arg0')])
|
|
3821 |
## vector.h (module 'core'): ns3::Vector2DValue::Vector2DValue(ns3::Vector2D const & value) [constructor]
|
|
3822 |
cls.add_constructor([param('ns3::Vector2D const &', 'value')])
|
|
3823 |
## vector.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::Vector2DValue::Copy() const [member function]
|
|
3824 |
cls.add_method('Copy',
|
|
3825 |
'ns3::Ptr< ns3::AttributeValue >',
|
|
3826 |
[],
|
|
3827 |
is_const=True, is_virtual=True)
|
|
3828 |
## vector.h (module 'core'): bool ns3::Vector2DValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
|
|
3829 |
cls.add_method('DeserializeFromString',
|
|
3830 |
'bool',
|
|
3831 |
[param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
|
|
3832 |
is_virtual=True)
|
|
3833 |
## vector.h (module 'core'): ns3::Vector2D ns3::Vector2DValue::Get() const [member function]
|
|
3834 |
cls.add_method('Get',
|
|
3835 |
'ns3::Vector2D',
|
|
3836 |
[],
|
|
3837 |
is_const=True)
|
|
3838 |
## vector.h (module 'core'): std::string ns3::Vector2DValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
|
|
3839 |
cls.add_method('SerializeToString',
|
|
3840 |
'std::string',
|
|
3841 |
[param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
|
|
3842 |
is_const=True, is_virtual=True)
|
|
3843 |
## vector.h (module 'core'): void ns3::Vector2DValue::Set(ns3::Vector2D const & value) [member function]
|
|
3844 |
cls.add_method('Set',
|
|
3845 |
'void',
|
|
3846 |
[param('ns3::Vector2D const &', 'value')])
|
|
3847 |
return
|
|
3848 |
|
|
3849 |
def register_Ns3Vector3DChecker_methods(root_module, cls):
|
|
3850 |
## vector.h (module 'core'): ns3::Vector3DChecker::Vector3DChecker() [constructor]
|
|
3851 |
cls.add_constructor([])
|
|
3852 |
## vector.h (module 'core'): ns3::Vector3DChecker::Vector3DChecker(ns3::Vector3DChecker const & arg0) [copy constructor]
|
|
3853 |
cls.add_constructor([param('ns3::Vector3DChecker const &', 'arg0')])
|
|
3854 |
return
|
|
3855 |
|
|
3856 |
def register_Ns3Vector3DValue_methods(root_module, cls):
|
|
3857 |
## vector.h (module 'core'): ns3::Vector3DValue::Vector3DValue() [constructor]
|
|
3858 |
cls.add_constructor([])
|
|
3859 |
## vector.h (module 'core'): ns3::Vector3DValue::Vector3DValue(ns3::Vector3DValue const & arg0) [copy constructor]
|
|
3860 |
cls.add_constructor([param('ns3::Vector3DValue const &', 'arg0')])
|
|
3861 |
## vector.h (module 'core'): ns3::Vector3DValue::Vector3DValue(ns3::Vector3D const & value) [constructor]
|
|
3862 |
cls.add_constructor([param('ns3::Vector3D const &', 'value')])
|
|
3863 |
## vector.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::Vector3DValue::Copy() const [member function]
|
|
3864 |
cls.add_method('Copy',
|
|
3865 |
'ns3::Ptr< ns3::AttributeValue >',
|
|
3866 |
[],
|
|
3867 |
is_const=True, is_virtual=True)
|
|
3868 |
## vector.h (module 'core'): bool ns3::Vector3DValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
|
|
3869 |
cls.add_method('DeserializeFromString',
|
|
3870 |
'bool',
|
|
3871 |
[param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
|
|
3872 |
is_virtual=True)
|
|
3873 |
## vector.h (module 'core'): ns3::Vector3D ns3::Vector3DValue::Get() const [member function]
|
|
3874 |
cls.add_method('Get',
|
|
3875 |
'ns3::Vector3D',
|
|
3876 |
[],
|
|
3877 |
is_const=True)
|
|
3878 |
## vector.h (module 'core'): std::string ns3::Vector3DValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
|
|
3879 |
cls.add_method('SerializeToString',
|
|
3880 |
'std::string',
|
|
3881 |
[param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
|
|
3882 |
is_const=True, is_virtual=True)
|
|
3883 |
## vector.h (module 'core'): void ns3::Vector3DValue::Set(ns3::Vector3D const & value) [member function]
|
|
3884 |
cls.add_method('Set',
|
|
3885 |
'void',
|
|
3886 |
[param('ns3::Vector3D const &', 'value')])
|
|
3887 |
return
|
|
3888 |
|
|
3889 |
def register_Ns3AddressChecker_methods(root_module, cls):
|
|
3890 |
## address.h (module 'network'): ns3::AddressChecker::AddressChecker() [constructor]
|
|
3891 |
cls.add_constructor([])
|
|
3892 |
## address.h (module 'network'): ns3::AddressChecker::AddressChecker(ns3::AddressChecker const & arg0) [copy constructor]
|
|
3893 |
cls.add_constructor([param('ns3::AddressChecker const &', 'arg0')])
|
|
3894 |
return
|
|
3895 |
|
|
3896 |
def register_Ns3AddressValue_methods(root_module, cls):
|
|
3897 |
## address.h (module 'network'): ns3::AddressValue::AddressValue() [constructor]
|
|
3898 |
cls.add_constructor([])
|
|
3899 |
## address.h (module 'network'): ns3::AddressValue::AddressValue(ns3::AddressValue const & arg0) [copy constructor]
|
|
3900 |
cls.add_constructor([param('ns3::AddressValue const &', 'arg0')])
|
|
3901 |
## address.h (module 'network'): ns3::AddressValue::AddressValue(ns3::Address const & value) [constructor]
|
|
3902 |
cls.add_constructor([param('ns3::Address const &', 'value')])
|
|
3903 |
## address.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::AddressValue::Copy() const [member function]
|
|
3904 |
cls.add_method('Copy',
|
|
3905 |
'ns3::Ptr< ns3::AttributeValue >',
|
|
3906 |
[],
|
|
3907 |
is_const=True, is_virtual=True)
|
|
3908 |
## address.h (module 'network'): bool ns3::AddressValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
|
|
3909 |
cls.add_method('DeserializeFromString',
|
|
3910 |
'bool',
|
|
3911 |
[param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
|
|
3912 |
is_virtual=True)
|
|
3913 |
## address.h (module 'network'): ns3::Address ns3::AddressValue::Get() const [member function]
|
|
3914 |
cls.add_method('Get',
|
|
3915 |
'ns3::Address',
|
|
3916 |
[],
|
|
3917 |
is_const=True)
|
|
3918 |
## address.h (module 'network'): std::string ns3::AddressValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
|
|
3919 |
cls.add_method('SerializeToString',
|
|
3920 |
'std::string',
|
|
3921 |
[param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
|
|
3922 |
is_const=True, is_virtual=True)
|
|
3923 |
## address.h (module 'network'): void ns3::AddressValue::Set(ns3::Address const & value) [member function]
|
|
3924 |
cls.add_method('Set',
|
|
3925 |
'void',
|
|
3926 |
[param('ns3::Address const &', 'value')])
|
|
3927 |
return
|
|
3928 |
|
|
3929 |
def register_Ns3BuildingsMobilityModel_methods(root_module, cls):
|
|
3930 |
## buildings-mobility-model.h (module 'buildings'): ns3::BuildingsMobilityModel::BuildingsMobilityModel(ns3::BuildingsMobilityModel const & arg0) [copy constructor]
|
|
3931 |
cls.add_constructor([param('ns3::BuildingsMobilityModel const &', 'arg0')])
|
|
3932 |
## buildings-mobility-model.h (module 'buildings'): ns3::BuildingsMobilityModel::BuildingsMobilityModel() [constructor]
|
|
3933 |
cls.add_constructor([])
|
|
3934 |
## buildings-mobility-model.h (module 'buildings'): ns3::Ptr<ns3::Building> ns3::BuildingsMobilityModel::GetBuilding() [member function]
|
|
3935 |
cls.add_method('GetBuilding',
|
|
3936 |
'ns3::Ptr< ns3::Building >',
|
|
3937 |
[])
|
|
3938 |
## buildings-mobility-model.h (module 'buildings'): uint8_t ns3::BuildingsMobilityModel::GetFloorNumber() [member function]
|
|
3939 |
cls.add_method('GetFloorNumber',
|
|
3940 |
'uint8_t',
|
|
3941 |
[])
|
|
3942 |
## buildings-mobility-model.h (module 'buildings'): uint8_t ns3::BuildingsMobilityModel::GetRoomNumberX() [member function]
|
|
3943 |
cls.add_method('GetRoomNumberX',
|
|
3944 |
'uint8_t',
|
|
3945 |
[])
|
|
3946 |
## buildings-mobility-model.h (module 'buildings'): uint8_t ns3::BuildingsMobilityModel::GetRoomNumberY() [member function]
|
|
3947 |
cls.add_method('GetRoomNumberY',
|
|
3948 |
'uint8_t',
|
|
3949 |
[])
|
|
3950 |
## buildings-mobility-model.h (module 'buildings'): static ns3::TypeId ns3::BuildingsMobilityModel::GetTypeId() [member function]
|
|
3951 |
cls.add_method('GetTypeId',
|
|
3952 |
'ns3::TypeId',
|
|
3953 |
[],
|
|
3954 |
is_static=True)
|
|
3955 |
## buildings-mobility-model.h (module 'buildings'): bool ns3::BuildingsMobilityModel::IsIndoor() [member function]
|
|
3956 |
cls.add_method('IsIndoor',
|
|
3957 |
'bool',
|
|
3958 |
[])
|
|
3959 |
## buildings-mobility-model.h (module 'buildings'): bool ns3::BuildingsMobilityModel::IsOutdoor() [member function]
|
|
3960 |
cls.add_method('IsOutdoor',
|
|
3961 |
'bool',
|
|
3962 |
[])
|
|
3963 |
## 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]
|
|
3964 |
cls.add_method('SetIndoor',
|
|
3965 |
'void',
|
|
3966 |
[param('ns3::Ptr< ns3::Building >', 'building'), param('uint8_t', 'nfloor'), param('uint8_t', 'nroomx'), param('uint8_t', 'nroomy')])
|
|
3967 |
## buildings-mobility-model.h (module 'buildings'): void ns3::BuildingsMobilityModel::SetOutdoor() [member function]
|
|
3968 |
cls.add_method('SetOutdoor',
|
|
3969 |
'void',
|
|
3970 |
[])
|
|
3971 |
## buildings-mobility-model.h (module 'buildings'): void ns3::BuildingsMobilityModel::DoDispose() [member function]
|
|
3972 |
cls.add_method('DoDispose',
|
|
3973 |
'void',
|
|
3974 |
[],
|
|
3975 |
visibility='private', is_virtual=True)
|
|
3976 |
## buildings-mobility-model.h (module 'buildings'): ns3::Vector ns3::BuildingsMobilityModel::DoGetPosition() const [member function]
|
|
3977 |
cls.add_method('DoGetPosition',
|
|
3978 |
'ns3::Vector',
|
|
3979 |
[],
|
|
3980 |
is_const=True, visibility='private', is_virtual=True)
|
|
3981 |
## buildings-mobility-model.h (module 'buildings'): ns3::Vector ns3::BuildingsMobilityModel::DoGetVelocity() const [member function]
|
|
3982 |
cls.add_method('DoGetVelocity',
|
|
3983 |
'ns3::Vector',
|
|
3984 |
[],
|
|
3985 |
is_const=True, visibility='private', is_virtual=True)
|
|
3986 |
## buildings-mobility-model.h (module 'buildings'): void ns3::BuildingsMobilityModel::DoSetPosition(ns3::Vector const & position) [member function]
|
|
3987 |
cls.add_method('DoSetPosition',
|
|
3988 |
'void',
|
|
3989 |
[param('ns3::Vector const &', 'position')],
|
|
3990 |
visibility='private', is_virtual=True)
|
|
3991 |
return
|
|
3992 |
|
|
3993 |
def register_functions(root_module):
|
|
3994 |
module = root_module
|
|
3995 |
register_functions_ns3_FatalImpl(module.get_submodule('FatalImpl'), root_module)
|
|
3996 |
return
|
|
3997 |
|
|
3998 |
def register_functions_ns3_FatalImpl(module, root_module):
|
|
3999 |
return
|
|
4000 |
|
|
4001 |
def main():
|
|
4002 |
out = FileCodeSink(sys.stdout)
|
|
4003 |
root_module = module_init()
|
|
4004 |
register_types(root_module)
|
|
4005 |
register_methods(root_module)
|
|
4006 |
register_functions(root_module)
|
|
4007 |
root_module.generate(out)
|
|
4008 |
|
|
4009 |
if __name__ == '__main__':
|
|
4010 |
main()
|
|
4011 |
|