author | Tom Henderson <tomh@tomh.org> |
Tue, 21 Dec 2010 22:49:48 -0800 | |
changeset 6718 | 87c3097fecef |
parent 6675 | 98265b92fbf4 |
child 6867 | 020d52c50a45 |
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 |
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
|
4 |
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
|
5 |
|
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
6 |
## mesh-wifi-beacon.h: ns3::MeshWifiBeacon [class] |
85cde7d987ed
Python: allow multiple api definitions directories, one per data model.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
7 |
module.add_class('MeshWifiBeacon') |
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
|
8 |
## simple-ref-count.h: ns3::SimpleRefCount<ns3::MeshWifiInterfaceMacPlugin, ns3::empty, ns3::DefaultDeleter<ns3::MeshWifiInterfaceMacPlugin> > [class] |
096af1414c37
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 |
module.add_class('SimpleRefCount', automatic_type_narrowing=True, template_parameters=['ns3::MeshWifiInterfaceMacPlugin', 'ns3::empty', 'ns3::DefaultDeleter<ns3::MeshWifiInterfaceMacPlugin>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount')) |
6384
bcc5f1110632
fix uan for python scan, add default constructor
Josh Pelkey <jpelkey@gatech.edu>
parents:
6375
diff
changeset
|
10 |
## mesh-information-element-vector.h: ns3::MeshInformationElementVector [class] |
bcc5f1110632
fix uan for python scan, add default constructor
Josh Pelkey <jpelkey@gatech.edu>
parents:
6375
diff
changeset
|
11 |
module.add_class('MeshInformationElementVector', parent=root_module['ns3::WifiInformationElementVector']) |
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
|
12 |
## mesh-l2-routing-protocol.h: ns3::MeshL2RoutingProtocol [class] |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
13 |
module.add_class('MeshL2RoutingProtocol', parent=root_module['ns3::Object']) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
14 |
## mesh-wifi-interface-mac-plugin.h: ns3::MeshWifiInterfaceMacPlugin [class] |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
15 |
module.add_class('MeshWifiInterfaceMacPlugin', parent=root_module['ns3::SimpleRefCount< ns3::MeshWifiInterfaceMacPlugin, ns3::empty, ns3::DefaultDeleter<ns3::MeshWifiInterfaceMacPlugin> >']) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
16 |
## mesh-point-device.h: ns3::MeshPointDevice [class] |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
17 |
module.add_class('MeshPointDevice', parent=root_module['ns3::NetDevice']) |
6675 | 18 |
## mesh-wifi-interface-mac.h: ns3::MeshWifiInterfaceMac [class] |
19 |
module.add_class('MeshWifiInterfaceMac', parent=root_module['ns3::RegularWifiMac']) |
|
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
|
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 |
## 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
|
22 |
|
096af1414c37
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 |
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
|
24 |
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
|
25 |
|
096af1414c37
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 |
|
6375 | 27 |
## Register a nested module for the namespace FatalImpl |
28 |
||
29 |
nested_module = module.add_cpp_namespace('FatalImpl') |
|
30 |
register_types_ns3_FatalImpl(nested_module) |
|
31 |
||
32 |
||
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
|
33 |
## 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
|
34 |
|
096af1414c37
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 |
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
|
36 |
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
|
37 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
38 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
39 |
## 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
|
40 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
41 |
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
|
42 |
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
|
43 |
|
096af1414c37
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 |
## 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
|
46 |
|
096af1414c37
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 |
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
|
48 |
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
|
49 |
|
096af1414c37
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 |
|
6718 | 51 |
## Register a nested module for the namespace dsdv |
52 |
||
53 |
nested_module = module.add_cpp_namespace('dsdv') |
|
54 |
register_types_ns3_dsdv(nested_module) |
|
55 |
||
56 |
||
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
|
57 |
## 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
|
58 |
|
096af1414c37
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 |
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
|
60 |
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
|
61 |
|
096af1414c37
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 |
|
096af1414c37
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 |
## 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
|
64 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
65 |
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
|
66 |
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
|
67 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
68 |
|
096af1414c37
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 |
## 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
|
70 |
|
096af1414c37
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 |
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
|
72 |
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
|
73 |
|
096af1414c37
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 |
|
096af1414c37
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 |
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
|
76 |
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
|
77 |
|
096af1414c37
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 |
|
6375 | 79 |
def register_types_ns3_FatalImpl(module): |
80 |
root_module = module.get_root() |
|
81 |
||
82 |
||
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
|
83 |
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
|
84 |
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
|
85 |
|
096af1414c37
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 |
|
096af1414c37
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 |
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
|
88 |
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
|
89 |
|
096af1414c37
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 |
|
096af1414c37
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 |
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
|
92 |
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
|
93 |
|
096af1414c37
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 |
|
6718 | 95 |
def register_types_ns3_dsdv(module): |
96 |
root_module = module.get_root() |
|
97 |
||
98 |
||
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
|
99 |
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
|
100 |
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
|
101 |
|
096af1414c37
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 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
103 |
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
|
104 |
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
|
105 |
|
096af1414c37
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 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
107 |
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
|
108 |
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
|
109 |
|
096af1414c37
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 |
|
096af1414c37
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 |
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
|
112 |
register_Ns3MeshWifiBeacon_methods(root_module, root_module['ns3::MeshWifiBeacon']) |
6384
bcc5f1110632
fix uan for python scan, add default constructor
Josh Pelkey <jpelkey@gatech.edu>
parents:
6375
diff
changeset
|
113 |
register_Ns3MeshInformationElementVector_methods(root_module, root_module['ns3::MeshInformationElementVector']) |
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
|
114 |
register_Ns3MeshL2RoutingProtocol_methods(root_module, root_module['ns3::MeshL2RoutingProtocol']) |
096af1414c37
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 |
register_Ns3MeshWifiInterfaceMacPlugin_methods(root_module, root_module['ns3::MeshWifiInterfaceMacPlugin']) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
116 |
register_Ns3MeshPointDevice_methods(root_module, root_module['ns3::MeshPointDevice']) |
6675 | 117 |
register_Ns3MeshWifiInterfaceMac_methods(root_module, root_module['ns3::MeshWifiInterfaceMac']) |
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
|
118 |
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
|
119 |
|
096af1414c37
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 |
def register_Ns3MeshWifiBeacon_methods(root_module, cls): |
096af1414c37
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 |
## mesh-wifi-beacon.h: ns3::MeshWifiBeacon::MeshWifiBeacon(ns3::MeshWifiBeacon const & arg0) [copy constructor] |
096af1414c37
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 |
cls.add_constructor([param('ns3::MeshWifiBeacon const &', 'arg0')]) |
096af1414c37
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 |
## mesh-wifi-beacon.h: ns3::MeshWifiBeacon::MeshWifiBeacon(ns3::Ssid ssid, ns3::SupportedRates rates, uint64_t us) [constructor] |
096af1414c37
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 |
cls.add_constructor([param('ns3::Ssid', 'ssid'), param('ns3::SupportedRates', 'rates'), param('uint64_t', 'us')]) |
096af1414c37
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 |
## mesh-wifi-beacon.h: void ns3::MeshWifiBeacon::AddInformationElement(ns3::Ptr<ns3::WifiInformationElement> ie) [member function] |
096af1414c37
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 |
cls.add_method('AddInformationElement', |
096af1414c37
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 |
'void', |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
128 |
[param('ns3::Ptr< ns3::WifiInformationElement >', 'ie')]) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
129 |
## mesh-wifi-beacon.h: ns3::MgtBeaconHeader ns3::MeshWifiBeacon::BeaconHeader() const [member function] |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
130 |
cls.add_method('BeaconHeader', |
096af1414c37
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 |
'ns3::MgtBeaconHeader', |
096af1414c37
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 |
[], |
096af1414c37
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 |
is_const=True) |
096af1414c37
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 |
## mesh-wifi-beacon.h: ns3::WifiMacHeader ns3::MeshWifiBeacon::CreateHeader(ns3::Mac48Address address, ns3::Mac48Address mpAddress) [member function] |
096af1414c37
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 |
cls.add_method('CreateHeader', |
096af1414c37
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 |
'ns3::WifiMacHeader', |
096af1414c37
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 |
[param('ns3::Mac48Address', 'address'), param('ns3::Mac48Address', 'mpAddress')]) |
096af1414c37
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 |
## mesh-wifi-beacon.h: ns3::Ptr<ns3::Packet> ns3::MeshWifiBeacon::CreatePacket() [member function] |
096af1414c37
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 |
cls.add_method('CreatePacket', |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
140 |
'ns3::Ptr< ns3::Packet >', |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
141 |
[]) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
142 |
## mesh-wifi-beacon.h: ns3::Time ns3::MeshWifiBeacon::GetBeaconInterval() const [member function] |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
143 |
cls.add_method('GetBeaconInterval', |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
144 |
'ns3::Time', |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
145 |
[], |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
146 |
is_const=True) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
147 |
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
|
148 |
|
6384
bcc5f1110632
fix uan for python scan, add default constructor
Josh Pelkey <jpelkey@gatech.edu>
parents:
6375
diff
changeset
|
149 |
def register_Ns3MeshInformationElementVector_methods(root_module, cls): |
bcc5f1110632
fix uan for python scan, add default constructor
Josh Pelkey <jpelkey@gatech.edu>
parents:
6375
diff
changeset
|
150 |
## mesh-information-element-vector.h: ns3::MeshInformationElementVector::MeshInformationElementVector() [constructor] |
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
|
151 |
cls.add_constructor([]) |
6384
bcc5f1110632
fix uan for python scan, add default constructor
Josh Pelkey <jpelkey@gatech.edu>
parents:
6375
diff
changeset
|
152 |
## mesh-information-element-vector.h: ns3::MeshInformationElementVector::MeshInformationElementVector(ns3::MeshInformationElementVector const & arg0) [copy constructor] |
bcc5f1110632
fix uan for python scan, add default constructor
Josh Pelkey <jpelkey@gatech.edu>
parents:
6375
diff
changeset
|
153 |
cls.add_constructor([param('ns3::MeshInformationElementVector const &', 'arg0')]) |
bcc5f1110632
fix uan for python scan, add default constructor
Josh Pelkey <jpelkey@gatech.edu>
parents:
6375
diff
changeset
|
154 |
## mesh-information-element-vector.h: uint32_t ns3::MeshInformationElementVector::DeserializeSingleIe(ns3::Buffer::Iterator start) [member function] |
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
|
155 |
cls.add_method('DeserializeSingleIe', |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
156 |
'uint32_t', |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
157 |
[param('ns3::Buffer::Iterator', 'start')], |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
158 |
is_virtual=True) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
159 |
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
|
160 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
161 |
def register_Ns3MeshL2RoutingProtocol_methods(root_module, cls): |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
162 |
## mesh-l2-routing-protocol.h: ns3::MeshL2RoutingProtocol::MeshL2RoutingProtocol() [constructor] |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
163 |
cls.add_constructor([]) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
164 |
## mesh-l2-routing-protocol.h: ns3::MeshL2RoutingProtocol::MeshL2RoutingProtocol(ns3::MeshL2RoutingProtocol const & arg0) [copy constructor] |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
165 |
cls.add_constructor([param('ns3::MeshL2RoutingProtocol const &', 'arg0')]) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
166 |
## mesh-l2-routing-protocol.h: ns3::Ptr<ns3::MeshPointDevice> ns3::MeshL2RoutingProtocol::GetMeshPoint() const [member function] |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
167 |
cls.add_method('GetMeshPoint', |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
168 |
'ns3::Ptr< ns3::MeshPointDevice >', |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
169 |
[], |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
170 |
is_const=True) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
171 |
## mesh-l2-routing-protocol.h: static ns3::TypeId ns3::MeshL2RoutingProtocol::GetTypeId() [member function] |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
172 |
cls.add_method('GetTypeId', |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
173 |
'ns3::TypeId', |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
174 |
[], |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
175 |
is_static=True) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
176 |
## mesh-l2-routing-protocol.h: bool ns3::MeshL2RoutingProtocol::RemoveRoutingStuff(uint32_t fromIface, ns3::Mac48Address const source, ns3::Mac48Address const destination, ns3::Ptr<ns3::Packet> packet, uint16_t & protocolType) [member function] |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
177 |
cls.add_method('RemoveRoutingStuff', |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
178 |
'bool', |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
179 |
[param('uint32_t', 'fromIface'), param('ns3::Mac48Address const', 'source'), param('ns3::Mac48Address const', 'destination'), param('ns3::Ptr< ns3::Packet >', 'packet'), param('uint16_t &', 'protocolType')], |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
180 |
is_pure_virtual=True, is_virtual=True) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
181 |
## mesh-l2-routing-protocol.h: bool ns3::MeshL2RoutingProtocol::RequestRoute(uint32_t sourceIface, ns3::Mac48Address const source, ns3::Mac48Address const destination, ns3::Ptr<ns3::Packet const> packet, uint16_t protocolType, ns3::Callback<void, bool, ns3::Ptr<ns3::Packet>, ns3::Mac48Address, ns3::Mac48Address, unsigned short, unsigned int, ns3::empty, ns3::empty, ns3::empty> routeReply) [member function] |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
182 |
cls.add_method('RequestRoute', |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
183 |
'bool', |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
184 |
[param('uint32_t', 'sourceIface'), param('ns3::Mac48Address const', 'source'), param('ns3::Mac48Address const', 'destination'), param('ns3::Ptr< ns3::Packet const >', 'packet'), param('uint16_t', 'protocolType'), param('ns3::Callback< void, bool, ns3::Ptr< ns3::Packet >, ns3::Mac48Address, ns3::Mac48Address, unsigned short, unsigned int, ns3::empty, ns3::empty, ns3::empty >', 'routeReply')], |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
185 |
is_pure_virtual=True, is_virtual=True) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
186 |
## mesh-l2-routing-protocol.h: void ns3::MeshL2RoutingProtocol::SetMeshPoint(ns3::Ptr<ns3::MeshPointDevice> mp) [member function] |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
187 |
cls.add_method('SetMeshPoint', |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
188 |
'void', |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
189 |
[param('ns3::Ptr< ns3::MeshPointDevice >', 'mp')]) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
190 |
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
|
191 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
192 |
def register_Ns3MeshWifiInterfaceMacPlugin_methods(root_module, cls): |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
193 |
## mesh-wifi-interface-mac-plugin.h: ns3::MeshWifiInterfaceMacPlugin::MeshWifiInterfaceMacPlugin() [constructor] |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
194 |
cls.add_constructor([]) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
195 |
## mesh-wifi-interface-mac-plugin.h: ns3::MeshWifiInterfaceMacPlugin::MeshWifiInterfaceMacPlugin(ns3::MeshWifiInterfaceMacPlugin const & arg0) [copy constructor] |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
196 |
cls.add_constructor([param('ns3::MeshWifiInterfaceMacPlugin const &', 'arg0')]) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
197 |
## mesh-wifi-interface-mac-plugin.h: bool ns3::MeshWifiInterfaceMacPlugin::Receive(ns3::Ptr<ns3::Packet> packet, ns3::WifiMacHeader const & header) [member function] |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
198 |
cls.add_method('Receive', |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
199 |
'bool', |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
200 |
[param('ns3::Ptr< ns3::Packet >', 'packet'), param('ns3::WifiMacHeader const &', 'header')], |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
201 |
is_pure_virtual=True, is_virtual=True) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
202 |
## mesh-wifi-interface-mac-plugin.h: void ns3::MeshWifiInterfaceMacPlugin::SetParent(ns3::Ptr<ns3::MeshWifiInterfaceMac> parent) [member function] |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
203 |
cls.add_method('SetParent', |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
204 |
'void', |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
205 |
[param('ns3::Ptr< ns3::MeshWifiInterfaceMac >', 'parent')], |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
206 |
is_pure_virtual=True, is_virtual=True) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
207 |
## mesh-wifi-interface-mac-plugin.h: void ns3::MeshWifiInterfaceMacPlugin::UpdateBeacon(ns3::MeshWifiBeacon & beacon) const [member function] |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
208 |
cls.add_method('UpdateBeacon', |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
209 |
'void', |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
210 |
[param('ns3::MeshWifiBeacon &', 'beacon')], |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
211 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
212 |
## mesh-wifi-interface-mac-plugin.h: bool ns3::MeshWifiInterfaceMacPlugin::UpdateOutcomingFrame(ns3::Ptr<ns3::Packet> packet, ns3::WifiMacHeader & header, ns3::Mac48Address from, ns3::Mac48Address to) [member function] |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
213 |
cls.add_method('UpdateOutcomingFrame', |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
214 |
'bool', |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
215 |
[param('ns3::Ptr< ns3::Packet >', 'packet'), param('ns3::WifiMacHeader &', 'header'), param('ns3::Mac48Address', 'from'), param('ns3::Mac48Address', 'to')], |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
216 |
is_pure_virtual=True, is_virtual=True) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
217 |
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
|
218 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
219 |
def register_Ns3MeshPointDevice_methods(root_module, cls): |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
220 |
## mesh-point-device.h: ns3::MeshPointDevice::MeshPointDevice(ns3::MeshPointDevice const & arg0) [copy constructor] |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
221 |
cls.add_constructor([param('ns3::MeshPointDevice const &', 'arg0')]) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
222 |
## mesh-point-device.h: ns3::MeshPointDevice::MeshPointDevice() [constructor] |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
223 |
cls.add_constructor([]) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
224 |
## mesh-point-device.h: void ns3::MeshPointDevice::AddInterface(ns3::Ptr<ns3::NetDevice> port) [member function] |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
225 |
cls.add_method('AddInterface', |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
226 |
'void', |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
227 |
[param('ns3::Ptr< ns3::NetDevice >', 'port')]) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
228 |
## mesh-point-device.h: void ns3::MeshPointDevice::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] |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
229 |
cls.add_method('AddLinkChangeCallback', |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
230 |
'void', |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
231 |
[param('ns3::Callback< void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'callback')], |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
232 |
is_virtual=True) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
233 |
## mesh-point-device.h: void ns3::MeshPointDevice::DoDispose() [member function] |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
234 |
cls.add_method('DoDispose', |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
235 |
'void', |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
236 |
[], |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
237 |
is_virtual=True) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
238 |
## mesh-point-device.h: ns3::Address ns3::MeshPointDevice::GetAddress() const [member function] |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
239 |
cls.add_method('GetAddress', |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
240 |
'ns3::Address', |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
241 |
[], |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
242 |
is_const=True, is_virtual=True) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
243 |
## mesh-point-device.h: ns3::Address ns3::MeshPointDevice::GetBroadcast() const [member function] |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
244 |
cls.add_method('GetBroadcast', |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
245 |
'ns3::Address', |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
246 |
[], |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
247 |
is_const=True, is_virtual=True) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
248 |
## mesh-point-device.h: ns3::Ptr<ns3::Channel> ns3::MeshPointDevice::GetChannel() const [member function] |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
249 |
cls.add_method('GetChannel', |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
250 |
'ns3::Ptr< ns3::Channel >', |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
251 |
[], |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
252 |
is_const=True, is_virtual=True) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
253 |
## mesh-point-device.h: uint32_t ns3::MeshPointDevice::GetIfIndex() const [member function] |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
254 |
cls.add_method('GetIfIndex', |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
255 |
'uint32_t', |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
256 |
[], |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
257 |
is_const=True, is_virtual=True) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
258 |
## mesh-point-device.h: ns3::Ptr<ns3::NetDevice> ns3::MeshPointDevice::GetInterface(uint32_t id) const [member function] |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
259 |
cls.add_method('GetInterface', |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
260 |
'ns3::Ptr< ns3::NetDevice >', |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
261 |
[param('uint32_t', 'id')], |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
262 |
is_const=True) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
263 |
## mesh-point-device.h: std::vector<ns3::Ptr<ns3::NetDevice>, std::allocator<ns3::Ptr<ns3::NetDevice> > > ns3::MeshPointDevice::GetInterfaces() const [member function] |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
264 |
cls.add_method('GetInterfaces', |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
265 |
'std::vector< ns3::Ptr< ns3::NetDevice > >', |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
266 |
[], |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
267 |
is_const=True) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
268 |
## mesh-point-device.h: uint16_t ns3::MeshPointDevice::GetMtu() const [member function] |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
269 |
cls.add_method('GetMtu', |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
270 |
'uint16_t', |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
271 |
[], |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
272 |
is_const=True, is_virtual=True) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
273 |
## mesh-point-device.h: ns3::Address ns3::MeshPointDevice::GetMulticast(ns3::Ipv4Address multicastGroup) const [member function] |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
274 |
cls.add_method('GetMulticast', |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
275 |
'ns3::Address', |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
276 |
[param('ns3::Ipv4Address', 'multicastGroup')], |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
277 |
is_const=True, is_virtual=True) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
278 |
## mesh-point-device.h: ns3::Address ns3::MeshPointDevice::GetMulticast(ns3::Ipv6Address addr) const [member function] |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
279 |
cls.add_method('GetMulticast', |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
280 |
'ns3::Address', |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
281 |
[param('ns3::Ipv6Address', 'addr')], |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
282 |
is_const=True, is_virtual=True) |
096af1414c37
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 |
## mesh-point-device.h: uint32_t ns3::MeshPointDevice::GetNInterfaces() const [member function] |
096af1414c37
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 |
cls.add_method('GetNInterfaces', |
096af1414c37
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 |
'uint32_t', |
096af1414c37
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 |
[], |
096af1414c37
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 |
is_const=True) |
096af1414c37
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 |
## mesh-point-device.h: ns3::Ptr<ns3::Node> ns3::MeshPointDevice::GetNode() const [member function] |
096af1414c37
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 |
cls.add_method('GetNode', |
096af1414c37
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 |
'ns3::Ptr< ns3::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
|
291 |
[], |
096af1414c37
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 |
is_const=True, is_virtual=True) |
096af1414c37
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 |
## mesh-point-device.h: ns3::Ptr<ns3::MeshL2RoutingProtocol> ns3::MeshPointDevice::GetRoutingProtocol() const [member function] |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
294 |
cls.add_method('GetRoutingProtocol', |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
295 |
'ns3::Ptr< ns3::MeshL2RoutingProtocol >', |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
296 |
[], |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
297 |
is_const=True) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
298 |
## mesh-point-device.h: static ns3::TypeId ns3::MeshPointDevice::GetTypeId() [member function] |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
299 |
cls.add_method('GetTypeId', |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
300 |
'ns3::TypeId', |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
301 |
[], |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
302 |
is_static=True) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
303 |
## mesh-point-device.h: bool ns3::MeshPointDevice::IsBridge() const [member function] |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
304 |
cls.add_method('IsBridge', |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
305 |
'bool', |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
306 |
[], |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
307 |
is_const=True, is_virtual=True) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
308 |
## mesh-point-device.h: bool ns3::MeshPointDevice::IsBroadcast() const [member function] |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
309 |
cls.add_method('IsBroadcast', |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
310 |
'bool', |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
311 |
[], |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
312 |
is_const=True, is_virtual=True) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
313 |
## mesh-point-device.h: bool ns3::MeshPointDevice::IsLinkUp() const [member function] |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
314 |
cls.add_method('IsLinkUp', |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
315 |
'bool', |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
316 |
[], |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
317 |
is_const=True, is_virtual=True) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
318 |
## mesh-point-device.h: bool ns3::MeshPointDevice::IsMulticast() const [member function] |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
319 |
cls.add_method('IsMulticast', |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
320 |
'bool', |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
321 |
[], |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
322 |
is_const=True, is_virtual=True) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
323 |
## mesh-point-device.h: bool ns3::MeshPointDevice::IsPointToPoint() const [member function] |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
324 |
cls.add_method('IsPointToPoint', |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
325 |
'bool', |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
326 |
[], |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
327 |
is_const=True, is_virtual=True) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
328 |
## mesh-point-device.h: bool ns3::MeshPointDevice::NeedsArp() const [member function] |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
329 |
cls.add_method('NeedsArp', |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
330 |
'bool', |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
331 |
[], |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
332 |
is_const=True, is_virtual=True) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
333 |
## mesh-point-device.h: void ns3::MeshPointDevice::Report(std::ostream & os) const [member function] |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
334 |
cls.add_method('Report', |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
335 |
'void', |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
336 |
[param('std::ostream &', 'os')], |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
337 |
is_const=True) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
338 |
## mesh-point-device.h: void ns3::MeshPointDevice::ResetStats() [member function] |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
339 |
cls.add_method('ResetStats', |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
340 |
'void', |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
341 |
[]) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
342 |
## mesh-point-device.h: bool ns3::MeshPointDevice::Send(ns3::Ptr<ns3::Packet> packet, ns3::Address const & dest, uint16_t protocolNumber) [member function] |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
343 |
cls.add_method('Send', |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
344 |
'bool', |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
345 |
[param('ns3::Ptr< ns3::Packet >', 'packet'), param('ns3::Address const &', 'dest'), param('uint16_t', 'protocolNumber')], |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
346 |
is_virtual=True) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
347 |
## mesh-point-device.h: bool ns3::MeshPointDevice::SendFrom(ns3::Ptr<ns3::Packet> packet, ns3::Address const & source, ns3::Address const & dest, uint16_t protocolNumber) [member function] |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
348 |
cls.add_method('SendFrom', |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
349 |
'bool', |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
350 |
[param('ns3::Ptr< ns3::Packet >', 'packet'), param('ns3::Address const &', 'source'), param('ns3::Address const &', 'dest'), param('uint16_t', 'protocolNumber')], |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
351 |
is_virtual=True) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
352 |
## mesh-point-device.h: void ns3::MeshPointDevice::SetAddress(ns3::Address a) [member function] |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
353 |
cls.add_method('SetAddress', |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
354 |
'void', |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
355 |
[param('ns3::Address', 'a')], |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
356 |
is_virtual=True) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
357 |
## mesh-point-device.h: void ns3::MeshPointDevice::SetIfIndex(uint32_t const index) [member function] |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
358 |
cls.add_method('SetIfIndex', |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
359 |
'void', |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
360 |
[param('uint32_t const', 'index')], |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
361 |
is_virtual=True) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
362 |
## mesh-point-device.h: bool ns3::MeshPointDevice::SetMtu(uint16_t const mtu) [member function] |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
363 |
cls.add_method('SetMtu', |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
364 |
'bool', |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
365 |
[param('uint16_t const', 'mtu')], |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
366 |
is_virtual=True) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
367 |
## mesh-point-device.h: void ns3::MeshPointDevice::SetNode(ns3::Ptr<ns3::Node> node) [member function] |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
368 |
cls.add_method('SetNode', |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
369 |
'void', |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
370 |
[param('ns3::Ptr< ns3::Node >', '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
|
371 |
is_virtual=True) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
372 |
## mesh-point-device.h: void ns3::MeshPointDevice::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] |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
373 |
cls.add_method('SetPromiscReceiveCallback', |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
374 |
'void', |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
375 |
[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')], |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
376 |
is_virtual=True) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
377 |
## mesh-point-device.h: void ns3::MeshPointDevice::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] |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
378 |
cls.add_method('SetReceiveCallback', |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
379 |
'void', |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
380 |
[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')], |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
381 |
is_virtual=True) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
382 |
## mesh-point-device.h: void ns3::MeshPointDevice::SetRoutingProtocol(ns3::Ptr<ns3::MeshL2RoutingProtocol> protocol) [member function] |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
383 |
cls.add_method('SetRoutingProtocol', |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
384 |
'void', |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
385 |
[param('ns3::Ptr< ns3::MeshL2RoutingProtocol >', 'protocol')]) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
386 |
## mesh-point-device.h: bool ns3::MeshPointDevice::SupportsSendFrom() const [member function] |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
387 |
cls.add_method('SupportsSendFrom', |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
388 |
'bool', |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
389 |
[], |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
390 |
is_const=True, is_virtual=True) |
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
391 |
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
|
392 |
|
6675 | 393 |
def register_Ns3MeshWifiInterfaceMac_methods(root_module, cls): |
394 |
## mesh-wifi-interface-mac.h: ns3::MeshWifiInterfaceMac::MeshWifiInterfaceMac(ns3::MeshWifiInterfaceMac const & arg0) [copy constructor] |
|
395 |
cls.add_constructor([param('ns3::MeshWifiInterfaceMac const &', 'arg0')]) |
|
396 |
## mesh-wifi-interface-mac.h: ns3::MeshWifiInterfaceMac::MeshWifiInterfaceMac() [constructor] |
|
397 |
cls.add_constructor([]) |
|
398 |
## mesh-wifi-interface-mac.h: bool ns3::MeshWifiInterfaceMac::CheckSupportedRates(ns3::SupportedRates rates) const [member function] |
|
399 |
cls.add_method('CheckSupportedRates', |
|
400 |
'bool', |
|
401 |
[param('ns3::SupportedRates', 'rates')], |
|
402 |
is_const=True) |
|
403 |
## mesh-wifi-interface-mac.h: void ns3::MeshWifiInterfaceMac::Enqueue(ns3::Ptr<ns3::Packet const> packet, ns3::Mac48Address to, ns3::Mac48Address from) [member function] |
|
404 |
cls.add_method('Enqueue', |
|
405 |
'void', |
|
406 |
[param('ns3::Ptr< ns3::Packet const >', 'packet'), param('ns3::Mac48Address', 'to'), param('ns3::Mac48Address', 'from')], |
|
407 |
is_virtual=True) |
|
408 |
## mesh-wifi-interface-mac.h: void ns3::MeshWifiInterfaceMac::Enqueue(ns3::Ptr<ns3::Packet const> packet, ns3::Mac48Address to) [member function] |
|
409 |
cls.add_method('Enqueue', |
|
410 |
'void', |
|
411 |
[param('ns3::Ptr< ns3::Packet const >', 'packet'), param('ns3::Mac48Address', 'to')], |
|
412 |
is_virtual=True) |
|
413 |
## mesh-wifi-interface-mac.h: void ns3::MeshWifiInterfaceMac::FinishConfigureStandard(ns3::WifiPhyStandard standard) [member function] |
|
414 |
cls.add_method('FinishConfigureStandard', |
|
415 |
'void', |
|
416 |
[param('ns3::WifiPhyStandard', 'standard')], |
|
417 |
is_virtual=True) |
|
418 |
## mesh-wifi-interface-mac.h: ns3::Time ns3::MeshWifiInterfaceMac::GetBeaconInterval() const [member function] |
|
419 |
cls.add_method('GetBeaconInterval', |
|
420 |
'ns3::Time', |
|
421 |
[], |
|
422 |
is_const=True) |
|
423 |
## mesh-wifi-interface-mac.h: uint16_t ns3::MeshWifiInterfaceMac::GetFrequencyChannel() const [member function] |
|
424 |
cls.add_method('GetFrequencyChannel', |
|
425 |
'uint16_t', |
|
426 |
[], |
|
427 |
is_const=True) |
|
428 |
## mesh-wifi-interface-mac.h: uint32_t ns3::MeshWifiInterfaceMac::GetLinkMetric(ns3::Mac48Address peerAddress) [member function] |
|
429 |
cls.add_method('GetLinkMetric', |
|
430 |
'uint32_t', |
|
431 |
[param('ns3::Mac48Address', 'peerAddress')]) |
|
432 |
## mesh-wifi-interface-mac.h: ns3::Mac48Address ns3::MeshWifiInterfaceMac::GetMeshPointAddress() const [member function] |
|
433 |
cls.add_method('GetMeshPointAddress', |
|
434 |
'ns3::Mac48Address', |
|
435 |
[], |
|
436 |
is_const=True) |
|
437 |
## mesh-wifi-interface-mac.h: ns3::WifiPhyStandard ns3::MeshWifiInterfaceMac::GetPhyStandard() const [member function] |
|
438 |
cls.add_method('GetPhyStandard', |
|
439 |
'ns3::WifiPhyStandard', |
|
440 |
[], |
|
441 |
is_const=True) |
|
442 |
## mesh-wifi-interface-mac.h: ns3::SupportedRates ns3::MeshWifiInterfaceMac::GetSupportedRates() const [member function] |
|
443 |
cls.add_method('GetSupportedRates', |
|
444 |
'ns3::SupportedRates', |
|
445 |
[], |
|
446 |
is_const=True) |
|
447 |
## mesh-wifi-interface-mac.h: ns3::Time ns3::MeshWifiInterfaceMac::GetTbtt() const [member function] |
|
448 |
cls.add_method('GetTbtt', |
|
449 |
'ns3::Time', |
|
450 |
[], |
|
451 |
is_const=True) |
|
452 |
## mesh-wifi-interface-mac.h: static ns3::TypeId ns3::MeshWifiInterfaceMac::GetTypeId() [member function] |
|
453 |
cls.add_method('GetTypeId', |
|
454 |
'ns3::TypeId', |
|
455 |
[], |
|
456 |
is_static=True) |
|
457 |
## mesh-wifi-interface-mac.h: void ns3::MeshWifiInterfaceMac::InstallPlugin(ns3::Ptr<ns3::MeshWifiInterfaceMacPlugin> plugin) [member function] |
|
458 |
cls.add_method('InstallPlugin', |
|
459 |
'void', |
|
460 |
[param('ns3::Ptr< ns3::MeshWifiInterfaceMacPlugin >', 'plugin')]) |
|
461 |
## mesh-wifi-interface-mac.h: void ns3::MeshWifiInterfaceMac::Report(std::ostream & arg0) const [member function] |
|
462 |
cls.add_method('Report', |
|
463 |
'void', |
|
464 |
[param('std::ostream &', 'arg0')], |
|
465 |
is_const=True) |
|
466 |
## mesh-wifi-interface-mac.h: void ns3::MeshWifiInterfaceMac::ResetStats() [member function] |
|
467 |
cls.add_method('ResetStats', |
|
468 |
'void', |
|
469 |
[]) |
|
470 |
## mesh-wifi-interface-mac.h: void ns3::MeshWifiInterfaceMac::SendManagementFrame(ns3::Ptr<ns3::Packet> frame, ns3::WifiMacHeader const & hdr) [member function] |
|
471 |
cls.add_method('SendManagementFrame', |
|
472 |
'void', |
|
473 |
[param('ns3::Ptr< ns3::Packet >', 'frame'), param('ns3::WifiMacHeader const &', 'hdr')]) |
|
474 |
## mesh-wifi-interface-mac.h: void ns3::MeshWifiInterfaceMac::SetBeaconGeneration(bool enable) [member function] |
|
475 |
cls.add_method('SetBeaconGeneration', |
|
476 |
'void', |
|
477 |
[param('bool', 'enable')]) |
|
478 |
## mesh-wifi-interface-mac.h: void ns3::MeshWifiInterfaceMac::SetBeaconInterval(ns3::Time interval) [member function] |
|
479 |
cls.add_method('SetBeaconInterval', |
|
480 |
'void', |
|
481 |
[param('ns3::Time', 'interval')]) |
|
482 |
## mesh-wifi-interface-mac.h: void ns3::MeshWifiInterfaceMac::SetLinkMetricCallback(ns3::Callback<unsigned int, ns3::Mac48Address, ns3::Ptr<ns3::MeshWifiInterfaceMac>, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> cb) [member function] |
|
483 |
cls.add_method('SetLinkMetricCallback', |
|
484 |
'void', |
|
485 |
[param('ns3::Callback< unsigned int, ns3::Mac48Address, ns3::Ptr< ns3::MeshWifiInterfaceMac >, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'cb')]) |
|
486 |
## mesh-wifi-interface-mac.h: void ns3::MeshWifiInterfaceMac::SetLinkUpCallback(ns3::Callback<void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> linkUp) [member function] |
|
487 |
cls.add_method('SetLinkUpCallback', |
|
488 |
'void', |
|
489 |
[param('ns3::Callback< void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'linkUp')], |
|
490 |
is_virtual=True) |
|
491 |
## mesh-wifi-interface-mac.h: void ns3::MeshWifiInterfaceMac::SetMeshPointAddress(ns3::Mac48Address arg0) [member function] |
|
492 |
cls.add_method('SetMeshPointAddress', |
|
493 |
'void', |
|
494 |
[param('ns3::Mac48Address', 'arg0')]) |
|
495 |
## mesh-wifi-interface-mac.h: void ns3::MeshWifiInterfaceMac::SetRandomStartDelay(ns3::Time interval) [member function] |
|
496 |
cls.add_method('SetRandomStartDelay', |
|
497 |
'void', |
|
498 |
[param('ns3::Time', 'interval')]) |
|
499 |
## mesh-wifi-interface-mac.h: void ns3::MeshWifiInterfaceMac::ShiftTbtt(ns3::Time shift) [member function] |
|
500 |
cls.add_method('ShiftTbtt', |
|
501 |
'void', |
|
502 |
[param('ns3::Time', 'shift')]) |
|
503 |
## mesh-wifi-interface-mac.h: bool ns3::MeshWifiInterfaceMac::SupportsSendFrom() const [member function] |
|
504 |
cls.add_method('SupportsSendFrom', |
|
505 |
'bool', |
|
506 |
[], |
|
507 |
is_const=True, is_virtual=True) |
|
508 |
## mesh-wifi-interface-mac.h: void ns3::MeshWifiInterfaceMac::SwitchFrequencyChannel(uint16_t new_id) [member function] |
|
509 |
cls.add_method('SwitchFrequencyChannel', |
|
510 |
'void', |
|
511 |
[param('uint16_t', 'new_id')]) |
|
512 |
## mesh-wifi-interface-mac.h: void ns3::MeshWifiInterfaceMac::DoDispose() [member function] |
|
513 |
cls.add_method('DoDispose', |
|
514 |
'void', |
|
515 |
[], |
|
516 |
visibility='private', is_virtual=True) |
|
517 |
## mesh-wifi-interface-mac.h: void ns3::MeshWifiInterfaceMac::Receive(ns3::Ptr<ns3::Packet> packet, ns3::WifiMacHeader const * hdr) [member function] |
|
518 |
cls.add_method('Receive', |
|
519 |
'void', |
|
520 |
[param('ns3::Ptr< ns3::Packet >', 'packet'), param('ns3::WifiMacHeader const *', 'hdr')], |
|
521 |
visibility='private', is_virtual=True) |
|
522 |
return |
|
523 |
||
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
|
524 |
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
|
525 |
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
|
526 |
register_functions_ns3_Config(module.get_submodule('Config'), root_module) |
6375 | 527 |
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
|
528 |
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
|
529 |
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
|
530 |
register_functions_ns3_dot11s(module.get_submodule('dot11s'), root_module) |
6718 | 531 |
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
|
532 |
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
|
533 |
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
|
534 |
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
|
535 |
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
|
536 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
537 |
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
|
538 |
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
|
539 |
|
6375 | 540 |
def register_functions_ns3_FatalImpl(module, root_module): |
541 |
return |
|
542 |
||
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
|
543 |
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
|
544 |
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
|
545 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
546 |
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
|
547 |
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
|
548 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
549 |
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
|
550 |
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
|
551 |
|
6718 | 552 |
def register_functions_ns3_dsdv(module, root_module): |
553 |
return |
|
554 |
||
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
|
555 |
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
|
556 |
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
|
557 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
558 |
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
|
559 |
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
|
560 |
|
096af1414c37
tell pybindgen not to disable inheritance on classes that end with Helper, and rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
6028
diff
changeset
|
561 |
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
|
562 |
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
|
563 |