author | Tom Henderson <tomh@tomh.org> |
Tue, 21 Dec 2010 22:49:48 -0800 | |
changeset 6718 | 87c3097fecef |
parent 6521 | d6e404a27f73 |
permissions | -rw-r--r-- |
5308
eba2d161abdb
Rescan API for Python
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1 |
from pybindgen import Module, FileCodeSink, param, retval, cppclass, typehandlers |
eba2d161abdb
Rescan API for Python
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2 |
|
eba2d161abdb
Rescan API for Python
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3 |
def register_types(module): |
eba2d161abdb
Rescan API for Python
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4 |
root_module = module.get_root() |
eba2d161abdb
Rescan API for Python
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
5 |
|
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
|
6 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
7 |
## 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
|
8 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
9 |
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
|
10 |
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
|
11 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
12 |
|
6375 | 13 |
## Register a nested module for the namespace FatalImpl |
14 |
||
15 |
nested_module = module.add_cpp_namespace('FatalImpl') |
|
16 |
register_types_ns3_FatalImpl(nested_module) |
|
17 |
||
18 |
||
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
|
19 |
## 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
|
20 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
21 |
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
|
22 |
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
|
23 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
24 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
25 |
## 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
|
26 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
27 |
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
|
28 |
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
|
29 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
30 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
31 |
## 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
|
32 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
33 |
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
|
34 |
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
|
35 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
36 |
|
6718 | 37 |
## Register a nested module for the namespace dsdv |
38 |
||
39 |
nested_module = module.add_cpp_namespace('dsdv') |
|
40 |
register_types_ns3_dsdv(nested_module) |
|
41 |
||
42 |
||
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
|
43 |
## 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
|
44 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
45 |
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
|
46 |
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
|
47 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
48 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
49 |
## 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
|
50 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
51 |
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
|
52 |
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
|
53 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
54 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
55 |
## 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
|
56 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
57 |
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
|
58 |
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
|
59 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
60 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
61 |
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
|
62 |
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
|
63 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
64 |
|
6375 | 65 |
def register_types_ns3_FatalImpl(module): |
66 |
root_module = module.get_root() |
|
67 |
||
68 |
||
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
|
69 |
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
|
70 |
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
|
71 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
72 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
73 |
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
|
74 |
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
|
75 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
76 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
77 |
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
|
78 |
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
|
79 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
80 |
|
6718 | 81 |
def register_types_ns3_dsdv(module): |
82 |
root_module = module.get_root() |
|
83 |
||
84 |
||
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
|
85 |
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
|
86 |
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
|
87 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
88 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
89 |
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
|
90 |
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
|
91 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
92 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
93 |
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
|
94 |
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
|
95 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
96 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
97 |
def 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
|
98 |
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
|
99 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
100 |
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
|
101 |
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
|
102 |
register_functions_ns3_Config(module.get_submodule('Config'), root_module) |
6375 | 103 |
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
|
104 |
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
|
105 |
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
|
106 |
register_functions_ns3_dot11s(module.get_submodule('dot11s'), root_module) |
6718 | 107 |
register_functions_ns3_dsdv(module.get_submodule('dsdv'), 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
|
108 |
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
|
109 |
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
|
110 |
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
|
111 |
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
|
112 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
113 |
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
|
114 |
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
|
115 |
|
6375 | 116 |
def register_functions_ns3_FatalImpl(module, root_module): |
117 |
return |
|
118 |
||
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
|
119 |
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
|
120 |
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
|
121 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
122 |
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
|
123 |
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
|
124 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
125 |
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
|
126 |
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
|
127 |
|
6718 | 128 |
def register_functions_ns3_dsdv(module, root_module): |
129 |
return |
|
130 |
||
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
|
131 |
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
|
132 |
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
|
133 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
134 |
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
|
135 |
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
|
136 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
137 |
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
|
138 |
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
|
139 |