gjc@3468
|
1 |
from pybindgen import Module, FileCodeSink, param, retval, cppclass
|
gjc@3408
|
2 |
|
gjc@3408
|
3 |
def register_types(module):
|
gjc@3408
|
4 |
root_module = module.get_root()
|
gjc@3408
|
5 |
|
gjc@3731
|
6 |
## application-container.h: ns3::ApplicationContainer [class]
|
gjc@3731
|
7 |
module.add_class('ApplicationContainer')
|
gjc@3731
|
8 |
## bridge-helper.h: ns3::BridgeHelper [class]
|
gjc@3731
|
9 |
module.add_class('BridgeHelper', allow_subclassing=False)
|
gjc@3731
|
10 |
## csma-helper.h: ns3::CsmaHelper [class]
|
gjc@3731
|
11 |
module.add_class('CsmaHelper', allow_subclassing=False)
|
vincent@3842
|
12 |
## emu-helper.h: ns3::EmuHelper [class]
|
vincent@3842
|
13 |
module.add_class('EmuHelper', allow_subclassing=False)
|
gjc@3731
|
14 |
## internet-stack-helper.h: ns3::InternetStackHelper [class]
|
gjc@3731
|
15 |
module.add_class('InternetStackHelper', allow_subclassing=False)
|
gjc@3731
|
16 |
## ipv4-address-helper.h: ns3::Ipv4AddressHelper [class]
|
gjc@3731
|
17 |
module.add_class('Ipv4AddressHelper', allow_subclassing=False)
|
gjc@3731
|
18 |
## ipv4-interface-container.h: ns3::Ipv4InterfaceContainer [class]
|
gjc@3731
|
19 |
module.add_class('Ipv4InterfaceContainer')
|
gjc@3408
|
20 |
## mobility-helper.h: ns3::MobilityHelper [class]
|
gjc@3408
|
21 |
module.add_class('MobilityHelper', allow_subclassing=False)
|
gjc@3731
|
22 |
## net-device-container.h: ns3::NetDeviceContainer [class]
|
gjc@3731
|
23 |
module.add_class('NetDeviceContainer')
|
gjc@3408
|
24 |
## node-container.h: ns3::NodeContainer [class]
|
gjc@3408
|
25 |
module.add_class('NodeContainer')
|
gjc@3731
|
26 |
## ns2-mobility-helper.h: ns3::Ns2MobilityHelper [class]
|
gjc@3731
|
27 |
module.add_class('Ns2MobilityHelper', allow_subclassing=False)
|
gjc@3731
|
28 |
## olsr-helper.h: ns3::OlsrHelper [class]
|
gjc@3731
|
29 |
module.add_class('OlsrHelper', allow_subclassing=False)
|
gjc@3731
|
30 |
## on-off-helper.h: ns3::OnOffHelper [class]
|
gjc@3731
|
31 |
module.add_class('OnOffHelper', allow_subclassing=False)
|
gjc@3731
|
32 |
## packet-sink-helper.h: ns3::PacketSinkHelper [class]
|
gjc@3731
|
33 |
module.add_class('PacketSinkHelper', allow_subclassing=False)
|
gjc@3731
|
34 |
## packet-socket-helper.h: ns3::PacketSocketHelper [class]
|
gjc@3731
|
35 |
module.add_class('PacketSocketHelper', allow_subclassing=False)
|
gjc@3408
|
36 |
## point-to-point-helper.h: ns3::PointToPointHelper [class]
|
gjc@3408
|
37 |
module.add_class('PointToPointHelper', allow_subclassing=False)
|
gjc@3731
|
38 |
## static-multicast-route-helper.h: ns3::StaticMulticastRouteHelper [class]
|
gjc@3731
|
39 |
module.add_class('StaticMulticastRouteHelper', allow_subclassing=False)
|
gjc@3731
|
40 |
## udp-echo-helper.h: ns3::UdpEchoClientHelper [class]
|
gjc@3731
|
41 |
module.add_class('UdpEchoClientHelper', allow_subclassing=False)
|
gjc@3408
|
42 |
## udp-echo-helper.h: ns3::UdpEchoServerHelper [class]
|
gjc@3408
|
43 |
module.add_class('UdpEchoServerHelper', allow_subclassing=False)
|
vincent@3842
|
44 |
## v4ping-helper.h: ns3::V4PingHelper [class]
|
vincent@3842
|
45 |
module.add_class('V4PingHelper', allow_subclassing=False)
|
gjc@3408
|
46 |
## wifi-helper.h: ns3::WifiHelper [class]
|
gjc@3408
|
47 |
module.add_class('WifiHelper', allow_subclassing=False)
|
gjc@3408
|
48 |
|
gjc@3408
|
49 |
## Register a nested module for the namespace internal
|
gjc@3408
|
50 |
|
gjc@3408
|
51 |
nested_module = module.add_cpp_namespace('internal')
|
gjc@3408
|
52 |
register_types_ns3_internal(nested_module)
|
gjc@3408
|
53 |
|
gjc@3408
|
54 |
|
gjc@3408
|
55 |
## Register a nested module for the namespace TimeStepPrecision
|
gjc@3408
|
56 |
|
gjc@3408
|
57 |
nested_module = module.add_cpp_namespace('TimeStepPrecision')
|
gjc@3408
|
58 |
register_types_ns3_TimeStepPrecision(nested_module)
|
gjc@3408
|
59 |
|
gjc@3408
|
60 |
|
gjc@3408
|
61 |
## Register a nested module for the namespace Config
|
gjc@3408
|
62 |
|
gjc@3408
|
63 |
nested_module = module.add_cpp_namespace('Config')
|
gjc@3408
|
64 |
register_types_ns3_Config(nested_module)
|
gjc@3408
|
65 |
|
gjc@3408
|
66 |
|
gjc@3408
|
67 |
## Register a nested module for the namespace olsr
|
gjc@3408
|
68 |
|
gjc@3408
|
69 |
nested_module = module.add_cpp_namespace('olsr')
|
gjc@3408
|
70 |
register_types_ns3_olsr(nested_module)
|
gjc@3408
|
71 |
|
gjc@3408
|
72 |
|
gjc@3408
|
73 |
def register_types_ns3_internal(module):
|
gjc@3408
|
74 |
root_module = module.get_root()
|
gjc@3408
|
75 |
|
gjc@3408
|
76 |
|
gjc@3408
|
77 |
def register_types_ns3_TimeStepPrecision(module):
|
gjc@3408
|
78 |
root_module = module.get_root()
|
gjc@3408
|
79 |
|
gjc@3408
|
80 |
|
gjc@3408
|
81 |
def register_types_ns3_Config(module):
|
gjc@3408
|
82 |
root_module = module.get_root()
|
gjc@3408
|
83 |
|
gjc@3408
|
84 |
|
gjc@3408
|
85 |
def register_types_ns3_olsr(module):
|
gjc@3408
|
86 |
root_module = module.get_root()
|
gjc@3408
|
87 |
|
gjc@3408
|
88 |
|
gjc@3408
|
89 |
def register_methods(root_module):
|
gjc@3731
|
90 |
register_Ns3ApplicationContainer_methods(root_module, root_module['ns3::ApplicationContainer'])
|
gjc@3731
|
91 |
register_Ns3BridgeHelper_methods(root_module, root_module['ns3::BridgeHelper'])
|
gjc@3731
|
92 |
register_Ns3CsmaHelper_methods(root_module, root_module['ns3::CsmaHelper'])
|
vincent@3842
|
93 |
register_Ns3EmuHelper_methods(root_module, root_module['ns3::EmuHelper'])
|
gjc@3731
|
94 |
register_Ns3InternetStackHelper_methods(root_module, root_module['ns3::InternetStackHelper'])
|
gjc@3731
|
95 |
register_Ns3Ipv4AddressHelper_methods(root_module, root_module['ns3::Ipv4AddressHelper'])
|
gjc@3731
|
96 |
register_Ns3Ipv4InterfaceContainer_methods(root_module, root_module['ns3::Ipv4InterfaceContainer'])
|
gjc@3408
|
97 |
register_Ns3MobilityHelper_methods(root_module, root_module['ns3::MobilityHelper'])
|
gjc@3731
|
98 |
register_Ns3NetDeviceContainer_methods(root_module, root_module['ns3::NetDeviceContainer'])
|
gjc@3408
|
99 |
register_Ns3NodeContainer_methods(root_module, root_module['ns3::NodeContainer'])
|
gjc@3731
|
100 |
register_Ns3Ns2MobilityHelper_methods(root_module, root_module['ns3::Ns2MobilityHelper'])
|
gjc@3731
|
101 |
register_Ns3OlsrHelper_methods(root_module, root_module['ns3::OlsrHelper'])
|
gjc@3731
|
102 |
register_Ns3OnOffHelper_methods(root_module, root_module['ns3::OnOffHelper'])
|
gjc@3731
|
103 |
register_Ns3PacketSinkHelper_methods(root_module, root_module['ns3::PacketSinkHelper'])
|
gjc@3731
|
104 |
register_Ns3PacketSocketHelper_methods(root_module, root_module['ns3::PacketSocketHelper'])
|
gjc@3408
|
105 |
register_Ns3PointToPointHelper_methods(root_module, root_module['ns3::PointToPointHelper'])
|
gjc@3731
|
106 |
register_Ns3StaticMulticastRouteHelper_methods(root_module, root_module['ns3::StaticMulticastRouteHelper'])
|
gjc@3731
|
107 |
register_Ns3UdpEchoClientHelper_methods(root_module, root_module['ns3::UdpEchoClientHelper'])
|
gjc@3408
|
108 |
register_Ns3UdpEchoServerHelper_methods(root_module, root_module['ns3::UdpEchoServerHelper'])
|
vincent@3842
|
109 |
register_Ns3V4PingHelper_methods(root_module, root_module['ns3::V4PingHelper'])
|
gjc@3408
|
110 |
register_Ns3WifiHelper_methods(root_module, root_module['ns3::WifiHelper'])
|
gjc@3731
|
111 |
return
|
gjc@3731
|
112 |
|
gjc@3731
|
113 |
def register_Ns3ApplicationContainer_methods(root_module, cls):
|
gjc@3731
|
114 |
## application-container.h: ns3::ApplicationContainer::ApplicationContainer(ns3::ApplicationContainer const & arg0) [copy constructor]
|
gjc@3731
|
115 |
cls.add_constructor([param('ns3::ApplicationContainer const &', 'arg0')])
|
gjc@3731
|
116 |
## application-container.h: ns3::ApplicationContainer::ApplicationContainer() [constructor]
|
gjc@3731
|
117 |
cls.add_constructor([])
|
gjc@3731
|
118 |
## application-container.h: __gnu_cxx::__normal_iterator<const ns3::Ptr<ns3::Application>*,std::vector<ns3::Ptr<ns3::Application>, std::allocator<ns3::Ptr<ns3::Application> > > > ns3::ApplicationContainer::Begin() const [member function]
|
gjc@3731
|
119 |
cls.add_method('Begin',
|
gjc@3731
|
120 |
'__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Application > const, std::vector< ns3::Ptr< ns3::Application > > >',
|
gjc@3731
|
121 |
[],
|
gjc@3731
|
122 |
is_const=True)
|
gjc@3731
|
123 |
## application-container.h: __gnu_cxx::__normal_iterator<const ns3::Ptr<ns3::Application>*,std::vector<ns3::Ptr<ns3::Application>, std::allocator<ns3::Ptr<ns3::Application> > > > ns3::ApplicationContainer::End() const [member function]
|
gjc@3731
|
124 |
cls.add_method('End',
|
gjc@3731
|
125 |
'__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Application > const, std::vector< ns3::Ptr< ns3::Application > > >',
|
gjc@3731
|
126 |
[],
|
gjc@3731
|
127 |
is_const=True)
|
gjc@3731
|
128 |
## application-container.h: uint32_t ns3::ApplicationContainer::GetN() const [member function]
|
gjc@3731
|
129 |
cls.add_method('GetN',
|
gjc@3731
|
130 |
'uint32_t',
|
gjc@3731
|
131 |
[],
|
gjc@3731
|
132 |
is_const=True)
|
gjc@3731
|
133 |
## application-container.h: ns3::Ptr<ns3::Application> ns3::ApplicationContainer::Get(uint32_t i) const [member function]
|
gjc@3731
|
134 |
cls.add_method('Get',
|
gjc@3731
|
135 |
'ns3::Ptr< ns3::Application >',
|
gjc@3731
|
136 |
[param('uint32_t', 'i')],
|
gjc@3731
|
137 |
is_const=True)
|
gjc@3731
|
138 |
## application-container.h: void ns3::ApplicationContainer::Add(ns3::ApplicationContainer other) [member function]
|
gjc@3731
|
139 |
cls.add_method('Add',
|
gjc@3731
|
140 |
'void',
|
gjc@3731
|
141 |
[param('ns3::ApplicationContainer', 'other')])
|
gjc@3731
|
142 |
## application-container.h: void ns3::ApplicationContainer::Add(ns3::Ptr<ns3::Application> application) [member function]
|
gjc@3731
|
143 |
cls.add_method('Add',
|
gjc@3731
|
144 |
'void',
|
gjc@3731
|
145 |
[param('ns3::Ptr< ns3::Application >', 'application')])
|
gjc@3731
|
146 |
## application-container.h: void ns3::ApplicationContainer::Start(ns3::Time start) [member function]
|
gjc@3731
|
147 |
cls.add_method('Start',
|
gjc@3731
|
148 |
'void',
|
gjc@3731
|
149 |
[param('ns3::Time', 'start')])
|
gjc@3731
|
150 |
## application-container.h: void ns3::ApplicationContainer::Stop(ns3::Time stop) [member function]
|
gjc@3731
|
151 |
cls.add_method('Stop',
|
gjc@3731
|
152 |
'void',
|
gjc@3731
|
153 |
[param('ns3::Time', 'stop')])
|
gjc@3731
|
154 |
return
|
gjc@3731
|
155 |
|
gjc@3731
|
156 |
def register_Ns3BridgeHelper_methods(root_module, cls):
|
gjc@3731
|
157 |
## bridge-helper.h: ns3::BridgeHelper::BridgeHelper(ns3::BridgeHelper const & arg0) [copy constructor]
|
gjc@3731
|
158 |
cls.add_constructor([param('ns3::BridgeHelper const &', 'arg0')])
|
gjc@3731
|
159 |
## bridge-helper.h: ns3::BridgeHelper::BridgeHelper() [constructor]
|
gjc@3731
|
160 |
cls.add_constructor([])
|
gjc@3731
|
161 |
## bridge-helper.h: void ns3::BridgeHelper::SetDeviceAttribute(std::string n1, ns3::AttributeValue const & v1) [member function]
|
gjc@3731
|
162 |
cls.add_method('SetDeviceAttribute',
|
gjc@3731
|
163 |
'void',
|
gjc@3731
|
164 |
[param('std::string', 'n1'), param('ns3::AttributeValue const &', 'v1')])
|
gjc@3731
|
165 |
## bridge-helper.h: ns3::NetDeviceContainer ns3::BridgeHelper::Install(ns3::Ptr<ns3::Node> node, ns3::NetDeviceContainer c) [member function]
|
gjc@3731
|
166 |
cls.add_method('Install',
|
gjc@3731
|
167 |
'ns3::NetDeviceContainer',
|
gjc@3731
|
168 |
[param('ns3::Ptr< ns3::Node >', 'node'), param('ns3::NetDeviceContainer', 'c')])
|
gjc@3731
|
169 |
return
|
gjc@3731
|
170 |
|
gjc@3731
|
171 |
def register_Ns3CsmaHelper_methods(root_module, cls):
|
gjc@3731
|
172 |
## csma-helper.h: ns3::CsmaHelper::CsmaHelper(ns3::CsmaHelper const & arg0) [copy constructor]
|
gjc@3731
|
173 |
cls.add_constructor([param('ns3::CsmaHelper const &', 'arg0')])
|
gjc@3731
|
174 |
## csma-helper.h: ns3::CsmaHelper::CsmaHelper() [constructor]
|
gjc@3731
|
175 |
cls.add_constructor([])
|
gjc@3731
|
176 |
## csma-helper.h: void ns3::CsmaHelper::SetQueue(std::string type, std::string n1="", ns3::AttributeValue const & v1=ns3::EmptyAttributeValue(), std::string n2="", ns3::AttributeValue const & v2=ns3::EmptyAttributeValue(), std::string n3="", ns3::AttributeValue const & v3=ns3::EmptyAttributeValue(), std::string n4="", ns3::AttributeValue const & v4=ns3::EmptyAttributeValue()) [member function]
|
gjc@3731
|
177 |
cls.add_method('SetQueue',
|
gjc@3731
|
178 |
'void',
|
gjc@3731
|
179 |
[param('std::string', 'type'), param('std::string', 'n1', default_value='""'), param('ns3::AttributeValue const &', 'v1', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n2', default_value='""'), param('ns3::AttributeValue const &', 'v2', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n3', default_value='""'), param('ns3::AttributeValue const &', 'v3', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n4', default_value='""'), param('ns3::AttributeValue const &', 'v4', default_value='ns3::EmptyAttributeValue()')])
|
gjc@3731
|
180 |
## csma-helper.h: void ns3::CsmaHelper::SetDeviceAttribute(std::string n1, ns3::AttributeValue const & v1) [member function]
|
gjc@3731
|
181 |
cls.add_method('SetDeviceAttribute',
|
gjc@3731
|
182 |
'void',
|
gjc@3731
|
183 |
[param('std::string', 'n1'), param('ns3::AttributeValue const &', 'v1')])
|
gjc@3731
|
184 |
## csma-helper.h: void ns3::CsmaHelper::SetChannelAttribute(std::string n1, ns3::AttributeValue const & v1) [member function]
|
gjc@3731
|
185 |
cls.add_method('SetChannelAttribute',
|
gjc@3731
|
186 |
'void',
|
gjc@3731
|
187 |
[param('std::string', 'n1'), param('ns3::AttributeValue const &', 'v1')])
|
gjc@3731
|
188 |
## csma-helper.h: void ns3::CsmaHelper::SetDeviceParameter(std::string n1, ns3::AttributeValue const & v1) [member function]
|
gjc@3731
|
189 |
cls.add_method('SetDeviceParameter',
|
gjc@3731
|
190 |
'void',
|
gjc@3731
|
191 |
[param('std::string', 'n1'), param('ns3::AttributeValue const &', 'v1')],
|
gjc@3731
|
192 |
deprecated=True)
|
gjc@3731
|
193 |
## csma-helper.h: void ns3::CsmaHelper::SetChannelParameter(std::string n1, ns3::AttributeValue const & v1) [member function]
|
gjc@3731
|
194 |
cls.add_method('SetChannelParameter',
|
gjc@3731
|
195 |
'void',
|
gjc@3731
|
196 |
[param('std::string', 'n1'), param('ns3::AttributeValue const &', 'v1')],
|
gjc@3731
|
197 |
deprecated=True)
|
gjc@3731
|
198 |
## csma-helper.h: static void ns3::CsmaHelper::EnablePcap(std::string filename, uint32_t nodeid, uint32_t deviceid) [member function]
|
gjc@3731
|
199 |
cls.add_method('EnablePcap',
|
gjc@3731
|
200 |
'void',
|
gjc@3731
|
201 |
[param('std::string', 'filename'), param('uint32_t', 'nodeid'), param('uint32_t', 'deviceid')],
|
gjc@3731
|
202 |
is_static=True)
|
gjc@3731
|
203 |
## csma-helper.h: static void ns3::CsmaHelper::EnablePcap(std::string filename, ns3::NetDeviceContainer d) [member function]
|
gjc@3731
|
204 |
cls.add_method('EnablePcap',
|
gjc@3731
|
205 |
'void',
|
gjc@3731
|
206 |
[param('std::string', 'filename'), param('ns3::NetDeviceContainer', 'd')],
|
gjc@3731
|
207 |
is_static=True)
|
gjc@3731
|
208 |
## csma-helper.h: static void ns3::CsmaHelper::EnablePcap(std::string filename, ns3::NodeContainer n) [member function]
|
gjc@3731
|
209 |
cls.add_method('EnablePcap',
|
gjc@3731
|
210 |
'void',
|
gjc@3731
|
211 |
[param('std::string', 'filename'), param('ns3::NodeContainer', 'n')],
|
gjc@3731
|
212 |
is_static=True)
|
gjc@3731
|
213 |
## csma-helper.h: static void ns3::CsmaHelper::EnablePcapAll(std::string filename) [member function]
|
gjc@3731
|
214 |
cls.add_method('EnablePcapAll',
|
gjc@3731
|
215 |
'void',
|
gjc@3731
|
216 |
[param('std::string', 'filename')],
|
gjc@3731
|
217 |
is_static=True)
|
gjc@3731
|
218 |
## csma-helper.h: static void ns3::CsmaHelper::EnableAscii(std::ostream & os, uint32_t nodeid, uint32_t deviceid) [member function]
|
gjc@3731
|
219 |
cls.add_method('EnableAscii',
|
gjc@3731
|
220 |
'void',
|
gjc@3731
|
221 |
[param('std::ostream &', 'os'), param('uint32_t', 'nodeid'), param('uint32_t', 'deviceid')],
|
gjc@3731
|
222 |
is_static=True)
|
gjc@3731
|
223 |
## csma-helper.h: static void ns3::CsmaHelper::EnableAscii(std::ostream & os, ns3::NetDeviceContainer d) [member function]
|
gjc@3731
|
224 |
cls.add_method('EnableAscii',
|
gjc@3731
|
225 |
'void',
|
gjc@3731
|
226 |
[param('std::ostream &', 'os'), param('ns3::NetDeviceContainer', 'd')],
|
gjc@3731
|
227 |
is_static=True)
|
gjc@3731
|
228 |
## csma-helper.h: static void ns3::CsmaHelper::EnableAscii(std::ostream & os, ns3::NodeContainer n) [member function]
|
gjc@3731
|
229 |
cls.add_method('EnableAscii',
|
gjc@3731
|
230 |
'void',
|
gjc@3731
|
231 |
[param('std::ostream &', 'os'), param('ns3::NodeContainer', 'n')],
|
gjc@3731
|
232 |
is_static=True)
|
gjc@3731
|
233 |
## csma-helper.h: static void ns3::CsmaHelper::EnableAsciiAll(std::ostream & os) [member function]
|
gjc@3731
|
234 |
cls.add_method('EnableAsciiAll',
|
gjc@3731
|
235 |
'void',
|
gjc@3731
|
236 |
[param('std::ostream &', 'os')],
|
gjc@3731
|
237 |
is_static=True)
|
gjc@3731
|
238 |
## csma-helper.h: ns3::NetDeviceContainer ns3::CsmaHelper::Install(ns3::NodeContainer const & c) [member function]
|
gjc@3731
|
239 |
cls.add_method('Install',
|
gjc@3731
|
240 |
'ns3::NetDeviceContainer',
|
gjc@3731
|
241 |
[param('ns3::NodeContainer const &', 'c')])
|
gjc@3731
|
242 |
## csma-helper.h: ns3::NetDeviceContainer ns3::CsmaHelper::Install(ns3::NodeContainer const & c, ns3::Ptr<ns3::CsmaChannel> channel) [member function]
|
gjc@3731
|
243 |
cls.add_method('Install',
|
gjc@3731
|
244 |
'ns3::NetDeviceContainer',
|
gjc@3731
|
245 |
[param('ns3::NodeContainer const &', 'c'), param('ns3::Ptr< ns3::CsmaChannel >', 'channel')])
|
mathieu@3816
|
246 |
## csma-helper.h: void ns3::CsmaHelper::InstallStar(ns3::Ptr<ns3::Node> hub, ns3::NodeContainer spokes, ns3::NetDeviceContainer & hubDevices, ns3::NetDeviceContainer & spokeDevices) [member function]
|
mathieu@3816
|
247 |
cls.add_method('InstallStar',
|
mathieu@3816
|
248 |
'void',
|
mathieu@3816
|
249 |
[param('ns3::Ptr< ns3::Node >', 'hub'), param('ns3::NodeContainer', 'spokes'), param('ns3::NetDeviceContainer &', 'hubDevices'), param('ns3::NetDeviceContainer &', 'spokeDevices')])
|
gjc@3731
|
250 |
return
|
gjc@3731
|
251 |
|
vincent@3842
|
252 |
def register_Ns3EmuHelper_methods(root_module, cls):
|
vincent@3842
|
253 |
## emu-helper.h: ns3::EmuHelper::EmuHelper(ns3::EmuHelper const & arg0) [copy constructor]
|
vincent@3842
|
254 |
cls.add_constructor([param('ns3::EmuHelper const &', 'arg0')])
|
vincent@3842
|
255 |
## emu-helper.h: ns3::EmuHelper::EmuHelper() [constructor]
|
vincent@3842
|
256 |
cls.add_constructor([])
|
vincent@3842
|
257 |
## emu-helper.h: void ns3::EmuHelper::SetQueue(std::string type, std::string n1="", ns3::AttributeValue const & v1=ns3::EmptyAttributeValue(), std::string n2="", ns3::AttributeValue const & v2=ns3::EmptyAttributeValue(), std::string n3="", ns3::AttributeValue const & v3=ns3::EmptyAttributeValue(), std::string n4="", ns3::AttributeValue const & v4=ns3::EmptyAttributeValue()) [member function]
|
vincent@3842
|
258 |
cls.add_method('SetQueue',
|
vincent@3842
|
259 |
'void',
|
vincent@3842
|
260 |
[param('std::string', 'type'), param('std::string', 'n1', default_value='""'), param('ns3::AttributeValue const &', 'v1', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n2', default_value='""'), param('ns3::AttributeValue const &', 'v2', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n3', default_value='""'), param('ns3::AttributeValue const &', 'v3', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n4', default_value='""'), param('ns3::AttributeValue const &', 'v4', default_value='ns3::EmptyAttributeValue()')])
|
vincent@3842
|
261 |
## emu-helper.h: void ns3::EmuHelper::SetAttribute(std::string n1, ns3::AttributeValue const & v1) [member function]
|
vincent@3842
|
262 |
cls.add_method('SetAttribute',
|
vincent@3842
|
263 |
'void',
|
vincent@3842
|
264 |
[param('std::string', 'n1'), param('ns3::AttributeValue const &', 'v1')])
|
vincent@3842
|
265 |
## emu-helper.h: static void ns3::EmuHelper::EnablePcap(std::string filename, uint32_t nodeid, uint32_t deviceid) [member function]
|
vincent@3842
|
266 |
cls.add_method('EnablePcap',
|
vincent@3842
|
267 |
'void',
|
vincent@3842
|
268 |
[param('std::string', 'filename'), param('uint32_t', 'nodeid'), param('uint32_t', 'deviceid')],
|
vincent@3842
|
269 |
is_static=True)
|
vincent@3842
|
270 |
## emu-helper.h: static void ns3::EmuHelper::EnablePcap(std::string filename, ns3::NetDeviceContainer d) [member function]
|
vincent@3842
|
271 |
cls.add_method('EnablePcap',
|
vincent@3842
|
272 |
'void',
|
vincent@3842
|
273 |
[param('std::string', 'filename'), param('ns3::NetDeviceContainer', 'd')],
|
vincent@3842
|
274 |
is_static=True)
|
vincent@3842
|
275 |
## emu-helper.h: static void ns3::EmuHelper::EnablePcap(std::string filename, ns3::NodeContainer n) [member function]
|
vincent@3842
|
276 |
cls.add_method('EnablePcap',
|
vincent@3842
|
277 |
'void',
|
vincent@3842
|
278 |
[param('std::string', 'filename'), param('ns3::NodeContainer', 'n')],
|
vincent@3842
|
279 |
is_static=True)
|
vincent@3842
|
280 |
## emu-helper.h: static void ns3::EmuHelper::EnablePcapAll(std::string filename) [member function]
|
vincent@3842
|
281 |
cls.add_method('EnablePcapAll',
|
vincent@3842
|
282 |
'void',
|
vincent@3842
|
283 |
[param('std::string', 'filename')],
|
vincent@3842
|
284 |
is_static=True)
|
vincent@3842
|
285 |
## emu-helper.h: static void ns3::EmuHelper::EnableAscii(std::ostream & os, uint32_t nodeid, uint32_t deviceid) [member function]
|
vincent@3842
|
286 |
cls.add_method('EnableAscii',
|
vincent@3842
|
287 |
'void',
|
vincent@3842
|
288 |
[param('std::ostream &', 'os'), param('uint32_t', 'nodeid'), param('uint32_t', 'deviceid')],
|
vincent@3842
|
289 |
is_static=True)
|
vincent@3842
|
290 |
## emu-helper.h: static void ns3::EmuHelper::EnableAscii(std::ostream & os, ns3::NetDeviceContainer d) [member function]
|
vincent@3842
|
291 |
cls.add_method('EnableAscii',
|
vincent@3842
|
292 |
'void',
|
vincent@3842
|
293 |
[param('std::ostream &', 'os'), param('ns3::NetDeviceContainer', 'd')],
|
vincent@3842
|
294 |
is_static=True)
|
vincent@3842
|
295 |
## emu-helper.h: static void ns3::EmuHelper::EnableAscii(std::ostream & os, ns3::NodeContainer n) [member function]
|
vincent@3842
|
296 |
cls.add_method('EnableAscii',
|
vincent@3842
|
297 |
'void',
|
vincent@3842
|
298 |
[param('std::ostream &', 'os'), param('ns3::NodeContainer', 'n')],
|
vincent@3842
|
299 |
is_static=True)
|
vincent@3842
|
300 |
## emu-helper.h: static void ns3::EmuHelper::EnableAsciiAll(std::ostream & os) [member function]
|
vincent@3842
|
301 |
cls.add_method('EnableAsciiAll',
|
vincent@3842
|
302 |
'void',
|
vincent@3842
|
303 |
[param('std::ostream &', 'os')],
|
vincent@3842
|
304 |
is_static=True)
|
vincent@3842
|
305 |
## emu-helper.h: ns3::NetDeviceContainer ns3::EmuHelper::Install(ns3::NodeContainer const & c) [member function]
|
vincent@3842
|
306 |
cls.add_method('Install',
|
vincent@3842
|
307 |
'ns3::NetDeviceContainer',
|
vincent@3842
|
308 |
[param('ns3::NodeContainer const &', 'c')])
|
vincent@3842
|
309 |
return
|
vincent@3842
|
310 |
|
gjc@3731
|
311 |
def register_Ns3InternetStackHelper_methods(root_module, cls):
|
gjc@3731
|
312 |
## internet-stack-helper.h: ns3::InternetStackHelper::InternetStackHelper(ns3::InternetStackHelper const & arg0) [copy constructor]
|
gjc@3731
|
313 |
cls.add_constructor([param('ns3::InternetStackHelper const &', 'arg0')])
|
gjc@3731
|
314 |
## internet-stack-helper.h: ns3::InternetStackHelper::InternetStackHelper() [constructor]
|
gjc@3731
|
315 |
cls.add_constructor([])
|
gjc@3731
|
316 |
## internet-stack-helper.h: void ns3::InternetStackHelper::Install(ns3::NodeContainer c) [member function]
|
gjc@3731
|
317 |
cls.add_method('Install',
|
gjc@3731
|
318 |
'void',
|
gjc@3731
|
319 |
[param('ns3::NodeContainer', 'c')])
|
gjc@3731
|
320 |
## internet-stack-helper.h: void ns3::InternetStackHelper::SetNscStack(std::string soname) [member function]
|
gjc@3731
|
321 |
cls.add_method('SetNscStack',
|
gjc@3731
|
322 |
'void',
|
gjc@3731
|
323 |
[param('std::string', 'soname')])
|
gjc@3731
|
324 |
## internet-stack-helper.h: static void ns3::InternetStackHelper::EnablePcapAll(std::string filename) [member function]
|
gjc@3731
|
325 |
cls.add_method('EnablePcapAll',
|
gjc@3731
|
326 |
'void',
|
gjc@3731
|
327 |
[param('std::string', 'filename')],
|
gjc@3731
|
328 |
is_static=True)
|
gjc@3731
|
329 |
return
|
gjc@3731
|
330 |
|
gjc@3731
|
331 |
def register_Ns3Ipv4AddressHelper_methods(root_module, cls):
|
gjc@3731
|
332 |
## ipv4-address-helper.h: ns3::Ipv4AddressHelper::Ipv4AddressHelper(ns3::Ipv4AddressHelper const & arg0) [copy constructor]
|
gjc@3731
|
333 |
cls.add_constructor([param('ns3::Ipv4AddressHelper const &', 'arg0')])
|
gjc@3731
|
334 |
## ipv4-address-helper.h: ns3::Ipv4AddressHelper::Ipv4AddressHelper() [constructor]
|
gjc@3731
|
335 |
cls.add_constructor([])
|
gjc@3731
|
336 |
## ipv4-address-helper.h: void ns3::Ipv4AddressHelper::SetBase(ns3::Ipv4Address network, ns3::Ipv4Mask mask, ns3::Ipv4Address base="0.0.0.1") [member function]
|
gjc@3731
|
337 |
cls.add_method('SetBase',
|
gjc@3731
|
338 |
'void',
|
gjc@3731
|
339 |
[param('ns3::Ipv4Address', 'network'), param('ns3::Ipv4Mask', 'mask'), param('ns3::Ipv4Address', 'base', default_value='"0.0.0.1"')])
|
gjc@3731
|
340 |
## ipv4-address-helper.h: ns3::Ipv4Address ns3::Ipv4AddressHelper::NewNetwork() [member function]
|
gjc@3731
|
341 |
cls.add_method('NewNetwork',
|
gjc@3731
|
342 |
'ns3::Ipv4Address',
|
gjc@3731
|
343 |
[])
|
gjc@3731
|
344 |
## ipv4-address-helper.h: ns3::Ipv4Address ns3::Ipv4AddressHelper::NewAddress() [member function]
|
gjc@3731
|
345 |
cls.add_method('NewAddress',
|
gjc@3731
|
346 |
'ns3::Ipv4Address',
|
gjc@3731
|
347 |
[])
|
gjc@3731
|
348 |
## ipv4-address-helper.h: ns3::Ipv4InterfaceContainer ns3::Ipv4AddressHelper::Assign(ns3::NetDeviceContainer const & c) [member function]
|
gjc@3731
|
349 |
cls.add_method('Assign',
|
gjc@3731
|
350 |
'ns3::Ipv4InterfaceContainer',
|
gjc@3731
|
351 |
[param('ns3::NetDeviceContainer const &', 'c')])
|
gjc@3731
|
352 |
return
|
gjc@3731
|
353 |
|
gjc@3731
|
354 |
def register_Ns3Ipv4InterfaceContainer_methods(root_module, cls):
|
gjc@3731
|
355 |
## ipv4-interface-container.h: ns3::Ipv4InterfaceContainer::Ipv4InterfaceContainer(ns3::Ipv4InterfaceContainer const & arg0) [copy constructor]
|
gjc@3731
|
356 |
cls.add_constructor([param('ns3::Ipv4InterfaceContainer const &', 'arg0')])
|
gjc@3731
|
357 |
## ipv4-interface-container.h: ns3::Ipv4InterfaceContainer::Ipv4InterfaceContainer() [constructor]
|
gjc@3731
|
358 |
cls.add_constructor([])
|
mathieu@3816
|
359 |
## ipv4-interface-container.h: void ns3::Ipv4InterfaceContainer::Add(ns3::Ipv4InterfaceContainer other) [member function]
|
mathieu@3816
|
360 |
cls.add_method('Add',
|
mathieu@3816
|
361 |
'void',
|
mathieu@3816
|
362 |
[param('ns3::Ipv4InterfaceContainer', 'other')])
|
gjc@3731
|
363 |
## ipv4-interface-container.h: uint32_t ns3::Ipv4InterfaceContainer::GetN() const [member function]
|
gjc@3731
|
364 |
cls.add_method('GetN',
|
gjc@3731
|
365 |
'uint32_t',
|
gjc@3731
|
366 |
[],
|
gjc@3731
|
367 |
is_const=True)
|
gjc@3731
|
368 |
## ipv4-interface-container.h: ns3::Ipv4Address ns3::Ipv4InterfaceContainer::GetAddress(uint32_t i) const [member function]
|
gjc@3731
|
369 |
cls.add_method('GetAddress',
|
gjc@3731
|
370 |
'ns3::Ipv4Address',
|
gjc@3731
|
371 |
[param('uint32_t', 'i')],
|
gjc@3731
|
372 |
is_const=True)
|
gjc@3731
|
373 |
## ipv4-interface-container.h: void ns3::Ipv4InterfaceContainer::SetMetric(uint32_t i, uint16_t metric) [member function]
|
gjc@3731
|
374 |
cls.add_method('SetMetric',
|
gjc@3731
|
375 |
'void',
|
gjc@3731
|
376 |
[param('uint32_t', 'i'), param('uint16_t', 'metric')])
|
gjc@3731
|
377 |
## ipv4-interface-container.h: void ns3::Ipv4InterfaceContainer::Add(ns3::Ptr<ns3::Ipv4> ipv4, uint32_t interface) [member function]
|
gjc@3731
|
378 |
cls.add_method('Add',
|
gjc@3731
|
379 |
'void',
|
gjc@3731
|
380 |
[param('ns3::Ptr< ns3::Ipv4 >', 'ipv4'), param('uint32_t', 'interface')])
|
gjc@3408
|
381 |
return
|
gjc@3408
|
382 |
|
gjc@3408
|
383 |
def register_Ns3MobilityHelper_methods(root_module, cls):
|
gjc@3567
|
384 |
## mobility-helper.h: ns3::MobilityHelper::MobilityHelper(ns3::MobilityHelper const & arg0) [copy constructor]
|
gjc@3574
|
385 |
cls.add_constructor([param('ns3::MobilityHelper const &', 'arg0')])
|
gjc@3408
|
386 |
## mobility-helper.h: ns3::MobilityHelper::MobilityHelper() [constructor]
|
gjc@3468
|
387 |
cls.add_constructor([])
|
gjc@3408
|
388 |
## mobility-helper.h: void ns3::MobilityHelper::SetPositionAllocator(ns3::Ptr<ns3::PositionAllocator> allocator) [member function]
|
gjc@3468
|
389 |
cls.add_method('SetPositionAllocator',
|
gjc@3468
|
390 |
'void',
|
gjc@3468
|
391 |
[param('ns3::Ptr< ns3::PositionAllocator >', 'allocator')])
|
gjc@3408
|
392 |
## mobility-helper.h: void ns3::MobilityHelper::SetPositionAllocator(std::string type, std::string n1="", ns3::AttributeValue const & v1=ns3::EmptyAttributeValue(), std::string n2="", ns3::AttributeValue const & v2=ns3::EmptyAttributeValue(), std::string n3="", ns3::AttributeValue const & v3=ns3::EmptyAttributeValue(), std::string n4="", ns3::AttributeValue const & v4=ns3::EmptyAttributeValue(), std::string n5="", ns3::AttributeValue const & v5=ns3::EmptyAttributeValue(), std::string n6="", ns3::AttributeValue const & v6=ns3::EmptyAttributeValue(), std::string n7="", ns3::AttributeValue const & v7=ns3::EmptyAttributeValue(), std::string n8="", ns3::AttributeValue const & v8=ns3::EmptyAttributeValue(), std::string n9="", ns3::AttributeValue const & v9=ns3::EmptyAttributeValue()) [member function]
|
gjc@3468
|
393 |
cls.add_method('SetPositionAllocator',
|
gjc@3468
|
394 |
'void',
|
gjc@3574
|
395 |
[param('std::string', 'type'), param('std::string', 'n1', default_value='""'), param('ns3::AttributeValue const &', 'v1', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n2', default_value='""'), param('ns3::AttributeValue const &', 'v2', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n3', default_value='""'), param('ns3::AttributeValue const &', 'v3', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n4', default_value='""'), param('ns3::AttributeValue const &', 'v4', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n5', default_value='""'), param('ns3::AttributeValue const &', 'v5', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n6', default_value='""'), param('ns3::AttributeValue const &', 'v6', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n7', default_value='""'), param('ns3::AttributeValue const &', 'v7', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n8', default_value='""'), param('ns3::AttributeValue const &', 'v8', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n9', default_value='""'), param('ns3::AttributeValue const &', 'v9', default_value='ns3::EmptyAttributeValue()')])
|
gjc@3408
|
396 |
## mobility-helper.h: void ns3::MobilityHelper::SetMobilityModel(std::string type, std::string n1="", ns3::AttributeValue const & v1=ns3::EmptyAttributeValue(), std::string n2="", ns3::AttributeValue const & v2=ns3::EmptyAttributeValue(), std::string n3="", ns3::AttributeValue const & v3=ns3::EmptyAttributeValue(), std::string n4="", ns3::AttributeValue const & v4=ns3::EmptyAttributeValue(), std::string n5="", ns3::AttributeValue const & v5=ns3::EmptyAttributeValue(), std::string n6="", ns3::AttributeValue const & v6=ns3::EmptyAttributeValue(), std::string n7="", ns3::AttributeValue const & v7=ns3::EmptyAttributeValue(), std::string n8="", ns3::AttributeValue const & v8=ns3::EmptyAttributeValue(), std::string n9="", ns3::AttributeValue const & v9=ns3::EmptyAttributeValue()) [member function]
|
gjc@3468
|
397 |
cls.add_method('SetMobilityModel',
|
gjc@3468
|
398 |
'void',
|
gjc@3574
|
399 |
[param('std::string', 'type'), param('std::string', 'n1', default_value='""'), param('ns3::AttributeValue const &', 'v1', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n2', default_value='""'), param('ns3::AttributeValue const &', 'v2', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n3', default_value='""'), param('ns3::AttributeValue const &', 'v3', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n4', default_value='""'), param('ns3::AttributeValue const &', 'v4', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n5', default_value='""'), param('ns3::AttributeValue const &', 'v5', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n6', default_value='""'), param('ns3::AttributeValue const &', 'v6', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n7', default_value='""'), param('ns3::AttributeValue const &', 'v7', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n8', default_value='""'), param('ns3::AttributeValue const &', 'v8', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n9', default_value='""'), param('ns3::AttributeValue const &', 'v9', default_value='ns3::EmptyAttributeValue()')])
|
gjc@3408
|
400 |
## mobility-helper.h: void ns3::MobilityHelper::PushReferenceMobilityModel(ns3::Ptr<ns3::Object> reference) [member function]
|
gjc@3468
|
401 |
cls.add_method('PushReferenceMobilityModel',
|
gjc@3468
|
402 |
'void',
|
gjc@3468
|
403 |
[param('ns3::Ptr< ns3::Object >', 'reference')])
|
gjc@3408
|
404 |
## mobility-helper.h: void ns3::MobilityHelper::PopReferenceMobilityModel() [member function]
|
gjc@3468
|
405 |
cls.add_method('PopReferenceMobilityModel',
|
gjc@3468
|
406 |
'void',
|
gjc@3468
|
407 |
[])
|
gjc@3408
|
408 |
## mobility-helper.h: std::string ns3::MobilityHelper::GetMobilityModelType() const [member function]
|
gjc@3468
|
409 |
cls.add_method('GetMobilityModelType',
|
gjc@3468
|
410 |
'std::string',
|
gjc@3468
|
411 |
[],
|
gjc@3468
|
412 |
is_const=True)
|
gjc@3408
|
413 |
## mobility-helper.h: void ns3::MobilityHelper::Install(ns3::NodeContainer container) [member function]
|
gjc@3468
|
414 |
cls.add_method('Install',
|
gjc@3468
|
415 |
'void',
|
gjc@3468
|
416 |
[param('ns3::NodeContainer', 'container')])
|
gjc@3408
|
417 |
## mobility-helper.h: void ns3::MobilityHelper::InstallAll() [member function]
|
gjc@3468
|
418 |
cls.add_method('InstallAll',
|
gjc@3468
|
419 |
'void',
|
gjc@3468
|
420 |
[])
|
gjc@3511
|
421 |
## mobility-helper.h: static void ns3::MobilityHelper::EnableAscii(std::ostream & os, uint32_t nodeid) [member function]
|
gjc@3511
|
422 |
cls.add_method('EnableAscii',
|
gjc@3511
|
423 |
'void',
|
gjc@3574
|
424 |
[param('std::ostream &', 'os'), param('uint32_t', 'nodeid')],
|
gjc@3511
|
425 |
is_static=True)
|
gjc@3511
|
426 |
## mobility-helper.h: static void ns3::MobilityHelper::EnableAscii(std::ostream & os, ns3::NodeContainer n) [member function]
|
gjc@3511
|
427 |
cls.add_method('EnableAscii',
|
gjc@3511
|
428 |
'void',
|
gjc@3574
|
429 |
[param('std::ostream &', 'os'), param('ns3::NodeContainer', 'n')],
|
gjc@3511
|
430 |
is_static=True)
|
gjc@3511
|
431 |
## mobility-helper.h: static void ns3::MobilityHelper::EnableAsciiAll(std::ostream & os) [member function]
|
gjc@3511
|
432 |
cls.add_method('EnableAsciiAll',
|
gjc@3511
|
433 |
'void',
|
gjc@3574
|
434 |
[param('std::ostream &', 'os')],
|
gjc@3511
|
435 |
is_static=True)
|
gjc@3408
|
436 |
return
|
gjc@3408
|
437 |
|
gjc@3731
|
438 |
def register_Ns3NetDeviceContainer_methods(root_module, cls):
|
gjc@3731
|
439 |
## net-device-container.h: ns3::NetDeviceContainer::NetDeviceContainer(ns3::NetDeviceContainer const & arg0) [copy constructor]
|
gjc@3731
|
440 |
cls.add_constructor([param('ns3::NetDeviceContainer const &', 'arg0')])
|
gjc@3731
|
441 |
## net-device-container.h: ns3::NetDeviceContainer::NetDeviceContainer() [constructor]
|
gjc@3567
|
442 |
cls.add_constructor([])
|
gjc@3731
|
443 |
## net-device-container.h: ns3::NetDeviceContainer::NetDeviceContainer(ns3::Ptr<ns3::NetDevice> dev) [constructor]
|
gjc@3731
|
444 |
cls.add_constructor([param('ns3::Ptr< ns3::NetDevice >', 'dev')])
|
gjc@3731
|
445 |
## net-device-container.h: ns3::NetDeviceContainer::NetDeviceContainer(ns3::NetDeviceContainer const & a, ns3::NetDeviceContainer const & b) [constructor]
|
gjc@3731
|
446 |
cls.add_constructor([param('ns3::NetDeviceContainer const &', 'a'), param('ns3::NetDeviceContainer const &', 'b')])
|
gjc@3731
|
447 |
## net-device-container.h: __gnu_cxx::__normal_iterator<const ns3::Ptr<ns3::NetDevice>*,std::vector<ns3::Ptr<ns3::NetDevice>, std::allocator<ns3::Ptr<ns3::NetDevice> > > > ns3::NetDeviceContainer::Begin() const [member function]
|
gjc@3731
|
448 |
cls.add_method('Begin',
|
gjc@3731
|
449 |
'__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::NetDevice > const, std::vector< ns3::Ptr< ns3::NetDevice > > >',
|
gjc@3731
|
450 |
[],
|
gjc@3731
|
451 |
is_const=True)
|
gjc@3731
|
452 |
## net-device-container.h: __gnu_cxx::__normal_iterator<const ns3::Ptr<ns3::NetDevice>*,std::vector<ns3::Ptr<ns3::NetDevice>, std::allocator<ns3::Ptr<ns3::NetDevice> > > > ns3::NetDeviceContainer::End() const [member function]
|
gjc@3731
|
453 |
cls.add_method('End',
|
gjc@3731
|
454 |
'__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::NetDevice > const, std::vector< ns3::Ptr< ns3::NetDevice > > >',
|
gjc@3731
|
455 |
[],
|
gjc@3731
|
456 |
is_const=True)
|
gjc@3731
|
457 |
## net-device-container.h: uint32_t ns3::NetDeviceContainer::GetN() const [member function]
|
gjc@3731
|
458 |
cls.add_method('GetN',
|
gjc@3731
|
459 |
'uint32_t',
|
gjc@3731
|
460 |
[],
|
gjc@3731
|
461 |
is_const=True)
|
gjc@3731
|
462 |
## net-device-container.h: ns3::Ptr<ns3::NetDevice> ns3::NetDeviceContainer::Get(uint32_t i) const [member function]
|
gjc@3731
|
463 |
cls.add_method('Get',
|
gjc@3731
|
464 |
'ns3::Ptr< ns3::NetDevice >',
|
gjc@3731
|
465 |
[param('uint32_t', 'i')],
|
gjc@3731
|
466 |
is_const=True)
|
gjc@3731
|
467 |
## net-device-container.h: void ns3::NetDeviceContainer::Add(ns3::NetDeviceContainer other) [member function]
|
gjc@3731
|
468 |
cls.add_method('Add',
|
gjc@3468
|
469 |
'void',
|
gjc@3731
|
470 |
[param('ns3::NetDeviceContainer', 'other')])
|
gjc@3731
|
471 |
## net-device-container.h: void ns3::NetDeviceContainer::Add(ns3::Ptr<ns3::NetDevice> device) [member function]
|
gjc@3731
|
472 |
cls.add_method('Add',
|
mathieu@3588
|
473 |
'void',
|
gjc@3731
|
474 |
[param('ns3::Ptr< ns3::NetDevice >', 'device')])
|
gjc@3408
|
475 |
return
|
gjc@3408
|
476 |
|
gjc@3408
|
477 |
def register_Ns3NodeContainer_methods(root_module, cls):
|
gjc@3567
|
478 |
## node-container.h: ns3::NodeContainer::NodeContainer(ns3::NodeContainer const & arg0) [copy constructor]
|
gjc@3574
|
479 |
cls.add_constructor([param('ns3::NodeContainer const &', 'arg0')])
|
gjc@3408
|
480 |
## node-container.h: ns3::NodeContainer::NodeContainer() [constructor]
|
gjc@3468
|
481 |
cls.add_constructor([])
|
gjc@3408
|
482 |
## node-container.h: ns3::NodeContainer::NodeContainer(ns3::Ptr<ns3::Node> node) [constructor]
|
gjc@3468
|
483 |
cls.add_constructor([param('ns3::Ptr< ns3::Node >', 'node')])
|
gjc@3408
|
484 |
## node-container.h: ns3::NodeContainer::NodeContainer(ns3::NodeContainer const & a, ns3::NodeContainer const & b) [constructor]
|
gjc@3574
|
485 |
cls.add_constructor([param('ns3::NodeContainer const &', 'a'), param('ns3::NodeContainer const &', 'b')])
|
gjc@3408
|
486 |
## node-container.h: ns3::NodeContainer::NodeContainer(ns3::NodeContainer const & a, ns3::NodeContainer const & b, ns3::NodeContainer const & c) [constructor]
|
gjc@3574
|
487 |
cls.add_constructor([param('ns3::NodeContainer const &', 'a'), param('ns3::NodeContainer const &', 'b'), param('ns3::NodeContainer const &', 'c')])
|
gjc@3408
|
488 |
## node-container.h: ns3::NodeContainer::NodeContainer(ns3::NodeContainer const & a, ns3::NodeContainer const & b, ns3::NodeContainer const & c, ns3::NodeContainer const & d) [constructor]
|
gjc@3574
|
489 |
cls.add_constructor([param('ns3::NodeContainer const &', 'a'), param('ns3::NodeContainer const &', 'b'), param('ns3::NodeContainer const &', 'c'), param('ns3::NodeContainer const &', 'd')])
|
gjc@3408
|
490 |
## node-container.h: __gnu_cxx::__normal_iterator<const ns3::Ptr<ns3::Node>*,std::vector<ns3::Ptr<ns3::Node>, std::allocator<ns3::Ptr<ns3::Node> > > > ns3::NodeContainer::Begin() const [member function]
|
gjc@3468
|
491 |
cls.add_method('Begin',
|
gjc@3731
|
492 |
'__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Node > const, std::vector< ns3::Ptr< ns3::Node > > >',
|
gjc@3468
|
493 |
[],
|
gjc@3468
|
494 |
is_const=True)
|
gjc@3408
|
495 |
## node-container.h: __gnu_cxx::__normal_iterator<const ns3::Ptr<ns3::Node>*,std::vector<ns3::Ptr<ns3::Node>, std::allocator<ns3::Ptr<ns3::Node> > > > ns3::NodeContainer::End() const [member function]
|
gjc@3468
|
496 |
cls.add_method('End',
|
gjc@3731
|
497 |
'__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Node > const, std::vector< ns3::Ptr< ns3::Node > > >',
|
gjc@3468
|
498 |
[],
|
gjc@3468
|
499 |
is_const=True)
|
gjc@3408
|
500 |
## node-container.h: uint32_t ns3::NodeContainer::GetN() const [member function]
|
gjc@3468
|
501 |
cls.add_method('GetN',
|
gjc@3468
|
502 |
'uint32_t',
|
gjc@3468
|
503 |
[],
|
gjc@3468
|
504 |
is_const=True)
|
gjc@3408
|
505 |
## node-container.h: ns3::Ptr<ns3::Node> ns3::NodeContainer::Get(uint32_t i) const [member function]
|
gjc@3468
|
506 |
cls.add_method('Get',
|
gjc@3468
|
507 |
'ns3::Ptr< ns3::Node >',
|
gjc@3468
|
508 |
[param('uint32_t', 'i')],
|
gjc@3468
|
509 |
is_const=True)
|
gjc@3408
|
510 |
## node-container.h: void ns3::NodeContainer::Create(uint32_t n) [member function]
|
gjc@3468
|
511 |
cls.add_method('Create',
|
gjc@3468
|
512 |
'void',
|
gjc@3468
|
513 |
[param('uint32_t', 'n')])
|
gjc@3408
|
514 |
## node-container.h: void ns3::NodeContainer::Add(ns3::NodeContainer other) [member function]
|
gjc@3468
|
515 |
cls.add_method('Add',
|
gjc@3468
|
516 |
'void',
|
gjc@3468
|
517 |
[param('ns3::NodeContainer', 'other')])
|
gjc@3408
|
518 |
## node-container.h: void ns3::NodeContainer::Add(ns3::Ptr<ns3::Node> node) [member function]
|
gjc@3468
|
519 |
cls.add_method('Add',
|
gjc@3468
|
520 |
'void',
|
gjc@3468
|
521 |
[param('ns3::Ptr< ns3::Node >', 'node')])
|
gjc@3408
|
522 |
## node-container.h: static ns3::NodeContainer ns3::NodeContainer::GetGlobal() [member function]
|
gjc@3468
|
523 |
cls.add_method('GetGlobal',
|
gjc@3468
|
524 |
'ns3::NodeContainer',
|
gjc@3468
|
525 |
[],
|
gjc@3468
|
526 |
is_static=True)
|
gjc@3408
|
527 |
return
|
gjc@3408
|
528 |
|
gjc@3731
|
529 |
def register_Ns3Ns2MobilityHelper_methods(root_module, cls):
|
gjc@3731
|
530 |
## ns2-mobility-helper.h: ns3::Ns2MobilityHelper::Ns2MobilityHelper(ns3::Ns2MobilityHelper const & arg0) [copy constructor]
|
gjc@3731
|
531 |
cls.add_constructor([param('ns3::Ns2MobilityHelper const &', 'arg0')])
|
gjc@3731
|
532 |
## ns2-mobility-helper.h: ns3::Ns2MobilityHelper::Ns2MobilityHelper(std::string filename) [constructor]
|
gjc@3731
|
533 |
cls.add_constructor([param('std::string', 'filename')])
|
gjc@3731
|
534 |
## ns2-mobility-helper.h: void ns3::Ns2MobilityHelper::Install() const [member function]
|
gjc@3731
|
535 |
cls.add_method('Install',
|
gjc@3731
|
536 |
'void',
|
gjc@3731
|
537 |
[],
|
gjc@3731
|
538 |
is_const=True)
|
gjc@3731
|
539 |
return
|
gjc@3731
|
540 |
|
gjc@3731
|
541 |
def register_Ns3OlsrHelper_methods(root_module, cls):
|
gjc@3731
|
542 |
## olsr-helper.h: ns3::OlsrHelper::OlsrHelper(ns3::OlsrHelper const & arg0) [copy constructor]
|
gjc@3731
|
543 |
cls.add_constructor([param('ns3::OlsrHelper const &', 'arg0')])
|
gjc@3731
|
544 |
## olsr-helper.h: ns3::OlsrHelper::OlsrHelper() [constructor]
|
gjc@3731
|
545 |
cls.add_constructor([])
|
gjc@3731
|
546 |
## olsr-helper.h: void ns3::OlsrHelper::SetAgent(std::string tid, std::string n0="", ns3::AttributeValue const & v0=ns3::EmptyAttributeValue(), std::string n1="", ns3::AttributeValue const & v1=ns3::EmptyAttributeValue(), std::string n2="", ns3::AttributeValue const & v2=ns3::EmptyAttributeValue(), std::string n3="", ns3::AttributeValue const & v3=ns3::EmptyAttributeValue(), std::string n4="", ns3::AttributeValue const & v4=ns3::EmptyAttributeValue(), std::string n5="", ns3::AttributeValue const & v5=ns3::EmptyAttributeValue(), std::string n6="", ns3::AttributeValue const & v6=ns3::EmptyAttributeValue(), std::string n7="", ns3::AttributeValue const & v7=ns3::EmptyAttributeValue()) [member function]
|
gjc@3731
|
547 |
cls.add_method('SetAgent',
|
gjc@3731
|
548 |
'void',
|
gjc@3731
|
549 |
[param('std::string', 'tid'), param('std::string', 'n0', default_value='""'), param('ns3::AttributeValue const &', 'v0', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n1', default_value='""'), param('ns3::AttributeValue const &', 'v1', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n2', default_value='""'), param('ns3::AttributeValue const &', 'v2', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n3', default_value='""'), param('ns3::AttributeValue const &', 'v3', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n4', default_value='""'), param('ns3::AttributeValue const &', 'v4', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n5', default_value='""'), param('ns3::AttributeValue const &', 'v5', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n6', default_value='""'), param('ns3::AttributeValue const &', 'v6', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n7', default_value='""'), param('ns3::AttributeValue const &', 'v7', default_value='ns3::EmptyAttributeValue()')])
|
gjc@3731
|
550 |
## olsr-helper.h: void ns3::OlsrHelper::Install(ns3::NodeContainer container) [member function]
|
gjc@3731
|
551 |
cls.add_method('Install',
|
gjc@3731
|
552 |
'void',
|
gjc@3731
|
553 |
[param('ns3::NodeContainer', 'container')])
|
gjc@3731
|
554 |
## olsr-helper.h: void ns3::OlsrHelper::Install(ns3::Ptr<ns3::Node> node) [member function]
|
gjc@3731
|
555 |
cls.add_method('Install',
|
gjc@3731
|
556 |
'void',
|
gjc@3731
|
557 |
[param('ns3::Ptr< ns3::Node >', 'node')])
|
gjc@3731
|
558 |
## olsr-helper.h: void ns3::OlsrHelper::InstallAll() [member function]
|
gjc@3731
|
559 |
cls.add_method('InstallAll',
|
gjc@3731
|
560 |
'void',
|
gjc@3731
|
561 |
[])
|
gjc@3731
|
562 |
return
|
gjc@3731
|
563 |
|
gjc@3731
|
564 |
def register_Ns3OnOffHelper_methods(root_module, cls):
|
gjc@3731
|
565 |
## on-off-helper.h: ns3::OnOffHelper::OnOffHelper(ns3::OnOffHelper const & arg0) [copy constructor]
|
gjc@3731
|
566 |
cls.add_constructor([param('ns3::OnOffHelper const &', 'arg0')])
|
gjc@3731
|
567 |
## on-off-helper.h: ns3::OnOffHelper::OnOffHelper(std::string protocol, ns3::Address address) [constructor]
|
gjc@3731
|
568 |
cls.add_constructor([param('std::string', 'protocol'), param('ns3::Address', 'address')])
|
gjc@3731
|
569 |
## on-off-helper.h: void ns3::OnOffHelper::SetAttribute(std::string name, ns3::AttributeValue const & value) [member function]
|
gjc@3731
|
570 |
cls.add_method('SetAttribute',
|
gjc@3731
|
571 |
'void',
|
gjc@3731
|
572 |
[param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')])
|
gjc@3731
|
573 |
## on-off-helper.h: ns3::ApplicationContainer ns3::OnOffHelper::Install(ns3::NodeContainer c) [member function]
|
gjc@3731
|
574 |
cls.add_method('Install',
|
gjc@3731
|
575 |
'ns3::ApplicationContainer',
|
gjc@3731
|
576 |
[param('ns3::NodeContainer', 'c')])
|
gjc@3731
|
577 |
return
|
gjc@3731
|
578 |
|
gjc@3731
|
579 |
def register_Ns3PacketSinkHelper_methods(root_module, cls):
|
gjc@3731
|
580 |
## packet-sink-helper.h: ns3::PacketSinkHelper::PacketSinkHelper(ns3::PacketSinkHelper const & arg0) [copy constructor]
|
gjc@3731
|
581 |
cls.add_constructor([param('ns3::PacketSinkHelper const &', 'arg0')])
|
gjc@3731
|
582 |
## packet-sink-helper.h: ns3::PacketSinkHelper::PacketSinkHelper(std::string protocol, ns3::Address address) [constructor]
|
gjc@3731
|
583 |
cls.add_constructor([param('std::string', 'protocol'), param('ns3::Address', 'address')])
|
gjc@3731
|
584 |
## packet-sink-helper.h: void ns3::PacketSinkHelper::SetAttribute(std::string name, ns3::AttributeValue const & value) [member function]
|
gjc@3731
|
585 |
cls.add_method('SetAttribute',
|
gjc@3731
|
586 |
'void',
|
gjc@3731
|
587 |
[param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')])
|
gjc@3731
|
588 |
## packet-sink-helper.h: ns3::ApplicationContainer ns3::PacketSinkHelper::Install(ns3::NodeContainer c) [member function]
|
gjc@3731
|
589 |
cls.add_method('Install',
|
gjc@3731
|
590 |
'ns3::ApplicationContainer',
|
gjc@3731
|
591 |
[param('ns3::NodeContainer', 'c')])
|
gjc@3731
|
592 |
return
|
gjc@3731
|
593 |
|
gjc@3731
|
594 |
def register_Ns3PacketSocketHelper_methods(root_module, cls):
|
gjc@3731
|
595 |
## packet-socket-helper.h: ns3::PacketSocketHelper::PacketSocketHelper(ns3::PacketSocketHelper const & arg0) [copy constructor]
|
gjc@3731
|
596 |
cls.add_constructor([param('ns3::PacketSocketHelper const &', 'arg0')])
|
gjc@3731
|
597 |
## packet-socket-helper.h: ns3::PacketSocketHelper::PacketSocketHelper() [constructor]
|
gjc@3731
|
598 |
cls.add_constructor([])
|
gjc@3731
|
599 |
## packet-socket-helper.h: void ns3::PacketSocketHelper::Install(ns3::NodeContainer c) [member function]
|
gjc@3731
|
600 |
cls.add_method('Install',
|
gjc@3731
|
601 |
'void',
|
gjc@3731
|
602 |
[param('ns3::NodeContainer', 'c')])
|
gjc@3731
|
603 |
return
|
gjc@3731
|
604 |
|
gjc@3408
|
605 |
def register_Ns3PointToPointHelper_methods(root_module, cls):
|
gjc@3567
|
606 |
## point-to-point-helper.h: ns3::PointToPointHelper::PointToPointHelper(ns3::PointToPointHelper const & arg0) [copy constructor]
|
gjc@3574
|
607 |
cls.add_constructor([param('ns3::PointToPointHelper const &', 'arg0')])
|
gjc@3408
|
608 |
## point-to-point-helper.h: ns3::PointToPointHelper::PointToPointHelper() [constructor]
|
gjc@3468
|
609 |
cls.add_constructor([])
|
gjc@3408
|
610 |
## point-to-point-helper.h: void ns3::PointToPointHelper::SetQueue(std::string type, std::string n1="", ns3::AttributeValue const & v1=ns3::EmptyAttributeValue(), std::string n2="", ns3::AttributeValue const & v2=ns3::EmptyAttributeValue(), std::string n3="", ns3::AttributeValue const & v3=ns3::EmptyAttributeValue(), std::string n4="", ns3::AttributeValue const & v4=ns3::EmptyAttributeValue()) [member function]
|
gjc@3468
|
611 |
cls.add_method('SetQueue',
|
gjc@3468
|
612 |
'void',
|
gjc@3574
|
613 |
[param('std::string', 'type'), param('std::string', 'n1', default_value='""'), param('ns3::AttributeValue const &', 'v1', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n2', default_value='""'), param('ns3::AttributeValue const &', 'v2', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n3', default_value='""'), param('ns3::AttributeValue const &', 'v3', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n4', default_value='""'), param('ns3::AttributeValue const &', 'v4', default_value='ns3::EmptyAttributeValue()')])
|
gjc@3408
|
614 |
## point-to-point-helper.h: void ns3::PointToPointHelper::SetDeviceAttribute(std::string name, ns3::AttributeValue const & value) [member function]
|
gjc@3468
|
615 |
cls.add_method('SetDeviceAttribute',
|
gjc@3468
|
616 |
'void',
|
gjc@3574
|
617 |
[param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')])
|
gjc@3408
|
618 |
## point-to-point-helper.h: void ns3::PointToPointHelper::SetChannelAttribute(std::string name, ns3::AttributeValue const & value) [member function]
|
gjc@3468
|
619 |
cls.add_method('SetChannelAttribute',
|
gjc@3468
|
620 |
'void',
|
gjc@3574
|
621 |
[param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')])
|
gjc@3416
|
622 |
## point-to-point-helper.h: void ns3::PointToPointHelper::SetDeviceParameter(std::string name, ns3::AttributeValue const & value) [member function]
|
gjc@3468
|
623 |
cls.add_method('SetDeviceParameter',
|
gjc@3468
|
624 |
'void',
|
gjc@3574
|
625 |
[param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')],
|
gjc@3468
|
626 |
deprecated=True)
|
gjc@3416
|
627 |
## point-to-point-helper.h: void ns3::PointToPointHelper::SetChannelParameter(std::string name, ns3::AttributeValue const & value) [member function]
|
gjc@3468
|
628 |
cls.add_method('SetChannelParameter',
|
gjc@3468
|
629 |
'void',
|
gjc@3574
|
630 |
[param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')],
|
gjc@3468
|
631 |
deprecated=True)
|
gjc@3408
|
632 |
## point-to-point-helper.h: static void ns3::PointToPointHelper::EnablePcap(std::string filename, uint32_t nodeid, uint32_t deviceid) [member function]
|
gjc@3468
|
633 |
cls.add_method('EnablePcap',
|
gjc@3468
|
634 |
'void',
|
gjc@3468
|
635 |
[param('std::string', 'filename'), param('uint32_t', 'nodeid'), param('uint32_t', 'deviceid')],
|
gjc@3468
|
636 |
is_static=True)
|
gjc@3408
|
637 |
## point-to-point-helper.h: static void ns3::PointToPointHelper::EnablePcap(std::string filename, ns3::NetDeviceContainer d) [member function]
|
gjc@3468
|
638 |
cls.add_method('EnablePcap',
|
gjc@3468
|
639 |
'void',
|
gjc@3468
|
640 |
[param('std::string', 'filename'), param('ns3::NetDeviceContainer', 'd')],
|
gjc@3468
|
641 |
is_static=True)
|
gjc@3408
|
642 |
## point-to-point-helper.h: static void ns3::PointToPointHelper::EnablePcap(std::string filename, ns3::NodeContainer n) [member function]
|
gjc@3468
|
643 |
cls.add_method('EnablePcap',
|
gjc@3468
|
644 |
'void',
|
gjc@3468
|
645 |
[param('std::string', 'filename'), param('ns3::NodeContainer', 'n')],
|
gjc@3468
|
646 |
is_static=True)
|
gjc@3408
|
647 |
## point-to-point-helper.h: static void ns3::PointToPointHelper::EnablePcapAll(std::string filename) [member function]
|
gjc@3468
|
648 |
cls.add_method('EnablePcapAll',
|
gjc@3468
|
649 |
'void',
|
gjc@3468
|
650 |
[param('std::string', 'filename')],
|
gjc@3468
|
651 |
is_static=True)
|
gjc@3408
|
652 |
## point-to-point-helper.h: static void ns3::PointToPointHelper::EnableAscii(std::ostream & os, uint32_t nodeid, uint32_t deviceid) [member function]
|
gjc@3468
|
653 |
cls.add_method('EnableAscii',
|
gjc@3468
|
654 |
'void',
|
gjc@3574
|
655 |
[param('std::ostream &', 'os'), param('uint32_t', 'nodeid'), param('uint32_t', 'deviceid')],
|
gjc@3468
|
656 |
is_static=True)
|
gjc@3408
|
657 |
## point-to-point-helper.h: static void ns3::PointToPointHelper::EnableAscii(std::ostream & os, ns3::NetDeviceContainer d) [member function]
|
gjc@3468
|
658 |
cls.add_method('EnableAscii',
|
gjc@3468
|
659 |
'void',
|
gjc@3574
|
660 |
[param('std::ostream &', 'os'), param('ns3::NetDeviceContainer', 'd')],
|
gjc@3468
|
661 |
is_static=True)
|
gjc@3408
|
662 |
## point-to-point-helper.h: static void ns3::PointToPointHelper::EnableAscii(std::ostream & os, ns3::NodeContainer n) [member function]
|
gjc@3468
|
663 |
cls.add_method('EnableAscii',
|
gjc@3468
|
664 |
'void',
|
gjc@3574
|
665 |
[param('std::ostream &', 'os'), param('ns3::NodeContainer', 'n')],
|
gjc@3468
|
666 |
is_static=True)
|
gjc@3408
|
667 |
## point-to-point-helper.h: static void ns3::PointToPointHelper::EnableAsciiAll(std::ostream & os) [member function]
|
gjc@3468
|
668 |
cls.add_method('EnableAsciiAll',
|
gjc@3468
|
669 |
'void',
|
gjc@3574
|
670 |
[param('std::ostream &', 'os')],
|
gjc@3468
|
671 |
is_static=True)
|
gjc@3408
|
672 |
## point-to-point-helper.h: ns3::NetDeviceContainer ns3::PointToPointHelper::Install(ns3::NodeContainer c) [member function]
|
gjc@3468
|
673 |
cls.add_method('Install',
|
gjc@3468
|
674 |
'ns3::NetDeviceContainer',
|
gjc@3468
|
675 |
[param('ns3::NodeContainer', 'c')])
|
gjc@3408
|
676 |
## point-to-point-helper.h: ns3::NetDeviceContainer ns3::PointToPointHelper::Install(ns3::Ptr<ns3::Node> a, ns3::Ptr<ns3::Node> b) [member function]
|
gjc@3468
|
677 |
cls.add_method('Install',
|
gjc@3468
|
678 |
'ns3::NetDeviceContainer',
|
gjc@3468
|
679 |
[param('ns3::Ptr< ns3::Node >', 'a'), param('ns3::Ptr< ns3::Node >', 'b')])
|
mathieu@3816
|
680 |
## point-to-point-helper.h: void ns3::PointToPointHelper::InstallStar(ns3::Ptr<ns3::Node> hub, ns3::NodeContainer spokes, ns3::NetDeviceContainer & hubDevices, ns3::NetDeviceContainer & spokeDevices) [member function]
|
mathieu@3816
|
681 |
cls.add_method('InstallStar',
|
mathieu@3816
|
682 |
'void',
|
mathieu@3816
|
683 |
[param('ns3::Ptr< ns3::Node >', 'hub'), param('ns3::NodeContainer', 'spokes'), param('ns3::NetDeviceContainer &', 'hubDevices'), param('ns3::NetDeviceContainer &', 'spokeDevices')])
|
gjc@3408
|
684 |
return
|
gjc@3408
|
685 |
|
gjc@3408
|
686 |
def register_Ns3StaticMulticastRouteHelper_methods(root_module, cls):
|
gjc@3567
|
687 |
## static-multicast-route-helper.h: ns3::StaticMulticastRouteHelper::StaticMulticastRouteHelper(ns3::StaticMulticastRouteHelper const & arg0) [copy constructor]
|
gjc@3574
|
688 |
cls.add_constructor([param('ns3::StaticMulticastRouteHelper const &', 'arg0')])
|
gjc@3408
|
689 |
## static-multicast-route-helper.h: ns3::StaticMulticastRouteHelper::StaticMulticastRouteHelper() [constructor]
|
gjc@3468
|
690 |
cls.add_constructor([])
|
gjc@3408
|
691 |
## static-multicast-route-helper.h: void ns3::StaticMulticastRouteHelper::AddMulticastRoute(ns3::Ptr<ns3::Node> arg0, ns3::Ipv4Address source, ns3::Ipv4Address group, ns3::Ptr<ns3::NetDevice> input, ns3::NetDeviceContainer output) [member function]
|
gjc@3468
|
692 |
cls.add_method('AddMulticastRoute',
|
gjc@3468
|
693 |
'void',
|
gjc@3468
|
694 |
[param('ns3::Ptr< ns3::Node >', 'arg0'), param('ns3::Ipv4Address', 'source'), param('ns3::Ipv4Address', 'group'), param('ns3::Ptr< ns3::NetDevice >', 'input'), param('ns3::NetDeviceContainer', 'output')])
|
gjc@3408
|
695 |
## static-multicast-route-helper.h: void ns3::StaticMulticastRouteHelper::SetDefaultMulticastRoute(ns3::Ptr<ns3::Node> n, ns3::Ptr<ns3::NetDevice> nd) [member function]
|
gjc@3468
|
696 |
cls.add_method('SetDefaultMulticastRoute',
|
gjc@3468
|
697 |
'void',
|
gjc@3468
|
698 |
[param('ns3::Ptr< ns3::Node >', 'n'), param('ns3::Ptr< ns3::NetDevice >', 'nd')])
|
gjc@3408
|
699 |
## static-multicast-route-helper.h: void ns3::StaticMulticastRouteHelper::JoinMulticastGroup(ns3::Ptr<ns3::Node> n, ns3::Ipv4Address source, ns3::Ipv4Address group) [member function]
|
gjc@3468
|
700 |
cls.add_method('JoinMulticastGroup',
|
gjc@3468
|
701 |
'void',
|
gjc@3468
|
702 |
[param('ns3::Ptr< ns3::Node >', 'n'), param('ns3::Ipv4Address', 'source'), param('ns3::Ipv4Address', 'group')])
|
gjc@3408
|
703 |
return
|
gjc@3408
|
704 |
|
gjc@3731
|
705 |
def register_Ns3UdpEchoClientHelper_methods(root_module, cls):
|
gjc@3731
|
706 |
## udp-echo-helper.h: ns3::UdpEchoClientHelper::UdpEchoClientHelper(ns3::UdpEchoClientHelper const & arg0) [copy constructor]
|
gjc@3731
|
707 |
cls.add_constructor([param('ns3::UdpEchoClientHelper const &', 'arg0')])
|
gjc@3731
|
708 |
## udp-echo-helper.h: ns3::UdpEchoClientHelper::UdpEchoClientHelper(ns3::Ipv4Address ip, uint16_t port) [constructor]
|
gjc@3731
|
709 |
cls.add_constructor([param('ns3::Ipv4Address', 'ip'), param('uint16_t', 'port')])
|
gjc@3731
|
710 |
## udp-echo-helper.h: void ns3::UdpEchoClientHelper::SetAttribute(std::string name, ns3::AttributeValue const & value) [member function]
|
gjc@3731
|
711 |
cls.add_method('SetAttribute',
|
gjc@3468
|
712 |
'void',
|
gjc@3731
|
713 |
[param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')])
|
gjc@3731
|
714 |
## udp-echo-helper.h: ns3::ApplicationContainer ns3::UdpEchoClientHelper::Install(ns3::NodeContainer c) [member function]
|
gjc@3731
|
715 |
cls.add_method('Install',
|
gjc@3731
|
716 |
'ns3::ApplicationContainer',
|
gjc@3731
|
717 |
[param('ns3::NodeContainer', 'c')])
|
gjc@3408
|
718 |
return
|
gjc@3408
|
719 |
|
gjc@3731
|
720 |
def register_Ns3UdpEchoServerHelper_methods(root_module, cls):
|
gjc@3731
|
721 |
## udp-echo-helper.h: ns3::UdpEchoServerHelper::UdpEchoServerHelper(ns3::UdpEchoServerHelper const & arg0) [copy constructor]
|
gjc@3731
|
722 |
cls.add_constructor([param('ns3::UdpEchoServerHelper const &', 'arg0')])
|
gjc@3731
|
723 |
## udp-echo-helper.h: ns3::UdpEchoServerHelper::UdpEchoServerHelper(uint16_t port) [constructor]
|
gjc@3731
|
724 |
cls.add_constructor([param('uint16_t', 'port')])
|
gjc@3731
|
725 |
## udp-echo-helper.h: void ns3::UdpEchoServerHelper::SetAttribute(std::string name, ns3::AttributeValue const & value) [member function]
|
gjc@3731
|
726 |
cls.add_method('SetAttribute',
|
gjc@3468
|
727 |
'void',
|
gjc@3731
|
728 |
[param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')])
|
gjc@3731
|
729 |
## udp-echo-helper.h: ns3::ApplicationContainer ns3::UdpEchoServerHelper::Install(ns3::NodeContainer c) [member function]
|
gjc@3731
|
730 |
cls.add_method('Install',
|
gjc@3731
|
731 |
'ns3::ApplicationContainer',
|
gjc@3731
|
732 |
[param('ns3::NodeContainer', 'c')])
|
gjc@3408
|
733 |
return
|
gjc@3408
|
734 |
|
vincent@3842
|
735 |
def register_Ns3V4PingHelper_methods(root_module, cls):
|
vincent@3842
|
736 |
## v4ping-helper.h: ns3::V4PingHelper::V4PingHelper(ns3::V4PingHelper const & arg0) [copy constructor]
|
vincent@3842
|
737 |
cls.add_constructor([param('ns3::V4PingHelper const &', 'arg0')])
|
vincent@3842
|
738 |
## v4ping-helper.h: ns3::V4PingHelper::V4PingHelper(ns3::Ipv4Address remote) [constructor]
|
vincent@3842
|
739 |
cls.add_constructor([param('ns3::Ipv4Address', 'remote')])
|
vincent@3842
|
740 |
## v4ping-helper.h: void ns3::V4PingHelper::SetAttribute(std::string name, ns3::AttributeValue const & value) [member function]
|
vincent@3842
|
741 |
cls.add_method('SetAttribute',
|
vincent@3842
|
742 |
'void',
|
vincent@3842
|
743 |
[param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')])
|
vincent@3842
|
744 |
## v4ping-helper.h: ns3::ApplicationContainer ns3::V4PingHelper::Install(ns3::NodeContainer nodes) [member function]
|
vincent@3842
|
745 |
cls.add_method('Install',
|
vincent@3842
|
746 |
'ns3::ApplicationContainer',
|
vincent@3842
|
747 |
[param('ns3::NodeContainer', 'nodes')])
|
vincent@3842
|
748 |
return
|
vincent@3842
|
749 |
|
gjc@3408
|
750 |
def register_Ns3WifiHelper_methods(root_module, cls):
|
gjc@3567
|
751 |
## wifi-helper.h: ns3::WifiHelper::WifiHelper(ns3::WifiHelper const & arg0) [copy constructor]
|
gjc@3574
|
752 |
cls.add_constructor([param('ns3::WifiHelper const &', 'arg0')])
|
gjc@3408
|
753 |
## wifi-helper.h: ns3::WifiHelper::WifiHelper() [constructor]
|
gjc@3468
|
754 |
cls.add_constructor([])
|
gjc@3408
|
755 |
## wifi-helper.h: void ns3::WifiHelper::SetRemoteStationManager(std::string type, std::string n0="", ns3::AttributeValue const & v0=ns3::EmptyAttributeValue(), std::string n1="", ns3::AttributeValue const & v1=ns3::EmptyAttributeValue(), std::string n2="", ns3::AttributeValue const & v2=ns3::EmptyAttributeValue(), std::string n3="", ns3::AttributeValue const & v3=ns3::EmptyAttributeValue(), std::string n4="", ns3::AttributeValue const & v4=ns3::EmptyAttributeValue(), std::string n5="", ns3::AttributeValue const & v5=ns3::EmptyAttributeValue(), std::string n6="", ns3::AttributeValue const & v6=ns3::EmptyAttributeValue(), std::string n7="", ns3::AttributeValue const & v7=ns3::EmptyAttributeValue()) [member function]
|
gjc@3468
|
756 |
cls.add_method('SetRemoteStationManager',
|
gjc@3468
|
757 |
'void',
|
gjc@3574
|
758 |
[param('std::string', 'type'), param('std::string', 'n0', default_value='""'), param('ns3::AttributeValue const &', 'v0', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n1', default_value='""'), param('ns3::AttributeValue const &', 'v1', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n2', default_value='""'), param('ns3::AttributeValue const &', 'v2', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n3', default_value='""'), param('ns3::AttributeValue const &', 'v3', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n4', default_value='""'), param('ns3::AttributeValue const &', 'v4', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n5', default_value='""'), param('ns3::AttributeValue const &', 'v5', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n6', default_value='""'), param('ns3::AttributeValue const &', 'v6', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n7', default_value='""'), param('ns3::AttributeValue const &', 'v7', default_value='ns3::EmptyAttributeValue()')])
|
gjc@3408
|
759 |
## wifi-helper.h: void ns3::WifiHelper::SetMac(std::string type, std::string n0="", ns3::AttributeValue const & v0=ns3::EmptyAttributeValue(), std::string n1="", ns3::AttributeValue const & v1=ns3::EmptyAttributeValue(), std::string n2="", ns3::AttributeValue const & v2=ns3::EmptyAttributeValue(), std::string n3="", ns3::AttributeValue const & v3=ns3::EmptyAttributeValue(), std::string n4="", ns3::AttributeValue const & v4=ns3::EmptyAttributeValue(), std::string n5="", ns3::AttributeValue const & v5=ns3::EmptyAttributeValue(), std::string n6="", ns3::AttributeValue const & v6=ns3::EmptyAttributeValue(), std::string n7="", ns3::AttributeValue const & v7=ns3::EmptyAttributeValue()) [member function]
|
gjc@3468
|
760 |
cls.add_method('SetMac',
|
gjc@3468
|
761 |
'void',
|
gjc@3574
|
762 |
[param('std::string', 'type'), param('std::string', 'n0', default_value='""'), param('ns3::AttributeValue const &', 'v0', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n1', default_value='""'), param('ns3::AttributeValue const &', 'v1', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n2', default_value='""'), param('ns3::AttributeValue const &', 'v2', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n3', default_value='""'), param('ns3::AttributeValue const &', 'v3', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n4', default_value='""'), param('ns3::AttributeValue const &', 'v4', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n5', default_value='""'), param('ns3::AttributeValue const &', 'v5', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n6', default_value='""'), param('ns3::AttributeValue const &', 'v6', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n7', default_value='""'), param('ns3::AttributeValue const &', 'v7', default_value='ns3::EmptyAttributeValue()')])
|
gjc@3408
|
763 |
## wifi-helper.h: void ns3::WifiHelper::SetPhy(std::string phyType, std::string n0="", ns3::AttributeValue const & v0=ns3::EmptyAttributeValue(), std::string n1="", ns3::AttributeValue const & v1=ns3::EmptyAttributeValue(), std::string n2="", ns3::AttributeValue const & v2=ns3::EmptyAttributeValue(), std::string n3="", ns3::AttributeValue const & v3=ns3::EmptyAttributeValue(), std::string n4="", ns3::AttributeValue const & v4=ns3::EmptyAttributeValue(), std::string n5="", ns3::AttributeValue const & v5=ns3::EmptyAttributeValue(), std::string n6="", ns3::AttributeValue const & v6=ns3::EmptyAttributeValue(), std::string n7="", ns3::AttributeValue const & v7=ns3::EmptyAttributeValue()) [member function]
|
gjc@3468
|
764 |
cls.add_method('SetPhy',
|
gjc@3468
|
765 |
'void',
|
gjc@3574
|
766 |
[param('std::string', 'phyType'), param('std::string', 'n0', default_value='""'), param('ns3::AttributeValue const &', 'v0', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n1', default_value='""'), param('ns3::AttributeValue const &', 'v1', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n2', default_value='""'), param('ns3::AttributeValue const &', 'v2', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n3', default_value='""'), param('ns3::AttributeValue const &', 'v3', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n4', default_value='""'), param('ns3::AttributeValue const &', 'v4', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n5', default_value='""'), param('ns3::AttributeValue const &', 'v5', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n6', default_value='""'), param('ns3::AttributeValue const &', 'v6', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n7', default_value='""'), param('ns3::AttributeValue const &', 'v7', default_value='ns3::EmptyAttributeValue()')])
|
gjc@3408
|
767 |
## wifi-helper.h: static void ns3::WifiHelper::EnablePcap(std::string filename, uint32_t nodeid, uint32_t deviceid) [member function]
|
gjc@3468
|
768 |
cls.add_method('EnablePcap',
|
gjc@3468
|
769 |
'void',
|
gjc@3468
|
770 |
[param('std::string', 'filename'), param('uint32_t', 'nodeid'), param('uint32_t', 'deviceid')],
|
gjc@3468
|
771 |
is_static=True)
|
gjc@3408
|
772 |
## wifi-helper.h: static void ns3::WifiHelper::EnablePcap(std::string filename, ns3::NetDeviceContainer d) [member function]
|
gjc@3468
|
773 |
cls.add_method('EnablePcap',
|
gjc@3468
|
774 |
'void',
|
gjc@3468
|
775 |
[param('std::string', 'filename'), param('ns3::NetDeviceContainer', 'd')],
|
gjc@3468
|
776 |
is_static=True)
|
gjc@3408
|
777 |
## wifi-helper.h: static void ns3::WifiHelper::EnablePcap(std::string filename, ns3::NodeContainer n) [member function]
|
gjc@3468
|
778 |
cls.add_method('EnablePcap',
|
gjc@3468
|
779 |
'void',
|
gjc@3468
|
780 |
[param('std::string', 'filename'), param('ns3::NodeContainer', 'n')],
|
gjc@3468
|
781 |
is_static=True)
|
gjc@3408
|
782 |
## wifi-helper.h: static void ns3::WifiHelper::EnablePcapAll(std::string filename) [member function]
|
gjc@3468
|
783 |
cls.add_method('EnablePcapAll',
|
gjc@3468
|
784 |
'void',
|
gjc@3468
|
785 |
[param('std::string', 'filename')],
|
gjc@3468
|
786 |
is_static=True)
|
gjc@3408
|
787 |
## wifi-helper.h: static void ns3::WifiHelper::EnableAscii(std::ostream & os, uint32_t nodeid, uint32_t deviceid) [member function]
|
gjc@3468
|
788 |
cls.add_method('EnableAscii',
|
gjc@3468
|
789 |
'void',
|
gjc@3574
|
790 |
[param('std::ostream &', 'os'), param('uint32_t', 'nodeid'), param('uint32_t', 'deviceid')],
|
gjc@3468
|
791 |
is_static=True)
|
gjc@3408
|
792 |
## wifi-helper.h: static void ns3::WifiHelper::EnableAscii(std::ostream & os, ns3::NetDeviceContainer d) [member function]
|
gjc@3468
|
793 |
cls.add_method('EnableAscii',
|
gjc@3468
|
794 |
'void',
|
gjc@3574
|
795 |
[param('std::ostream &', 'os'), param('ns3::NetDeviceContainer', 'd')],
|
gjc@3468
|
796 |
is_static=True)
|
gjc@3408
|
797 |
## wifi-helper.h: static void ns3::WifiHelper::EnableAscii(std::ostream & os, ns3::NodeContainer n) [member function]
|
gjc@3468
|
798 |
cls.add_method('EnableAscii',
|
gjc@3468
|
799 |
'void',
|
gjc@3574
|
800 |
[param('std::ostream &', 'os'), param('ns3::NodeContainer', 'n')],
|
gjc@3468
|
801 |
is_static=True)
|
gjc@3408
|
802 |
## wifi-helper.h: static void ns3::WifiHelper::EnableAsciiAll(std::ostream & os) [member function]
|
gjc@3468
|
803 |
cls.add_method('EnableAsciiAll',
|
gjc@3468
|
804 |
'void',
|
gjc@3574
|
805 |
[param('std::ostream &', 'os')],
|
gjc@3468
|
806 |
is_static=True)
|
gjc@3408
|
807 |
## wifi-helper.h: ns3::NetDeviceContainer ns3::WifiHelper::Install(ns3::NodeContainer c) const [member function]
|
gjc@3468
|
808 |
cls.add_method('Install',
|
gjc@3468
|
809 |
'ns3::NetDeviceContainer',
|
gjc@3468
|
810 |
[param('ns3::NodeContainer', 'c')],
|
gjc@3468
|
811 |
is_const=True)
|
gjc@3408
|
812 |
## wifi-helper.h: ns3::NetDeviceContainer ns3::WifiHelper::Install(ns3::NodeContainer c, ns3::Ptr<ns3::WifiChannel> channel) const [member function]
|
gjc@3468
|
813 |
cls.add_method('Install',
|
gjc@3468
|
814 |
'ns3::NetDeviceContainer',
|
gjc@3468
|
815 |
[param('ns3::NodeContainer', 'c'), param('ns3::Ptr< ns3::WifiChannel >', 'channel')],
|
gjc@3468
|
816 |
is_const=True)
|
gjc@3408
|
817 |
return
|
gjc@3408
|
818 |
|
gjc@3408
|
819 |
def register_functions(root_module):
|
gjc@3408
|
820 |
module = root_module
|
gjc@3408
|
821 |
register_functions_ns3_internal(module.get_submodule('internal'), root_module)
|
gjc@3408
|
822 |
register_functions_ns3_TimeStepPrecision(module.get_submodule('TimeStepPrecision'), root_module)
|
gjc@3408
|
823 |
register_functions_ns3_Config(module.get_submodule('Config'), root_module)
|
gjc@3408
|
824 |
register_functions_ns3_olsr(module.get_submodule('olsr'), root_module)
|
gjc@3408
|
825 |
return
|
gjc@3408
|
826 |
|
gjc@3408
|
827 |
def register_functions_ns3_internal(module, root_module):
|
gjc@3408
|
828 |
return
|
gjc@3408
|
829 |
|
gjc@3408
|
830 |
def register_functions_ns3_TimeStepPrecision(module, root_module):
|
gjc@3408
|
831 |
return
|
gjc@3408
|
832 |
|
gjc@3408
|
833 |
def register_functions_ns3_Config(module, root_module):
|
gjc@3408
|
834 |
return
|
gjc@3408
|
835 |
|
gjc@3408
|
836 |
def register_functions_ns3_olsr(module, root_module):
|
gjc@3408
|
837 |
return
|
gjc@3408
|
838 |
|