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