5348
|
1 |
from pybindgen import Module, FileCodeSink, param, retval, cppclass, typehandlers
|
|
2 |
|
|
3 |
def register_types(module):
|
|
4 |
root_module = module.get_root()
|
|
5 |
|
|
6 |
## event-id.h: ns3::EventId [class]
|
|
7 |
module.add_class('EventId')
|
|
8 |
## event-impl.h: ns3::EventImpl [class]
|
|
9 |
module.add_class('EventImpl', allow_subclassing=True)
|
|
10 |
## high-precision-128.h: ns3::HighPrecision [class]
|
|
11 |
module.add_class('HighPrecision')
|
|
12 |
## simulator.h: ns3::Simulator [class]
|
|
13 |
module.add_class('Simulator', is_singleton=True)
|
|
14 |
## nstime.h: ns3::TimeUnit<-1> [class]
|
|
15 |
module.add_class('TimeInvert')
|
|
16 |
## nstime.h: ns3::TimeUnit<0> [class]
|
|
17 |
module.add_class('Scalar')
|
|
18 |
## nstime.h: ns3::TimeUnit<1> [class]
|
|
19 |
module.add_class('Time')
|
|
20 |
## nstime.h: ns3::TimeUnit<2> [class]
|
|
21 |
module.add_class('TimeSquare')
|
|
22 |
## timer.h: ns3::Timer [class]
|
|
23 |
module.add_class('Timer')
|
|
24 |
## timer.h: ns3::Timer::DestroyPolicy [enumeration]
|
|
25 |
module.add_enum('DestroyPolicy', ['CANCEL_ON_DESTROY', 'REMOVE_ON_DESTROY', 'CHECK_ON_DESTROY'], outer_class=root_module['ns3::Timer'])
|
|
26 |
## timer.h: ns3::Timer::State [enumeration]
|
|
27 |
module.add_enum('State', ['RUNNING', 'EXPIRED', 'SUSPENDED'], outer_class=root_module['ns3::Timer'])
|
|
28 |
## timer-impl.h: ns3::TimerImpl [class]
|
|
29 |
module.add_class('TimerImpl', allow_subclassing=True)
|
|
30 |
## watchdog.h: ns3::Watchdog [class]
|
|
31 |
module.add_class('Watchdog')
|
|
32 |
## scheduler.h: ns3::Scheduler [class]
|
|
33 |
module.add_class('Scheduler', parent=root_module['ns3::Object'])
|
|
34 |
## scheduler.h: ns3::Scheduler::Event [struct]
|
|
35 |
module.add_class('Event', outer_class=root_module['ns3::Scheduler'])
|
|
36 |
## scheduler.h: ns3::Scheduler::EventKey [struct]
|
|
37 |
module.add_class('EventKey', outer_class=root_module['ns3::Scheduler'])
|
|
38 |
## simulator-impl.h: ns3::SimulatorImpl [class]
|
|
39 |
module.add_class('SimulatorImpl', parent=root_module['ns3::Object'])
|
|
40 |
## synchronizer.h: ns3::Synchronizer [class]
|
|
41 |
module.add_class('Synchronizer', parent=root_module['ns3::Object'])
|
|
42 |
## nstime.h: ns3::TimeChecker [class]
|
|
43 |
module.add_class('TimeChecker', parent=root_module['ns3::AttributeChecker'])
|
|
44 |
## nstime.h: ns3::TimeValue [class]
|
|
45 |
module.add_class('TimeValue', parent=root_module['ns3::AttributeValue'])
|
|
46 |
## wall-clock-synchronizer.h: ns3::WallClockSynchronizer [class]
|
|
47 |
module.add_class('WallClockSynchronizer', parent=root_module['ns3::Synchronizer'])
|
|
48 |
## calendar-scheduler.h: ns3::CalendarScheduler [class]
|
|
49 |
module.add_class('CalendarScheduler', parent=root_module['ns3::Scheduler'])
|
|
50 |
## default-simulator-impl.h: ns3::DefaultSimulatorImpl [class]
|
|
51 |
module.add_class('DefaultSimulatorImpl', parent=root_module['ns3::SimulatorImpl'])
|
|
52 |
## heap-scheduler.h: ns3::HeapScheduler [class]
|
|
53 |
module.add_class('HeapScheduler', parent=root_module['ns3::Scheduler'])
|
|
54 |
## list-scheduler.h: ns3::ListScheduler [class]
|
|
55 |
module.add_class('ListScheduler', parent=root_module['ns3::Scheduler'])
|
|
56 |
## map-scheduler.h: ns3::MapScheduler [class]
|
|
57 |
module.add_class('MapScheduler', parent=root_module['ns3::Scheduler'])
|
|
58 |
## ns2-calendar-scheduler.h: ns3::Ns2CalendarScheduler [class]
|
|
59 |
module.add_class('Ns2CalendarScheduler', parent=root_module['ns3::Scheduler'])
|
|
60 |
## realtime-simulator-impl.h: ns3::RealtimeSimulatorImpl [class]
|
|
61 |
module.add_class('RealtimeSimulatorImpl', parent=root_module['ns3::SimulatorImpl'])
|
|
62 |
## realtime-simulator-impl.h: ns3::RealtimeSimulatorImpl::SynchronizationMode [enumeration]
|
|
63 |
module.add_enum('SynchronizationMode', ['SYNC_BEST_EFFORT', 'SYNC_HARD_LIMIT'], outer_class=root_module['ns3::RealtimeSimulatorImpl'])
|
|
64 |
typehandlers.add_type_alias('ns3::TimeUnit< 2 >', 'ns3::TimeSquare')
|
|
65 |
typehandlers.add_type_alias('ns3::TimeUnit< 2 >*', 'ns3::TimeSquare*')
|
|
66 |
typehandlers.add_type_alias('ns3::TimeUnit< 2 >&', 'ns3::TimeSquare&')
|
|
67 |
typehandlers.add_type_alias('ns3::TimeUnit< - 1 >', 'ns3::TimeInvert')
|
|
68 |
typehandlers.add_type_alias('ns3::TimeUnit< - 1 >*', 'ns3::TimeInvert*')
|
|
69 |
typehandlers.add_type_alias('ns3::TimeUnit< - 1 >&', 'ns3::TimeInvert&')
|
|
70 |
typehandlers.add_type_alias('ns3::TimeUnit< 0 >', 'ns3::Scalar')
|
|
71 |
typehandlers.add_type_alias('ns3::TimeUnit< 0 >*', 'ns3::Scalar*')
|
|
72 |
typehandlers.add_type_alias('ns3::TimeUnit< 0 >&', 'ns3::Scalar&')
|
|
73 |
typehandlers.add_type_alias('ns3::TimeUnit< 1 >', 'ns3::Time')
|
|
74 |
typehandlers.add_type_alias('ns3::TimeUnit< 1 >*', 'ns3::Time*')
|
|
75 |
typehandlers.add_type_alias('ns3::TimeUnit< 1 >&', 'ns3::Time&')
|
|
76 |
|
|
77 |
## Register a nested module for the namespace Config
|
|
78 |
|
|
79 |
nested_module = module.add_cpp_namespace('Config')
|
|
80 |
register_types_ns3_Config(nested_module)
|
|
81 |
|
|
82 |
|
|
83 |
## Register a nested module for the namespace TimeStepPrecision
|
|
84 |
|
|
85 |
nested_module = module.add_cpp_namespace('TimeStepPrecision')
|
|
86 |
register_types_ns3_TimeStepPrecision(nested_module)
|
|
87 |
|
|
88 |
|
|
89 |
## Register a nested module for the namespace addressUtils
|
|
90 |
|
|
91 |
nested_module = module.add_cpp_namespace('addressUtils')
|
|
92 |
register_types_ns3_addressUtils(nested_module)
|
|
93 |
|
|
94 |
|
|
95 |
## Register a nested module for the namespace dot11s
|
|
96 |
|
|
97 |
nested_module = module.add_cpp_namespace('dot11s')
|
|
98 |
register_types_ns3_dot11s(nested_module)
|
|
99 |
|
|
100 |
|
|
101 |
## Register a nested module for the namespace flame
|
|
102 |
|
|
103 |
nested_module = module.add_cpp_namespace('flame')
|
|
104 |
register_types_ns3_flame(nested_module)
|
|
105 |
|
|
106 |
|
|
107 |
## Register a nested module for the namespace internal
|
|
108 |
|
|
109 |
nested_module = module.add_cpp_namespace('internal')
|
|
110 |
register_types_ns3_internal(nested_module)
|
|
111 |
|
|
112 |
|
|
113 |
## Register a nested module for the namespace olsr
|
|
114 |
|
|
115 |
nested_module = module.add_cpp_namespace('olsr')
|
|
116 |
register_types_ns3_olsr(nested_module)
|
|
117 |
|
|
118 |
|
|
119 |
def register_types_ns3_Config(module):
|
|
120 |
root_module = module.get_root()
|
|
121 |
|
|
122 |
|
|
123 |
def register_types_ns3_TimeStepPrecision(module):
|
|
124 |
root_module = module.get_root()
|
|
125 |
|
|
126 |
## nstime.h: ns3::TimeStepPrecision::precision_t [enumeration]
|
|
127 |
module.add_enum('precision_t', ['S', 'MS', 'US', 'NS', 'PS', 'FS'])
|
|
128 |
|
|
129 |
def register_types_ns3_addressUtils(module):
|
|
130 |
root_module = module.get_root()
|
|
131 |
|
|
132 |
|
|
133 |
def register_types_ns3_dot11s(module):
|
|
134 |
root_module = module.get_root()
|
|
135 |
|
|
136 |
|
|
137 |
def register_types_ns3_flame(module):
|
|
138 |
root_module = module.get_root()
|
|
139 |
|
|
140 |
|
|
141 |
def register_types_ns3_internal(module):
|
|
142 |
root_module = module.get_root()
|
|
143 |
|
|
144 |
|
|
145 |
def register_types_ns3_olsr(module):
|
|
146 |
root_module = module.get_root()
|
|
147 |
|
|
148 |
|
|
149 |
def register_methods(root_module):
|
|
150 |
register_Ns3EventId_methods(root_module, root_module['ns3::EventId'])
|
|
151 |
register_Ns3EventImpl_methods(root_module, root_module['ns3::EventImpl'])
|
|
152 |
register_Ns3HighPrecision_methods(root_module, root_module['ns3::HighPrecision'])
|
|
153 |
register_Ns3Simulator_methods(root_module, root_module['ns3::Simulator'])
|
|
154 |
register_Ns3TimeInvert_methods(root_module, root_module['ns3::TimeInvert'])
|
|
155 |
register_Ns3Scalar_methods(root_module, root_module['ns3::Scalar'])
|
|
156 |
register_Ns3Time_methods(root_module, root_module['ns3::Time'])
|
|
157 |
register_Ns3TimeSquare_methods(root_module, root_module['ns3::TimeSquare'])
|
|
158 |
register_Ns3Timer_methods(root_module, root_module['ns3::Timer'])
|
|
159 |
register_Ns3TimerImpl_methods(root_module, root_module['ns3::TimerImpl'])
|
|
160 |
register_Ns3Watchdog_methods(root_module, root_module['ns3::Watchdog'])
|
|
161 |
register_Ns3Scheduler_methods(root_module, root_module['ns3::Scheduler'])
|
|
162 |
register_Ns3SchedulerEvent_methods(root_module, root_module['ns3::Scheduler::Event'])
|
|
163 |
register_Ns3SchedulerEventKey_methods(root_module, root_module['ns3::Scheduler::EventKey'])
|
|
164 |
register_Ns3SimulatorImpl_methods(root_module, root_module['ns3::SimulatorImpl'])
|
|
165 |
register_Ns3Synchronizer_methods(root_module, root_module['ns3::Synchronizer'])
|
|
166 |
register_Ns3TimeChecker_methods(root_module, root_module['ns3::TimeChecker'])
|
|
167 |
register_Ns3TimeValue_methods(root_module, root_module['ns3::TimeValue'])
|
|
168 |
register_Ns3WallClockSynchronizer_methods(root_module, root_module['ns3::WallClockSynchronizer'])
|
|
169 |
register_Ns3CalendarScheduler_methods(root_module, root_module['ns3::CalendarScheduler'])
|
|
170 |
register_Ns3DefaultSimulatorImpl_methods(root_module, root_module['ns3::DefaultSimulatorImpl'])
|
|
171 |
register_Ns3HeapScheduler_methods(root_module, root_module['ns3::HeapScheduler'])
|
|
172 |
register_Ns3ListScheduler_methods(root_module, root_module['ns3::ListScheduler'])
|
|
173 |
register_Ns3MapScheduler_methods(root_module, root_module['ns3::MapScheduler'])
|
|
174 |
register_Ns3Ns2CalendarScheduler_methods(root_module, root_module['ns3::Ns2CalendarScheduler'])
|
|
175 |
register_Ns3RealtimeSimulatorImpl_methods(root_module, root_module['ns3::RealtimeSimulatorImpl'])
|
|
176 |
return
|
|
177 |
|
|
178 |
def register_Ns3EventId_methods(root_module, cls):
|
|
179 |
cls.add_binary_comparison_operator('!=')
|
|
180 |
cls.add_binary_comparison_operator('==')
|
|
181 |
## event-id.h: ns3::EventId::EventId(ns3::EventId const & arg0) [copy constructor]
|
|
182 |
cls.add_constructor([param('ns3::EventId const &', 'arg0')])
|
|
183 |
## event-id.h: ns3::EventId::EventId() [constructor]
|
|
184 |
cls.add_constructor([])
|
|
185 |
## event-id.h: ns3::EventId::EventId(ns3::Ptr<ns3::EventImpl> const & impl, uint64_t ts, uint32_t uid) [constructor]
|
|
186 |
cls.add_constructor([param('ns3::Ptr< ns3::EventImpl > const &', 'impl'), param('uint64_t', 'ts'), param('uint32_t', 'uid')])
|
|
187 |
## event-id.h: void ns3::EventId::Cancel() [member function]
|
|
188 |
cls.add_method('Cancel',
|
|
189 |
'void',
|
|
190 |
[])
|
|
191 |
## event-id.h: uint64_t ns3::EventId::GetTs() const [member function]
|
|
192 |
cls.add_method('GetTs',
|
|
193 |
'uint64_t',
|
|
194 |
[],
|
|
195 |
is_const=True)
|
|
196 |
## event-id.h: uint32_t ns3::EventId::GetUid() const [member function]
|
|
197 |
cls.add_method('GetUid',
|
|
198 |
'uint32_t',
|
|
199 |
[],
|
|
200 |
is_const=True)
|
|
201 |
## event-id.h: bool ns3::EventId::IsExpired() const [member function]
|
|
202 |
cls.add_method('IsExpired',
|
|
203 |
'bool',
|
|
204 |
[],
|
|
205 |
is_const=True)
|
|
206 |
## event-id.h: bool ns3::EventId::IsRunning() const [member function]
|
|
207 |
cls.add_method('IsRunning',
|
|
208 |
'bool',
|
|
209 |
[],
|
|
210 |
is_const=True)
|
|
211 |
## event-id.h: ns3::EventImpl * ns3::EventId::PeekEventImpl() const [member function]
|
|
212 |
cls.add_method('PeekEventImpl',
|
|
213 |
'ns3::EventImpl *',
|
|
214 |
[],
|
|
215 |
is_const=True)
|
|
216 |
return
|
|
217 |
|
|
218 |
def register_Ns3EventImpl_methods(root_module, cls):
|
|
219 |
## event-impl.h: ns3::EventImpl::EventImpl(ns3::EventImpl const & arg0) [copy constructor]
|
|
220 |
cls.add_constructor([param('ns3::EventImpl const &', 'arg0')])
|
|
221 |
## event-impl.h: ns3::EventImpl::EventImpl() [constructor]
|
|
222 |
cls.add_constructor([])
|
|
223 |
## event-impl.h: void ns3::EventImpl::Cancel() [member function]
|
|
224 |
cls.add_method('Cancel',
|
|
225 |
'void',
|
|
226 |
[])
|
|
227 |
## event-impl.h: void ns3::EventImpl::Invoke() [member function]
|
|
228 |
cls.add_method('Invoke',
|
|
229 |
'void',
|
|
230 |
[])
|
|
231 |
## event-impl.h: bool ns3::EventImpl::IsCancelled() [member function]
|
|
232 |
cls.add_method('IsCancelled',
|
|
233 |
'bool',
|
|
234 |
[])
|
|
235 |
## event-impl.h: void ns3::EventImpl::Ref() const [member function]
|
|
236 |
cls.add_method('Ref',
|
|
237 |
'void',
|
|
238 |
[],
|
|
239 |
is_const=True)
|
|
240 |
## event-impl.h: void ns3::EventImpl::Unref() const [member function]
|
|
241 |
cls.add_method('Unref',
|
|
242 |
'void',
|
|
243 |
[],
|
|
244 |
is_const=True)
|
|
245 |
## event-impl.h: void ns3::EventImpl::Notify() [member function]
|
|
246 |
cls.add_method('Notify',
|
|
247 |
'void',
|
|
248 |
[],
|
|
249 |
is_pure_virtual=True, visibility='protected', is_virtual=True)
|
|
250 |
return
|
|
251 |
|
|
252 |
def register_Ns3HighPrecision_methods(root_module, cls):
|
|
253 |
## high-precision-128.h: ns3::HighPrecision::HighPrecision(ns3::HighPrecision const & arg0) [copy constructor]
|
|
254 |
cls.add_constructor([param('ns3::HighPrecision const &', 'arg0')])
|
|
255 |
## high-precision-128.h: ns3::HighPrecision::HighPrecision(double value) [constructor]
|
|
256 |
cls.add_constructor([param('double', 'value')])
|
|
257 |
## high-precision-128.h: ns3::HighPrecision::HighPrecision() [constructor]
|
|
258 |
cls.add_constructor([])
|
|
259 |
## high-precision-128.h: ns3::HighPrecision::HighPrecision(int64_t value, bool dummy) [constructor]
|
|
260 |
cls.add_constructor([param('int64_t', 'value'), param('bool', 'dummy')])
|
|
261 |
## high-precision-128.h: bool ns3::HighPrecision::Add(ns3::HighPrecision const & o) [member function]
|
|
262 |
cls.add_method('Add',
|
|
263 |
'bool',
|
|
264 |
[param('ns3::HighPrecision const &', 'o')])
|
|
265 |
## high-precision-128.h: int ns3::HighPrecision::Compare(ns3::HighPrecision const & o) const [member function]
|
|
266 |
cls.add_method('Compare',
|
|
267 |
'int',
|
|
268 |
[param('ns3::HighPrecision const &', 'o')],
|
|
269 |
is_const=True)
|
|
270 |
## high-precision-128.h: bool ns3::HighPrecision::Div(ns3::HighPrecision const & o) [member function]
|
|
271 |
cls.add_method('Div',
|
|
272 |
'bool',
|
|
273 |
[param('ns3::HighPrecision const &', 'o')])
|
|
274 |
## high-precision-128.h: double ns3::HighPrecision::GetDouble() const [member function]
|
|
275 |
cls.add_method('GetDouble',
|
|
276 |
'double',
|
|
277 |
[],
|
|
278 |
is_const=True)
|
|
279 |
## high-precision-128.h: int64_t ns3::HighPrecision::GetInteger() const [member function]
|
|
280 |
cls.add_method('GetInteger',
|
|
281 |
'int64_t',
|
|
282 |
[],
|
|
283 |
is_const=True)
|
|
284 |
## high-precision-128.h: bool ns3::HighPrecision::Mul(ns3::HighPrecision const & o) [member function]
|
|
285 |
cls.add_method('Mul',
|
|
286 |
'bool',
|
|
287 |
[param('ns3::HighPrecision const &', 'o')])
|
|
288 |
## high-precision-128.h: static void ns3::HighPrecision::PrintStats() [member function]
|
|
289 |
cls.add_method('PrintStats',
|
|
290 |
'void',
|
|
291 |
[],
|
|
292 |
is_static=True)
|
|
293 |
## high-precision-128.h: bool ns3::HighPrecision::Sub(ns3::HighPrecision const & o) [member function]
|
|
294 |
cls.add_method('Sub',
|
|
295 |
'bool',
|
|
296 |
[param('ns3::HighPrecision const &', 'o')])
|
|
297 |
## high-precision-128.h: static ns3::HighPrecision ns3::HighPrecision::Zero() [member function]
|
|
298 |
cls.add_method('Zero',
|
|
299 |
'ns3::HighPrecision',
|
|
300 |
[],
|
|
301 |
is_static=True)
|
|
302 |
return
|
|
303 |
|
|
304 |
def register_Ns3Simulator_methods(root_module, cls):
|
|
305 |
## simulator.h: ns3::Simulator::Simulator(ns3::Simulator const & arg0) [copy constructor]
|
|
306 |
cls.add_constructor([param('ns3::Simulator const &', 'arg0')])
|
|
307 |
## simulator.h: static void ns3::Simulator::Cancel(ns3::EventId const & id) [member function]
|
|
308 |
cls.add_method('Cancel',
|
|
309 |
'void',
|
|
310 |
[param('ns3::EventId const &', 'id')],
|
|
311 |
is_static=True)
|
|
312 |
## simulator.h: static void ns3::Simulator::Destroy() [member function]
|
|
313 |
cls.add_method('Destroy',
|
|
314 |
'void',
|
|
315 |
[],
|
|
316 |
is_static=True)
|
|
317 |
## simulator.h: static ns3::Time ns3::Simulator::GetDelayLeft(ns3::EventId const & id) [member function]
|
|
318 |
cls.add_method('GetDelayLeft',
|
|
319 |
'ns3::Time',
|
|
320 |
[param('ns3::EventId const &', 'id')],
|
|
321 |
is_static=True)
|
|
322 |
## simulator.h: static ns3::Ptr<ns3::SimulatorImpl> ns3::Simulator::GetImplementation() [member function]
|
|
323 |
cls.add_method('GetImplementation',
|
|
324 |
'ns3::Ptr< ns3::SimulatorImpl >',
|
|
325 |
[],
|
|
326 |
is_static=True)
|
|
327 |
## simulator.h: static ns3::Time ns3::Simulator::GetMaximumSimulationTime() [member function]
|
|
328 |
cls.add_method('GetMaximumSimulationTime',
|
|
329 |
'ns3::Time',
|
|
330 |
[],
|
|
331 |
is_static=True)
|
|
332 |
## simulator.h: static bool ns3::Simulator::IsExpired(ns3::EventId const & id) [member function]
|
|
333 |
cls.add_method('IsExpired',
|
|
334 |
'bool',
|
|
335 |
[param('ns3::EventId const &', 'id')],
|
|
336 |
is_static=True)
|
|
337 |
## simulator.h: static bool ns3::Simulator::IsFinished() [member function]
|
|
338 |
cls.add_method('IsFinished',
|
|
339 |
'bool',
|
|
340 |
[],
|
|
341 |
is_static=True)
|
|
342 |
## simulator.h: static ns3::Time ns3::Simulator::Next() [member function]
|
|
343 |
cls.add_method('Next',
|
|
344 |
'ns3::Time',
|
|
345 |
[],
|
|
346 |
is_static=True)
|
|
347 |
## simulator.h: static ns3::Time ns3::Simulator::Now() [member function]
|
|
348 |
cls.add_method('Now',
|
|
349 |
'ns3::Time',
|
|
350 |
[],
|
|
351 |
is_static=True)
|
|
352 |
## simulator.h: static void ns3::Simulator::Remove(ns3::EventId const & id) [member function]
|
|
353 |
cls.add_method('Remove',
|
|
354 |
'void',
|
|
355 |
[param('ns3::EventId const &', 'id')],
|
|
356 |
is_static=True)
|
|
357 |
## simulator.h: static void ns3::Simulator::RunOneEvent() [member function]
|
|
358 |
cls.add_method('RunOneEvent',
|
|
359 |
'void',
|
|
360 |
[],
|
|
361 |
is_static=True)
|
|
362 |
## simulator.h: static void ns3::Simulator::SetImplementation(ns3::Ptr<ns3::SimulatorImpl> impl) [member function]
|
|
363 |
cls.add_method('SetImplementation',
|
|
364 |
'void',
|
|
365 |
[param('ns3::Ptr< ns3::SimulatorImpl >', 'impl')],
|
|
366 |
is_static=True)
|
|
367 |
## simulator.h: static void ns3::Simulator::SetScheduler(ns3::Ptr<ns3::Scheduler> scheduler) [member function]
|
|
368 |
cls.add_method('SetScheduler',
|
|
369 |
'void',
|
|
370 |
[param('ns3::Ptr< ns3::Scheduler >', 'scheduler')],
|
|
371 |
is_static=True)
|
|
372 |
## simulator.h: static void ns3::Simulator::Stop() [member function]
|
|
373 |
cls.add_method('Stop',
|
|
374 |
'void',
|
|
375 |
[],
|
|
376 |
is_static=True)
|
|
377 |
## simulator.h: static void ns3::Simulator::Stop(ns3::Time const & time) [member function]
|
|
378 |
cls.add_method('Stop',
|
|
379 |
'void',
|
|
380 |
[param('ns3::Time const &', 'time')],
|
|
381 |
is_static=True)
|
|
382 |
return
|
|
383 |
|
|
384 |
def register_Ns3TimeInvert_methods(root_module, cls):
|
|
385 |
## nstime.h: ns3::TimeUnit<-1>::TimeUnit() [constructor]
|
|
386 |
cls.add_constructor([])
|
|
387 |
## nstime.h: ns3::TimeUnit<-1>::TimeUnit(ns3::TimeUnit<-1> const & o) [copy constructor]
|
|
388 |
cls.add_constructor([param('ns3::TimeUnit< - 1 > const &', 'o')])
|
|
389 |
## nstime.h: ns3::TimeUnit<-1>::TimeUnit(ns3::HighPrecision data) [constructor]
|
|
390 |
cls.add_constructor([param('ns3::HighPrecision', 'data')])
|
|
391 |
## nstime.h: ns3::HighPrecision const & ns3::TimeUnit<-1>::GetHighPrecision() const [member function]
|
|
392 |
cls.add_method('GetHighPrecision',
|
|
393 |
'ns3::HighPrecision const &',
|
|
394 |
[],
|
|
395 |
is_const=True)
|
|
396 |
## nstime.h: bool ns3::TimeUnit<-1>::IsNegative() const [member function]
|
|
397 |
cls.add_method('IsNegative',
|
|
398 |
'bool',
|
|
399 |
[],
|
|
400 |
is_const=True)
|
|
401 |
## nstime.h: bool ns3::TimeUnit<-1>::IsPositive() const [member function]
|
|
402 |
cls.add_method('IsPositive',
|
|
403 |
'bool',
|
|
404 |
[],
|
|
405 |
is_const=True)
|
|
406 |
## nstime.h: bool ns3::TimeUnit<-1>::IsStrictlyNegative() const [member function]
|
|
407 |
cls.add_method('IsStrictlyNegative',
|
|
408 |
'bool',
|
|
409 |
[],
|
|
410 |
is_const=True)
|
|
411 |
## nstime.h: bool ns3::TimeUnit<-1>::IsStrictlyPositive() const [member function]
|
|
412 |
cls.add_method('IsStrictlyPositive',
|
|
413 |
'bool',
|
|
414 |
[],
|
|
415 |
is_const=True)
|
|
416 |
## nstime.h: bool ns3::TimeUnit<-1>::IsZero() const [member function]
|
|
417 |
cls.add_method('IsZero',
|
|
418 |
'bool',
|
|
419 |
[],
|
|
420 |
is_const=True)
|
|
421 |
## nstime.h: ns3::HighPrecision * ns3::TimeUnit<-1>::PeekHighPrecision() [member function]
|
|
422 |
cls.add_method('PeekHighPrecision',
|
|
423 |
'ns3::HighPrecision *',
|
|
424 |
[])
|
|
425 |
return
|
|
426 |
|
|
427 |
def register_Ns3Scalar_methods(root_module, cls):
|
|
428 |
cls.add_binary_numeric_operator('*', root_module['ns3::Time'], root_module['ns3::Scalar'], param('ns3::TimeUnit< 1 > const &', 'right'))
|
|
429 |
cls.add_binary_numeric_operator('/', root_module['ns3::TimeInvert'], root_module['ns3::Scalar'], param('ns3::TimeUnit< 1 > const &', 'right'))
|
|
430 |
## nstime.h: ns3::TimeUnit<0>::TimeUnit(double scalar) [constructor]
|
|
431 |
cls.add_constructor([param('double', 'scalar')])
|
|
432 |
## nstime.h: ns3::TimeUnit<0>::TimeUnit() [constructor]
|
|
433 |
cls.add_constructor([])
|
|
434 |
## nstime.h: ns3::TimeUnit<0>::TimeUnit(ns3::TimeUnit<0> const & o) [copy constructor]
|
|
435 |
cls.add_constructor([param('ns3::TimeUnit< 0 > const &', 'o')])
|
|
436 |
## nstime.h: ns3::TimeUnit<0>::TimeUnit(ns3::HighPrecision data) [constructor]
|
|
437 |
cls.add_constructor([param('ns3::HighPrecision', 'data')])
|
|
438 |
## nstime.h: double ns3::TimeUnit<0>::GetDouble() const [member function]
|
|
439 |
cls.add_method('GetDouble',
|
|
440 |
'double',
|
|
441 |
[],
|
|
442 |
is_const=True)
|
|
443 |
## nstime.h: ns3::HighPrecision const & ns3::TimeUnit<0>::GetHighPrecision() const [member function]
|
|
444 |
cls.add_method('GetHighPrecision',
|
|
445 |
'ns3::HighPrecision const &',
|
|
446 |
[],
|
|
447 |
is_const=True)
|
|
448 |
## nstime.h: bool ns3::TimeUnit<0>::IsNegative() const [member function]
|
|
449 |
cls.add_method('IsNegative',
|
|
450 |
'bool',
|
|
451 |
[],
|
|
452 |
is_const=True)
|
|
453 |
## nstime.h: bool ns3::TimeUnit<0>::IsPositive() const [member function]
|
|
454 |
cls.add_method('IsPositive',
|
|
455 |
'bool',
|
|
456 |
[],
|
|
457 |
is_const=True)
|
|
458 |
## nstime.h: bool ns3::TimeUnit<0>::IsStrictlyNegative() const [member function]
|
|
459 |
cls.add_method('IsStrictlyNegative',
|
|
460 |
'bool',
|
|
461 |
[],
|
|
462 |
is_const=True)
|
|
463 |
## nstime.h: bool ns3::TimeUnit<0>::IsStrictlyPositive() const [member function]
|
|
464 |
cls.add_method('IsStrictlyPositive',
|
|
465 |
'bool',
|
|
466 |
[],
|
|
467 |
is_const=True)
|
|
468 |
## nstime.h: bool ns3::TimeUnit<0>::IsZero() const [member function]
|
|
469 |
cls.add_method('IsZero',
|
|
470 |
'bool',
|
|
471 |
[],
|
|
472 |
is_const=True)
|
|
473 |
## nstime.h: ns3::HighPrecision * ns3::TimeUnit<0>::PeekHighPrecision() [member function]
|
|
474 |
cls.add_method('PeekHighPrecision',
|
|
475 |
'ns3::HighPrecision *',
|
|
476 |
[])
|
|
477 |
return
|
|
478 |
|
|
479 |
def register_Ns3Time_methods(root_module, cls):
|
|
480 |
cls.add_binary_comparison_operator('!=')
|
|
481 |
cls.add_binary_numeric_operator('*', root_module['ns3::TimeSquare'], root_module['ns3::Time'], param('ns3::TimeUnit< 1 > const &', 'right'))
|
|
482 |
cls.add_binary_numeric_operator('+', root_module['ns3::Time'], root_module['ns3::Time'], param('ns3::TimeUnit< 1 > const &', 'right'))
|
|
483 |
cls.add_binary_numeric_operator('-', root_module['ns3::Time'], root_module['ns3::Time'], param('ns3::TimeUnit< 1 > const &', 'right'))
|
|
484 |
cls.add_binary_numeric_operator('/', root_module['ns3::Time'], root_module['ns3::Time'], param('ns3::TimeUnit< 0 > const &', 'right'))
|
|
485 |
cls.add_binary_numeric_operator('/', root_module['ns3::Scalar'], root_module['ns3::Time'], param('ns3::TimeUnit< 1 > const &', 'right'))
|
|
486 |
cls.add_binary_comparison_operator('<')
|
|
487 |
cls.add_binary_comparison_operator('>')
|
|
488 |
cls.add_output_stream_operator()
|
|
489 |
cls.add_binary_comparison_operator('<=')
|
|
490 |
cls.add_binary_comparison_operator('==')
|
|
491 |
cls.add_binary_comparison_operator('>=')
|
|
492 |
## nstime.h: ns3::TimeUnit<1>::TimeUnit(std::string const & s) [constructor]
|
|
493 |
cls.add_constructor([param('std::string const &', 's')])
|
|
494 |
## nstime.h: ns3::TimeUnit<1>::TimeUnit() [constructor]
|
|
495 |
cls.add_constructor([])
|
|
496 |
## nstime.h: ns3::TimeUnit<1>::TimeUnit(ns3::TimeUnit<1> const & o) [copy constructor]
|
|
497 |
cls.add_constructor([param('ns3::TimeUnit< 1 > const &', 'o')])
|
|
498 |
## nstime.h: ns3::TimeUnit<1>::TimeUnit(ns3::HighPrecision data) [constructor]
|
|
499 |
cls.add_constructor([param('ns3::HighPrecision', 'data')])
|
|
500 |
## nstime.h: int64_t ns3::TimeUnit<1>::GetFemtoSeconds() const [member function]
|
|
501 |
cls.add_method('GetFemtoSeconds',
|
|
502 |
'int64_t',
|
|
503 |
[],
|
|
504 |
is_const=True)
|
|
505 |
## nstime.h: ns3::HighPrecision const & ns3::TimeUnit<1>::GetHighPrecision() const [member function]
|
|
506 |
cls.add_method('GetHighPrecision',
|
|
507 |
'ns3::HighPrecision const &',
|
|
508 |
[],
|
|
509 |
is_const=True)
|
|
510 |
## nstime.h: int64_t ns3::TimeUnit<1>::GetMicroSeconds() const [member function]
|
|
511 |
cls.add_method('GetMicroSeconds',
|
|
512 |
'int64_t',
|
|
513 |
[],
|
|
514 |
is_const=True)
|
|
515 |
## nstime.h: int64_t ns3::TimeUnit<1>::GetMilliSeconds() const [member function]
|
|
516 |
cls.add_method('GetMilliSeconds',
|
|
517 |
'int64_t',
|
|
518 |
[],
|
|
519 |
is_const=True)
|
|
520 |
## nstime.h: int64_t ns3::TimeUnit<1>::GetNanoSeconds() const [member function]
|
|
521 |
cls.add_method('GetNanoSeconds',
|
|
522 |
'int64_t',
|
|
523 |
[],
|
|
524 |
is_const=True)
|
|
525 |
## nstime.h: int64_t ns3::TimeUnit<1>::GetPicoSeconds() const [member function]
|
|
526 |
cls.add_method('GetPicoSeconds',
|
|
527 |
'int64_t',
|
|
528 |
[],
|
|
529 |
is_const=True)
|
|
530 |
## nstime.h: double ns3::TimeUnit<1>::GetSeconds() const [member function]
|
|
531 |
cls.add_method('GetSeconds',
|
|
532 |
'double',
|
|
533 |
[],
|
|
534 |
is_const=True)
|
|
535 |
## nstime.h: int64_t ns3::TimeUnit<1>::GetTimeStep() const [member function]
|
|
536 |
cls.add_method('GetTimeStep',
|
|
537 |
'int64_t',
|
|
538 |
[],
|
|
539 |
is_const=True)
|
|
540 |
## nstime.h: bool ns3::TimeUnit<1>::IsNegative() const [member function]
|
|
541 |
cls.add_method('IsNegative',
|
|
542 |
'bool',
|
|
543 |
[],
|
|
544 |
is_const=True)
|
|
545 |
## nstime.h: bool ns3::TimeUnit<1>::IsPositive() const [member function]
|
|
546 |
cls.add_method('IsPositive',
|
|
547 |
'bool',
|
|
548 |
[],
|
|
549 |
is_const=True)
|
|
550 |
## nstime.h: bool ns3::TimeUnit<1>::IsStrictlyNegative() const [member function]
|
|
551 |
cls.add_method('IsStrictlyNegative',
|
|
552 |
'bool',
|
|
553 |
[],
|
|
554 |
is_const=True)
|
|
555 |
## nstime.h: bool ns3::TimeUnit<1>::IsStrictlyPositive() const [member function]
|
|
556 |
cls.add_method('IsStrictlyPositive',
|
|
557 |
'bool',
|
|
558 |
[],
|
|
559 |
is_const=True)
|
|
560 |
## nstime.h: bool ns3::TimeUnit<1>::IsZero() const [member function]
|
|
561 |
cls.add_method('IsZero',
|
|
562 |
'bool',
|
|
563 |
[],
|
|
564 |
is_const=True)
|
|
565 |
## nstime.h: ns3::HighPrecision * ns3::TimeUnit<1>::PeekHighPrecision() [member function]
|
|
566 |
cls.add_method('PeekHighPrecision',
|
|
567 |
'ns3::HighPrecision *',
|
|
568 |
[])
|
|
569 |
## nstime.h: static uint64_t ns3::TimeUnit<1>::UnitsToTimestep(uint64_t unitValue, uint64_t unitFactor) [member function]
|
|
570 |
cls.add_method('UnitsToTimestep',
|
|
571 |
'uint64_t',
|
|
572 |
[param('uint64_t', 'unitValue'), param('uint64_t', 'unitFactor')],
|
|
573 |
is_static=True)
|
|
574 |
return
|
|
575 |
|
|
576 |
def register_Ns3TimeSquare_methods(root_module, cls):
|
|
577 |
cls.add_binary_numeric_operator('/', root_module['ns3::Time'], root_module['ns3::TimeSquare'], param('ns3::TimeUnit< 1 > const &', 'right'))
|
|
578 |
## nstime.h: ns3::TimeUnit<2>::TimeUnit() [constructor]
|
|
579 |
cls.add_constructor([])
|
|
580 |
## nstime.h: ns3::TimeUnit<2>::TimeUnit(ns3::TimeUnit<2> const & o) [copy constructor]
|
|
581 |
cls.add_constructor([param('ns3::TimeUnit< 2 > const &', 'o')])
|
|
582 |
## nstime.h: ns3::TimeUnit<2>::TimeUnit(ns3::HighPrecision data) [constructor]
|
|
583 |
cls.add_constructor([param('ns3::HighPrecision', 'data')])
|
|
584 |
## nstime.h: ns3::HighPrecision const & ns3::TimeUnit<2>::GetHighPrecision() const [member function]
|
|
585 |
cls.add_method('GetHighPrecision',
|
|
586 |
'ns3::HighPrecision const &',
|
|
587 |
[],
|
|
588 |
is_const=True)
|
|
589 |
## nstime.h: bool ns3::TimeUnit<2>::IsNegative() const [member function]
|
|
590 |
cls.add_method('IsNegative',
|
|
591 |
'bool',
|
|
592 |
[],
|
|
593 |
is_const=True)
|
|
594 |
## nstime.h: bool ns3::TimeUnit<2>::IsPositive() const [member function]
|
|
595 |
cls.add_method('IsPositive',
|
|
596 |
'bool',
|
|
597 |
[],
|
|
598 |
is_const=True)
|
|
599 |
## nstime.h: bool ns3::TimeUnit<2>::IsStrictlyNegative() const [member function]
|
|
600 |
cls.add_method('IsStrictlyNegative',
|
|
601 |
'bool',
|
|
602 |
[],
|
|
603 |
is_const=True)
|
|
604 |
## nstime.h: bool ns3::TimeUnit<2>::IsStrictlyPositive() const [member function]
|
|
605 |
cls.add_method('IsStrictlyPositive',
|
|
606 |
'bool',
|
|
607 |
[],
|
|
608 |
is_const=True)
|
|
609 |
## nstime.h: bool ns3::TimeUnit<2>::IsZero() const [member function]
|
|
610 |
cls.add_method('IsZero',
|
|
611 |
'bool',
|
|
612 |
[],
|
|
613 |
is_const=True)
|
|
614 |
## nstime.h: ns3::HighPrecision * ns3::TimeUnit<2>::PeekHighPrecision() [member function]
|
|
615 |
cls.add_method('PeekHighPrecision',
|
|
616 |
'ns3::HighPrecision *',
|
|
617 |
[])
|
|
618 |
return
|
|
619 |
|
|
620 |
def register_Ns3Timer_methods(root_module, cls):
|
|
621 |
## timer.h: ns3::Timer::Timer(ns3::Timer const & arg0) [copy constructor]
|
|
622 |
cls.add_constructor([param('ns3::Timer const &', 'arg0')])
|
|
623 |
## timer.h: ns3::Timer::Timer() [constructor]
|
|
624 |
cls.add_constructor([])
|
|
625 |
## timer.h: ns3::Timer::Timer(ns3::Timer::DestroyPolicy destroyPolicy) [constructor]
|
|
626 |
cls.add_constructor([param('ns3::Timer::DestroyPolicy', 'destroyPolicy')])
|
|
627 |
## timer.h: void ns3::Timer::Cancel() [member function]
|
|
628 |
cls.add_method('Cancel',
|
|
629 |
'void',
|
|
630 |
[])
|
|
631 |
## timer.h: ns3::Time ns3::Timer::GetDelay() const [member function]
|
|
632 |
cls.add_method('GetDelay',
|
|
633 |
'ns3::Time',
|
|
634 |
[],
|
|
635 |
is_const=True)
|
|
636 |
## timer.h: ns3::Time ns3::Timer::GetDelayLeft() const [member function]
|
|
637 |
cls.add_method('GetDelayLeft',
|
|
638 |
'ns3::Time',
|
|
639 |
[],
|
|
640 |
is_const=True)
|
|
641 |
## timer.h: ns3::Timer::State ns3::Timer::GetState() const [member function]
|
|
642 |
cls.add_method('GetState',
|
|
643 |
'ns3::Timer::State',
|
|
644 |
[],
|
|
645 |
is_const=True)
|
|
646 |
## timer.h: bool ns3::Timer::IsExpired() const [member function]
|
|
647 |
cls.add_method('IsExpired',
|
|
648 |
'bool',
|
|
649 |
[],
|
|
650 |
is_const=True)
|
|
651 |
## timer.h: bool ns3::Timer::IsRunning() const [member function]
|
|
652 |
cls.add_method('IsRunning',
|
|
653 |
'bool',
|
|
654 |
[],
|
|
655 |
is_const=True)
|
|
656 |
## timer.h: bool ns3::Timer::IsSuspended() const [member function]
|
|
657 |
cls.add_method('IsSuspended',
|
|
658 |
'bool',
|
|
659 |
[],
|
|
660 |
is_const=True)
|
|
661 |
## timer.h: void ns3::Timer::Remove() [member function]
|
|
662 |
cls.add_method('Remove',
|
|
663 |
'void',
|
|
664 |
[])
|
|
665 |
## timer.h: void ns3::Timer::Resume() [member function]
|
|
666 |
cls.add_method('Resume',
|
|
667 |
'void',
|
|
668 |
[])
|
|
669 |
## timer.h: void ns3::Timer::Schedule() [member function]
|
|
670 |
cls.add_method('Schedule',
|
|
671 |
'void',
|
|
672 |
[])
|
|
673 |
## timer.h: void ns3::Timer::Schedule(ns3::Time delay) [member function]
|
|
674 |
cls.add_method('Schedule',
|
|
675 |
'void',
|
|
676 |
[param('ns3::Time', 'delay')])
|
|
677 |
## timer.h: void ns3::Timer::SetDelay(ns3::Time const & delay) [member function]
|
|
678 |
cls.add_method('SetDelay',
|
|
679 |
'void',
|
|
680 |
[param('ns3::Time const &', 'delay')])
|
|
681 |
## timer.h: void ns3::Timer::Suspend() [member function]
|
|
682 |
cls.add_method('Suspend',
|
|
683 |
'void',
|
|
684 |
[])
|
|
685 |
return
|
|
686 |
|
|
687 |
def register_Ns3TimerImpl_methods(root_module, cls):
|
|
688 |
## timer-impl.h: ns3::TimerImpl::TimerImpl() [constructor]
|
|
689 |
cls.add_constructor([])
|
|
690 |
## timer-impl.h: ns3::TimerImpl::TimerImpl(ns3::TimerImpl const & arg0) [copy constructor]
|
|
691 |
cls.add_constructor([param('ns3::TimerImpl const &', 'arg0')])
|
|
692 |
## timer-impl.h: void ns3::TimerImpl::Invoke() [member function]
|
|
693 |
cls.add_method('Invoke',
|
|
694 |
'void',
|
|
695 |
[],
|
|
696 |
is_pure_virtual=True, is_virtual=True)
|
|
697 |
## timer-impl.h: ns3::EventId ns3::TimerImpl::Schedule(ns3::Time const & delay) [member function]
|
|
698 |
cls.add_method('Schedule',
|
|
699 |
'ns3::EventId',
|
|
700 |
[param('ns3::Time const &', 'delay')],
|
|
701 |
is_pure_virtual=True, is_virtual=True)
|
|
702 |
return
|
|
703 |
|
|
704 |
def register_Ns3Watchdog_methods(root_module, cls):
|
|
705 |
## watchdog.h: ns3::Watchdog::Watchdog(ns3::Watchdog const & arg0) [copy constructor]
|
|
706 |
cls.add_constructor([param('ns3::Watchdog const &', 'arg0')])
|
|
707 |
## watchdog.h: ns3::Watchdog::Watchdog() [constructor]
|
|
708 |
cls.add_constructor([])
|
|
709 |
## watchdog.h: void ns3::Watchdog::Ping(ns3::Time delay) [member function]
|
|
710 |
cls.add_method('Ping',
|
|
711 |
'void',
|
|
712 |
[param('ns3::Time', 'delay')])
|
|
713 |
return
|
|
714 |
|
|
715 |
def register_Ns3Scheduler_methods(root_module, cls):
|
|
716 |
## scheduler.h: ns3::Scheduler::Scheduler() [constructor]
|
|
717 |
cls.add_constructor([])
|
|
718 |
## scheduler.h: ns3::Scheduler::Scheduler(ns3::Scheduler const & arg0) [copy constructor]
|
|
719 |
cls.add_constructor([param('ns3::Scheduler const &', 'arg0')])
|
|
720 |
## scheduler.h: static ns3::TypeId ns3::Scheduler::GetTypeId() [member function]
|
|
721 |
cls.add_method('GetTypeId',
|
|
722 |
'ns3::TypeId',
|
|
723 |
[],
|
|
724 |
is_static=True)
|
|
725 |
## scheduler.h: void ns3::Scheduler::Insert(ns3::Scheduler::Event const & ev) [member function]
|
|
726 |
cls.add_method('Insert',
|
|
727 |
'void',
|
|
728 |
[param('ns3::Scheduler::Event const &', 'ev')],
|
|
729 |
is_pure_virtual=True, is_virtual=True)
|
|
730 |
## scheduler.h: bool ns3::Scheduler::IsEmpty() const [member function]
|
|
731 |
cls.add_method('IsEmpty',
|
|
732 |
'bool',
|
|
733 |
[],
|
|
734 |
is_pure_virtual=True, is_const=True, is_virtual=True)
|
|
735 |
## scheduler.h: ns3::Scheduler::Event ns3::Scheduler::PeekNext() const [member function]
|
|
736 |
cls.add_method('PeekNext',
|
|
737 |
'ns3::Scheduler::Event',
|
|
738 |
[],
|
|
739 |
is_pure_virtual=True, is_const=True, is_virtual=True)
|
|
740 |
## scheduler.h: void ns3::Scheduler::Remove(ns3::Scheduler::Event const & ev) [member function]
|
|
741 |
cls.add_method('Remove',
|
|
742 |
'void',
|
|
743 |
[param('ns3::Scheduler::Event const &', 'ev')],
|
|
744 |
is_pure_virtual=True, is_virtual=True)
|
|
745 |
## scheduler.h: ns3::Scheduler::Event ns3::Scheduler::RemoveNext() [member function]
|
|
746 |
cls.add_method('RemoveNext',
|
|
747 |
'ns3::Scheduler::Event',
|
|
748 |
[],
|
|
749 |
is_pure_virtual=True, is_virtual=True)
|
|
750 |
return
|
|
751 |
|
|
752 |
def register_Ns3SchedulerEvent_methods(root_module, cls):
|
|
753 |
cls.add_binary_comparison_operator('<')
|
|
754 |
## scheduler.h: ns3::Scheduler::Event::Event() [constructor]
|
|
755 |
cls.add_constructor([])
|
|
756 |
## scheduler.h: ns3::Scheduler::Event::Event(ns3::Scheduler::Event const & arg0) [copy constructor]
|
|
757 |
cls.add_constructor([param('ns3::Scheduler::Event const &', 'arg0')])
|
|
758 |
## scheduler.h: ns3::Scheduler::Event::impl [variable]
|
|
759 |
cls.add_instance_attribute('impl', 'ns3::EventImpl *', is_const=False)
|
|
760 |
## scheduler.h: ns3::Scheduler::Event::key [variable]
|
|
761 |
cls.add_instance_attribute('key', 'ns3::Scheduler::EventKey', is_const=False)
|
|
762 |
return
|
|
763 |
|
|
764 |
def register_Ns3SchedulerEventKey_methods(root_module, cls):
|
|
765 |
cls.add_binary_comparison_operator('!=')
|
|
766 |
cls.add_binary_comparison_operator('<')
|
|
767 |
cls.add_binary_comparison_operator('>')
|
|
768 |
## scheduler.h: ns3::Scheduler::EventKey::EventKey() [constructor]
|
|
769 |
cls.add_constructor([])
|
|
770 |
## scheduler.h: ns3::Scheduler::EventKey::EventKey(ns3::Scheduler::EventKey const & arg0) [copy constructor]
|
|
771 |
cls.add_constructor([param('ns3::Scheduler::EventKey const &', 'arg0')])
|
|
772 |
## scheduler.h: ns3::Scheduler::EventKey::m_ts [variable]
|
|
773 |
cls.add_instance_attribute('m_ts', 'uint64_t', is_const=False)
|
|
774 |
## scheduler.h: ns3::Scheduler::EventKey::m_uid [variable]
|
|
775 |
cls.add_instance_attribute('m_uid', 'uint32_t', is_const=False)
|
|
776 |
return
|
|
777 |
|
|
778 |
def register_Ns3SimulatorImpl_methods(root_module, cls):
|
|
779 |
## simulator-impl.h: ns3::SimulatorImpl::SimulatorImpl() [constructor]
|
|
780 |
cls.add_constructor([])
|
|
781 |
## simulator-impl.h: ns3::SimulatorImpl::SimulatorImpl(ns3::SimulatorImpl const & arg0) [copy constructor]
|
|
782 |
cls.add_constructor([param('ns3::SimulatorImpl const &', 'arg0')])
|
|
783 |
## simulator-impl.h: void ns3::SimulatorImpl::Cancel(ns3::EventId const & ev) [member function]
|
|
784 |
cls.add_method('Cancel',
|
|
785 |
'void',
|
|
786 |
[param('ns3::EventId const &', 'ev')],
|
|
787 |
is_pure_virtual=True, is_virtual=True)
|
|
788 |
## simulator-impl.h: void ns3::SimulatorImpl::Destroy() [member function]
|
|
789 |
cls.add_method('Destroy',
|
|
790 |
'void',
|
|
791 |
[],
|
|
792 |
is_pure_virtual=True, is_virtual=True)
|
|
793 |
## simulator-impl.h: ns3::Time ns3::SimulatorImpl::GetDelayLeft(ns3::EventId const & id) const [member function]
|
|
794 |
cls.add_method('GetDelayLeft',
|
|
795 |
'ns3::Time',
|
|
796 |
[param('ns3::EventId const &', 'id')],
|
|
797 |
is_pure_virtual=True, is_const=True, is_virtual=True)
|
|
798 |
## simulator-impl.h: ns3::Time ns3::SimulatorImpl::GetMaximumSimulationTime() const [member function]
|
|
799 |
cls.add_method('GetMaximumSimulationTime',
|
|
800 |
'ns3::Time',
|
|
801 |
[],
|
|
802 |
is_pure_virtual=True, is_const=True, is_virtual=True)
|
|
803 |
## simulator-impl.h: bool ns3::SimulatorImpl::IsExpired(ns3::EventId const & ev) const [member function]
|
|
804 |
cls.add_method('IsExpired',
|
|
805 |
'bool',
|
|
806 |
[param('ns3::EventId const &', 'ev')],
|
|
807 |
is_pure_virtual=True, is_const=True, is_virtual=True)
|
|
808 |
## simulator-impl.h: bool ns3::SimulatorImpl::IsFinished() const [member function]
|
|
809 |
cls.add_method('IsFinished',
|
|
810 |
'bool',
|
|
811 |
[],
|
|
812 |
is_pure_virtual=True, is_const=True, is_virtual=True)
|
|
813 |
## simulator-impl.h: ns3::Time ns3::SimulatorImpl::Next() const [member function]
|
|
814 |
cls.add_method('Next',
|
|
815 |
'ns3::Time',
|
|
816 |
[],
|
|
817 |
is_pure_virtual=True, is_const=True, is_virtual=True)
|
|
818 |
## simulator-impl.h: ns3::Time ns3::SimulatorImpl::Now() const [member function]
|
|
819 |
cls.add_method('Now',
|
|
820 |
'ns3::Time',
|
|
821 |
[],
|
|
822 |
is_pure_virtual=True, is_const=True, is_virtual=True)
|
|
823 |
## simulator-impl.h: void ns3::SimulatorImpl::Remove(ns3::EventId const & ev) [member function]
|
|
824 |
cls.add_method('Remove',
|
|
825 |
'void',
|
|
826 |
[param('ns3::EventId const &', 'ev')],
|
|
827 |
is_pure_virtual=True, is_virtual=True)
|
|
828 |
## simulator-impl.h: void ns3::SimulatorImpl::Run() [member function]
|
|
829 |
cls.add_method('Run',
|
|
830 |
'void',
|
|
831 |
[],
|
|
832 |
is_pure_virtual=True, is_virtual=True)
|
|
833 |
## simulator-impl.h: void ns3::SimulatorImpl::RunOneEvent() [member function]
|
|
834 |
cls.add_method('RunOneEvent',
|
|
835 |
'void',
|
|
836 |
[],
|
|
837 |
is_pure_virtual=True, is_virtual=True)
|
|
838 |
## simulator-impl.h: ns3::EventId ns3::SimulatorImpl::Schedule(ns3::Time const & time, ns3::EventImpl * event) [member function]
|
|
839 |
cls.add_method('Schedule',
|
|
840 |
'ns3::EventId',
|
|
841 |
[param('ns3::Time const &', 'time'), param('ns3::EventImpl *', 'event')],
|
|
842 |
is_pure_virtual=True, is_virtual=True)
|
|
843 |
## simulator-impl.h: ns3::EventId ns3::SimulatorImpl::ScheduleDestroy(ns3::EventImpl * event) [member function]
|
|
844 |
cls.add_method('ScheduleDestroy',
|
|
845 |
'ns3::EventId',
|
|
846 |
[param('ns3::EventImpl *', 'event')],
|
|
847 |
is_pure_virtual=True, is_virtual=True)
|
|
848 |
## simulator-impl.h: ns3::EventId ns3::SimulatorImpl::ScheduleNow(ns3::EventImpl * event) [member function]
|
|
849 |
cls.add_method('ScheduleNow',
|
|
850 |
'ns3::EventId',
|
|
851 |
[param('ns3::EventImpl *', 'event')],
|
|
852 |
is_pure_virtual=True, is_virtual=True)
|
|
853 |
## simulator-impl.h: void ns3::SimulatorImpl::SetScheduler(ns3::Ptr<ns3::Scheduler> scheduler) [member function]
|
|
854 |
cls.add_method('SetScheduler',
|
|
855 |
'void',
|
|
856 |
[param('ns3::Ptr< ns3::Scheduler >', 'scheduler')],
|
|
857 |
is_pure_virtual=True, is_virtual=True)
|
|
858 |
## simulator-impl.h: void ns3::SimulatorImpl::Stop() [member function]
|
|
859 |
cls.add_method('Stop',
|
|
860 |
'void',
|
|
861 |
[],
|
|
862 |
is_pure_virtual=True, is_virtual=True)
|
|
863 |
return
|
|
864 |
|
|
865 |
def register_Ns3Synchronizer_methods(root_module, cls):
|
|
866 |
## synchronizer.h: ns3::Synchronizer::Synchronizer(ns3::Synchronizer const & arg0) [copy constructor]
|
|
867 |
cls.add_constructor([param('ns3::Synchronizer const &', 'arg0')])
|
|
868 |
## synchronizer.h: ns3::Synchronizer::Synchronizer() [constructor]
|
|
869 |
cls.add_constructor([])
|
|
870 |
## synchronizer.h: uint64_t ns3::Synchronizer::EventEnd() [member function]
|
|
871 |
cls.add_method('EventEnd',
|
|
872 |
'uint64_t',
|
|
873 |
[])
|
|
874 |
## synchronizer.h: void ns3::Synchronizer::EventStart() [member function]
|
|
875 |
cls.add_method('EventStart',
|
|
876 |
'void',
|
|
877 |
[])
|
|
878 |
## synchronizer.h: uint64_t ns3::Synchronizer::GetCurrentRealtime() [member function]
|
|
879 |
cls.add_method('GetCurrentRealtime',
|
|
880 |
'uint64_t',
|
|
881 |
[])
|
|
882 |
## synchronizer.h: int64_t ns3::Synchronizer::GetDrift(uint64_t ts) [member function]
|
|
883 |
cls.add_method('GetDrift',
|
|
884 |
'int64_t',
|
|
885 |
[param('uint64_t', 'ts')])
|
|
886 |
## synchronizer.h: uint64_t ns3::Synchronizer::GetOrigin() [member function]
|
|
887 |
cls.add_method('GetOrigin',
|
|
888 |
'uint64_t',
|
|
889 |
[])
|
|
890 |
## synchronizer.h: static ns3::TypeId ns3::Synchronizer::GetTypeId() [member function]
|
|
891 |
cls.add_method('GetTypeId',
|
|
892 |
'ns3::TypeId',
|
|
893 |
[],
|
|
894 |
is_static=True)
|
|
895 |
## synchronizer.h: bool ns3::Synchronizer::Realtime() [member function]
|
|
896 |
cls.add_method('Realtime',
|
|
897 |
'bool',
|
|
898 |
[])
|
|
899 |
## synchronizer.h: void ns3::Synchronizer::SetCondition(bool arg0) [member function]
|
|
900 |
cls.add_method('SetCondition',
|
|
901 |
'void',
|
|
902 |
[param('bool', 'arg0')])
|
|
903 |
## synchronizer.h: void ns3::Synchronizer::SetOrigin(uint64_t ts) [member function]
|
|
904 |
cls.add_method('SetOrigin',
|
|
905 |
'void',
|
|
906 |
[param('uint64_t', 'ts')])
|
|
907 |
## synchronizer.h: void ns3::Synchronizer::Signal() [member function]
|
|
908 |
cls.add_method('Signal',
|
|
909 |
'void',
|
|
910 |
[])
|
|
911 |
## synchronizer.h: bool ns3::Synchronizer::Synchronize(uint64_t tsCurrent, uint64_t tsDelay) [member function]
|
|
912 |
cls.add_method('Synchronize',
|
|
913 |
'bool',
|
|
914 |
[param('uint64_t', 'tsCurrent'), param('uint64_t', 'tsDelay')])
|
|
915 |
## synchronizer.h: uint64_t ns3::Synchronizer::DoEventEnd() [member function]
|
|
916 |
cls.add_method('DoEventEnd',
|
|
917 |
'uint64_t',
|
|
918 |
[],
|
|
919 |
is_pure_virtual=True, visibility='protected', is_virtual=True)
|
|
920 |
## synchronizer.h: void ns3::Synchronizer::DoEventStart() [member function]
|
|
921 |
cls.add_method('DoEventStart',
|
|
922 |
'void',
|
|
923 |
[],
|
|
924 |
is_pure_virtual=True, visibility='protected', is_virtual=True)
|
|
925 |
## synchronizer.h: uint64_t ns3::Synchronizer::DoGetCurrentRealtime() [member function]
|
|
926 |
cls.add_method('DoGetCurrentRealtime',
|
|
927 |
'uint64_t',
|
|
928 |
[],
|
|
929 |
is_pure_virtual=True, visibility='protected', is_virtual=True)
|
|
930 |
## synchronizer.h: int64_t ns3::Synchronizer::DoGetDrift(uint64_t ns) [member function]
|
|
931 |
cls.add_method('DoGetDrift',
|
|
932 |
'int64_t',
|
|
933 |
[param('uint64_t', 'ns')],
|
|
934 |
is_pure_virtual=True, visibility='protected', is_virtual=True)
|
|
935 |
## synchronizer.h: bool ns3::Synchronizer::DoRealtime() [member function]
|
|
936 |
cls.add_method('DoRealtime',
|
|
937 |
'bool',
|
|
938 |
[],
|
|
939 |
is_pure_virtual=True, visibility='protected', is_virtual=True)
|
|
940 |
## synchronizer.h: void ns3::Synchronizer::DoSetCondition(bool arg0) [member function]
|
|
941 |
cls.add_method('DoSetCondition',
|
|
942 |
'void',
|
|
943 |
[param('bool', 'arg0')],
|
|
944 |
is_pure_virtual=True, visibility='protected', is_virtual=True)
|
|
945 |
## synchronizer.h: void ns3::Synchronizer::DoSetOrigin(uint64_t ns) [member function]
|
|
946 |
cls.add_method('DoSetOrigin',
|
|
947 |
'void',
|
|
948 |
[param('uint64_t', 'ns')],
|
|
949 |
is_pure_virtual=True, visibility='protected', is_virtual=True)
|
|
950 |
## synchronizer.h: void ns3::Synchronizer::DoSignal() [member function]
|
|
951 |
cls.add_method('DoSignal',
|
|
952 |
'void',
|
|
953 |
[],
|
|
954 |
is_pure_virtual=True, visibility='protected', is_virtual=True)
|
|
955 |
## synchronizer.h: bool ns3::Synchronizer::DoSynchronize(uint64_t nsCurrent, uint64_t nsDelay) [member function]
|
|
956 |
cls.add_method('DoSynchronize',
|
|
957 |
'bool',
|
|
958 |
[param('uint64_t', 'nsCurrent'), param('uint64_t', 'nsDelay')],
|
|
959 |
is_pure_virtual=True, visibility='protected', is_virtual=True)
|
|
960 |
return
|
|
961 |
|
|
962 |
def register_Ns3TimeChecker_methods(root_module, cls):
|
|
963 |
## nstime.h: ns3::TimeChecker::TimeChecker() [constructor]
|
|
964 |
cls.add_constructor([])
|
|
965 |
## nstime.h: ns3::TimeChecker::TimeChecker(ns3::TimeChecker const & arg0) [copy constructor]
|
|
966 |
cls.add_constructor([param('ns3::TimeChecker const &', 'arg0')])
|
|
967 |
return
|
|
968 |
|
|
969 |
def register_Ns3TimeValue_methods(root_module, cls):
|
|
970 |
## nstime.h: ns3::TimeValue::TimeValue() [constructor]
|
|
971 |
cls.add_constructor([])
|
|
972 |
## nstime.h: ns3::TimeValue::TimeValue(ns3::TimeValue const & arg0) [copy constructor]
|
|
973 |
cls.add_constructor([param('ns3::TimeValue const &', 'arg0')])
|
|
974 |
## nstime.h: ns3::TimeValue::TimeValue(ns3::Time const & value) [constructor]
|
|
975 |
cls.add_constructor([param('ns3::Time const &', 'value')])
|
|
976 |
## nstime.h: ns3::Ptr<ns3::AttributeValue> ns3::TimeValue::Copy() const [member function]
|
|
977 |
cls.add_method('Copy',
|
|
978 |
'ns3::Ptr< ns3::AttributeValue >',
|
|
979 |
[],
|
|
980 |
is_const=True, is_virtual=True)
|
|
981 |
## nstime.h: bool ns3::TimeValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
|
|
982 |
cls.add_method('DeserializeFromString',
|
|
983 |
'bool',
|
|
984 |
[param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
|
|
985 |
is_virtual=True)
|
|
986 |
## nstime.h: ns3::Time ns3::TimeValue::Get() const [member function]
|
|
987 |
cls.add_method('Get',
|
|
988 |
'ns3::Time',
|
|
989 |
[],
|
|
990 |
is_const=True)
|
|
991 |
## nstime.h: std::string ns3::TimeValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
|
|
992 |
cls.add_method('SerializeToString',
|
|
993 |
'std::string',
|
|
994 |
[param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
|
|
995 |
is_const=True, is_virtual=True)
|
|
996 |
## nstime.h: void ns3::TimeValue::Set(ns3::Time const & value) [member function]
|
|
997 |
cls.add_method('Set',
|
|
998 |
'void',
|
|
999 |
[param('ns3::Time const &', 'value')])
|
|
1000 |
return
|
|
1001 |
|
|
1002 |
def register_Ns3WallClockSynchronizer_methods(root_module, cls):
|
|
1003 |
## wall-clock-synchronizer.h: ns3::WallClockSynchronizer::WallClockSynchronizer(ns3::WallClockSynchronizer const & arg0) [copy constructor]
|
|
1004 |
cls.add_constructor([param('ns3::WallClockSynchronizer const &', 'arg0')])
|
|
1005 |
## wall-clock-synchronizer.h: ns3::WallClockSynchronizer::WallClockSynchronizer() [constructor]
|
|
1006 |
cls.add_constructor([])
|
|
1007 |
## wall-clock-synchronizer.h: ns3::WallClockSynchronizer::NS_PER_SEC [variable]
|
|
1008 |
cls.add_static_attribute('NS_PER_SEC', 'uint64_t const', is_const=True)
|
|
1009 |
## wall-clock-synchronizer.h: ns3::WallClockSynchronizer::US_PER_NS [variable]
|
|
1010 |
cls.add_static_attribute('US_PER_NS', 'uint64_t const', is_const=True)
|
|
1011 |
## wall-clock-synchronizer.h: ns3::WallClockSynchronizer::US_PER_SEC [variable]
|
|
1012 |
cls.add_static_attribute('US_PER_SEC', 'uint64_t const', is_const=True)
|
|
1013 |
## wall-clock-synchronizer.h: uint64_t ns3::WallClockSynchronizer::DoEventEnd() [member function]
|
|
1014 |
cls.add_method('DoEventEnd',
|
|
1015 |
'uint64_t',
|
|
1016 |
[],
|
|
1017 |
visibility='protected', is_virtual=True)
|
|
1018 |
## wall-clock-synchronizer.h: void ns3::WallClockSynchronizer::DoEventStart() [member function]
|
|
1019 |
cls.add_method('DoEventStart',
|
|
1020 |
'void',
|
|
1021 |
[],
|
|
1022 |
visibility='protected', is_virtual=True)
|
|
1023 |
## wall-clock-synchronizer.h: uint64_t ns3::WallClockSynchronizer::DoGetCurrentRealtime() [member function]
|
|
1024 |
cls.add_method('DoGetCurrentRealtime',
|
|
1025 |
'uint64_t',
|
|
1026 |
[],
|
|
1027 |
visibility='protected', is_virtual=True)
|
|
1028 |
## wall-clock-synchronizer.h: int64_t ns3::WallClockSynchronizer::DoGetDrift(uint64_t ns) [member function]
|
|
1029 |
cls.add_method('DoGetDrift',
|
|
1030 |
'int64_t',
|
|
1031 |
[param('uint64_t', 'ns')],
|
|
1032 |
visibility='protected', is_virtual=True)
|
|
1033 |
## wall-clock-synchronizer.h: bool ns3::WallClockSynchronizer::DoRealtime() [member function]
|
|
1034 |
cls.add_method('DoRealtime',
|
|
1035 |
'bool',
|
|
1036 |
[],
|
|
1037 |
visibility='protected', is_virtual=True)
|
|
1038 |
## wall-clock-synchronizer.h: void ns3::WallClockSynchronizer::DoSetCondition(bool cond) [member function]
|
|
1039 |
cls.add_method('DoSetCondition',
|
|
1040 |
'void',
|
|
1041 |
[param('bool', 'cond')],
|
|
1042 |
visibility='protected', is_virtual=True)
|
|
1043 |
## wall-clock-synchronizer.h: void ns3::WallClockSynchronizer::DoSetOrigin(uint64_t ns) [member function]
|
|
1044 |
cls.add_method('DoSetOrigin',
|
|
1045 |
'void',
|
|
1046 |
[param('uint64_t', 'ns')],
|
|
1047 |
visibility='protected', is_virtual=True)
|
|
1048 |
## wall-clock-synchronizer.h: void ns3::WallClockSynchronizer::DoSignal() [member function]
|
|
1049 |
cls.add_method('DoSignal',
|
|
1050 |
'void',
|
|
1051 |
[],
|
|
1052 |
visibility='protected', is_virtual=True)
|
|
1053 |
## wall-clock-synchronizer.h: bool ns3::WallClockSynchronizer::DoSynchronize(uint64_t nsCurrent, uint64_t nsDelay) [member function]
|
|
1054 |
cls.add_method('DoSynchronize',
|
|
1055 |
'bool',
|
|
1056 |
[param('uint64_t', 'nsCurrent'), param('uint64_t', 'nsDelay')],
|
|
1057 |
visibility='protected', is_virtual=True)
|
|
1058 |
## wall-clock-synchronizer.h: uint64_t ns3::WallClockSynchronizer::DriftCorrect(uint64_t nsNow, uint64_t nsDelay) [member function]
|
|
1059 |
cls.add_method('DriftCorrect',
|
|
1060 |
'uint64_t',
|
|
1061 |
[param('uint64_t', 'nsNow'), param('uint64_t', 'nsDelay')],
|
|
1062 |
visibility='protected')
|
|
1063 |
## wall-clock-synchronizer.h: uint64_t ns3::WallClockSynchronizer::GetNormalizedRealtime() [member function]
|
|
1064 |
cls.add_method('GetNormalizedRealtime',
|
|
1065 |
'uint64_t',
|
|
1066 |
[],
|
|
1067 |
visibility='protected')
|
|
1068 |
## wall-clock-synchronizer.h: uint64_t ns3::WallClockSynchronizer::GetRealtime() [member function]
|
|
1069 |
cls.add_method('GetRealtime',
|
|
1070 |
'uint64_t',
|
|
1071 |
[],
|
|
1072 |
visibility='protected')
|
|
1073 |
## wall-clock-synchronizer.h: void ns3::WallClockSynchronizer::NsToTimeval(int64_t ns, timeval * tv) [member function]
|
|
1074 |
cls.add_method('NsToTimeval',
|
|
1075 |
'void',
|
|
1076 |
[param('int64_t', 'ns'), param('timeval *', 'tv')],
|
|
1077 |
visibility='protected')
|
|
1078 |
## wall-clock-synchronizer.h: bool ns3::WallClockSynchronizer::SleepWait(uint64_t arg0) [member function]
|
|
1079 |
cls.add_method('SleepWait',
|
|
1080 |
'bool',
|
|
1081 |
[param('uint64_t', 'arg0')],
|
|
1082 |
visibility='protected')
|
|
1083 |
## wall-clock-synchronizer.h: bool ns3::WallClockSynchronizer::SpinWait(uint64_t arg0) [member function]
|
|
1084 |
cls.add_method('SpinWait',
|
|
1085 |
'bool',
|
|
1086 |
[param('uint64_t', 'arg0')],
|
|
1087 |
visibility='protected')
|
|
1088 |
## wall-clock-synchronizer.h: void ns3::WallClockSynchronizer::TimevalAdd(timeval * tv1, timeval * tv2, timeval * result) [member function]
|
|
1089 |
cls.add_method('TimevalAdd',
|
|
1090 |
'void',
|
|
1091 |
[param('timeval *', 'tv1'), param('timeval *', 'tv2'), param('timeval *', 'result')],
|
|
1092 |
visibility='protected')
|
|
1093 |
## wall-clock-synchronizer.h: uint64_t ns3::WallClockSynchronizer::TimevalToNs(timeval * tv) [member function]
|
|
1094 |
cls.add_method('TimevalToNs',
|
|
1095 |
'uint64_t',
|
|
1096 |
[param('timeval *', 'tv')],
|
|
1097 |
visibility='protected')
|
|
1098 |
return
|
|
1099 |
|
|
1100 |
def register_Ns3CalendarScheduler_methods(root_module, cls):
|
|
1101 |
## calendar-scheduler.h: ns3::CalendarScheduler::CalendarScheduler(ns3::CalendarScheduler const & arg0) [copy constructor]
|
|
1102 |
cls.add_constructor([param('ns3::CalendarScheduler const &', 'arg0')])
|
|
1103 |
## calendar-scheduler.h: ns3::CalendarScheduler::CalendarScheduler() [constructor]
|
|
1104 |
cls.add_constructor([])
|
|
1105 |
## calendar-scheduler.h: static ns3::TypeId ns3::CalendarScheduler::GetTypeId() [member function]
|
|
1106 |
cls.add_method('GetTypeId',
|
|
1107 |
'ns3::TypeId',
|
|
1108 |
[],
|
|
1109 |
is_static=True)
|
|
1110 |
## calendar-scheduler.h: void ns3::CalendarScheduler::Insert(ns3::Scheduler::Event const & ev) [member function]
|
|
1111 |
cls.add_method('Insert',
|
|
1112 |
'void',
|
|
1113 |
[param('ns3::Scheduler::Event const &', 'ev')],
|
|
1114 |
is_virtual=True)
|
|
1115 |
## calendar-scheduler.h: bool ns3::CalendarScheduler::IsEmpty() const [member function]
|
|
1116 |
cls.add_method('IsEmpty',
|
|
1117 |
'bool',
|
|
1118 |
[],
|
|
1119 |
is_const=True, is_virtual=True)
|
|
1120 |
## calendar-scheduler.h: ns3::Scheduler::Event ns3::CalendarScheduler::PeekNext() const [member function]
|
|
1121 |
cls.add_method('PeekNext',
|
|
1122 |
'ns3::Scheduler::Event',
|
|
1123 |
[],
|
|
1124 |
is_const=True, is_virtual=True)
|
|
1125 |
## calendar-scheduler.h: void ns3::CalendarScheduler::Remove(ns3::Scheduler::Event const & ev) [member function]
|
|
1126 |
cls.add_method('Remove',
|
|
1127 |
'void',
|
|
1128 |
[param('ns3::Scheduler::Event const &', 'ev')],
|
|
1129 |
is_virtual=True)
|
|
1130 |
## calendar-scheduler.h: ns3::Scheduler::Event ns3::CalendarScheduler::RemoveNext() [member function]
|
|
1131 |
cls.add_method('RemoveNext',
|
|
1132 |
'ns3::Scheduler::Event',
|
|
1133 |
[],
|
|
1134 |
is_virtual=True)
|
|
1135 |
return
|
|
1136 |
|
|
1137 |
def register_Ns3DefaultSimulatorImpl_methods(root_module, cls):
|
|
1138 |
## default-simulator-impl.h: ns3::DefaultSimulatorImpl::DefaultSimulatorImpl(ns3::DefaultSimulatorImpl const & arg0) [copy constructor]
|
|
1139 |
cls.add_constructor([param('ns3::DefaultSimulatorImpl const &', 'arg0')])
|
|
1140 |
## default-simulator-impl.h: ns3::DefaultSimulatorImpl::DefaultSimulatorImpl() [constructor]
|
|
1141 |
cls.add_constructor([])
|
|
1142 |
## default-simulator-impl.h: void ns3::DefaultSimulatorImpl::Cancel(ns3::EventId const & ev) [member function]
|
|
1143 |
cls.add_method('Cancel',
|
|
1144 |
'void',
|
|
1145 |
[param('ns3::EventId const &', 'ev')],
|
|
1146 |
is_virtual=True)
|
|
1147 |
## default-simulator-impl.h: void ns3::DefaultSimulatorImpl::Destroy() [member function]
|
|
1148 |
cls.add_method('Destroy',
|
|
1149 |
'void',
|
|
1150 |
[],
|
|
1151 |
is_virtual=True)
|
|
1152 |
## default-simulator-impl.h: ns3::Time ns3::DefaultSimulatorImpl::GetDelayLeft(ns3::EventId const & id) const [member function]
|
|
1153 |
cls.add_method('GetDelayLeft',
|
|
1154 |
'ns3::Time',
|
|
1155 |
[param('ns3::EventId const &', 'id')],
|
|
1156 |
is_const=True, is_virtual=True)
|
|
1157 |
## default-simulator-impl.h: ns3::Time ns3::DefaultSimulatorImpl::GetMaximumSimulationTime() const [member function]
|
|
1158 |
cls.add_method('GetMaximumSimulationTime',
|
|
1159 |
'ns3::Time',
|
|
1160 |
[],
|
|
1161 |
is_const=True, is_virtual=True)
|
|
1162 |
## default-simulator-impl.h: static ns3::TypeId ns3::DefaultSimulatorImpl::GetTypeId() [member function]
|
|
1163 |
cls.add_method('GetTypeId',
|
|
1164 |
'ns3::TypeId',
|
|
1165 |
[],
|
|
1166 |
is_static=True)
|
|
1167 |
## default-simulator-impl.h: bool ns3::DefaultSimulatorImpl::IsExpired(ns3::EventId const & ev) const [member function]
|
|
1168 |
cls.add_method('IsExpired',
|
|
1169 |
'bool',
|
|
1170 |
[param('ns3::EventId const &', 'ev')],
|
|
1171 |
is_const=True, is_virtual=True)
|
|
1172 |
## default-simulator-impl.h: bool ns3::DefaultSimulatorImpl::IsFinished() const [member function]
|
|
1173 |
cls.add_method('IsFinished',
|
|
1174 |
'bool',
|
|
1175 |
[],
|
|
1176 |
is_const=True, is_virtual=True)
|
|
1177 |
## default-simulator-impl.h: ns3::Time ns3::DefaultSimulatorImpl::Next() const [member function]
|
|
1178 |
cls.add_method('Next',
|
|
1179 |
'ns3::Time',
|
|
1180 |
[],
|
|
1181 |
is_const=True, is_virtual=True)
|
|
1182 |
## default-simulator-impl.h: ns3::Time ns3::DefaultSimulatorImpl::Now() const [member function]
|
|
1183 |
cls.add_method('Now',
|
|
1184 |
'ns3::Time',
|
|
1185 |
[],
|
|
1186 |
is_const=True, is_virtual=True)
|
|
1187 |
## default-simulator-impl.h: void ns3::DefaultSimulatorImpl::Remove(ns3::EventId const & ev) [member function]
|
|
1188 |
cls.add_method('Remove',
|
|
1189 |
'void',
|
|
1190 |
[param('ns3::EventId const &', 'ev')],
|
|
1191 |
is_virtual=True)
|
|
1192 |
## default-simulator-impl.h: void ns3::DefaultSimulatorImpl::Run() [member function]
|
|
1193 |
cls.add_method('Run',
|
|
1194 |
'void',
|
|
1195 |
[],
|
|
1196 |
is_virtual=True)
|
|
1197 |
## default-simulator-impl.h: void ns3::DefaultSimulatorImpl::RunOneEvent() [member function]
|
|
1198 |
cls.add_method('RunOneEvent',
|
|
1199 |
'void',
|
|
1200 |
[],
|
|
1201 |
is_virtual=True)
|
|
1202 |
## default-simulator-impl.h: ns3::EventId ns3::DefaultSimulatorImpl::Schedule(ns3::Time const & time, ns3::EventImpl * event) [member function]
|
|
1203 |
cls.add_method('Schedule',
|
|
1204 |
'ns3::EventId',
|
|
1205 |
[param('ns3::Time const &', 'time'), param('ns3::EventImpl *', 'event')],
|
|
1206 |
is_virtual=True)
|
|
1207 |
## default-simulator-impl.h: ns3::EventId ns3::DefaultSimulatorImpl::ScheduleDestroy(ns3::EventImpl * event) [member function]
|
|
1208 |
cls.add_method('ScheduleDestroy',
|
|
1209 |
'ns3::EventId',
|
|
1210 |
[param('ns3::EventImpl *', 'event')],
|
|
1211 |
is_virtual=True)
|
|
1212 |
## default-simulator-impl.h: ns3::EventId ns3::DefaultSimulatorImpl::ScheduleNow(ns3::EventImpl * event) [member function]
|
|
1213 |
cls.add_method('ScheduleNow',
|
|
1214 |
'ns3::EventId',
|
|
1215 |
[param('ns3::EventImpl *', 'event')],
|
|
1216 |
is_virtual=True)
|
|
1217 |
## default-simulator-impl.h: void ns3::DefaultSimulatorImpl::SetScheduler(ns3::Ptr<ns3::Scheduler> scheduler) [member function]
|
|
1218 |
cls.add_method('SetScheduler',
|
|
1219 |
'void',
|
|
1220 |
[param('ns3::Ptr< ns3::Scheduler >', 'scheduler')],
|
|
1221 |
is_virtual=True)
|
|
1222 |
## default-simulator-impl.h: void ns3::DefaultSimulatorImpl::Stop() [member function]
|
|
1223 |
cls.add_method('Stop',
|
|
1224 |
'void',
|
|
1225 |
[],
|
|
1226 |
is_virtual=True)
|
|
1227 |
return
|
|
1228 |
|
|
1229 |
def register_Ns3HeapScheduler_methods(root_module, cls):
|
|
1230 |
## heap-scheduler.h: ns3::HeapScheduler::HeapScheduler(ns3::HeapScheduler const & arg0) [copy constructor]
|
|
1231 |
cls.add_constructor([param('ns3::HeapScheduler const &', 'arg0')])
|
|
1232 |
## heap-scheduler.h: ns3::HeapScheduler::HeapScheduler() [constructor]
|
|
1233 |
cls.add_constructor([])
|
|
1234 |
## heap-scheduler.h: static ns3::TypeId ns3::HeapScheduler::GetTypeId() [member function]
|
|
1235 |
cls.add_method('GetTypeId',
|
|
1236 |
'ns3::TypeId',
|
|
1237 |
[],
|
|
1238 |
is_static=True)
|
|
1239 |
## heap-scheduler.h: void ns3::HeapScheduler::Insert(ns3::Scheduler::Event const & ev) [member function]
|
|
1240 |
cls.add_method('Insert',
|
|
1241 |
'void',
|
|
1242 |
[param('ns3::Scheduler::Event const &', 'ev')],
|
|
1243 |
is_virtual=True)
|
|
1244 |
## heap-scheduler.h: bool ns3::HeapScheduler::IsEmpty() const [member function]
|
|
1245 |
cls.add_method('IsEmpty',
|
|
1246 |
'bool',
|
|
1247 |
[],
|
|
1248 |
is_const=True, is_virtual=True)
|
|
1249 |
## heap-scheduler.h: ns3::Scheduler::Event ns3::HeapScheduler::PeekNext() const [member function]
|
|
1250 |
cls.add_method('PeekNext',
|
|
1251 |
'ns3::Scheduler::Event',
|
|
1252 |
[],
|
|
1253 |
is_const=True, is_virtual=True)
|
|
1254 |
## heap-scheduler.h: void ns3::HeapScheduler::Remove(ns3::Scheduler::Event const & ev) [member function]
|
|
1255 |
cls.add_method('Remove',
|
|
1256 |
'void',
|
|
1257 |
[param('ns3::Scheduler::Event const &', 'ev')],
|
|
1258 |
is_virtual=True)
|
|
1259 |
## heap-scheduler.h: ns3::Scheduler::Event ns3::HeapScheduler::RemoveNext() [member function]
|
|
1260 |
cls.add_method('RemoveNext',
|
|
1261 |
'ns3::Scheduler::Event',
|
|
1262 |
[],
|
|
1263 |
is_virtual=True)
|
|
1264 |
return
|
|
1265 |
|
|
1266 |
def register_Ns3ListScheduler_methods(root_module, cls):
|
|
1267 |
## list-scheduler.h: ns3::ListScheduler::ListScheduler(ns3::ListScheduler const & arg0) [copy constructor]
|
|
1268 |
cls.add_constructor([param('ns3::ListScheduler const &', 'arg0')])
|
|
1269 |
## list-scheduler.h: ns3::ListScheduler::ListScheduler() [constructor]
|
|
1270 |
cls.add_constructor([])
|
|
1271 |
## list-scheduler.h: static ns3::TypeId ns3::ListScheduler::GetTypeId() [member function]
|
|
1272 |
cls.add_method('GetTypeId',
|
|
1273 |
'ns3::TypeId',
|
|
1274 |
[],
|
|
1275 |
is_static=True)
|
|
1276 |
## list-scheduler.h: void ns3::ListScheduler::Insert(ns3::Scheduler::Event const & ev) [member function]
|
|
1277 |
cls.add_method('Insert',
|
|
1278 |
'void',
|
|
1279 |
[param('ns3::Scheduler::Event const &', 'ev')],
|
|
1280 |
is_virtual=True)
|
|
1281 |
## list-scheduler.h: bool ns3::ListScheduler::IsEmpty() const [member function]
|
|
1282 |
cls.add_method('IsEmpty',
|
|
1283 |
'bool',
|
|
1284 |
[],
|
|
1285 |
is_const=True, is_virtual=True)
|
|
1286 |
## list-scheduler.h: ns3::Scheduler::Event ns3::ListScheduler::PeekNext() const [member function]
|
|
1287 |
cls.add_method('PeekNext',
|
|
1288 |
'ns3::Scheduler::Event',
|
|
1289 |
[],
|
|
1290 |
is_const=True, is_virtual=True)
|
|
1291 |
## list-scheduler.h: void ns3::ListScheduler::Remove(ns3::Scheduler::Event const & ev) [member function]
|
|
1292 |
cls.add_method('Remove',
|
|
1293 |
'void',
|
|
1294 |
[param('ns3::Scheduler::Event const &', 'ev')],
|
|
1295 |
is_virtual=True)
|
|
1296 |
## list-scheduler.h: ns3::Scheduler::Event ns3::ListScheduler::RemoveNext() [member function]
|
|
1297 |
cls.add_method('RemoveNext',
|
|
1298 |
'ns3::Scheduler::Event',
|
|
1299 |
[],
|
|
1300 |
is_virtual=True)
|
|
1301 |
return
|
|
1302 |
|
|
1303 |
def register_Ns3MapScheduler_methods(root_module, cls):
|
|
1304 |
## map-scheduler.h: ns3::MapScheduler::MapScheduler(ns3::MapScheduler const & arg0) [copy constructor]
|
|
1305 |
cls.add_constructor([param('ns3::MapScheduler const &', 'arg0')])
|
|
1306 |
## map-scheduler.h: ns3::MapScheduler::MapScheduler() [constructor]
|
|
1307 |
cls.add_constructor([])
|
|
1308 |
## map-scheduler.h: static ns3::TypeId ns3::MapScheduler::GetTypeId() [member function]
|
|
1309 |
cls.add_method('GetTypeId',
|
|
1310 |
'ns3::TypeId',
|
|
1311 |
[],
|
|
1312 |
is_static=True)
|
|
1313 |
## map-scheduler.h: void ns3::MapScheduler::Insert(ns3::Scheduler::Event const & ev) [member function]
|
|
1314 |
cls.add_method('Insert',
|
|
1315 |
'void',
|
|
1316 |
[param('ns3::Scheduler::Event const &', 'ev')],
|
|
1317 |
is_virtual=True)
|
|
1318 |
## map-scheduler.h: bool ns3::MapScheduler::IsEmpty() const [member function]
|
|
1319 |
cls.add_method('IsEmpty',
|
|
1320 |
'bool',
|
|
1321 |
[],
|
|
1322 |
is_const=True, is_virtual=True)
|
|
1323 |
## map-scheduler.h: ns3::Scheduler::Event ns3::MapScheduler::PeekNext() const [member function]
|
|
1324 |
cls.add_method('PeekNext',
|
|
1325 |
'ns3::Scheduler::Event',
|
|
1326 |
[],
|
|
1327 |
is_const=True, is_virtual=True)
|
|
1328 |
## map-scheduler.h: void ns3::MapScheduler::Remove(ns3::Scheduler::Event const & ev) [member function]
|
|
1329 |
cls.add_method('Remove',
|
|
1330 |
'void',
|
|
1331 |
[param('ns3::Scheduler::Event const &', 'ev')],
|
|
1332 |
is_virtual=True)
|
|
1333 |
## map-scheduler.h: ns3::Scheduler::Event ns3::MapScheduler::RemoveNext() [member function]
|
|
1334 |
cls.add_method('RemoveNext',
|
|
1335 |
'ns3::Scheduler::Event',
|
|
1336 |
[],
|
|
1337 |
is_virtual=True)
|
|
1338 |
return
|
|
1339 |
|
|
1340 |
def register_Ns3Ns2CalendarScheduler_methods(root_module, cls):
|
|
1341 |
## ns2-calendar-scheduler.h: ns3::Ns2CalendarScheduler::Ns2CalendarScheduler(ns3::Ns2CalendarScheduler const & arg0) [copy constructor]
|
|
1342 |
cls.add_constructor([param('ns3::Ns2CalendarScheduler const &', 'arg0')])
|
|
1343 |
## ns2-calendar-scheduler.h: ns3::Ns2CalendarScheduler::Ns2CalendarScheduler() [constructor]
|
|
1344 |
cls.add_constructor([])
|
|
1345 |
## ns2-calendar-scheduler.h: static ns3::TypeId ns3::Ns2CalendarScheduler::GetTypeId() [member function]
|
|
1346 |
cls.add_method('GetTypeId',
|
|
1347 |
'ns3::TypeId',
|
|
1348 |
[],
|
|
1349 |
is_static=True)
|
|
1350 |
## ns2-calendar-scheduler.h: void ns3::Ns2CalendarScheduler::Insert(ns3::Scheduler::Event const & ev) [member function]
|
|
1351 |
cls.add_method('Insert',
|
|
1352 |
'void',
|
|
1353 |
[param('ns3::Scheduler::Event const &', 'ev')],
|
|
1354 |
is_virtual=True)
|
|
1355 |
## ns2-calendar-scheduler.h: bool ns3::Ns2CalendarScheduler::IsEmpty() const [member function]
|
|
1356 |
cls.add_method('IsEmpty',
|
|
1357 |
'bool',
|
|
1358 |
[],
|
|
1359 |
is_const=True, is_virtual=True)
|
|
1360 |
## ns2-calendar-scheduler.h: ns3::Scheduler::Event ns3::Ns2CalendarScheduler::PeekNext() const [member function]
|
|
1361 |
cls.add_method('PeekNext',
|
|
1362 |
'ns3::Scheduler::Event',
|
|
1363 |
[],
|
|
1364 |
is_const=True, is_virtual=True)
|
|
1365 |
## ns2-calendar-scheduler.h: void ns3::Ns2CalendarScheduler::Remove(ns3::Scheduler::Event const & ev) [member function]
|
|
1366 |
cls.add_method('Remove',
|
|
1367 |
'void',
|
|
1368 |
[param('ns3::Scheduler::Event const &', 'ev')],
|
|
1369 |
is_virtual=True)
|
|
1370 |
## ns2-calendar-scheduler.h: ns3::Scheduler::Event ns3::Ns2CalendarScheduler::RemoveNext() [member function]
|
|
1371 |
cls.add_method('RemoveNext',
|
|
1372 |
'ns3::Scheduler::Event',
|
|
1373 |
[],
|
|
1374 |
is_virtual=True)
|
|
1375 |
return
|
|
1376 |
|
|
1377 |
def register_Ns3RealtimeSimulatorImpl_methods(root_module, cls):
|
|
1378 |
## realtime-simulator-impl.h: ns3::RealtimeSimulatorImpl::RealtimeSimulatorImpl(ns3::RealtimeSimulatorImpl const & arg0) [copy constructor]
|
|
1379 |
cls.add_constructor([param('ns3::RealtimeSimulatorImpl const &', 'arg0')])
|
|
1380 |
## realtime-simulator-impl.h: ns3::RealtimeSimulatorImpl::RealtimeSimulatorImpl() [constructor]
|
|
1381 |
cls.add_constructor([])
|
|
1382 |
## realtime-simulator-impl.h: void ns3::RealtimeSimulatorImpl::Cancel(ns3::EventId const & ev) [member function]
|
|
1383 |
cls.add_method('Cancel',
|
|
1384 |
'void',
|
|
1385 |
[param('ns3::EventId const &', 'ev')],
|
|
1386 |
is_virtual=True)
|
|
1387 |
## realtime-simulator-impl.h: void ns3::RealtimeSimulatorImpl::Destroy() [member function]
|
|
1388 |
cls.add_method('Destroy',
|
|
1389 |
'void',
|
|
1390 |
[],
|
|
1391 |
is_virtual=True)
|
|
1392 |
## realtime-simulator-impl.h: ns3::Time ns3::RealtimeSimulatorImpl::GetDelayLeft(ns3::EventId const & id) const [member function]
|
|
1393 |
cls.add_method('GetDelayLeft',
|
|
1394 |
'ns3::Time',
|
|
1395 |
[param('ns3::EventId const &', 'id')],
|
|
1396 |
is_const=True, is_virtual=True)
|
|
1397 |
## realtime-simulator-impl.h: ns3::Time ns3::RealtimeSimulatorImpl::GetHardLimit() const [member function]
|
|
1398 |
cls.add_method('GetHardLimit',
|
|
1399 |
'ns3::Time',
|
|
1400 |
[],
|
|
1401 |
is_const=True)
|
|
1402 |
## realtime-simulator-impl.h: ns3::Time ns3::RealtimeSimulatorImpl::GetMaximumSimulationTime() const [member function]
|
|
1403 |
cls.add_method('GetMaximumSimulationTime',
|
|
1404 |
'ns3::Time',
|
|
1405 |
[],
|
|
1406 |
is_const=True, is_virtual=True)
|
|
1407 |
## realtime-simulator-impl.h: ns3::RealtimeSimulatorImpl::SynchronizationMode ns3::RealtimeSimulatorImpl::GetSynchronizationMode() const [member function]
|
|
1408 |
cls.add_method('GetSynchronizationMode',
|
|
1409 |
'ns3::RealtimeSimulatorImpl::SynchronizationMode',
|
|
1410 |
[],
|
|
1411 |
is_const=True)
|
|
1412 |
## realtime-simulator-impl.h: static ns3::TypeId ns3::RealtimeSimulatorImpl::GetTypeId() [member function]
|
|
1413 |
cls.add_method('GetTypeId',
|
|
1414 |
'ns3::TypeId',
|
|
1415 |
[],
|
|
1416 |
is_static=True)
|
|
1417 |
## realtime-simulator-impl.h: bool ns3::RealtimeSimulatorImpl::IsExpired(ns3::EventId const & ev) const [member function]
|
|
1418 |
cls.add_method('IsExpired',
|
|
1419 |
'bool',
|
|
1420 |
[param('ns3::EventId const &', 'ev')],
|
|
1421 |
is_const=True, is_virtual=True)
|
|
1422 |
## realtime-simulator-impl.h: bool ns3::RealtimeSimulatorImpl::IsFinished() const [member function]
|
|
1423 |
cls.add_method('IsFinished',
|
|
1424 |
'bool',
|
|
1425 |
[],
|
|
1426 |
is_const=True, is_virtual=True)
|
|
1427 |
## realtime-simulator-impl.h: ns3::Time ns3::RealtimeSimulatorImpl::Next() const [member function]
|
|
1428 |
cls.add_method('Next',
|
|
1429 |
'ns3::Time',
|
|
1430 |
[],
|
|
1431 |
is_const=True, is_virtual=True)
|
|
1432 |
## realtime-simulator-impl.h: ns3::Time ns3::RealtimeSimulatorImpl::Now() const [member function]
|
|
1433 |
cls.add_method('Now',
|
|
1434 |
'ns3::Time',
|
|
1435 |
[],
|
|
1436 |
is_const=True, is_virtual=True)
|
|
1437 |
## realtime-simulator-impl.h: ns3::Time ns3::RealtimeSimulatorImpl::RealtimeNow() const [member function]
|
|
1438 |
cls.add_method('RealtimeNow',
|
|
1439 |
'ns3::Time',
|
|
1440 |
[],
|
|
1441 |
is_const=True)
|
|
1442 |
## realtime-simulator-impl.h: void ns3::RealtimeSimulatorImpl::Remove(ns3::EventId const & ev) [member function]
|
|
1443 |
cls.add_method('Remove',
|
|
1444 |
'void',
|
|
1445 |
[param('ns3::EventId const &', 'ev')],
|
|
1446 |
is_virtual=True)
|
|
1447 |
## realtime-simulator-impl.h: void ns3::RealtimeSimulatorImpl::Run() [member function]
|
|
1448 |
cls.add_method('Run',
|
|
1449 |
'void',
|
|
1450 |
[],
|
|
1451 |
is_virtual=True)
|
|
1452 |
## realtime-simulator-impl.h: void ns3::RealtimeSimulatorImpl::RunOneEvent() [member function]
|
|
1453 |
cls.add_method('RunOneEvent',
|
|
1454 |
'void',
|
|
1455 |
[],
|
|
1456 |
is_virtual=True)
|
|
1457 |
## realtime-simulator-impl.h: ns3::EventId ns3::RealtimeSimulatorImpl::Schedule(ns3::Time const & time, ns3::EventImpl * event) [member function]
|
|
1458 |
cls.add_method('Schedule',
|
|
1459 |
'ns3::EventId',
|
|
1460 |
[param('ns3::Time const &', 'time'), param('ns3::EventImpl *', 'event')],
|
|
1461 |
is_virtual=True)
|
|
1462 |
## realtime-simulator-impl.h: ns3::EventId ns3::RealtimeSimulatorImpl::ScheduleDestroy(ns3::EventImpl * event) [member function]
|
|
1463 |
cls.add_method('ScheduleDestroy',
|
|
1464 |
'ns3::EventId',
|
|
1465 |
[param('ns3::EventImpl *', 'event')],
|
|
1466 |
is_virtual=True)
|
|
1467 |
## realtime-simulator-impl.h: ns3::EventId ns3::RealtimeSimulatorImpl::ScheduleNow(ns3::EventImpl * event) [member function]
|
|
1468 |
cls.add_method('ScheduleNow',
|
|
1469 |
'ns3::EventId',
|
|
1470 |
[param('ns3::EventImpl *', 'event')],
|
|
1471 |
is_virtual=True)
|
|
1472 |
## realtime-simulator-impl.h: void ns3::RealtimeSimulatorImpl::ScheduleRealtime(ns3::Time const & time, ns3::EventImpl * event) [member function]
|
|
1473 |
cls.add_method('ScheduleRealtime',
|
|
1474 |
'void',
|
|
1475 |
[param('ns3::Time const &', 'time'), param('ns3::EventImpl *', 'event')])
|
|
1476 |
## realtime-simulator-impl.h: void ns3::RealtimeSimulatorImpl::ScheduleRealtimeNow(ns3::EventImpl * event) [member function]
|
|
1477 |
cls.add_method('ScheduleRealtimeNow',
|
|
1478 |
'void',
|
|
1479 |
[param('ns3::EventImpl *', 'event')])
|
|
1480 |
## realtime-simulator-impl.h: void ns3::RealtimeSimulatorImpl::SetHardLimit(ns3::Time limit) [member function]
|
|
1481 |
cls.add_method('SetHardLimit',
|
|
1482 |
'void',
|
|
1483 |
[param('ns3::Time', 'limit')])
|
|
1484 |
## realtime-simulator-impl.h: void ns3::RealtimeSimulatorImpl::SetScheduler(ns3::Ptr<ns3::Scheduler> scheduler) [member function]
|
|
1485 |
cls.add_method('SetScheduler',
|
|
1486 |
'void',
|
|
1487 |
[param('ns3::Ptr< ns3::Scheduler >', 'scheduler')],
|
|
1488 |
is_virtual=True)
|
|
1489 |
## realtime-simulator-impl.h: void ns3::RealtimeSimulatorImpl::SetSynchronizationMode(ns3::RealtimeSimulatorImpl::SynchronizationMode mode) [member function]
|
|
1490 |
cls.add_method('SetSynchronizationMode',
|
|
1491 |
'void',
|
|
1492 |
[param('ns3::RealtimeSimulatorImpl::SynchronizationMode', 'mode')])
|
|
1493 |
## realtime-simulator-impl.h: void ns3::RealtimeSimulatorImpl::Stop() [member function]
|
|
1494 |
cls.add_method('Stop',
|
|
1495 |
'void',
|
|
1496 |
[],
|
|
1497 |
is_virtual=True)
|
|
1498 |
return
|
|
1499 |
|
|
1500 |
def register_functions(root_module):
|
|
1501 |
module = root_module
|
|
1502 |
## high-precision.h: extern ns3::HighPrecision ns3::Abs(ns3::HighPrecision const & value) [free function]
|
|
1503 |
module.add_function('Abs',
|
|
1504 |
'ns3::HighPrecision',
|
|
1505 |
[param('ns3::HighPrecision const &', 'value')])
|
|
1506 |
## nstime.h: extern ns3::Time ns3::FemtoSeconds(uint64_t fs) [free function]
|
|
1507 |
module.add_function('FemtoSeconds',
|
|
1508 |
'ns3::Time',
|
|
1509 |
[param('uint64_t', 'fs')])
|
|
1510 |
## make-event.h: extern ns3::EventImpl * ns3::MakeEvent(void (*)( ) * f) [free function]
|
|
1511 |
module.add_function('MakeEvent',
|
|
1512 |
'ns3::EventImpl *',
|
|
1513 |
[param('void ( * ) ( ) *', 'f')])
|
|
1514 |
## nstime.h: extern ns3::Ptr<ns3::AttributeChecker const> ns3::MakeTimeChecker() [free function]
|
|
1515 |
module.add_function('MakeTimeChecker',
|
|
1516 |
'ns3::Ptr< ns3::AttributeChecker const >',
|
|
1517 |
[])
|
|
1518 |
## high-precision.h: extern ns3::HighPrecision ns3::Max(ns3::HighPrecision const & a, ns3::HighPrecision const & b) [free function]
|
|
1519 |
module.add_function('Max',
|
|
1520 |
'ns3::HighPrecision',
|
|
1521 |
[param('ns3::HighPrecision const &', 'a'), param('ns3::HighPrecision const &', 'b')])
|
|
1522 |
## nstime.h: extern ns3::Time ns3::MicroSeconds(uint64_t us) [free function]
|
|
1523 |
module.add_function('MicroSeconds',
|
|
1524 |
'ns3::Time',
|
|
1525 |
[param('uint64_t', 'us')])
|
|
1526 |
## nstime.h: extern ns3::Time ns3::MilliSeconds(uint64_t ms) [free function]
|
|
1527 |
module.add_function('MilliSeconds',
|
|
1528 |
'ns3::Time',
|
|
1529 |
[param('uint64_t', 'ms')])
|
|
1530 |
## high-precision.h: extern ns3::HighPrecision ns3::Min(ns3::HighPrecision const & a, ns3::HighPrecision const & b) [free function]
|
|
1531 |
module.add_function('Min',
|
|
1532 |
'ns3::HighPrecision',
|
|
1533 |
[param('ns3::HighPrecision const &', 'a'), param('ns3::HighPrecision const &', 'b')])
|
|
1534 |
## nstime.h: extern ns3::Time ns3::NanoSeconds(uint64_t ns) [free function]
|
|
1535 |
module.add_function('NanoSeconds',
|
|
1536 |
'ns3::Time',
|
|
1537 |
[param('uint64_t', 'ns')])
|
|
1538 |
## simulator.h: extern ns3::Time ns3::Now() [free function]
|
|
1539 |
module.add_function('Now',
|
|
1540 |
'ns3::Time',
|
|
1541 |
[])
|
|
1542 |
## nstime.h: extern ns3::Time ns3::PicoSeconds(uint64_t ps) [free function]
|
|
1543 |
module.add_function('PicoSeconds',
|
|
1544 |
'ns3::Time',
|
|
1545 |
[param('uint64_t', 'ps')])
|
|
1546 |
## nstime.h: extern ns3::Time ns3::Seconds(double seconds) [free function]
|
|
1547 |
module.add_function('Seconds',
|
|
1548 |
'ns3::Time',
|
|
1549 |
[param('double', 'seconds')])
|
|
1550 |
## nstime.h: extern ns3::Time ns3::TimeStep(uint64_t ts) [free function]
|
|
1551 |
module.add_function('TimeStep',
|
|
1552 |
'ns3::Time',
|
|
1553 |
[param('uint64_t', 'ts')])
|
|
1554 |
register_functions_ns3_Config(module.get_submodule('Config'), root_module)
|
|
1555 |
register_functions_ns3_TimeStepPrecision(module.get_submodule('TimeStepPrecision'), root_module)
|
|
1556 |
register_functions_ns3_addressUtils(module.get_submodule('addressUtils'), root_module)
|
|
1557 |
register_functions_ns3_dot11s(module.get_submodule('dot11s'), root_module)
|
|
1558 |
register_functions_ns3_flame(module.get_submodule('flame'), root_module)
|
|
1559 |
register_functions_ns3_internal(module.get_submodule('internal'), root_module)
|
|
1560 |
register_functions_ns3_olsr(module.get_submodule('olsr'), root_module)
|
|
1561 |
return
|
|
1562 |
|
|
1563 |
def register_functions_ns3_Config(module, root_module):
|
|
1564 |
return
|
|
1565 |
|
|
1566 |
def register_functions_ns3_TimeStepPrecision(module, root_module):
|
|
1567 |
## nstime.h: extern ns3::TimeStepPrecision::precision_t ns3::TimeStepPrecision::Get() [free function]
|
|
1568 |
module.add_function('Get',
|
|
1569 |
'ns3::TimeStepPrecision::precision_t',
|
|
1570 |
[])
|
|
1571 |
## nstime.h: extern void ns3::TimeStepPrecision::Set(ns3::TimeStepPrecision::precision_t precision) [free function]
|
|
1572 |
module.add_function('Set',
|
|
1573 |
'void',
|
|
1574 |
[param('ns3::TimeStepPrecision::precision_t', 'precision')])
|
|
1575 |
return
|
|
1576 |
|
|
1577 |
def register_functions_ns3_addressUtils(module, root_module):
|
|
1578 |
return
|
|
1579 |
|
|
1580 |
def register_functions_ns3_dot11s(module, root_module):
|
|
1581 |
return
|
|
1582 |
|
|
1583 |
def register_functions_ns3_flame(module, root_module):
|
|
1584 |
return
|
|
1585 |
|
|
1586 |
def register_functions_ns3_internal(module, root_module):
|
|
1587 |
return
|
|
1588 |
|
|
1589 |
def register_functions_ns3_olsr(module, root_module):
|
|
1590 |
return
|
|
1591 |
|