author | Josh Pelkey <jpelkey@gatech.edu> |
Thu, 05 Aug 2010 11:36:22 -0400 | |
changeset 6487 | 6d7b589a97a3 |
parent 6435 | 70bffe766285 |
child 6521 | d6e404a27f73 |
permissions | -rw-r--r-- |
5249
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1 |
from pybindgen import Module, FileCodeSink, param, retval, cppclass, typehandlers |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2 |
|
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3 |
|
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4 |
import pybindgen.settings |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
5 |
import warnings |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
6 |
|
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
7 |
class ErrorHandler(pybindgen.settings.ErrorHandler): |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
8 |
def handle_error(self, wrapper, exception, traceback_): |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
9 |
warnings.warn("exception %r in wrapper %s" % (exception, wrapper)) |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
10 |
return True |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
11 |
pybindgen.settings.error_handler = ErrorHandler() |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
12 |
|
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
13 |
|
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
14 |
import sys |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
15 |
import ns3_module_core |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
16 |
import ns3_module_simulator |
5276
7ec4f2d74fef
get rid of names silly singleton and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
5249
diff
changeset
|
17 |
import ns3_module_test |
5779
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
18 |
import ns3_module_common |
5249
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
19 |
import ns3_module_mobility |
6113
0ce37bf4f1c1
Merge distributed simulation code
Josh Pelkey <jpelkey@gatech.edu>
parents:
6029
diff
changeset
|
20 |
import ns3_module_mpi |
5762
ae78a8de6f5f
Update bindings for bug 735 fix
Tom Henderson <tomh@tomh.org>
parents:
5754
diff
changeset
|
21 |
import ns3_module_contrib |
5753
8c105b521d1b
Python: rescan; need new 'section precedence' API from PyBindGen; other PBG bug fixes pulled from new version.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5504
diff
changeset
|
22 |
import ns3_module_node |
5779
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
23 |
import ns3_module_bridge |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
24 |
import ns3_module_csma |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
25 |
import ns3_module_emu |
6435
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
26 |
import ns3_module_energy |
5779
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
27 |
import ns3_module_global_routing |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
28 |
import ns3_module_internet_stack |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
29 |
import ns3_module_list_routing |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
30 |
import ns3_module_onoff |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
31 |
import ns3_module_packet_sink |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
32 |
import ns3_module_point_to_point |
6356
1b8a736858cc
Rescan API for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6141
diff
changeset
|
33 |
import ns3_module_spectrum |
5779
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
34 |
import ns3_module_static_routing |
6029
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
35 |
import ns3_module_stats |
5762
ae78a8de6f5f
Update bindings for bug 735 fix
Tom Henderson <tomh@tomh.org>
parents:
5754
diff
changeset
|
36 |
import ns3_module_tap_bridge |
6135
63442dc5ccea
API rescan for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6121
diff
changeset
|
37 |
import ns3_module_topology_read |
6377 | 38 |
import ns3_module_uan |
5762
ae78a8de6f5f
Update bindings for bug 735 fix
Tom Henderson <tomh@tomh.org>
parents:
5754
diff
changeset
|
39 |
import ns3_module_v4ping |
ae78a8de6f5f
Update bindings for bug 735 fix
Tom Henderson <tomh@tomh.org>
parents:
5754
diff
changeset
|
40 |
import ns3_module_virtual_net_device |
5753
8c105b521d1b
Python: rescan; need new 'section precedence' API from PyBindGen; other PBG bug fixes pulled from new version.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5504
diff
changeset
|
41 |
import ns3_module_wifi |
6135
63442dc5ccea
API rescan for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6121
diff
changeset
|
42 |
import ns3_module_wimax |
5779
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
43 |
import ns3_module_aodv |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
44 |
import ns3_module_flow_monitor |
5249
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
45 |
import ns3_module_nix_vector_routing |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
46 |
import ns3_module_olsr |
5779
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
47 |
import ns3_module_ping6 |
5762
ae78a8de6f5f
Update bindings for bug 735 fix
Tom Henderson <tomh@tomh.org>
parents:
5754
diff
changeset
|
48 |
import ns3_module_radvd |
5821 | 49 |
import ns3_module_udp_client_server |
5779
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
50 |
import ns3_module_udp_echo |
5249
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
51 |
import ns3_module_mesh |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
52 |
import ns3_module_helper |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
53 |
import ns3_module_dot11s |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
54 |
import ns3_module_flame |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
55 |
|
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
56 |
def module_init(): |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
57 |
root_module = Module('ns3', cpp_namespace='::ns3') |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
58 |
return root_module |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
59 |
|
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
60 |
def register_types(module): |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
61 |
root_module = module.get_root() |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
62 |
|
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
63 |
root_module.begin_section('ns3_module_core') |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
64 |
ns3_module_core.register_types(module) |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
65 |
|
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
66 |
try: |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
67 |
import ns3_module_core__local |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
68 |
except ImportError: |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
69 |
pass |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
70 |
else: |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
71 |
ns3_module_core__local.register_types(module) |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
72 |
|
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
73 |
root_module.end_section('ns3_module_core') |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
74 |
root_module.begin_section('ns3_module_simulator') |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
75 |
ns3_module_simulator.register_types(module) |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
76 |
|
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
77 |
try: |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
78 |
import ns3_module_simulator__local |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
79 |
except ImportError: |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
80 |
pass |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
81 |
else: |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
82 |
ns3_module_simulator__local.register_types(module) |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
83 |
|
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
84 |
root_module.end_section('ns3_module_simulator') |
5276
7ec4f2d74fef
get rid of names silly singleton and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
5249
diff
changeset
|
85 |
root_module.begin_section('ns3_module_test') |
7ec4f2d74fef
get rid of names silly singleton and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
5249
diff
changeset
|
86 |
ns3_module_test.register_types(module) |
7ec4f2d74fef
get rid of names silly singleton and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
5249
diff
changeset
|
87 |
|
7ec4f2d74fef
get rid of names silly singleton and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
5249
diff
changeset
|
88 |
try: |
7ec4f2d74fef
get rid of names silly singleton and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
5249
diff
changeset
|
89 |
import ns3_module_test__local |
7ec4f2d74fef
get rid of names silly singleton and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
5249
diff
changeset
|
90 |
except ImportError: |
7ec4f2d74fef
get rid of names silly singleton and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
5249
diff
changeset
|
91 |
pass |
7ec4f2d74fef
get rid of names silly singleton and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
5249
diff
changeset
|
92 |
else: |
7ec4f2d74fef
get rid of names silly singleton and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
5249
diff
changeset
|
93 |
ns3_module_test__local.register_types(module) |
7ec4f2d74fef
get rid of names silly singleton and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
5249
diff
changeset
|
94 |
|
7ec4f2d74fef
get rid of names silly singleton and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
5249
diff
changeset
|
95 |
root_module.end_section('ns3_module_test') |
5779
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
96 |
root_module.begin_section('ns3_module_common') |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
97 |
ns3_module_common.register_types(module) |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
98 |
|
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
99 |
try: |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
100 |
import ns3_module_common__local |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
101 |
except ImportError: |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
102 |
pass |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
103 |
else: |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
104 |
ns3_module_common__local.register_types(module) |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
105 |
|
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
106 |
root_module.end_section('ns3_module_common') |
5249
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
107 |
root_module.begin_section('ns3_module_mobility') |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
108 |
ns3_module_mobility.register_types(module) |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
109 |
|
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
110 |
try: |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
111 |
import ns3_module_mobility__local |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
112 |
except ImportError: |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
113 |
pass |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
114 |
else: |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
115 |
ns3_module_mobility__local.register_types(module) |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
116 |
|
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
117 |
root_module.end_section('ns3_module_mobility') |
6113
0ce37bf4f1c1
Merge distributed simulation code
Josh Pelkey <jpelkey@gatech.edu>
parents:
6029
diff
changeset
|
118 |
root_module.begin_section('ns3_module_mpi') |
0ce37bf4f1c1
Merge distributed simulation code
Josh Pelkey <jpelkey@gatech.edu>
parents:
6029
diff
changeset
|
119 |
ns3_module_mpi.register_types(module) |
0ce37bf4f1c1
Merge distributed simulation code
Josh Pelkey <jpelkey@gatech.edu>
parents:
6029
diff
changeset
|
120 |
|
0ce37bf4f1c1
Merge distributed simulation code
Josh Pelkey <jpelkey@gatech.edu>
parents:
6029
diff
changeset
|
121 |
try: |
0ce37bf4f1c1
Merge distributed simulation code
Josh Pelkey <jpelkey@gatech.edu>
parents:
6029
diff
changeset
|
122 |
import ns3_module_mpi__local |
0ce37bf4f1c1
Merge distributed simulation code
Josh Pelkey <jpelkey@gatech.edu>
parents:
6029
diff
changeset
|
123 |
except ImportError: |
0ce37bf4f1c1
Merge distributed simulation code
Josh Pelkey <jpelkey@gatech.edu>
parents:
6029
diff
changeset
|
124 |
pass |
0ce37bf4f1c1
Merge distributed simulation code
Josh Pelkey <jpelkey@gatech.edu>
parents:
6029
diff
changeset
|
125 |
else: |
0ce37bf4f1c1
Merge distributed simulation code
Josh Pelkey <jpelkey@gatech.edu>
parents:
6029
diff
changeset
|
126 |
ns3_module_mpi__local.register_types(module) |
0ce37bf4f1c1
Merge distributed simulation code
Josh Pelkey <jpelkey@gatech.edu>
parents:
6029
diff
changeset
|
127 |
|
0ce37bf4f1c1
Merge distributed simulation code
Josh Pelkey <jpelkey@gatech.edu>
parents:
6029
diff
changeset
|
128 |
root_module.end_section('ns3_module_mpi') |
5762
ae78a8de6f5f
Update bindings for bug 735 fix
Tom Henderson <tomh@tomh.org>
parents:
5754
diff
changeset
|
129 |
root_module.begin_section('ns3_module_contrib') |
ae78a8de6f5f
Update bindings for bug 735 fix
Tom Henderson <tomh@tomh.org>
parents:
5754
diff
changeset
|
130 |
ns3_module_contrib.register_types(module) |
ae78a8de6f5f
Update bindings for bug 735 fix
Tom Henderson <tomh@tomh.org>
parents:
5754
diff
changeset
|
131 |
|
ae78a8de6f5f
Update bindings for bug 735 fix
Tom Henderson <tomh@tomh.org>
parents:
5754
diff
changeset
|
132 |
try: |
ae78a8de6f5f
Update bindings for bug 735 fix
Tom Henderson <tomh@tomh.org>
parents:
5754
diff
changeset
|
133 |
import ns3_module_contrib__local |
ae78a8de6f5f
Update bindings for bug 735 fix
Tom Henderson <tomh@tomh.org>
parents:
5754
diff
changeset
|
134 |
except ImportError: |
ae78a8de6f5f
Update bindings for bug 735 fix
Tom Henderson <tomh@tomh.org>
parents:
5754
diff
changeset
|
135 |
pass |
ae78a8de6f5f
Update bindings for bug 735 fix
Tom Henderson <tomh@tomh.org>
parents:
5754
diff
changeset
|
136 |
else: |
ae78a8de6f5f
Update bindings for bug 735 fix
Tom Henderson <tomh@tomh.org>
parents:
5754
diff
changeset
|
137 |
ns3_module_contrib__local.register_types(module) |
ae78a8de6f5f
Update bindings for bug 735 fix
Tom Henderson <tomh@tomh.org>
parents:
5754
diff
changeset
|
138 |
|
ae78a8de6f5f
Update bindings for bug 735 fix
Tom Henderson <tomh@tomh.org>
parents:
5754
diff
changeset
|
139 |
root_module.end_section('ns3_module_contrib') |
5249
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
140 |
root_module.begin_section('ns3_module_node') |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
141 |
ns3_module_node.register_types(module) |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
142 |
|
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
143 |
try: |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
144 |
import ns3_module_node__local |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
145 |
except ImportError: |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
146 |
pass |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
147 |
else: |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
148 |
ns3_module_node__local.register_types(module) |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
149 |
|
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
150 |
root_module.end_section('ns3_module_node') |
5779
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
151 |
root_module.begin_section('ns3_module_bridge') |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
152 |
ns3_module_bridge.register_types(module) |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
153 |
|
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
154 |
try: |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
155 |
import ns3_module_bridge__local |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
156 |
except ImportError: |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
157 |
pass |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
158 |
else: |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
159 |
ns3_module_bridge__local.register_types(module) |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
160 |
|
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
161 |
root_module.end_section('ns3_module_bridge') |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
162 |
root_module.begin_section('ns3_module_csma') |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
163 |
ns3_module_csma.register_types(module) |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
164 |
|
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
165 |
try: |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
166 |
import ns3_module_csma__local |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
167 |
except ImportError: |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
168 |
pass |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
169 |
else: |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
170 |
ns3_module_csma__local.register_types(module) |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
171 |
|
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
172 |
root_module.end_section('ns3_module_csma') |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
173 |
root_module.begin_section('ns3_module_emu') |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
174 |
ns3_module_emu.register_types(module) |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
175 |
|
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
176 |
try: |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
177 |
import ns3_module_emu__local |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
178 |
except ImportError: |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
179 |
pass |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
180 |
else: |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
181 |
ns3_module_emu__local.register_types(module) |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
182 |
|
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
183 |
root_module.end_section('ns3_module_emu') |
6435
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
184 |
root_module.begin_section('ns3_module_energy') |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
185 |
ns3_module_energy.register_types(module) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
186 |
|
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
187 |
try: |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
188 |
import ns3_module_energy__local |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
189 |
except ImportError: |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
190 |
pass |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
191 |
else: |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
192 |
ns3_module_energy__local.register_types(module) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
193 |
|
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
194 |
root_module.end_section('ns3_module_energy') |
5779
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
195 |
root_module.begin_section('ns3_module_global_routing') |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
196 |
ns3_module_global_routing.register_types(module) |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
197 |
|
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
198 |
try: |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
199 |
import ns3_module_global_routing__local |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
200 |
except ImportError: |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
201 |
pass |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
202 |
else: |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
203 |
ns3_module_global_routing__local.register_types(module) |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
204 |
|
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
205 |
root_module.end_section('ns3_module_global_routing') |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
206 |
root_module.begin_section('ns3_module_internet_stack') |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
207 |
ns3_module_internet_stack.register_types(module) |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
208 |
|
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
209 |
try: |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
210 |
import ns3_module_internet_stack__local |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
211 |
except ImportError: |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
212 |
pass |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
213 |
else: |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
214 |
ns3_module_internet_stack__local.register_types(module) |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
215 |
|
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
216 |
root_module.end_section('ns3_module_internet_stack') |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
217 |
root_module.begin_section('ns3_module_list_routing') |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
218 |
ns3_module_list_routing.register_types(module) |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
219 |
|
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
220 |
try: |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
221 |
import ns3_module_list_routing__local |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
222 |
except ImportError: |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
223 |
pass |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
224 |
else: |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
225 |
ns3_module_list_routing__local.register_types(module) |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
226 |
|
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
227 |
root_module.end_section('ns3_module_list_routing') |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
228 |
root_module.begin_section('ns3_module_onoff') |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
229 |
ns3_module_onoff.register_types(module) |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
230 |
|
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
231 |
try: |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
232 |
import ns3_module_onoff__local |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
233 |
except ImportError: |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
234 |
pass |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
235 |
else: |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
236 |
ns3_module_onoff__local.register_types(module) |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
237 |
|
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
238 |
root_module.end_section('ns3_module_onoff') |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
239 |
root_module.begin_section('ns3_module_packet_sink') |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
240 |
ns3_module_packet_sink.register_types(module) |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
241 |
|
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
242 |
try: |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
243 |
import ns3_module_packet_sink__local |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
244 |
except ImportError: |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
245 |
pass |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
246 |
else: |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
247 |
ns3_module_packet_sink__local.register_types(module) |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
248 |
|
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
249 |
root_module.end_section('ns3_module_packet_sink') |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
250 |
root_module.begin_section('ns3_module_point_to_point') |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
251 |
ns3_module_point_to_point.register_types(module) |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
252 |
|
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
253 |
try: |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
254 |
import ns3_module_point_to_point__local |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
255 |
except ImportError: |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
256 |
pass |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
257 |
else: |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
258 |
ns3_module_point_to_point__local.register_types(module) |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
259 |
|
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
260 |
root_module.end_section('ns3_module_point_to_point') |
6356
1b8a736858cc
Rescan API for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6141
diff
changeset
|
261 |
root_module.begin_section('ns3_module_spectrum') |
1b8a736858cc
Rescan API for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6141
diff
changeset
|
262 |
ns3_module_spectrum.register_types(module) |
1b8a736858cc
Rescan API for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6141
diff
changeset
|
263 |
|
1b8a736858cc
Rescan API for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6141
diff
changeset
|
264 |
try: |
1b8a736858cc
Rescan API for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6141
diff
changeset
|
265 |
import ns3_module_spectrum__local |
1b8a736858cc
Rescan API for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6141
diff
changeset
|
266 |
except ImportError: |
1b8a736858cc
Rescan API for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6141
diff
changeset
|
267 |
pass |
1b8a736858cc
Rescan API for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6141
diff
changeset
|
268 |
else: |
1b8a736858cc
Rescan API for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6141
diff
changeset
|
269 |
ns3_module_spectrum__local.register_types(module) |
1b8a736858cc
Rescan API for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6141
diff
changeset
|
270 |
|
1b8a736858cc
Rescan API for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6141
diff
changeset
|
271 |
root_module.end_section('ns3_module_spectrum') |
5779
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
272 |
root_module.begin_section('ns3_module_static_routing') |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
273 |
ns3_module_static_routing.register_types(module) |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
274 |
|
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
275 |
try: |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
276 |
import ns3_module_static_routing__local |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
277 |
except ImportError: |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
278 |
pass |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
279 |
else: |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
280 |
ns3_module_static_routing__local.register_types(module) |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
281 |
|
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
282 |
root_module.end_section('ns3_module_static_routing') |
6029
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
283 |
root_module.begin_section('ns3_module_stats') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
284 |
ns3_module_stats.register_types(module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
285 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
286 |
try: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
287 |
import ns3_module_stats__local |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
288 |
except ImportError: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
289 |
pass |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
290 |
else: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
291 |
ns3_module_stats__local.register_types(module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
292 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
293 |
root_module.end_section('ns3_module_stats') |
5762
ae78a8de6f5f
Update bindings for bug 735 fix
Tom Henderson <tomh@tomh.org>
parents:
5754
diff
changeset
|
294 |
root_module.begin_section('ns3_module_tap_bridge') |
ae78a8de6f5f
Update bindings for bug 735 fix
Tom Henderson <tomh@tomh.org>
parents:
5754
diff
changeset
|
295 |
ns3_module_tap_bridge.register_types(module) |
5249
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
296 |
|
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
297 |
try: |
5762
ae78a8de6f5f
Update bindings for bug 735 fix
Tom Henderson <tomh@tomh.org>
parents:
5754
diff
changeset
|
298 |
import ns3_module_tap_bridge__local |
ae78a8de6f5f
Update bindings for bug 735 fix
Tom Henderson <tomh@tomh.org>
parents:
5754
diff
changeset
|
299 |
except ImportError: |
ae78a8de6f5f
Update bindings for bug 735 fix
Tom Henderson <tomh@tomh.org>
parents:
5754
diff
changeset
|
300 |
pass |
ae78a8de6f5f
Update bindings for bug 735 fix
Tom Henderson <tomh@tomh.org>
parents:
5754
diff
changeset
|
301 |
else: |
ae78a8de6f5f
Update bindings for bug 735 fix
Tom Henderson <tomh@tomh.org>
parents:
5754
diff
changeset
|
302 |
ns3_module_tap_bridge__local.register_types(module) |
ae78a8de6f5f
Update bindings for bug 735 fix
Tom Henderson <tomh@tomh.org>
parents:
5754
diff
changeset
|
303 |
|
ae78a8de6f5f
Update bindings for bug 735 fix
Tom Henderson <tomh@tomh.org>
parents:
5754
diff
changeset
|
304 |
root_module.end_section('ns3_module_tap_bridge') |
6135
63442dc5ccea
API rescan for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6121
diff
changeset
|
305 |
root_module.begin_section('ns3_module_topology_read') |
63442dc5ccea
API rescan for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6121
diff
changeset
|
306 |
ns3_module_topology_read.register_types(module) |
63442dc5ccea
API rescan for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6121
diff
changeset
|
307 |
|
63442dc5ccea
API rescan for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6121
diff
changeset
|
308 |
try: |
63442dc5ccea
API rescan for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6121
diff
changeset
|
309 |
import ns3_module_topology_read__local |
63442dc5ccea
API rescan for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6121
diff
changeset
|
310 |
except ImportError: |
63442dc5ccea
API rescan for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6121
diff
changeset
|
311 |
pass |
63442dc5ccea
API rescan for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6121
diff
changeset
|
312 |
else: |
63442dc5ccea
API rescan for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6121
diff
changeset
|
313 |
ns3_module_topology_read__local.register_types(module) |
63442dc5ccea
API rescan for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6121
diff
changeset
|
314 |
|
63442dc5ccea
API rescan for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6121
diff
changeset
|
315 |
root_module.end_section('ns3_module_topology_read') |
6377 | 316 |
root_module.begin_section('ns3_module_uan') |
317 |
ns3_module_uan.register_types(module) |
|
318 |
||
319 |
try: |
|
320 |
import ns3_module_uan__local |
|
321 |
except ImportError: |
|
322 |
pass |
|
323 |
else: |
|
324 |
ns3_module_uan__local.register_types(module) |
|
325 |
||
326 |
root_module.end_section('ns3_module_uan') |
|
5762
ae78a8de6f5f
Update bindings for bug 735 fix
Tom Henderson <tomh@tomh.org>
parents:
5754
diff
changeset
|
327 |
root_module.begin_section('ns3_module_v4ping') |
ae78a8de6f5f
Update bindings for bug 735 fix
Tom Henderson <tomh@tomh.org>
parents:
5754
diff
changeset
|
328 |
ns3_module_v4ping.register_types(module) |
ae78a8de6f5f
Update bindings for bug 735 fix
Tom Henderson <tomh@tomh.org>
parents:
5754
diff
changeset
|
329 |
|
ae78a8de6f5f
Update bindings for bug 735 fix
Tom Henderson <tomh@tomh.org>
parents:
5754
diff
changeset
|
330 |
try: |
ae78a8de6f5f
Update bindings for bug 735 fix
Tom Henderson <tomh@tomh.org>
parents:
5754
diff
changeset
|
331 |
import ns3_module_v4ping__local |
ae78a8de6f5f
Update bindings for bug 735 fix
Tom Henderson <tomh@tomh.org>
parents:
5754
diff
changeset
|
332 |
except ImportError: |
ae78a8de6f5f
Update bindings for bug 735 fix
Tom Henderson <tomh@tomh.org>
parents:
5754
diff
changeset
|
333 |
pass |
ae78a8de6f5f
Update bindings for bug 735 fix
Tom Henderson <tomh@tomh.org>
parents:
5754
diff
changeset
|
334 |
else: |
ae78a8de6f5f
Update bindings for bug 735 fix
Tom Henderson <tomh@tomh.org>
parents:
5754
diff
changeset
|
335 |
ns3_module_v4ping__local.register_types(module) |
ae78a8de6f5f
Update bindings for bug 735 fix
Tom Henderson <tomh@tomh.org>
parents:
5754
diff
changeset
|
336 |
|
ae78a8de6f5f
Update bindings for bug 735 fix
Tom Henderson <tomh@tomh.org>
parents:
5754
diff
changeset
|
337 |
root_module.end_section('ns3_module_v4ping') |
ae78a8de6f5f
Update bindings for bug 735 fix
Tom Henderson <tomh@tomh.org>
parents:
5754
diff
changeset
|
338 |
root_module.begin_section('ns3_module_virtual_net_device') |
ae78a8de6f5f
Update bindings for bug 735 fix
Tom Henderson <tomh@tomh.org>
parents:
5754
diff
changeset
|
339 |
ns3_module_virtual_net_device.register_types(module) |
ae78a8de6f5f
Update bindings for bug 735 fix
Tom Henderson <tomh@tomh.org>
parents:
5754
diff
changeset
|
340 |
|
ae78a8de6f5f
Update bindings for bug 735 fix
Tom Henderson <tomh@tomh.org>
parents:
5754
diff
changeset
|
341 |
try: |
ae78a8de6f5f
Update bindings for bug 735 fix
Tom Henderson <tomh@tomh.org>
parents:
5754
diff
changeset
|
342 |
import ns3_module_virtual_net_device__local |
ae78a8de6f5f
Update bindings for bug 735 fix
Tom Henderson <tomh@tomh.org>
parents:
5754
diff
changeset
|
343 |
except ImportError: |
ae78a8de6f5f
Update bindings for bug 735 fix
Tom Henderson <tomh@tomh.org>
parents:
5754
diff
changeset
|
344 |
pass |
ae78a8de6f5f
Update bindings for bug 735 fix
Tom Henderson <tomh@tomh.org>
parents:
5754
diff
changeset
|
345 |
else: |
ae78a8de6f5f
Update bindings for bug 735 fix
Tom Henderson <tomh@tomh.org>
parents:
5754
diff
changeset
|
346 |
ns3_module_virtual_net_device__local.register_types(module) |
ae78a8de6f5f
Update bindings for bug 735 fix
Tom Henderson <tomh@tomh.org>
parents:
5754
diff
changeset
|
347 |
|
ae78a8de6f5f
Update bindings for bug 735 fix
Tom Henderson <tomh@tomh.org>
parents:
5754
diff
changeset
|
348 |
root_module.end_section('ns3_module_virtual_net_device') |
5753
8c105b521d1b
Python: rescan; need new 'section precedence' API from PyBindGen; other PBG bug fixes pulled from new version.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5504
diff
changeset
|
349 |
root_module.begin_section('ns3_module_wifi') |
8c105b521d1b
Python: rescan; need new 'section precedence' API from PyBindGen; other PBG bug fixes pulled from new version.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5504
diff
changeset
|
350 |
ns3_module_wifi.register_types(module) |
8c105b521d1b
Python: rescan; need new 'section precedence' API from PyBindGen; other PBG bug fixes pulled from new version.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5504
diff
changeset
|
351 |
|
8c105b521d1b
Python: rescan; need new 'section precedence' API from PyBindGen; other PBG bug fixes pulled from new version.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5504
diff
changeset
|
352 |
try: |
8c105b521d1b
Python: rescan; need new 'section precedence' API from PyBindGen; other PBG bug fixes pulled from new version.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5504
diff
changeset
|
353 |
import ns3_module_wifi__local |
8c105b521d1b
Python: rescan; need new 'section precedence' API from PyBindGen; other PBG bug fixes pulled from new version.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5504
diff
changeset
|
354 |
except ImportError: |
8c105b521d1b
Python: rescan; need new 'section precedence' API from PyBindGen; other PBG bug fixes pulled from new version.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5504
diff
changeset
|
355 |
pass |
8c105b521d1b
Python: rescan; need new 'section precedence' API from PyBindGen; other PBG bug fixes pulled from new version.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5504
diff
changeset
|
356 |
else: |
8c105b521d1b
Python: rescan; need new 'section precedence' API from PyBindGen; other PBG bug fixes pulled from new version.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5504
diff
changeset
|
357 |
ns3_module_wifi__local.register_types(module) |
8c105b521d1b
Python: rescan; need new 'section precedence' API from PyBindGen; other PBG bug fixes pulled from new version.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5504
diff
changeset
|
358 |
|
8c105b521d1b
Python: rescan; need new 'section precedence' API from PyBindGen; other PBG bug fixes pulled from new version.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5504
diff
changeset
|
359 |
root_module.end_section('ns3_module_wifi') |
6135
63442dc5ccea
API rescan for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6121
diff
changeset
|
360 |
root_module.begin_section('ns3_module_wimax') |
63442dc5ccea
API rescan for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6121
diff
changeset
|
361 |
ns3_module_wimax.register_types(module) |
63442dc5ccea
API rescan for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6121
diff
changeset
|
362 |
|
63442dc5ccea
API rescan for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6121
diff
changeset
|
363 |
try: |
63442dc5ccea
API rescan for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6121
diff
changeset
|
364 |
import ns3_module_wimax__local |
63442dc5ccea
API rescan for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6121
diff
changeset
|
365 |
except ImportError: |
63442dc5ccea
API rescan for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6121
diff
changeset
|
366 |
pass |
63442dc5ccea
API rescan for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6121
diff
changeset
|
367 |
else: |
63442dc5ccea
API rescan for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6121
diff
changeset
|
368 |
ns3_module_wimax__local.register_types(module) |
63442dc5ccea
API rescan for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6121
diff
changeset
|
369 |
|
63442dc5ccea
API rescan for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6121
diff
changeset
|
370 |
root_module.end_section('ns3_module_wimax') |
5779
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
371 |
root_module.begin_section('ns3_module_aodv') |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
372 |
ns3_module_aodv.register_types(module) |
5249
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
373 |
|
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
374 |
try: |
5779
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
375 |
import ns3_module_aodv__local |
5249
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
376 |
except ImportError: |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
377 |
pass |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
378 |
else: |
5779
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
379 |
ns3_module_aodv__local.register_types(module) |
5249
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
380 |
|
5779
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
381 |
root_module.end_section('ns3_module_aodv') |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
382 |
root_module.begin_section('ns3_module_flow_monitor') |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
383 |
ns3_module_flow_monitor.register_types(module) |
5249
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
384 |
|
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
385 |
try: |
5779
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
386 |
import ns3_module_flow_monitor__local |
5249
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
387 |
except ImportError: |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
388 |
pass |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
389 |
else: |
5779
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
390 |
ns3_module_flow_monitor__local.register_types(module) |
5249
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
391 |
|
5779
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
392 |
root_module.end_section('ns3_module_flow_monitor') |
5249
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
393 |
root_module.begin_section('ns3_module_nix_vector_routing') |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
394 |
ns3_module_nix_vector_routing.register_types(module) |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
395 |
|
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
396 |
try: |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
397 |
import ns3_module_nix_vector_routing__local |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
398 |
except ImportError: |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
399 |
pass |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
400 |
else: |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
401 |
ns3_module_nix_vector_routing__local.register_types(module) |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
402 |
|
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
403 |
root_module.end_section('ns3_module_nix_vector_routing') |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
404 |
root_module.begin_section('ns3_module_olsr') |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
405 |
ns3_module_olsr.register_types(module) |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
406 |
|
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
407 |
try: |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
408 |
import ns3_module_olsr__local |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
409 |
except ImportError: |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
410 |
pass |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
411 |
else: |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
412 |
ns3_module_olsr__local.register_types(module) |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
413 |
|
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
414 |
root_module.end_section('ns3_module_olsr') |
5779
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
415 |
root_module.begin_section('ns3_module_ping6') |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
416 |
ns3_module_ping6.register_types(module) |
5753
8c105b521d1b
Python: rescan; need new 'section precedence' API from PyBindGen; other PBG bug fixes pulled from new version.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5504
diff
changeset
|
417 |
|
8c105b521d1b
Python: rescan; need new 'section precedence' API from PyBindGen; other PBG bug fixes pulled from new version.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5504
diff
changeset
|
418 |
try: |
5779
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
419 |
import ns3_module_ping6__local |
5753
8c105b521d1b
Python: rescan; need new 'section precedence' API from PyBindGen; other PBG bug fixes pulled from new version.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5504
diff
changeset
|
420 |
except ImportError: |
8c105b521d1b
Python: rescan; need new 'section precedence' API from PyBindGen; other PBG bug fixes pulled from new version.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5504
diff
changeset
|
421 |
pass |
8c105b521d1b
Python: rescan; need new 'section precedence' API from PyBindGen; other PBG bug fixes pulled from new version.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5504
diff
changeset
|
422 |
else: |
5779
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
423 |
ns3_module_ping6__local.register_types(module) |
5753
8c105b521d1b
Python: rescan; need new 'section precedence' API from PyBindGen; other PBG bug fixes pulled from new version.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5504
diff
changeset
|
424 |
|
5779
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
425 |
root_module.end_section('ns3_module_ping6') |
5762
ae78a8de6f5f
Update bindings for bug 735 fix
Tom Henderson <tomh@tomh.org>
parents:
5754
diff
changeset
|
426 |
root_module.begin_section('ns3_module_radvd') |
ae78a8de6f5f
Update bindings for bug 735 fix
Tom Henderson <tomh@tomh.org>
parents:
5754
diff
changeset
|
427 |
ns3_module_radvd.register_types(module) |
ae78a8de6f5f
Update bindings for bug 735 fix
Tom Henderson <tomh@tomh.org>
parents:
5754
diff
changeset
|
428 |
|
ae78a8de6f5f
Update bindings for bug 735 fix
Tom Henderson <tomh@tomh.org>
parents:
5754
diff
changeset
|
429 |
try: |
ae78a8de6f5f
Update bindings for bug 735 fix
Tom Henderson <tomh@tomh.org>
parents:
5754
diff
changeset
|
430 |
import ns3_module_radvd__local |
ae78a8de6f5f
Update bindings for bug 735 fix
Tom Henderson <tomh@tomh.org>
parents:
5754
diff
changeset
|
431 |
except ImportError: |
ae78a8de6f5f
Update bindings for bug 735 fix
Tom Henderson <tomh@tomh.org>
parents:
5754
diff
changeset
|
432 |
pass |
ae78a8de6f5f
Update bindings for bug 735 fix
Tom Henderson <tomh@tomh.org>
parents:
5754
diff
changeset
|
433 |
else: |
ae78a8de6f5f
Update bindings for bug 735 fix
Tom Henderson <tomh@tomh.org>
parents:
5754
diff
changeset
|
434 |
ns3_module_radvd__local.register_types(module) |
ae78a8de6f5f
Update bindings for bug 735 fix
Tom Henderson <tomh@tomh.org>
parents:
5754
diff
changeset
|
435 |
|
ae78a8de6f5f
Update bindings for bug 735 fix
Tom Henderson <tomh@tomh.org>
parents:
5754
diff
changeset
|
436 |
root_module.end_section('ns3_module_radvd') |
5821 | 437 |
root_module.begin_section('ns3_module_udp_client_server') |
438 |
ns3_module_udp_client_server.register_types(module) |
|
439 |
||
440 |
try: |
|
441 |
import ns3_module_udp_client_server__local |
|
442 |
except ImportError: |
|
443 |
pass |
|
444 |
else: |
|
445 |
ns3_module_udp_client_server__local.register_types(module) |
|
446 |
||
447 |
root_module.end_section('ns3_module_udp_client_server') |
|
5779
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
448 |
root_module.begin_section('ns3_module_udp_echo') |
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
449 |
ns3_module_udp_echo.register_types(module) |
5762
ae78a8de6f5f
Update bindings for bug 735 fix
Tom Henderson <tomh@tomh.org>
parents:
5754
diff
changeset
|
450 |
|
ae78a8de6f5f
Update bindings for bug 735 fix
Tom Henderson <tomh@tomh.org>
parents:
5754
diff
changeset
|
451 |
try: |
5779
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
452 |
import ns3_module_udp_echo__local |
5762
ae78a8de6f5f
Update bindings for bug 735 fix
Tom Henderson <tomh@tomh.org>
parents:
5754
diff
changeset
|
453 |
except ImportError: |
ae78a8de6f5f
Update bindings for bug 735 fix
Tom Henderson <tomh@tomh.org>
parents:
5754
diff
changeset
|
454 |
pass |
ae78a8de6f5f
Update bindings for bug 735 fix
Tom Henderson <tomh@tomh.org>
parents:
5754
diff
changeset
|
455 |
else: |
5779
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
456 |
ns3_module_udp_echo__local.register_types(module) |
5753
8c105b521d1b
Python: rescan; need new 'section precedence' API from PyBindGen; other PBG bug fixes pulled from new version.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5504
diff
changeset
|
457 |
|
5779
6642920ad056
python apidefs rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
5762
diff
changeset
|
458 |
root_module.end_section('ns3_module_udp_echo') |
5249
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
459 |
root_module.begin_section('ns3_module_mesh') |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
460 |
ns3_module_mesh.register_types(module) |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
461 |
|
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
462 |
try: |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
463 |
import ns3_module_mesh__local |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
464 |
except ImportError: |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
465 |
pass |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
466 |
else: |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
467 |
ns3_module_mesh__local.register_types(module) |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
468 |
|
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
469 |
root_module.end_section('ns3_module_mesh') |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
470 |
root_module.begin_section('ns3_module_helper') |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
471 |
ns3_module_helper.register_types(module) |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
472 |
|
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
473 |
try: |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
474 |
import ns3_module_helper__local |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
475 |
except ImportError: |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
476 |
pass |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
477 |
else: |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
478 |
ns3_module_helper__local.register_types(module) |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
479 |
|
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
480 |
root_module.end_section('ns3_module_helper') |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
481 |
root_module.begin_section('ns3_module_dot11s') |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
482 |
ns3_module_dot11s.register_types(module) |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
483 |
|
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
484 |
try: |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
485 |
import ns3_module_dot11s__local |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
486 |
except ImportError: |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
487 |
pass |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
488 |
else: |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
489 |
ns3_module_dot11s__local.register_types(module) |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
490 |
|
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
491 |
root_module.end_section('ns3_module_dot11s') |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
492 |
root_module.begin_section('ns3_module_flame') |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
493 |
ns3_module_flame.register_types(module) |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
494 |
|
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
495 |
try: |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
496 |
import ns3_module_flame__local |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
497 |
except ImportError: |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
498 |
pass |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
499 |
else: |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
500 |
ns3_module_flame__local.register_types(module) |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
501 |
|
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
502 |
root_module.end_section('ns3_module_flame') |
6435
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
503 |
## energy-model-helper.h: ns3::DeviceEnergyModelHelper [class] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
504 |
module.add_class('DeviceEnergyModelHelper', allow_subclassing=True) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
505 |
## energy-model-helper.h: ns3::EnergyModelHelper [class] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
506 |
module.add_class('EnergyModelHelper') |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
507 |
## energy-model-helper.h: ns3::EnergySourceHelper [class] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
508 |
module.add_class('EnergySourceHelper', allow_subclassing=True) |
6487 | 509 |
## uan-mac-rc.h: ns3::Reservation [class] |
510 |
module.add_class('Reservation') |
|
511 |
## uan-prop-model.h: ns3::Tap [class] |
|
512 |
module.add_class('Tap') |
|
513 |
## uan-address.h: ns3::UanAddress [class] |
|
514 |
module.add_class('UanAddress') |
|
515 |
## uan-address.h: ns3::UanAddress [class] |
|
516 |
root_module['ns3::UanAddress'].implicitly_converts_to(root_module['ns3::Address']) |
|
517 |
## uan-helper.h: ns3::UanHelper [class] |
|
518 |
module.add_class('UanHelper') |
|
519 |
## uan-tx-mode.h: ns3::UanModesList [class] |
|
520 |
module.add_class('UanModesList') |
|
521 |
## uan-transducer.h: ns3::UanPacketArrival [class] |
|
522 |
module.add_class('UanPacketArrival') |
|
523 |
## uan-prop-model.h: ns3::UanPdp [class] |
|
524 |
module.add_class('UanPdp') |
|
525 |
## uan-phy.h: ns3::UanPhyListener [class] |
|
526 |
module.add_class('UanPhyListener', allow_subclassing=True) |
|
527 |
## uan-tx-mode.h: ns3::UanTxMode [class] |
|
528 |
module.add_class('UanTxMode') |
|
529 |
## uan-tx-mode.h: ns3::UanTxMode::ModulationType [enumeration] |
|
530 |
module.add_enum('ModulationType', ['PSK', 'QAM', 'FSK', 'OTHER'], outer_class=root_module['ns3::UanTxMode']) |
|
531 |
## uan-tx-mode.h: ns3::UanTxModeFactory [class] |
|
532 |
module.add_class('UanTxModeFactory') |
|
6435
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
533 |
## basic-energy-source-helper.h: ns3::BasicEnergySourceHelper [class] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
534 |
module.add_class('BasicEnergySourceHelper', parent=root_module['ns3::EnergySourceHelper']) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
535 |
## basic-radio-energy-model-helper.h: ns3::BasicRadioEnergyModelHelper [class] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
536 |
module.add_class('BasicRadioEnergyModelHelper', parent=root_module['ns3::DeviceEnergyModelHelper']) |
6487 | 537 |
## uan-header-common.h: ns3::UanHeaderCommon [class] |
538 |
module.add_class('UanHeaderCommon', parent=root_module['ns3::Header']) |
|
539 |
## uan-header-rc.h: ns3::UanHeaderRcAck [class] |
|
540 |
module.add_class('UanHeaderRcAck', parent=root_module['ns3::Header']) |
|
541 |
## uan-header-rc.h: ns3::UanHeaderRcCts [class] |
|
542 |
module.add_class('UanHeaderRcCts', parent=root_module['ns3::Header']) |
|
543 |
## uan-header-rc.h: ns3::UanHeaderRcCtsGlobal [class] |
|
544 |
module.add_class('UanHeaderRcCtsGlobal', parent=root_module['ns3::Header']) |
|
545 |
## uan-header-rc.h: ns3::UanHeaderRcData [class] |
|
546 |
module.add_class('UanHeaderRcData', parent=root_module['ns3::Header']) |
|
547 |
## uan-header-rc.h: ns3::UanHeaderRcRts [class] |
|
548 |
module.add_class('UanHeaderRcRts', parent=root_module['ns3::Header']) |
|
549 |
## uan-mac.h: ns3::UanMac [class] |
|
550 |
module.add_class('UanMac', parent=root_module['ns3::Object']) |
|
551 |
## uan-mac-aloha.h: ns3::UanMacAloha [class] |
|
552 |
module.add_class('UanMacAloha', parent=root_module['ns3::UanMac']) |
|
553 |
## uan-mac-cw.h: ns3::UanMacCw [class] |
|
554 |
module.add_class('UanMacCw', parent=[root_module['ns3::UanMac'], root_module['ns3::UanPhyListener']]) |
|
555 |
## uan-mac-rc.h: ns3::UanMacRc [class] |
|
556 |
module.add_class('UanMacRc', parent=root_module['ns3::UanMac']) |
|
557 |
## uan-mac-rc.h: ns3::UanMacRc [enumeration] |
|
558 |
module.add_enum('', ['TYPE_DATA', 'TYPE_GWPING', 'TYPE_RTS', 'TYPE_CTS', 'TYPE_ACK'], outer_class=root_module['ns3::UanMacRc']) |
|
559 |
## uan-mac-rc-gw.h: ns3::UanMacRcGw [class] |
|
560 |
module.add_class('UanMacRcGw', parent=root_module['ns3::UanMac']) |
|
561 |
## uan-noise-model.h: ns3::UanNoiseModel [class] |
|
562 |
module.add_class('UanNoiseModel', parent=root_module['ns3::Object']) |
|
563 |
## uan-noise-model-default.h: ns3::UanNoiseModelDefault [class] |
|
564 |
module.add_class('UanNoiseModelDefault', parent=root_module['ns3::UanNoiseModel']) |
|
565 |
## uan-phy.h: ns3::UanPhy [class] |
|
566 |
module.add_class('UanPhy', parent=root_module['ns3::Object']) |
|
567 |
## uan-phy.h: ns3::UanPhy::State [enumeration] |
|
568 |
module.add_enum('State', ['IDLE', 'CCABUSY', 'RX', 'TX'], outer_class=root_module['ns3::UanPhy']) |
|
569 |
## uan-phy.h: ns3::UanPhyCalcSinr [class] |
|
570 |
module.add_class('UanPhyCalcSinr', parent=root_module['ns3::Object']) |
|
571 |
## uan-phy-gen.h: ns3::UanPhyCalcSinrDefault [class] |
|
572 |
module.add_class('UanPhyCalcSinrDefault', parent=root_module['ns3::UanPhyCalcSinr']) |
|
573 |
## uan-phy-dual.h: ns3::UanPhyCalcSinrDual [class] |
|
574 |
module.add_class('UanPhyCalcSinrDual', parent=root_module['ns3::UanPhyCalcSinr']) |
|
575 |
## uan-phy-gen.h: ns3::UanPhyCalcSinrFhFsk [class] |
|
576 |
module.add_class('UanPhyCalcSinrFhFsk', parent=root_module['ns3::UanPhyCalcSinr']) |
|
577 |
## uan-phy-dual.h: ns3::UanPhyDual [class] |
|
578 |
module.add_class('UanPhyDual', parent=root_module['ns3::UanPhy']) |
|
579 |
## uan-phy-gen.h: ns3::UanPhyGen [class] |
|
580 |
module.add_class('UanPhyGen', parent=root_module['ns3::UanPhy']) |
|
581 |
## uan-phy.h: ns3::UanPhyPer [class] |
|
582 |
module.add_class('UanPhyPer', parent=root_module['ns3::Object']) |
|
583 |
## uan-phy-gen.h: ns3::UanPhyPerGenDefault [class] |
|
584 |
module.add_class('UanPhyPerGenDefault', parent=root_module['ns3::UanPhyPer']) |
|
585 |
## uan-phy-gen.h: ns3::UanPhyPerUmodem [class] |
|
586 |
module.add_class('UanPhyPerUmodem', parent=root_module['ns3::UanPhyPer']) |
|
587 |
## uan-prop-model.h: ns3::UanPropModel [class] |
|
588 |
module.add_class('UanPropModel', parent=root_module['ns3::Object']) |
|
589 |
## uan-prop-model-ideal.h: ns3::UanPropModelIdeal [class] |
|
590 |
module.add_class('UanPropModelIdeal', parent=root_module['ns3::UanPropModel']) |
|
591 |
## uan-prop-model-thorp.h: ns3::UanPropModelThorp [class] |
|
592 |
module.add_class('UanPropModelThorp', parent=root_module['ns3::UanPropModel']) |
|
593 |
## uan-transducer.h: ns3::UanTransducer [class] |
|
594 |
module.add_class('UanTransducer', parent=root_module['ns3::Object']) |
|
595 |
## uan-transducer.h: ns3::UanTransducer::State [enumeration] |
|
596 |
module.add_enum('State', ['TX', 'RX'], outer_class=root_module['ns3::UanTransducer']) |
|
597 |
## uan-transducer-hd.h: ns3::UanTransducerHd [class] |
|
598 |
module.add_class('UanTransducerHd', parent=root_module['ns3::UanTransducer']) |
|
6435
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
599 |
## device-energy-model.h: ns3::DeviceEnergyModel [class] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
600 |
module.add_class('DeviceEnergyModel', parent=root_module['ns3::Object']) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
601 |
## energy-source.h: ns3::EnergySource [class] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
602 |
module.add_class('EnergySource', parent=root_module['ns3::Object']) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
603 |
## radio-energy-model.h: ns3::RadioEnergyModel [class] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
604 |
module.add_class('RadioEnergyModel', parent=root_module['ns3::DeviceEnergyModel']) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
605 |
## radio-energy-model.h: ns3::RadioEnergyModel::RadioState [enumeration] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
606 |
module.add_enum('RadioState', ['TX', 'RX', 'IDLE', 'SLEEP'], outer_class=root_module['ns3::RadioEnergyModel']) |
6487 | 607 |
## uan-channel.h: ns3::UanChannel [class] |
608 |
module.add_class('UanChannel', parent=root_module['ns3::Channel']) |
|
609 |
## uan-tx-mode.h: ns3::UanModesListChecker [class] |
|
610 |
module.add_class('UanModesListChecker', parent=root_module['ns3::AttributeChecker']) |
|
611 |
## uan-tx-mode.h: ns3::UanModesListValue [class] |
|
612 |
module.add_class('UanModesListValue', parent=root_module['ns3::AttributeValue']) |
|
613 |
## uan-net-device.h: ns3::UanNetDevice [class] |
|
614 |
module.add_class('UanNetDevice', parent=root_module['ns3::NetDevice']) |
|
6435
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
615 |
## basic-energy-source.h: ns3::BasicEnergySource [class] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
616 |
module.add_class('BasicEnergySource', parent=root_module['ns3::EnergySource']) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
617 |
## basic-radio-energy-model.h: ns3::BasicRadioEnergyModel [class] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
618 |
module.add_class('BasicRadioEnergyModel', parent=root_module['ns3::RadioEnergyModel']) |
6029
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
619 |
module.add_container('std::vector< unsigned int >', 'unsigned int', container_type='vector') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
620 |
module.add_container('std::vector< bool >', 'bool', container_type='vector') |
6377 | 621 |
module.add_container('std::list< std::pair< ns3::Ptr< ns3::Packet >, ns3::UanAddress > >', 'std::pair< ns3::Ptr< ns3::Packet >, ns3::UanAddress >', container_type='list') |
6135
63442dc5ccea
API rescan for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6121
diff
changeset
|
622 |
module.add_container('std::vector< ns3::ServiceFlow * >', 'ns3::ServiceFlow *', container_type='vector') |
6487 | 623 |
module.add_container('std::vector< ns3::Tap >', 'ns3::Tap', container_type='vector') |
6377 | 624 |
module.add_container('std::vector< std::complex< double > >', 'std::complex< double >', container_type='vector') |
625 |
module.add_container('std::vector< double >', 'double', container_type='vector') |
|
6135
63442dc5ccea
API rescan for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6121
diff
changeset
|
626 |
module.add_container('ns3::bvec', 'bool', container_type='vector') |
63442dc5ccea
API rescan for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6121
diff
changeset
|
627 |
module.add_container('std::vector< ns3::SSRecord * >', 'ns3::SSRecord *', container_type='vector') |
63442dc5ccea
API rescan for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6121
diff
changeset
|
628 |
module.add_container('std::map< std::string, std::string >', ('std::string', 'std::string'), container_type='map') |
6377 | 629 |
module.add_container('std::set< unsigned char >', 'unsigned char', container_type='set') |
6487 | 630 |
module.add_container('std::list< ns3::UanPacketArrival >', 'ns3::UanPacketArrival', container_type='list') |
6135
63442dc5ccea
API rescan for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6121
diff
changeset
|
631 |
module.add_container('std::list< std::pair< ns3::OfdmDlMapIe *, ns3::Ptr< ns3::PacketBurst > > >', 'std::pair< ns3::OfdmDlMapIe *, ns3::Ptr< ns3::PacketBurst > >', container_type='list') |
6029
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
632 |
module.add_container('std::vector< unsigned long >', 'long unsigned int', container_type='vector') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
633 |
module.add_container('std::list< unsigned int >', 'unsigned int', container_type='list') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
634 |
module.add_container('std::list< std::pair< ns3::Ptr< ns3::Packet >, ns3::AmsduSubframeHeader > >', 'std::pair< ns3::Ptr< ns3::Packet >, ns3::AmsduSubframeHeader >', container_type='list') |
6377 | 635 |
module.add_container('std::vector< std::pair< ns3::Ptr< ns3::UanNetDevice >, ns3::Ptr< ns3::UanTransducer > > >', 'std::pair< ns3::Ptr< ns3::UanNetDevice >, ns3::Ptr< ns3::UanTransducer > >', container_type='vector') |
6029
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
636 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
637 |
## Register a nested module for the namespace Config |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
638 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
639 |
nested_module = module.add_cpp_namespace('Config') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
640 |
register_types_ns3_Config(nested_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
641 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
642 |
|
6375 | 643 |
## Register a nested module for the namespace FatalImpl |
644 |
||
645 |
nested_module = module.add_cpp_namespace('FatalImpl') |
|
646 |
register_types_ns3_FatalImpl(nested_module) |
|
647 |
||
648 |
||
6029
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
649 |
## Register a nested module for the namespace TimeStepPrecision |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
650 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
651 |
nested_module = module.add_cpp_namespace('TimeStepPrecision') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
652 |
register_types_ns3_TimeStepPrecision(nested_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
653 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
654 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
655 |
## Register a nested module for the namespace addressUtils |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
656 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
657 |
nested_module = module.add_cpp_namespace('addressUtils') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
658 |
register_types_ns3_addressUtils(nested_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
659 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
660 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
661 |
## Register a nested module for the namespace aodv |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
662 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
663 |
nested_module = module.add_cpp_namespace('aodv') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
664 |
register_types_ns3_aodv(nested_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
665 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
666 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
667 |
## Register a nested module for the namespace dot11s |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
668 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
669 |
nested_module = module.add_cpp_namespace('dot11s') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
670 |
register_types_ns3_dot11s(nested_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
671 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
672 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
673 |
## Register a nested module for the namespace flame |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
674 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
675 |
nested_module = module.add_cpp_namespace('flame') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
676 |
register_types_ns3_flame(nested_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
677 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
678 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
679 |
## Register a nested module for the namespace internal |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
680 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
681 |
nested_module = module.add_cpp_namespace('internal') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
682 |
register_types_ns3_internal(nested_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
683 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
684 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
685 |
## Register a nested module for the namespace olsr |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
686 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
687 |
nested_module = module.add_cpp_namespace('olsr') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
688 |
register_types_ns3_olsr(nested_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
689 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
690 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
691 |
def register_types_ns3_Config(module): |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
692 |
root_module = module.get_root() |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
693 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
694 |
module.add_container('std::vector< std::string >', 'std::string', container_type='vector') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
695 |
|
6375 | 696 |
def register_types_ns3_FatalImpl(module): |
697 |
root_module = module.get_root() |
|
698 |
||
699 |
||
6029
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
700 |
def register_types_ns3_TimeStepPrecision(module): |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
701 |
root_module = module.get_root() |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
702 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
703 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
704 |
def register_types_ns3_addressUtils(module): |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
705 |
root_module = module.get_root() |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
706 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
707 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
708 |
def register_types_ns3_aodv(module): |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
709 |
root_module = module.get_root() |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
710 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
711 |
module.add_container('std::map< ns3::Ipv4Address, unsigned int >', ('ns3::Ipv4Address', 'unsigned int'), container_type='map') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
712 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
713 |
def register_types_ns3_dot11s(module): |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
714 |
root_module = module.get_root() |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
715 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
716 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
717 |
def register_types_ns3_flame(module): |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
718 |
root_module = module.get_root() |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
719 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
720 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
721 |
def register_types_ns3_internal(module): |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
722 |
root_module = module.get_root() |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
723 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
724 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
725 |
def register_types_ns3_olsr(module): |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
726 |
root_module = module.get_root() |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
727 |
|
6141 | 728 |
module.add_container('std::set< unsigned int >', 'unsigned int', container_type='set') |
6029
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
729 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
730 |
def register_methods(root_module): |
6435
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
731 |
register_Ns3DeviceEnergyModelHelper_methods(root_module, root_module['ns3::DeviceEnergyModelHelper']) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
732 |
register_Ns3EnergyModelHelper_methods(root_module, root_module['ns3::EnergyModelHelper']) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
733 |
register_Ns3EnergySourceHelper_methods(root_module, root_module['ns3::EnergySourceHelper']) |
6487 | 734 |
register_Ns3Reservation_methods(root_module, root_module['ns3::Reservation']) |
735 |
register_Ns3Tap_methods(root_module, root_module['ns3::Tap']) |
|
736 |
register_Ns3UanAddress_methods(root_module, root_module['ns3::UanAddress']) |
|
737 |
register_Ns3UanHelper_methods(root_module, root_module['ns3::UanHelper']) |
|
738 |
register_Ns3UanModesList_methods(root_module, root_module['ns3::UanModesList']) |
|
739 |
register_Ns3UanPacketArrival_methods(root_module, root_module['ns3::UanPacketArrival']) |
|
740 |
register_Ns3UanPdp_methods(root_module, root_module['ns3::UanPdp']) |
|
741 |
register_Ns3UanPhyListener_methods(root_module, root_module['ns3::UanPhyListener']) |
|
742 |
register_Ns3UanTxMode_methods(root_module, root_module['ns3::UanTxMode']) |
|
743 |
register_Ns3UanTxModeFactory_methods(root_module, root_module['ns3::UanTxModeFactory']) |
|
6435
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
744 |
register_Ns3BasicEnergySourceHelper_methods(root_module, root_module['ns3::BasicEnergySourceHelper']) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
745 |
register_Ns3BasicRadioEnergyModelHelper_methods(root_module, root_module['ns3::BasicRadioEnergyModelHelper']) |
6487 | 746 |
register_Ns3UanHeaderCommon_methods(root_module, root_module['ns3::UanHeaderCommon']) |
747 |
register_Ns3UanHeaderRcAck_methods(root_module, root_module['ns3::UanHeaderRcAck']) |
|
748 |
register_Ns3UanHeaderRcCts_methods(root_module, root_module['ns3::UanHeaderRcCts']) |
|
749 |
register_Ns3UanHeaderRcCtsGlobal_methods(root_module, root_module['ns3::UanHeaderRcCtsGlobal']) |
|
750 |
register_Ns3UanHeaderRcData_methods(root_module, root_module['ns3::UanHeaderRcData']) |
|
751 |
register_Ns3UanHeaderRcRts_methods(root_module, root_module['ns3::UanHeaderRcRts']) |
|
752 |
register_Ns3UanMac_methods(root_module, root_module['ns3::UanMac']) |
|
753 |
register_Ns3UanMacAloha_methods(root_module, root_module['ns3::UanMacAloha']) |
|
754 |
register_Ns3UanMacCw_methods(root_module, root_module['ns3::UanMacCw']) |
|
755 |
register_Ns3UanMacRc_methods(root_module, root_module['ns3::UanMacRc']) |
|
756 |
register_Ns3UanMacRcGw_methods(root_module, root_module['ns3::UanMacRcGw']) |
|
757 |
register_Ns3UanNoiseModel_methods(root_module, root_module['ns3::UanNoiseModel']) |
|
758 |
register_Ns3UanNoiseModelDefault_methods(root_module, root_module['ns3::UanNoiseModelDefault']) |
|
759 |
register_Ns3UanPhy_methods(root_module, root_module['ns3::UanPhy']) |
|
760 |
register_Ns3UanPhyCalcSinr_methods(root_module, root_module['ns3::UanPhyCalcSinr']) |
|
761 |
register_Ns3UanPhyCalcSinrDefault_methods(root_module, root_module['ns3::UanPhyCalcSinrDefault']) |
|
762 |
register_Ns3UanPhyCalcSinrDual_methods(root_module, root_module['ns3::UanPhyCalcSinrDual']) |
|
763 |
register_Ns3UanPhyCalcSinrFhFsk_methods(root_module, root_module['ns3::UanPhyCalcSinrFhFsk']) |
|
764 |
register_Ns3UanPhyDual_methods(root_module, root_module['ns3::UanPhyDual']) |
|
765 |
register_Ns3UanPhyGen_methods(root_module, root_module['ns3::UanPhyGen']) |
|
766 |
register_Ns3UanPhyPer_methods(root_module, root_module['ns3::UanPhyPer']) |
|
767 |
register_Ns3UanPhyPerGenDefault_methods(root_module, root_module['ns3::UanPhyPerGenDefault']) |
|
768 |
register_Ns3UanPhyPerUmodem_methods(root_module, root_module['ns3::UanPhyPerUmodem']) |
|
769 |
register_Ns3UanPropModel_methods(root_module, root_module['ns3::UanPropModel']) |
|
770 |
register_Ns3UanPropModelIdeal_methods(root_module, root_module['ns3::UanPropModelIdeal']) |
|
771 |
register_Ns3UanPropModelThorp_methods(root_module, root_module['ns3::UanPropModelThorp']) |
|
772 |
register_Ns3UanTransducer_methods(root_module, root_module['ns3::UanTransducer']) |
|
773 |
register_Ns3UanTransducerHd_methods(root_module, root_module['ns3::UanTransducerHd']) |
|
6435
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
774 |
register_Ns3DeviceEnergyModel_methods(root_module, root_module['ns3::DeviceEnergyModel']) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
775 |
register_Ns3EnergySource_methods(root_module, root_module['ns3::EnergySource']) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
776 |
register_Ns3RadioEnergyModel_methods(root_module, root_module['ns3::RadioEnergyModel']) |
6487 | 777 |
register_Ns3UanChannel_methods(root_module, root_module['ns3::UanChannel']) |
778 |
register_Ns3UanModesListChecker_methods(root_module, root_module['ns3::UanModesListChecker']) |
|
779 |
register_Ns3UanModesListValue_methods(root_module, root_module['ns3::UanModesListValue']) |
|
780 |
register_Ns3UanNetDevice_methods(root_module, root_module['ns3::UanNetDevice']) |
|
6435
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
781 |
register_Ns3BasicEnergySource_methods(root_module, root_module['ns3::BasicEnergySource']) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
782 |
register_Ns3BasicRadioEnergyModel_methods(root_module, root_module['ns3::BasicRadioEnergyModel']) |
6029
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
783 |
root_module.begin_section('ns3_module_core') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
784 |
ns3_module_core.register_methods(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
785 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
786 |
try: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
787 |
import ns3_module_core__local |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
788 |
except ImportError: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
789 |
pass |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
790 |
else: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
791 |
ns3_module_core__local.register_methods(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
792 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
793 |
root_module.end_section('ns3_module_core') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
794 |
root_module.begin_section('ns3_module_simulator') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
795 |
ns3_module_simulator.register_methods(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
796 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
797 |
try: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
798 |
import ns3_module_simulator__local |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
799 |
except ImportError: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
800 |
pass |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
801 |
else: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
802 |
ns3_module_simulator__local.register_methods(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
803 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
804 |
root_module.end_section('ns3_module_simulator') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
805 |
root_module.begin_section('ns3_module_test') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
806 |
ns3_module_test.register_methods(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
807 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
808 |
try: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
809 |
import ns3_module_test__local |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
810 |
except ImportError: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
811 |
pass |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
812 |
else: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
813 |
ns3_module_test__local.register_methods(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
814 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
815 |
root_module.end_section('ns3_module_test') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
816 |
root_module.begin_section('ns3_module_common') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
817 |
ns3_module_common.register_methods(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
818 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
819 |
try: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
820 |
import ns3_module_common__local |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
821 |
except ImportError: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
822 |
pass |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
823 |
else: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
824 |
ns3_module_common__local.register_methods(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
825 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
826 |
root_module.end_section('ns3_module_common') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
827 |
root_module.begin_section('ns3_module_mobility') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
828 |
ns3_module_mobility.register_methods(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
829 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
830 |
try: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
831 |
import ns3_module_mobility__local |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
832 |
except ImportError: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
833 |
pass |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
834 |
else: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
835 |
ns3_module_mobility__local.register_methods(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
836 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
837 |
root_module.end_section('ns3_module_mobility') |
6113
0ce37bf4f1c1
Merge distributed simulation code
Josh Pelkey <jpelkey@gatech.edu>
parents:
6029
diff
changeset
|
838 |
root_module.begin_section('ns3_module_mpi') |
0ce37bf4f1c1
Merge distributed simulation code
Josh Pelkey <jpelkey@gatech.edu>
parents:
6029
diff
changeset
|
839 |
ns3_module_mpi.register_methods(root_module) |
0ce37bf4f1c1
Merge distributed simulation code
Josh Pelkey <jpelkey@gatech.edu>
parents:
6029
diff
changeset
|
840 |
|
0ce37bf4f1c1
Merge distributed simulation code
Josh Pelkey <jpelkey@gatech.edu>
parents:
6029
diff
changeset
|
841 |
try: |
0ce37bf4f1c1
Merge distributed simulation code
Josh Pelkey <jpelkey@gatech.edu>
parents:
6029
diff
changeset
|
842 |
import ns3_module_mpi__local |
0ce37bf4f1c1
Merge distributed simulation code
Josh Pelkey <jpelkey@gatech.edu>
parents:
6029
diff
changeset
|
843 |
except ImportError: |
0ce37bf4f1c1
Merge distributed simulation code
Josh Pelkey <jpelkey@gatech.edu>
parents:
6029
diff
changeset
|
844 |
pass |
0ce37bf4f1c1
Merge distributed simulation code
Josh Pelkey <jpelkey@gatech.edu>
parents:
6029
diff
changeset
|
845 |
else: |
0ce37bf4f1c1
Merge distributed simulation code
Josh Pelkey <jpelkey@gatech.edu>
parents:
6029
diff
changeset
|
846 |
ns3_module_mpi__local.register_methods(root_module) |
0ce37bf4f1c1
Merge distributed simulation code
Josh Pelkey <jpelkey@gatech.edu>
parents:
6029
diff
changeset
|
847 |
|
0ce37bf4f1c1
Merge distributed simulation code
Josh Pelkey <jpelkey@gatech.edu>
parents:
6029
diff
changeset
|
848 |
root_module.end_section('ns3_module_mpi') |
6029
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
849 |
root_module.begin_section('ns3_module_contrib') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
850 |
ns3_module_contrib.register_methods(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
851 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
852 |
try: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
853 |
import ns3_module_contrib__local |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
854 |
except ImportError: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
855 |
pass |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
856 |
else: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
857 |
ns3_module_contrib__local.register_methods(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
858 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
859 |
root_module.end_section('ns3_module_contrib') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
860 |
root_module.begin_section('ns3_module_node') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
861 |
ns3_module_node.register_methods(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
862 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
863 |
try: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
864 |
import ns3_module_node__local |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
865 |
except ImportError: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
866 |
pass |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
867 |
else: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
868 |
ns3_module_node__local.register_methods(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
869 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
870 |
root_module.end_section('ns3_module_node') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
871 |
root_module.begin_section('ns3_module_bridge') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
872 |
ns3_module_bridge.register_methods(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
873 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
874 |
try: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
875 |
import ns3_module_bridge__local |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
876 |
except ImportError: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
877 |
pass |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
878 |
else: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
879 |
ns3_module_bridge__local.register_methods(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
880 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
881 |
root_module.end_section('ns3_module_bridge') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
882 |
root_module.begin_section('ns3_module_csma') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
883 |
ns3_module_csma.register_methods(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
884 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
885 |
try: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
886 |
import ns3_module_csma__local |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
887 |
except ImportError: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
888 |
pass |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
889 |
else: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
890 |
ns3_module_csma__local.register_methods(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
891 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
892 |
root_module.end_section('ns3_module_csma') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
893 |
root_module.begin_section('ns3_module_emu') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
894 |
ns3_module_emu.register_methods(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
895 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
896 |
try: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
897 |
import ns3_module_emu__local |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
898 |
except ImportError: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
899 |
pass |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
900 |
else: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
901 |
ns3_module_emu__local.register_methods(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
902 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
903 |
root_module.end_section('ns3_module_emu') |
6435
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
904 |
root_module.begin_section('ns3_module_energy') |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
905 |
ns3_module_energy.register_methods(root_module) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
906 |
|
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
907 |
try: |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
908 |
import ns3_module_energy__local |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
909 |
except ImportError: |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
910 |
pass |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
911 |
else: |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
912 |
ns3_module_energy__local.register_methods(root_module) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
913 |
|
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
914 |
root_module.end_section('ns3_module_energy') |
6029
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
915 |
root_module.begin_section('ns3_module_global_routing') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
916 |
ns3_module_global_routing.register_methods(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
917 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
918 |
try: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
919 |
import ns3_module_global_routing__local |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
920 |
except ImportError: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
921 |
pass |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
922 |
else: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
923 |
ns3_module_global_routing__local.register_methods(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
924 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
925 |
root_module.end_section('ns3_module_global_routing') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
926 |
root_module.begin_section('ns3_module_internet_stack') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
927 |
ns3_module_internet_stack.register_methods(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
928 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
929 |
try: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
930 |
import ns3_module_internet_stack__local |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
931 |
except ImportError: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
932 |
pass |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
933 |
else: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
934 |
ns3_module_internet_stack__local.register_methods(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
935 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
936 |
root_module.end_section('ns3_module_internet_stack') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
937 |
root_module.begin_section('ns3_module_list_routing') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
938 |
ns3_module_list_routing.register_methods(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
939 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
940 |
try: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
941 |
import ns3_module_list_routing__local |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
942 |
except ImportError: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
943 |
pass |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
944 |
else: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
945 |
ns3_module_list_routing__local.register_methods(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
946 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
947 |
root_module.end_section('ns3_module_list_routing') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
948 |
root_module.begin_section('ns3_module_onoff') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
949 |
ns3_module_onoff.register_methods(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
950 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
951 |
try: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
952 |
import ns3_module_onoff__local |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
953 |
except ImportError: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
954 |
pass |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
955 |
else: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
956 |
ns3_module_onoff__local.register_methods(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
957 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
958 |
root_module.end_section('ns3_module_onoff') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
959 |
root_module.begin_section('ns3_module_packet_sink') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
960 |
ns3_module_packet_sink.register_methods(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
961 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
962 |
try: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
963 |
import ns3_module_packet_sink__local |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
964 |
except ImportError: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
965 |
pass |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
966 |
else: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
967 |
ns3_module_packet_sink__local.register_methods(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
968 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
969 |
root_module.end_section('ns3_module_packet_sink') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
970 |
root_module.begin_section('ns3_module_point_to_point') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
971 |
ns3_module_point_to_point.register_methods(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
972 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
973 |
try: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
974 |
import ns3_module_point_to_point__local |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
975 |
except ImportError: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
976 |
pass |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
977 |
else: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
978 |
ns3_module_point_to_point__local.register_methods(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
979 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
980 |
root_module.end_section('ns3_module_point_to_point') |
6356
1b8a736858cc
Rescan API for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6141
diff
changeset
|
981 |
root_module.begin_section('ns3_module_spectrum') |
1b8a736858cc
Rescan API for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6141
diff
changeset
|
982 |
ns3_module_spectrum.register_methods(root_module) |
1b8a736858cc
Rescan API for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6141
diff
changeset
|
983 |
|
1b8a736858cc
Rescan API for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6141
diff
changeset
|
984 |
try: |
1b8a736858cc
Rescan API for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6141
diff
changeset
|
985 |
import ns3_module_spectrum__local |
1b8a736858cc
Rescan API for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6141
diff
changeset
|
986 |
except ImportError: |
1b8a736858cc
Rescan API for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6141
diff
changeset
|
987 |
pass |
1b8a736858cc
Rescan API for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6141
diff
changeset
|
988 |
else: |
1b8a736858cc
Rescan API for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6141
diff
changeset
|
989 |
ns3_module_spectrum__local.register_methods(root_module) |
1b8a736858cc
Rescan API for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6141
diff
changeset
|
990 |
|
1b8a736858cc
Rescan API for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6141
diff
changeset
|
991 |
root_module.end_section('ns3_module_spectrum') |
6029
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
992 |
root_module.begin_section('ns3_module_static_routing') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
993 |
ns3_module_static_routing.register_methods(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
994 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
995 |
try: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
996 |
import ns3_module_static_routing__local |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
997 |
except ImportError: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
998 |
pass |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
999 |
else: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1000 |
ns3_module_static_routing__local.register_methods(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1001 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1002 |
root_module.end_section('ns3_module_static_routing') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1003 |
root_module.begin_section('ns3_module_stats') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1004 |
ns3_module_stats.register_methods(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1005 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1006 |
try: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1007 |
import ns3_module_stats__local |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1008 |
except ImportError: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1009 |
pass |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1010 |
else: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1011 |
ns3_module_stats__local.register_methods(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1012 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1013 |
root_module.end_section('ns3_module_stats') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1014 |
root_module.begin_section('ns3_module_tap_bridge') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1015 |
ns3_module_tap_bridge.register_methods(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1016 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1017 |
try: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1018 |
import ns3_module_tap_bridge__local |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1019 |
except ImportError: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1020 |
pass |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1021 |
else: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1022 |
ns3_module_tap_bridge__local.register_methods(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1023 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1024 |
root_module.end_section('ns3_module_tap_bridge') |
6135
63442dc5ccea
API rescan for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6121
diff
changeset
|
1025 |
root_module.begin_section('ns3_module_topology_read') |
63442dc5ccea
API rescan for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6121
diff
changeset
|
1026 |
ns3_module_topology_read.register_methods(root_module) |
63442dc5ccea
API rescan for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6121
diff
changeset
|
1027 |
|
63442dc5ccea
API rescan for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6121
diff
changeset
|
1028 |
try: |
63442dc5ccea
API rescan for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6121
diff
changeset
|
1029 |
import ns3_module_topology_read__local |
63442dc5ccea
API rescan for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6121
diff
changeset
|
1030 |
except ImportError: |
63442dc5ccea
API rescan for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6121
diff
changeset
|
1031 |
pass |
63442dc5ccea
API rescan for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6121
diff
changeset
|
1032 |
else: |
63442dc5ccea
API rescan for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6121
diff
changeset
|
1033 |
ns3_module_topology_read__local.register_methods(root_module) |
63442dc5ccea
API rescan for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6121
diff
changeset
|
1034 |
|
63442dc5ccea
API rescan for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6121
diff
changeset
|
1035 |
root_module.end_section('ns3_module_topology_read') |
6377 | 1036 |
root_module.begin_section('ns3_module_uan') |
1037 |
ns3_module_uan.register_methods(root_module) |
|
1038 |
||
1039 |
try: |
|
1040 |
import ns3_module_uan__local |
|
1041 |
except ImportError: |
|
1042 |
pass |
|
1043 |
else: |
|
1044 |
ns3_module_uan__local.register_methods(root_module) |
|
1045 |
||
1046 |
root_module.end_section('ns3_module_uan') |
|
6029
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1047 |
root_module.begin_section('ns3_module_v4ping') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1048 |
ns3_module_v4ping.register_methods(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1049 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1050 |
try: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1051 |
import ns3_module_v4ping__local |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1052 |
except ImportError: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1053 |
pass |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1054 |
else: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1055 |
ns3_module_v4ping__local.register_methods(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1056 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1057 |
root_module.end_section('ns3_module_v4ping') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1058 |
root_module.begin_section('ns3_module_virtual_net_device') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1059 |
ns3_module_virtual_net_device.register_methods(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1060 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1061 |
try: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1062 |
import ns3_module_virtual_net_device__local |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1063 |
except ImportError: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1064 |
pass |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1065 |
else: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1066 |
ns3_module_virtual_net_device__local.register_methods(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1067 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1068 |
root_module.end_section('ns3_module_virtual_net_device') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1069 |
root_module.begin_section('ns3_module_wifi') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1070 |
ns3_module_wifi.register_methods(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1071 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1072 |
try: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1073 |
import ns3_module_wifi__local |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1074 |
except ImportError: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1075 |
pass |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1076 |
else: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1077 |
ns3_module_wifi__local.register_methods(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1078 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1079 |
root_module.end_section('ns3_module_wifi') |
6135
63442dc5ccea
API rescan for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6121
diff
changeset
|
1080 |
root_module.begin_section('ns3_module_wimax') |
63442dc5ccea
API rescan for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6121
diff
changeset
|
1081 |
ns3_module_wimax.register_methods(root_module) |
63442dc5ccea
API rescan for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6121
diff
changeset
|
1082 |
|
63442dc5ccea
API rescan for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6121
diff
changeset
|
1083 |
try: |
63442dc5ccea
API rescan for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6121
diff
changeset
|
1084 |
import ns3_module_wimax__local |
63442dc5ccea
API rescan for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6121
diff
changeset
|
1085 |
except ImportError: |
63442dc5ccea
API rescan for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6121
diff
changeset
|
1086 |
pass |
63442dc5ccea
API rescan for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6121
diff
changeset
|
1087 |
else: |
63442dc5ccea
API rescan for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6121
diff
changeset
|
1088 |
ns3_module_wimax__local.register_methods(root_module) |
63442dc5ccea
API rescan for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6121
diff
changeset
|
1089 |
|
63442dc5ccea
API rescan for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6121
diff
changeset
|
1090 |
root_module.end_section('ns3_module_wimax') |
6029
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1091 |
root_module.begin_section('ns3_module_aodv') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1092 |
ns3_module_aodv.register_methods(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1093 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1094 |
try: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1095 |
import ns3_module_aodv__local |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1096 |
except ImportError: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1097 |
pass |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1098 |
else: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1099 |
ns3_module_aodv__local.register_methods(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1100 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1101 |
root_module.end_section('ns3_module_aodv') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1102 |
root_module.begin_section('ns3_module_flow_monitor') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1103 |
ns3_module_flow_monitor.register_methods(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1104 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1105 |
try: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1106 |
import ns3_module_flow_monitor__local |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1107 |
except ImportError: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1108 |
pass |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1109 |
else: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1110 |
ns3_module_flow_monitor__local.register_methods(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1111 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1112 |
root_module.end_section('ns3_module_flow_monitor') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1113 |
root_module.begin_section('ns3_module_nix_vector_routing') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1114 |
ns3_module_nix_vector_routing.register_methods(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1115 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1116 |
try: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1117 |
import ns3_module_nix_vector_routing__local |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1118 |
except ImportError: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1119 |
pass |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1120 |
else: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1121 |
ns3_module_nix_vector_routing__local.register_methods(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1122 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1123 |
root_module.end_section('ns3_module_nix_vector_routing') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1124 |
root_module.begin_section('ns3_module_olsr') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1125 |
ns3_module_olsr.register_methods(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1126 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1127 |
try: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1128 |
import ns3_module_olsr__local |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1129 |
except ImportError: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1130 |
pass |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1131 |
else: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1132 |
ns3_module_olsr__local.register_methods(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1133 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1134 |
root_module.end_section('ns3_module_olsr') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1135 |
root_module.begin_section('ns3_module_ping6') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1136 |
ns3_module_ping6.register_methods(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1137 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1138 |
try: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1139 |
import ns3_module_ping6__local |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1140 |
except ImportError: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1141 |
pass |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1142 |
else: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1143 |
ns3_module_ping6__local.register_methods(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1144 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1145 |
root_module.end_section('ns3_module_ping6') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1146 |
root_module.begin_section('ns3_module_radvd') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1147 |
ns3_module_radvd.register_methods(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1148 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1149 |
try: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1150 |
import ns3_module_radvd__local |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1151 |
except ImportError: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1152 |
pass |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1153 |
else: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1154 |
ns3_module_radvd__local.register_methods(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1155 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1156 |
root_module.end_section('ns3_module_radvd') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1157 |
root_module.begin_section('ns3_module_udp_client_server') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1158 |
ns3_module_udp_client_server.register_methods(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1159 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1160 |
try: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1161 |
import ns3_module_udp_client_server__local |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1162 |
except ImportError: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1163 |
pass |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1164 |
else: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1165 |
ns3_module_udp_client_server__local.register_methods(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1166 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1167 |
root_module.end_section('ns3_module_udp_client_server') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1168 |
root_module.begin_section('ns3_module_udp_echo') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1169 |
ns3_module_udp_echo.register_methods(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1170 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1171 |
try: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1172 |
import ns3_module_udp_echo__local |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1173 |
except ImportError: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1174 |
pass |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1175 |
else: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1176 |
ns3_module_udp_echo__local.register_methods(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1177 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1178 |
root_module.end_section('ns3_module_udp_echo') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1179 |
root_module.begin_section('ns3_module_mesh') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1180 |
ns3_module_mesh.register_methods(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1181 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1182 |
try: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1183 |
import ns3_module_mesh__local |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1184 |
except ImportError: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1185 |
pass |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1186 |
else: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1187 |
ns3_module_mesh__local.register_methods(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1188 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1189 |
root_module.end_section('ns3_module_mesh') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1190 |
root_module.begin_section('ns3_module_helper') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1191 |
ns3_module_helper.register_methods(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1192 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1193 |
try: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1194 |
import ns3_module_helper__local |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1195 |
except ImportError: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1196 |
pass |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1197 |
else: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1198 |
ns3_module_helper__local.register_methods(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1199 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1200 |
root_module.end_section('ns3_module_helper') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1201 |
root_module.begin_section('ns3_module_dot11s') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1202 |
ns3_module_dot11s.register_methods(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1203 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1204 |
try: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1205 |
import ns3_module_dot11s__local |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1206 |
except ImportError: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1207 |
pass |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1208 |
else: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1209 |
ns3_module_dot11s__local.register_methods(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1210 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1211 |
root_module.end_section('ns3_module_dot11s') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1212 |
root_module.begin_section('ns3_module_flame') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1213 |
ns3_module_flame.register_methods(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1214 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1215 |
try: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1216 |
import ns3_module_flame__local |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1217 |
except ImportError: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1218 |
pass |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1219 |
else: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1220 |
ns3_module_flame__local.register_methods(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1221 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1222 |
root_module.end_section('ns3_module_flame') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1223 |
return |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
1224 |
|
6435
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1225 |
def register_Ns3DeviceEnergyModelHelper_methods(root_module, cls): |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1226 |
## energy-model-helper.h: ns3::DeviceEnergyModelHelper::DeviceEnergyModelHelper() [constructor] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1227 |
cls.add_constructor([]) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1228 |
## energy-model-helper.h: ns3::DeviceEnergyModelHelper::DeviceEnergyModelHelper(ns3::DeviceEnergyModelHelper const & arg0) [copy constructor] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1229 |
cls.add_constructor([param('ns3::DeviceEnergyModelHelper const &', 'arg0')]) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1230 |
## energy-model-helper.h: ns3::Ptr<ns3::DeviceEnergyModel> ns3::DeviceEnergyModelHelper::Create() const [member function] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1231 |
cls.add_method('Create', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1232 |
'ns3::Ptr< ns3::DeviceEnergyModel >', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1233 |
[], |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1234 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1235 |
## energy-model-helper.h: void ns3::DeviceEnergyModelHelper::Install(ns3::Ptr<ns3::Node> node) const [member function] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1236 |
cls.add_method('Install', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1237 |
'void', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1238 |
[param('ns3::Ptr< ns3::Node >', 'node')], |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1239 |
is_const=True) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1240 |
## energy-model-helper.h: void ns3::DeviceEnergyModelHelper::Install(ns3::NodeContainer c) const [member function] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1241 |
cls.add_method('Install', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1242 |
'void', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1243 |
[param('ns3::NodeContainer', 'c')], |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1244 |
is_const=True) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1245 |
## energy-model-helper.h: void ns3::DeviceEnergyModelHelper::Install(std::string nodeName) const [member function] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1246 |
cls.add_method('Install', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1247 |
'void', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1248 |
[param('std::string', 'nodeName')], |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1249 |
is_const=True) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1250 |
## energy-model-helper.h: void ns3::DeviceEnergyModelHelper::InstallAll() const [member function] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1251 |
cls.add_method('InstallAll', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1252 |
'void', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1253 |
[], |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1254 |
is_const=True) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1255 |
## energy-model-helper.h: void ns3::DeviceEnergyModelHelper::Set(std::string name, ns3::AttributeValue const & v) [member function] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1256 |
cls.add_method('Set', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1257 |
'void', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1258 |
[param('std::string', 'name'), param('ns3::AttributeValue const &', 'v')], |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1259 |
is_pure_virtual=True, is_virtual=True) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1260 |
## energy-model-helper.h: void ns3::DeviceEnergyModelHelper::DoInstall(ns3::Ptr<ns3::Node> node) const [member function] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1261 |
cls.add_method('DoInstall', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1262 |
'void', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1263 |
[param('ns3::Ptr< ns3::Node >', 'node')], |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1264 |
is_pure_virtual=True, is_const=True, visibility='private', is_virtual=True) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1265 |
return |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1266 |
|
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1267 |
def register_Ns3EnergyModelHelper_methods(root_module, cls): |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1268 |
## energy-model-helper.h: ns3::EnergyModelHelper::EnergyModelHelper(ns3::EnergyModelHelper const & arg0) [copy constructor] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1269 |
cls.add_constructor([param('ns3::EnergyModelHelper const &', 'arg0')]) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1270 |
## energy-model-helper.h: ns3::EnergyModelHelper::EnergyModelHelper() [constructor] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1271 |
cls.add_constructor([]) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1272 |
## energy-model-helper.h: void ns3::EnergyModelHelper::Install(ns3::EnergySourceHelper const & sourceHelper, ns3::DeviceEnergyModelHelper const & modelHelper, ns3::Ptr<ns3::Node> node) const [member function] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1273 |
cls.add_method('Install', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1274 |
'void', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1275 |
[param('ns3::EnergySourceHelper const &', 'sourceHelper'), param('ns3::DeviceEnergyModelHelper const &', 'modelHelper'), param('ns3::Ptr< ns3::Node >', 'node')], |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1276 |
is_const=True) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1277 |
## energy-model-helper.h: void ns3::EnergyModelHelper::Install(ns3::EnergySourceHelper const & sourceHelper, ns3::DeviceEnergyModelHelper const & modelHelper, ns3::NodeContainer c) const [member function] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1278 |
cls.add_method('Install', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1279 |
'void', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1280 |
[param('ns3::EnergySourceHelper const &', 'sourceHelper'), param('ns3::DeviceEnergyModelHelper const &', 'modelHelper'), param('ns3::NodeContainer', 'c')], |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1281 |
is_const=True) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1282 |
## energy-model-helper.h: void ns3::EnergyModelHelper::Install(ns3::EnergySourceHelper const & sourceHelper, ns3::DeviceEnergyModelHelper const & modelHelper, std::string nodeName) const [member function] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1283 |
cls.add_method('Install', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1284 |
'void', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1285 |
[param('ns3::EnergySourceHelper const &', 'sourceHelper'), param('ns3::DeviceEnergyModelHelper const &', 'modelHelper'), param('std::string', 'nodeName')], |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1286 |
is_const=True) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1287 |
## energy-model-helper.h: void ns3::EnergyModelHelper::InstallAll(ns3::EnergySourceHelper const & sourceHelper, ns3::DeviceEnergyModelHelper const & modelHelper) const [member function] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1288 |
cls.add_method('InstallAll', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1289 |
'void', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1290 |
[param('ns3::EnergySourceHelper const &', 'sourceHelper'), param('ns3::DeviceEnergyModelHelper const &', 'modelHelper')], |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1291 |
is_const=True) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1292 |
return |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1293 |
|
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1294 |
def register_Ns3EnergySourceHelper_methods(root_module, cls): |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1295 |
## energy-model-helper.h: ns3::EnergySourceHelper::EnergySourceHelper() [constructor] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1296 |
cls.add_constructor([]) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1297 |
## energy-model-helper.h: ns3::EnergySourceHelper::EnergySourceHelper(ns3::EnergySourceHelper const & arg0) [copy constructor] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1298 |
cls.add_constructor([param('ns3::EnergySourceHelper const &', 'arg0')]) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1299 |
## energy-model-helper.h: ns3::Ptr<ns3::EnergySource> ns3::EnergySourceHelper::Create() const [member function] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1300 |
cls.add_method('Create', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1301 |
'ns3::Ptr< ns3::EnergySource >', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1302 |
[], |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1303 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1304 |
## energy-model-helper.h: void ns3::EnergySourceHelper::Install(ns3::Ptr<ns3::Node> node) const [member function] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1305 |
cls.add_method('Install', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1306 |
'void', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1307 |
[param('ns3::Ptr< ns3::Node >', 'node')], |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1308 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1309 |
return |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1310 |
|
6487 | 1311 |
def register_Ns3Reservation_methods(root_module, cls): |
1312 |
## uan-mac-rc.h: ns3::Reservation::Reservation(ns3::Reservation const & arg0) [copy constructor] |
|
1313 |
cls.add_constructor([param('ns3::Reservation const &', 'arg0')]) |
|
1314 |
## uan-mac-rc.h: ns3::Reservation::Reservation() [constructor] |
|
1315 |
cls.add_constructor([]) |
|
1316 |
## uan-mac-rc.h: ns3::Reservation::Reservation(std::list<std::pair<ns3::Ptr<ns3::Packet>, ns3::UanAddress>, std::allocator<std::pair<ns3::Ptr<ns3::Packet>, ns3::UanAddress> > > & list, uint8_t frameNo, uint32_t maxPkts=0) [constructor] |
|
1317 |
cls.add_constructor([param('std::list< std::pair< ns3::Ptr< ns3::Packet >, ns3::UanAddress > > &', 'list'), param('uint8_t', 'frameNo'), param('uint32_t', 'maxPkts', default_value='0')]) |
|
1318 |
## uan-mac-rc.h: void ns3::Reservation::AddTimestamp(ns3::Time t) [member function] |
|
1319 |
cls.add_method('AddTimestamp', |
|
1320 |
'void', |
|
1321 |
[param('ns3::Time', 't')]) |
|
1322 |
## uan-mac-rc.h: uint8_t ns3::Reservation::GetFrameNo() const [member function] |
|
1323 |
cls.add_method('GetFrameNo', |
|
1324 |
'uint8_t', |
|
1325 |
[], |
|
1326 |
is_const=True) |
|
1327 |
## uan-mac-rc.h: uint32_t ns3::Reservation::GetLength() const [member function] |
|
1328 |
cls.add_method('GetLength', |
|
1329 |
'uint32_t', |
|
1330 |
[], |
|
1331 |
is_const=True) |
|
1332 |
## uan-mac-rc.h: uint32_t ns3::Reservation::GetNoFrames() const [member function] |
|
1333 |
cls.add_method('GetNoFrames', |
|
1334 |
'uint32_t', |
|
1335 |
[], |
|
1336 |
is_const=True) |
|
1337 |
## uan-mac-rc.h: std::list<std::pair<ns3::Ptr<ns3::Packet>, ns3::UanAddress>, std::allocator<std::pair<ns3::Ptr<ns3::Packet>, ns3::UanAddress> > > const & ns3::Reservation::GetPktList() const [member function] |
|
1338 |
cls.add_method('GetPktList', |
|
1339 |
'std::list< std::pair< ns3::Ptr< ns3::Packet >, ns3::UanAddress > > const &', |
|
1340 |
[], |
|
1341 |
is_const=True) |
|
1342 |
## uan-mac-rc.h: uint8_t ns3::Reservation::GetRetryNo() const [member function] |
|
1343 |
cls.add_method('GetRetryNo', |
|
1344 |
'uint8_t', |
|
1345 |
[], |
|
1346 |
is_const=True) |
|
1347 |
## uan-mac-rc.h: ns3::Time ns3::Reservation::GetTimestamp(uint8_t n) const [member function] |
|
1348 |
cls.add_method('GetTimestamp', |
|
1349 |
'ns3::Time', |
|
1350 |
[param('uint8_t', 'n')], |
|
1351 |
is_const=True) |
|
1352 |
## uan-mac-rc.h: void ns3::Reservation::IncrementRetry() [member function] |
|
1353 |
cls.add_method('IncrementRetry', |
|
1354 |
'void', |
|
1355 |
[]) |
|
1356 |
## uan-mac-rc.h: bool ns3::Reservation::IsTransmitted() const [member function] |
|
1357 |
cls.add_method('IsTransmitted', |
|
1358 |
'bool', |
|
1359 |
[], |
|
1360 |
is_const=True) |
|
1361 |
## uan-mac-rc.h: void ns3::Reservation::SetFrameNo(uint8_t fn) [member function] |
|
1362 |
cls.add_method('SetFrameNo', |
|
1363 |
'void', |
|
1364 |
[param('uint8_t', 'fn')]) |
|
1365 |
## uan-mac-rc.h: void ns3::Reservation::SetTransmitted(bool t=true) [member function] |
|
1366 |
cls.add_method('SetTransmitted', |
|
1367 |
'void', |
|
1368 |
[param('bool', 't', default_value='true')]) |
|
1369 |
return |
|
1370 |
||
1371 |
def register_Ns3Tap_methods(root_module, cls): |
|
1372 |
## uan-prop-model.h: ns3::Tap::Tap(ns3::Tap const & arg0) [copy constructor] |
|
1373 |
cls.add_constructor([param('ns3::Tap const &', 'arg0')]) |
|
1374 |
## uan-prop-model.h: ns3::Tap::Tap() [constructor] |
|
1375 |
cls.add_constructor([]) |
|
1376 |
## uan-prop-model.h: ns3::Tap::Tap(ns3::Time delay, std::complex<double> amp) [constructor] |
|
1377 |
cls.add_constructor([param('ns3::Time', 'delay'), param('std::complex< double >', 'amp')]) |
|
1378 |
## uan-prop-model.h: std::complex<double> ns3::Tap::GetAmp() const [member function] |
|
1379 |
cls.add_method('GetAmp', |
|
1380 |
'std::complex< double >', |
|
1381 |
[], |
|
1382 |
is_const=True) |
|
1383 |
## uan-prop-model.h: ns3::Time ns3::Tap::GetDelay() const [member function] |
|
1384 |
cls.add_method('GetDelay', |
|
1385 |
'ns3::Time', |
|
1386 |
[], |
|
1387 |
is_const=True) |
|
1388 |
return |
|
1389 |
||
1390 |
def register_Ns3UanAddress_methods(root_module, cls): |
|
1391 |
cls.add_binary_comparison_operator('!=') |
|
1392 |
cls.add_binary_comparison_operator('<') |
|
1393 |
cls.add_output_stream_operator() |
|
1394 |
cls.add_binary_comparison_operator('==') |
|
1395 |
## uan-address.h: ns3::UanAddress::UanAddress(ns3::UanAddress const & arg0) [copy constructor] |
|
1396 |
cls.add_constructor([param('ns3::UanAddress const &', 'arg0')]) |
|
1397 |
## uan-address.h: ns3::UanAddress::UanAddress() [constructor] |
|
1398 |
cls.add_constructor([]) |
|
1399 |
## uan-address.h: ns3::UanAddress::UanAddress(uint8_t addr) [constructor] |
|
1400 |
cls.add_constructor([param('uint8_t', 'addr')]) |
|
1401 |
## uan-address.h: static ns3::UanAddress ns3::UanAddress::Allocate() [member function] |
|
1402 |
cls.add_method('Allocate', |
|
1403 |
'ns3::UanAddress', |
|
1404 |
[], |
|
1405 |
is_static=True) |
|
1406 |
## uan-address.h: static ns3::UanAddress ns3::UanAddress::ConvertFrom(ns3::Address const & address) [member function] |
|
1407 |
cls.add_method('ConvertFrom', |
|
1408 |
'ns3::UanAddress', |
|
1409 |
[param('ns3::Address const &', 'address')], |
|
1410 |
is_static=True) |
|
1411 |
## uan-address.h: void ns3::UanAddress::CopyFrom(uint8_t const * pBuffer) [member function] |
|
1412 |
cls.add_method('CopyFrom', |
|
1413 |
'void', |
|
1414 |
[param('uint8_t const *', 'pBuffer')]) |
|
1415 |
## uan-address.h: void ns3::UanAddress::CopyTo(uint8_t * pBuffer) [member function] |
|
1416 |
cls.add_method('CopyTo', |
|
1417 |
'void', |
|
1418 |
[param('uint8_t *', 'pBuffer')]) |
|
1419 |
## uan-address.h: uint8_t ns3::UanAddress::GetAsInt() const [member function] |
|
1420 |
cls.add_method('GetAsInt', |
|
1421 |
'uint8_t', |
|
1422 |
[], |
|
1423 |
is_const=True) |
|
1424 |
## uan-address.h: static ns3::UanAddress ns3::UanAddress::GetBroadcast() [member function] |
|
1425 |
cls.add_method('GetBroadcast', |
|
1426 |
'ns3::UanAddress', |
|
1427 |
[], |
|
1428 |
is_static=True) |
|
1429 |
## uan-address.h: static bool ns3::UanAddress::IsMatchingType(ns3::Address const & address) [member function] |
|
1430 |
cls.add_method('IsMatchingType', |
|
1431 |
'bool', |
|
1432 |
[param('ns3::Address const &', 'address')], |
|
1433 |
is_static=True) |
|
1434 |
return |
|
1435 |
||
1436 |
def register_Ns3UanHelper_methods(root_module, cls): |
|
1437 |
## uan-helper.h: ns3::UanHelper::UanHelper(ns3::UanHelper const & arg0) [copy constructor] |
|
1438 |
cls.add_constructor([param('ns3::UanHelper const &', 'arg0')]) |
|
1439 |
## uan-helper.h: ns3::UanHelper::UanHelper() [constructor] |
|
1440 |
cls.add_constructor([]) |
|
1441 |
## uan-helper.h: static void ns3::UanHelper::EnableAscii(std::ostream & os, uint32_t nodeid, uint32_t deviceid) [member function] |
|
1442 |
cls.add_method('EnableAscii', |
|
1443 |
'void', |
|
1444 |
[param('std::ostream &', 'os'), param('uint32_t', 'nodeid'), param('uint32_t', 'deviceid')], |
|
1445 |
is_static=True) |
|
1446 |
## uan-helper.h: static void ns3::UanHelper::EnableAscii(std::ostream & os, ns3::NetDeviceContainer d) [member function] |
|
1447 |
cls.add_method('EnableAscii', |
|
1448 |
'void', |
|
1449 |
[param('std::ostream &', 'os'), param('ns3::NetDeviceContainer', 'd')], |
|
1450 |
is_static=True) |
|
1451 |
## uan-helper.h: static void ns3::UanHelper::EnableAscii(std::ostream & os, ns3::NodeContainer n) [member function] |
|
1452 |
cls.add_method('EnableAscii', |
|
1453 |
'void', |
|
1454 |
[param('std::ostream &', 'os'), param('ns3::NodeContainer', 'n')], |
|
1455 |
is_static=True) |
|
1456 |
## uan-helper.h: static void ns3::UanHelper::EnableAsciiAll(std::ostream & os) [member function] |
|
1457 |
cls.add_method('EnableAsciiAll', |
|
1458 |
'void', |
|
1459 |
[param('std::ostream &', 'os')], |
|
1460 |
is_static=True) |
|
1461 |
## uan-helper.h: ns3::NetDeviceContainer ns3::UanHelper::Install(ns3::NodeContainer c) const [member function] |
|
1462 |
cls.add_method('Install', |
|
1463 |
'ns3::NetDeviceContainer', |
|
1464 |
[param('ns3::NodeContainer', 'c')], |
|
1465 |
is_const=True) |
|
1466 |
## uan-helper.h: ns3::NetDeviceContainer ns3::UanHelper::Install(ns3::NodeContainer c, ns3::Ptr<ns3::UanChannel> channel) const [member function] |
|
1467 |
cls.add_method('Install', |
|
1468 |
'ns3::NetDeviceContainer', |
|
1469 |
[param('ns3::NodeContainer', 'c'), param('ns3::Ptr< ns3::UanChannel >', 'channel')], |
|
1470 |
is_const=True) |
|
1471 |
## uan-helper.h: void ns3::UanHelper::SetMac(std::string type, std::string n0="", ns3::AttributeValue const & v0=ns3::EmptyAttributeValue(), std::string n1="", ns3::AttributeValue const & v1=ns3::EmptyAttributeValue(), std::string n2="", ns3::AttributeValue const & v2=ns3::EmptyAttributeValue(), std::string n3="", ns3::AttributeValue const & v3=ns3::EmptyAttributeValue(), std::string n4="", ns3::AttributeValue const & v4=ns3::EmptyAttributeValue(), std::string n5="", ns3::AttributeValue const & v5=ns3::EmptyAttributeValue(), std::string n6="", ns3::AttributeValue const & v6=ns3::EmptyAttributeValue(), std::string n7="", ns3::AttributeValue const & v7=ns3::EmptyAttributeValue()) [member function] |
|
1472 |
cls.add_method('SetMac', |
|
1473 |
'void', |
|
1474 |
[param('std::string', 'type'), param('std::string', 'n0', default_value='""'), param('ns3::AttributeValue const &', 'v0', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n1', default_value='""'), param('ns3::AttributeValue const &', 'v1', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n2', default_value='""'), param('ns3::AttributeValue const &', 'v2', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n3', default_value='""'), param('ns3::AttributeValue const &', 'v3', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n4', default_value='""'), param('ns3::AttributeValue const &', 'v4', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n5', default_value='""'), param('ns3::AttributeValue const &', 'v5', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n6', default_value='""'), param('ns3::AttributeValue const &', 'v6', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n7', default_value='""'), param('ns3::AttributeValue const &', 'v7', default_value='ns3::EmptyAttributeValue()')]) |
|
1475 |
## uan-helper.h: void ns3::UanHelper::SetPhy(std::string phyType, std::string n0="", ns3::AttributeValue const & v0=ns3::EmptyAttributeValue(), std::string n1="", ns3::AttributeValue const & v1=ns3::EmptyAttributeValue(), std::string n2="", ns3::AttributeValue const & v2=ns3::EmptyAttributeValue(), std::string n3="", ns3::AttributeValue const & v3=ns3::EmptyAttributeValue(), std::string n4="", ns3::AttributeValue const & v4=ns3::EmptyAttributeValue(), std::string n5="", ns3::AttributeValue const & v5=ns3::EmptyAttributeValue(), std::string n6="", ns3::AttributeValue const & v6=ns3::EmptyAttributeValue(), std::string n7="", ns3::AttributeValue const & v7=ns3::EmptyAttributeValue()) [member function] |
|
1476 |
cls.add_method('SetPhy', |
|
1477 |
'void', |
|
1478 |
[param('std::string', 'phyType'), param('std::string', 'n0', default_value='""'), param('ns3::AttributeValue const &', 'v0', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n1', default_value='""'), param('ns3::AttributeValue const &', 'v1', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n2', default_value='""'), param('ns3::AttributeValue const &', 'v2', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n3', default_value='""'), param('ns3::AttributeValue const &', 'v3', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n4', default_value='""'), param('ns3::AttributeValue const &', 'v4', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n5', default_value='""'), param('ns3::AttributeValue const &', 'v5', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n6', default_value='""'), param('ns3::AttributeValue const &', 'v6', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n7', default_value='""'), param('ns3::AttributeValue const &', 'v7', default_value='ns3::EmptyAttributeValue()')]) |
|
1479 |
## uan-helper.h: void ns3::UanHelper::SetTransducer(std::string type, std::string n0="", ns3::AttributeValue const & v0=ns3::EmptyAttributeValue(), std::string n1="", ns3::AttributeValue const & v1=ns3::EmptyAttributeValue(), std::string n2="", ns3::AttributeValue const & v2=ns3::EmptyAttributeValue(), std::string n3="", ns3::AttributeValue const & v3=ns3::EmptyAttributeValue(), std::string n4="", ns3::AttributeValue const & v4=ns3::EmptyAttributeValue(), std::string n5="", ns3::AttributeValue const & v5=ns3::EmptyAttributeValue(), std::string n6="", ns3::AttributeValue const & v6=ns3::EmptyAttributeValue(), std::string n7="", ns3::AttributeValue const & v7=ns3::EmptyAttributeValue()) [member function] |
|
1480 |
cls.add_method('SetTransducer', |
|
1481 |
'void', |
|
1482 |
[param('std::string', 'type'), param('std::string', 'n0', default_value='""'), param('ns3::AttributeValue const &', 'v0', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n1', default_value='""'), param('ns3::AttributeValue const &', 'v1', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n2', default_value='""'), param('ns3::AttributeValue const &', 'v2', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n3', default_value='""'), param('ns3::AttributeValue const &', 'v3', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n4', default_value='""'), param('ns3::AttributeValue const &', 'v4', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n5', default_value='""'), param('ns3::AttributeValue const &', 'v5', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n6', default_value='""'), param('ns3::AttributeValue const &', 'v6', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n7', default_value='""'), param('ns3::AttributeValue const &', 'v7', default_value='ns3::EmptyAttributeValue()')]) |
|
1483 |
return |
|
1484 |
||
1485 |
def register_Ns3UanModesList_methods(root_module, cls): |
|
1486 |
cls.add_output_stream_operator() |
|
1487 |
## uan-tx-mode.h: ns3::UanModesList::UanModesList(ns3::UanModesList const & arg0) [copy constructor] |
|
1488 |
cls.add_constructor([param('ns3::UanModesList const &', 'arg0')]) |
|
1489 |
## uan-tx-mode.h: ns3::UanModesList::UanModesList() [constructor] |
|
1490 |
cls.add_constructor([]) |
|
1491 |
## uan-tx-mode.h: void ns3::UanModesList::AppendMode(ns3::UanTxMode mode) [member function] |
|
1492 |
cls.add_method('AppendMode', |
|
1493 |
'void', |
|
1494 |
[param('ns3::UanTxMode', 'mode')]) |
|
1495 |
## uan-tx-mode.h: void ns3::UanModesList::DeleteMode(uint32_t num) [member function] |
|
1496 |
cls.add_method('DeleteMode', |
|
1497 |
'void', |
|
1498 |
[param('uint32_t', 'num')]) |
|
1499 |
## uan-tx-mode.h: uint32_t ns3::UanModesList::GetNModes() const [member function] |
|
1500 |
cls.add_method('GetNModes', |
|
1501 |
'uint32_t', |
|
1502 |
[], |
|
1503 |
is_const=True) |
|
1504 |
return |
|
1505 |
||
1506 |
def register_Ns3UanPacketArrival_methods(root_module, cls): |
|
1507 |
## uan-transducer.h: ns3::UanPacketArrival::UanPacketArrival(ns3::UanPacketArrival const & arg0) [copy constructor] |
|
1508 |
cls.add_constructor([param('ns3::UanPacketArrival const &', 'arg0')]) |
|
1509 |
## uan-transducer.h: ns3::UanPacketArrival::UanPacketArrival() [constructor] |
|
1510 |
cls.add_constructor([]) |
|
1511 |
## uan-transducer.h: ns3::UanPacketArrival::UanPacketArrival(ns3::Ptr<ns3::Packet> packet, double rxPowerDb, ns3::UanTxMode txMode, ns3::UanPdp pdp, ns3::Time arrTime) [constructor] |
|
1512 |
cls.add_constructor([param('ns3::Ptr< ns3::Packet >', 'packet'), param('double', 'rxPowerDb'), param('ns3::UanTxMode', 'txMode'), param('ns3::UanPdp', 'pdp'), param('ns3::Time', 'arrTime')]) |
|
1513 |
## uan-transducer.h: ns3::Time ns3::UanPacketArrival::GetArrivalTime() const [member function] |
|
1514 |
cls.add_method('GetArrivalTime', |
|
1515 |
'ns3::Time', |
|
1516 |
[], |
|
1517 |
is_const=True) |
|
1518 |
## uan-transducer.h: ns3::Ptr<ns3::Packet> ns3::UanPacketArrival::GetPacket() const [member function] |
|
1519 |
cls.add_method('GetPacket', |
|
1520 |
'ns3::Ptr< ns3::Packet >', |
|
1521 |
[], |
|
1522 |
is_const=True) |
|
1523 |
## uan-transducer.h: ns3::UanPdp ns3::UanPacketArrival::GetPdp() const [member function] |
|
1524 |
cls.add_method('GetPdp', |
|
1525 |
'ns3::UanPdp', |
|
1526 |
[], |
|
1527 |
is_const=True) |
|
1528 |
## uan-transducer.h: double ns3::UanPacketArrival::GetRxPowerDb() const [member function] |
|
1529 |
cls.add_method('GetRxPowerDb', |
|
1530 |
'double', |
|
1531 |
[], |
|
1532 |
is_const=True) |
|
1533 |
## uan-transducer.h: ns3::UanTxMode const & ns3::UanPacketArrival::GetTxMode() const [member function] |
|
1534 |
cls.add_method('GetTxMode', |
|
1535 |
'ns3::UanTxMode const &', |
|
1536 |
[], |
|
1537 |
is_const=True) |
|
1538 |
return |
|
1539 |
||
1540 |
def register_Ns3UanPdp_methods(root_module, cls): |
|
1541 |
cls.add_output_stream_operator() |
|
1542 |
## uan-prop-model.h: ns3::UanPdp::UanPdp(ns3::UanPdp const & arg0) [copy constructor] |
|
1543 |
cls.add_constructor([param('ns3::UanPdp const &', 'arg0')]) |
|
1544 |
## uan-prop-model.h: ns3::UanPdp::UanPdp() [constructor] |
|
1545 |
cls.add_constructor([]) |
|
1546 |
## uan-prop-model.h: ns3::UanPdp::UanPdp(std::vector<ns3::Tap, std::allocator<ns3::Tap> > taps, ns3::Time resolution) [constructor] |
|
1547 |
cls.add_constructor([param('std::vector< ns3::Tap >', 'taps'), param('ns3::Time', 'resolution')]) |
|
1548 |
## uan-prop-model.h: ns3::UanPdp::UanPdp(std::vector<std::complex<double>,std::allocator<std::complex<double> > > arrivals, ns3::Time resolution) [constructor] |
|
1549 |
cls.add_constructor([param('std::vector< std::complex< double > >', 'arrivals'), param('ns3::Time', 'resolution')]) |
|
1550 |
## uan-prop-model.h: ns3::UanPdp::UanPdp(std::vector<double, std::allocator<double> > arrivals, ns3::Time resolution) [constructor] |
|
1551 |
cls.add_constructor([param('std::vector< double >', 'arrivals'), param('ns3::Time', 'resolution')]) |
|
1552 |
## uan-prop-model.h: static ns3::UanPdp ns3::UanPdp::CreateImpulsePdp() [member function] |
|
1553 |
cls.add_method('CreateImpulsePdp', |
|
1554 |
'ns3::UanPdp', |
|
1555 |
[], |
|
1556 |
is_static=True) |
|
1557 |
## uan-prop-model.h: __gnu_cxx::__normal_iterator<const ns3::Tap*,std::vector<ns3::Tap, std::allocator<ns3::Tap> > > ns3::UanPdp::GetBegin() const [member function] |
|
1558 |
cls.add_method('GetBegin', |
|
1559 |
'__gnu_cxx::__normal_iterator< ns3::Tap const *, std::vector< ns3::Tap > >', |
|
1560 |
[], |
|
1561 |
is_const=True) |
|
1562 |
## uan-prop-model.h: __gnu_cxx::__normal_iterator<const ns3::Tap*,std::vector<ns3::Tap, std::allocator<ns3::Tap> > > ns3::UanPdp::GetEnd() const [member function] |
|
1563 |
cls.add_method('GetEnd', |
|
1564 |
'__gnu_cxx::__normal_iterator< ns3::Tap const *, std::vector< ns3::Tap > >', |
|
1565 |
[], |
|
1566 |
is_const=True) |
|
1567 |
## uan-prop-model.h: uint32_t ns3::UanPdp::GetNTaps() const [member function] |
|
1568 |
cls.add_method('GetNTaps', |
|
1569 |
'uint32_t', |
|
1570 |
[], |
|
1571 |
is_const=True) |
|
1572 |
## uan-prop-model.h: ns3::Time ns3::UanPdp::GetResolution() const [member function] |
|
1573 |
cls.add_method('GetResolution', |
|
1574 |
'ns3::Time', |
|
1575 |
[], |
|
1576 |
is_const=True) |
|
1577 |
## uan-prop-model.h: ns3::Tap const & ns3::UanPdp::GetTap(uint32_t i) const [member function] |
|
1578 |
cls.add_method('GetTap', |
|
1579 |
'ns3::Tap const &', |
|
1580 |
[param('uint32_t', 'i')], |
|
1581 |
is_const=True) |
|
1582 |
## uan-prop-model.h: void ns3::UanPdp::SetNTaps(uint32_t nTaps) [member function] |
|
1583 |
cls.add_method('SetNTaps', |
|
1584 |
'void', |
|
1585 |
[param('uint32_t', 'nTaps')]) |
|
1586 |
## uan-prop-model.h: void ns3::UanPdp::SetResolution(ns3::Time resolution) [member function] |
|
1587 |
cls.add_method('SetResolution', |
|
1588 |
'void', |
|
1589 |
[param('ns3::Time', 'resolution')]) |
|
1590 |
## uan-prop-model.h: void ns3::UanPdp::SetTap(std::complex<double> arrival, uint32_t index) [member function] |
|
1591 |
cls.add_method('SetTap', |
|
1592 |
'void', |
|
1593 |
[param('std::complex< double >', 'arrival'), param('uint32_t', 'index')]) |
|
1594 |
## uan-prop-model.h: std::complex<double> ns3::UanPdp::SumTapsC(ns3::Time begin, ns3::Time end) const [member function] |
|
1595 |
cls.add_method('SumTapsC', |
|
1596 |
'std::complex< double >', |
|
1597 |
[param('ns3::Time', 'begin'), param('ns3::Time', 'end')], |
|
1598 |
is_const=True) |
|
1599 |
## uan-prop-model.h: std::complex<double> ns3::UanPdp::SumTapsFromMaxC(ns3::Time delay, ns3::Time duration) const [member function] |
|
1600 |
cls.add_method('SumTapsFromMaxC', |
|
1601 |
'std::complex< double >', |
|
1602 |
[param('ns3::Time', 'delay'), param('ns3::Time', 'duration')], |
|
1603 |
is_const=True) |
|
1604 |
## uan-prop-model.h: double ns3::UanPdp::SumTapsFromMaxNc(ns3::Time delay, ns3::Time duration) const [member function] |
|
1605 |
cls.add_method('SumTapsFromMaxNc', |
|
1606 |
'double', |
|
1607 |
[param('ns3::Time', 'delay'), param('ns3::Time', 'duration')], |
|
1608 |
is_const=True) |
|
1609 |
## uan-prop-model.h: double ns3::UanPdp::SumTapsNc(ns3::Time begin, ns3::Time end) const [member function] |
|
1610 |
cls.add_method('SumTapsNc', |
|
1611 |
'double', |
|
1612 |
[param('ns3::Time', 'begin'), param('ns3::Time', 'end')], |
|
1613 |
is_const=True) |
|
1614 |
return |
|
1615 |
||
1616 |
def register_Ns3UanPhyListener_methods(root_module, cls): |
|
1617 |
## uan-phy.h: ns3::UanPhyListener::UanPhyListener() [constructor] |
|
1618 |
cls.add_constructor([]) |
|
1619 |
## uan-phy.h: ns3::UanPhyListener::UanPhyListener(ns3::UanPhyListener const & arg0) [copy constructor] |
|
1620 |
cls.add_constructor([param('ns3::UanPhyListener const &', 'arg0')]) |
|
1621 |
## uan-phy.h: void ns3::UanPhyListener::NotifyCcaEnd() [member function] |
|
1622 |
cls.add_method('NotifyCcaEnd', |
|
1623 |
'void', |
|
1624 |
[], |
|
1625 |
is_pure_virtual=True, is_virtual=True) |
|
1626 |
## uan-phy.h: void ns3::UanPhyListener::NotifyCcaStart() [member function] |
|
1627 |
cls.add_method('NotifyCcaStart', |
|
1628 |
'void', |
|
1629 |
[], |
|
1630 |
is_pure_virtual=True, is_virtual=True) |
|
1631 |
## uan-phy.h: void ns3::UanPhyListener::NotifyRxEndError() [member function] |
|
1632 |
cls.add_method('NotifyRxEndError', |
|
1633 |
'void', |
|
1634 |
[], |
|
1635 |
is_pure_virtual=True, is_virtual=True) |
|
1636 |
## uan-phy.h: void ns3::UanPhyListener::NotifyRxEndOk() [member function] |
|
1637 |
cls.add_method('NotifyRxEndOk', |
|
1638 |
'void', |
|
1639 |
[], |
|
1640 |
is_pure_virtual=True, is_virtual=True) |
|
1641 |
## uan-phy.h: void ns3::UanPhyListener::NotifyRxStart() [member function] |
|
1642 |
cls.add_method('NotifyRxStart', |
|
1643 |
'void', |
|
1644 |
[], |
|
1645 |
is_pure_virtual=True, is_virtual=True) |
|
1646 |
## uan-phy.h: void ns3::UanPhyListener::NotifyTxStart(ns3::Time duration) [member function] |
|
1647 |
cls.add_method('NotifyTxStart', |
|
1648 |
'void', |
|
1649 |
[param('ns3::Time', 'duration')], |
|
1650 |
is_pure_virtual=True, is_virtual=True) |
|
1651 |
return |
|
1652 |
||
1653 |
def register_Ns3UanTxMode_methods(root_module, cls): |
|
1654 |
cls.add_output_stream_operator() |
|
1655 |
## uan-tx-mode.h: ns3::UanTxMode::UanTxMode(ns3::UanTxMode const & arg0) [copy constructor] |
|
1656 |
cls.add_constructor([param('ns3::UanTxMode const &', 'arg0')]) |
|
1657 |
## uan-tx-mode.h: ns3::UanTxMode::UanTxMode() [constructor] |
|
1658 |
cls.add_constructor([]) |
|
1659 |
## uan-tx-mode.h: uint32_t ns3::UanTxMode::GetBandwidthHz() const [member function] |
|
1660 |
cls.add_method('GetBandwidthHz', |
|
1661 |
'uint32_t', |
|
1662 |
[], |
|
1663 |
is_const=True) |
|
1664 |
## uan-tx-mode.h: uint32_t ns3::UanTxMode::GetCenterFreqHz() const [member function] |
|
1665 |
cls.add_method('GetCenterFreqHz', |
|
1666 |
'uint32_t', |
|
1667 |
[], |
|
1668 |
is_const=True) |
|
1669 |
## uan-tx-mode.h: uint32_t ns3::UanTxMode::GetConstellationSize() const [member function] |
|
1670 |
cls.add_method('GetConstellationSize', |
|
1671 |
'uint32_t', |
|
1672 |
[], |
|
1673 |
is_const=True) |
|
1674 |
## uan-tx-mode.h: uint32_t ns3::UanTxMode::GetDataRateBps() const [member function] |
|
1675 |
cls.add_method('GetDataRateBps', |
|
1676 |
'uint32_t', |
|
1677 |
[], |
|
1678 |
is_const=True) |
|
1679 |
## uan-tx-mode.h: ns3::UanTxMode::ModulationType ns3::UanTxMode::GetModType() const [member function] |
|
1680 |
cls.add_method('GetModType', |
|
1681 |
'ns3::UanTxMode::ModulationType', |
|
1682 |
[], |
|
1683 |
is_const=True) |
|
1684 |
## uan-tx-mode.h: std::string ns3::UanTxMode::GetName() const [member function] |
|
1685 |
cls.add_method('GetName', |
|
1686 |
'std::string', |
|
1687 |
[], |
|
1688 |
is_const=True) |
|
1689 |
## uan-tx-mode.h: uint32_t ns3::UanTxMode::GetPhyRateSps() const [member function] |
|
1690 |
cls.add_method('GetPhyRateSps', |
|
1691 |
'uint32_t', |
|
1692 |
[], |
|
1693 |
is_const=True) |
|
1694 |
## uan-tx-mode.h: uint32_t ns3::UanTxMode::GetUid() const [member function] |
|
1695 |
cls.add_method('GetUid', |
|
1696 |
'uint32_t', |
|
1697 |
[], |
|
1698 |
is_const=True) |
|
1699 |
return |
|
1700 |
||
1701 |
def register_Ns3UanTxModeFactory_methods(root_module, cls): |
|
1702 |
## uan-tx-mode.h: ns3::UanTxModeFactory::UanTxModeFactory(ns3::UanTxModeFactory const & arg0) [copy constructor] |
|
1703 |
cls.add_constructor([param('ns3::UanTxModeFactory const &', 'arg0')]) |
|
1704 |
## uan-tx-mode.h: ns3::UanTxModeFactory::UanTxModeFactory() [constructor] |
|
1705 |
cls.add_constructor([]) |
|
1706 |
## uan-tx-mode.h: static ns3::UanTxMode ns3::UanTxModeFactory::CreateMode(ns3::UanTxMode::ModulationType type, uint32_t dataRateBps, uint32_t phyRateSps, uint32_t cfHz, uint32_t bwHz, uint32_t constSize, std::string name) [member function] |
|
1707 |
cls.add_method('CreateMode', |
|
1708 |
'ns3::UanTxMode', |
|
1709 |
[param('ns3::UanTxMode::ModulationType', 'type'), param('uint32_t', 'dataRateBps'), param('uint32_t', 'phyRateSps'), param('uint32_t', 'cfHz'), param('uint32_t', 'bwHz'), param('uint32_t', 'constSize'), param('std::string', 'name')], |
|
1710 |
is_static=True) |
|
1711 |
## uan-tx-mode.h: static ns3::UanTxMode ns3::UanTxModeFactory::GetMode(std::string name) [member function] |
|
1712 |
cls.add_method('GetMode', |
|
1713 |
'ns3::UanTxMode', |
|
1714 |
[param('std::string', 'name')], |
|
1715 |
is_static=True) |
|
1716 |
## uan-tx-mode.h: static ns3::UanTxMode ns3::UanTxModeFactory::GetMode(uint32_t uid) [member function] |
|
1717 |
cls.add_method('GetMode', |
|
1718 |
'ns3::UanTxMode', |
|
1719 |
[param('uint32_t', 'uid')], |
|
1720 |
is_static=True) |
|
1721 |
return |
|
1722 |
||
6435
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1723 |
def register_Ns3BasicEnergySourceHelper_methods(root_module, cls): |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1724 |
## basic-energy-source-helper.h: ns3::BasicEnergySourceHelper::BasicEnergySourceHelper(ns3::BasicEnergySourceHelper const & arg0) [copy constructor] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1725 |
cls.add_constructor([param('ns3::BasicEnergySourceHelper const &', 'arg0')]) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1726 |
## basic-energy-source-helper.h: ns3::BasicEnergySourceHelper::BasicEnergySourceHelper() [constructor] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1727 |
cls.add_constructor([]) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1728 |
## basic-energy-source-helper.h: ns3::Ptr<ns3::EnergySource> ns3::BasicEnergySourceHelper::Create() const [member function] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1729 |
cls.add_method('Create', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1730 |
'ns3::Ptr< ns3::EnergySource >', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1731 |
[], |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1732 |
is_const=True, is_virtual=True) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1733 |
## basic-energy-source-helper.h: void ns3::BasicEnergySourceHelper::Install(ns3::Ptr<ns3::Node> node) const [member function] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1734 |
cls.add_method('Install', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1735 |
'void', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1736 |
[param('ns3::Ptr< ns3::Node >', 'node')], |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1737 |
is_const=True, is_virtual=True) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1738 |
## basic-energy-source-helper.h: void ns3::BasicEnergySourceHelper::Set(std::string name, ns3::AttributeValue const & v) [member function] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1739 |
cls.add_method('Set', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1740 |
'void', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1741 |
[param('std::string', 'name'), param('ns3::AttributeValue const &', 'v')]) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1742 |
return |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1743 |
|
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1744 |
def register_Ns3BasicRadioEnergyModelHelper_methods(root_module, cls): |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1745 |
## basic-radio-energy-model-helper.h: ns3::BasicRadioEnergyModelHelper::BasicRadioEnergyModelHelper(ns3::BasicRadioEnergyModelHelper const & arg0) [copy constructor] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1746 |
cls.add_constructor([param('ns3::BasicRadioEnergyModelHelper const &', 'arg0')]) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1747 |
## basic-radio-energy-model-helper.h: ns3::BasicRadioEnergyModelHelper::BasicRadioEnergyModelHelper() [constructor] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1748 |
cls.add_constructor([]) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1749 |
## basic-radio-energy-model-helper.h: ns3::Ptr<ns3::DeviceEnergyModel> ns3::BasicRadioEnergyModelHelper::Create() const [member function] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1750 |
cls.add_method('Create', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1751 |
'ns3::Ptr< ns3::DeviceEnergyModel >', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1752 |
[], |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1753 |
is_const=True, is_virtual=True) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1754 |
## basic-radio-energy-model-helper.h: void ns3::BasicRadioEnergyModelHelper::Set(std::string name, ns3::AttributeValue const & v) [member function] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1755 |
cls.add_method('Set', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1756 |
'void', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1757 |
[param('std::string', 'name'), param('ns3::AttributeValue const &', 'v')], |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1758 |
is_virtual=True) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1759 |
## basic-radio-energy-model-helper.h: void ns3::BasicRadioEnergyModelHelper::SetDepletionCallback(ns3::Callback<void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> callback) [member function] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1760 |
cls.add_method('SetDepletionCallback', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1761 |
'void', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1762 |
[param('ns3::Callback< void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'callback')]) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1763 |
## basic-radio-energy-model-helper.h: void ns3::BasicRadioEnergyModelHelper::DoInstall(ns3::Ptr<ns3::Node> node) const [member function] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1764 |
cls.add_method('DoInstall', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1765 |
'void', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1766 |
[param('ns3::Ptr< ns3::Node >', 'node')], |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1767 |
is_const=True, visibility='private', is_virtual=True) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1768 |
return |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
1769 |
|
6487 | 1770 |
def register_Ns3UanHeaderCommon_methods(root_module, cls): |
1771 |
## uan-header-common.h: ns3::UanHeaderCommon::UanHeaderCommon(ns3::UanHeaderCommon const & arg0) [copy constructor] |
|
1772 |
cls.add_constructor([param('ns3::UanHeaderCommon const &', 'arg0')]) |
|
1773 |
## uan-header-common.h: ns3::UanHeaderCommon::UanHeaderCommon() [constructor] |
|
1774 |
cls.add_constructor([]) |
|
1775 |
## uan-header-common.h: ns3::UanHeaderCommon::UanHeaderCommon(ns3::UanAddress const src, ns3::UanAddress const dest, uint8_t type) [constructor] |
|
1776 |
cls.add_constructor([param('ns3::UanAddress const', 'src'), param('ns3::UanAddress const', 'dest'), param('uint8_t', 'type')]) |
|
1777 |
## uan-header-common.h: uint32_t ns3::UanHeaderCommon::Deserialize(ns3::Buffer::Iterator start) [member function] |
|
1778 |
cls.add_method('Deserialize', |
|
1779 |
'uint32_t', |
|
1780 |
[param('ns3::Buffer::Iterator', 'start')], |
|
1781 |
is_virtual=True) |
|
1782 |
## uan-header-common.h: ns3::UanAddress ns3::UanHeaderCommon::GetDest() const [member function] |
|
1783 |
cls.add_method('GetDest', |
|
1784 |
'ns3::UanAddress', |
|
1785 |
[], |
|
1786 |
is_const=True) |
|
1787 |
## uan-header-common.h: ns3::TypeId ns3::UanHeaderCommon::GetInstanceTypeId() const [member function] |
|
1788 |
cls.add_method('GetInstanceTypeId', |
|
1789 |
'ns3::TypeId', |
|
1790 |
[], |
|
1791 |
is_const=True, is_virtual=True) |
|
1792 |
## uan-header-common.h: uint32_t ns3::UanHeaderCommon::GetSerializedSize() const [member function] |
|
1793 |
cls.add_method('GetSerializedSize', |
|
1794 |
'uint32_t', |
|
1795 |
[], |
|
1796 |
is_const=True, is_virtual=True) |
|
1797 |
## uan-header-common.h: ns3::UanAddress ns3::UanHeaderCommon::GetSrc() const [member function] |
|
1798 |
cls.add_method('GetSrc', |
|
1799 |
'ns3::UanAddress', |
|
1800 |
[], |
|
1801 |
is_const=True) |
|
1802 |
## uan-header-common.h: uint8_t ns3::UanHeaderCommon::GetType() const [member function] |
|
1803 |
cls.add_method('GetType', |
|
1804 |
'uint8_t', |
|
1805 |
[], |
|
1806 |
is_const=True) |
|
1807 |
## uan-header-common.h: static ns3::TypeId ns3::UanHeaderCommon::GetTypeId() [member function] |
|
1808 |
cls.add_method('GetTypeId', |
|
1809 |
'ns3::TypeId', |
|
1810 |
[], |
|
1811 |
is_static=True) |
|
1812 |
## uan-header-common.h: void ns3::UanHeaderCommon::Print(std::ostream & os) const [member function] |
|
1813 |
cls.add_method('Print', |
|
1814 |
'void', |
|
1815 |
[param('std::ostream &', 'os')], |
|
1816 |
is_const=True, is_virtual=True) |
|
1817 |
## uan-header-common.h: void ns3::UanHeaderCommon::Serialize(ns3::Buffer::Iterator start) const [member function] |
|
1818 |
cls.add_method('Serialize', |
|
1819 |
'void', |
|
1820 |
[param('ns3::Buffer::Iterator', 'start')], |
|
1821 |
is_const=True, is_virtual=True) |
|
1822 |
## uan-header-common.h: void ns3::UanHeaderCommon::SetDest(ns3::UanAddress dest) [member function] |
|
1823 |
cls.add_method('SetDest', |
|
1824 |
'void', |
|
1825 |
[param('ns3::UanAddress', 'dest')]) |
|
1826 |
## uan-header-common.h: void ns3::UanHeaderCommon::SetSrc(ns3::UanAddress src) [member function] |
|
1827 |
cls.add_method('SetSrc', |
|
1828 |
'void', |
|
1829 |
[param('ns3::UanAddress', 'src')]) |
|
1830 |
## uan-header-common.h: void ns3::UanHeaderCommon::SetType(uint8_t type) [member function] |
|
1831 |
cls.add_method('SetType', |
|
1832 |
'void', |
|
1833 |
[param('uint8_t', 'type')]) |
|
1834 |
return |
|
1835 |
||
1836 |
def register_Ns3UanHeaderRcAck_methods(root_module, cls): |
|
1837 |
## uan-header-rc.h: ns3::UanHeaderRcAck::UanHeaderRcAck(ns3::UanHeaderRcAck const & arg0) [copy constructor] |
|
1838 |
cls.add_constructor([param('ns3::UanHeaderRcAck const &', 'arg0')]) |
|
1839 |
## uan-header-rc.h: ns3::UanHeaderRcAck::UanHeaderRcAck() [constructor] |
|
1840 |
cls.add_constructor([]) |
|
1841 |
## uan-header-rc.h: void ns3::UanHeaderRcAck::AddNackedFrame(uint8_t frame) [member function] |
|
1842 |
cls.add_method('AddNackedFrame', |
|
1843 |
'void', |
|
1844 |
[param('uint8_t', 'frame')]) |
|
1845 |
## uan-header-rc.h: uint32_t ns3::UanHeaderRcAck::Deserialize(ns3::Buffer::Iterator start) [member function] |
|
1846 |
cls.add_method('Deserialize', |
|
1847 |
'uint32_t', |
|
1848 |
[param('ns3::Buffer::Iterator', 'start')], |
|
1849 |
is_virtual=True) |
|
1850 |
## uan-header-rc.h: uint8_t ns3::UanHeaderRcAck::GetFrameNo() const [member function] |
|
1851 |
cls.add_method('GetFrameNo', |
|
1852 |
'uint8_t', |
|
1853 |
[], |
|
1854 |
is_const=True) |
|
1855 |
## uan-header-rc.h: ns3::TypeId ns3::UanHeaderRcAck::GetInstanceTypeId() const [member function] |
|
1856 |
cls.add_method('GetInstanceTypeId', |
|
1857 |
'ns3::TypeId', |
|
1858 |
[], |
|
1859 |
is_const=True, is_virtual=True) |
|
1860 |
## uan-header-rc.h: std::set<unsigned char, std::less<unsigned char>, std::allocator<unsigned char> > const & ns3::UanHeaderRcAck::GetNackedFrames() const [member function] |
|
1861 |
cls.add_method('GetNackedFrames', |
|
1862 |
'std::set< unsigned char > const &', |
|
1863 |
[], |
|
1864 |
is_const=True) |
|
1865 |
## uan-header-rc.h: uint8_t ns3::UanHeaderRcAck::GetNoNacks() const [member function] |
|
1866 |
cls.add_method('GetNoNacks', |
|
1867 |
'uint8_t', |
|
1868 |
[], |
|
1869 |
is_const=True) |
|
1870 |
## uan-header-rc.h: uint32_t ns3::UanHeaderRcAck::GetSerializedSize() const [member function] |
|
1871 |
cls.add_method('GetSerializedSize', |
|
1872 |
'uint32_t', |
|
1873 |
[], |
|
1874 |
is_const=True, is_virtual=True) |
|
1875 |
## uan-header-rc.h: static ns3::TypeId ns3::UanHeaderRcAck::GetTypeId() [member function] |
|
1876 |
cls.add_method('GetTypeId', |
|
1877 |
'ns3::TypeId', |
|
1878 |
[], |
|
1879 |
is_static=True) |
|
1880 |
## uan-header-rc.h: void ns3::UanHeaderRcAck::Print(std::ostream & os) const [member function] |
|
1881 |
cls.add_method('Print', |
|
1882 |
'void', |
|
1883 |
[param('std::ostream &', 'os')], |
|
1884 |
is_const=True, is_virtual=True) |
|
1885 |
## uan-header-rc.h: void ns3::UanHeaderRcAck::Serialize(ns3::Buffer::Iterator start) const [member function] |
|
1886 |
cls.add_method('Serialize', |
|
1887 |
'void', |
|
1888 |
[param('ns3::Buffer::Iterator', 'start')], |
|
1889 |
is_const=True, is_virtual=True) |
|
1890 |
## uan-header-rc.h: void ns3::UanHeaderRcAck::SetFrameNo(uint8_t frameNo) [member function] |
|
1891 |
cls.add_method('SetFrameNo', |
|
1892 |
'void', |
|
1893 |
[param('uint8_t', 'frameNo')]) |
|
1894 |
return |
|
1895 |
||
1896 |
def register_Ns3UanHeaderRcCts_methods(root_module, cls): |
|
1897 |
## uan-header-rc.h: ns3::UanHeaderRcCts::UanHeaderRcCts(ns3::UanHeaderRcCts const & arg0) [copy constructor] |
|
1898 |
cls.add_constructor([param('ns3::UanHeaderRcCts const &', 'arg0')]) |
|
1899 |
## uan-header-rc.h: ns3::UanHeaderRcCts::UanHeaderRcCts() [constructor] |
|
1900 |
cls.add_constructor([]) |
|
1901 |
## uan-header-rc.h: ns3::UanHeaderRcCts::UanHeaderRcCts(uint8_t frameNo, uint8_t retryNo, ns3::Time rtsTs, ns3::Time delay, ns3::UanAddress addr) [constructor] |
|
1902 |
cls.add_constructor([param('uint8_t', 'frameNo'), param('uint8_t', 'retryNo'), param('ns3::Time', 'rtsTs'), param('ns3::Time', 'delay'), param('ns3::UanAddress', 'addr')]) |
|
1903 |
## uan-header-rc.h: uint32_t ns3::UanHeaderRcCts::Deserialize(ns3::Buffer::Iterator start) [member function] |
|
1904 |
cls.add_method('Deserialize', |
|
1905 |
'uint32_t', |
|
1906 |
[param('ns3::Buffer::Iterator', 'start')], |
|
1907 |
is_virtual=True) |
|
1908 |
## uan-header-rc.h: ns3::UanAddress ns3::UanHeaderRcCts::GetAddress() const [member function] |
|
1909 |
cls.add_method('GetAddress', |
|
1910 |
'ns3::UanAddress', |
|
1911 |
[], |
|
1912 |
is_const=True) |
|
1913 |
## uan-header-rc.h: ns3::Time ns3::UanHeaderRcCts::GetDelayToTx() const [member function] |
|
1914 |
cls.add_method('GetDelayToTx', |
|
1915 |
'ns3::Time', |
|
1916 |
[], |
|
1917 |
is_const=True) |
|
1918 |
## uan-header-rc.h: uint8_t ns3::UanHeaderRcCts::GetFrameNo() const [member function] |
|
1919 |
cls.add_method('GetFrameNo', |
|
1920 |
'uint8_t', |
|
1921 |
[], |
|
1922 |
is_const=True) |
|
1923 |
## uan-header-rc.h: ns3::TypeId ns3::UanHeaderRcCts::GetInstanceTypeId() const [member function] |
|
1924 |
cls.add_method('GetInstanceTypeId', |
|
1925 |
'ns3::TypeId', |
|
1926 |
[], |
|
1927 |
is_const=True, is_virtual=True) |
|
1928 |
## uan-header-rc.h: uint8_t ns3::UanHeaderRcCts::GetRetryNo() const [member function] |
|
1929 |
cls.add_method('GetRetryNo', |
|
1930 |
'uint8_t', |
|
1931 |
[], |
|
1932 |
is_const=True) |
|
1933 |
## uan-header-rc.h: ns3::Time ns3::UanHeaderRcCts::GetRtsTimeStamp() const [member function] |
|
1934 |
cls.add_method('GetRtsTimeStamp', |
|
1935 |
'ns3::Time', |
|
1936 |
[], |
|
1937 |
is_const=True) |
|
1938 |
## uan-header-rc.h: uint32_t ns3::UanHeaderRcCts::GetSerializedSize() const [member function] |
|
1939 |
cls.add_method('GetSerializedSize', |
|
1940 |
'uint32_t', |
|
1941 |
[], |
|
1942 |
is_const=True, is_virtual=True) |
|
1943 |
## uan-header-rc.h: static ns3::TypeId ns3::UanHeaderRcCts::GetTypeId() [member function] |
|
1944 |
cls.add_method('GetTypeId', |
|
1945 |
'ns3::TypeId', |
|
1946 |
[], |
|
1947 |
is_static=True) |
|
1948 |
## uan-header-rc.h: void ns3::UanHeaderRcCts::Print(std::ostream & os) const [member function] |
|
1949 |
cls.add_method('Print', |
|
1950 |
'void', |
|
1951 |
[param('std::ostream &', 'os')], |
|
1952 |
is_const=True, is_virtual=True) |
|
1953 |
## uan-header-rc.h: void ns3::UanHeaderRcCts::Serialize(ns3::Buffer::Iterator start) const [member function] |
|
1954 |
cls.add_method('Serialize', |
|
1955 |
'void', |
|
1956 |
[param('ns3::Buffer::Iterator', 'start')], |
|
1957 |
is_const=True, is_virtual=True) |
|
1958 |
## uan-header-rc.h: void ns3::UanHeaderRcCts::SetAddress(ns3::UanAddress addr) [member function] |
|
1959 |
cls.add_method('SetAddress', |
|
1960 |
'void', |
|
1961 |
[param('ns3::UanAddress', 'addr')]) |
|
1962 |
## uan-header-rc.h: void ns3::UanHeaderRcCts::SetDelayToTx(ns3::Time delay) [member function] |
|
1963 |
cls.add_method('SetDelayToTx', |
|
1964 |
'void', |
|
1965 |
[param('ns3::Time', 'delay')]) |
|
1966 |
## uan-header-rc.h: void ns3::UanHeaderRcCts::SetFrameNo(uint8_t frameNo) [member function] |
|
1967 |
cls.add_method('SetFrameNo', |
|
1968 |
'void', |
|
1969 |
[param('uint8_t', 'frameNo')]) |
|
1970 |
## uan-header-rc.h: void ns3::UanHeaderRcCts::SetRetryNo(uint8_t no) [member function] |
|
1971 |
cls.add_method('SetRetryNo', |
|
1972 |
'void', |
|
1973 |
[param('uint8_t', 'no')]) |
|
1974 |
## uan-header-rc.h: void ns3::UanHeaderRcCts::SetRtsTimeStamp(ns3::Time timeStamp) [member function] |
|
1975 |
cls.add_method('SetRtsTimeStamp', |
|
1976 |
'void', |
|
1977 |
[param('ns3::Time', 'timeStamp')]) |
|
1978 |
return |
|
1979 |
||
1980 |
def register_Ns3UanHeaderRcCtsGlobal_methods(root_module, cls): |
|
1981 |
## uan-header-rc.h: ns3::UanHeaderRcCtsGlobal::UanHeaderRcCtsGlobal(ns3::UanHeaderRcCtsGlobal const & arg0) [copy constructor] |
|
1982 |
cls.add_constructor([param('ns3::UanHeaderRcCtsGlobal const &', 'arg0')]) |
|
1983 |
## uan-header-rc.h: ns3::UanHeaderRcCtsGlobal::UanHeaderRcCtsGlobal() [constructor] |
|
1984 |
cls.add_constructor([]) |
|
1985 |
## uan-header-rc.h: ns3::UanHeaderRcCtsGlobal::UanHeaderRcCtsGlobal(ns3::Time wt, ns3::Time ts, uint16_t rate, uint16_t retryRate) [constructor] |
|
1986 |
cls.add_constructor([param('ns3::Time', 'wt'), param('ns3::Time', 'ts'), param('uint16_t', 'rate'), param('uint16_t', 'retryRate')]) |
|
1987 |
## uan-header-rc.h: uint32_t ns3::UanHeaderRcCtsGlobal::Deserialize(ns3::Buffer::Iterator start) [member function] |
|
1988 |
cls.add_method('Deserialize', |
|
1989 |
'uint32_t', |
|
1990 |
[param('ns3::Buffer::Iterator', 'start')], |
|
1991 |
is_virtual=True) |
|
1992 |
## uan-header-rc.h: ns3::TypeId ns3::UanHeaderRcCtsGlobal::GetInstanceTypeId() const [member function] |
|
1993 |
cls.add_method('GetInstanceTypeId', |
|
1994 |
'ns3::TypeId', |
|
1995 |
[], |
|
1996 |
is_const=True, is_virtual=True) |
|
1997 |
## uan-header-rc.h: uint16_t ns3::UanHeaderRcCtsGlobal::GetRateNum() const [member function] |
|
1998 |
cls.add_method('GetRateNum', |
|
1999 |
'uint16_t', |
|
2000 |
[], |
|
2001 |
is_const=True) |
|
2002 |
## uan-header-rc.h: uint16_t ns3::UanHeaderRcCtsGlobal::GetRetryRate() const [member function] |
|
2003 |
cls.add_method('GetRetryRate', |
|
2004 |
'uint16_t', |
|
2005 |
[], |
|
2006 |
is_const=True) |
|
2007 |
## uan-header-rc.h: uint32_t ns3::UanHeaderRcCtsGlobal::GetSerializedSize() const [member function] |
|
2008 |
cls.add_method('GetSerializedSize', |
|
2009 |
'uint32_t', |
|
2010 |
[], |
|
2011 |
is_const=True, is_virtual=True) |
|
2012 |
## uan-header-rc.h: ns3::Time ns3::UanHeaderRcCtsGlobal::GetTxTimeStamp() const [member function] |
|
2013 |
cls.add_method('GetTxTimeStamp', |
|
2014 |
'ns3::Time', |
|
2015 |
[], |
|
2016 |
is_const=True) |
|
2017 |
## uan-header-rc.h: static ns3::TypeId ns3::UanHeaderRcCtsGlobal::GetTypeId() [member function] |
|
2018 |
cls.add_method('GetTypeId', |
|
2019 |
'ns3::TypeId', |
|
2020 |
[], |
|
2021 |
is_static=True) |
|
2022 |
## uan-header-rc.h: ns3::Time ns3::UanHeaderRcCtsGlobal::GetWindowTime() const [member function] |
|
2023 |
cls.add_method('GetWindowTime', |
|
2024 |
'ns3::Time', |
|
2025 |
[], |
|
2026 |
is_const=True) |
|
2027 |
## uan-header-rc.h: void ns3::UanHeaderRcCtsGlobal::Print(std::ostream & os) const [member function] |
|
2028 |
cls.add_method('Print', |
|
2029 |
'void', |
|
2030 |
[param('std::ostream &', 'os')], |
|
2031 |
is_const=True, is_virtual=True) |
|
2032 |
## uan-header-rc.h: void ns3::UanHeaderRcCtsGlobal::Serialize(ns3::Buffer::Iterator start) const [member function] |
|
2033 |
cls.add_method('Serialize', |
|
2034 |
'void', |
|
2035 |
[param('ns3::Buffer::Iterator', 'start')], |
|
2036 |
is_const=True, is_virtual=True) |
|
2037 |
## uan-header-rc.h: void ns3::UanHeaderRcCtsGlobal::SetRateNum(uint16_t rate) [member function] |
|
2038 |
cls.add_method('SetRateNum', |
|
2039 |
'void', |
|
2040 |
[param('uint16_t', 'rate')]) |
|
2041 |
## uan-header-rc.h: void ns3::UanHeaderRcCtsGlobal::SetRetryRate(uint16_t rate) [member function] |
|
2042 |
cls.add_method('SetRetryRate', |
|
2043 |
'void', |
|
2044 |
[param('uint16_t', 'rate')]) |
|
2045 |
## uan-header-rc.h: void ns3::UanHeaderRcCtsGlobal::SetTxTimeStamp(ns3::Time timeStamp) [member function] |
|
2046 |
cls.add_method('SetTxTimeStamp', |
|
2047 |
'void', |
|
2048 |
[param('ns3::Time', 'timeStamp')]) |
|
2049 |
## uan-header-rc.h: void ns3::UanHeaderRcCtsGlobal::SetWindowTime(ns3::Time t) [member function] |
|
2050 |
cls.add_method('SetWindowTime', |
|
2051 |
'void', |
|
2052 |
[param('ns3::Time', 't')]) |
|
2053 |
return |
|
2054 |
||
2055 |
def register_Ns3UanHeaderRcData_methods(root_module, cls): |
|
2056 |
## uan-header-rc.h: ns3::UanHeaderRcData::UanHeaderRcData(ns3::UanHeaderRcData const & arg0) [copy constructor] |
|
2057 |
cls.add_constructor([param('ns3::UanHeaderRcData const &', 'arg0')]) |
|
2058 |
## uan-header-rc.h: ns3::UanHeaderRcData::UanHeaderRcData() [constructor] |
|
2059 |
cls.add_constructor([]) |
|
2060 |
## uan-header-rc.h: ns3::UanHeaderRcData::UanHeaderRcData(uint8_t frameNum, ns3::Time propDelay) [constructor] |
|
2061 |
cls.add_constructor([param('uint8_t', 'frameNum'), param('ns3::Time', 'propDelay')]) |
|
2062 |
## uan-header-rc.h: uint32_t ns3::UanHeaderRcData::Deserialize(ns3::Buffer::Iterator start) [member function] |
|
2063 |
cls.add_method('Deserialize', |
|
2064 |
'uint32_t', |
|
2065 |
[param('ns3::Buffer::Iterator', 'start')], |
|
2066 |
is_virtual=True) |
|
2067 |
## uan-header-rc.h: uint8_t ns3::UanHeaderRcData::GetFrameNo() const [member function] |
|
2068 |
cls.add_method('GetFrameNo', |
|
2069 |
'uint8_t', |
|
2070 |
[], |
|
2071 |
is_const=True) |
|
2072 |
## uan-header-rc.h: ns3::TypeId ns3::UanHeaderRcData::GetInstanceTypeId() const [member function] |
|
2073 |
cls.add_method('GetInstanceTypeId', |
|
2074 |
'ns3::TypeId', |
|
2075 |
[], |
|
2076 |
is_const=True, is_virtual=True) |
|
2077 |
## uan-header-rc.h: ns3::Time ns3::UanHeaderRcData::GetPropDelay() const [member function] |
|
2078 |
cls.add_method('GetPropDelay', |
|
2079 |
'ns3::Time', |
|
2080 |
[], |
|
2081 |
is_const=True) |
|
2082 |
## uan-header-rc.h: uint32_t ns3::UanHeaderRcData::GetSerializedSize() const [member function] |
|
2083 |
cls.add_method('GetSerializedSize', |
|
2084 |
'uint32_t', |
|
2085 |
[], |
|
2086 |
is_const=True, is_virtual=True) |
|
2087 |
## uan-header-rc.h: static ns3::TypeId ns3::UanHeaderRcData::GetTypeId() [member function] |
|
2088 |
cls.add_method('GetTypeId', |
|
2089 |
'ns3::TypeId', |
|
2090 |
[], |
|
2091 |
is_static=True) |
|
2092 |
## uan-header-rc.h: void ns3::UanHeaderRcData::Print(std::ostream & os) const [member function] |
|
2093 |
cls.add_method('Print', |
|
2094 |
'void', |
|
2095 |
[param('std::ostream &', 'os')], |
|
2096 |
is_const=True, is_virtual=True) |
|
2097 |
## uan-header-rc.h: void ns3::UanHeaderRcData::Serialize(ns3::Buffer::Iterator start) const [member function] |
|
2098 |
cls.add_method('Serialize', |
|
2099 |
'void', |
|
2100 |
[param('ns3::Buffer::Iterator', 'start')], |
|
2101 |
is_const=True, is_virtual=True) |
|
2102 |
## uan-header-rc.h: void ns3::UanHeaderRcData::SetFrameNo(uint8_t frameNum) [member function] |
|
2103 |
cls.add_method('SetFrameNo', |
|
2104 |
'void', |
|
2105 |
[param('uint8_t', 'frameNum')]) |
|
2106 |
## uan-header-rc.h: void ns3::UanHeaderRcData::SetPropDelay(ns3::Time propDelay) [member function] |
|
2107 |
cls.add_method('SetPropDelay', |
|
2108 |
'void', |
|
2109 |
[param('ns3::Time', 'propDelay')]) |
|
2110 |
return |
|
2111 |
||
2112 |
def register_Ns3UanHeaderRcRts_methods(root_module, cls): |
|
2113 |
## uan-header-rc.h: ns3::UanHeaderRcRts::UanHeaderRcRts(ns3::UanHeaderRcRts const & arg0) [copy constructor] |
|
2114 |
cls.add_constructor([param('ns3::UanHeaderRcRts const &', 'arg0')]) |
|
2115 |
## uan-header-rc.h: ns3::UanHeaderRcRts::UanHeaderRcRts() [constructor] |
|
2116 |
cls.add_constructor([]) |
|
2117 |
## uan-header-rc.h: ns3::UanHeaderRcRts::UanHeaderRcRts(uint8_t frameNo, uint8_t retryNo, uint8_t noFrames, uint16_t length, ns3::Time ts) [constructor] |
|
2118 |
cls.add_constructor([param('uint8_t', 'frameNo'), param('uint8_t', 'retryNo'), param('uint8_t', 'noFrames'), param('uint16_t', 'length'), param('ns3::Time', 'ts')]) |
|
2119 |
## uan-header-rc.h: uint32_t ns3::UanHeaderRcRts::Deserialize(ns3::Buffer::Iterator start) [member function] |
|
2120 |
cls.add_method('Deserialize', |
|
2121 |
'uint32_t', |
|
2122 |
[param('ns3::Buffer::Iterator', 'start')], |
|
2123 |
is_virtual=True) |
|
2124 |
## uan-header-rc.h: uint8_t ns3::UanHeaderRcRts::GetFrameNo() const [member function] |
|
2125 |
cls.add_method('GetFrameNo', |
|
2126 |
'uint8_t', |
|
2127 |
[], |
|
2128 |
is_const=True) |
|
2129 |
## uan-header-rc.h: ns3::TypeId ns3::UanHeaderRcRts::GetInstanceTypeId() const [member function] |
|
2130 |
cls.add_method('GetInstanceTypeId', |
|
2131 |
'ns3::TypeId', |
|
2132 |
[], |
|
2133 |
is_const=True, is_virtual=True) |
|
2134 |
## uan-header-rc.h: uint16_t ns3::UanHeaderRcRts::GetLength() const [member function] |
|
2135 |
cls.add_method('GetLength', |
|
2136 |
'uint16_t', |
|
2137 |
[], |
|
2138 |
is_const=True) |
|
2139 |
## uan-header-rc.h: uint8_t ns3::UanHeaderRcRts::GetNoFrames() const [member function] |
|
2140 |
cls.add_method('GetNoFrames', |
|
2141 |
'uint8_t', |
|
2142 |
[], |
|
2143 |
is_const=True) |
|
2144 |
## uan-header-rc.h: uint8_t ns3::UanHeaderRcRts::GetRetryNo() const [member function] |
|
2145 |
cls.add_method('GetRetryNo', |
|
2146 |
'uint8_t', |
|
2147 |
[], |
|
2148 |
is_const=True) |
|
2149 |
## uan-header-rc.h: uint32_t ns3::UanHeaderRcRts::GetSerializedSize() const [member function] |
|
2150 |
cls.add_method('GetSerializedSize', |
|
2151 |
'uint32_t', |
|
2152 |
[], |
|
2153 |
is_const=True, is_virtual=True) |
|
2154 |
## uan-header-rc.h: ns3::Time ns3::UanHeaderRcRts::GetTimeStamp() const [member function] |
|
2155 |
cls.add_method('GetTimeStamp', |
|
2156 |
'ns3::Time', |
|
2157 |
[], |
|
2158 |
is_const=True) |
|
2159 |
## uan-header-rc.h: static ns3::TypeId ns3::UanHeaderRcRts::GetTypeId() [member function] |
|
2160 |
cls.add_method('GetTypeId', |
|
2161 |
'ns3::TypeId', |
|
2162 |
[], |
|
2163 |
is_static=True) |
|
2164 |
## uan-header-rc.h: void ns3::UanHeaderRcRts::Print(std::ostream & os) const [member function] |
|
2165 |
cls.add_method('Print', |
|
2166 |
'void', |
|
2167 |
[param('std::ostream &', 'os')], |
|
2168 |
is_const=True, is_virtual=True) |
|
2169 |
## uan-header-rc.h: void ns3::UanHeaderRcRts::Serialize(ns3::Buffer::Iterator start) const [member function] |
|
2170 |
cls.add_method('Serialize', |
|
2171 |
'void', |
|
2172 |
[param('ns3::Buffer::Iterator', 'start')], |
|
2173 |
is_const=True, is_virtual=True) |
|
2174 |
## uan-header-rc.h: void ns3::UanHeaderRcRts::SetFrameNo(uint8_t fno) [member function] |
|
2175 |
cls.add_method('SetFrameNo', |
|
2176 |
'void', |
|
2177 |
[param('uint8_t', 'fno')]) |
|
2178 |
## uan-header-rc.h: void ns3::UanHeaderRcRts::SetLength(uint16_t length) [member function] |
|
2179 |
cls.add_method('SetLength', |
|
2180 |
'void', |
|
2181 |
[param('uint16_t', 'length')]) |
|
2182 |
## uan-header-rc.h: void ns3::UanHeaderRcRts::SetNoFrames(uint8_t no) [member function] |
|
2183 |
cls.add_method('SetNoFrames', |
|
2184 |
'void', |
|
2185 |
[param('uint8_t', 'no')]) |
|
2186 |
## uan-header-rc.h: void ns3::UanHeaderRcRts::SetRetryNo(uint8_t no) [member function] |
|
2187 |
cls.add_method('SetRetryNo', |
|
2188 |
'void', |
|
2189 |
[param('uint8_t', 'no')]) |
|
2190 |
## uan-header-rc.h: void ns3::UanHeaderRcRts::SetTimeStamp(ns3::Time timeStamp) [member function] |
|
2191 |
cls.add_method('SetTimeStamp', |
|
2192 |
'void', |
|
2193 |
[param('ns3::Time', 'timeStamp')]) |
|
2194 |
return |
|
2195 |
||
2196 |
def register_Ns3UanMac_methods(root_module, cls): |
|
2197 |
## uan-mac.h: ns3::UanMac::UanMac() [constructor] |
|
2198 |
cls.add_constructor([]) |
|
2199 |
## uan-mac.h: ns3::UanMac::UanMac(ns3::UanMac const & arg0) [copy constructor] |
|
2200 |
cls.add_constructor([param('ns3::UanMac const &', 'arg0')]) |
|
2201 |
## uan-mac.h: void ns3::UanMac::AttachPhy(ns3::Ptr<ns3::UanPhy> phy) [member function] |
|
2202 |
cls.add_method('AttachPhy', |
|
2203 |
'void', |
|
2204 |
[param('ns3::Ptr< ns3::UanPhy >', 'phy')], |
|
2205 |
is_pure_virtual=True, is_virtual=True) |
|
2206 |
## uan-mac.h: void ns3::UanMac::Clear() [member function] |
|
2207 |
cls.add_method('Clear', |
|
2208 |
'void', |
|
2209 |
[], |
|
2210 |
is_pure_virtual=True, is_virtual=True) |
|
2211 |
## uan-mac.h: bool ns3::UanMac::Enqueue(ns3::Ptr<ns3::Packet> pkt, ns3::Address const & dest, uint16_t protocolNumber) [member function] |
|
2212 |
cls.add_method('Enqueue', |
|
2213 |
'bool', |
|
2214 |
[param('ns3::Ptr< ns3::Packet >', 'pkt'), param('ns3::Address const &', 'dest'), param('uint16_t', 'protocolNumber')], |
|
2215 |
is_pure_virtual=True, is_virtual=True) |
|
2216 |
## uan-mac.h: ns3::Address ns3::UanMac::GetAddress() [member function] |
|
2217 |
cls.add_method('GetAddress', |
|
2218 |
'ns3::Address', |
|
2219 |
[], |
|
2220 |
is_pure_virtual=True, is_virtual=True) |
|
2221 |
## uan-mac.h: ns3::Address ns3::UanMac::GetBroadcast() const [member function] |
|
2222 |
cls.add_method('GetBroadcast', |
|
2223 |
'ns3::Address', |
|
2224 |
[], |
|
2225 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
|
2226 |
## uan-mac.h: void ns3::UanMac::SetAddress(ns3::UanAddress addr) [member function] |
|
2227 |
cls.add_method('SetAddress', |
|
2228 |
'void', |
|
2229 |
[param('ns3::UanAddress', 'addr')], |
|
2230 |
is_pure_virtual=True, is_virtual=True) |
|
2231 |
## uan-mac.h: void ns3::UanMac::SetForwardUpCb(ns3::Callback<void, ns3::Ptr<ns3::Packet>, ns3::UanAddress const&, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> cb) [member function] |
|
2232 |
cls.add_method('SetForwardUpCb', |
|
2233 |
'void', |
|
2234 |
[param('ns3::Callback< void, ns3::Ptr< ns3::Packet >, ns3::UanAddress const &, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'cb')], |
|
2235 |
is_pure_virtual=True, is_virtual=True) |
|
2236 |
return |
|
2237 |
||
2238 |
def register_Ns3UanMacAloha_methods(root_module, cls): |
|
2239 |
## uan-mac-aloha.h: ns3::UanMacAloha::UanMacAloha(ns3::UanMacAloha const & arg0) [copy constructor] |
|
2240 |
cls.add_constructor([param('ns3::UanMacAloha const &', 'arg0')]) |
|
2241 |
## uan-mac-aloha.h: ns3::UanMacAloha::UanMacAloha() [constructor] |
|
2242 |
cls.add_constructor([]) |
|
2243 |
## uan-mac-aloha.h: void ns3::UanMacAloha::AttachPhy(ns3::Ptr<ns3::UanPhy> phy) [member function] |
|
2244 |
cls.add_method('AttachPhy', |
|
2245 |
'void', |
|
2246 |
[param('ns3::Ptr< ns3::UanPhy >', 'phy')], |
|
2247 |
is_virtual=True) |
|
2248 |
## uan-mac-aloha.h: void ns3::UanMacAloha::Clear() [member function] |
|
2249 |
cls.add_method('Clear', |
|
2250 |
'void', |
|
2251 |
[], |
|
2252 |
is_virtual=True) |
|
2253 |
## uan-mac-aloha.h: bool ns3::UanMacAloha::Enqueue(ns3::Ptr<ns3::Packet> pkt, ns3::Address const & dest, uint16_t protocolNumber) [member function] |
|
2254 |
cls.add_method('Enqueue', |
|
2255 |
'bool', |
|
2256 |
[param('ns3::Ptr< ns3::Packet >', 'pkt'), param('ns3::Address const &', 'dest'), param('uint16_t', 'protocolNumber')], |
|
2257 |
is_virtual=True) |
|
2258 |
## uan-mac-aloha.h: ns3::Address ns3::UanMacAloha::GetAddress() [member function] |
|
2259 |
cls.add_method('GetAddress', |
|
2260 |
'ns3::Address', |
|
2261 |
[], |
|
2262 |
is_virtual=True) |
|
2263 |
## uan-mac-aloha.h: ns3::Address ns3::UanMacAloha::GetBroadcast() const [member function] |
|
2264 |
cls.add_method('GetBroadcast', |
|
2265 |
'ns3::Address', |
|
2266 |
[], |
|
2267 |
is_const=True, is_virtual=True) |
|
2268 |
## uan-mac-aloha.h: static ns3::TypeId ns3::UanMacAloha::GetTypeId() [member function] |
|
2269 |
cls.add_method('GetTypeId', |
|
2270 |
'ns3::TypeId', |
|
2271 |
[], |
|
2272 |
is_static=True) |
|
2273 |
## uan-mac-aloha.h: void ns3::UanMacAloha::SetAddress(ns3::UanAddress addr) [member function] |
|
2274 |
cls.add_method('SetAddress', |
|
2275 |
'void', |
|
2276 |
[param('ns3::UanAddress', 'addr')], |
|
2277 |
is_virtual=True) |
|
2278 |
## uan-mac-aloha.h: void ns3::UanMacAloha::SetForwardUpCb(ns3::Callback<void, ns3::Ptr<ns3::Packet>, ns3::UanAddress const&, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> cb) [member function] |
|
2279 |
cls.add_method('SetForwardUpCb', |
|
2280 |
'void', |
|
2281 |
[param('ns3::Callback< void, ns3::Ptr< ns3::Packet >, ns3::UanAddress const &, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'cb')], |
|
2282 |
is_virtual=True) |
|
2283 |
## uan-mac-aloha.h: void ns3::UanMacAloha::DoDispose() [member function] |
|
2284 |
cls.add_method('DoDispose', |
|
2285 |
'void', |
|
2286 |
[], |
|
2287 |
visibility='protected', is_virtual=True) |
|
2288 |
return |
|
2289 |
||
2290 |
def register_Ns3UanMacCw_methods(root_module, cls): |
|
2291 |
## uan-mac-cw.h: ns3::UanMacCw::UanMacCw(ns3::UanMacCw const & arg0) [copy constructor] |
|
2292 |
cls.add_constructor([param('ns3::UanMacCw const &', 'arg0')]) |
|
2293 |
## uan-mac-cw.h: ns3::UanMacCw::UanMacCw() [constructor] |
|
2294 |
cls.add_constructor([]) |
|
2295 |
## uan-mac-cw.h: void ns3::UanMacCw::AttachPhy(ns3::Ptr<ns3::UanPhy> phy) [member function] |
|
2296 |
cls.add_method('AttachPhy', |
|
2297 |
'void', |
|
2298 |
[param('ns3::Ptr< ns3::UanPhy >', 'phy')], |
|
2299 |
is_virtual=True) |
|
2300 |
## uan-mac-cw.h: void ns3::UanMacCw::Clear() [member function] |
|
2301 |
cls.add_method('Clear', |
|
2302 |
'void', |
|
2303 |
[], |
|
2304 |
is_virtual=True) |
|
2305 |
## uan-mac-cw.h: bool ns3::UanMacCw::Enqueue(ns3::Ptr<ns3::Packet> pkt, ns3::Address const & dest, uint16_t protocolNumber) [member function] |
|
2306 |
cls.add_method('Enqueue', |
|
2307 |
'bool', |
|
2308 |
[param('ns3::Ptr< ns3::Packet >', 'pkt'), param('ns3::Address const &', 'dest'), param('uint16_t', 'protocolNumber')], |
|
2309 |
is_virtual=True) |
|
2310 |
## uan-mac-cw.h: ns3::Address ns3::UanMacCw::GetAddress() [member function] |
|
2311 |
cls.add_method('GetAddress', |
|
2312 |
'ns3::Address', |
|
2313 |
[], |
|
2314 |
is_virtual=True) |
|
2315 |
## uan-mac-cw.h: ns3::Address ns3::UanMacCw::GetBroadcast() const [member function] |
|
2316 |
cls.add_method('GetBroadcast', |
|
2317 |
'ns3::Address', |
|
2318 |
[], |
|
2319 |
is_const=True, is_virtual=True) |
|
2320 |
## uan-mac-cw.h: uint32_t ns3::UanMacCw::GetCw() [member function] |
|
2321 |
cls.add_method('GetCw', |
|
2322 |
'uint32_t', |
|
2323 |
[], |
|
2324 |
is_virtual=True) |
|
2325 |
## uan-mac-cw.h: ns3::Time ns3::UanMacCw::GetSlotTime() [member function] |
|
2326 |
cls.add_method('GetSlotTime', |
|
2327 |
'ns3::Time', |
|
2328 |
[], |
|
2329 |
is_virtual=True) |
|
2330 |
## uan-mac-cw.h: static ns3::TypeId ns3::UanMacCw::GetTypeId() [member function] |
|
2331 |
cls.add_method('GetTypeId', |
|
2332 |
'ns3::TypeId', |
|
2333 |
[], |
|
2334 |
is_static=True) |
|
2335 |
## uan-mac-cw.h: void ns3::UanMacCw::NotifyCcaEnd() [member function] |
|
2336 |
cls.add_method('NotifyCcaEnd', |
|
2337 |
'void', |
|
2338 |
[], |
|
2339 |
is_virtual=True) |
|
2340 |
## uan-mac-cw.h: void ns3::UanMacCw::NotifyCcaStart() [member function] |
|
2341 |
cls.add_method('NotifyCcaStart', |
|
2342 |
'void', |
|
2343 |
[], |
|
2344 |
is_virtual=True) |
|
2345 |
## uan-mac-cw.h: void ns3::UanMacCw::NotifyRxEndError() [member function] |
|
2346 |
cls.add_method('NotifyRxEndError', |
|
2347 |
'void', |
|
2348 |
[], |
|
2349 |
is_virtual=True) |
|
2350 |
## uan-mac-cw.h: void ns3::UanMacCw::NotifyRxEndOk() [member function] |
|
2351 |
cls.add_method('NotifyRxEndOk', |
|
2352 |
'void', |
|
2353 |
[], |
|
2354 |
is_virtual=True) |
|
2355 |
## uan-mac-cw.h: void ns3::UanMacCw::NotifyRxStart() [member function] |
|
2356 |
cls.add_method('NotifyRxStart', |
|
2357 |
'void', |
|
2358 |
[], |
|
2359 |
is_virtual=True) |
|
2360 |
## uan-mac-cw.h: void ns3::UanMacCw::NotifyTxStart(ns3::Time duration) [member function] |
|
2361 |
cls.add_method('NotifyTxStart', |
|
2362 |
'void', |
|
2363 |
[param('ns3::Time', 'duration')], |
|
2364 |
is_virtual=True) |
|
2365 |
## uan-mac-cw.h: void ns3::UanMacCw::SetAddress(ns3::UanAddress addr) [member function] |
|
2366 |
cls.add_method('SetAddress', |
|
2367 |
'void', |
|
2368 |
[param('ns3::UanAddress', 'addr')], |
|
2369 |
is_virtual=True) |
|
2370 |
## uan-mac-cw.h: void ns3::UanMacCw::SetCw(uint32_t cw) [member function] |
|
2371 |
cls.add_method('SetCw', |
|
2372 |
'void', |
|
2373 |
[param('uint32_t', 'cw')], |
|
2374 |
is_virtual=True) |
|
2375 |
## uan-mac-cw.h: void ns3::UanMacCw::SetForwardUpCb(ns3::Callback<void, ns3::Ptr<ns3::Packet>, ns3::UanAddress const&, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> cb) [member function] |
|
2376 |
cls.add_method('SetForwardUpCb', |
|
2377 |
'void', |
|
2378 |
[param('ns3::Callback< void, ns3::Ptr< ns3::Packet >, ns3::UanAddress const &, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'cb')], |
|
2379 |
is_virtual=True) |
|
2380 |
## uan-mac-cw.h: void ns3::UanMacCw::SetSlotTime(ns3::Time duration) [member function] |
|
2381 |
cls.add_method('SetSlotTime', |
|
2382 |
'void', |
|
2383 |
[param('ns3::Time', 'duration')], |
|
2384 |
is_virtual=True) |
|
2385 |
## uan-mac-cw.h: void ns3::UanMacCw::DoDispose() [member function] |
|
2386 |
cls.add_method('DoDispose', |
|
2387 |
'void', |
|
2388 |
[], |
|
2389 |
visibility='protected', is_virtual=True) |
|
2390 |
return |
|
2391 |
||
2392 |
def register_Ns3UanMacRc_methods(root_module, cls): |
|
2393 |
## uan-mac-rc.h: ns3::UanMacRc::UanMacRc(ns3::UanMacRc const & arg0) [copy constructor] |
|
2394 |
cls.add_constructor([param('ns3::UanMacRc const &', 'arg0')]) |
|
2395 |
## uan-mac-rc.h: ns3::UanMacRc::UanMacRc() [constructor] |
|
2396 |
cls.add_constructor([]) |
|
2397 |
## uan-mac-rc.h: void ns3::UanMacRc::AttachPhy(ns3::Ptr<ns3::UanPhy> phy) [member function] |
|
2398 |
cls.add_method('AttachPhy', |
|
2399 |
'void', |
|
2400 |
[param('ns3::Ptr< ns3::UanPhy >', 'phy')], |
|
2401 |
is_virtual=True) |
|
2402 |
## uan-mac-rc.h: void ns3::UanMacRc::Clear() [member function] |
|
2403 |
cls.add_method('Clear', |
|
2404 |
'void', |
|
2405 |
[], |
|
2406 |
is_virtual=True) |
|
2407 |
## uan-mac-rc.h: bool ns3::UanMacRc::Enqueue(ns3::Ptr<ns3::Packet> pkt, ns3::Address const & dest, uint16_t protocolNumber) [member function] |
|
2408 |
cls.add_method('Enqueue', |
|
2409 |
'bool', |
|
2410 |
[param('ns3::Ptr< ns3::Packet >', 'pkt'), param('ns3::Address const &', 'dest'), param('uint16_t', 'protocolNumber')], |
|
2411 |
is_virtual=True) |
|
2412 |
## uan-mac-rc.h: ns3::Address ns3::UanMacRc::GetAddress() [member function] |
|
2413 |
cls.add_method('GetAddress', |
|
2414 |
'ns3::Address', |
|
2415 |
[], |
|
2416 |
is_virtual=True) |
|
2417 |
## uan-mac-rc.h: ns3::Address ns3::UanMacRc::GetBroadcast() const [member function] |
|
2418 |
cls.add_method('GetBroadcast', |
|
2419 |
'ns3::Address', |
|
2420 |
[], |
|
2421 |
is_const=True, is_virtual=True) |
|
2422 |
## uan-mac-rc.h: static ns3::TypeId ns3::UanMacRc::GetTypeId() [member function] |
|
2423 |
cls.add_method('GetTypeId', |
|
2424 |
'ns3::TypeId', |
|
2425 |
[], |
|
2426 |
is_static=True) |
|
2427 |
## uan-mac-rc.h: void ns3::UanMacRc::SetAddress(ns3::UanAddress addr) [member function] |
|
2428 |
cls.add_method('SetAddress', |
|
2429 |
'void', |
|
2430 |
[param('ns3::UanAddress', 'addr')], |
|
2431 |
is_virtual=True) |
|
2432 |
## uan-mac-rc.h: void ns3::UanMacRc::SetForwardUpCb(ns3::Callback<void, ns3::Ptr<ns3::Packet>, ns3::UanAddress const&, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> cb) [member function] |
|
2433 |
cls.add_method('SetForwardUpCb', |
|
2434 |
'void', |
|
2435 |
[param('ns3::Callback< void, ns3::Ptr< ns3::Packet >, ns3::UanAddress const &, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'cb')], |
|
2436 |
is_virtual=True) |
|
2437 |
## uan-mac-rc.h: void ns3::UanMacRc::DoDispose() [member function] |
|
2438 |
cls.add_method('DoDispose', |
|
2439 |
'void', |
|
2440 |
[], |
|
2441 |
visibility='protected', is_virtual=True) |
|
2442 |
return |
|
2443 |
||
2444 |
def register_Ns3UanMacRcGw_methods(root_module, cls): |
|
2445 |
## uan-mac-rc-gw.h: ns3::UanMacRcGw::UanMacRcGw(ns3::UanMacRcGw const & arg0) [copy constructor] |
|
2446 |
cls.add_constructor([param('ns3::UanMacRcGw const &', 'arg0')]) |
|
2447 |
## uan-mac-rc-gw.h: ns3::UanMacRcGw::UanMacRcGw() [constructor] |
|
2448 |
cls.add_constructor([]) |
|
2449 |
## uan-mac-rc-gw.h: void ns3::UanMacRcGw::AttachPhy(ns3::Ptr<ns3::UanPhy> phy) [member function] |
|
2450 |
cls.add_method('AttachPhy', |
|
2451 |
'void', |
|
2452 |
[param('ns3::Ptr< ns3::UanPhy >', 'phy')], |
|
2453 |
is_virtual=True) |
|
2454 |
## uan-mac-rc-gw.h: void ns3::UanMacRcGw::Clear() [member function] |
|
2455 |
cls.add_method('Clear', |
|
2456 |
'void', |
|
2457 |
[], |
|
2458 |
is_virtual=True) |
|
2459 |
## uan-mac-rc-gw.h: bool ns3::UanMacRcGw::Enqueue(ns3::Ptr<ns3::Packet> pkt, ns3::Address const & dest, uint16_t protocolNumber) [member function] |
|
2460 |
cls.add_method('Enqueue', |
|
2461 |
'bool', |
|
2462 |
[param('ns3::Ptr< ns3::Packet >', 'pkt'), param('ns3::Address const &', 'dest'), param('uint16_t', 'protocolNumber')], |
|
2463 |
is_virtual=True) |
|
2464 |
## uan-mac-rc-gw.h: ns3::Address ns3::UanMacRcGw::GetAddress() [member function] |
|
2465 |
cls.add_method('GetAddress', |
|
2466 |
'ns3::Address', |
|
2467 |
[], |
|
2468 |
is_virtual=True) |
|
2469 |
## uan-mac-rc-gw.h: ns3::Address ns3::UanMacRcGw::GetBroadcast() const [member function] |
|
2470 |
cls.add_method('GetBroadcast', |
|
2471 |
'ns3::Address', |
|
2472 |
[], |
|
2473 |
is_const=True, is_virtual=True) |
|
2474 |
## uan-mac-rc-gw.h: static ns3::TypeId ns3::UanMacRcGw::GetTypeId() [member function] |
|
2475 |
cls.add_method('GetTypeId', |
|
2476 |
'ns3::TypeId', |
|
2477 |
[], |
|
2478 |
is_static=True) |
|
2479 |
## uan-mac-rc-gw.h: void ns3::UanMacRcGw::SetAddress(ns3::UanAddress addr) [member function] |
|
2480 |
cls.add_method('SetAddress', |
|
2481 |
'void', |
|
2482 |
[param('ns3::UanAddress', 'addr')], |
|
2483 |
is_virtual=True) |
|
2484 |
## uan-mac-rc-gw.h: void ns3::UanMacRcGw::SetForwardUpCb(ns3::Callback<void, ns3::Ptr<ns3::Packet>, ns3::UanAddress const&, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> cb) [member function] |
|
2485 |
cls.add_method('SetForwardUpCb', |
|
2486 |
'void', |
|
2487 |
[param('ns3::Callback< void, ns3::Ptr< ns3::Packet >, ns3::UanAddress const &, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'cb')], |
|
2488 |
is_virtual=True) |
|
2489 |
## uan-mac-rc-gw.h: void ns3::UanMacRcGw::DoDispose() [member function] |
|
2490 |
cls.add_method('DoDispose', |
|
2491 |
'void', |
|
2492 |
[], |
|
2493 |
visibility='protected', is_virtual=True) |
|
2494 |
return |
|
2495 |
||
2496 |
def register_Ns3UanNoiseModel_methods(root_module, cls): |
|
2497 |
## uan-noise-model.h: ns3::UanNoiseModel::UanNoiseModel() [constructor] |
|
2498 |
cls.add_constructor([]) |
|
2499 |
## uan-noise-model.h: ns3::UanNoiseModel::UanNoiseModel(ns3::UanNoiseModel const & arg0) [copy constructor] |
|
2500 |
cls.add_constructor([param('ns3::UanNoiseModel const &', 'arg0')]) |
|
2501 |
## uan-noise-model.h: void ns3::UanNoiseModel::Clear() [member function] |
|
2502 |
cls.add_method('Clear', |
|
2503 |
'void', |
|
2504 |
[], |
|
2505 |
is_virtual=True) |
|
2506 |
## uan-noise-model.h: void ns3::UanNoiseModel::DoDispose() [member function] |
|
2507 |
cls.add_method('DoDispose', |
|
2508 |
'void', |
|
2509 |
[], |
|
2510 |
is_virtual=True) |
|
2511 |
## uan-noise-model.h: double ns3::UanNoiseModel::GetNoiseDbHz(double fKhz) const [member function] |
|
2512 |
cls.add_method('GetNoiseDbHz', |
|
2513 |
'double', |
|
2514 |
[param('double', 'fKhz')], |
|
2515 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
|
2516 |
return |
|
2517 |
||
2518 |
def register_Ns3UanNoiseModelDefault_methods(root_module, cls): |
|
2519 |
## uan-noise-model-default.h: ns3::UanNoiseModelDefault::UanNoiseModelDefault(ns3::UanNoiseModelDefault const & arg0) [copy constructor] |
|
2520 |
cls.add_constructor([param('ns3::UanNoiseModelDefault const &', 'arg0')]) |
|
2521 |
## uan-noise-model-default.h: ns3::UanNoiseModelDefault::UanNoiseModelDefault() [constructor] |
|
2522 |
cls.add_constructor([]) |
|
2523 |
## uan-noise-model-default.h: double ns3::UanNoiseModelDefault::GetNoiseDbHz(double fKhz) const [member function] |
|
2524 |
cls.add_method('GetNoiseDbHz', |
|
2525 |
'double', |
|
2526 |
[param('double', 'fKhz')], |
|
2527 |
is_const=True, is_virtual=True) |
|
2528 |
## uan-noise-model-default.h: static ns3::TypeId ns3::UanNoiseModelDefault::GetTypeId() [member function] |
|
2529 |
cls.add_method('GetTypeId', |
|
2530 |
'ns3::TypeId', |
|
2531 |
[], |
|
2532 |
is_static=True) |
|
2533 |
return |
|
2534 |
||
2535 |
def register_Ns3UanPhy_methods(root_module, cls): |
|
2536 |
## uan-phy.h: ns3::UanPhy::UanPhy() [constructor] |
|
2537 |
cls.add_constructor([]) |
|
2538 |
## uan-phy.h: ns3::UanPhy::UanPhy(ns3::UanPhy const & arg0) [copy constructor] |
|
2539 |
cls.add_constructor([param('ns3::UanPhy const &', 'arg0')]) |
|
2540 |
## uan-phy.h: void ns3::UanPhy::Clear() [member function] |
|
2541 |
cls.add_method('Clear', |
|
2542 |
'void', |
|
2543 |
[], |
|
2544 |
is_pure_virtual=True, is_virtual=True) |
|
2545 |
## uan-phy.h: double ns3::UanPhy::GetCcaThresholdDb() [member function] |
|
2546 |
cls.add_method('GetCcaThresholdDb', |
|
2547 |
'double', |
|
2548 |
[], |
|
2549 |
is_pure_virtual=True, is_virtual=True) |
|
2550 |
## uan-phy.h: ns3::Ptr<ns3::UanChannel> ns3::UanPhy::GetChannel() const [member function] |
|
2551 |
cls.add_method('GetChannel', |
|
2552 |
'ns3::Ptr< ns3::UanChannel >', |
|
2553 |
[], |
|
2554 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
|
2555 |
## uan-phy.h: ns3::Ptr<ns3::UanNetDevice> ns3::UanPhy::GetDevice() [member function] |
|
2556 |
cls.add_method('GetDevice', |
|
2557 |
'ns3::Ptr< ns3::UanNetDevice >', |
|
2558 |
[], |
|
2559 |
is_pure_virtual=True, is_virtual=True) |
|
2560 |
## uan-phy.h: ns3::UanTxMode ns3::UanPhy::GetMode(uint32_t n) [member function] |
|
2561 |
cls.add_method('GetMode', |
|
2562 |
'ns3::UanTxMode', |
|
2563 |
[param('uint32_t', 'n')], |
|
2564 |
is_pure_virtual=True, is_virtual=True) |
|
2565 |
## uan-phy.h: uint32_t ns3::UanPhy::GetNModes() [member function] |
|
2566 |
cls.add_method('GetNModes', |
|
2567 |
'uint32_t', |
|
2568 |
[], |
|
2569 |
is_pure_virtual=True, is_virtual=True) |
|
2570 |
## uan-phy.h: ns3::Ptr<ns3::Packet> ns3::UanPhy::GetPacketRx() const [member function] |
|
2571 |
cls.add_method('GetPacketRx', |
|
2572 |
'ns3::Ptr< ns3::Packet >', |
|
2573 |
[], |
|
2574 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
|
2575 |
## uan-phy.h: double ns3::UanPhy::GetRxGainDb() [member function] |
|
2576 |
cls.add_method('GetRxGainDb', |
|
2577 |
'double', |
|
2578 |
[], |
|
2579 |
is_pure_virtual=True, is_virtual=True) |
|
2580 |
## uan-phy.h: double ns3::UanPhy::GetRxThresholdDb() [member function] |
|
2581 |
cls.add_method('GetRxThresholdDb', |
|
2582 |
'double', |
|
2583 |
[], |
|
2584 |
is_pure_virtual=True, is_virtual=True) |
|
2585 |
## uan-phy.h: ns3::Ptr<ns3::UanTransducer> ns3::UanPhy::GetTransducer() [member function] |
|
2586 |
cls.add_method('GetTransducer', |
|
2587 |
'ns3::Ptr< ns3::UanTransducer >', |
|
2588 |
[], |
|
2589 |
is_pure_virtual=True, is_virtual=True) |
|
2590 |
## uan-phy.h: double ns3::UanPhy::GetTxPowerDb() [member function] |
|
2591 |
cls.add_method('GetTxPowerDb', |
|
2592 |
'double', |
|
2593 |
[], |
|
2594 |
is_pure_virtual=True, is_virtual=True) |
|
2595 |
## uan-phy.h: bool ns3::UanPhy::IsStateBusy() [member function] |
|
2596 |
cls.add_method('IsStateBusy', |
|
2597 |
'bool', |
|
2598 |
[], |
|
2599 |
is_pure_virtual=True, is_virtual=True) |
|
2600 |
## uan-phy.h: bool ns3::UanPhy::IsStateCcaBusy() [member function] |
|
2601 |
cls.add_method('IsStateCcaBusy', |
|
2602 |
'bool', |
|
2603 |
[], |
|
2604 |
is_pure_virtual=True, is_virtual=True) |
|
2605 |
## uan-phy.h: bool ns3::UanPhy::IsStateIdle() [member function] |
|
2606 |
cls.add_method('IsStateIdle', |
|
2607 |
'bool', |
|
2608 |
[], |
|
2609 |
is_pure_virtual=True, is_virtual=True) |
|
2610 |
## uan-phy.h: bool ns3::UanPhy::IsStateRx() [member function] |
|
2611 |
cls.add_method('IsStateRx', |
|
2612 |
'bool', |
|
2613 |
[], |
|
2614 |
is_pure_virtual=True, is_virtual=True) |
|
2615 |
## uan-phy.h: bool ns3::UanPhy::IsStateTx() [member function] |
|
2616 |
cls.add_method('IsStateTx', |
|
2617 |
'bool', |
|
2618 |
[], |
|
2619 |
is_pure_virtual=True, is_virtual=True) |
|
2620 |
## uan-phy.h: void ns3::UanPhy::NotifyIntChange() [member function] |
|
2621 |
cls.add_method('NotifyIntChange', |
|
2622 |
'void', |
|
2623 |
[], |
|
2624 |
is_pure_virtual=True, is_virtual=True) |
|
2625 |
## uan-phy.h: void ns3::UanPhy::NotifyTransStartTx(ns3::Ptr<ns3::Packet> packet, double txPowerDb, ns3::UanTxMode txMode) [member function] |
|
2626 |
cls.add_method('NotifyTransStartTx', |
|
2627 |
'void', |
|
2628 |
[param('ns3::Ptr< ns3::Packet >', 'packet'), param('double', 'txPowerDb'), param('ns3::UanTxMode', 'txMode')], |
|
2629 |
is_pure_virtual=True, is_virtual=True) |
|
2630 |
## uan-phy.h: void ns3::UanPhy::RegisterListener(ns3::UanPhyListener * listener) [member function] |
|
2631 |
cls.add_method('RegisterListener', |
|
2632 |
'void', |
|
2633 |
[param('ns3::UanPhyListener *', 'listener')], |
|
2634 |
is_pure_virtual=True, is_virtual=True) |
|
2635 |
## uan-phy.h: void ns3::UanPhy::SendPacket(ns3::Ptr<ns3::Packet> pkt, uint32_t modeNum) [member function] |
|
2636 |
cls.add_method('SendPacket', |
|
2637 |
'void', |
|
2638 |
[param('ns3::Ptr< ns3::Packet >', 'pkt'), param('uint32_t', 'modeNum')], |
|
2639 |
is_pure_virtual=True, is_virtual=True) |
|
2640 |
## uan-phy.h: void ns3::UanPhy::SetCcaThresholdDb(double thresh) [member function] |
|
2641 |
cls.add_method('SetCcaThresholdDb', |
|
2642 |
'void', |
|
2643 |
[param('double', 'thresh')], |
|
2644 |
is_pure_virtual=True, is_virtual=True) |
|
2645 |
## uan-phy.h: void ns3::UanPhy::SetChannel(ns3::Ptr<ns3::UanChannel> channel) [member function] |
|
2646 |
cls.add_method('SetChannel', |
|
2647 |
'void', |
|
2648 |
[param('ns3::Ptr< ns3::UanChannel >', 'channel')], |
|
2649 |
is_pure_virtual=True, is_virtual=True) |
|
2650 |
## uan-phy.h: void ns3::UanPhy::SetDevice(ns3::Ptr<ns3::UanNetDevice> device) [member function] |
|
2651 |
cls.add_method('SetDevice', |
|
2652 |
'void', |
|
2653 |
[param('ns3::Ptr< ns3::UanNetDevice >', 'device')], |
|
2654 |
is_pure_virtual=True, is_virtual=True) |
|
2655 |
## uan-phy.h: void ns3::UanPhy::SetMac(ns3::Ptr<ns3::UanMac> mac) [member function] |
|
2656 |
cls.add_method('SetMac', |
|
2657 |
'void', |
|
2658 |
[param('ns3::Ptr< ns3::UanMac >', 'mac')], |
|
2659 |
is_pure_virtual=True, is_virtual=True) |
|
2660 |
## uan-phy.h: void ns3::UanPhy::SetReceiveErrorCallback(ns3::Callback<void, ns3::Ptr<ns3::Packet>, double, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> cb) [member function] |
|
2661 |
cls.add_method('SetReceiveErrorCallback', |
|
2662 |
'void', |
|
2663 |
[param('ns3::Callback< void, ns3::Ptr< ns3::Packet >, double, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'cb')], |
|
2664 |
is_pure_virtual=True, is_virtual=True) |
|
2665 |
## uan-phy.h: void ns3::UanPhy::SetReceiveOkCallback(ns3::Callback<void, ns3::Ptr<ns3::Packet>, double, ns3::UanTxMode, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> cb) [member function] |
|
2666 |
cls.add_method('SetReceiveOkCallback', |
|
2667 |
'void', |
|
2668 |
[param('ns3::Callback< void, ns3::Ptr< ns3::Packet >, double, ns3::UanTxMode, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'cb')], |
|
2669 |
is_pure_virtual=True, is_virtual=True) |
|
2670 |
## uan-phy.h: void ns3::UanPhy::SetRxGainDb(double gain) [member function] |
|
2671 |
cls.add_method('SetRxGainDb', |
|
2672 |
'void', |
|
2673 |
[param('double', 'gain')], |
|
2674 |
is_pure_virtual=True, is_virtual=True) |
|
2675 |
## uan-phy.h: void ns3::UanPhy::SetRxThresholdDb(double thresh) [member function] |
|
2676 |
cls.add_method('SetRxThresholdDb', |
|
2677 |
'void', |
|
2678 |
[param('double', 'thresh')], |
|
2679 |
is_pure_virtual=True, is_virtual=True) |
|
2680 |
## uan-phy.h: void ns3::UanPhy::SetTransducer(ns3::Ptr<ns3::UanTransducer> trans) [member function] |
|
2681 |
cls.add_method('SetTransducer', |
|
2682 |
'void', |
|
2683 |
[param('ns3::Ptr< ns3::UanTransducer >', 'trans')], |
|
2684 |
is_pure_virtual=True, is_virtual=True) |
|
2685 |
## uan-phy.h: void ns3::UanPhy::SetTxPowerDb(double txpwr) [member function] |
|
2686 |
cls.add_method('SetTxPowerDb', |
|
2687 |
'void', |
|
2688 |
[param('double', 'txpwr')], |
|
2689 |
is_pure_virtual=True, is_virtual=True) |
|
2690 |
## uan-phy.h: void ns3::UanPhy::StartRxPacket(ns3::Ptr<ns3::Packet> pkt, double rxPowerDb, ns3::UanTxMode txMode, ns3::UanPdp pdp) [member function] |
|
2691 |
cls.add_method('StartRxPacket', |
|
2692 |
'void', |
|
2693 |
[param('ns3::Ptr< ns3::Packet >', 'pkt'), param('double', 'rxPowerDb'), param('ns3::UanTxMode', 'txMode'), param('ns3::UanPdp', 'pdp')], |
|
2694 |
is_pure_virtual=True, is_virtual=True) |
|
2695 |
return |
|
2696 |
||
2697 |
def register_Ns3UanPhyCalcSinr_methods(root_module, cls): |
|
2698 |
## uan-phy.h: ns3::UanPhyCalcSinr::UanPhyCalcSinr() [constructor] |
|
2699 |
cls.add_constructor([]) |
|
2700 |
## uan-phy.h: ns3::UanPhyCalcSinr::UanPhyCalcSinr(ns3::UanPhyCalcSinr const & arg0) [copy constructor] |
|
2701 |
cls.add_constructor([param('ns3::UanPhyCalcSinr const &', 'arg0')]) |
|
2702 |
## uan-phy.h: double ns3::UanPhyCalcSinr::CalcSinrDb(ns3::Ptr<ns3::Packet> pkt, ns3::Time arrTime, double rxPowerDb, double ambNoiseDb, ns3::UanTxMode mode, ns3::UanPdp pdp, std::list<ns3::UanPacketArrival, std::allocator<ns3::UanPacketArrival> > const & arrivalList) const [member function] |
|
2703 |
cls.add_method('CalcSinrDb', |
|
2704 |
'double', |
|
2705 |
[param('ns3::Ptr< ns3::Packet >', 'pkt'), param('ns3::Time', 'arrTime'), param('double', 'rxPowerDb'), param('double', 'ambNoiseDb'), param('ns3::UanTxMode', 'mode'), param('ns3::UanPdp', 'pdp'), param('std::list< ns3::UanPacketArrival > const &', 'arrivalList')], |
|
2706 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
|
2707 |
## uan-phy.h: void ns3::UanPhyCalcSinr::Clear() [member function] |
|
2708 |
cls.add_method('Clear', |
|
2709 |
'void', |
|
2710 |
[], |
|
2711 |
is_virtual=True) |
|
2712 |
## uan-phy.h: double ns3::UanPhyCalcSinr::DbToKp(double db) const [member function] |
|
2713 |
cls.add_method('DbToKp', |
|
2714 |
'double', |
|
2715 |
[param('double', 'db')], |
|
2716 |
is_const=True) |
|
2717 |
## uan-phy.h: void ns3::UanPhyCalcSinr::DoDispose() [member function] |
|
2718 |
cls.add_method('DoDispose', |
|
2719 |
'void', |
|
2720 |
[], |
|
2721 |
is_virtual=True) |
|
2722 |
## uan-phy.h: double ns3::UanPhyCalcSinr::KpToDb(double kp) const [member function] |
|
2723 |
cls.add_method('KpToDb', |
|
2724 |
'double', |
|
2725 |
[param('double', 'kp')], |
|
2726 |
is_const=True) |
|
2727 |
return |
|
2728 |
||
2729 |
def register_Ns3UanPhyCalcSinrDefault_methods(root_module, cls): |
|
2730 |
## uan-phy-gen.h: ns3::UanPhyCalcSinrDefault::UanPhyCalcSinrDefault(ns3::UanPhyCalcSinrDefault const & arg0) [copy constructor] |
|
2731 |
cls.add_constructor([param('ns3::UanPhyCalcSinrDefault const &', 'arg0')]) |
|
2732 |
## uan-phy-gen.h: ns3::UanPhyCalcSinrDefault::UanPhyCalcSinrDefault() [constructor] |
|
2733 |
cls.add_constructor([]) |
|
2734 |
## uan-phy-gen.h: double ns3::UanPhyCalcSinrDefault::CalcSinrDb(ns3::Ptr<ns3::Packet> pkt, ns3::Time arrTime, double rxPowerDb, double ambNoiseDb, ns3::UanTxMode mode, ns3::UanPdp pdp, std::list<ns3::UanPacketArrival, std::allocator<ns3::UanPacketArrival> > const & arrivalList) const [member function] |
|
2735 |
cls.add_method('CalcSinrDb', |
|
2736 |
'double', |
|
2737 |
[param('ns3::Ptr< ns3::Packet >', 'pkt'), param('ns3::Time', 'arrTime'), param('double', 'rxPowerDb'), param('double', 'ambNoiseDb'), param('ns3::UanTxMode', 'mode'), param('ns3::UanPdp', 'pdp'), param('std::list< ns3::UanPacketArrival > const &', 'arrivalList')], |
|
2738 |
is_const=True, is_virtual=True) |
|
2739 |
## uan-phy-gen.h: static ns3::TypeId ns3::UanPhyCalcSinrDefault::GetTypeId() [member function] |
|
2740 |
cls.add_method('GetTypeId', |
|
2741 |
'ns3::TypeId', |
|
2742 |
[], |
|
2743 |
is_static=True) |
|
2744 |
return |
|
2745 |
||
2746 |
def register_Ns3UanPhyCalcSinrDual_methods(root_module, cls): |
|
2747 |
## uan-phy-dual.h: ns3::UanPhyCalcSinrDual::UanPhyCalcSinrDual(ns3::UanPhyCalcSinrDual const & arg0) [copy constructor] |
|
2748 |
cls.add_constructor([param('ns3::UanPhyCalcSinrDual const &', 'arg0')]) |
|
2749 |
## uan-phy-dual.h: ns3::UanPhyCalcSinrDual::UanPhyCalcSinrDual() [constructor] |
|
2750 |
cls.add_constructor([]) |
|
2751 |
## uan-phy-dual.h: double ns3::UanPhyCalcSinrDual::CalcSinrDb(ns3::Ptr<ns3::Packet> pkt, ns3::Time arrTime, double rxPowerDb, double ambNoiseDb, ns3::UanTxMode mode, ns3::UanPdp pdp, std::list<ns3::UanPacketArrival, std::allocator<ns3::UanPacketArrival> > const & arrivalList) const [member function] |
|
2752 |
cls.add_method('CalcSinrDb', |
|
2753 |
'double', |
|
2754 |
[param('ns3::Ptr< ns3::Packet >', 'pkt'), param('ns3::Time', 'arrTime'), param('double', 'rxPowerDb'), param('double', 'ambNoiseDb'), param('ns3::UanTxMode', 'mode'), param('ns3::UanPdp', 'pdp'), param('std::list< ns3::UanPacketArrival > const &', 'arrivalList')], |
|
2755 |
is_const=True, is_virtual=True) |
|
2756 |
## uan-phy-dual.h: static ns3::TypeId ns3::UanPhyCalcSinrDual::GetTypeId() [member function] |
|
2757 |
cls.add_method('GetTypeId', |
|
2758 |
'ns3::TypeId', |
|
2759 |
[], |
|
2760 |
is_static=True) |
|
2761 |
return |
|
2762 |
||
2763 |
def register_Ns3UanPhyCalcSinrFhFsk_methods(root_module, cls): |
|
2764 |
## uan-phy-gen.h: ns3::UanPhyCalcSinrFhFsk::UanPhyCalcSinrFhFsk(ns3::UanPhyCalcSinrFhFsk const & arg0) [copy constructor] |
|
2765 |
cls.add_constructor([param('ns3::UanPhyCalcSinrFhFsk const &', 'arg0')]) |
|
2766 |
## uan-phy-gen.h: ns3::UanPhyCalcSinrFhFsk::UanPhyCalcSinrFhFsk() [constructor] |
|
2767 |
cls.add_constructor([]) |
|
2768 |
## uan-phy-gen.h: double ns3::UanPhyCalcSinrFhFsk::CalcSinrDb(ns3::Ptr<ns3::Packet> pkt, ns3::Time arrTime, double rxPowerDb, double ambNoiseDb, ns3::UanTxMode mode, ns3::UanPdp pdp, std::list<ns3::UanPacketArrival, std::allocator<ns3::UanPacketArrival> > const & arrivalList) const [member function] |
|
2769 |
cls.add_method('CalcSinrDb', |
|
2770 |
'double', |
|
2771 |
[param('ns3::Ptr< ns3::Packet >', 'pkt'), param('ns3::Time', 'arrTime'), param('double', 'rxPowerDb'), param('double', 'ambNoiseDb'), param('ns3::UanTxMode', 'mode'), param('ns3::UanPdp', 'pdp'), param('std::list< ns3::UanPacketArrival > const &', 'arrivalList')], |
|
2772 |
is_const=True, is_virtual=True) |
|
2773 |
## uan-phy-gen.h: static ns3::TypeId ns3::UanPhyCalcSinrFhFsk::GetTypeId() [member function] |
|
2774 |
cls.add_method('GetTypeId', |
|
2775 |
'ns3::TypeId', |
|
2776 |
[], |
|
2777 |
is_static=True) |
|
2778 |
return |
|
2779 |
||
2780 |
def register_Ns3UanPhyDual_methods(root_module, cls): |
|
2781 |
## uan-phy-dual.h: ns3::UanPhyDual::UanPhyDual(ns3::UanPhyDual const & arg0) [copy constructor] |
|
2782 |
cls.add_constructor([param('ns3::UanPhyDual const &', 'arg0')]) |
|
2783 |
## uan-phy-dual.h: ns3::UanPhyDual::UanPhyDual() [constructor] |
|
2784 |
cls.add_constructor([]) |
|
2785 |
## uan-phy-dual.h: void ns3::UanPhyDual::Clear() [member function] |
|
2786 |
cls.add_method('Clear', |
|
2787 |
'void', |
|
2788 |
[], |
|
2789 |
is_virtual=True) |
|
2790 |
## uan-phy-dual.h: double ns3::UanPhyDual::GetCcaThresholdDb() [member function] |
|
2791 |
cls.add_method('GetCcaThresholdDb', |
|
2792 |
'double', |
|
2793 |
[], |
|
2794 |
is_virtual=True) |
|
2795 |
## uan-phy-dual.h: double ns3::UanPhyDual::GetCcaThresholdPhy1() const [member function] |
|
2796 |
cls.add_method('GetCcaThresholdPhy1', |
|
2797 |
'double', |
|
2798 |
[], |
|
2799 |
is_const=True) |
|
2800 |
## uan-phy-dual.h: double ns3::UanPhyDual::GetCcaThresholdPhy2() const [member function] |
|
2801 |
cls.add_method('GetCcaThresholdPhy2', |
|
2802 |
'double', |
|
2803 |
[], |
|
2804 |
is_const=True) |
|
2805 |
## uan-phy-dual.h: ns3::Ptr<ns3::UanChannel> ns3::UanPhyDual::GetChannel() const [member function] |
|
2806 |
cls.add_method('GetChannel', |
|
2807 |
'ns3::Ptr< ns3::UanChannel >', |
|
2808 |
[], |
|
2809 |
is_const=True, is_virtual=True) |
|
2810 |
## uan-phy-dual.h: ns3::Ptr<ns3::UanNetDevice> ns3::UanPhyDual::GetDevice() [member function] |
|
2811 |
cls.add_method('GetDevice', |
|
2812 |
'ns3::Ptr< ns3::UanNetDevice >', |
|
2813 |
[], |
|
2814 |
is_virtual=True) |
|
2815 |
## uan-phy-dual.h: ns3::UanTxMode ns3::UanPhyDual::GetMode(uint32_t n) [member function] |
|
2816 |
cls.add_method('GetMode', |
|
2817 |
'ns3::UanTxMode', |
|
2818 |
[param('uint32_t', 'n')], |
|
2819 |
is_virtual=True) |
|
2820 |
## uan-phy-dual.h: ns3::UanModesList ns3::UanPhyDual::GetModesPhy1() const [member function] |
|
2821 |
cls.add_method('GetModesPhy1', |
|
2822 |
'ns3::UanModesList', |
|
2823 |
[], |
|
2824 |
is_const=True) |
|
2825 |
## uan-phy-dual.h: ns3::UanModesList ns3::UanPhyDual::GetModesPhy2() const [member function] |
|
2826 |
cls.add_method('GetModesPhy2', |
|
2827 |
'ns3::UanModesList', |
|
2828 |
[], |
|
2829 |
is_const=True) |
|
2830 |
## uan-phy-dual.h: uint32_t ns3::UanPhyDual::GetNModes() [member function] |
|
2831 |
cls.add_method('GetNModes', |
|
2832 |
'uint32_t', |
|
2833 |
[], |
|
2834 |
is_virtual=True) |
|
2835 |
## uan-phy-dual.h: ns3::Ptr<ns3::Packet> ns3::UanPhyDual::GetPacketRx() const [member function] |
|
2836 |
cls.add_method('GetPacketRx', |
|
2837 |
'ns3::Ptr< ns3::Packet >', |
|
2838 |
[], |
|
2839 |
is_const=True, is_virtual=True) |
|
2840 |
## uan-phy-dual.h: ns3::Ptr<ns3::UanPhyPer> ns3::UanPhyDual::GetPerModelPhy1() const [member function] |
|
2841 |
cls.add_method('GetPerModelPhy1', |
|
2842 |
'ns3::Ptr< ns3::UanPhyPer >', |
|
2843 |
[], |
|
2844 |
is_const=True) |
|
2845 |
## uan-phy-dual.h: ns3::Ptr<ns3::UanPhyPer> ns3::UanPhyDual::GetPerModelPhy2() const [member function] |
|
2846 |
cls.add_method('GetPerModelPhy2', |
|
2847 |
'ns3::Ptr< ns3::UanPhyPer >', |
|
2848 |
[], |
|
2849 |
is_const=True) |
|
2850 |
## uan-phy-dual.h: ns3::Ptr<ns3::Packet> ns3::UanPhyDual::GetPhy1PacketRx() const [member function] |
|
2851 |
cls.add_method('GetPhy1PacketRx', |
|
2852 |
'ns3::Ptr< ns3::Packet >', |
|
2853 |
[], |
|
2854 |
is_const=True) |
|
2855 |
## uan-phy-dual.h: ns3::Ptr<ns3::Packet> ns3::UanPhyDual::GetPhy2PacketRx() const [member function] |
|
2856 |
cls.add_method('GetPhy2PacketRx', |
|
2857 |
'ns3::Ptr< ns3::Packet >', |
|
2858 |
[], |
|
2859 |
is_const=True) |
|
2860 |
## uan-phy-dual.h: double ns3::UanPhyDual::GetRxGainDb() [member function] |
|
2861 |
cls.add_method('GetRxGainDb', |
|
2862 |
'double', |
|
2863 |
[], |
|
2864 |
is_virtual=True) |
|
2865 |
## uan-phy-dual.h: double ns3::UanPhyDual::GetRxGainDbPhy1() const [member function] |
|
2866 |
cls.add_method('GetRxGainDbPhy1', |
|
2867 |
'double', |
|
2868 |
[], |
|
2869 |
is_const=True) |
|
2870 |
## uan-phy-dual.h: double ns3::UanPhyDual::GetRxGainDbPhy2() const [member function] |
|
2871 |
cls.add_method('GetRxGainDbPhy2', |
|
2872 |
'double', |
|
2873 |
[], |
|
2874 |
is_const=True) |
|
2875 |
## uan-phy-dual.h: double ns3::UanPhyDual::GetRxThresholdDb() [member function] |
|
2876 |
cls.add_method('GetRxThresholdDb', |
|
2877 |
'double', |
|
2878 |
[], |
|
2879 |
is_virtual=True) |
|
2880 |
## uan-phy-dual.h: ns3::Ptr<ns3::UanPhyCalcSinr> ns3::UanPhyDual::GetSinrModelPhy1() const [member function] |
|
2881 |
cls.add_method('GetSinrModelPhy1', |
|
2882 |
'ns3::Ptr< ns3::UanPhyCalcSinr >', |
|
2883 |
[], |
|
2884 |
is_const=True) |
|
2885 |
## uan-phy-dual.h: ns3::Ptr<ns3::UanPhyCalcSinr> ns3::UanPhyDual::GetSinrModelPhy2() const [member function] |
|
2886 |
cls.add_method('GetSinrModelPhy2', |
|
2887 |
'ns3::Ptr< ns3::UanPhyCalcSinr >', |
|
2888 |
[], |
|
2889 |
is_const=True) |
|
2890 |
## uan-phy-dual.h: ns3::Ptr<ns3::UanTransducer> ns3::UanPhyDual::GetTransducer() [member function] |
|
2891 |
cls.add_method('GetTransducer', |
|
2892 |
'ns3::Ptr< ns3::UanTransducer >', |
|
2893 |
[], |
|
2894 |
is_virtual=True) |
|
2895 |
## uan-phy-dual.h: double ns3::UanPhyDual::GetTxPowerDb() [member function] |
|
2896 |
cls.add_method('GetTxPowerDb', |
|
2897 |
'double', |
|
2898 |
[], |
|
2899 |
is_virtual=True) |
|
2900 |
## uan-phy-dual.h: double ns3::UanPhyDual::GetTxPowerDbPhy1() const [member function] |
|
2901 |
cls.add_method('GetTxPowerDbPhy1', |
|
2902 |
'double', |
|
2903 |
[], |
|
2904 |
is_const=True) |
|
2905 |
## uan-phy-dual.h: double ns3::UanPhyDual::GetTxPowerDbPhy2() const [member function] |
|
2906 |
cls.add_method('GetTxPowerDbPhy2', |
|
2907 |
'double', |
|
2908 |
[], |
|
2909 |
is_const=True) |
|
2910 |
## uan-phy-dual.h: static ns3::TypeId ns3::UanPhyDual::GetTypeId() [member function] |
|
2911 |
cls.add_method('GetTypeId', |
|
2912 |
'ns3::TypeId', |
|
2913 |
[], |
|
2914 |
is_static=True) |
|
2915 |
## uan-phy-dual.h: bool ns3::UanPhyDual::IsPhy1Idle() [member function] |
|
2916 |
cls.add_method('IsPhy1Idle', |
|
2917 |
'bool', |
|
2918 |
[]) |
|
2919 |
## uan-phy-dual.h: bool ns3::UanPhyDual::IsPhy1Rx() [member function] |
|
2920 |
cls.add_method('IsPhy1Rx', |
|
2921 |
'bool', |
|
2922 |
[]) |
|
2923 |
## uan-phy-dual.h: bool ns3::UanPhyDual::IsPhy1Tx() [member function] |
|
2924 |
cls.add_method('IsPhy1Tx', |
|
2925 |
'bool', |
|
2926 |
[]) |
|
2927 |
## uan-phy-dual.h: bool ns3::UanPhyDual::IsPhy2Idle() [member function] |
|
2928 |
cls.add_method('IsPhy2Idle', |
|
2929 |
'bool', |
|
2930 |
[]) |
|
2931 |
## uan-phy-dual.h: bool ns3::UanPhyDual::IsPhy2Rx() [member function] |
|
2932 |
cls.add_method('IsPhy2Rx', |
|
2933 |
'bool', |
|
2934 |
[]) |
|
2935 |
## uan-phy-dual.h: bool ns3::UanPhyDual::IsPhy2Tx() [member function] |
|
2936 |
cls.add_method('IsPhy2Tx', |
|
2937 |
'bool', |
|
2938 |
[]) |
|
2939 |
## uan-phy-dual.h: bool ns3::UanPhyDual::IsStateBusy() [member function] |
|
2940 |
cls.add_method('IsStateBusy', |
|
2941 |
'bool', |
|
2942 |
[], |
|
2943 |
is_virtual=True) |
|
2944 |
## uan-phy-dual.h: bool ns3::UanPhyDual::IsStateCcaBusy() [member function] |
|
2945 |
cls.add_method('IsStateCcaBusy', |
|
2946 |
'bool', |
|
2947 |
[], |
|
2948 |
is_virtual=True) |
|
2949 |
## uan-phy-dual.h: bool ns3::UanPhyDual::IsStateIdle() [member function] |
|
2950 |
cls.add_method('IsStateIdle', |
|
2951 |
'bool', |
|
2952 |
[], |
|
2953 |
is_virtual=True) |
|
2954 |
## uan-phy-dual.h: bool ns3::UanPhyDual::IsStateRx() [member function] |
|
2955 |
cls.add_method('IsStateRx', |
|
2956 |
'bool', |
|
2957 |
[], |
|
2958 |
is_virtual=True) |
|
2959 |
## uan-phy-dual.h: bool ns3::UanPhyDual::IsStateTx() [member function] |
|
2960 |
cls.add_method('IsStateTx', |
|
2961 |
'bool', |
|
2962 |
[], |
|
2963 |
is_virtual=True) |
|
2964 |
## uan-phy-dual.h: void ns3::UanPhyDual::NotifyIntChange() [member function] |
|
2965 |
cls.add_method('NotifyIntChange', |
|
2966 |
'void', |
|
2967 |
[], |
|
2968 |
is_virtual=True) |
|
2969 |
## uan-phy-dual.h: void ns3::UanPhyDual::NotifyTransStartTx(ns3::Ptr<ns3::Packet> packet, double txPowerDb, ns3::UanTxMode txMode) [member function] |
|
2970 |
cls.add_method('NotifyTransStartTx', |
|
2971 |
'void', |
|
2972 |
[param('ns3::Ptr< ns3::Packet >', 'packet'), param('double', 'txPowerDb'), param('ns3::UanTxMode', 'txMode')], |
|
2973 |
is_virtual=True) |
|
2974 |
## uan-phy-dual.h: void ns3::UanPhyDual::RegisterListener(ns3::UanPhyListener * listener) [member function] |
|
2975 |
cls.add_method('RegisterListener', |
|
2976 |
'void', |
|
2977 |
[param('ns3::UanPhyListener *', 'listener')], |
|
2978 |
is_virtual=True) |
|
2979 |
## uan-phy-dual.h: void ns3::UanPhyDual::SendPacket(ns3::Ptr<ns3::Packet> pkt, uint32_t modeNum) [member function] |
|
2980 |
cls.add_method('SendPacket', |
|
2981 |
'void', |
|
2982 |
[param('ns3::Ptr< ns3::Packet >', 'pkt'), param('uint32_t', 'modeNum')], |
|
2983 |
is_virtual=True) |
|
2984 |
## uan-phy-dual.h: void ns3::UanPhyDual::SetCcaThresholdDb(double thresh) [member function] |
|
2985 |
cls.add_method('SetCcaThresholdDb', |
|
2986 |
'void', |
|
2987 |
[param('double', 'thresh')], |
|
2988 |
is_virtual=True) |
|
2989 |
## uan-phy-dual.h: void ns3::UanPhyDual::SetCcaThresholdPhy1(double thresh) [member function] |
|
2990 |
cls.add_method('SetCcaThresholdPhy1', |
|
2991 |
'void', |
|
2992 |
[param('double', 'thresh')]) |
|
2993 |
## uan-phy-dual.h: void ns3::UanPhyDual::SetCcaThresholdPhy2(double thresh) [member function] |
|
2994 |
cls.add_method('SetCcaThresholdPhy2', |
|
2995 |
'void', |
|
2996 |
[param('double', 'thresh')]) |
|
2997 |
## uan-phy-dual.h: void ns3::UanPhyDual::SetChannel(ns3::Ptr<ns3::UanChannel> channel) [member function] |
|
2998 |
cls.add_method('SetChannel', |
|
2999 |
'void', |
|
3000 |
[param('ns3::Ptr< ns3::UanChannel >', 'channel')], |
|
3001 |
is_virtual=True) |
|
3002 |
## uan-phy-dual.h: void ns3::UanPhyDual::SetDevice(ns3::Ptr<ns3::UanNetDevice> device) [member function] |
|
3003 |
cls.add_method('SetDevice', |
|
3004 |
'void', |
|
3005 |
[param('ns3::Ptr< ns3::UanNetDevice >', 'device')], |
|
3006 |
is_virtual=True) |
|
3007 |
## uan-phy-dual.h: void ns3::UanPhyDual::SetMac(ns3::Ptr<ns3::UanMac> mac) [member function] |
|
3008 |
cls.add_method('SetMac', |
|
3009 |
'void', |
|
3010 |
[param('ns3::Ptr< ns3::UanMac >', 'mac')], |
|
3011 |
is_virtual=True) |
|
3012 |
## uan-phy-dual.h: void ns3::UanPhyDual::SetModesPhy1(ns3::UanModesList modes) [member function] |
|
3013 |
cls.add_method('SetModesPhy1', |
|
3014 |
'void', |
|
3015 |
[param('ns3::UanModesList', 'modes')]) |
|
3016 |
## uan-phy-dual.h: void ns3::UanPhyDual::SetModesPhy2(ns3::UanModesList modes) [member function] |
|
3017 |
cls.add_method('SetModesPhy2', |
|
3018 |
'void', |
|
3019 |
[param('ns3::UanModesList', 'modes')]) |
|
3020 |
## uan-phy-dual.h: void ns3::UanPhyDual::SetPerModelPhy1(ns3::Ptr<ns3::UanPhyPer> per) [member function] |
|
3021 |
cls.add_method('SetPerModelPhy1', |
|
3022 |
'void', |
|
3023 |
[param('ns3::Ptr< ns3::UanPhyPer >', 'per')]) |
|
3024 |
## uan-phy-dual.h: void ns3::UanPhyDual::SetPerModelPhy2(ns3::Ptr<ns3::UanPhyPer> per) [member function] |
|
3025 |
cls.add_method('SetPerModelPhy2', |
|
3026 |
'void', |
|
3027 |
[param('ns3::Ptr< ns3::UanPhyPer >', 'per')]) |
|
3028 |
## uan-phy-dual.h: void ns3::UanPhyDual::SetReceiveErrorCallback(ns3::Callback<void, ns3::Ptr<ns3::Packet>, double, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> cb) [member function] |
|
3029 |
cls.add_method('SetReceiveErrorCallback', |
|
3030 |
'void', |
|
3031 |
[param('ns3::Callback< void, ns3::Ptr< ns3::Packet >, double, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'cb')], |
|
3032 |
is_virtual=True) |
|
3033 |
## uan-phy-dual.h: void ns3::UanPhyDual::SetReceiveOkCallback(ns3::Callback<void, ns3::Ptr<ns3::Packet>, double, ns3::UanTxMode, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> cb) [member function] |
|
3034 |
cls.add_method('SetReceiveOkCallback', |
|
3035 |
'void', |
|
3036 |
[param('ns3::Callback< void, ns3::Ptr< ns3::Packet >, double, ns3::UanTxMode, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'cb')], |
|
3037 |
is_virtual=True) |
|
3038 |
## uan-phy-dual.h: void ns3::UanPhyDual::SetRxGainDb(double gain) [member function] |
|
3039 |
cls.add_method('SetRxGainDb', |
|
3040 |
'void', |
|
3041 |
[param('double', 'gain')], |
|
3042 |
is_virtual=True) |
|
3043 |
## uan-phy-dual.h: void ns3::UanPhyDual::SetRxGainDbPhy1(double gain) [member function] |
|
3044 |
cls.add_method('SetRxGainDbPhy1', |
|
3045 |
'void', |
|
3046 |
[param('double', 'gain')]) |
|
3047 |
## uan-phy-dual.h: void ns3::UanPhyDual::SetRxGainDbPhy2(double gain) [member function] |
|
3048 |
cls.add_method('SetRxGainDbPhy2', |
|
3049 |
'void', |
|
3050 |
[param('double', 'gain')]) |
|
3051 |
## uan-phy-dual.h: void ns3::UanPhyDual::SetRxThresholdDb(double thresh) [member function] |
|
3052 |
cls.add_method('SetRxThresholdDb', |
|
3053 |
'void', |
|
3054 |
[param('double', 'thresh')], |
|
3055 |
is_virtual=True) |
|
3056 |
## uan-phy-dual.h: void ns3::UanPhyDual::SetSinrModelPhy1(ns3::Ptr<ns3::UanPhyCalcSinr> calcSinr) [member function] |
|
3057 |
cls.add_method('SetSinrModelPhy1', |
|
3058 |
'void', |
|
3059 |
[param('ns3::Ptr< ns3::UanPhyCalcSinr >', 'calcSinr')]) |
|
3060 |
## uan-phy-dual.h: void ns3::UanPhyDual::SetSinrModelPhy2(ns3::Ptr<ns3::UanPhyCalcSinr> calcSinr) [member function] |
|
3061 |
cls.add_method('SetSinrModelPhy2', |
|
3062 |
'void', |
|
3063 |
[param('ns3::Ptr< ns3::UanPhyCalcSinr >', 'calcSinr')]) |
|
3064 |
## uan-phy-dual.h: void ns3::UanPhyDual::SetTransducer(ns3::Ptr<ns3::UanTransducer> trans) [member function] |
|
3065 |
cls.add_method('SetTransducer', |
|
3066 |
'void', |
|
3067 |
[param('ns3::Ptr< ns3::UanTransducer >', 'trans')], |
|
3068 |
is_virtual=True) |
|
3069 |
## uan-phy-dual.h: void ns3::UanPhyDual::SetTxPowerDb(double txpwr) [member function] |
|
3070 |
cls.add_method('SetTxPowerDb', |
|
3071 |
'void', |
|
3072 |
[param('double', 'txpwr')], |
|
3073 |
is_virtual=True) |
|
3074 |
## uan-phy-dual.h: void ns3::UanPhyDual::SetTxPowerDbPhy1(double arg0) [member function] |
|
3075 |
cls.add_method('SetTxPowerDbPhy1', |
|
3076 |
'void', |
|
3077 |
[param('double', 'arg0')]) |
|
3078 |
## uan-phy-dual.h: void ns3::UanPhyDual::SetTxPowerDbPhy2(double arg0) [member function] |
|
3079 |
cls.add_method('SetTxPowerDbPhy2', |
|
3080 |
'void', |
|
3081 |
[param('double', 'arg0')]) |
|
3082 |
## uan-phy-dual.h: void ns3::UanPhyDual::StartRxPacket(ns3::Ptr<ns3::Packet> pkt, double rxPowerDb, ns3::UanTxMode txMode, ns3::UanPdp pdp) [member function] |
|
3083 |
cls.add_method('StartRxPacket', |
|
3084 |
'void', |
|
3085 |
[param('ns3::Ptr< ns3::Packet >', 'pkt'), param('double', 'rxPowerDb'), param('ns3::UanTxMode', 'txMode'), param('ns3::UanPdp', 'pdp')], |
|
3086 |
is_virtual=True) |
|
3087 |
## uan-phy-dual.h: void ns3::UanPhyDual::DoDispose() [member function] |
|
3088 |
cls.add_method('DoDispose', |
|
3089 |
'void', |
|
3090 |
[], |
|
3091 |
visibility='protected', is_virtual=True) |
|
3092 |
return |
|
3093 |
||
3094 |
def register_Ns3UanPhyGen_methods(root_module, cls): |
|
3095 |
## uan-phy-gen.h: ns3::UanPhyGen::UanPhyGen(ns3::UanPhyGen const & arg0) [copy constructor] |
|
3096 |
cls.add_constructor([param('ns3::UanPhyGen const &', 'arg0')]) |
|
3097 |
## uan-phy-gen.h: ns3::UanPhyGen::UanPhyGen() [constructor] |
|
3098 |
cls.add_constructor([]) |
|
3099 |
## uan-phy-gen.h: void ns3::UanPhyGen::Clear() [member function] |
|
3100 |
cls.add_method('Clear', |
|
3101 |
'void', |
|
3102 |
[], |
|
3103 |
is_virtual=True) |
|
3104 |
## uan-phy-gen.h: double ns3::UanPhyGen::GetCcaThresholdDb() [member function] |
|
3105 |
cls.add_method('GetCcaThresholdDb', |
|
3106 |
'double', |
|
3107 |
[], |
|
3108 |
is_virtual=True) |
|
3109 |
## uan-phy-gen.h: ns3::Ptr<ns3::UanChannel> ns3::UanPhyGen::GetChannel() const [member function] |
|
3110 |
cls.add_method('GetChannel', |
|
3111 |
'ns3::Ptr< ns3::UanChannel >', |
|
3112 |
[], |
|
3113 |
is_const=True, is_virtual=True) |
|
3114 |
## uan-phy-gen.h: static ns3::UanModesList ns3::UanPhyGen::GetDefaultModes() [member function] |
|
3115 |
cls.add_method('GetDefaultModes', |
|
3116 |
'ns3::UanModesList', |
|
3117 |
[], |
|
3118 |
is_static=True) |
|
3119 |
## uan-phy-gen.h: ns3::Ptr<ns3::UanNetDevice> ns3::UanPhyGen::GetDevice() [member function] |
|
3120 |
cls.add_method('GetDevice', |
|
3121 |
'ns3::Ptr< ns3::UanNetDevice >', |
|
3122 |
[], |
|
3123 |
is_virtual=True) |
|
3124 |
## uan-phy-gen.h: ns3::UanTxMode ns3::UanPhyGen::GetMode(uint32_t n) [member function] |
|
3125 |
cls.add_method('GetMode', |
|
3126 |
'ns3::UanTxMode', |
|
3127 |
[param('uint32_t', 'n')], |
|
3128 |
is_virtual=True) |
|
3129 |
## uan-phy-gen.h: uint32_t ns3::UanPhyGen::GetNModes() [member function] |
|
3130 |
cls.add_method('GetNModes', |
|
3131 |
'uint32_t', |
|
3132 |
[], |
|
3133 |
is_virtual=True) |
|
3134 |
## uan-phy-gen.h: ns3::Ptr<ns3::Packet> ns3::UanPhyGen::GetPacketRx() const [member function] |
|
3135 |
cls.add_method('GetPacketRx', |
|
3136 |
'ns3::Ptr< ns3::Packet >', |
|
3137 |
[], |
|
3138 |
is_const=True, is_virtual=True) |
|
3139 |
## uan-phy-gen.h: double ns3::UanPhyGen::GetRxGainDb() [member function] |
|
3140 |
cls.add_method('GetRxGainDb', |
|
3141 |
'double', |
|
3142 |
[], |
|
3143 |
is_virtual=True) |
|
3144 |
## uan-phy-gen.h: double ns3::UanPhyGen::GetRxThresholdDb() [member function] |
|
3145 |
cls.add_method('GetRxThresholdDb', |
|
3146 |
'double', |
|
3147 |
[], |
|
3148 |
is_virtual=True) |
|
3149 |
## uan-phy-gen.h: ns3::Ptr<ns3::UanTransducer> ns3::UanPhyGen::GetTransducer() [member function] |
|
3150 |
cls.add_method('GetTransducer', |
|
3151 |
'ns3::Ptr< ns3::UanTransducer >', |
|
3152 |
[], |
|
3153 |
is_virtual=True) |
|
3154 |
## uan-phy-gen.h: double ns3::UanPhyGen::GetTxPowerDb() [member function] |
|
3155 |
cls.add_method('GetTxPowerDb', |
|
3156 |
'double', |
|
3157 |
[], |
|
3158 |
is_virtual=True) |
|
3159 |
## uan-phy-gen.h: static ns3::TypeId ns3::UanPhyGen::GetTypeId() [member function] |
|
3160 |
cls.add_method('GetTypeId', |
|
3161 |
'ns3::TypeId', |
|
3162 |
[], |
|
3163 |
is_static=True) |
|
3164 |
## uan-phy-gen.h: bool ns3::UanPhyGen::IsStateBusy() [member function] |
|
3165 |
cls.add_method('IsStateBusy', |
|
3166 |
'bool', |
|
3167 |
[], |
|
3168 |
is_virtual=True) |
|
3169 |
## uan-phy-gen.h: bool ns3::UanPhyGen::IsStateCcaBusy() [member function] |
|
3170 |
cls.add_method('IsStateCcaBusy', |
|
3171 |
'bool', |
|
3172 |
[], |
|
3173 |
is_virtual=True) |
|
3174 |
## uan-phy-gen.h: bool ns3::UanPhyGen::IsStateIdle() [member function] |
|
3175 |
cls.add_method('IsStateIdle', |
|
3176 |
'bool', |
|
3177 |
[], |
|
3178 |
is_virtual=True) |
|
3179 |
## uan-phy-gen.h: bool ns3::UanPhyGen::IsStateRx() [member function] |
|
3180 |
cls.add_method('IsStateRx', |
|
3181 |
'bool', |
|
3182 |
[], |
|
3183 |
is_virtual=True) |
|
3184 |
## uan-phy-gen.h: bool ns3::UanPhyGen::IsStateTx() [member function] |
|
3185 |
cls.add_method('IsStateTx', |
|
3186 |
'bool', |
|
3187 |
[], |
|
3188 |
is_virtual=True) |
|
3189 |
## uan-phy-gen.h: void ns3::UanPhyGen::NotifyIntChange() [member function] |
|
3190 |
cls.add_method('NotifyIntChange', |
|
3191 |
'void', |
|
3192 |
[], |
|
3193 |
is_virtual=True) |
|
3194 |
## uan-phy-gen.h: void ns3::UanPhyGen::NotifyTransStartTx(ns3::Ptr<ns3::Packet> packet, double txPowerDb, ns3::UanTxMode txMode) [member function] |
|
3195 |
cls.add_method('NotifyTransStartTx', |
|
3196 |
'void', |
|
3197 |
[param('ns3::Ptr< ns3::Packet >', 'packet'), param('double', 'txPowerDb'), param('ns3::UanTxMode', 'txMode')], |
|
3198 |
is_virtual=True) |
|
3199 |
## uan-phy-gen.h: void ns3::UanPhyGen::RegisterListener(ns3::UanPhyListener * listener) [member function] |
|
3200 |
cls.add_method('RegisterListener', |
|
3201 |
'void', |
|
3202 |
[param('ns3::UanPhyListener *', 'listener')], |
|
3203 |
is_virtual=True) |
|
3204 |
## uan-phy-gen.h: void ns3::UanPhyGen::SendPacket(ns3::Ptr<ns3::Packet> pkt, uint32_t modeNum) [member function] |
|
3205 |
cls.add_method('SendPacket', |
|
3206 |
'void', |
|
3207 |
[param('ns3::Ptr< ns3::Packet >', 'pkt'), param('uint32_t', 'modeNum')], |
|
3208 |
is_virtual=True) |
|
3209 |
## uan-phy-gen.h: void ns3::UanPhyGen::SetCcaThresholdDb(double thresh) [member function] |
|
3210 |
cls.add_method('SetCcaThresholdDb', |
|
3211 |
'void', |
|
3212 |
[param('double', 'thresh')], |
|
3213 |
is_virtual=True) |
|
3214 |
## uan-phy-gen.h: void ns3::UanPhyGen::SetChannel(ns3::Ptr<ns3::UanChannel> channel) [member function] |
|
3215 |
cls.add_method('SetChannel', |
|
3216 |
'void', |
|
3217 |
[param('ns3::Ptr< ns3::UanChannel >', 'channel')], |
|
3218 |
is_virtual=True) |
|
3219 |
## uan-phy-gen.h: void ns3::UanPhyGen::SetDevice(ns3::Ptr<ns3::UanNetDevice> device) [member function] |
|
3220 |
cls.add_method('SetDevice', |
|
3221 |
'void', |
|
3222 |
[param('ns3::Ptr< ns3::UanNetDevice >', 'device')], |
|
3223 |
is_virtual=True) |
|
3224 |
## uan-phy-gen.h: void ns3::UanPhyGen::SetMac(ns3::Ptr<ns3::UanMac> mac) [member function] |
|
3225 |
cls.add_method('SetMac', |
|
3226 |
'void', |
|
3227 |
[param('ns3::Ptr< ns3::UanMac >', 'mac')], |
|
3228 |
is_virtual=True) |
|
3229 |
## uan-phy-gen.h: void ns3::UanPhyGen::SetReceiveErrorCallback(ns3::Callback<void, ns3::Ptr<ns3::Packet>, double, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> cb) [member function] |
|
3230 |
cls.add_method('SetReceiveErrorCallback', |
|
3231 |
'void', |
|
3232 |
[param('ns3::Callback< void, ns3::Ptr< ns3::Packet >, double, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'cb')], |
|
3233 |
is_virtual=True) |
|
3234 |
## uan-phy-gen.h: void ns3::UanPhyGen::SetReceiveOkCallback(ns3::Callback<void, ns3::Ptr<ns3::Packet>, double, ns3::UanTxMode, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> cb) [member function] |
|
3235 |
cls.add_method('SetReceiveOkCallback', |
|
3236 |
'void', |
|
3237 |
[param('ns3::Callback< void, ns3::Ptr< ns3::Packet >, double, ns3::UanTxMode, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'cb')], |
|
3238 |
is_virtual=True) |
|
3239 |
## uan-phy-gen.h: void ns3::UanPhyGen::SetRxGainDb(double gain) [member function] |
|
3240 |
cls.add_method('SetRxGainDb', |
|
3241 |
'void', |
|
3242 |
[param('double', 'gain')], |
|
3243 |
is_virtual=True) |
|
3244 |
## uan-phy-gen.h: void ns3::UanPhyGen::SetRxThresholdDb(double thresh) [member function] |
|
3245 |
cls.add_method('SetRxThresholdDb', |
|
3246 |
'void', |
|
3247 |
[param('double', 'thresh')], |
|
3248 |
is_virtual=True) |
|
3249 |
## uan-phy-gen.h: void ns3::UanPhyGen::SetTransducer(ns3::Ptr<ns3::UanTransducer> trans) [member function] |
|
3250 |
cls.add_method('SetTransducer', |
|
3251 |
'void', |
|
3252 |
[param('ns3::Ptr< ns3::UanTransducer >', 'trans')], |
|
3253 |
is_virtual=True) |
|
3254 |
## uan-phy-gen.h: void ns3::UanPhyGen::SetTxPowerDb(double txpwr) [member function] |
|
3255 |
cls.add_method('SetTxPowerDb', |
|
3256 |
'void', |
|
3257 |
[param('double', 'txpwr')], |
|
3258 |
is_virtual=True) |
|
3259 |
## uan-phy-gen.h: void ns3::UanPhyGen::StartRxPacket(ns3::Ptr<ns3::Packet> pkt, double rxPowerDb, ns3::UanTxMode txMode, ns3::UanPdp pdp) [member function] |
|
3260 |
cls.add_method('StartRxPacket', |
|
3261 |
'void', |
|
3262 |
[param('ns3::Ptr< ns3::Packet >', 'pkt'), param('double', 'rxPowerDb'), param('ns3::UanTxMode', 'txMode'), param('ns3::UanPdp', 'pdp')], |
|
3263 |
is_virtual=True) |
|
3264 |
## uan-phy-gen.h: void ns3::UanPhyGen::DoDispose() [member function] |
|
3265 |
cls.add_method('DoDispose', |
|
3266 |
'void', |
|
3267 |
[], |
|
3268 |
visibility='protected', is_virtual=True) |
|
3269 |
return |
|
3270 |
||
3271 |
def register_Ns3UanPhyPer_methods(root_module, cls): |
|
3272 |
## uan-phy.h: ns3::UanPhyPer::UanPhyPer() [constructor] |
|
3273 |
cls.add_constructor([]) |
|
3274 |
## uan-phy.h: ns3::UanPhyPer::UanPhyPer(ns3::UanPhyPer const & arg0) [copy constructor] |
|
3275 |
cls.add_constructor([param('ns3::UanPhyPer const &', 'arg0')]) |
|
3276 |
## uan-phy.h: double ns3::UanPhyPer::CalcPer(ns3::Ptr<ns3::Packet> pkt, double sinrDb, ns3::UanTxMode mode) [member function] |
|
3277 |
cls.add_method('CalcPer', |
|
3278 |
'double', |
|
3279 |
[param('ns3::Ptr< ns3::Packet >', 'pkt'), param('double', 'sinrDb'), param('ns3::UanTxMode', 'mode')], |
|
3280 |
is_pure_virtual=True, is_virtual=True) |
|
3281 |
## uan-phy.h: void ns3::UanPhyPer::Clear() [member function] |
|
3282 |
cls.add_method('Clear', |
|
3283 |
'void', |
|
3284 |
[], |
|
3285 |
is_virtual=True) |
|
3286 |
## uan-phy.h: void ns3::UanPhyPer::DoDispose() [member function] |
|
3287 |
cls.add_method('DoDispose', |
|
3288 |
'void', |
|
3289 |
[], |
|
3290 |
is_virtual=True) |
|
3291 |
return |
|
3292 |
||
3293 |
def register_Ns3UanPhyPerGenDefault_methods(root_module, cls): |
|
3294 |
## uan-phy-gen.h: ns3::UanPhyPerGenDefault::UanPhyPerGenDefault(ns3::UanPhyPerGenDefault const & arg0) [copy constructor] |
|
3295 |
cls.add_constructor([param('ns3::UanPhyPerGenDefault const &', 'arg0')]) |
|
3296 |
## uan-phy-gen.h: ns3::UanPhyPerGenDefault::UanPhyPerGenDefault() [constructor] |
|
3297 |
cls.add_constructor([]) |
|
3298 |
## uan-phy-gen.h: double ns3::UanPhyPerGenDefault::CalcPer(ns3::Ptr<ns3::Packet> pkt, double sinrDb, ns3::UanTxMode mode) [member function] |
|
3299 |
cls.add_method('CalcPer', |
|
3300 |
'double', |
|
3301 |
[param('ns3::Ptr< ns3::Packet >', 'pkt'), param('double', 'sinrDb'), param('ns3::UanTxMode', 'mode')], |
|
3302 |
is_virtual=True) |
|
3303 |
## uan-phy-gen.h: static ns3::TypeId ns3::UanPhyPerGenDefault::GetTypeId() [member function] |
|
3304 |
cls.add_method('GetTypeId', |
|
3305 |
'ns3::TypeId', |
|
3306 |
[], |
|
3307 |
is_static=True) |
|
3308 |
return |
|
3309 |
||
3310 |
def register_Ns3UanPhyPerUmodem_methods(root_module, cls): |
|
3311 |
## uan-phy-gen.h: ns3::UanPhyPerUmodem::UanPhyPerUmodem(ns3::UanPhyPerUmodem const & arg0) [copy constructor] |
|
3312 |
cls.add_constructor([param('ns3::UanPhyPerUmodem const &', 'arg0')]) |
|
3313 |
## uan-phy-gen.h: ns3::UanPhyPerUmodem::UanPhyPerUmodem() [constructor] |
|
3314 |
cls.add_constructor([]) |
|
3315 |
## uan-phy-gen.h: double ns3::UanPhyPerUmodem::CalcPer(ns3::Ptr<ns3::Packet> pkt, double sinrDb, ns3::UanTxMode mode) [member function] |
|
3316 |
cls.add_method('CalcPer', |
|
3317 |
'double', |
|
3318 |
[param('ns3::Ptr< ns3::Packet >', 'pkt'), param('double', 'sinrDb'), param('ns3::UanTxMode', 'mode')], |
|
3319 |
is_virtual=True) |
|
3320 |
## uan-phy-gen.h: static ns3::TypeId ns3::UanPhyPerUmodem::GetTypeId() [member function] |
|
3321 |
cls.add_method('GetTypeId', |
|
3322 |
'ns3::TypeId', |
|
3323 |
[], |
|
3324 |
is_static=True) |
|
3325 |
return |
|
3326 |
||
3327 |
def register_Ns3UanPropModel_methods(root_module, cls): |
|
3328 |
## uan-prop-model.h: ns3::UanPropModel::UanPropModel() [constructor] |
|
3329 |
cls.add_constructor([]) |
|
3330 |
## uan-prop-model.h: ns3::UanPropModel::UanPropModel(ns3::UanPropModel const & arg0) [copy constructor] |
|
3331 |
cls.add_constructor([param('ns3::UanPropModel const &', 'arg0')]) |
|
3332 |
## uan-prop-model.h: void ns3::UanPropModel::Clear() [member function] |
|
3333 |
cls.add_method('Clear', |
|
3334 |
'void', |
|
3335 |
[], |
|
3336 |
is_virtual=True) |
|
3337 |
## uan-prop-model.h: void ns3::UanPropModel::DoDispose() [member function] |
|
3338 |
cls.add_method('DoDispose', |
|
3339 |
'void', |
|
3340 |
[], |
|
3341 |
is_virtual=True) |
|
3342 |
## uan-prop-model.h: ns3::Time ns3::UanPropModel::GetDelay(ns3::Ptr<ns3::MobilityModel> a, ns3::Ptr<ns3::MobilityModel> b, ns3::UanTxMode mode) [member function] |
|
3343 |
cls.add_method('GetDelay', |
|
3344 |
'ns3::Time', |
|
3345 |
[param('ns3::Ptr< ns3::MobilityModel >', 'a'), param('ns3::Ptr< ns3::MobilityModel >', 'b'), param('ns3::UanTxMode', 'mode')], |
|
3346 |
is_pure_virtual=True, is_virtual=True) |
|
3347 |
## uan-prop-model.h: double ns3::UanPropModel::GetPathLossDb(ns3::Ptr<ns3::MobilityModel> a, ns3::Ptr<ns3::MobilityModel> b, ns3::UanTxMode txMode) [member function] |
|
3348 |
cls.add_method('GetPathLossDb', |
|
3349 |
'double', |
|
3350 |
[param('ns3::Ptr< ns3::MobilityModel >', 'a'), param('ns3::Ptr< ns3::MobilityModel >', 'b'), param('ns3::UanTxMode', 'txMode')], |
|
3351 |
is_pure_virtual=True, is_virtual=True) |
|
3352 |
## uan-prop-model.h: ns3::UanPdp ns3::UanPropModel::GetPdp(ns3::Ptr<ns3::MobilityModel> a, ns3::Ptr<ns3::MobilityModel> b, ns3::UanTxMode mode) [member function] |
|
3353 |
cls.add_method('GetPdp', |
|
3354 |
'ns3::UanPdp', |
|
3355 |
[param('ns3::Ptr< ns3::MobilityModel >', 'a'), param('ns3::Ptr< ns3::MobilityModel >', 'b'), param('ns3::UanTxMode', 'mode')], |
|
3356 |
is_pure_virtual=True, is_virtual=True) |
|
3357 |
return |
|
3358 |
||
3359 |
def register_Ns3UanPropModelIdeal_methods(root_module, cls): |
|
3360 |
## uan-prop-model-ideal.h: ns3::UanPropModelIdeal::UanPropModelIdeal(ns3::UanPropModelIdeal const & arg0) [copy constructor] |
|
3361 |
cls.add_constructor([param('ns3::UanPropModelIdeal const &', 'arg0')]) |
|
3362 |
## uan-prop-model-ideal.h: ns3::UanPropModelIdeal::UanPropModelIdeal() [constructor] |
|
3363 |
cls.add_constructor([]) |
|
3364 |
## uan-prop-model-ideal.h: ns3::Time ns3::UanPropModelIdeal::GetDelay(ns3::Ptr<ns3::MobilityModel> a, ns3::Ptr<ns3::MobilityModel> b, ns3::UanTxMode mode) [member function] |
|
3365 |
cls.add_method('GetDelay', |
|
3366 |
'ns3::Time', |
|
3367 |
[param('ns3::Ptr< ns3::MobilityModel >', 'a'), param('ns3::Ptr< ns3::MobilityModel >', 'b'), param('ns3::UanTxMode', 'mode')], |
|
3368 |
is_virtual=True) |
|
3369 |
## uan-prop-model-ideal.h: double ns3::UanPropModelIdeal::GetPathLossDb(ns3::Ptr<ns3::MobilityModel> a, ns3::Ptr<ns3::MobilityModel> b, ns3::UanTxMode mode) [member function] |
|
3370 |
cls.add_method('GetPathLossDb', |
|
3371 |
'double', |
|
3372 |
[param('ns3::Ptr< ns3::MobilityModel >', 'a'), param('ns3::Ptr< ns3::MobilityModel >', 'b'), param('ns3::UanTxMode', 'mode')], |
|
3373 |
is_virtual=True) |
|
3374 |
## uan-prop-model-ideal.h: ns3::UanPdp ns3::UanPropModelIdeal::GetPdp(ns3::Ptr<ns3::MobilityModel> a, ns3::Ptr<ns3::MobilityModel> b, ns3::UanTxMode mode) [member function] |
|
3375 |
cls.add_method('GetPdp', |
|
3376 |
'ns3::UanPdp', |
|
3377 |
[param('ns3::Ptr< ns3::MobilityModel >', 'a'), param('ns3::Ptr< ns3::MobilityModel >', 'b'), param('ns3::UanTxMode', 'mode')], |
|
3378 |
is_virtual=True) |
|
3379 |
## uan-prop-model-ideal.h: static ns3::TypeId ns3::UanPropModelIdeal::GetTypeId() [member function] |
|
3380 |
cls.add_method('GetTypeId', |
|
3381 |
'ns3::TypeId', |
|
3382 |
[], |
|
3383 |
is_static=True) |
|
3384 |
return |
|
3385 |
||
3386 |
def register_Ns3UanPropModelThorp_methods(root_module, cls): |
|
3387 |
## uan-prop-model-thorp.h: ns3::UanPropModelThorp::UanPropModelThorp(ns3::UanPropModelThorp const & arg0) [copy constructor] |
|
3388 |
cls.add_constructor([param('ns3::UanPropModelThorp const &', 'arg0')]) |
|
3389 |
## uan-prop-model-thorp.h: ns3::UanPropModelThorp::UanPropModelThorp() [constructor] |
|
3390 |
cls.add_constructor([]) |
|
3391 |
## uan-prop-model-thorp.h: ns3::Time ns3::UanPropModelThorp::GetDelay(ns3::Ptr<ns3::MobilityModel> a, ns3::Ptr<ns3::MobilityModel> b, ns3::UanTxMode mode) [member function] |
|
3392 |
cls.add_method('GetDelay', |
|
3393 |
'ns3::Time', |
|
3394 |
[param('ns3::Ptr< ns3::MobilityModel >', 'a'), param('ns3::Ptr< ns3::MobilityModel >', 'b'), param('ns3::UanTxMode', 'mode')], |
|
3395 |
is_virtual=True) |
|
3396 |
## uan-prop-model-thorp.h: double ns3::UanPropModelThorp::GetPathLossDb(ns3::Ptr<ns3::MobilityModel> a, ns3::Ptr<ns3::MobilityModel> b, ns3::UanTxMode mode) [member function] |
|
3397 |
cls.add_method('GetPathLossDb', |
|
3398 |
'double', |
|
3399 |
[param('ns3::Ptr< ns3::MobilityModel >', 'a'), param('ns3::Ptr< ns3::MobilityModel >', 'b'), param('ns3::UanTxMode', 'mode')], |
|
3400 |
is_virtual=True) |
|
3401 |
## uan-prop-model-thorp.h: ns3::UanPdp ns3::UanPropModelThorp::GetPdp(ns3::Ptr<ns3::MobilityModel> a, ns3::Ptr<ns3::MobilityModel> b, ns3::UanTxMode mode) [member function] |
|
3402 |
cls.add_method('GetPdp', |
|
3403 |
'ns3::UanPdp', |
|
3404 |
[param('ns3::Ptr< ns3::MobilityModel >', 'a'), param('ns3::Ptr< ns3::MobilityModel >', 'b'), param('ns3::UanTxMode', 'mode')], |
|
3405 |
is_virtual=True) |
|
3406 |
## uan-prop-model-thorp.h: static ns3::TypeId ns3::UanPropModelThorp::GetTypeId() [member function] |
|
3407 |
cls.add_method('GetTypeId', |
|
3408 |
'ns3::TypeId', |
|
3409 |
[], |
|
3410 |
is_static=True) |
|
3411 |
return |
|
3412 |
||
3413 |
def register_Ns3UanTransducer_methods(root_module, cls): |
|
3414 |
## uan-transducer.h: ns3::UanTransducer::UanTransducer() [constructor] |
|
3415 |
cls.add_constructor([]) |
|
3416 |
## uan-transducer.h: ns3::UanTransducer::UanTransducer(ns3::UanTransducer const & arg0) [copy constructor] |
|
3417 |
cls.add_constructor([param('ns3::UanTransducer const &', 'arg0')]) |
|
3418 |
## uan-transducer.h: void ns3::UanTransducer::AddPhy(ns3::Ptr<ns3::UanPhy> phy) [member function] |
|
3419 |
cls.add_method('AddPhy', |
|
3420 |
'void', |
|
3421 |
[param('ns3::Ptr< ns3::UanPhy >', 'phy')], |
|
3422 |
is_pure_virtual=True, is_virtual=True) |
|
3423 |
## uan-transducer.h: void ns3::UanTransducer::Clear() [member function] |
|
3424 |
cls.add_method('Clear', |
|
3425 |
'void', |
|
3426 |
[], |
|
3427 |
is_pure_virtual=True, is_virtual=True) |
|
3428 |
## uan-transducer.h: std::list<ns3::UanPacketArrival, std::allocator<ns3::UanPacketArrival> > const & ns3::UanTransducer::GetArrivalList() const [member function] |
|
3429 |
cls.add_method('GetArrivalList', |
|
3430 |
'std::list< ns3::UanPacketArrival > const &', |
|
3431 |
[], |
|
3432 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
|
3433 |
## uan-transducer.h: ns3::Ptr<ns3::UanChannel> ns3::UanTransducer::GetChannel() const [member function] |
|
3434 |
cls.add_method('GetChannel', |
|
3435 |
'ns3::Ptr< ns3::UanChannel >', |
|
3436 |
[], |
|
3437 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
|
3438 |
## uan-transducer.h: std::list<ns3::Ptr<ns3::UanPhy>, std::allocator<ns3::Ptr<ns3::UanPhy> > > const & ns3::UanTransducer::GetPhyList() const [member function] |
|
3439 |
cls.add_method('GetPhyList', |
|
3440 |
'std::list< ns3::Ptr< ns3::UanPhy > > const &', |
|
3441 |
[], |
|
3442 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
|
3443 |
## uan-transducer.h: ns3::UanTransducer::State ns3::UanTransducer::GetState() const [member function] |
|
3444 |
cls.add_method('GetState', |
|
3445 |
'ns3::UanTransducer::State', |
|
3446 |
[], |
|
3447 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
|
3448 |
## uan-transducer.h: bool ns3::UanTransducer::IsRx() const [member function] |
|
3449 |
cls.add_method('IsRx', |
|
3450 |
'bool', |
|
3451 |
[], |
|
3452 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
|
3453 |
## uan-transducer.h: bool ns3::UanTransducer::IsTx() const [member function] |
|
3454 |
cls.add_method('IsTx', |
|
3455 |
'bool', |
|
3456 |
[], |
|
3457 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
|
3458 |
## uan-transducer.h: void ns3::UanTransducer::Receive(ns3::Ptr<ns3::Packet> packet, double rxPowerDb, ns3::UanTxMode txMode, ns3::UanPdp pdp) [member function] |
|
3459 |
cls.add_method('Receive', |
|
3460 |
'void', |
|
3461 |
[param('ns3::Ptr< ns3::Packet >', 'packet'), param('double', 'rxPowerDb'), param('ns3::UanTxMode', 'txMode'), param('ns3::UanPdp', 'pdp')], |
|
3462 |
is_pure_virtual=True, is_virtual=True) |
|
3463 |
## uan-transducer.h: void ns3::UanTransducer::SetChannel(ns3::Ptr<ns3::UanChannel> chan) [member function] |
|
3464 |
cls.add_method('SetChannel', |
|
3465 |
'void', |
|
3466 |
[param('ns3::Ptr< ns3::UanChannel >', 'chan')], |
|
3467 |
is_pure_virtual=True, is_virtual=True) |
|
3468 |
## uan-transducer.h: void ns3::UanTransducer::Transmit(ns3::Ptr<ns3::UanPhy> src, ns3::Ptr<ns3::Packet> packet, double txPowerDb, ns3::UanTxMode txMode) [member function] |
|
3469 |
cls.add_method('Transmit', |
|
3470 |
'void', |
|
3471 |
[param('ns3::Ptr< ns3::UanPhy >', 'src'), param('ns3::Ptr< ns3::Packet >', 'packet'), param('double', 'txPowerDb'), param('ns3::UanTxMode', 'txMode')], |
|
3472 |
is_pure_virtual=True, is_virtual=True) |
|
3473 |
return |
|
3474 |
||
3475 |
def register_Ns3UanTransducerHd_methods(root_module, cls): |
|
3476 |
## uan-transducer-hd.h: ns3::UanTransducerHd::UanTransducerHd(ns3::UanTransducerHd const & arg0) [copy constructor] |
|
3477 |
cls.add_constructor([param('ns3::UanTransducerHd const &', 'arg0')]) |
|
3478 |
## uan-transducer-hd.h: ns3::UanTransducerHd::UanTransducerHd() [constructor] |
|
3479 |
cls.add_constructor([]) |
|
3480 |
## uan-transducer-hd.h: void ns3::UanTransducerHd::AddPhy(ns3::Ptr<ns3::UanPhy> arg0) [member function] |
|
3481 |
cls.add_method('AddPhy', |
|
3482 |
'void', |
|
3483 |
[param('ns3::Ptr< ns3::UanPhy >', 'arg0')], |
|
3484 |
is_virtual=True) |
|
3485 |
## uan-transducer-hd.h: void ns3::UanTransducerHd::Clear() [member function] |
|
3486 |
cls.add_method('Clear', |
|
3487 |
'void', |
|
3488 |
[], |
|
3489 |
is_virtual=True) |
|
3490 |
## uan-transducer-hd.h: std::list<ns3::UanPacketArrival, std::allocator<ns3::UanPacketArrival> > const & ns3::UanTransducerHd::GetArrivalList() const [member function] |
|
3491 |
cls.add_method('GetArrivalList', |
|
3492 |
'std::list< ns3::UanPacketArrival > const &', |
|
3493 |
[], |
|
3494 |
is_const=True, is_virtual=True) |
|
3495 |
## uan-transducer-hd.h: ns3::Ptr<ns3::UanChannel> ns3::UanTransducerHd::GetChannel() const [member function] |
|
3496 |
cls.add_method('GetChannel', |
|
3497 |
'ns3::Ptr< ns3::UanChannel >', |
|
3498 |
[], |
|
3499 |
is_const=True, is_virtual=True) |
|
3500 |
## uan-transducer-hd.h: std::list<ns3::Ptr<ns3::UanPhy>, std::allocator<ns3::Ptr<ns3::UanPhy> > > const & ns3::UanTransducerHd::GetPhyList() const [member function] |
|
3501 |
cls.add_method('GetPhyList', |
|
3502 |
'std::list< ns3::Ptr< ns3::UanPhy > > const &', |
|
3503 |
[], |
|
3504 |
is_const=True, is_virtual=True) |
|
3505 |
## uan-transducer-hd.h: ns3::UanTransducer::State ns3::UanTransducerHd::GetState() const [member function] |
|
3506 |
cls.add_method('GetState', |
|
3507 |
'ns3::UanTransducer::State', |
|
3508 |
[], |
|
3509 |
is_const=True, is_virtual=True) |
|
3510 |
## uan-transducer-hd.h: static ns3::TypeId ns3::UanTransducerHd::GetTypeId() [member function] |
|
3511 |
cls.add_method('GetTypeId', |
|
3512 |
'ns3::TypeId', |
|
3513 |
[], |
|
3514 |
is_static=True) |
|
3515 |
## uan-transducer-hd.h: bool ns3::UanTransducerHd::IsRx() const [member function] |
|
3516 |
cls.add_method('IsRx', |
|
3517 |
'bool', |
|
3518 |
[], |
|
3519 |
is_const=True, is_virtual=True) |
|
3520 |
## uan-transducer-hd.h: bool ns3::UanTransducerHd::IsTx() const [member function] |
|
3521 |
cls.add_method('IsTx', |
|
3522 |
'bool', |
|
3523 |
[], |
|
3524 |
is_const=True, is_virtual=True) |
|
3525 |
## uan-transducer-hd.h: void ns3::UanTransducerHd::Receive(ns3::Ptr<ns3::Packet> packet, double rxPowerDb, ns3::UanTxMode txMode, ns3::UanPdp pdp) [member function] |
|
3526 |
cls.add_method('Receive', |
|
3527 |
'void', |
|
3528 |
[param('ns3::Ptr< ns3::Packet >', 'packet'), param('double', 'rxPowerDb'), param('ns3::UanTxMode', 'txMode'), param('ns3::UanPdp', 'pdp')], |
|
3529 |
is_virtual=True) |
|
3530 |
## uan-transducer-hd.h: void ns3::UanTransducerHd::SetChannel(ns3::Ptr<ns3::UanChannel> chan) [member function] |
|
3531 |
cls.add_method('SetChannel', |
|
3532 |
'void', |
|
3533 |
[param('ns3::Ptr< ns3::UanChannel >', 'chan')], |
|
3534 |
is_virtual=True) |
|
3535 |
## uan-transducer-hd.h: void ns3::UanTransducerHd::Transmit(ns3::Ptr<ns3::UanPhy> src, ns3::Ptr<ns3::Packet> packet, double txPowerDb, ns3::UanTxMode txMode) [member function] |
|
3536 |
cls.add_method('Transmit', |
|
3537 |
'void', |
|
3538 |
[param('ns3::Ptr< ns3::UanPhy >', 'src'), param('ns3::Ptr< ns3::Packet >', 'packet'), param('double', 'txPowerDb'), param('ns3::UanTxMode', 'txMode')], |
|
3539 |
is_virtual=True) |
|
3540 |
## uan-transducer-hd.h: void ns3::UanTransducerHd::DoDispose() [member function] |
|
3541 |
cls.add_method('DoDispose', |
|
3542 |
'void', |
|
3543 |
[], |
|
3544 |
visibility='protected', is_virtual=True) |
|
3545 |
return |
|
3546 |
||
6435
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3547 |
def register_Ns3DeviceEnergyModel_methods(root_module, cls): |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3548 |
## device-energy-model.h: ns3::DeviceEnergyModel::DeviceEnergyModel(ns3::DeviceEnergyModel const & arg0) [copy constructor] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3549 |
cls.add_constructor([param('ns3::DeviceEnergyModel const &', 'arg0')]) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3550 |
## device-energy-model.h: ns3::DeviceEnergyModel::DeviceEnergyModel() [constructor] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3551 |
cls.add_constructor([]) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3552 |
## device-energy-model.h: static ns3::TypeId ns3::DeviceEnergyModel::GetTypeId() [member function] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3553 |
cls.add_method('GetTypeId', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3554 |
'ns3::TypeId', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3555 |
[], |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3556 |
is_static=True) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3557 |
## device-energy-model.h: void ns3::DeviceEnergyModel::HandleEnergyDepletion() [member function] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3558 |
cls.add_method('HandleEnergyDepletion', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3559 |
'void', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3560 |
[]) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3561 |
## device-energy-model.h: void ns3::DeviceEnergyModel::SetEnergySource(ns3::Ptr<ns3::EnergySource> source) [member function] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3562 |
cls.add_method('SetEnergySource', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3563 |
'void', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3564 |
[param('ns3::Ptr< ns3::EnergySource >', 'source')]) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3565 |
## device-energy-model.h: void ns3::DeviceEnergyModel::BreakSourceRefCycle() [member function] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3566 |
cls.add_method('BreakSourceRefCycle', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3567 |
'void', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3568 |
[], |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3569 |
visibility='protected') |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3570 |
## device-energy-model.h: void ns3::DeviceEnergyModel::DecreaseRemainingEnergy(double energyJ) [member function] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3571 |
cls.add_method('DecreaseRemainingEnergy', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3572 |
'void', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3573 |
[param('double', 'energyJ')], |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3574 |
visibility='protected') |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3575 |
## device-energy-model.h: void ns3::DeviceEnergyModel::IncreaseRemainingEnergy(double energyJ) [member function] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3576 |
cls.add_method('IncreaseRemainingEnergy', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3577 |
'void', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3578 |
[param('double', 'energyJ')], |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3579 |
visibility='protected') |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3580 |
## device-energy-model.h: void ns3::DeviceEnergyModel::DoDispose() [member function] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3581 |
cls.add_method('DoDispose', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3582 |
'void', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3583 |
[], |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3584 |
visibility='private', is_virtual=True) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3585 |
## device-energy-model.h: void ns3::DeviceEnergyModel::DoHandleEnergyDepletion() [member function] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3586 |
cls.add_method('DoHandleEnergyDepletion', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3587 |
'void', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3588 |
[], |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3589 |
is_pure_virtual=True, visibility='private', is_virtual=True) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3590 |
return |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3591 |
|
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3592 |
def register_Ns3EnergySource_methods(root_module, cls): |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3593 |
## energy-source.h: ns3::EnergySource::EnergySource(ns3::EnergySource const & arg0) [copy constructor] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3594 |
cls.add_constructor([param('ns3::EnergySource const &', 'arg0')]) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3595 |
## energy-source.h: ns3::EnergySource::EnergySource() [constructor] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3596 |
cls.add_constructor([]) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3597 |
## energy-source.h: void ns3::EnergySource::AppendDeviceEnergyModel(ns3::Ptr<ns3::DeviceEnergyModel> deviceEnergyModelPtr) [member function] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3598 |
cls.add_method('AppendDeviceEnergyModel', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3599 |
'void', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3600 |
[param('ns3::Ptr< ns3::DeviceEnergyModel >', 'deviceEnergyModelPtr')]) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3601 |
## energy-source.h: void ns3::EnergySource::DecreaseRemainingEnergy(double energyJ) [member function] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3602 |
cls.add_method('DecreaseRemainingEnergy', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3603 |
'void', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3604 |
[param('double', 'energyJ')]) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3605 |
## energy-source.h: std::vector<ns3::Ptr<ns3::DeviceEnergyModel>, std::allocator<ns3::Ptr<ns3::DeviceEnergyModel> > > ns3::EnergySource::FindDeviceEnergyModels(ns3::TypeId tid) [member function] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3606 |
cls.add_method('FindDeviceEnergyModels', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3607 |
'std::vector< ns3::Ptr< ns3::DeviceEnergyModel > >', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3608 |
[param('ns3::TypeId', 'tid')]) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3609 |
## energy-source.h: std::vector<ns3::Ptr<ns3::DeviceEnergyModel>, std::allocator<ns3::Ptr<ns3::DeviceEnergyModel> > > ns3::EnergySource::FindDeviceEnergyModels(std::string name) [member function] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3610 |
cls.add_method('FindDeviceEnergyModels', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3611 |
'std::vector< ns3::Ptr< ns3::DeviceEnergyModel > >', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3612 |
[param('std::string', 'name')]) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3613 |
## energy-source.h: double ns3::EnergySource::GetEnergyFraction() const [member function] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3614 |
cls.add_method('GetEnergyFraction', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3615 |
'double', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3616 |
[], |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3617 |
is_const=True) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3618 |
## energy-source.h: double ns3::EnergySource::GetInitialEnergy() const [member function] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3619 |
cls.add_method('GetInitialEnergy', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3620 |
'double', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3621 |
[], |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3622 |
is_const=True) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3623 |
## energy-source.h: double ns3::EnergySource::GetRemainingEnergy() const [member function] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3624 |
cls.add_method('GetRemainingEnergy', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3625 |
'double', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3626 |
[], |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3627 |
is_const=True) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3628 |
## energy-source.h: static ns3::TypeId ns3::EnergySource::GetTypeId() [member function] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3629 |
cls.add_method('GetTypeId', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3630 |
'ns3::TypeId', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3631 |
[], |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3632 |
is_static=True) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3633 |
## energy-source.h: void ns3::EnergySource::IncreaseRemainingEnergy(double energyJ) [member function] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3634 |
cls.add_method('IncreaseRemainingEnergy', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3635 |
'void', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3636 |
[param('double', 'energyJ')]) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3637 |
## energy-source.h: void ns3::EnergySource::BreakDeviceEnergyModelRefCycle() [member function] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3638 |
cls.add_method('BreakDeviceEnergyModelRefCycle', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3639 |
'void', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3640 |
[], |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3641 |
visibility='protected') |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3642 |
## energy-source.h: void ns3::EnergySource::NotifyEnergyDrained() [member function] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3643 |
cls.add_method('NotifyEnergyDrained', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3644 |
'void', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3645 |
[], |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3646 |
visibility='protected') |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3647 |
## energy-source.h: void ns3::EnergySource::DoDecreaseRemainingEnergy(double energyJ) [member function] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3648 |
cls.add_method('DoDecreaseRemainingEnergy', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3649 |
'void', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3650 |
[param('double', 'energyJ')], |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3651 |
is_pure_virtual=True, visibility='private', is_virtual=True) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3652 |
## energy-source.h: void ns3::EnergySource::DoDispose() [member function] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3653 |
cls.add_method('DoDispose', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3654 |
'void', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3655 |
[], |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3656 |
visibility='private', is_virtual=True) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3657 |
## energy-source.h: double ns3::EnergySource::DoGetEnergyFraction() const [member function] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3658 |
cls.add_method('DoGetEnergyFraction', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3659 |
'double', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3660 |
[], |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3661 |
is_pure_virtual=True, is_const=True, visibility='private', is_virtual=True) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3662 |
## energy-source.h: double ns3::EnergySource::DoGetInitialEnergy() const [member function] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3663 |
cls.add_method('DoGetInitialEnergy', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3664 |
'double', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3665 |
[], |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3666 |
is_pure_virtual=True, is_const=True, visibility='private', is_virtual=True) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3667 |
## energy-source.h: double ns3::EnergySource::DoGetRemainingEnergy() const [member function] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3668 |
cls.add_method('DoGetRemainingEnergy', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3669 |
'double', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3670 |
[], |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3671 |
is_pure_virtual=True, is_const=True, visibility='private', is_virtual=True) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3672 |
## energy-source.h: void ns3::EnergySource::DoIncreaseRemainingEnergy(double energyJ) [member function] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3673 |
cls.add_method('DoIncreaseRemainingEnergy', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3674 |
'void', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3675 |
[param('double', 'energyJ')], |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3676 |
is_pure_virtual=True, visibility='private', is_virtual=True) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3677 |
return |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3678 |
|
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3679 |
def register_Ns3RadioEnergyModel_methods(root_module, cls): |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3680 |
## radio-energy-model.h: ns3::RadioEnergyModel::RadioEnergyModel(ns3::RadioEnergyModel const & arg0) [copy constructor] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3681 |
cls.add_constructor([param('ns3::RadioEnergyModel const &', 'arg0')]) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3682 |
## radio-energy-model.h: ns3::RadioEnergyModel::RadioEnergyModel() [constructor] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3683 |
cls.add_constructor([]) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3684 |
## radio-energy-model.h: double ns3::RadioEnergyModel::GetIdlePowerW() const [member function] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3685 |
cls.add_method('GetIdlePowerW', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3686 |
'double', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3687 |
[], |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3688 |
is_const=True) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3689 |
## radio-energy-model.h: double ns3::RadioEnergyModel::GetRxPowerW() const [member function] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3690 |
cls.add_method('GetRxPowerW', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3691 |
'double', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3692 |
[], |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3693 |
is_const=True) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3694 |
## radio-energy-model.h: double ns3::RadioEnergyModel::GetSleepPowerW() const [member function] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3695 |
cls.add_method('GetSleepPowerW', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3696 |
'double', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3697 |
[], |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3698 |
is_const=True) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3699 |
## radio-energy-model.h: double ns3::RadioEnergyModel::GetTxPowerW() const [member function] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3700 |
cls.add_method('GetTxPowerW', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3701 |
'double', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3702 |
[], |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3703 |
is_const=True) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3704 |
## radio-energy-model.h: static ns3::TypeId ns3::RadioEnergyModel::GetTypeId() [member function] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3705 |
cls.add_method('GetTypeId', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3706 |
'ns3::TypeId', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3707 |
[], |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3708 |
is_static=True) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3709 |
## radio-energy-model.h: void ns3::RadioEnergyModel::SetIdlePowerW(double idlePowerW) [member function] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3710 |
cls.add_method('SetIdlePowerW', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3711 |
'void', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3712 |
[param('double', 'idlePowerW')]) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3713 |
## radio-energy-model.h: void ns3::RadioEnergyModel::SetRxPowerW(double rxPowerW) [member function] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3714 |
cls.add_method('SetRxPowerW', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3715 |
'void', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3716 |
[param('double', 'rxPowerW')]) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3717 |
## radio-energy-model.h: void ns3::RadioEnergyModel::SetSleepPowerW(double sleepPowerW) [member function] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3718 |
cls.add_method('SetSleepPowerW', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3719 |
'void', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3720 |
[param('double', 'sleepPowerW')]) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3721 |
## radio-energy-model.h: void ns3::RadioEnergyModel::SetTxPowerW(double txPowerW) [member function] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3722 |
cls.add_method('SetTxPowerW', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3723 |
'void', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3724 |
[param('double', 'txPowerW')]) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3725 |
## radio-energy-model.h: void ns3::RadioEnergyModel::UpdateRemainingEnergy(ns3::RadioEnergyModel::RadioState const destState) [member function] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3726 |
cls.add_method('UpdateRemainingEnergy', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3727 |
'void', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3728 |
[param('ns3::RadioEnergyModel::RadioState const', 'destState')]) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3729 |
## radio-energy-model.h: double ns3::RadioEnergyModel::DoGetIdlePowerW() const [member function] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3730 |
cls.add_method('DoGetIdlePowerW', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3731 |
'double', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3732 |
[], |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3733 |
is_pure_virtual=True, is_const=True, visibility='private', is_virtual=True) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3734 |
## radio-energy-model.h: double ns3::RadioEnergyModel::DoGetRxPowerW() const [member function] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3735 |
cls.add_method('DoGetRxPowerW', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3736 |
'double', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3737 |
[], |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3738 |
is_pure_virtual=True, is_const=True, visibility='private', is_virtual=True) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3739 |
## radio-energy-model.h: double ns3::RadioEnergyModel::DoGetSleepPowerW() const [member function] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3740 |
cls.add_method('DoGetSleepPowerW', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3741 |
'double', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3742 |
[], |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3743 |
is_pure_virtual=True, is_const=True, visibility='private', is_virtual=True) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3744 |
## radio-energy-model.h: double ns3::RadioEnergyModel::DoGetTxPowerW() const [member function] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3745 |
cls.add_method('DoGetTxPowerW', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3746 |
'double', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3747 |
[], |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3748 |
is_pure_virtual=True, is_const=True, visibility='private', is_virtual=True) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3749 |
## radio-energy-model.h: void ns3::RadioEnergyModel::DoSetIdlePowerW(double idlePowerW) [member function] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3750 |
cls.add_method('DoSetIdlePowerW', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3751 |
'void', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3752 |
[param('double', 'idlePowerW')], |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3753 |
is_pure_virtual=True, visibility='private', is_virtual=True) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3754 |
## radio-energy-model.h: void ns3::RadioEnergyModel::DoSetRxPowerW(double rxPowerW) [member function] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3755 |
cls.add_method('DoSetRxPowerW', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3756 |
'void', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3757 |
[param('double', 'rxPowerW')], |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3758 |
is_pure_virtual=True, visibility='private', is_virtual=True) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3759 |
## radio-energy-model.h: void ns3::RadioEnergyModel::DoSetSleepPowerW(double sleepPowerW) [member function] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3760 |
cls.add_method('DoSetSleepPowerW', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3761 |
'void', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3762 |
[param('double', 'sleepPowerW')], |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3763 |
is_pure_virtual=True, visibility='private', is_virtual=True) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3764 |
## radio-energy-model.h: void ns3::RadioEnergyModel::DoSetTxPowerW(double txPowerW) [member function] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3765 |
cls.add_method('DoSetTxPowerW', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3766 |
'void', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3767 |
[param('double', 'txPowerW')], |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3768 |
is_pure_virtual=True, visibility='private', is_virtual=True) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3769 |
## radio-energy-model.h: void ns3::RadioEnergyModel::DoUpdateRemainingEnergy(ns3::RadioEnergyModel::RadioState const destState) [member function] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3770 |
cls.add_method('DoUpdateRemainingEnergy', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3771 |
'void', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3772 |
[param('ns3::RadioEnergyModel::RadioState const', 'destState')], |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3773 |
is_pure_virtual=True, visibility='private', is_virtual=True) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3774 |
return |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
3775 |
|
6487 | 3776 |
def register_Ns3UanChannel_methods(root_module, cls): |
3777 |
## uan-channel.h: ns3::UanChannel::UanChannel(ns3::UanChannel const & arg0) [copy constructor] |
|
3778 |
cls.add_constructor([param('ns3::UanChannel const &', 'arg0')]) |
|
3779 |
## uan-channel.h: ns3::UanChannel::UanChannel() [constructor] |
|
3780 |
cls.add_constructor([]) |
|
3781 |
## uan-channel.h: void ns3::UanChannel::AddDevice(ns3::Ptr<ns3::UanNetDevice> dev, ns3::Ptr<ns3::UanTransducer> trans) [member function] |
|
3782 |
cls.add_method('AddDevice', |
|
3783 |
'void', |
|
3784 |
[param('ns3::Ptr< ns3::UanNetDevice >', 'dev'), param('ns3::Ptr< ns3::UanTransducer >', 'trans')]) |
|
3785 |
## uan-channel.h: void ns3::UanChannel::Clear() [member function] |
|
3786 |
cls.add_method('Clear', |
|
3787 |
'void', |
|
3788 |
[]) |
|
3789 |
## uan-channel.h: ns3::Ptr<ns3::NetDevice> ns3::UanChannel::GetDevice(uint32_t i) const [member function] |
|
3790 |
cls.add_method('GetDevice', |
|
3791 |
'ns3::Ptr< ns3::NetDevice >', |
|
3792 |
[param('uint32_t', 'i')], |
|
3793 |
is_const=True, is_virtual=True) |
|
3794 |
## uan-channel.h: uint32_t ns3::UanChannel::GetNDevices() const [member function] |
|
3795 |
cls.add_method('GetNDevices', |
|
3796 |
'uint32_t', |
|
3797 |
[], |
|
3798 |
is_const=True, is_virtual=True) |
|
3799 |
## uan-channel.h: double ns3::UanChannel::GetNoiseDbHz(double fKhz) [member function] |
|
3800 |
cls.add_method('GetNoiseDbHz', |
|
3801 |
'double', |
|
3802 |
[param('double', 'fKhz')]) |
|
3803 |
## uan-channel.h: static ns3::TypeId ns3::UanChannel::GetTypeId() [member function] |
|
3804 |
cls.add_method('GetTypeId', |
|
3805 |
'ns3::TypeId', |
|
3806 |
[], |
|
3807 |
is_static=True) |
|
3808 |
## uan-channel.h: void ns3::UanChannel::SetNoiseModel(ns3::Ptr<ns3::UanNoiseModel> noise) [member function] |
|
3809 |
cls.add_method('SetNoiseModel', |
|
3810 |
'void', |
|
3811 |
[param('ns3::Ptr< ns3::UanNoiseModel >', 'noise')]) |
|
3812 |
## uan-channel.h: void ns3::UanChannel::SetPropagationModel(ns3::Ptr<ns3::UanPropModel> prop) [member function] |
|
3813 |
cls.add_method('SetPropagationModel', |
|
3814 |
'void', |
|
3815 |
[param('ns3::Ptr< ns3::UanPropModel >', 'prop')]) |
|
3816 |
## uan-channel.h: void ns3::UanChannel::TxPacket(ns3::Ptr<ns3::UanTransducer> src, ns3::Ptr<ns3::Packet> packet, double txPowerDb, ns3::UanTxMode txmode) [member function] |
|
3817 |
cls.add_method('TxPacket', |
|
3818 |
'void', |
|
3819 |
[param('ns3::Ptr< ns3::UanTransducer >', 'src'), param('ns3::Ptr< ns3::Packet >', 'packet'), param('double', 'txPowerDb'), param('ns3::UanTxMode', 'txmode')]) |
|
3820 |
## uan-channel.h: void ns3::UanChannel::DoDispose() [member function] |
|
3821 |
cls.add_method('DoDispose', |
|
3822 |
'void', |
|
3823 |
[], |
|
3824 |
visibility='protected', is_virtual=True) |
|
3825 |
return |
|
3826 |
||
3827 |
def register_Ns3UanModesListChecker_methods(root_module, cls): |
|
3828 |
## uan-tx-mode.h: ns3::UanModesListChecker::UanModesListChecker() [constructor] |
|
3829 |
cls.add_constructor([]) |
|
3830 |
## uan-tx-mode.h: ns3::UanModesListChecker::UanModesListChecker(ns3::UanModesListChecker const & arg0) [copy constructor] |
|
3831 |
cls.add_constructor([param('ns3::UanModesListChecker const &', 'arg0')]) |
|
3832 |
return |
|
3833 |
||
3834 |
def register_Ns3UanModesListValue_methods(root_module, cls): |
|
3835 |
## uan-tx-mode.h: ns3::UanModesListValue::UanModesListValue() [constructor] |
|
3836 |
cls.add_constructor([]) |
|
3837 |
## uan-tx-mode.h: ns3::UanModesListValue::UanModesListValue(ns3::UanModesListValue const & arg0) [copy constructor] |
|
3838 |
cls.add_constructor([param('ns3::UanModesListValue const &', 'arg0')]) |
|
3839 |
## uan-tx-mode.h: ns3::UanModesListValue::UanModesListValue(ns3::UanModesList const & value) [constructor] |
|
3840 |
cls.add_constructor([param('ns3::UanModesList const &', 'value')]) |
|
3841 |
## uan-tx-mode.h: ns3::Ptr<ns3::AttributeValue> ns3::UanModesListValue::Copy() const [member function] |
|
3842 |
cls.add_method('Copy', |
|
3843 |
'ns3::Ptr< ns3::AttributeValue >', |
|
3844 |
[], |
|
3845 |
is_const=True, is_virtual=True) |
|
3846 |
## uan-tx-mode.h: bool ns3::UanModesListValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function] |
|
3847 |
cls.add_method('DeserializeFromString', |
|
3848 |
'bool', |
|
3849 |
[param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
|
3850 |
is_virtual=True) |
|
3851 |
## uan-tx-mode.h: ns3::UanModesList ns3::UanModesListValue::Get() const [member function] |
|
3852 |
cls.add_method('Get', |
|
3853 |
'ns3::UanModesList', |
|
3854 |
[], |
|
3855 |
is_const=True) |
|
3856 |
## uan-tx-mode.h: std::string ns3::UanModesListValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function] |
|
3857 |
cls.add_method('SerializeToString', |
|
3858 |
'std::string', |
|
3859 |
[param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
|
3860 |
is_const=True, is_virtual=True) |
|
3861 |
## uan-tx-mode.h: void ns3::UanModesListValue::Set(ns3::UanModesList const & value) [member function] |
|
3862 |
cls.add_method('Set', |
|
3863 |
'void', |
|
3864 |
[param('ns3::UanModesList const &', 'value')]) |
|
3865 |
return |
|
3866 |
||
3867 |
def register_Ns3UanNetDevice_methods(root_module, cls): |
|
3868 |
## uan-net-device.h: ns3::UanNetDevice::UanNetDevice(ns3::UanNetDevice const & arg0) [copy constructor] |
|
3869 |
cls.add_constructor([param('ns3::UanNetDevice const &', 'arg0')]) |
|
3870 |
## uan-net-device.h: ns3::UanNetDevice::UanNetDevice() [constructor] |
|
3871 |
cls.add_constructor([]) |
|
3872 |
## uan-net-device.h: void ns3::UanNetDevice::AddLinkChangeCallback(ns3::Callback<void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> callback) [member function] |
|
3873 |
cls.add_method('AddLinkChangeCallback', |
|
3874 |
'void', |
|
3875 |
[param('ns3::Callback< void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'callback')], |
|
3876 |
is_virtual=True) |
|
3877 |
## uan-net-device.h: void ns3::UanNetDevice::Clear() [member function] |
|
3878 |
cls.add_method('Clear', |
|
3879 |
'void', |
|
3880 |
[]) |
|
3881 |
## uan-net-device.h: ns3::Address ns3::UanNetDevice::GetAddress() const [member function] |
|
3882 |
cls.add_method('GetAddress', |
|
3883 |
'ns3::Address', |
|
3884 |
[], |
|
3885 |
is_const=True, is_virtual=True) |
|
3886 |
## uan-net-device.h: ns3::Address ns3::UanNetDevice::GetBroadcast() const [member function] |
|
3887 |
cls.add_method('GetBroadcast', |
|
3888 |
'ns3::Address', |
|
3889 |
[], |
|
3890 |
is_const=True, is_virtual=True) |
|
3891 |
## uan-net-device.h: ns3::Ptr<ns3::Channel> ns3::UanNetDevice::GetChannel() const [member function] |
|
3892 |
cls.add_method('GetChannel', |
|
3893 |
'ns3::Ptr< ns3::Channel >', |
|
3894 |
[], |
|
3895 |
is_const=True, is_virtual=True) |
|
3896 |
## uan-net-device.h: uint32_t ns3::UanNetDevice::GetIfIndex() const [member function] |
|
3897 |
cls.add_method('GetIfIndex', |
|
3898 |
'uint32_t', |
|
3899 |
[], |
|
3900 |
is_const=True, is_virtual=True) |
|
3901 |
## uan-net-device.h: ns3::Ptr<ns3::UanMac> ns3::UanNetDevice::GetMac() const [member function] |
|
3902 |
cls.add_method('GetMac', |
|
3903 |
'ns3::Ptr< ns3::UanMac >', |
|
3904 |
[], |
|
3905 |
is_const=True) |
|
3906 |
## uan-net-device.h: uint16_t ns3::UanNetDevice::GetMtu() const [member function] |
|
3907 |
cls.add_method('GetMtu', |
|
3908 |
'uint16_t', |
|
3909 |
[], |
|
3910 |
is_const=True, is_virtual=True) |
|
3911 |
## uan-net-device.h: ns3::Address ns3::UanNetDevice::GetMulticast(ns3::Ipv4Address multicastGroup) const [member function] |
|
3912 |
cls.add_method('GetMulticast', |
|
3913 |
'ns3::Address', |
|
3914 |
[param('ns3::Ipv4Address', 'multicastGroup')], |
|
3915 |
is_const=True, is_virtual=True) |
|
3916 |
## uan-net-device.h: ns3::Address ns3::UanNetDevice::GetMulticast(ns3::Ipv6Address addr) const [member function] |
|
3917 |
cls.add_method('GetMulticast', |
|
3918 |
'ns3::Address', |
|
3919 |
[param('ns3::Ipv6Address', 'addr')], |
|
3920 |
is_const=True, is_virtual=True) |
|
3921 |
## uan-net-device.h: ns3::Ptr<ns3::Node> ns3::UanNetDevice::GetNode() const [member function] |
|
3922 |
cls.add_method('GetNode', |
|
3923 |
'ns3::Ptr< ns3::Node >', |
|
3924 |
[], |
|
3925 |
is_const=True, is_virtual=True) |
|
3926 |
## uan-net-device.h: ns3::Ptr<ns3::UanPhy> ns3::UanNetDevice::GetPhy() const [member function] |
|
3927 |
cls.add_method('GetPhy', |
|
3928 |
'ns3::Ptr< ns3::UanPhy >', |
|
3929 |
[], |
|
3930 |
is_const=True) |
|
3931 |
## uan-net-device.h: ns3::Ptr<ns3::UanTransducer> ns3::UanNetDevice::GetTransducer() const [member function] |
|
3932 |
cls.add_method('GetTransducer', |
|
3933 |
'ns3::Ptr< ns3::UanTransducer >', |
|
3934 |
[], |
|
3935 |
is_const=True) |
|
3936 |
## uan-net-device.h: static ns3::TypeId ns3::UanNetDevice::GetTypeId() [member function] |
|
3937 |
cls.add_method('GetTypeId', |
|
3938 |
'ns3::TypeId', |
|
3939 |
[], |
|
3940 |
is_static=True) |
|
3941 |
## uan-net-device.h: bool ns3::UanNetDevice::IsBridge() const [member function] |
|
3942 |
cls.add_method('IsBridge', |
|
3943 |
'bool', |
|
3944 |
[], |
|
3945 |
is_const=True, is_virtual=True) |
|
3946 |
## uan-net-device.h: bool ns3::UanNetDevice::IsBroadcast() const [member function] |
|
3947 |
cls.add_method('IsBroadcast', |
|
3948 |
'bool', |
|
3949 |
[], |
|
3950 |
is_const=True, is_virtual=True) |
|
3951 |
## uan-net-device.h: bool ns3::UanNetDevice::IsLinkUp() const [member function] |
|
3952 |
cls.add_method('IsLinkUp', |
|
3953 |
'bool', |
|
3954 |
[], |
|
3955 |
is_const=True, is_virtual=True) |
|
3956 |
## uan-net-device.h: bool ns3::UanNetDevice::IsMulticast() const [member function] |
|
3957 |
cls.add_method('IsMulticast', |
|
3958 |
'bool', |
|
3959 |
[], |
|
3960 |
is_const=True, is_virtual=True) |
|
3961 |
## uan-net-device.h: bool ns3::UanNetDevice::IsPointToPoint() const [member function] |
|
3962 |
cls.add_method('IsPointToPoint', |
|
3963 |
'bool', |
|
3964 |
[], |
|
3965 |
is_const=True, is_virtual=True) |
|
3966 |
## uan-net-device.h: bool ns3::UanNetDevice::NeedsArp() const [member function] |
|
3967 |
cls.add_method('NeedsArp', |
|
3968 |
'bool', |
|
3969 |
[], |
|
3970 |
is_const=True, is_virtual=True) |
|
3971 |
## uan-net-device.h: bool ns3::UanNetDevice::Send(ns3::Ptr<ns3::Packet> packet, ns3::Address const & dest, uint16_t protocolNumber) [member function] |
|
3972 |
cls.add_method('Send', |
|
3973 |
'bool', |
|
3974 |
[param('ns3::Ptr< ns3::Packet >', 'packet'), param('ns3::Address const &', 'dest'), param('uint16_t', 'protocolNumber')], |
|
3975 |
is_virtual=True) |
|
3976 |
## uan-net-device.h: bool ns3::UanNetDevice::SendFrom(ns3::Ptr<ns3::Packet> packet, ns3::Address const & source, ns3::Address const & dest, uint16_t protocolNumber) [member function] |
|
3977 |
cls.add_method('SendFrom', |
|
3978 |
'bool', |
|
3979 |
[param('ns3::Ptr< ns3::Packet >', 'packet'), param('ns3::Address const &', 'source'), param('ns3::Address const &', 'dest'), param('uint16_t', 'protocolNumber')], |
|
3980 |
is_virtual=True) |
|
3981 |
## uan-net-device.h: void ns3::UanNetDevice::SetAddress(ns3::Address address) [member function] |
|
3982 |
cls.add_method('SetAddress', |
|
3983 |
'void', |
|
3984 |
[param('ns3::Address', 'address')], |
|
3985 |
is_virtual=True) |
|
3986 |
## uan-net-device.h: void ns3::UanNetDevice::SetChannel(ns3::Ptr<ns3::UanChannel> channel) [member function] |
|
3987 |
cls.add_method('SetChannel', |
|
3988 |
'void', |
|
3989 |
[param('ns3::Ptr< ns3::UanChannel >', 'channel')]) |
|
3990 |
## uan-net-device.h: void ns3::UanNetDevice::SetIfIndex(uint32_t const index) [member function] |
|
3991 |
cls.add_method('SetIfIndex', |
|
3992 |
'void', |
|
3993 |
[param('uint32_t const', 'index')], |
|
3994 |
is_virtual=True) |
|
3995 |
## uan-net-device.h: void ns3::UanNetDevice::SetMac(ns3::Ptr<ns3::UanMac> mac) [member function] |
|
3996 |
cls.add_method('SetMac', |
|
3997 |
'void', |
|
3998 |
[param('ns3::Ptr< ns3::UanMac >', 'mac')]) |
|
3999 |
## uan-net-device.h: bool ns3::UanNetDevice::SetMtu(uint16_t const mtu) [member function] |
|
4000 |
cls.add_method('SetMtu', |
|
4001 |
'bool', |
|
4002 |
[param('uint16_t const', 'mtu')], |
|
4003 |
is_virtual=True) |
|
4004 |
## uan-net-device.h: void ns3::UanNetDevice::SetNode(ns3::Ptr<ns3::Node> node) [member function] |
|
4005 |
cls.add_method('SetNode', |
|
4006 |
'void', |
|
4007 |
[param('ns3::Ptr< ns3::Node >', 'node')], |
|
4008 |
is_virtual=True) |
|
4009 |
## uan-net-device.h: void ns3::UanNetDevice::SetPhy(ns3::Ptr<ns3::UanPhy> phy) [member function] |
|
4010 |
cls.add_method('SetPhy', |
|
4011 |
'void', |
|
4012 |
[param('ns3::Ptr< ns3::UanPhy >', 'phy')]) |
|
4013 |
## uan-net-device.h: void ns3::UanNetDevice::SetPromiscReceiveCallback(ns3::Callback<bool, ns3::Ptr<ns3::NetDevice>, ns3::Ptr<ns3::Packet const>, unsigned short, ns3::Address const&, ns3::Address const&, ns3::NetDevice::PacketType, ns3::empty, ns3::empty, ns3::empty> cb) [member function] |
|
4014 |
cls.add_method('SetPromiscReceiveCallback', |
|
4015 |
'void', |
|
4016 |
[param('ns3::Callback< bool, ns3::Ptr< ns3::NetDevice >, ns3::Ptr< ns3::Packet const >, unsigned short, ns3::Address const &, ns3::Address const &, ns3::NetDevice::PacketType, ns3::empty, ns3::empty, ns3::empty >', 'cb')], |
|
4017 |
is_virtual=True) |
|
4018 |
## uan-net-device.h: void ns3::UanNetDevice::SetReceiveCallback(ns3::Callback<bool, ns3::Ptr<ns3::NetDevice>, ns3::Ptr<ns3::Packet const>, unsigned short, ns3::Address const&, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> cb) [member function] |
|
4019 |
cls.add_method('SetReceiveCallback', |
|
4020 |
'void', |
|
4021 |
[param('ns3::Callback< bool, ns3::Ptr< ns3::NetDevice >, ns3::Ptr< ns3::Packet const >, unsigned short, ns3::Address const &, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'cb')], |
|
4022 |
is_virtual=True) |
|
4023 |
## uan-net-device.h: void ns3::UanNetDevice::SetTransducer(ns3::Ptr<ns3::UanTransducer> trans) [member function] |
|
4024 |
cls.add_method('SetTransducer', |
|
4025 |
'void', |
|
4026 |
[param('ns3::Ptr< ns3::UanTransducer >', 'trans')]) |
|
4027 |
## uan-net-device.h: bool ns3::UanNetDevice::SupportsSendFrom() const [member function] |
|
4028 |
cls.add_method('SupportsSendFrom', |
|
4029 |
'bool', |
|
4030 |
[], |
|
4031 |
is_const=True, is_virtual=True) |
|
4032 |
## uan-net-device.h: void ns3::UanNetDevice::DoDispose() [member function] |
|
4033 |
cls.add_method('DoDispose', |
|
4034 |
'void', |
|
4035 |
[], |
|
4036 |
visibility='protected', is_virtual=True) |
|
4037 |
## uan-net-device.h: void ns3::UanNetDevice::ForwardUp(ns3::Ptr<ns3::Packet> pkt, ns3::UanAddress const & src) [member function] |
|
4038 |
cls.add_method('ForwardUp', |
|
4039 |
'void', |
|
4040 |
[param('ns3::Ptr< ns3::Packet >', 'pkt'), param('ns3::UanAddress const &', 'src')], |
|
4041 |
visibility='private', is_virtual=True) |
|
4042 |
return |
|
4043 |
||
6435
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4044 |
def register_Ns3BasicEnergySource_methods(root_module, cls): |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4045 |
## basic-energy-source.h: ns3::BasicEnergySource::BasicEnergySource(ns3::BasicEnergySource const & arg0) [copy constructor] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4046 |
cls.add_constructor([param('ns3::BasicEnergySource const &', 'arg0')]) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4047 |
## basic-energy-source.h: ns3::BasicEnergySource::BasicEnergySource() [constructor] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4048 |
cls.add_constructor([]) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4049 |
## basic-energy-source.h: static ns3::TypeId ns3::BasicEnergySource::GetTypeId() [member function] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4050 |
cls.add_method('GetTypeId', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4051 |
'ns3::TypeId', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4052 |
[], |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4053 |
is_static=True) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4054 |
## basic-energy-source.h: void ns3::BasicEnergySource::SetInitialEnergy(double initialEnergyJ) [member function] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4055 |
cls.add_method('SetInitialEnergy', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4056 |
'void', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4057 |
[param('double', 'initialEnergyJ')]) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4058 |
## basic-energy-source.h: void ns3::BasicEnergySource::DoDecreaseRemainingEnergy(double energyJ) [member function] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4059 |
cls.add_method('DoDecreaseRemainingEnergy', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4060 |
'void', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4061 |
[param('double', 'energyJ')], |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4062 |
visibility='private', is_virtual=True) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4063 |
## basic-energy-source.h: void ns3::BasicEnergySource::DoDispose() [member function] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4064 |
cls.add_method('DoDispose', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4065 |
'void', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4066 |
[], |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4067 |
visibility='private', is_virtual=True) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4068 |
## basic-energy-source.h: double ns3::BasicEnergySource::DoGetEnergyFraction() const [member function] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4069 |
cls.add_method('DoGetEnergyFraction', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4070 |
'double', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4071 |
[], |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4072 |
is_const=True, visibility='private', is_virtual=True) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4073 |
## basic-energy-source.h: double ns3::BasicEnergySource::DoGetInitialEnergy() const [member function] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4074 |
cls.add_method('DoGetInitialEnergy', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4075 |
'double', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4076 |
[], |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4077 |
is_const=True, visibility='private', is_virtual=True) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4078 |
## basic-energy-source.h: double ns3::BasicEnergySource::DoGetRemainingEnergy() const [member function] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4079 |
cls.add_method('DoGetRemainingEnergy', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4080 |
'double', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4081 |
[], |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4082 |
is_const=True, visibility='private', is_virtual=True) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4083 |
## basic-energy-source.h: void ns3::BasicEnergySource::DoIncreaseRemainingEnergy(double energyJ) [member function] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4084 |
cls.add_method('DoIncreaseRemainingEnergy', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4085 |
'void', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4086 |
[param('double', 'energyJ')], |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4087 |
visibility='private', is_virtual=True) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4088 |
return |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4089 |
|
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4090 |
def register_Ns3BasicRadioEnergyModel_methods(root_module, cls): |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4091 |
## basic-radio-energy-model.h: ns3::BasicRadioEnergyModel::BasicRadioEnergyModel(ns3::BasicRadioEnergyModel const & arg0) [copy constructor] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4092 |
cls.add_constructor([param('ns3::BasicRadioEnergyModel const &', 'arg0')]) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4093 |
## basic-radio-energy-model.h: ns3::BasicRadioEnergyModel::BasicRadioEnergyModel() [constructor] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4094 |
cls.add_constructor([]) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4095 |
## basic-radio-energy-model.h: ns3::RadioEnergyModel::RadioState ns3::BasicRadioEnergyModel::GetCurrentState() const [member function] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4096 |
cls.add_method('GetCurrentState', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4097 |
'ns3::RadioEnergyModel::RadioState', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4098 |
[], |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4099 |
is_const=True) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4100 |
## basic-radio-energy-model.h: ns3::Time ns3::BasicRadioEnergyModel::GetEnergyUpdateInterval() const [member function] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4101 |
cls.add_method('GetEnergyUpdateInterval', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4102 |
'ns3::Time', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4103 |
[], |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4104 |
is_const=True) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4105 |
## basic-radio-energy-model.h: static ns3::TypeId ns3::BasicRadioEnergyModel::GetTypeId() [member function] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4106 |
cls.add_method('GetTypeId', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4107 |
'ns3::TypeId', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4108 |
[], |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4109 |
is_static=True) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4110 |
## basic-radio-energy-model.h: bool ns3::BasicRadioEnergyModel::IsStateTransitionValid(ns3::RadioEnergyModel::RadioState const destState) [member function] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4111 |
cls.add_method('IsStateTransitionValid', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4112 |
'bool', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4113 |
[param('ns3::RadioEnergyModel::RadioState const', 'destState')]) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4114 |
## basic-radio-energy-model.h: void ns3::BasicRadioEnergyModel::SetEnergyDepletionCallback(ns3::Callback<void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> callback) [member function] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4115 |
cls.add_method('SetEnergyDepletionCallback', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4116 |
'void', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4117 |
[param('ns3::Callback< void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'callback')]) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4118 |
## basic-radio-energy-model.h: void ns3::BasicRadioEnergyModel::SetEnergyUpdateInterval(ns3::Time const interval) [member function] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4119 |
cls.add_method('SetEnergyUpdateInterval', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4120 |
'void', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4121 |
[param('ns3::Time const', 'interval')]) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4122 |
## basic-radio-energy-model.h: void ns3::BasicRadioEnergyModel::DoDispose() [member function] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4123 |
cls.add_method('DoDispose', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4124 |
'void', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4125 |
[], |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4126 |
visibility='private', is_virtual=True) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4127 |
## basic-radio-energy-model.h: double ns3::BasicRadioEnergyModel::DoGetIdlePowerW() const [member function] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4128 |
cls.add_method('DoGetIdlePowerW', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4129 |
'double', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4130 |
[], |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4131 |
is_const=True, visibility='private', is_virtual=True) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4132 |
## basic-radio-energy-model.h: double ns3::BasicRadioEnergyModel::DoGetRxPowerW() const [member function] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4133 |
cls.add_method('DoGetRxPowerW', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4134 |
'double', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4135 |
[], |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4136 |
is_const=True, visibility='private', is_virtual=True) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4137 |
## basic-radio-energy-model.h: double ns3::BasicRadioEnergyModel::DoGetSleepPowerW() const [member function] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4138 |
cls.add_method('DoGetSleepPowerW', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4139 |
'double', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4140 |
[], |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4141 |
is_const=True, visibility='private', is_virtual=True) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4142 |
## basic-radio-energy-model.h: double ns3::BasicRadioEnergyModel::DoGetTxPowerW() const [member function] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4143 |
cls.add_method('DoGetTxPowerW', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4144 |
'double', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4145 |
[], |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4146 |
is_const=True, visibility='private', is_virtual=True) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4147 |
## basic-radio-energy-model.h: void ns3::BasicRadioEnergyModel::DoHandleEnergyDepletion() [member function] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4148 |
cls.add_method('DoHandleEnergyDepletion', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4149 |
'void', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4150 |
[], |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4151 |
visibility='private', is_virtual=True) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4152 |
## basic-radio-energy-model.h: void ns3::BasicRadioEnergyModel::DoSetIdlePowerW(double idlePowerW) [member function] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4153 |
cls.add_method('DoSetIdlePowerW', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4154 |
'void', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4155 |
[param('double', 'idlePowerW')], |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4156 |
visibility='private', is_virtual=True) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4157 |
## basic-radio-energy-model.h: void ns3::BasicRadioEnergyModel::DoSetRxPowerW(double rxPowerW) [member function] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4158 |
cls.add_method('DoSetRxPowerW', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4159 |
'void', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4160 |
[param('double', 'rxPowerW')], |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4161 |
visibility='private', is_virtual=True) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4162 |
## basic-radio-energy-model.h: void ns3::BasicRadioEnergyModel::DoSetSleepPowerW(double sleepPowerW) [member function] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4163 |
cls.add_method('DoSetSleepPowerW', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4164 |
'void', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4165 |
[param('double', 'sleepPowerW')], |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4166 |
visibility='private', is_virtual=True) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4167 |
## basic-radio-energy-model.h: void ns3::BasicRadioEnergyModel::DoSetTxPowerW(double txPowerW) [member function] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4168 |
cls.add_method('DoSetTxPowerW', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4169 |
'void', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4170 |
[param('double', 'txPowerW')], |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4171 |
visibility='private', is_virtual=True) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4172 |
## basic-radio-energy-model.h: void ns3::BasicRadioEnergyModel::DoUpdateRemainingEnergy(ns3::RadioEnergyModel::RadioState const destState) [member function] |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4173 |
cls.add_method('DoUpdateRemainingEnergy', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4174 |
'void', |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4175 |
[param('ns3::RadioEnergyModel::RadioState const', 'destState')], |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4176 |
visibility='private', is_virtual=True) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4177 |
return |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4178 |
|
6029
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4179 |
def register_functions(root_module): |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4180 |
module = root_module |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4181 |
root_module.begin_section('ns3_module_core') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4182 |
ns3_module_core.register_functions(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4183 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4184 |
try: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4185 |
import ns3_module_core__local |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4186 |
except ImportError: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4187 |
pass |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4188 |
else: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4189 |
ns3_module_core__local.register_functions(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4190 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4191 |
root_module.end_section('ns3_module_core') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4192 |
root_module.begin_section('ns3_module_simulator') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4193 |
ns3_module_simulator.register_functions(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4194 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4195 |
try: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4196 |
import ns3_module_simulator__local |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4197 |
except ImportError: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4198 |
pass |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4199 |
else: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4200 |
ns3_module_simulator__local.register_functions(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4201 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4202 |
root_module.end_section('ns3_module_simulator') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4203 |
root_module.begin_section('ns3_module_test') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4204 |
ns3_module_test.register_functions(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4205 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4206 |
try: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4207 |
import ns3_module_test__local |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4208 |
except ImportError: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4209 |
pass |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4210 |
else: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4211 |
ns3_module_test__local.register_functions(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4212 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4213 |
root_module.end_section('ns3_module_test') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4214 |
root_module.begin_section('ns3_module_common') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4215 |
ns3_module_common.register_functions(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4216 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4217 |
try: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4218 |
import ns3_module_common__local |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4219 |
except ImportError: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4220 |
pass |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4221 |
else: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4222 |
ns3_module_common__local.register_functions(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4223 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4224 |
root_module.end_section('ns3_module_common') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4225 |
root_module.begin_section('ns3_module_mobility') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4226 |
ns3_module_mobility.register_functions(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4227 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4228 |
try: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4229 |
import ns3_module_mobility__local |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4230 |
except ImportError: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4231 |
pass |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4232 |
else: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4233 |
ns3_module_mobility__local.register_functions(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4234 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4235 |
root_module.end_section('ns3_module_mobility') |
6113
0ce37bf4f1c1
Merge distributed simulation code
Josh Pelkey <jpelkey@gatech.edu>
parents:
6029
diff
changeset
|
4236 |
root_module.begin_section('ns3_module_mpi') |
0ce37bf4f1c1
Merge distributed simulation code
Josh Pelkey <jpelkey@gatech.edu>
parents:
6029
diff
changeset
|
4237 |
ns3_module_mpi.register_functions(root_module) |
0ce37bf4f1c1
Merge distributed simulation code
Josh Pelkey <jpelkey@gatech.edu>
parents:
6029
diff
changeset
|
4238 |
|
0ce37bf4f1c1
Merge distributed simulation code
Josh Pelkey <jpelkey@gatech.edu>
parents:
6029
diff
changeset
|
4239 |
try: |
0ce37bf4f1c1
Merge distributed simulation code
Josh Pelkey <jpelkey@gatech.edu>
parents:
6029
diff
changeset
|
4240 |
import ns3_module_mpi__local |
0ce37bf4f1c1
Merge distributed simulation code
Josh Pelkey <jpelkey@gatech.edu>
parents:
6029
diff
changeset
|
4241 |
except ImportError: |
0ce37bf4f1c1
Merge distributed simulation code
Josh Pelkey <jpelkey@gatech.edu>
parents:
6029
diff
changeset
|
4242 |
pass |
0ce37bf4f1c1
Merge distributed simulation code
Josh Pelkey <jpelkey@gatech.edu>
parents:
6029
diff
changeset
|
4243 |
else: |
0ce37bf4f1c1
Merge distributed simulation code
Josh Pelkey <jpelkey@gatech.edu>
parents:
6029
diff
changeset
|
4244 |
ns3_module_mpi__local.register_functions(root_module) |
0ce37bf4f1c1
Merge distributed simulation code
Josh Pelkey <jpelkey@gatech.edu>
parents:
6029
diff
changeset
|
4245 |
|
0ce37bf4f1c1
Merge distributed simulation code
Josh Pelkey <jpelkey@gatech.edu>
parents:
6029
diff
changeset
|
4246 |
root_module.end_section('ns3_module_mpi') |
6029
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4247 |
root_module.begin_section('ns3_module_contrib') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4248 |
ns3_module_contrib.register_functions(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4249 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4250 |
try: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4251 |
import ns3_module_contrib__local |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4252 |
except ImportError: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4253 |
pass |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4254 |
else: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4255 |
ns3_module_contrib__local.register_functions(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4256 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4257 |
root_module.end_section('ns3_module_contrib') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4258 |
root_module.begin_section('ns3_module_node') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4259 |
ns3_module_node.register_functions(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4260 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4261 |
try: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4262 |
import ns3_module_node__local |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4263 |
except ImportError: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4264 |
pass |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4265 |
else: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4266 |
ns3_module_node__local.register_functions(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4267 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4268 |
root_module.end_section('ns3_module_node') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4269 |
root_module.begin_section('ns3_module_bridge') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4270 |
ns3_module_bridge.register_functions(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4271 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4272 |
try: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4273 |
import ns3_module_bridge__local |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4274 |
except ImportError: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4275 |
pass |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4276 |
else: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4277 |
ns3_module_bridge__local.register_functions(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4278 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4279 |
root_module.end_section('ns3_module_bridge') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4280 |
root_module.begin_section('ns3_module_csma') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4281 |
ns3_module_csma.register_functions(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4282 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4283 |
try: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4284 |
import ns3_module_csma__local |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4285 |
except ImportError: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4286 |
pass |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4287 |
else: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4288 |
ns3_module_csma__local.register_functions(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4289 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4290 |
root_module.end_section('ns3_module_csma') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4291 |
root_module.begin_section('ns3_module_emu') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4292 |
ns3_module_emu.register_functions(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4293 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4294 |
try: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4295 |
import ns3_module_emu__local |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4296 |
except ImportError: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4297 |
pass |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4298 |
else: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4299 |
ns3_module_emu__local.register_functions(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4300 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4301 |
root_module.end_section('ns3_module_emu') |
6435
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4302 |
root_module.begin_section('ns3_module_energy') |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4303 |
ns3_module_energy.register_functions(root_module) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4304 |
|
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4305 |
try: |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4306 |
import ns3_module_energy__local |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4307 |
except ImportError: |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4308 |
pass |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4309 |
else: |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4310 |
ns3_module_energy__local.register_functions(root_module) |
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4311 |
|
70bffe766285
Python bindings API rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6377
diff
changeset
|
4312 |
root_module.end_section('ns3_module_energy') |
6029
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4313 |
root_module.begin_section('ns3_module_global_routing') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4314 |
ns3_module_global_routing.register_functions(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4315 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4316 |
try: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4317 |
import ns3_module_global_routing__local |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4318 |
except ImportError: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4319 |
pass |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4320 |
else: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4321 |
ns3_module_global_routing__local.register_functions(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4322 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4323 |
root_module.end_section('ns3_module_global_routing') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4324 |
root_module.begin_section('ns3_module_internet_stack') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4325 |
ns3_module_internet_stack.register_functions(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4326 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4327 |
try: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4328 |
import ns3_module_internet_stack__local |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4329 |
except ImportError: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4330 |
pass |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4331 |
else: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4332 |
ns3_module_internet_stack__local.register_functions(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4333 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4334 |
root_module.end_section('ns3_module_internet_stack') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4335 |
root_module.begin_section('ns3_module_list_routing') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4336 |
ns3_module_list_routing.register_functions(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4337 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4338 |
try: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4339 |
import ns3_module_list_routing__local |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4340 |
except ImportError: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4341 |
pass |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4342 |
else: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4343 |
ns3_module_list_routing__local.register_functions(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4344 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4345 |
root_module.end_section('ns3_module_list_routing') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4346 |
root_module.begin_section('ns3_module_onoff') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4347 |
ns3_module_onoff.register_functions(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4348 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4349 |
try: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4350 |
import ns3_module_onoff__local |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4351 |
except ImportError: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4352 |
pass |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4353 |
else: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4354 |
ns3_module_onoff__local.register_functions(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4355 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4356 |
root_module.end_section('ns3_module_onoff') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4357 |
root_module.begin_section('ns3_module_packet_sink') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4358 |
ns3_module_packet_sink.register_functions(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4359 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4360 |
try: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4361 |
import ns3_module_packet_sink__local |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4362 |
except ImportError: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4363 |
pass |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4364 |
else: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4365 |
ns3_module_packet_sink__local.register_functions(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4366 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4367 |
root_module.end_section('ns3_module_packet_sink') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4368 |
root_module.begin_section('ns3_module_point_to_point') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4369 |
ns3_module_point_to_point.register_functions(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4370 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4371 |
try: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4372 |
import ns3_module_point_to_point__local |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4373 |
except ImportError: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4374 |
pass |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4375 |
else: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4376 |
ns3_module_point_to_point__local.register_functions(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4377 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4378 |
root_module.end_section('ns3_module_point_to_point') |
6356
1b8a736858cc
Rescan API for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6141
diff
changeset
|
4379 |
root_module.begin_section('ns3_module_spectrum') |
1b8a736858cc
Rescan API for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6141
diff
changeset
|
4380 |
ns3_module_spectrum.register_functions(root_module) |
1b8a736858cc
Rescan API for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6141
diff
changeset
|
4381 |
|
1b8a736858cc
Rescan API for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6141
diff
changeset
|
4382 |
try: |
1b8a736858cc
Rescan API for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6141
diff
changeset
|
4383 |
import ns3_module_spectrum__local |
1b8a736858cc
Rescan API for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6141
diff
changeset
|
4384 |
except ImportError: |
1b8a736858cc
Rescan API for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6141
diff
changeset
|
4385 |
pass |
1b8a736858cc
Rescan API for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6141
diff
changeset
|
4386 |
else: |
1b8a736858cc
Rescan API for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6141
diff
changeset
|
4387 |
ns3_module_spectrum__local.register_functions(root_module) |
1b8a736858cc
Rescan API for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6141
diff
changeset
|
4388 |
|
1b8a736858cc
Rescan API for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6141
diff
changeset
|
4389 |
root_module.end_section('ns3_module_spectrum') |
6029
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4390 |
root_module.begin_section('ns3_module_static_routing') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4391 |
ns3_module_static_routing.register_functions(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4392 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4393 |
try: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4394 |
import ns3_module_static_routing__local |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4395 |
except ImportError: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4396 |
pass |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4397 |
else: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4398 |
ns3_module_static_routing__local.register_functions(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4399 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4400 |
root_module.end_section('ns3_module_static_routing') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4401 |
root_module.begin_section('ns3_module_stats') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4402 |
ns3_module_stats.register_functions(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4403 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4404 |
try: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4405 |
import ns3_module_stats__local |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4406 |
except ImportError: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4407 |
pass |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4408 |
else: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4409 |
ns3_module_stats__local.register_functions(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4410 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4411 |
root_module.end_section('ns3_module_stats') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4412 |
root_module.begin_section('ns3_module_tap_bridge') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4413 |
ns3_module_tap_bridge.register_functions(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4414 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4415 |
try: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4416 |
import ns3_module_tap_bridge__local |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4417 |
except ImportError: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4418 |
pass |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4419 |
else: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4420 |
ns3_module_tap_bridge__local.register_functions(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4421 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4422 |
root_module.end_section('ns3_module_tap_bridge') |
6135
63442dc5ccea
API rescan for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6121
diff
changeset
|
4423 |
root_module.begin_section('ns3_module_topology_read') |
63442dc5ccea
API rescan for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6121
diff
changeset
|
4424 |
ns3_module_topology_read.register_functions(root_module) |
63442dc5ccea
API rescan for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6121
diff
changeset
|
4425 |
|
63442dc5ccea
API rescan for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6121
diff
changeset
|
4426 |
try: |
63442dc5ccea
API rescan for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6121
diff
changeset
|
4427 |
import ns3_module_topology_read__local |
63442dc5ccea
API rescan for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6121
diff
changeset
|
4428 |
except ImportError: |
63442dc5ccea
API rescan for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6121
diff
changeset
|
4429 |
pass |
63442dc5ccea
API rescan for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6121
diff
changeset
|
4430 |
else: |
63442dc5ccea
API rescan for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6121
diff
changeset
|
4431 |
ns3_module_topology_read__local.register_functions(root_module) |
63442dc5ccea
API rescan for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6121
diff
changeset
|
4432 |
|
63442dc5ccea
API rescan for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6121
diff
changeset
|
4433 |
root_module.end_section('ns3_module_topology_read') |
6377 | 4434 |
root_module.begin_section('ns3_module_uan') |
4435 |
ns3_module_uan.register_functions(root_module) |
|
4436 |
||
4437 |
try: |
|
4438 |
import ns3_module_uan__local |
|
4439 |
except ImportError: |
|
4440 |
pass |
|
4441 |
else: |
|
4442 |
ns3_module_uan__local.register_functions(root_module) |
|
4443 |
||
4444 |
root_module.end_section('ns3_module_uan') |
|
6029
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4445 |
root_module.begin_section('ns3_module_v4ping') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4446 |
ns3_module_v4ping.register_functions(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4447 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4448 |
try: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4449 |
import ns3_module_v4ping__local |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4450 |
except ImportError: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4451 |
pass |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4452 |
else: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4453 |
ns3_module_v4ping__local.register_functions(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4454 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4455 |
root_module.end_section('ns3_module_v4ping') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4456 |
root_module.begin_section('ns3_module_virtual_net_device') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4457 |
ns3_module_virtual_net_device.register_functions(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4458 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4459 |
try: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4460 |
import ns3_module_virtual_net_device__local |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4461 |
except ImportError: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4462 |
pass |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4463 |
else: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4464 |
ns3_module_virtual_net_device__local.register_functions(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4465 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4466 |
root_module.end_section('ns3_module_virtual_net_device') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4467 |
root_module.begin_section('ns3_module_wifi') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4468 |
ns3_module_wifi.register_functions(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4469 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4470 |
try: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4471 |
import ns3_module_wifi__local |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4472 |
except ImportError: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4473 |
pass |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4474 |
else: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4475 |
ns3_module_wifi__local.register_functions(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4476 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4477 |
root_module.end_section('ns3_module_wifi') |
6135
63442dc5ccea
API rescan for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6121
diff
changeset
|
4478 |
root_module.begin_section('ns3_module_wimax') |
63442dc5ccea
API rescan for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6121
diff
changeset
|
4479 |
ns3_module_wimax.register_functions(root_module) |
63442dc5ccea
API rescan for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6121
diff
changeset
|
4480 |
|
63442dc5ccea
API rescan for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6121
diff
changeset
|
4481 |
try: |
63442dc5ccea
API rescan for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6121
diff
changeset
|
4482 |
import ns3_module_wimax__local |
63442dc5ccea
API rescan for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6121
diff
changeset
|
4483 |
except ImportError: |
63442dc5ccea
API rescan for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6121
diff
changeset
|
4484 |
pass |
63442dc5ccea
API rescan for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6121
diff
changeset
|
4485 |
else: |
63442dc5ccea
API rescan for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6121
diff
changeset
|
4486 |
ns3_module_wimax__local.register_functions(root_module) |
63442dc5ccea
API rescan for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6121
diff
changeset
|
4487 |
|
63442dc5ccea
API rescan for Python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
6121
diff
changeset
|
4488 |
root_module.end_section('ns3_module_wimax') |
6029
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4489 |
root_module.begin_section('ns3_module_aodv') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4490 |
ns3_module_aodv.register_functions(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4491 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4492 |
try: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4493 |
import ns3_module_aodv__local |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4494 |
except ImportError: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4495 |
pass |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4496 |
else: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4497 |
ns3_module_aodv__local.register_functions(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4498 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4499 |
root_module.end_section('ns3_module_aodv') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4500 |
root_module.begin_section('ns3_module_flow_monitor') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4501 |
ns3_module_flow_monitor.register_functions(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4502 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4503 |
try: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4504 |
import ns3_module_flow_monitor__local |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4505 |
except ImportError: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4506 |
pass |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4507 |
else: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4508 |
ns3_module_flow_monitor__local.register_functions(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4509 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4510 |
root_module.end_section('ns3_module_flow_monitor') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4511 |
root_module.begin_section('ns3_module_nix_vector_routing') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4512 |
ns3_module_nix_vector_routing.register_functions(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4513 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4514 |
try: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4515 |
import ns3_module_nix_vector_routing__local |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4516 |
except ImportError: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4517 |
pass |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4518 |
else: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4519 |
ns3_module_nix_vector_routing__local.register_functions(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4520 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4521 |
root_module.end_section('ns3_module_nix_vector_routing') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4522 |
root_module.begin_section('ns3_module_olsr') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4523 |
ns3_module_olsr.register_functions(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4524 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4525 |
try: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4526 |
import ns3_module_olsr__local |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4527 |
except ImportError: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4528 |
pass |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4529 |
else: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4530 |
ns3_module_olsr__local.register_functions(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4531 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4532 |
root_module.end_section('ns3_module_olsr') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4533 |
root_module.begin_section('ns3_module_ping6') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4534 |
ns3_module_ping6.register_functions(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4535 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4536 |
try: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4537 |
import ns3_module_ping6__local |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4538 |
except ImportError: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4539 |
pass |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4540 |
else: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4541 |
ns3_module_ping6__local.register_functions(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4542 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4543 |
root_module.end_section('ns3_module_ping6') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4544 |
root_module.begin_section('ns3_module_radvd') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4545 |
ns3_module_radvd.register_functions(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4546 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4547 |
try: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4548 |
import ns3_module_radvd__local |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4549 |
except ImportError: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4550 |
pass |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4551 |
else: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4552 |
ns3_module_radvd__local.register_functions(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4553 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4554 |
root_module.end_section('ns3_module_radvd') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4555 |
root_module.begin_section('ns3_module_udp_client_server') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4556 |
ns3_module_udp_client_server.register_functions(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4557 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4558 |
try: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4559 |
import ns3_module_udp_client_server__local |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4560 |
except ImportError: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4561 |
pass |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4562 |
else: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4563 |
ns3_module_udp_client_server__local.register_functions(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4564 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4565 |
root_module.end_section('ns3_module_udp_client_server') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4566 |
root_module.begin_section('ns3_module_udp_echo') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4567 |
ns3_module_udp_echo.register_functions(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4568 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4569 |
try: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4570 |
import ns3_module_udp_echo__local |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4571 |
except ImportError: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4572 |
pass |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4573 |
else: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4574 |
ns3_module_udp_echo__local.register_functions(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4575 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4576 |
root_module.end_section('ns3_module_udp_echo') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4577 |
root_module.begin_section('ns3_module_mesh') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4578 |
ns3_module_mesh.register_functions(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4579 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4580 |
try: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4581 |
import ns3_module_mesh__local |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4582 |
except ImportError: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4583 |
pass |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4584 |
else: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4585 |
ns3_module_mesh__local.register_functions(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4586 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4587 |
root_module.end_section('ns3_module_mesh') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4588 |
root_module.begin_section('ns3_module_helper') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4589 |
ns3_module_helper.register_functions(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4590 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4591 |
try: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4592 |
import ns3_module_helper__local |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4593 |
except ImportError: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4594 |
pass |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4595 |
else: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4596 |
ns3_module_helper__local.register_functions(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4597 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4598 |
root_module.end_section('ns3_module_helper') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4599 |
root_module.begin_section('ns3_module_dot11s') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4600 |
ns3_module_dot11s.register_functions(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4601 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4602 |
try: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4603 |
import ns3_module_dot11s__local |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4604 |
except ImportError: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4605 |
pass |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4606 |
else: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4607 |
ns3_module_dot11s__local.register_functions(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4608 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4609 |
root_module.end_section('ns3_module_dot11s') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4610 |
root_module.begin_section('ns3_module_flame') |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4611 |
ns3_module_flame.register_functions(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4612 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4613 |
try: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4614 |
import ns3_module_flame__local |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4615 |
except ImportError: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4616 |
pass |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4617 |
else: |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4618 |
ns3_module_flame__local.register_functions(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4619 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4620 |
root_module.end_section('ns3_module_flame') |
6487 | 4621 |
## uan-tx-mode.h: extern ns3::Ptr<ns3::AttributeChecker const> ns3::MakeUanModesListChecker() [free function] |
4622 |
module.add_function('MakeUanModesListChecker', |
|
4623 |
'ns3::Ptr< ns3::AttributeChecker const >', |
|
4624 |
[]) |
|
6029
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4625 |
register_functions_ns3_Config(module.get_submodule('Config'), root_module) |
6375 | 4626 |
register_functions_ns3_FatalImpl(module.get_submodule('FatalImpl'), root_module) |
6029
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4627 |
register_functions_ns3_TimeStepPrecision(module.get_submodule('TimeStepPrecision'), root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4628 |
register_functions_ns3_addressUtils(module.get_submodule('addressUtils'), root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4629 |
register_functions_ns3_aodv(module.get_submodule('aodv'), root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4630 |
register_functions_ns3_dot11s(module.get_submodule('dot11s'), root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4631 |
register_functions_ns3_flame(module.get_submodule('flame'), root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4632 |
register_functions_ns3_internal(module.get_submodule('internal'), root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4633 |
register_functions_ns3_olsr(module.get_submodule('olsr'), root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4634 |
return |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4635 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4636 |
def register_functions_ns3_Config(module, root_module): |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4637 |
return |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4638 |
|
6375 | 4639 |
def register_functions_ns3_FatalImpl(module, root_module): |
4640 |
return |
|
4641 |
||
6029
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4642 |
def register_functions_ns3_TimeStepPrecision(module, root_module): |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4643 |
return |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4644 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4645 |
def register_functions_ns3_addressUtils(module, root_module): |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4646 |
return |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4647 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4648 |
def register_functions_ns3_aodv(module, root_module): |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4649 |
return |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4650 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4651 |
def register_functions_ns3_dot11s(module, root_module): |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4652 |
return |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4653 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4654 |
def register_functions_ns3_flame(module, root_module): |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4655 |
return |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4656 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4657 |
def register_functions_ns3_internal(module, root_module): |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4658 |
return |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4659 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4660 |
def register_functions_ns3_olsr(module, root_module): |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4661 |
return |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4662 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4663 |
def main(): |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4664 |
out = FileCodeSink(sys.stdout) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4665 |
root_module = module_init() |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4666 |
register_types(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4667 |
register_methods(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4668 |
register_functions(root_module) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4669 |
root_module.generate(out) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4670 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4671 |
if __name__ == '__main__': |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4672 |
main() |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
4673 |