blob: ea8c20e0f16d594a8c38ef311684ebf2376cc015 [file] [log] [blame]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07001from pybindgen import Module, FileCodeSink, param, retval, cppclass, typehandlers
2
3
4import pybindgen.settings
5import warnings
6
7class ErrorHandler(pybindgen.settings.ErrorHandler):
8 def handle_error(self, wrapper, exception, traceback_):
9 warnings.warn("exception %r in wrapper %s" % (exception, wrapper))
10 return True
11pybindgen.settings.error_handler = ErrorHandler()
12
13
14import sys
15
16def module_init():
17 root_module = Module('ns.NDNabstraction', cpp_namespace='::ns3')
18 return root_module
19
20def register_types(module):
21 root_module = module.get_root()
22
Alexander Afanasyev381dea02011-11-03 08:33:26 -070023 ## address.h (module 'network'): ns3::Address [class]
24 module.add_class('Address', import_from_module='ns.network')
25 ## address.h (module 'network'): ns3::Address::MaxSize_e [enumeration]
26 module.add_enum('MaxSize_e', ['MAX_SIZE'], outer_class=root_module['ns3::Address'], import_from_module='ns.network')
27 ## application-container.h (module 'network'): ns3::ApplicationContainer [class]
28 module.add_class('ApplicationContainer', import_from_module='ns.network')
Alexander Afanasyev381dea02011-11-03 08:33:26 -070029 ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList [class]
30 module.add_class('AttributeConstructionList', import_from_module='ns.core')
31 ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item [struct]
32 module.add_class('Item', import_from_module='ns.core', outer_class=root_module['ns3::AttributeConstructionList'])
33 ## buffer.h (module 'network'): ns3::Buffer [class]
34 module.add_class('Buffer', import_from_module='ns.network')
35 ## buffer.h (module 'network'): ns3::Buffer::Iterator [class]
36 module.add_class('Iterator', import_from_module='ns.network', outer_class=root_module['ns3::Buffer'])
37 ## packet.h (module 'network'): ns3::ByteTagIterator [class]
38 module.add_class('ByteTagIterator', import_from_module='ns.network')
39 ## packet.h (module 'network'): ns3::ByteTagIterator::Item [class]
40 module.add_class('Item', import_from_module='ns.network', outer_class=root_module['ns3::ByteTagIterator'])
41 ## byte-tag-list.h (module 'network'): ns3::ByteTagList [class]
42 module.add_class('ByteTagList', import_from_module='ns.network')
43 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator [class]
44 module.add_class('Iterator', import_from_module='ns.network', outer_class=root_module['ns3::ByteTagList'])
45 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item [struct]
46 module.add_class('Item', import_from_module='ns.network', outer_class=root_module['ns3::ByteTagList::Iterator'])
47 ## callback.h (module 'core'): ns3::CallbackBase [class]
48 module.add_class('CallbackBase', import_from_module='ns.core')
Alexander Afanasyev4975f732011-12-20 17:52:19 -080049 ## ccnx-app-helper.h (module 'NDNabstraction'): ns3::CcnxAppHelper [class]
50 module.add_class('CcnxAppHelper')
Alexander Afanasyev381dea02011-11-03 08:33:26 -070051 ## ccnx-content-object-header.h (module 'NDNabstraction'): ns3::CcnxContentObjectHeaderException [class]
52 module.add_class('CcnxContentObjectHeaderException')
Alexander Afanasyev8e2f1122012-04-17 15:01:11 -070053 ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFibEntry [class]
54 module.add_class('CcnxFibEntry')
55 ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFibEntry::NoFaces [class]
56 module.add_class('NoFaces', outer_class=root_module['ns3::CcnxFibEntry'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -070057 ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFibEntryContainer [struct]
58 module.add_class('CcnxFibEntryContainer')
59 ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFibFaceMetric [class]
60 module.add_class('CcnxFibFaceMetric')
61 ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFibFaceMetric::Status [enumeration]
62 module.add_enum('Status', ['NDN_FIB_GREEN', 'NDN_FIB_YELLOW', 'NDN_FIB_RED'], outer_class=root_module['ns3::CcnxFibFaceMetric'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -070063 ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFibFaceMetricContainer [struct]
64 module.add_class('CcnxFibFaceMetricContainer')
Alexander Afanasyev8e2f1122012-04-17 15:01:11 -070065 ## ccnx-global-routing-helper.h (module 'NDNabstraction'): ns3::CcnxGlobalRoutingHelper [class]
66 module.add_class('CcnxGlobalRoutingHelper')
Alexander Afanasyev53872ce2011-12-16 13:17:18 -080067 ## ccnx-header-helper.h (module 'NDNabstraction'): ns3::CcnxHeaderHelper [class]
68 module.add_class('CcnxHeaderHelper')
69 ## ccnx-header-helper.h (module 'NDNabstraction'): ns3::CcnxHeaderHelper::Type [enumeration]
70 module.add_enum('Type', ['INTEREST', 'CONTENT_OBJECT'], outer_class=root_module['ns3::CcnxHeaderHelper'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -070071 ## ccnx-interest-header.h (module 'NDNabstraction'): ns3::CcnxInterestHeaderException [class]
72 module.add_class('CcnxInterestHeaderException')
Alexander Afanasyev07827182011-12-13 01:07:32 -080073 ## ccnx-stack-helper.h (module 'NDNabstraction'): ns3::CcnxStackHelper [class]
74 module.add_class('CcnxStackHelper')
Alexander Afanasyevb3e4b852011-12-23 15:58:20 -080075 ## ccnx-trace-helper.h (module 'NDNabstraction'): ns3::CcnxTraceHelper [class]
76 module.add_class('CcnxTraceHelper')
Alexander Afanasyev53872ce2011-12-16 13:17:18 -080077 ## ccnx-header-helper.h (module 'NDNabstraction'): ns3::CcnxUnknownHeaderException [class]
78 module.add_class('CcnxUnknownHeaderException')
Alexander Afanasyev381dea02011-11-03 08:33:26 -070079 ## event-id.h (module 'core'): ns3::EventId [class]
80 module.add_class('EventId', import_from_module='ns.core')
Alexander Afanasyev6f933532012-02-29 13:30:37 -080081 ## int-to-type.h (module 'core'): ns3::IntToType<0> [struct]
82 module.add_class('IntToType', import_from_module='ns.core', template_parameters=['0'])
83 ## int-to-type.h (module 'core'): ns3::IntToType<0>::v_e [enumeration]
84 module.add_enum('v_e', ['value'], outer_class=root_module['ns3::IntToType< 0 >'], import_from_module='ns.core')
85 ## int-to-type.h (module 'core'): ns3::IntToType<1> [struct]
86 module.add_class('IntToType', import_from_module='ns.core', template_parameters=['1'])
87 ## int-to-type.h (module 'core'): ns3::IntToType<1>::v_e [enumeration]
88 module.add_enum('v_e', ['value'], outer_class=root_module['ns3::IntToType< 1 >'], import_from_module='ns.core')
89 ## int-to-type.h (module 'core'): ns3::IntToType<2> [struct]
90 module.add_class('IntToType', import_from_module='ns.core', template_parameters=['2'])
91 ## int-to-type.h (module 'core'): ns3::IntToType<2>::v_e [enumeration]
92 module.add_enum('v_e', ['value'], outer_class=root_module['ns3::IntToType< 2 >'], import_from_module='ns.core')
93 ## int-to-type.h (module 'core'): ns3::IntToType<3> [struct]
94 module.add_class('IntToType', import_from_module='ns.core', template_parameters=['3'])
95 ## int-to-type.h (module 'core'): ns3::IntToType<3>::v_e [enumeration]
96 module.add_enum('v_e', ['value'], outer_class=root_module['ns3::IntToType< 3 >'], import_from_module='ns.core')
97 ## int-to-type.h (module 'core'): ns3::IntToType<4> [struct]
98 module.add_class('IntToType', import_from_module='ns.core', template_parameters=['4'])
99 ## int-to-type.h (module 'core'): ns3::IntToType<4>::v_e [enumeration]
100 module.add_enum('v_e', ['value'], outer_class=root_module['ns3::IntToType< 4 >'], import_from_module='ns.core')
101 ## int-to-type.h (module 'core'): ns3::IntToType<5> [struct]
102 module.add_class('IntToType', import_from_module='ns.core', template_parameters=['5'])
103 ## int-to-type.h (module 'core'): ns3::IntToType<5>::v_e [enumeration]
104 module.add_enum('v_e', ['value'], outer_class=root_module['ns3::IntToType< 5 >'], import_from_module='ns.core')
105 ## int-to-type.h (module 'core'): ns3::IntToType<6> [struct]
106 module.add_class('IntToType', import_from_module='ns.core', template_parameters=['6'])
107 ## int-to-type.h (module 'core'): ns3::IntToType<6>::v_e [enumeration]
108 module.add_enum('v_e', ['value'], outer_class=root_module['ns3::IntToType< 6 >'], import_from_module='ns.core')
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700109 ## ipv4-address.h (module 'network'): ns3::Ipv4Address [class]
110 module.add_class('Ipv4Address', import_from_module='ns.network')
111 ## ipv4-address.h (module 'network'): ns3::Ipv4Address [class]
112 root_module['ns3::Ipv4Address'].implicitly_converts_to(root_module['ns3::Address'])
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -0800113 ## ipv4-interface-address.h (module 'internet'): ns3::Ipv4InterfaceAddress [class]
114 module.add_class('Ipv4InterfaceAddress', import_from_module='ns.internet')
115 ## ipv4-interface-address.h (module 'internet'): ns3::Ipv4InterfaceAddress::InterfaceAddressScope_e [enumeration]
116 module.add_enum('InterfaceAddressScope_e', ['HOST', 'LINK', 'GLOBAL'], outer_class=root_module['ns3::Ipv4InterfaceAddress'], import_from_module='ns.internet')
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700117 ## ipv4-address.h (module 'network'): ns3::Ipv4Mask [class]
118 module.add_class('Ipv4Mask', import_from_module='ns.network')
119 ## ipv6-address.h (module 'network'): ns3::Ipv6Address [class]
120 module.add_class('Ipv6Address', import_from_module='ns.network')
121 ## ipv6-address.h (module 'network'): ns3::Ipv6Address [class]
122 root_module['ns3::Ipv6Address'].implicitly_converts_to(root_module['ns3::Address'])
Alexander Afanasyev6f933532012-02-29 13:30:37 -0800123 ## ipv6-interface-address.h (module 'internet'): ns3::Ipv6InterfaceAddress [class]
124 module.add_class('Ipv6InterfaceAddress', import_from_module='ns.internet')
125 ## ipv6-interface-address.h (module 'internet'): ns3::Ipv6InterfaceAddress::State_e [enumeration]
126 module.add_enum('State_e', ['TENTATIVE', 'DEPRECATED', 'PREFERRED', 'PERMANENT', 'HOMEADDRESS', 'TENTATIVE_OPTIMISTIC', 'INVALID'], outer_class=root_module['ns3::Ipv6InterfaceAddress'], import_from_module='ns.internet')
127 ## ipv6-interface-address.h (module 'internet'): ns3::Ipv6InterfaceAddress::Scope_e [enumeration]
128 module.add_enum('Scope_e', ['HOST', 'LINKLOCAL', 'GLOBAL'], outer_class=root_module['ns3::Ipv6InterfaceAddress'], import_from_module='ns.internet')
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700129 ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix [class]
130 module.add_class('Ipv6Prefix', import_from_module='ns.network')
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700131 ## net-device-container.h (module 'network'): ns3::NetDeviceContainer [class]
132 module.add_class('NetDeviceContainer', import_from_module='ns.network')
133 ## node-container.h (module 'network'): ns3::NodeContainer [class]
134 module.add_class('NodeContainer', import_from_module='ns.network')
135 ## object-base.h (module 'core'): ns3::ObjectBase [class]
136 module.add_class('ObjectBase', allow_subclassing=True, import_from_module='ns.core')
137 ## object.h (module 'core'): ns3::ObjectDeleter [struct]
138 module.add_class('ObjectDeleter', import_from_module='ns.core')
139 ## object-factory.h (module 'core'): ns3::ObjectFactory [class]
140 module.add_class('ObjectFactory', import_from_module='ns.core')
141 ## packet-metadata.h (module 'network'): ns3::PacketMetadata [class]
142 module.add_class('PacketMetadata', import_from_module='ns.network')
143 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item [struct]
144 module.add_class('Item', import_from_module='ns.network', outer_class=root_module['ns3::PacketMetadata'])
145 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item [enumeration]
146 module.add_enum('', ['PAYLOAD', 'HEADER', 'TRAILER'], outer_class=root_module['ns3::PacketMetadata::Item'], import_from_module='ns.network')
147 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::ItemIterator [class]
148 module.add_class('ItemIterator', import_from_module='ns.network', outer_class=root_module['ns3::PacketMetadata'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700149 ## random-variable.h (module 'core'): ns3::RandomVariable [class]
150 module.add_class('RandomVariable', import_from_module='ns.core')
151 ## random-variable.h (module 'core'): ns3::SeedManager [class]
152 module.add_class('SeedManager', import_from_module='ns.core')
153 ## random-variable.h (module 'core'): ns3::SequentialVariable [class]
154 module.add_class('SequentialVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
155 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Chunk, ns3::ObjectBase, ns3::DefaultDeleter<ns3::Chunk> > [class]
156 module.add_class('SimpleRefCount', automatic_type_narrowing=True, import_from_module='ns.core', template_parameters=['ns3::Chunk', 'ns3::ObjectBase', 'ns3::DefaultDeleter<ns3::Chunk>'], parent=root_module['ns3::ObjectBase'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
157 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter> [class]
158 module.add_class('SimpleRefCount', automatic_type_narrowing=True, import_from_module='ns.core', template_parameters=['ns3::Object', 'ns3::ObjectBase', 'ns3::ObjectDeleter'], parent=root_module['ns3::ObjectBase'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
Alexander Afanasyev03d92e42012-02-01 21:06:53 -0800159 ## simulator.h (module 'core'): ns3::Simulator [class]
160 module.add_class('Simulator', destructor_visibility='private', import_from_module='ns.core')
Alexander Afanasyev4975f732011-12-20 17:52:19 -0800161 ## spring-mobility-helper.h (module 'NDNabstraction'): ns3::SpringMobilityHelper [class]
162 module.add_class('SpringMobilityHelper')
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700163 ## tag-buffer.h (module 'network'): ns3::TagBuffer [class]
164 module.add_class('TagBuffer', import_from_module='ns.network')
Alexander Afanasyev6f933532012-02-29 13:30:37 -0800165 ## timer.h (module 'core'): ns3::Timer [class]
166 module.add_class('Timer', import_from_module='ns.core')
167 ## timer.h (module 'core'): ns3::Timer::DestroyPolicy [enumeration]
168 module.add_enum('DestroyPolicy', ['CANCEL_ON_DESTROY', 'REMOVE_ON_DESTROY', 'CHECK_ON_DESTROY'], outer_class=root_module['ns3::Timer'], import_from_module='ns.core')
169 ## timer.h (module 'core'): ns3::Timer::State [enumeration]
170 module.add_enum('State', ['RUNNING', 'EXPIRED', 'SUSPENDED'], outer_class=root_module['ns3::Timer'], import_from_module='ns.core')
171 ## timer-impl.h (module 'core'): ns3::TimerImpl [class]
172 module.add_class('TimerImpl', allow_subclassing=True, import_from_module='ns.core')
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700173 ## random-variable.h (module 'core'): ns3::TriangularVariable [class]
174 module.add_class('TriangularVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
175 ## type-id.h (module 'core'): ns3::TypeId [class]
176 module.add_class('TypeId', import_from_module='ns.core')
177 ## type-id.h (module 'core'): ns3::TypeId::AttributeFlag [enumeration]
178 module.add_enum('AttributeFlag', ['ATTR_GET', 'ATTR_SET', 'ATTR_CONSTRUCT', 'ATTR_SGC'], outer_class=root_module['ns3::TypeId'], import_from_module='ns.core')
179 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation [struct]
180 module.add_class('AttributeInformation', import_from_module='ns.core', outer_class=root_module['ns3::TypeId'])
181 ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation [struct]
182 module.add_class('TraceSourceInformation', import_from_module='ns.core', outer_class=root_module['ns3::TypeId'])
183 ## random-variable.h (module 'core'): ns3::UniformVariable [class]
184 module.add_class('UniformVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
Alexander Afanasyev4975f732011-12-20 17:52:19 -0800185 ## vector.h (module 'core'): ns3::Vector2D [class]
186 module.add_class('Vector2D', import_from_module='ns.core')
187 ## vector.h (module 'core'): ns3::Vector3D [class]
188 module.add_class('Vector3D', import_from_module='ns.core')
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700189 ## random-variable.h (module 'core'): ns3::WeibullVariable [class]
190 module.add_class('WeibullVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
191 ## random-variable.h (module 'core'): ns3::ZetaVariable [class]
192 module.add_class('ZetaVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
193 ## random-variable.h (module 'core'): ns3::ZipfVariable [class]
194 module.add_class('ZipfVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
195 ## empty.h (module 'core'): ns3::empty [class]
196 module.add_class('empty', import_from_module='ns.core')
197 ## int64x64-double.h (module 'core'): ns3::int64x64_t [class]
198 module.add_class('int64x64_t', import_from_module='ns.core')
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700199 ## chunk.h (module 'network'): ns3::Chunk [class]
200 module.add_class('Chunk', import_from_module='ns.network', parent=root_module['ns3::SimpleRefCount< ns3::Chunk, ns3::ObjectBase, ns3::DefaultDeleter<ns3::Chunk> >'])
201 ## random-variable.h (module 'core'): ns3::ConstantVariable [class]
202 module.add_class('ConstantVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
203 ## random-variable.h (module 'core'): ns3::DeterministicVariable [class]
204 module.add_class('DeterministicVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
205 ## random-variable.h (module 'core'): ns3::EmpiricalVariable [class]
206 module.add_class('EmpiricalVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
207 ## random-variable.h (module 'core'): ns3::ErlangVariable [class]
208 module.add_class('ErlangVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
209 ## random-variable.h (module 'core'): ns3::ExponentialVariable [class]
210 module.add_class('ExponentialVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
211 ## random-variable.h (module 'core'): ns3::GammaVariable [class]
212 module.add_class('GammaVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
213 ## header.h (module 'network'): ns3::Header [class]
214 module.add_class('Header', import_from_module='ns.network', parent=root_module['ns3::Chunk'])
215 ## random-variable.h (module 'core'): ns3::IntEmpiricalVariable [class]
216 module.add_class('IntEmpiricalVariable', import_from_module='ns.core', parent=root_module['ns3::EmpiricalVariable'])
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -0800217 ## ipv4-header.h (module 'internet'): ns3::Ipv4Header [class]
218 module.add_class('Ipv4Header', import_from_module='ns.internet', parent=root_module['ns3::Header'])
219 ## ipv4-header.h (module 'internet'): ns3::Ipv4Header::DscpType [enumeration]
220 module.add_enum('DscpType', ['DscpDefault', 'CS1', 'AF11', 'AF12', 'AF13', 'CS2', 'AF21', 'AF22', 'AF23', 'CS3', 'AF31', 'AF32', 'AF33', 'CS4', 'AF41', 'AF42', 'AF43', 'CS5', 'EF', 'CS6', 'CS7'], outer_class=root_module['ns3::Ipv4Header'], import_from_module='ns.internet')
221 ## ipv4-header.h (module 'internet'): ns3::Ipv4Header::EcnType [enumeration]
222 module.add_enum('EcnType', ['NotECT', 'ECT1', 'ECT0', 'CE'], outer_class=root_module['ns3::Ipv4Header'], import_from_module='ns.internet')
Alexander Afanasyev6f933532012-02-29 13:30:37 -0800223 ## ipv6-header.h (module 'internet'): ns3::Ipv6Header [class]
224 module.add_class('Ipv6Header', import_from_module='ns.internet', parent=root_module['ns3::Header'])
225 ## ipv6-header.h (module 'internet'): ns3::Ipv6Header::NextHeader_e [enumeration]
226 module.add_enum('NextHeader_e', ['IPV6_EXT_HOP_BY_HOP', 'IPV6_IPV4', 'IPV6_TCP', 'IPV6_UDP', 'IPV6_IPV6', 'IPV6_EXT_ROUTING', 'IPV6_EXT_FRAGMENTATION', 'IPV6_EXT_CONFIDENTIALITY', 'IPV6_EXT_AUTHENTIFICATION', 'IPV6_ICMPV6', 'IPV6_EXT_END', 'IPV6_EXT_DESTINATION', 'IPV6_SCTP', 'IPV6_EXT_MOBILITY', 'IPV6_UDP_LITE'], outer_class=root_module['ns3::Ipv6Header'], import_from_module='ns.internet')
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700227 ## random-variable.h (module 'core'): ns3::LogNormalVariable [class]
228 module.add_class('LogNormalVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
229 ## random-variable.h (module 'core'): ns3::NormalVariable [class]
230 module.add_class('NormalVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
231 ## object.h (module 'core'): ns3::Object [class]
232 module.add_class('Object', import_from_module='ns.core', parent=root_module['ns3::SimpleRefCount< ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter >'])
233 ## object.h (module 'core'): ns3::Object::AggregateIterator [class]
234 module.add_class('AggregateIterator', import_from_module='ns.core', outer_class=root_module['ns3::Object'])
235 ## random-variable.h (module 'core'): ns3::ParetoVariable [class]
236 module.add_class('ParetoVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700237 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> > [class]
238 module.add_class('SimpleRefCount', automatic_type_narrowing=True, import_from_module='ns.core', template_parameters=['ns3::AttributeAccessor', 'ns3::empty', 'ns3::DefaultDeleter<ns3::AttributeAccessor>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
239 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter<ns3::AttributeChecker> > [class]
240 module.add_class('SimpleRefCount', automatic_type_narrowing=True, import_from_module='ns.core', template_parameters=['ns3::AttributeChecker', 'ns3::empty', 'ns3::DefaultDeleter<ns3::AttributeChecker>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
241 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter<ns3::AttributeValue> > [class]
242 module.add_class('SimpleRefCount', automatic_type_narrowing=True, import_from_module='ns.core', template_parameters=['ns3::AttributeValue', 'ns3::empty', 'ns3::DefaultDeleter<ns3::AttributeValue>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
243 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> > [class]
244 module.add_class('SimpleRefCount', automatic_type_narrowing=True, import_from_module='ns.core', template_parameters=['ns3::CallbackImplBase', 'ns3::empty', 'ns3::DefaultDeleter<ns3::CallbackImplBase>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
Alexander Afanasyevb3e4b852011-12-23 15:58:20 -0800245 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CcnxAppTracer, ns3::empty, ns3::DefaultDeleter<ns3::CcnxAppTracer> > [class]
246 module.add_class('SimpleRefCount', automatic_type_narrowing=True, template_parameters=['ns3::CcnxAppTracer', 'ns3::empty', 'ns3::DefaultDeleter<ns3::CcnxAppTracer>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700247 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CcnxFaceContainer, ns3::empty, ns3::DefaultDeleter<ns3::CcnxFaceContainer> > [class]
248 module.add_class('SimpleRefCount', automatic_type_narrowing=True, template_parameters=['ns3::CcnxFaceContainer', 'ns3::empty', 'ns3::DefaultDeleter<ns3::CcnxFaceContainer>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
Alexander Afanasyevb3e4b852011-12-23 15:58:20 -0800249 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CcnxL3Tracer, ns3::empty, ns3::DefaultDeleter<ns3::CcnxL3Tracer> > [class]
250 module.add_class('SimpleRefCount', automatic_type_narrowing=True, template_parameters=['ns3::CcnxL3Tracer', 'ns3::empty', 'ns3::DefaultDeleter<ns3::CcnxL3Tracer>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700251 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CcnxNameComponents, ns3::empty, ns3::DefaultDeleter<ns3::CcnxNameComponents> > [class]
252 module.add_class('SimpleRefCount', automatic_type_narrowing=True, template_parameters=['ns3::CcnxNameComponents', 'ns3::empty', 'ns3::DefaultDeleter<ns3::CcnxNameComponents>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -0800253 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CcnxPathWeightTracer, ns3::empty, ns3::DefaultDeleter<ns3::CcnxPathWeightTracer> > [class]
254 module.add_class('SimpleRefCount', automatic_type_narrowing=True, template_parameters=['ns3::CcnxPathWeightTracer', 'ns3::empty', 'ns3::DefaultDeleter<ns3::CcnxPathWeightTracer>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700255 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::EventImpl, ns3::empty, ns3::DefaultDeleter<ns3::EventImpl> > [class]
256 module.add_class('SimpleRefCount', automatic_type_narrowing=True, import_from_module='ns.core', template_parameters=['ns3::EventImpl', 'ns3::empty', 'ns3::DefaultDeleter<ns3::EventImpl>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -0800257 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Ipv4AppTracer, ns3::empty, ns3::DefaultDeleter<ns3::Ipv4AppTracer> > [class]
258 module.add_class('SimpleRefCount', automatic_type_narrowing=True, template_parameters=['ns3::Ipv4AppTracer', 'ns3::empty', 'ns3::DefaultDeleter<ns3::Ipv4AppTracer>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
Alexander Afanasyev03d92e42012-02-01 21:06:53 -0800259 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Ipv4L3Tracer, ns3::empty, ns3::DefaultDeleter<ns3::Ipv4L3Tracer> > [class]
260 module.add_class('SimpleRefCount', automatic_type_narrowing=True, template_parameters=['ns3::Ipv4L3Tracer', 'ns3::empty', 'ns3::DefaultDeleter<ns3::Ipv4L3Tracer>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -0800261 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Ipv4MulticastRoute, ns3::empty, ns3::DefaultDeleter<ns3::Ipv4MulticastRoute> > [class]
262 module.add_class('SimpleRefCount', automatic_type_narrowing=True, import_from_module='ns.core', template_parameters=['ns3::Ipv4MulticastRoute', 'ns3::empty', 'ns3::DefaultDeleter<ns3::Ipv4MulticastRoute>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
263 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Ipv4Route, ns3::empty, ns3::DefaultDeleter<ns3::Ipv4Route> > [class]
264 module.add_class('SimpleRefCount', automatic_type_narrowing=True, import_from_module='ns.core', template_parameters=['ns3::Ipv4Route', 'ns3::empty', 'ns3::DefaultDeleter<ns3::Ipv4Route>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700265 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::NixVector, ns3::empty, ns3::DefaultDeleter<ns3::NixVector> > [class]
266 module.add_class('SimpleRefCount', automatic_type_narrowing=True, import_from_module='ns.core', template_parameters=['ns3::NixVector', 'ns3::empty', 'ns3::DefaultDeleter<ns3::NixVector>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
Alexander Afanasyev03d92e42012-02-01 21:06:53 -0800267 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::OutputStreamWrapper, ns3::empty, ns3::DefaultDeleter<ns3::OutputStreamWrapper> > [class]
268 module.add_class('SimpleRefCount', automatic_type_narrowing=True, import_from_module='ns.core', template_parameters=['ns3::OutputStreamWrapper', 'ns3::empty', 'ns3::DefaultDeleter<ns3::OutputStreamWrapper>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700269 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Packet, ns3::empty, ns3::DefaultDeleter<ns3::Packet> > [class]
270 module.add_class('SimpleRefCount', automatic_type_narrowing=True, import_from_module='ns.core', template_parameters=['ns3::Packet', 'ns3::empty', 'ns3::DefaultDeleter<ns3::Packet>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
Alexander Afanasyevae3b7c32011-12-13 13:20:06 -0800271 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::TopologyReader, ns3::empty, ns3::DefaultDeleter<ns3::TopologyReader> > [class]
272 module.add_class('SimpleRefCount', automatic_type_narrowing=True, import_from_module='ns.core', template_parameters=['ns3::TopologyReader', 'ns3::empty', 'ns3::DefaultDeleter<ns3::TopologyReader>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700273 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter<ns3::TraceSourceAccessor> > [class]
274 module.add_class('SimpleRefCount', automatic_type_narrowing=True, import_from_module='ns.core', template_parameters=['ns3::TraceSourceAccessor', 'ns3::empty', 'ns3::DefaultDeleter<ns3::TraceSourceAccessor>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -0800275 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::WindowTracer, ns3::empty, ns3::DefaultDeleter<ns3::WindowTracer> > [class]
276 module.add_class('SimpleRefCount', automatic_type_narrowing=True, template_parameters=['ns3::WindowTracer', 'ns3::empty', 'ns3::DefaultDeleter<ns3::WindowTracer>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
277 ## socket.h (module 'network'): ns3::Socket [class]
278 module.add_class('Socket', import_from_module='ns.network', parent=root_module['ns3::Object'])
279 ## socket.h (module 'network'): ns3::Socket::SocketErrno [enumeration]
280 module.add_enum('SocketErrno', ['ERROR_NOTERROR', 'ERROR_ISCONN', 'ERROR_NOTCONN', 'ERROR_MSGSIZE', 'ERROR_AGAIN', 'ERROR_SHUTDOWN', 'ERROR_OPNOTSUPP', 'ERROR_AFNOSUPPORT', 'ERROR_INVAL', 'ERROR_BADF', 'ERROR_NOROUTETOHOST', 'ERROR_NODEV', 'ERROR_ADDRNOTAVAIL', 'ERROR_ADDRINUSE', 'SOCKET_ERRNO_LAST'], outer_class=root_module['ns3::Socket'], import_from_module='ns.network')
281 ## socket.h (module 'network'): ns3::Socket::SocketType [enumeration]
282 module.add_enum('SocketType', ['NS3_SOCK_STREAM', 'NS3_SOCK_SEQPACKET', 'NS3_SOCK_DGRAM', 'NS3_SOCK_RAW'], outer_class=root_module['ns3::Socket'], import_from_module='ns.network')
283 ## tag.h (module 'network'): ns3::Tag [class]
284 module.add_class('Tag', import_from_module='ns.network', parent=root_module['ns3::Object'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700285 ## nstime.h (module 'core'): ns3::Time [class]
286 module.add_class('Time', import_from_module='ns.core')
287 ## nstime.h (module 'core'): ns3::Time::Unit [enumeration]
288 module.add_enum('Unit', ['S', 'MS', 'US', 'NS', 'PS', 'FS', 'LAST'], outer_class=root_module['ns3::Time'], import_from_module='ns.core')
289 ## nstime.h (module 'core'): ns3::Time [class]
290 root_module['ns3::Time'].implicitly_converts_to(root_module['ns3::int64x64_t'])
291 ## topology-reader.h (module 'topology-read'): ns3::TopologyReader [class]
Alexander Afanasyevae3b7c32011-12-13 13:20:06 -0800292 module.add_class('TopologyReader', import_from_module='ns.topology_read', parent=root_module['ns3::SimpleRefCount< ns3::TopologyReader, ns3::empty, ns3::DefaultDeleter<ns3::TopologyReader> >'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700293 ## topology-reader.h (module 'topology-read'): ns3::TopologyReader::Link [class]
294 module.add_class('Link', import_from_module='ns.topology_read', outer_class=root_module['ns3::TopologyReader'])
295 ## trace-source-accessor.h (module 'core'): ns3::TraceSourceAccessor [class]
296 module.add_class('TraceSourceAccessor', import_from_module='ns.core', parent=root_module['ns3::SimpleRefCount< ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter<ns3::TraceSourceAccessor> >'])
297 ## trailer.h (module 'network'): ns3::Trailer [class]
298 module.add_class('Trailer', import_from_module='ns.network', parent=root_module['ns3::Chunk'])
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -0800299 ## ccnx-path-stretch-tag.h (module 'NDNabstraction'): ns3::WeightsPathStretchTag [class]
300 module.add_class('WeightsPathStretchTag', parent=root_module['ns3::Tag'])
301 ## ccnx-path-stretch-tag.h (module 'NDNabstraction'): ns3::WeightsPathStretchTag::NodeWeightPair [struct]
302 module.add_class('NodeWeightPair', outer_class=root_module['ns3::WeightsPathStretchTag'])
303 ## ccnx-consumer-window-tracer.h (module 'NDNabstraction'): ns3::WindowTracer [class]
304 module.add_class('WindowTracer', parent=root_module['ns3::SimpleRefCount< ns3::WindowTracer, ns3::empty, ns3::DefaultDeleter<ns3::WindowTracer> >'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700305 ## annotated-topology-reader.h (module 'NDNabstraction'): ns3::AnnotatedTopologyReader [class]
306 module.add_class('AnnotatedTopologyReader', parent=root_module['ns3::TopologyReader'])
307 ## application.h (module 'network'): ns3::Application [class]
308 module.add_class('Application', import_from_module='ns.network', parent=root_module['ns3::Object'])
309 ## attribute.h (module 'core'): ns3::AttributeAccessor [class]
310 module.add_class('AttributeAccessor', import_from_module='ns.core', parent=root_module['ns3::SimpleRefCount< ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> >'])
311 ## attribute.h (module 'core'): ns3::AttributeChecker [class]
312 module.add_class('AttributeChecker', allow_subclassing=False, automatic_type_narrowing=True, import_from_module='ns.core', parent=root_module['ns3::SimpleRefCount< ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter<ns3::AttributeChecker> >'])
313 ## attribute.h (module 'core'): ns3::AttributeValue [class]
314 module.add_class('AttributeValue', allow_subclassing=False, automatic_type_narrowing=True, import_from_module='ns.core', parent=root_module['ns3::SimpleRefCount< ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter<ns3::AttributeValue> >'])
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -0800315 ## batches.h (module 'NDNabstraction'): ns3::BatchesChecker [class]
316 module.add_class('BatchesChecker', parent=root_module['ns3::AttributeChecker'])
317 ## batches.h (module 'NDNabstraction'): ns3::BatchesValue [class]
318 module.add_class('BatchesValue', parent=root_module['ns3::AttributeValue'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700319 ## callback.h (module 'core'): ns3::CallbackChecker [class]
320 module.add_class('CallbackChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker'])
321 ## callback.h (module 'core'): ns3::CallbackImplBase [class]
322 module.add_class('CallbackImplBase', import_from_module='ns.core', parent=root_module['ns3::SimpleRefCount< ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> >'])
323 ## callback.h (module 'core'): ns3::CallbackValue [class]
324 module.add_class('CallbackValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
325 ## ccnx.h (module 'NDNabstraction'): ns3::Ccnx [class]
326 module.add_class('Ccnx', parent=root_module['ns3::Object'])
Alexander Afanasyev8f5a9bb2011-12-18 19:49:02 -0800327 ## ccnx.h (module 'NDNabstraction'): ns3::Ccnx::DropReason [enumeration]
328 module.add_enum('DropReason', ['DUPLICATED', 'SUPPRESSED', 'NO_FACES', 'NON_DUPLICATED', 'AFTER_SATISFIED', 'UNSOLICITED'], outer_class=root_module['ns3::Ccnx'])
Alexander Afanasyev07827182011-12-13 01:07:32 -0800329 ## ccnx-app.h (module 'NDNabstraction'): ns3::CcnxApp [class]
330 module.add_class('CcnxApp', parent=root_module['ns3::Application'])
Alexander Afanasyevb3e4b852011-12-23 15:58:20 -0800331 ## ccnx-app-tracer.h (module 'NDNabstraction'): ns3::CcnxAppTracer [class]
332 module.add_class('CcnxAppTracer', parent=root_module['ns3::SimpleRefCount< ns3::CcnxAppTracer, ns3::empty, ns3::DefaultDeleter<ns3::CcnxAppTracer> >'])
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -0800333 ## ccnx-consumer-window-tracer.h (module 'NDNabstraction'): ns3::CcnxConsumerWindowTracer [class]
334 module.add_class('CcnxConsumerWindowTracer', parent=root_module['ns3::WindowTracer'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700335 ## ccnx-content-object-header.h (module 'NDNabstraction'): ns3::CcnxContentObjectHeader [class]
336 module.add_class('CcnxContentObjectHeader', parent=root_module['ns3::Header'])
Alexander Afanasyev9568f952012-04-05 16:09:14 -0700337 ## ccnx-content-object-header.h (module 'NDNabstraction'): ns3::CcnxContentObjectHeader::SignedInfo [struct]
338 module.add_class('SignedInfo', outer_class=root_module['ns3::CcnxContentObjectHeader'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700339 ## ccnx-content-object-header.h (module 'NDNabstraction'): ns3::CcnxContentObjectTail [class]
340 module.add_class('CcnxContentObjectTail', parent=root_module['ns3::Trailer'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700341 ## ccnx-face.h (module 'NDNabstraction'): ns3::CcnxFace [class]
Alexander Afanasyev53872ce2011-12-16 13:17:18 -0800342 module.add_class('CcnxFace', parent=root_module['ns3::Object'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700343 ## ccnx-face-container.h (module 'NDNabstraction'): ns3::CcnxFaceContainer [class]
344 module.add_class('CcnxFaceContainer', parent=root_module['ns3::SimpleRefCount< ns3::CcnxFaceContainer, ns3::empty, ns3::DefaultDeleter<ns3::CcnxFaceContainer> >'])
Alexander Afanasyev07827182011-12-13 01:07:32 -0800345 ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFib [class]
346 module.add_class('CcnxFib', parent=root_module['ns3::Object'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700347 ## ccnx-interest-header.h (module 'NDNabstraction'): ns3::CcnxInterestHeader [class]
348 module.add_class('CcnxInterestHeader', parent=root_module['ns3::Header'])
Alexander Afanasyev07827182011-12-13 01:07:32 -0800349 ## ccnx-interest-header.h (module 'NDNabstraction'): ns3::CcnxInterestHeader [enumeration]
350 module.add_enum('', ['NORMAL_INTEREST', 'NACK_LOOP', 'NACK_CONGESTION', 'NACK_GIVEUP_PIT'], outer_class=root_module['ns3::CcnxInterestHeader'])
Alexander Afanasyevb3e4b852011-12-23 15:58:20 -0800351 ## ccnx-l3-tracer.h (module 'NDNabstraction'): ns3::CcnxL3Tracer [class]
352 module.add_class('CcnxL3Tracer', parent=root_module['ns3::SimpleRefCount< ns3::CcnxL3Tracer, ns3::empty, ns3::DefaultDeleter<ns3::CcnxL3Tracer> >'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700353 ## ccnx-name-components.h (module 'NDNabstraction'): ns3::CcnxNameComponents [class]
354 module.add_class('CcnxNameComponents', parent=root_module['ns3::SimpleRefCount< ns3::CcnxNameComponents, ns3::empty, ns3::DefaultDeleter<ns3::CcnxNameComponents> >'])
355 ## ccnx-name-components.h (module 'NDNabstraction'): ns3::CcnxNameComponentsChecker [class]
356 module.add_class('CcnxNameComponentsChecker', parent=root_module['ns3::AttributeChecker'])
357 ## ccnx-name-components.h (module 'NDNabstraction'): ns3::CcnxNameComponentsValue [class]
358 module.add_class('CcnxNameComponentsValue', parent=root_module['ns3::AttributeValue'])
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -0800359 ## ccnx-path-weight-tracer.h (module 'NDNabstraction'): ns3::CcnxPathWeightTracer [class]
360 module.add_class('CcnxPathWeightTracer', parent=root_module['ns3::SimpleRefCount< ns3::CcnxPathWeightTracer, ns3::empty, ns3::DefaultDeleter<ns3::CcnxPathWeightTracer> >'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700361 ## attribute.h (module 'core'): ns3::EmptyAttributeValue [class]
362 module.add_class('EmptyAttributeValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
363 ## event-impl.h (module 'core'): ns3::EventImpl [class]
364 module.add_class('EventImpl', import_from_module='ns.core', parent=root_module['ns3::SimpleRefCount< ns3::EventImpl, ns3::empty, ns3::DefaultDeleter<ns3::EventImpl> >'])
365 ## integer.h (module 'core'): ns3::IntegerValue [class]
366 module.add_class('IntegerValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
Alexander Afanasyev6f933532012-02-29 13:30:37 -0800367 ## ip-l4-protocol.h (module 'internet'): ns3::IpL4Protocol [class]
368 module.add_class('IpL4Protocol', import_from_module='ns.internet', parent=root_module['ns3::Object'])
369 ## ip-l4-protocol.h (module 'internet'): ns3::IpL4Protocol::RxStatus [enumeration]
370 module.add_enum('RxStatus', ['RX_OK', 'RX_CSUM_FAILED', 'RX_ENDPOINT_CLOSED', 'RX_ENDPOINT_UNREACH'], outer_class=root_module['ns3::IpL4Protocol'], import_from_module='ns.internet')
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -0800371 ## ipv4.h (module 'internet'): ns3::Ipv4 [class]
372 module.add_class('Ipv4', import_from_module='ns.internet', parent=root_module['ns3::Object'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700373 ## ipv4-address.h (module 'network'): ns3::Ipv4AddressChecker [class]
374 module.add_class('Ipv4AddressChecker', import_from_module='ns.network', parent=root_module['ns3::AttributeChecker'])
375 ## ipv4-address.h (module 'network'): ns3::Ipv4AddressValue [class]
376 module.add_class('Ipv4AddressValue', import_from_module='ns.network', parent=root_module['ns3::AttributeValue'])
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -0800377 ## ipv4-app-tracer.h (module 'NDNabstraction'): ns3::Ipv4AppTracer [class]
378 module.add_class('Ipv4AppTracer', parent=root_module['ns3::SimpleRefCount< ns3::Ipv4AppTracer, ns3::empty, ns3::DefaultDeleter<ns3::Ipv4AppTracer> >'])
Alexander Afanasyev03d92e42012-02-01 21:06:53 -0800379 ## ipv4-l3-protocol.h (module 'internet'): ns3::Ipv4L3Protocol [class]
380 module.add_class('Ipv4L3Protocol', import_from_module='ns.internet', parent=root_module['ns3::Ipv4'])
381 ## ipv4-l3-protocol.h (module 'internet'): ns3::Ipv4L3Protocol::DropReason [enumeration]
382 module.add_enum('DropReason', ['DROP_TTL_EXPIRED', 'DROP_NO_ROUTE', 'DROP_BAD_CHECKSUM', 'DROP_INTERFACE_DOWN', 'DROP_ROUTE_ERROR', 'DROP_FRAGMENT_TIMEOUT'], outer_class=root_module['ns3::Ipv4L3Protocol'], import_from_module='ns.internet')
383 ## ipv4-l3-tracer.h (module 'NDNabstraction'): ns3::Ipv4L3Tracer [class]
384 module.add_class('Ipv4L3Tracer', parent=root_module['ns3::SimpleRefCount< ns3::Ipv4L3Tracer, ns3::empty, ns3::DefaultDeleter<ns3::Ipv4L3Tracer> >'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700385 ## ipv4-address.h (module 'network'): ns3::Ipv4MaskChecker [class]
386 module.add_class('Ipv4MaskChecker', import_from_module='ns.network', parent=root_module['ns3::AttributeChecker'])
387 ## ipv4-address.h (module 'network'): ns3::Ipv4MaskValue [class]
388 module.add_class('Ipv4MaskValue', import_from_module='ns.network', parent=root_module['ns3::AttributeValue'])
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -0800389 ## ipv4-route.h (module 'internet'): ns3::Ipv4MulticastRoute [class]
390 module.add_class('Ipv4MulticastRoute', import_from_module='ns.internet', parent=root_module['ns3::SimpleRefCount< ns3::Ipv4MulticastRoute, ns3::empty, ns3::DefaultDeleter<ns3::Ipv4MulticastRoute> >'])
391 ## ipv4-route.h (module 'internet'): ns3::Ipv4Route [class]
392 module.add_class('Ipv4Route', import_from_module='ns.internet', parent=root_module['ns3::SimpleRefCount< ns3::Ipv4Route, ns3::empty, ns3::DefaultDeleter<ns3::Ipv4Route> >'])
Alexander Afanasyev03d92e42012-02-01 21:06:53 -0800393 ## ipv4-routing-protocol.h (module 'internet'): ns3::Ipv4RoutingProtocol [class]
394 module.add_class('Ipv4RoutingProtocol', import_from_module='ns.internet', parent=root_module['ns3::Object'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700395 ## ipv6-address.h (module 'network'): ns3::Ipv6AddressChecker [class]
396 module.add_class('Ipv6AddressChecker', import_from_module='ns.network', parent=root_module['ns3::AttributeChecker'])
397 ## ipv6-address.h (module 'network'): ns3::Ipv6AddressValue [class]
398 module.add_class('Ipv6AddressValue', import_from_module='ns.network', parent=root_module['ns3::AttributeValue'])
Alexander Afanasyev6f933532012-02-29 13:30:37 -0800399 ## ipv6-interface.h (module 'internet'): ns3::Ipv6Interface [class]
400 module.add_class('Ipv6Interface', import_from_module='ns.internet', parent=root_module['ns3::Object'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700401 ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixChecker [class]
402 module.add_class('Ipv6PrefixChecker', import_from_module='ns.network', parent=root_module['ns3::AttributeChecker'])
403 ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixValue [class]
404 module.add_class('Ipv6PrefixValue', import_from_module='ns.network', parent=root_module['ns3::AttributeValue'])
Alexander Afanasyev4975f732011-12-20 17:52:19 -0800405 ## mobility-model.h (module 'mobility'): ns3::MobilityModel [class]
406 module.add_class('MobilityModel', import_from_module='ns.mobility', parent=root_module['ns3::Object'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700407 ## net-device.h (module 'network'): ns3::NetDevice [class]
408 module.add_class('NetDevice', import_from_module='ns.network', parent=root_module['ns3::Object'])
409 ## net-device.h (module 'network'): ns3::NetDevice::PacketType [enumeration]
410 module.add_enum('PacketType', ['PACKET_HOST', 'NS3_PACKET_HOST', 'PACKET_BROADCAST', 'NS3_PACKET_BROADCAST', 'PACKET_MULTICAST', 'NS3_PACKET_MULTICAST', 'PACKET_OTHERHOST', 'NS3_PACKET_OTHERHOST'], outer_class=root_module['ns3::NetDevice'], import_from_module='ns.network')
411 ## nix-vector.h (module 'network'): ns3::NixVector [class]
412 module.add_class('NixVector', import_from_module='ns.network', parent=root_module['ns3::SimpleRefCount< ns3::NixVector, ns3::empty, ns3::DefaultDeleter<ns3::NixVector> >'])
413 ## node.h (module 'network'): ns3::Node [class]
414 module.add_class('Node', import_from_module='ns.network', parent=root_module['ns3::Object'])
415 ## object-factory.h (module 'core'): ns3::ObjectFactoryChecker [class]
416 module.add_class('ObjectFactoryChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker'])
417 ## object-factory.h (module 'core'): ns3::ObjectFactoryValue [class]
418 module.add_class('ObjectFactoryValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
Alexander Afanasyev03d92e42012-02-01 21:06:53 -0800419 ## output-stream-wrapper.h (module 'network'): ns3::OutputStreamWrapper [class]
420 module.add_class('OutputStreamWrapper', import_from_module='ns.network', parent=root_module['ns3::SimpleRefCount< ns3::OutputStreamWrapper, ns3::empty, ns3::DefaultDeleter<ns3::OutputStreamWrapper> >'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700421 ## packet.h (module 'network'): ns3::Packet [class]
422 module.add_class('Packet', import_from_module='ns.network', parent=root_module['ns3::SimpleRefCount< ns3::Packet, ns3::empty, ns3::DefaultDeleter<ns3::Packet> >'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700423 ## random-variable.h (module 'core'): ns3::RandomVariableChecker [class]
424 module.add_class('RandomVariableChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker'])
425 ## random-variable.h (module 'core'): ns3::RandomVariableValue [class]
426 module.add_class('RandomVariableValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
Alexander Afanasyev07827182011-12-13 01:07:32 -0800427 ## rocketfuel-weights-reader.h (module 'NDNabstraction'): ns3::RocketfuelWeightsReader [class]
Alexander Afanasyevae3b7c32011-12-13 13:20:06 -0800428 module.add_class('RocketfuelWeightsReader', parent=root_module['ns3::AnnotatedTopologyReader'])
429 ## rocketfuel-weights-reader.h (module 'NDNabstraction'): ns3::RocketfuelWeightsReader [enumeration]
Alexander Afanasyevb3e4b852011-12-23 15:58:20 -0800430 module.add_enum('', ['WEIGHTS', 'LATENCIES', 'POSITIONS'], outer_class=root_module['ns3::RocketfuelWeightsReader'])
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -0800431 ## socket.h (module 'network'): ns3::SocketAddressTag [class]
432 module.add_class('SocketAddressTag', import_from_module='ns.network', parent=root_module['ns3::Tag'])
433 ## socket.h (module 'network'): ns3::SocketIpTtlTag [class]
434 module.add_class('SocketIpTtlTag', import_from_module='ns.network', parent=root_module['ns3::Tag'])
435 ## socket.h (module 'network'): ns3::SocketSetDontFragmentTag [class]
436 module.add_class('SocketSetDontFragmentTag', import_from_module='ns.network', parent=root_module['ns3::Tag'])
Alexander Afanasyev4975f732011-12-20 17:52:19 -0800437 ## spring-mobility-model.h (module 'NDNabstraction'): ns3::SpringMobilityModel [class]
438 module.add_class('SpringMobilityModel', parent=root_module['ns3::MobilityModel'])
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -0800439 ## ccnx-consumer-window-tracer.h (module 'NDNabstraction'): ns3::TcpCongestionWindowTracer [class]
440 module.add_class('TcpCongestionWindowTracer', parent=root_module['ns3::WindowTracer'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700441 ## nstime.h (module 'core'): ns3::TimeChecker [class]
442 module.add_class('TimeChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker'])
443 ## nstime.h (module 'core'): ns3::TimeValue [class]
444 module.add_class('TimeValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
445 ## type-id.h (module 'core'): ns3::TypeIdChecker [class]
446 module.add_class('TypeIdChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker'])
447 ## type-id.h (module 'core'): ns3::TypeIdValue [class]
448 module.add_class('TypeIdValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
Alexander Afanasyev4975f732011-12-20 17:52:19 -0800449 ## vector.h (module 'core'): ns3::Vector2DChecker [class]
450 module.add_class('Vector2DChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker'])
451 ## vector.h (module 'core'): ns3::Vector2DValue [class]
452 module.add_class('Vector2DValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
453 ## vector.h (module 'core'): ns3::Vector3DChecker [class]
454 module.add_class('Vector3DChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker'])
455 ## vector.h (module 'core'): ns3::Vector3DValue [class]
456 module.add_class('Vector3DValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700457 ## address.h (module 'network'): ns3::AddressChecker [class]
458 module.add_class('AddressChecker', import_from_module='ns.network', parent=root_module['ns3::AttributeChecker'])
459 ## address.h (module 'network'): ns3::AddressValue [class]
460 module.add_class('AddressValue', import_from_module='ns.network', parent=root_module['ns3::AttributeValue'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700461 module.add_container('std::map< std::string, std::string >', ('std::string', 'std::string'), container_type='map')
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -0800462 module.add_container('std::list< ns3::WeightsPathStretchTag::NodeWeightPair >', 'ns3::WeightsPathStretchTag::NodeWeightPair', container_type='list')
463 module.add_container('std::list< ns3::TopologyReader::Link >', 'ns3::TopologyReader::Link', container_type='list')
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700464 module.add_container('std::list< boost::reference_wrapper< std::string const > >', 'boost::reference_wrapper< std::basic_string< char, std::char_traits< char >, std::allocator< char > > const >', container_type='list')
465 module.add_container('std::list< std::string >', 'std::string', container_type='list')
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -0800466 module.add_container('std::map< unsigned int, unsigned int >', ('unsigned int', 'unsigned int'), container_type='map')
Alexander Afanasyev4975f732011-12-20 17:52:19 -0800467 typehandlers.add_type_alias('ns3::Vector3DChecker', 'ns3::VectorChecker')
468 typehandlers.add_type_alias('ns3::Vector3DChecker*', 'ns3::VectorChecker*')
469 typehandlers.add_type_alias('ns3::Vector3DChecker&', 'ns3::VectorChecker&')
470 module.add_typedef(root_module['ns3::Vector3DChecker'], 'VectorChecker')
471 typehandlers.add_type_alias('ns3::Vector3D', 'ns3::Vector')
472 typehandlers.add_type_alias('ns3::Vector3D*', 'ns3::Vector*')
473 typehandlers.add_type_alias('ns3::Vector3D&', 'ns3::Vector&')
474 module.add_typedef(root_module['ns3::Vector3D'], 'Vector')
475 typehandlers.add_type_alias('ns3::Vector3DValue', 'ns3::VectorValue')
476 typehandlers.add_type_alias('ns3::Vector3DValue*', 'ns3::VectorValue*')
477 typehandlers.add_type_alias('ns3::Vector3DValue&', 'ns3::VectorValue&')
478 module.add_typedef(root_module['ns3::Vector3DValue'], 'VectorValue')
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700479
480 ## Register a nested module for the namespace FatalImpl
481
482 nested_module = module.add_cpp_namespace('FatalImpl')
483 register_types_ns3_FatalImpl(nested_module)
484
485
486 ## Register a nested module for the namespace internal
487
488 nested_module = module.add_cpp_namespace('internal')
489 register_types_ns3_internal(nested_module)
490
491
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700492def register_types_ns3_FatalImpl(module):
493 root_module = module.get_root()
494
495
496def register_types_ns3_internal(module):
497 root_module = module.get_root()
498
499
500def register_methods(root_module):
501 register_Ns3Address_methods(root_module, root_module['ns3::Address'])
502 register_Ns3ApplicationContainer_methods(root_module, root_module['ns3::ApplicationContainer'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700503 register_Ns3AttributeConstructionList_methods(root_module, root_module['ns3::AttributeConstructionList'])
504 register_Ns3AttributeConstructionListItem_methods(root_module, root_module['ns3::AttributeConstructionList::Item'])
505 register_Ns3Buffer_methods(root_module, root_module['ns3::Buffer'])
506 register_Ns3BufferIterator_methods(root_module, root_module['ns3::Buffer::Iterator'])
507 register_Ns3ByteTagIterator_methods(root_module, root_module['ns3::ByteTagIterator'])
508 register_Ns3ByteTagIteratorItem_methods(root_module, root_module['ns3::ByteTagIterator::Item'])
509 register_Ns3ByteTagList_methods(root_module, root_module['ns3::ByteTagList'])
510 register_Ns3ByteTagListIterator_methods(root_module, root_module['ns3::ByteTagList::Iterator'])
511 register_Ns3ByteTagListIteratorItem_methods(root_module, root_module['ns3::ByteTagList::Iterator::Item'])
512 register_Ns3CallbackBase_methods(root_module, root_module['ns3::CallbackBase'])
Alexander Afanasyev4975f732011-12-20 17:52:19 -0800513 register_Ns3CcnxAppHelper_methods(root_module, root_module['ns3::CcnxAppHelper'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700514 register_Ns3CcnxContentObjectHeaderException_methods(root_module, root_module['ns3::CcnxContentObjectHeaderException'])
Alexander Afanasyev8e2f1122012-04-17 15:01:11 -0700515 register_Ns3CcnxFibEntry_methods(root_module, root_module['ns3::CcnxFibEntry'])
516 register_Ns3CcnxFibEntryNoFaces_methods(root_module, root_module['ns3::CcnxFibEntry::NoFaces'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700517 register_Ns3CcnxFibEntryContainer_methods(root_module, root_module['ns3::CcnxFibEntryContainer'])
518 register_Ns3CcnxFibFaceMetric_methods(root_module, root_module['ns3::CcnxFibFaceMetric'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700519 register_Ns3CcnxFibFaceMetricContainer_methods(root_module, root_module['ns3::CcnxFibFaceMetricContainer'])
Alexander Afanasyev8e2f1122012-04-17 15:01:11 -0700520 register_Ns3CcnxGlobalRoutingHelper_methods(root_module, root_module['ns3::CcnxGlobalRoutingHelper'])
Alexander Afanasyev53872ce2011-12-16 13:17:18 -0800521 register_Ns3CcnxHeaderHelper_methods(root_module, root_module['ns3::CcnxHeaderHelper'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700522 register_Ns3CcnxInterestHeaderException_methods(root_module, root_module['ns3::CcnxInterestHeaderException'])
Alexander Afanasyev07827182011-12-13 01:07:32 -0800523 register_Ns3CcnxStackHelper_methods(root_module, root_module['ns3::CcnxStackHelper'])
Alexander Afanasyevb3e4b852011-12-23 15:58:20 -0800524 register_Ns3CcnxTraceHelper_methods(root_module, root_module['ns3::CcnxTraceHelper'])
Alexander Afanasyev53872ce2011-12-16 13:17:18 -0800525 register_Ns3CcnxUnknownHeaderException_methods(root_module, root_module['ns3::CcnxUnknownHeaderException'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700526 register_Ns3EventId_methods(root_module, root_module['ns3::EventId'])
Alexander Afanasyev6f933532012-02-29 13:30:37 -0800527 register_Ns3IntToType__0_methods(root_module, root_module['ns3::IntToType< 0 >'])
528 register_Ns3IntToType__1_methods(root_module, root_module['ns3::IntToType< 1 >'])
529 register_Ns3IntToType__2_methods(root_module, root_module['ns3::IntToType< 2 >'])
530 register_Ns3IntToType__3_methods(root_module, root_module['ns3::IntToType< 3 >'])
531 register_Ns3IntToType__4_methods(root_module, root_module['ns3::IntToType< 4 >'])
532 register_Ns3IntToType__5_methods(root_module, root_module['ns3::IntToType< 5 >'])
533 register_Ns3IntToType__6_methods(root_module, root_module['ns3::IntToType< 6 >'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700534 register_Ns3Ipv4Address_methods(root_module, root_module['ns3::Ipv4Address'])
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -0800535 register_Ns3Ipv4InterfaceAddress_methods(root_module, root_module['ns3::Ipv4InterfaceAddress'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700536 register_Ns3Ipv4Mask_methods(root_module, root_module['ns3::Ipv4Mask'])
537 register_Ns3Ipv6Address_methods(root_module, root_module['ns3::Ipv6Address'])
Alexander Afanasyev6f933532012-02-29 13:30:37 -0800538 register_Ns3Ipv6InterfaceAddress_methods(root_module, root_module['ns3::Ipv6InterfaceAddress'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700539 register_Ns3Ipv6Prefix_methods(root_module, root_module['ns3::Ipv6Prefix'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700540 register_Ns3NetDeviceContainer_methods(root_module, root_module['ns3::NetDeviceContainer'])
541 register_Ns3NodeContainer_methods(root_module, root_module['ns3::NodeContainer'])
542 register_Ns3ObjectBase_methods(root_module, root_module['ns3::ObjectBase'])
543 register_Ns3ObjectDeleter_methods(root_module, root_module['ns3::ObjectDeleter'])
544 register_Ns3ObjectFactory_methods(root_module, root_module['ns3::ObjectFactory'])
545 register_Ns3PacketMetadata_methods(root_module, root_module['ns3::PacketMetadata'])
546 register_Ns3PacketMetadataItem_methods(root_module, root_module['ns3::PacketMetadata::Item'])
547 register_Ns3PacketMetadataItemIterator_methods(root_module, root_module['ns3::PacketMetadata::ItemIterator'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700548 register_Ns3RandomVariable_methods(root_module, root_module['ns3::RandomVariable'])
549 register_Ns3SeedManager_methods(root_module, root_module['ns3::SeedManager'])
550 register_Ns3SequentialVariable_methods(root_module, root_module['ns3::SequentialVariable'])
551 register_Ns3SimpleRefCount__Ns3Chunk_Ns3ObjectBase_Ns3DefaultDeleter__lt__ns3Chunk__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::Chunk, ns3::ObjectBase, ns3::DefaultDeleter<ns3::Chunk> >'])
552 register_Ns3SimpleRefCount__Ns3Object_Ns3ObjectBase_Ns3ObjectDeleter_methods(root_module, root_module['ns3::SimpleRefCount< ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter >'])
Alexander Afanasyev03d92e42012-02-01 21:06:53 -0800553 register_Ns3Simulator_methods(root_module, root_module['ns3::Simulator'])
Alexander Afanasyev4975f732011-12-20 17:52:19 -0800554 register_Ns3SpringMobilityHelper_methods(root_module, root_module['ns3::SpringMobilityHelper'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700555 register_Ns3TagBuffer_methods(root_module, root_module['ns3::TagBuffer'])
Alexander Afanasyev6f933532012-02-29 13:30:37 -0800556 register_Ns3Timer_methods(root_module, root_module['ns3::Timer'])
557 register_Ns3TimerImpl_methods(root_module, root_module['ns3::TimerImpl'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700558 register_Ns3TriangularVariable_methods(root_module, root_module['ns3::TriangularVariable'])
559 register_Ns3TypeId_methods(root_module, root_module['ns3::TypeId'])
560 register_Ns3TypeIdAttributeInformation_methods(root_module, root_module['ns3::TypeId::AttributeInformation'])
561 register_Ns3TypeIdTraceSourceInformation_methods(root_module, root_module['ns3::TypeId::TraceSourceInformation'])
562 register_Ns3UniformVariable_methods(root_module, root_module['ns3::UniformVariable'])
Alexander Afanasyev4975f732011-12-20 17:52:19 -0800563 register_Ns3Vector2D_methods(root_module, root_module['ns3::Vector2D'])
564 register_Ns3Vector3D_methods(root_module, root_module['ns3::Vector3D'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700565 register_Ns3WeibullVariable_methods(root_module, root_module['ns3::WeibullVariable'])
566 register_Ns3ZetaVariable_methods(root_module, root_module['ns3::ZetaVariable'])
567 register_Ns3ZipfVariable_methods(root_module, root_module['ns3::ZipfVariable'])
568 register_Ns3Empty_methods(root_module, root_module['ns3::empty'])
569 register_Ns3Int64x64_t_methods(root_module, root_module['ns3::int64x64_t'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700570 register_Ns3Chunk_methods(root_module, root_module['ns3::Chunk'])
571 register_Ns3ConstantVariable_methods(root_module, root_module['ns3::ConstantVariable'])
572 register_Ns3DeterministicVariable_methods(root_module, root_module['ns3::DeterministicVariable'])
573 register_Ns3EmpiricalVariable_methods(root_module, root_module['ns3::EmpiricalVariable'])
574 register_Ns3ErlangVariable_methods(root_module, root_module['ns3::ErlangVariable'])
575 register_Ns3ExponentialVariable_methods(root_module, root_module['ns3::ExponentialVariable'])
576 register_Ns3GammaVariable_methods(root_module, root_module['ns3::GammaVariable'])
577 register_Ns3Header_methods(root_module, root_module['ns3::Header'])
578 register_Ns3IntEmpiricalVariable_methods(root_module, root_module['ns3::IntEmpiricalVariable'])
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -0800579 register_Ns3Ipv4Header_methods(root_module, root_module['ns3::Ipv4Header'])
Alexander Afanasyev6f933532012-02-29 13:30:37 -0800580 register_Ns3Ipv6Header_methods(root_module, root_module['ns3::Ipv6Header'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700581 register_Ns3LogNormalVariable_methods(root_module, root_module['ns3::LogNormalVariable'])
582 register_Ns3NormalVariable_methods(root_module, root_module['ns3::NormalVariable'])
583 register_Ns3Object_methods(root_module, root_module['ns3::Object'])
584 register_Ns3ObjectAggregateIterator_methods(root_module, root_module['ns3::Object::AggregateIterator'])
585 register_Ns3ParetoVariable_methods(root_module, root_module['ns3::ParetoVariable'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700586 register_Ns3SimpleRefCount__Ns3AttributeAccessor_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeAccessor__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> >'])
587 register_Ns3SimpleRefCount__Ns3AttributeChecker_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeChecker__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter<ns3::AttributeChecker> >'])
588 register_Ns3SimpleRefCount__Ns3AttributeValue_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeValue__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter<ns3::AttributeValue> >'])
589 register_Ns3SimpleRefCount__Ns3CallbackImplBase_Ns3Empty_Ns3DefaultDeleter__lt__ns3CallbackImplBase__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> >'])
Alexander Afanasyevb3e4b852011-12-23 15:58:20 -0800590 register_Ns3SimpleRefCount__Ns3CcnxAppTracer_Ns3Empty_Ns3DefaultDeleter__lt__ns3CcnxAppTracer__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::CcnxAppTracer, ns3::empty, ns3::DefaultDeleter<ns3::CcnxAppTracer> >'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700591 register_Ns3SimpleRefCount__Ns3CcnxFaceContainer_Ns3Empty_Ns3DefaultDeleter__lt__ns3CcnxFaceContainer__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::CcnxFaceContainer, ns3::empty, ns3::DefaultDeleter<ns3::CcnxFaceContainer> >'])
Alexander Afanasyevb3e4b852011-12-23 15:58:20 -0800592 register_Ns3SimpleRefCount__Ns3CcnxL3Tracer_Ns3Empty_Ns3DefaultDeleter__lt__ns3CcnxL3Tracer__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::CcnxL3Tracer, ns3::empty, ns3::DefaultDeleter<ns3::CcnxL3Tracer> >'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700593 register_Ns3SimpleRefCount__Ns3CcnxNameComponents_Ns3Empty_Ns3DefaultDeleter__lt__ns3CcnxNameComponents__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::CcnxNameComponents, ns3::empty, ns3::DefaultDeleter<ns3::CcnxNameComponents> >'])
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -0800594 register_Ns3SimpleRefCount__Ns3CcnxPathWeightTracer_Ns3Empty_Ns3DefaultDeleter__lt__ns3CcnxPathWeightTracer__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::CcnxPathWeightTracer, ns3::empty, ns3::DefaultDeleter<ns3::CcnxPathWeightTracer> >'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700595 register_Ns3SimpleRefCount__Ns3EventImpl_Ns3Empty_Ns3DefaultDeleter__lt__ns3EventImpl__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::EventImpl, ns3::empty, ns3::DefaultDeleter<ns3::EventImpl> >'])
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -0800596 register_Ns3SimpleRefCount__Ns3Ipv4AppTracer_Ns3Empty_Ns3DefaultDeleter__lt__ns3Ipv4AppTracer__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::Ipv4AppTracer, ns3::empty, ns3::DefaultDeleter<ns3::Ipv4AppTracer> >'])
Alexander Afanasyev03d92e42012-02-01 21:06:53 -0800597 register_Ns3SimpleRefCount__Ns3Ipv4L3Tracer_Ns3Empty_Ns3DefaultDeleter__lt__ns3Ipv4L3Tracer__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::Ipv4L3Tracer, ns3::empty, ns3::DefaultDeleter<ns3::Ipv4L3Tracer> >'])
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -0800598 register_Ns3SimpleRefCount__Ns3Ipv4MulticastRoute_Ns3Empty_Ns3DefaultDeleter__lt__ns3Ipv4MulticastRoute__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::Ipv4MulticastRoute, ns3::empty, ns3::DefaultDeleter<ns3::Ipv4MulticastRoute> >'])
599 register_Ns3SimpleRefCount__Ns3Ipv4Route_Ns3Empty_Ns3DefaultDeleter__lt__ns3Ipv4Route__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::Ipv4Route, ns3::empty, ns3::DefaultDeleter<ns3::Ipv4Route> >'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700600 register_Ns3SimpleRefCount__Ns3NixVector_Ns3Empty_Ns3DefaultDeleter__lt__ns3NixVector__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::NixVector, ns3::empty, ns3::DefaultDeleter<ns3::NixVector> >'])
Alexander Afanasyev03d92e42012-02-01 21:06:53 -0800601 register_Ns3SimpleRefCount__Ns3OutputStreamWrapper_Ns3Empty_Ns3DefaultDeleter__lt__ns3OutputStreamWrapper__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::OutputStreamWrapper, ns3::empty, ns3::DefaultDeleter<ns3::OutputStreamWrapper> >'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700602 register_Ns3SimpleRefCount__Ns3Packet_Ns3Empty_Ns3DefaultDeleter__lt__ns3Packet__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::Packet, ns3::empty, ns3::DefaultDeleter<ns3::Packet> >'])
Alexander Afanasyevae3b7c32011-12-13 13:20:06 -0800603 register_Ns3SimpleRefCount__Ns3TopologyReader_Ns3Empty_Ns3DefaultDeleter__lt__ns3TopologyReader__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::TopologyReader, ns3::empty, ns3::DefaultDeleter<ns3::TopologyReader> >'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700604 register_Ns3SimpleRefCount__Ns3TraceSourceAccessor_Ns3Empty_Ns3DefaultDeleter__lt__ns3TraceSourceAccessor__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter<ns3::TraceSourceAccessor> >'])
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -0800605 register_Ns3SimpleRefCount__Ns3WindowTracer_Ns3Empty_Ns3DefaultDeleter__lt__ns3WindowTracer__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::WindowTracer, ns3::empty, ns3::DefaultDeleter<ns3::WindowTracer> >'])
606 register_Ns3Socket_methods(root_module, root_module['ns3::Socket'])
607 register_Ns3Tag_methods(root_module, root_module['ns3::Tag'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700608 register_Ns3Time_methods(root_module, root_module['ns3::Time'])
609 register_Ns3TopologyReader_methods(root_module, root_module['ns3::TopologyReader'])
610 register_Ns3TopologyReaderLink_methods(root_module, root_module['ns3::TopologyReader::Link'])
611 register_Ns3TraceSourceAccessor_methods(root_module, root_module['ns3::TraceSourceAccessor'])
612 register_Ns3Trailer_methods(root_module, root_module['ns3::Trailer'])
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -0800613 register_Ns3WeightsPathStretchTag_methods(root_module, root_module['ns3::WeightsPathStretchTag'])
614 register_Ns3WeightsPathStretchTagNodeWeightPair_methods(root_module, root_module['ns3::WeightsPathStretchTag::NodeWeightPair'])
615 register_Ns3WindowTracer_methods(root_module, root_module['ns3::WindowTracer'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700616 register_Ns3AnnotatedTopologyReader_methods(root_module, root_module['ns3::AnnotatedTopologyReader'])
617 register_Ns3Application_methods(root_module, root_module['ns3::Application'])
618 register_Ns3AttributeAccessor_methods(root_module, root_module['ns3::AttributeAccessor'])
619 register_Ns3AttributeChecker_methods(root_module, root_module['ns3::AttributeChecker'])
620 register_Ns3AttributeValue_methods(root_module, root_module['ns3::AttributeValue'])
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -0800621 register_Ns3BatchesChecker_methods(root_module, root_module['ns3::BatchesChecker'])
622 register_Ns3BatchesValue_methods(root_module, root_module['ns3::BatchesValue'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700623 register_Ns3CallbackChecker_methods(root_module, root_module['ns3::CallbackChecker'])
624 register_Ns3CallbackImplBase_methods(root_module, root_module['ns3::CallbackImplBase'])
625 register_Ns3CallbackValue_methods(root_module, root_module['ns3::CallbackValue'])
626 register_Ns3Ccnx_methods(root_module, root_module['ns3::Ccnx'])
Alexander Afanasyev07827182011-12-13 01:07:32 -0800627 register_Ns3CcnxApp_methods(root_module, root_module['ns3::CcnxApp'])
Alexander Afanasyevb3e4b852011-12-23 15:58:20 -0800628 register_Ns3CcnxAppTracer_methods(root_module, root_module['ns3::CcnxAppTracer'])
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -0800629 register_Ns3CcnxConsumerWindowTracer_methods(root_module, root_module['ns3::CcnxConsumerWindowTracer'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700630 register_Ns3CcnxContentObjectHeader_methods(root_module, root_module['ns3::CcnxContentObjectHeader'])
Alexander Afanasyev9568f952012-04-05 16:09:14 -0700631 register_Ns3CcnxContentObjectHeaderSignedInfo_methods(root_module, root_module['ns3::CcnxContentObjectHeader::SignedInfo'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700632 register_Ns3CcnxContentObjectTail_methods(root_module, root_module['ns3::CcnxContentObjectTail'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700633 register_Ns3CcnxFace_methods(root_module, root_module['ns3::CcnxFace'])
634 register_Ns3CcnxFaceContainer_methods(root_module, root_module['ns3::CcnxFaceContainer'])
Alexander Afanasyev07827182011-12-13 01:07:32 -0800635 register_Ns3CcnxFib_methods(root_module, root_module['ns3::CcnxFib'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700636 register_Ns3CcnxInterestHeader_methods(root_module, root_module['ns3::CcnxInterestHeader'])
Alexander Afanasyevb3e4b852011-12-23 15:58:20 -0800637 register_Ns3CcnxL3Tracer_methods(root_module, root_module['ns3::CcnxL3Tracer'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700638 register_Ns3CcnxNameComponents_methods(root_module, root_module['ns3::CcnxNameComponents'])
639 register_Ns3CcnxNameComponentsChecker_methods(root_module, root_module['ns3::CcnxNameComponentsChecker'])
640 register_Ns3CcnxNameComponentsValue_methods(root_module, root_module['ns3::CcnxNameComponentsValue'])
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -0800641 register_Ns3CcnxPathWeightTracer_methods(root_module, root_module['ns3::CcnxPathWeightTracer'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700642 register_Ns3EmptyAttributeValue_methods(root_module, root_module['ns3::EmptyAttributeValue'])
643 register_Ns3EventImpl_methods(root_module, root_module['ns3::EventImpl'])
644 register_Ns3IntegerValue_methods(root_module, root_module['ns3::IntegerValue'])
Alexander Afanasyev6f933532012-02-29 13:30:37 -0800645 register_Ns3IpL4Protocol_methods(root_module, root_module['ns3::IpL4Protocol'])
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -0800646 register_Ns3Ipv4_methods(root_module, root_module['ns3::Ipv4'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700647 register_Ns3Ipv4AddressChecker_methods(root_module, root_module['ns3::Ipv4AddressChecker'])
648 register_Ns3Ipv4AddressValue_methods(root_module, root_module['ns3::Ipv4AddressValue'])
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -0800649 register_Ns3Ipv4AppTracer_methods(root_module, root_module['ns3::Ipv4AppTracer'])
Alexander Afanasyev03d92e42012-02-01 21:06:53 -0800650 register_Ns3Ipv4L3Protocol_methods(root_module, root_module['ns3::Ipv4L3Protocol'])
651 register_Ns3Ipv4L3Tracer_methods(root_module, root_module['ns3::Ipv4L3Tracer'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700652 register_Ns3Ipv4MaskChecker_methods(root_module, root_module['ns3::Ipv4MaskChecker'])
653 register_Ns3Ipv4MaskValue_methods(root_module, root_module['ns3::Ipv4MaskValue'])
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -0800654 register_Ns3Ipv4MulticastRoute_methods(root_module, root_module['ns3::Ipv4MulticastRoute'])
655 register_Ns3Ipv4Route_methods(root_module, root_module['ns3::Ipv4Route'])
Alexander Afanasyev03d92e42012-02-01 21:06:53 -0800656 register_Ns3Ipv4RoutingProtocol_methods(root_module, root_module['ns3::Ipv4RoutingProtocol'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700657 register_Ns3Ipv6AddressChecker_methods(root_module, root_module['ns3::Ipv6AddressChecker'])
658 register_Ns3Ipv6AddressValue_methods(root_module, root_module['ns3::Ipv6AddressValue'])
Alexander Afanasyev6f933532012-02-29 13:30:37 -0800659 register_Ns3Ipv6Interface_methods(root_module, root_module['ns3::Ipv6Interface'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700660 register_Ns3Ipv6PrefixChecker_methods(root_module, root_module['ns3::Ipv6PrefixChecker'])
661 register_Ns3Ipv6PrefixValue_methods(root_module, root_module['ns3::Ipv6PrefixValue'])
Alexander Afanasyev4975f732011-12-20 17:52:19 -0800662 register_Ns3MobilityModel_methods(root_module, root_module['ns3::MobilityModel'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700663 register_Ns3NetDevice_methods(root_module, root_module['ns3::NetDevice'])
664 register_Ns3NixVector_methods(root_module, root_module['ns3::NixVector'])
665 register_Ns3Node_methods(root_module, root_module['ns3::Node'])
666 register_Ns3ObjectFactoryChecker_methods(root_module, root_module['ns3::ObjectFactoryChecker'])
667 register_Ns3ObjectFactoryValue_methods(root_module, root_module['ns3::ObjectFactoryValue'])
Alexander Afanasyev03d92e42012-02-01 21:06:53 -0800668 register_Ns3OutputStreamWrapper_methods(root_module, root_module['ns3::OutputStreamWrapper'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700669 register_Ns3Packet_methods(root_module, root_module['ns3::Packet'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700670 register_Ns3RandomVariableChecker_methods(root_module, root_module['ns3::RandomVariableChecker'])
671 register_Ns3RandomVariableValue_methods(root_module, root_module['ns3::RandomVariableValue'])
Alexander Afanasyev07827182011-12-13 01:07:32 -0800672 register_Ns3RocketfuelWeightsReader_methods(root_module, root_module['ns3::RocketfuelWeightsReader'])
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -0800673 register_Ns3SocketAddressTag_methods(root_module, root_module['ns3::SocketAddressTag'])
674 register_Ns3SocketIpTtlTag_methods(root_module, root_module['ns3::SocketIpTtlTag'])
675 register_Ns3SocketSetDontFragmentTag_methods(root_module, root_module['ns3::SocketSetDontFragmentTag'])
Alexander Afanasyev4975f732011-12-20 17:52:19 -0800676 register_Ns3SpringMobilityModel_methods(root_module, root_module['ns3::SpringMobilityModel'])
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -0800677 register_Ns3TcpCongestionWindowTracer_methods(root_module, root_module['ns3::TcpCongestionWindowTracer'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700678 register_Ns3TimeChecker_methods(root_module, root_module['ns3::TimeChecker'])
679 register_Ns3TimeValue_methods(root_module, root_module['ns3::TimeValue'])
680 register_Ns3TypeIdChecker_methods(root_module, root_module['ns3::TypeIdChecker'])
681 register_Ns3TypeIdValue_methods(root_module, root_module['ns3::TypeIdValue'])
Alexander Afanasyev4975f732011-12-20 17:52:19 -0800682 register_Ns3Vector2DChecker_methods(root_module, root_module['ns3::Vector2DChecker'])
683 register_Ns3Vector2DValue_methods(root_module, root_module['ns3::Vector2DValue'])
684 register_Ns3Vector3DChecker_methods(root_module, root_module['ns3::Vector3DChecker'])
685 register_Ns3Vector3DValue_methods(root_module, root_module['ns3::Vector3DValue'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700686 register_Ns3AddressChecker_methods(root_module, root_module['ns3::AddressChecker'])
687 register_Ns3AddressValue_methods(root_module, root_module['ns3::AddressValue'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700688 return
689
690def register_Ns3Address_methods(root_module, cls):
691 cls.add_binary_comparison_operator('!=')
692 cls.add_output_stream_operator()
693 cls.add_binary_comparison_operator('==')
694 cls.add_binary_comparison_operator('<')
695 ## address.h (module 'network'): ns3::Address::Address() [constructor]
696 cls.add_constructor([])
697 ## address.h (module 'network'): ns3::Address::Address(uint8_t type, uint8_t const * buffer, uint8_t len) [constructor]
698 cls.add_constructor([param('uint8_t', 'type'), param('uint8_t const *', 'buffer'), param('uint8_t', 'len')])
699 ## address.h (module 'network'): ns3::Address::Address(ns3::Address const & address) [copy constructor]
700 cls.add_constructor([param('ns3::Address const &', 'address')])
701 ## address.h (module 'network'): bool ns3::Address::CheckCompatible(uint8_t type, uint8_t len) const [member function]
702 cls.add_method('CheckCompatible',
703 'bool',
704 [param('uint8_t', 'type'), param('uint8_t', 'len')],
705 is_const=True)
706 ## address.h (module 'network'): uint32_t ns3::Address::CopyAllFrom(uint8_t const * buffer, uint8_t len) [member function]
707 cls.add_method('CopyAllFrom',
708 'uint32_t',
709 [param('uint8_t const *', 'buffer'), param('uint8_t', 'len')])
710 ## address.h (module 'network'): uint32_t ns3::Address::CopyAllTo(uint8_t * buffer, uint8_t len) const [member function]
711 cls.add_method('CopyAllTo',
712 'uint32_t',
713 [param('uint8_t *', 'buffer'), param('uint8_t', 'len')],
714 is_const=True)
715 ## address.h (module 'network'): uint32_t ns3::Address::CopyFrom(uint8_t const * buffer, uint8_t len) [member function]
716 cls.add_method('CopyFrom',
717 'uint32_t',
718 [param('uint8_t const *', 'buffer'), param('uint8_t', 'len')])
719 ## address.h (module 'network'): uint32_t ns3::Address::CopyTo(uint8_t * buffer) const [member function]
720 cls.add_method('CopyTo',
721 'uint32_t',
722 [param('uint8_t *', 'buffer')],
723 is_const=True)
724 ## address.h (module 'network'): void ns3::Address::Deserialize(ns3::TagBuffer buffer) [member function]
725 cls.add_method('Deserialize',
726 'void',
727 [param('ns3::TagBuffer', 'buffer')])
728 ## address.h (module 'network'): uint8_t ns3::Address::GetLength() const [member function]
729 cls.add_method('GetLength',
730 'uint8_t',
731 [],
732 is_const=True)
733 ## address.h (module 'network'): uint32_t ns3::Address::GetSerializedSize() const [member function]
734 cls.add_method('GetSerializedSize',
735 'uint32_t',
736 [],
737 is_const=True)
738 ## address.h (module 'network'): bool ns3::Address::IsInvalid() const [member function]
739 cls.add_method('IsInvalid',
740 'bool',
741 [],
742 is_const=True)
743 ## address.h (module 'network'): bool ns3::Address::IsMatchingType(uint8_t type) const [member function]
744 cls.add_method('IsMatchingType',
745 'bool',
746 [param('uint8_t', 'type')],
747 is_const=True)
748 ## address.h (module 'network'): static uint8_t ns3::Address::Register() [member function]
749 cls.add_method('Register',
750 'uint8_t',
751 [],
752 is_static=True)
753 ## address.h (module 'network'): void ns3::Address::Serialize(ns3::TagBuffer buffer) const [member function]
754 cls.add_method('Serialize',
755 'void',
756 [param('ns3::TagBuffer', 'buffer')],
757 is_const=True)
758 return
759
760def register_Ns3ApplicationContainer_methods(root_module, cls):
761 ## application-container.h (module 'network'): ns3::ApplicationContainer::ApplicationContainer(ns3::ApplicationContainer const & arg0) [copy constructor]
762 cls.add_constructor([param('ns3::ApplicationContainer const &', 'arg0')])
763 ## application-container.h (module 'network'): ns3::ApplicationContainer::ApplicationContainer() [constructor]
764 cls.add_constructor([])
765 ## application-container.h (module 'network'): ns3::ApplicationContainer::ApplicationContainer(ns3::Ptr<ns3::Application> application) [constructor]
766 cls.add_constructor([param('ns3::Ptr< ns3::Application >', 'application')])
767 ## application-container.h (module 'network'): ns3::ApplicationContainer::ApplicationContainer(std::string name) [constructor]
768 cls.add_constructor([param('std::string', 'name')])
769 ## application-container.h (module 'network'): void ns3::ApplicationContainer::Add(ns3::ApplicationContainer other) [member function]
770 cls.add_method('Add',
771 'void',
772 [param('ns3::ApplicationContainer', 'other')])
773 ## application-container.h (module 'network'): void ns3::ApplicationContainer::Add(ns3::Ptr<ns3::Application> application) [member function]
774 cls.add_method('Add',
775 'void',
776 [param('ns3::Ptr< ns3::Application >', 'application')])
777 ## application-container.h (module 'network'): void ns3::ApplicationContainer::Add(std::string name) [member function]
778 cls.add_method('Add',
779 'void',
780 [param('std::string', 'name')])
781 ## application-container.h (module 'network'): __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]
782 cls.add_method('Begin',
783 '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Application > const, std::vector< ns3::Ptr< ns3::Application > > >',
784 [],
785 is_const=True)
786 ## application-container.h (module 'network'): __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]
787 cls.add_method('End',
788 '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Application > const, std::vector< ns3::Ptr< ns3::Application > > >',
789 [],
790 is_const=True)
791 ## application-container.h (module 'network'): ns3::Ptr<ns3::Application> ns3::ApplicationContainer::Get(uint32_t i) const [member function]
792 cls.add_method('Get',
793 'ns3::Ptr< ns3::Application >',
794 [param('uint32_t', 'i')],
795 is_const=True)
796 ## application-container.h (module 'network'): uint32_t ns3::ApplicationContainer::GetN() const [member function]
797 cls.add_method('GetN',
798 'uint32_t',
799 [],
800 is_const=True)
801 ## application-container.h (module 'network'): void ns3::ApplicationContainer::Start(ns3::Time start) [member function]
802 cls.add_method('Start',
803 'void',
804 [param('ns3::Time', 'start')])
805 ## application-container.h (module 'network'): void ns3::ApplicationContainer::Stop(ns3::Time stop) [member function]
806 cls.add_method('Stop',
807 'void',
808 [param('ns3::Time', 'stop')])
809 return
810
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700811def register_Ns3AttributeConstructionList_methods(root_module, cls):
812 ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::AttributeConstructionList(ns3::AttributeConstructionList const & arg0) [copy constructor]
813 cls.add_constructor([param('ns3::AttributeConstructionList const &', 'arg0')])
814 ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::AttributeConstructionList() [constructor]
815 cls.add_constructor([])
816 ## attribute-construction-list.h (module 'core'): void ns3::AttributeConstructionList::Add(std::string name, ns3::Ptr<ns3::AttributeChecker const> checker, ns3::Ptr<ns3::AttributeValue> value) [member function]
817 cls.add_method('Add',
818 'void',
819 [param('std::string', 'name'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker'), param('ns3::Ptr< ns3::AttributeValue >', 'value')])
820 ## attribute-construction-list.h (module 'core'): std::_List_const_iterator<ns3::AttributeConstructionList::Item> ns3::AttributeConstructionList::Begin() const [member function]
821 cls.add_method('Begin',
822 'std::_List_const_iterator< ns3::AttributeConstructionList::Item >',
823 [],
824 is_const=True)
825 ## attribute-construction-list.h (module 'core'): std::_List_const_iterator<ns3::AttributeConstructionList::Item> ns3::AttributeConstructionList::End() const [member function]
826 cls.add_method('End',
827 'std::_List_const_iterator< ns3::AttributeConstructionList::Item >',
828 [],
829 is_const=True)
830 ## attribute-construction-list.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::AttributeConstructionList::Find(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
831 cls.add_method('Find',
832 'ns3::Ptr< ns3::AttributeValue >',
833 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
834 is_const=True)
835 return
836
837def register_Ns3AttributeConstructionListItem_methods(root_module, cls):
838 ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item::Item() [constructor]
839 cls.add_constructor([])
840 ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item::Item(ns3::AttributeConstructionList::Item const & arg0) [copy constructor]
841 cls.add_constructor([param('ns3::AttributeConstructionList::Item const &', 'arg0')])
842 ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item::checker [variable]
843 cls.add_instance_attribute('checker', 'ns3::Ptr< ns3::AttributeChecker const >', is_const=False)
844 ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item::name [variable]
845 cls.add_instance_attribute('name', 'std::string', is_const=False)
846 ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item::value [variable]
847 cls.add_instance_attribute('value', 'ns3::Ptr< ns3::AttributeValue >', is_const=False)
848 return
849
850def register_Ns3Buffer_methods(root_module, cls):
851 ## buffer.h (module 'network'): ns3::Buffer::Buffer() [constructor]
852 cls.add_constructor([])
853 ## buffer.h (module 'network'): ns3::Buffer::Buffer(uint32_t dataSize) [constructor]
854 cls.add_constructor([param('uint32_t', 'dataSize')])
855 ## buffer.h (module 'network'): ns3::Buffer::Buffer(uint32_t dataSize, bool initialize) [constructor]
856 cls.add_constructor([param('uint32_t', 'dataSize'), param('bool', 'initialize')])
857 ## buffer.h (module 'network'): ns3::Buffer::Buffer(ns3::Buffer const & o) [copy constructor]
858 cls.add_constructor([param('ns3::Buffer const &', 'o')])
859 ## buffer.h (module 'network'): bool ns3::Buffer::AddAtEnd(uint32_t end) [member function]
860 cls.add_method('AddAtEnd',
861 'bool',
862 [param('uint32_t', 'end')])
863 ## buffer.h (module 'network'): void ns3::Buffer::AddAtEnd(ns3::Buffer const & o) [member function]
864 cls.add_method('AddAtEnd',
865 'void',
866 [param('ns3::Buffer const &', 'o')])
867 ## buffer.h (module 'network'): bool ns3::Buffer::AddAtStart(uint32_t start) [member function]
868 cls.add_method('AddAtStart',
869 'bool',
870 [param('uint32_t', 'start')])
871 ## buffer.h (module 'network'): ns3::Buffer::Iterator ns3::Buffer::Begin() const [member function]
872 cls.add_method('Begin',
873 'ns3::Buffer::Iterator',
874 [],
875 is_const=True)
876 ## buffer.h (module 'network'): void ns3::Buffer::CopyData(std::ostream * os, uint32_t size) const [member function]
877 cls.add_method('CopyData',
878 'void',
879 [param('std::ostream *', 'os'), param('uint32_t', 'size')],
880 is_const=True)
881 ## buffer.h (module 'network'): uint32_t ns3::Buffer::CopyData(uint8_t * buffer, uint32_t size) const [member function]
882 cls.add_method('CopyData',
883 'uint32_t',
884 [param('uint8_t *', 'buffer'), param('uint32_t', 'size')],
885 is_const=True)
886 ## buffer.h (module 'network'): ns3::Buffer ns3::Buffer::CreateFragment(uint32_t start, uint32_t length) const [member function]
887 cls.add_method('CreateFragment',
888 'ns3::Buffer',
889 [param('uint32_t', 'start'), param('uint32_t', 'length')],
890 is_const=True)
891 ## buffer.h (module 'network'): ns3::Buffer ns3::Buffer::CreateFullCopy() const [member function]
892 cls.add_method('CreateFullCopy',
893 'ns3::Buffer',
894 [],
895 is_const=True)
896 ## buffer.h (module 'network'): uint32_t ns3::Buffer::Deserialize(uint8_t const * buffer, uint32_t size) [member function]
897 cls.add_method('Deserialize',
898 'uint32_t',
899 [param('uint8_t const *', 'buffer'), param('uint32_t', 'size')])
900 ## buffer.h (module 'network'): ns3::Buffer::Iterator ns3::Buffer::End() const [member function]
901 cls.add_method('End',
902 'ns3::Buffer::Iterator',
903 [],
904 is_const=True)
905 ## buffer.h (module 'network'): int32_t ns3::Buffer::GetCurrentEndOffset() const [member function]
906 cls.add_method('GetCurrentEndOffset',
907 'int32_t',
908 [],
909 is_const=True)
910 ## buffer.h (module 'network'): int32_t ns3::Buffer::GetCurrentStartOffset() const [member function]
911 cls.add_method('GetCurrentStartOffset',
912 'int32_t',
913 [],
914 is_const=True)
915 ## buffer.h (module 'network'): uint32_t ns3::Buffer::GetSerializedSize() const [member function]
916 cls.add_method('GetSerializedSize',
917 'uint32_t',
918 [],
919 is_const=True)
920 ## buffer.h (module 'network'): uint32_t ns3::Buffer::GetSize() const [member function]
921 cls.add_method('GetSize',
922 'uint32_t',
923 [],
924 is_const=True)
925 ## buffer.h (module 'network'): uint8_t const * ns3::Buffer::PeekData() const [member function]
926 cls.add_method('PeekData',
927 'uint8_t const *',
928 [],
929 is_const=True)
930 ## buffer.h (module 'network'): void ns3::Buffer::RemoveAtEnd(uint32_t end) [member function]
931 cls.add_method('RemoveAtEnd',
932 'void',
933 [param('uint32_t', 'end')])
934 ## buffer.h (module 'network'): void ns3::Buffer::RemoveAtStart(uint32_t start) [member function]
935 cls.add_method('RemoveAtStart',
936 'void',
937 [param('uint32_t', 'start')])
938 ## buffer.h (module 'network'): uint32_t ns3::Buffer::Serialize(uint8_t * buffer, uint32_t maxSize) const [member function]
939 cls.add_method('Serialize',
940 'uint32_t',
941 [param('uint8_t *', 'buffer'), param('uint32_t', 'maxSize')],
942 is_const=True)
943 return
944
945def register_Ns3BufferIterator_methods(root_module, cls):
946 ## buffer.h (module 'network'): ns3::Buffer::Iterator::Iterator(ns3::Buffer::Iterator const & arg0) [copy constructor]
947 cls.add_constructor([param('ns3::Buffer::Iterator const &', 'arg0')])
948 ## buffer.h (module 'network'): ns3::Buffer::Iterator::Iterator() [constructor]
949 cls.add_constructor([])
950 ## buffer.h (module 'network'): uint16_t ns3::Buffer::Iterator::CalculateIpChecksum(uint16_t size) [member function]
951 cls.add_method('CalculateIpChecksum',
952 'uint16_t',
953 [param('uint16_t', 'size')])
954 ## buffer.h (module 'network'): uint16_t ns3::Buffer::Iterator::CalculateIpChecksum(uint16_t size, uint32_t initialChecksum) [member function]
955 cls.add_method('CalculateIpChecksum',
956 'uint16_t',
957 [param('uint16_t', 'size'), param('uint32_t', 'initialChecksum')])
958 ## buffer.h (module 'network'): uint32_t ns3::Buffer::Iterator::GetDistanceFrom(ns3::Buffer::Iterator const & o) const [member function]
959 cls.add_method('GetDistanceFrom',
960 'uint32_t',
961 [param('ns3::Buffer::Iterator const &', 'o')],
962 is_const=True)
963 ## buffer.h (module 'network'): uint32_t ns3::Buffer::Iterator::GetSize() const [member function]
964 cls.add_method('GetSize',
965 'uint32_t',
966 [],
967 is_const=True)
968 ## buffer.h (module 'network'): bool ns3::Buffer::Iterator::IsEnd() const [member function]
969 cls.add_method('IsEnd',
970 'bool',
971 [],
972 is_const=True)
973 ## buffer.h (module 'network'): bool ns3::Buffer::Iterator::IsStart() const [member function]
974 cls.add_method('IsStart',
975 'bool',
976 [],
977 is_const=True)
978 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Next() [member function]
979 cls.add_method('Next',
980 'void',
981 [])
982 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Next(uint32_t delta) [member function]
983 cls.add_method('Next',
984 'void',
985 [param('uint32_t', 'delta')])
986 ## buffer.h (module 'network'): uint8_t ns3::Buffer::Iterator::PeekU8() [member function]
987 cls.add_method('PeekU8',
988 'uint8_t',
989 [])
990 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Prev() [member function]
991 cls.add_method('Prev',
992 'void',
993 [])
994 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Prev(uint32_t delta) [member function]
995 cls.add_method('Prev',
996 'void',
997 [param('uint32_t', 'delta')])
998 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Read(uint8_t * buffer, uint32_t size) [member function]
999 cls.add_method('Read',
1000 'void',
1001 [param('uint8_t *', 'buffer'), param('uint32_t', 'size')])
1002 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Read(ns3::Buffer::Iterator start, uint32_t size) [member function]
1003 cls.add_method('Read',
1004 'void',
1005 [param('ns3::Buffer::Iterator', 'start'), param('uint32_t', 'size')])
1006 ## buffer.h (module 'network'): uint16_t ns3::Buffer::Iterator::ReadLsbtohU16() [member function]
1007 cls.add_method('ReadLsbtohU16',
1008 'uint16_t',
1009 [])
1010 ## buffer.h (module 'network'): uint32_t ns3::Buffer::Iterator::ReadLsbtohU32() [member function]
1011 cls.add_method('ReadLsbtohU32',
1012 'uint32_t',
1013 [])
1014 ## buffer.h (module 'network'): uint64_t ns3::Buffer::Iterator::ReadLsbtohU64() [member function]
1015 cls.add_method('ReadLsbtohU64',
1016 'uint64_t',
1017 [])
1018 ## buffer.h (module 'network'): uint16_t ns3::Buffer::Iterator::ReadNtohU16() [member function]
1019 cls.add_method('ReadNtohU16',
1020 'uint16_t',
1021 [])
1022 ## buffer.h (module 'network'): uint32_t ns3::Buffer::Iterator::ReadNtohU32() [member function]
1023 cls.add_method('ReadNtohU32',
1024 'uint32_t',
1025 [])
1026 ## buffer.h (module 'network'): uint64_t ns3::Buffer::Iterator::ReadNtohU64() [member function]
1027 cls.add_method('ReadNtohU64',
1028 'uint64_t',
1029 [])
1030 ## buffer.h (module 'network'): uint16_t ns3::Buffer::Iterator::ReadU16() [member function]
1031 cls.add_method('ReadU16',
1032 'uint16_t',
1033 [])
1034 ## buffer.h (module 'network'): uint32_t ns3::Buffer::Iterator::ReadU32() [member function]
1035 cls.add_method('ReadU32',
1036 'uint32_t',
1037 [])
1038 ## buffer.h (module 'network'): uint64_t ns3::Buffer::Iterator::ReadU64() [member function]
1039 cls.add_method('ReadU64',
1040 'uint64_t',
1041 [])
1042 ## buffer.h (module 'network'): uint8_t ns3::Buffer::Iterator::ReadU8() [member function]
1043 cls.add_method('ReadU8',
1044 'uint8_t',
1045 [])
1046 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Write(uint8_t const * buffer, uint32_t size) [member function]
1047 cls.add_method('Write',
1048 'void',
1049 [param('uint8_t const *', 'buffer'), param('uint32_t', 'size')])
1050 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Write(ns3::Buffer::Iterator start, ns3::Buffer::Iterator end) [member function]
1051 cls.add_method('Write',
1052 'void',
1053 [param('ns3::Buffer::Iterator', 'start'), param('ns3::Buffer::Iterator', 'end')])
1054 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteHtolsbU16(uint16_t data) [member function]
1055 cls.add_method('WriteHtolsbU16',
1056 'void',
1057 [param('uint16_t', 'data')])
1058 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteHtolsbU32(uint32_t data) [member function]
1059 cls.add_method('WriteHtolsbU32',
1060 'void',
1061 [param('uint32_t', 'data')])
1062 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteHtolsbU64(uint64_t data) [member function]
1063 cls.add_method('WriteHtolsbU64',
1064 'void',
1065 [param('uint64_t', 'data')])
1066 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteHtonU16(uint16_t data) [member function]
1067 cls.add_method('WriteHtonU16',
1068 'void',
1069 [param('uint16_t', 'data')])
1070 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteHtonU32(uint32_t data) [member function]
1071 cls.add_method('WriteHtonU32',
1072 'void',
1073 [param('uint32_t', 'data')])
1074 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteHtonU64(uint64_t data) [member function]
1075 cls.add_method('WriteHtonU64',
1076 'void',
1077 [param('uint64_t', 'data')])
1078 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteU16(uint16_t data) [member function]
1079 cls.add_method('WriteU16',
1080 'void',
1081 [param('uint16_t', 'data')])
1082 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteU32(uint32_t data) [member function]
1083 cls.add_method('WriteU32',
1084 'void',
1085 [param('uint32_t', 'data')])
1086 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteU64(uint64_t data) [member function]
1087 cls.add_method('WriteU64',
1088 'void',
1089 [param('uint64_t', 'data')])
1090 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteU8(uint8_t data) [member function]
1091 cls.add_method('WriteU8',
1092 'void',
1093 [param('uint8_t', 'data')])
1094 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteU8(uint8_t data, uint32_t len) [member function]
1095 cls.add_method('WriteU8',
1096 'void',
1097 [param('uint8_t', 'data'), param('uint32_t', 'len')])
1098 return
1099
1100def register_Ns3ByteTagIterator_methods(root_module, cls):
1101 ## packet.h (module 'network'): ns3::ByteTagIterator::ByteTagIterator(ns3::ByteTagIterator const & arg0) [copy constructor]
1102 cls.add_constructor([param('ns3::ByteTagIterator const &', 'arg0')])
1103 ## packet.h (module 'network'): bool ns3::ByteTagIterator::HasNext() const [member function]
1104 cls.add_method('HasNext',
1105 'bool',
1106 [],
1107 is_const=True)
1108 ## packet.h (module 'network'): ns3::ByteTagIterator::Item ns3::ByteTagIterator::Next() [member function]
1109 cls.add_method('Next',
1110 'ns3::ByteTagIterator::Item',
1111 [])
1112 return
1113
1114def register_Ns3ByteTagIteratorItem_methods(root_module, cls):
1115 ## packet.h (module 'network'): ns3::ByteTagIterator::Item::Item(ns3::ByteTagIterator::Item const & arg0) [copy constructor]
1116 cls.add_constructor([param('ns3::ByteTagIterator::Item const &', 'arg0')])
1117 ## packet.h (module 'network'): uint32_t ns3::ByteTagIterator::Item::GetEnd() const [member function]
1118 cls.add_method('GetEnd',
1119 'uint32_t',
1120 [],
1121 is_const=True)
1122 ## packet.h (module 'network'): uint32_t ns3::ByteTagIterator::Item::GetStart() const [member function]
1123 cls.add_method('GetStart',
1124 'uint32_t',
1125 [],
1126 is_const=True)
1127 ## packet.h (module 'network'): void ns3::ByteTagIterator::Item::GetTag(ns3::Tag & tag) const [member function]
1128 cls.add_method('GetTag',
1129 'void',
1130 [param('ns3::Tag &', 'tag')],
1131 is_const=True)
1132 ## packet.h (module 'network'): ns3::TypeId ns3::ByteTagIterator::Item::GetTypeId() const [member function]
1133 cls.add_method('GetTypeId',
1134 'ns3::TypeId',
1135 [],
1136 is_const=True)
1137 return
1138
1139def register_Ns3ByteTagList_methods(root_module, cls):
1140 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::ByteTagList() [constructor]
1141 cls.add_constructor([])
1142 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::ByteTagList(ns3::ByteTagList const & o) [copy constructor]
1143 cls.add_constructor([param('ns3::ByteTagList const &', 'o')])
1144 ## byte-tag-list.h (module 'network'): ns3::TagBuffer ns3::ByteTagList::Add(ns3::TypeId tid, uint32_t bufferSize, int32_t start, int32_t end) [member function]
1145 cls.add_method('Add',
1146 'ns3::TagBuffer',
1147 [param('ns3::TypeId', 'tid'), param('uint32_t', 'bufferSize'), param('int32_t', 'start'), param('int32_t', 'end')])
1148 ## byte-tag-list.h (module 'network'): void ns3::ByteTagList::Add(ns3::ByteTagList const & o) [member function]
1149 cls.add_method('Add',
1150 'void',
1151 [param('ns3::ByteTagList const &', 'o')])
1152 ## byte-tag-list.h (module 'network'): void ns3::ByteTagList::AddAtEnd(int32_t adjustment, int32_t appendOffset) [member function]
1153 cls.add_method('AddAtEnd',
1154 'void',
1155 [param('int32_t', 'adjustment'), param('int32_t', 'appendOffset')])
1156 ## byte-tag-list.h (module 'network'): void ns3::ByteTagList::AddAtStart(int32_t adjustment, int32_t prependOffset) [member function]
1157 cls.add_method('AddAtStart',
1158 'void',
1159 [param('int32_t', 'adjustment'), param('int32_t', 'prependOffset')])
1160 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator ns3::ByteTagList::Begin(int32_t offsetStart, int32_t offsetEnd) const [member function]
1161 cls.add_method('Begin',
1162 'ns3::ByteTagList::Iterator',
1163 [param('int32_t', 'offsetStart'), param('int32_t', 'offsetEnd')],
1164 is_const=True)
1165 ## byte-tag-list.h (module 'network'): void ns3::ByteTagList::RemoveAll() [member function]
1166 cls.add_method('RemoveAll',
1167 'void',
1168 [])
1169 return
1170
1171def register_Ns3ByteTagListIterator_methods(root_module, cls):
1172 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Iterator(ns3::ByteTagList::Iterator const & arg0) [copy constructor]
1173 cls.add_constructor([param('ns3::ByteTagList::Iterator const &', 'arg0')])
1174 ## byte-tag-list.h (module 'network'): uint32_t ns3::ByteTagList::Iterator::GetOffsetStart() const [member function]
1175 cls.add_method('GetOffsetStart',
1176 'uint32_t',
1177 [],
1178 is_const=True)
1179 ## byte-tag-list.h (module 'network'): bool ns3::ByteTagList::Iterator::HasNext() const [member function]
1180 cls.add_method('HasNext',
1181 'bool',
1182 [],
1183 is_const=True)
1184 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item ns3::ByteTagList::Iterator::Next() [member function]
1185 cls.add_method('Next',
1186 'ns3::ByteTagList::Iterator::Item',
1187 [])
1188 return
1189
1190def register_Ns3ByteTagListIteratorItem_methods(root_module, cls):
1191 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::Item(ns3::ByteTagList::Iterator::Item const & arg0) [copy constructor]
1192 cls.add_constructor([param('ns3::ByteTagList::Iterator::Item const &', 'arg0')])
1193 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::Item(ns3::TagBuffer buf) [constructor]
1194 cls.add_constructor([param('ns3::TagBuffer', 'buf')])
1195 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::buf [variable]
1196 cls.add_instance_attribute('buf', 'ns3::TagBuffer', is_const=False)
1197 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::end [variable]
1198 cls.add_instance_attribute('end', 'int32_t', is_const=False)
1199 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::size [variable]
1200 cls.add_instance_attribute('size', 'uint32_t', is_const=False)
1201 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::start [variable]
1202 cls.add_instance_attribute('start', 'int32_t', is_const=False)
1203 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::tid [variable]
1204 cls.add_instance_attribute('tid', 'ns3::TypeId', is_const=False)
1205 return
1206
1207def register_Ns3CallbackBase_methods(root_module, cls):
1208 ## callback.h (module 'core'): ns3::CallbackBase::CallbackBase(ns3::CallbackBase const & arg0) [copy constructor]
1209 cls.add_constructor([param('ns3::CallbackBase const &', 'arg0')])
1210 ## callback.h (module 'core'): ns3::CallbackBase::CallbackBase() [constructor]
1211 cls.add_constructor([])
1212 ## callback.h (module 'core'): ns3::Ptr<ns3::CallbackImplBase> ns3::CallbackBase::GetImpl() const [member function]
1213 cls.add_method('GetImpl',
1214 'ns3::Ptr< ns3::CallbackImplBase >',
1215 [],
1216 is_const=True)
1217 ## callback.h (module 'core'): ns3::CallbackBase::CallbackBase(ns3::Ptr<ns3::CallbackImplBase> impl) [constructor]
1218 cls.add_constructor([param('ns3::Ptr< ns3::CallbackImplBase >', 'impl')],
1219 visibility='protected')
1220 ## callback.h (module 'core'): static std::string ns3::CallbackBase::Demangle(std::string const & mangled) [member function]
1221 cls.add_method('Demangle',
1222 'std::string',
1223 [param('std::string const &', 'mangled')],
1224 is_static=True, visibility='protected')
1225 return
1226
Alexander Afanasyev4975f732011-12-20 17:52:19 -08001227def register_Ns3CcnxAppHelper_methods(root_module, cls):
1228 ## ccnx-app-helper.h (module 'NDNabstraction'): ns3::CcnxAppHelper::CcnxAppHelper(ns3::CcnxAppHelper const & arg0) [copy constructor]
1229 cls.add_constructor([param('ns3::CcnxAppHelper const &', 'arg0')])
1230 ## ccnx-app-helper.h (module 'NDNabstraction'): ns3::CcnxAppHelper::CcnxAppHelper(std::string const & prefix) [constructor]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07001231 cls.add_constructor([param('std::string const &', 'prefix')])
Alexander Afanasyev4975f732011-12-20 17:52:19 -08001232 ## ccnx-app-helper.h (module 'NDNabstraction'): ns3::ApplicationContainer ns3::CcnxAppHelper::Install(ns3::NodeContainer c) [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07001233 cls.add_method('Install',
1234 'ns3::ApplicationContainer',
1235 [param('ns3::NodeContainer', 'c')])
Alexander Afanasyev4975f732011-12-20 17:52:19 -08001236 ## ccnx-app-helper.h (module 'NDNabstraction'): ns3::ApplicationContainer ns3::CcnxAppHelper::Install(ns3::Ptr<ns3::Node> node) [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07001237 cls.add_method('Install',
1238 'ns3::ApplicationContainer',
1239 [param('ns3::Ptr< ns3::Node >', 'node')])
Alexander Afanasyev4975f732011-12-20 17:52:19 -08001240 ## ccnx-app-helper.h (module 'NDNabstraction'): ns3::ApplicationContainer ns3::CcnxAppHelper::Install(std::string nodeName) [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07001241 cls.add_method('Install',
1242 'ns3::ApplicationContainer',
1243 [param('std::string', 'nodeName')])
Alexander Afanasyev4975f732011-12-20 17:52:19 -08001244 ## ccnx-app-helper.h (module 'NDNabstraction'): void ns3::CcnxAppHelper::SetAttribute(std::string name, ns3::AttributeValue const & value) [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07001245 cls.add_method('SetAttribute',
1246 'void',
1247 [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')])
Alexander Afanasyev4975f732011-12-20 17:52:19 -08001248 ## ccnx-app-helper.h (module 'NDNabstraction'): void ns3::CcnxAppHelper::SetPrefix(std::string const & prefix) [member function]
1249 cls.add_method('SetPrefix',
1250 'void',
1251 [param('std::string const &', 'prefix')])
Alexander Afanasyev381dea02011-11-03 08:33:26 -07001252 return
1253
1254def register_Ns3CcnxContentObjectHeaderException_methods(root_module, cls):
1255 ## ccnx-content-object-header.h (module 'NDNabstraction'): ns3::CcnxContentObjectHeaderException::CcnxContentObjectHeaderException() [constructor]
1256 cls.add_constructor([])
1257 ## ccnx-content-object-header.h (module 'NDNabstraction'): ns3::CcnxContentObjectHeaderException::CcnxContentObjectHeaderException(ns3::CcnxContentObjectHeaderException const & arg0) [copy constructor]
1258 cls.add_constructor([param('ns3::CcnxContentObjectHeaderException const &', 'arg0')])
1259 return
1260
Alexander Afanasyev8e2f1122012-04-17 15:01:11 -07001261def register_Ns3CcnxFibEntry_methods(root_module, cls):
1262 cls.add_output_stream_operator()
1263 ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFibEntry::CcnxFibEntry(ns3::CcnxFibEntry const & arg0) [copy constructor]
1264 cls.add_constructor([param('ns3::CcnxFibEntry const &', 'arg0')])
1265 ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFibEntry::CcnxFibEntry(ns3::Ptr<ns3::CcnxNameComponents const> const & prefix) [constructor]
1266 cls.add_constructor([param('ns3::Ptr< ns3::CcnxNameComponents const > const &', 'prefix')])
1267 ## ccnx-fib.h (module 'NDNabstraction'): void ns3::CcnxFibEntry::AddOrUpdateRoutingMetric(ns3::Ptr<ns3::CcnxFace> face, int32_t metric) [member function]
1268 cls.add_method('AddOrUpdateRoutingMetric',
1269 'void',
1270 [param('ns3::Ptr< ns3::CcnxFace >', 'face'), param('int32_t', 'metric')])
1271 ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFibFaceMetric const & ns3::CcnxFibEntry::FindBestCandidate(uint32_t skip=0) const [member function]
1272 cls.add_method('FindBestCandidate',
1273 'ns3::CcnxFibFaceMetric const &',
1274 [param('uint32_t', 'skip', default_value='0')],
1275 is_const=True)
1276 ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxNameComponents const & ns3::CcnxFibEntry::GetPrefix() const [member function]
1277 cls.add_method('GetPrefix',
1278 'ns3::CcnxNameComponents const &',
1279 [],
1280 is_const=True)
1281 ## ccnx-fib.h (module 'NDNabstraction'): void ns3::CcnxFibEntry::Invalidate() [member function]
1282 cls.add_method('Invalidate',
1283 'void',
1284 [])
1285 ## ccnx-fib.h (module 'NDNabstraction'): void ns3::CcnxFibEntry::RemoveFace(ns3::Ptr<ns3::CcnxFace> const & face) [member function]
1286 cls.add_method('RemoveFace',
1287 'void',
1288 [param('ns3::Ptr< ns3::CcnxFace > const &', 'face')])
1289 ## ccnx-fib.h (module 'NDNabstraction'): void ns3::CcnxFibEntry::UpdateFaceRtt(ns3::Ptr<ns3::CcnxFace> face, ns3::Time const & sample) [member function]
1290 cls.add_method('UpdateFaceRtt',
1291 'void',
1292 [param('ns3::Ptr< ns3::CcnxFace >', 'face'), param('ns3::Time const &', 'sample')])
1293 ## ccnx-fib.h (module 'NDNabstraction'): void ns3::CcnxFibEntry::UpdateStatus(ns3::Ptr<ns3::CcnxFace> face, ns3::CcnxFibFaceMetric::Status status) [member function]
1294 cls.add_method('UpdateStatus',
1295 'void',
1296 [param('ns3::Ptr< ns3::CcnxFace >', 'face'), param('ns3::CcnxFibFaceMetric::Status', 'status')])
1297 ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFibEntry::m_faces [variable]
1298 cls.add_instance_attribute('m_faces', 'boost::multi_index::multi_index_container< ns3::CcnxFibFaceMetric, boost::multi_index::indexed_by< boost::multi_index::ordered_unique< boost::multi_index::tag< ns3::__ccnx_private::i_face, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na >, boost::multi_index::member< ns3::CcnxFibFaceMetric, ns3::Ptr< ns3::CcnxFace >, & ( ns3::CcnxFibFaceMetric::m_face ) >, mpl_::na >, boost::multi_index::ordered_non_unique< boost::multi_index::tag< ns3::__ccnx_private::i_metric, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na >, boost::multi_index::composite_key< ns3::CcnxFibFaceMetric, boost::multi_index::member< ns3::CcnxFibFaceMetric, ns3::CcnxFibFaceMetric::Status, & ( ns3::CcnxFibFaceMetric::m_status ) >, boost::multi_index::member< ns3::CcnxFibFaceMetric, int, & ( ns3::CcnxFibFaceMetric::m_routingCost ) >, boost::tuples::null_type, boost::tuples::null_type, boost::tuples::null_type, boost::tuples::null_type, boost::tuples::null_type, boost::tuples::null_type, boost::tuples::null_type, boost::tuples::null_type >, mpl_::na >, boost::multi_index::random_access< boost::multi_index::tag< ns3::__ccnx_private::i_nth, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na > >, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na >, std::allocator< ns3::CcnxFibFaceMetric > >', is_const=False)
1299 ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFibEntry::m_needsProbing [variable]
1300 cls.add_instance_attribute('m_needsProbing', 'bool', is_const=False)
1301 ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFibEntry::m_prefix [variable]
1302 cls.add_instance_attribute('m_prefix', 'ns3::Ptr< ns3::CcnxNameComponents const >', is_const=False)
1303 return
1304
1305def register_Ns3CcnxFibEntryNoFaces_methods(root_module, cls):
1306 ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFibEntry::NoFaces::NoFaces() [constructor]
1307 cls.add_constructor([])
1308 ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFibEntry::NoFaces::NoFaces(ns3::CcnxFibEntry::NoFaces const & arg0) [copy constructor]
1309 cls.add_constructor([param('ns3::CcnxFibEntry::NoFaces const &', 'arg0')])
1310 return
1311
Alexander Afanasyev381dea02011-11-03 08:33:26 -07001312def register_Ns3CcnxFibEntryContainer_methods(root_module, cls):
1313 ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFibEntryContainer::CcnxFibEntryContainer() [constructor]
1314 cls.add_constructor([])
1315 ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFibEntryContainer::CcnxFibEntryContainer(ns3::CcnxFibEntryContainer const & arg0) [copy constructor]
1316 cls.add_constructor([param('ns3::CcnxFibEntryContainer const &', 'arg0')])
1317 return
1318
1319def register_Ns3CcnxFibFaceMetric_methods(root_module, cls):
1320 cls.add_output_stream_operator()
1321 cls.add_binary_comparison_operator('<')
1322 ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFibFaceMetric::CcnxFibFaceMetric(ns3::CcnxFibFaceMetric const & arg0) [copy constructor]
1323 cls.add_constructor([param('ns3::CcnxFibFaceMetric const &', 'arg0')])
Alexander Afanasyev03d92e42012-02-01 21:06:53 -08001324 ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFibFaceMetric::CcnxFibFaceMetric(ns3::Ptr<ns3::CcnxFace> face, int32_t cost) [constructor]
1325 cls.add_constructor([param('ns3::Ptr< ns3::CcnxFace >', 'face'), param('int32_t', 'cost')])
Alexander Afanasyev381dea02011-11-03 08:33:26 -07001326 ## ccnx-fib.h (module 'NDNabstraction'): ns3::Ptr<ns3::CcnxFace> ns3::CcnxFibFaceMetric::GetFace() const [member function]
1327 cls.add_method('GetFace',
1328 'ns3::Ptr< ns3::CcnxFace >',
1329 [],
1330 is_const=True)
Alexander Afanasyev07827182011-12-13 01:07:32 -08001331 ## ccnx-fib.h (module 'NDNabstraction'): void ns3::CcnxFibFaceMetric::UpdateRtt(ns3::Time const & rttSample) [member function]
1332 cls.add_method('UpdateRtt',
1333 'void',
1334 [param('ns3::Time const &', 'rttSample')])
Alexander Afanasyev381dea02011-11-03 08:33:26 -07001335 ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFibFaceMetric::m_face [variable]
1336 cls.add_instance_attribute('m_face', 'ns3::Ptr< ns3::CcnxFace >', is_const=False)
1337 ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFibFaceMetric::m_routingCost [variable]
1338 cls.add_instance_attribute('m_routingCost', 'int32_t', is_const=False)
1339 ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFibFaceMetric::m_rttVar [variable]
1340 cls.add_instance_attribute('m_rttVar', 'ns3::Time', is_const=False)
1341 ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFibFaceMetric::m_sRtt [variable]
1342 cls.add_instance_attribute('m_sRtt', 'ns3::Time', is_const=False)
1343 ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFibFaceMetric::m_status [variable]
1344 cls.add_instance_attribute('m_status', 'ns3::CcnxFibFaceMetric::Status', is_const=False)
1345 return
1346
Alexander Afanasyev381dea02011-11-03 08:33:26 -07001347def register_Ns3CcnxFibFaceMetricContainer_methods(root_module, cls):
1348 ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFibFaceMetricContainer::CcnxFibFaceMetricContainer() [constructor]
1349 cls.add_constructor([])
1350 ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFibFaceMetricContainer::CcnxFibFaceMetricContainer(ns3::CcnxFibFaceMetricContainer const & arg0) [copy constructor]
1351 cls.add_constructor([param('ns3::CcnxFibFaceMetricContainer const &', 'arg0')])
1352 return
1353
Alexander Afanasyev8e2f1122012-04-17 15:01:11 -07001354def register_Ns3CcnxGlobalRoutingHelper_methods(root_module, cls):
1355 ## ccnx-global-routing-helper.h (module 'NDNabstraction'): ns3::CcnxGlobalRoutingHelper::CcnxGlobalRoutingHelper() [constructor]
1356 cls.add_constructor([])
1357 ## ccnx-global-routing-helper.h (module 'NDNabstraction'): ns3::CcnxGlobalRoutingHelper::CcnxGlobalRoutingHelper(ns3::CcnxGlobalRoutingHelper const & arg0) [copy constructor]
1358 cls.add_constructor([param('ns3::CcnxGlobalRoutingHelper const &', 'arg0')])
1359 ## ccnx-global-routing-helper.h (module 'NDNabstraction'): void ns3::CcnxGlobalRoutingHelper::AddOrigin(std::string const & prefix, ns3::Ptr<ns3::Node> node) [member function]
1360 cls.add_method('AddOrigin',
1361 'void',
1362 [param('std::string const &', 'prefix'), param('ns3::Ptr< ns3::Node >', 'node')])
1363 ## ccnx-global-routing-helper.h (module 'NDNabstraction'): void ns3::CcnxGlobalRoutingHelper::AddOrigin(std::string const & prefix, std::string const & nodeName) [member function]
1364 cls.add_method('AddOrigin',
1365 'void',
1366 [param('std::string const &', 'prefix'), param('std::string const &', 'nodeName')])
1367 ## ccnx-global-routing-helper.h (module 'NDNabstraction'): void ns3::CcnxGlobalRoutingHelper::CalculateRoutes() [member function]
1368 cls.add_method('CalculateRoutes',
1369 'void',
1370 [])
1371 ## ccnx-global-routing-helper.h (module 'NDNabstraction'): void ns3::CcnxGlobalRoutingHelper::Install(ns3::Ptr<ns3::Node> node) [member function]
1372 cls.add_method('Install',
1373 'void',
1374 [param('ns3::Ptr< ns3::Node >', 'node')])
1375 ## ccnx-global-routing-helper.h (module 'NDNabstraction'): void ns3::CcnxGlobalRoutingHelper::Install(ns3::Ptr<ns3::Channel> channel) [member function]
1376 cls.add_method('Install',
1377 'void',
1378 [param('ns3::Ptr< ns3::Channel >', 'channel')])
1379 return
1380
Alexander Afanasyev53872ce2011-12-16 13:17:18 -08001381def register_Ns3CcnxHeaderHelper_methods(root_module, cls):
1382 ## ccnx-header-helper.h (module 'NDNabstraction'): ns3::CcnxHeaderHelper::CcnxHeaderHelper() [constructor]
1383 cls.add_constructor([])
1384 ## ccnx-header-helper.h (module 'NDNabstraction'): ns3::CcnxHeaderHelper::CcnxHeaderHelper(ns3::CcnxHeaderHelper const & arg0) [copy constructor]
1385 cls.add_constructor([param('ns3::CcnxHeaderHelper const &', 'arg0')])
1386 ## ccnx-header-helper.h (module 'NDNabstraction'): static ns3::CcnxHeaderHelper::Type ns3::CcnxHeaderHelper::GetCcnxHeaderType(ns3::Ptr<const ns3::Packet> packet) [member function]
1387 cls.add_method('GetCcnxHeaderType',
1388 'ns3::CcnxHeaderHelper::Type',
1389 [param('ns3::Ptr< ns3::Packet const >', 'packet')],
1390 is_static=True)
1391 return
1392
Alexander Afanasyev381dea02011-11-03 08:33:26 -07001393def register_Ns3CcnxInterestHeaderException_methods(root_module, cls):
1394 ## ccnx-interest-header.h (module 'NDNabstraction'): ns3::CcnxInterestHeaderException::CcnxInterestHeaderException() [constructor]
1395 cls.add_constructor([])
1396 ## ccnx-interest-header.h (module 'NDNabstraction'): ns3::CcnxInterestHeaderException::CcnxInterestHeaderException(ns3::CcnxInterestHeaderException const & arg0) [copy constructor]
1397 cls.add_constructor([param('ns3::CcnxInterestHeaderException const &', 'arg0')])
1398 return
1399
Alexander Afanasyev07827182011-12-13 01:07:32 -08001400def register_Ns3CcnxStackHelper_methods(root_module, cls):
1401 ## ccnx-stack-helper.h (module 'NDNabstraction'): ns3::CcnxStackHelper::CcnxStackHelper() [constructor]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07001402 cls.add_constructor([])
Alexander Afanasyev07827182011-12-13 01:07:32 -08001403 ## ccnx-stack-helper.h (module 'NDNabstraction'): void ns3::CcnxStackHelper::SetForwardingStrategy(std::string forwardingStrategy) [member function]
1404 cls.add_method('SetForwardingStrategy',
1405 'void',
1406 [param('std::string', 'forwardingStrategy')])
1407 ## ccnx-stack-helper.h (module 'NDNabstraction'): void ns3::CcnxStackHelper::EnableLimits(bool enable=true, ns3::Time avgRtt=ns3::Seconds( ), uint32_t avgContentObject=1100, uint32_t avgInterest=40) [member function]
1408 cls.add_method('EnableLimits',
1409 'void',
1410 [param('bool', 'enable', default_value='true'), param('ns3::Time', 'avgRtt', default_value='ns3::Seconds(0)'), param('uint32_t', 'avgContentObject', default_value='1100'), param('uint32_t', 'avgInterest', default_value='40')])
1411 ## ccnx-stack-helper.h (module 'NDNabstraction'): ns3::Ptr<ns3::CcnxFaceContainer> ns3::CcnxStackHelper::Install(std::string nodeName) const [member function]
1412 cls.add_method('Install',
1413 'ns3::Ptr< ns3::CcnxFaceContainer >',
1414 [param('std::string', 'nodeName')],
Alexander Afanasyev381dea02011-11-03 08:33:26 -07001415 is_const=True)
Alexander Afanasyev07827182011-12-13 01:07:32 -08001416 ## ccnx-stack-helper.h (module 'NDNabstraction'): ns3::Ptr<ns3::CcnxFaceContainer> ns3::CcnxStackHelper::Install(ns3::Ptr<ns3::Node> node) const [member function]
1417 cls.add_method('Install',
1418 'ns3::Ptr< ns3::CcnxFaceContainer >',
1419 [param('ns3::Ptr< ns3::Node >', 'node')],
1420 is_const=True)
1421 ## ccnx-stack-helper.h (module 'NDNabstraction'): ns3::Ptr<ns3::CcnxFaceContainer> ns3::CcnxStackHelper::Install(ns3::NodeContainer c) const [member function]
1422 cls.add_method('Install',
1423 'ns3::Ptr< ns3::CcnxFaceContainer >',
1424 [param('ns3::NodeContainer', 'c')],
1425 is_const=True)
1426 ## ccnx-stack-helper.h (module 'NDNabstraction'): ns3::Ptr<ns3::CcnxFaceContainer> ns3::CcnxStackHelper::InstallAll() const [member function]
1427 cls.add_method('InstallAll',
1428 'ns3::Ptr< ns3::CcnxFaceContainer >',
Alexander Afanasyev381dea02011-11-03 08:33:26 -07001429 [],
1430 is_const=True)
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08001431 ## ccnx-stack-helper.h (module 'NDNabstraction'): static void ns3::CcnxStackHelper::AddRoute(std::string nodeName, std::string prefix, uint32_t faceId, int32_t metric) [member function]
Alexander Afanasyev07827182011-12-13 01:07:32 -08001432 cls.add_method('AddRoute',
1433 'void',
1434 [param('std::string', 'nodeName'), param('std::string', 'prefix'), param('uint32_t', 'faceId'), param('int32_t', 'metric')],
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08001435 is_static=True)
1436 ## ccnx-stack-helper.h (module 'NDNabstraction'): static void ns3::CcnxStackHelper::AddRoute(ns3::Ptr<ns3::Node> node, std::string prefix, ns3::Ptr<ns3::CcnxFace> face, int32_t metric) [member function]
Alexander Afanasyev07827182011-12-13 01:07:32 -08001437 cls.add_method('AddRoute',
1438 'void',
1439 [param('ns3::Ptr< ns3::Node >', 'node'), param('std::string', 'prefix'), param('ns3::Ptr< ns3::CcnxFace >', 'face'), param('int32_t', 'metric')],
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08001440 is_static=True)
Alexander Afanasyev07827182011-12-13 01:07:32 -08001441 ## ccnx-stack-helper.h (module 'NDNabstraction'): void ns3::CcnxStackHelper::SetDefaultRoutes(bool needSet) [member function]
1442 cls.add_method('SetDefaultRoutes',
1443 'void',
1444 [param('bool', 'needSet')])
Alexander Afanasyev381dea02011-11-03 08:33:26 -07001445 return
1446
Alexander Afanasyevb3e4b852011-12-23 15:58:20 -08001447def register_Ns3CcnxTraceHelper_methods(root_module, cls):
1448 ## ccnx-trace-helper.h (module 'NDNabstraction'): ns3::CcnxTraceHelper::CcnxTraceHelper(ns3::CcnxTraceHelper const & arg0) [copy constructor]
1449 cls.add_constructor([param('ns3::CcnxTraceHelper const &', 'arg0')])
1450 ## ccnx-trace-helper.h (module 'NDNabstraction'): ns3::CcnxTraceHelper::CcnxTraceHelper() [constructor]
1451 cls.add_constructor([])
1452 ## ccnx-trace-helper.h (module 'NDNabstraction'): void ns3::CcnxTraceHelper::EnableAggregateAppAll(std::string const & app) [member function]
1453 cls.add_method('EnableAggregateAppAll',
1454 'void',
1455 [param('std::string const &', 'app')])
1456 ## ccnx-trace-helper.h (module 'NDNabstraction'): void ns3::CcnxTraceHelper::EnableAggregateL3All() [member function]
1457 cls.add_method('EnableAggregateL3All',
1458 'void',
1459 [])
Alexander Afanasyev03d92e42012-02-01 21:06:53 -08001460 ## ccnx-trace-helper.h (module 'NDNabstraction'): void ns3::CcnxTraceHelper::EnableIpv4RateL3All(std::string const & ipv4RateTrace="ipv4-rate.log") [member function]
1461 cls.add_method('EnableIpv4RateL3All',
1462 'void',
1463 [param('std::string const &', 'ipv4RateTrace', default_value='"ipv4-rate.log"')])
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08001464 ## ccnx-trace-helper.h (module 'NDNabstraction'): void ns3::CcnxTraceHelper::EnableIpv4SeqsAppAll(std::string const & appSeqsTrace="app-seqs.log") [member function]
1465 cls.add_method('EnableIpv4SeqsAppAll',
1466 'void',
1467 [param('std::string const &', 'appSeqsTrace', default_value='"app-seqs.log"')])
1468 ## ccnx-trace-helper.h (module 'NDNabstraction'): void ns3::CcnxTraceHelper::EnablePathWeights(std::string const & pathWeights) [member function]
1469 cls.add_method('EnablePathWeights',
1470 'void',
1471 [param('std::string const &', 'pathWeights')])
Alexander Afanasyevb3e4b852011-12-23 15:58:20 -08001472 ## ccnx-trace-helper.h (module 'NDNabstraction'): void ns3::CcnxTraceHelper::EnableRateL3All(std::string const & l3RateTrace="l3-rate.log") [member function]
1473 cls.add_method('EnableRateL3All',
1474 'void',
1475 [param('std::string const &', 'l3RateTrace', default_value='"l3-rate.log"')])
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08001476 ## ccnx-trace-helper.h (module 'NDNabstraction'): void ns3::CcnxTraceHelper::EnableSeqsAppAll(std::string const & app, std::string const & appSeqsTrace="app-seqs.log") [member function]
1477 cls.add_method('EnableSeqsAppAll',
1478 'void',
1479 [param('std::string const &', 'app'), param('std::string const &', 'appSeqsTrace', default_value='"app-seqs.log"')])
1480 ## ccnx-trace-helper.h (module 'NDNabstraction'): void ns3::CcnxTraceHelper::EnableWindowsAll(std::string const & windowTrace="windows.log") [member function]
1481 cls.add_method('EnableWindowsAll',
1482 'void',
1483 [param('std::string const &', 'windowTrace', default_value='"windows.log"')])
1484 ## ccnx-trace-helper.h (module 'NDNabstraction'): void ns3::CcnxTraceHelper::EnableWindowsTcpAll(std::string const & windowTrace) [member function]
1485 cls.add_method('EnableWindowsTcpAll',
1486 'void',
1487 [param('std::string const &', 'windowTrace')])
Alexander Afanasyevb3e4b852011-12-23 15:58:20 -08001488 ## ccnx-trace-helper.h (module 'NDNabstraction'): void ns3::CcnxTraceHelper::SetAppTraceFile(std::string const & appTrace="apps.log") [member function]
1489 cls.add_method('SetAppTraceFile',
1490 'void',
1491 [param('std::string const &', 'appTrace', default_value='"apps.log"')])
1492 ## ccnx-trace-helper.h (module 'NDNabstraction'): void ns3::CcnxTraceHelper::SetL3TraceFile(std::string const & l3Trace="l3.log") [member function]
1493 cls.add_method('SetL3TraceFile',
1494 'void',
1495 [param('std::string const &', 'l3Trace', default_value='"l3.log"')])
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08001496 ## ccnx-trace-helper.h (module 'NDNabstraction'): void ns3::CcnxTraceHelper::TcpConnect(ns3::Ptr<ns3::Node> node) [member function]
1497 cls.add_method('TcpConnect',
1498 'void',
1499 [param('ns3::Ptr< ns3::Node >', 'node')])
Alexander Afanasyevb3e4b852011-12-23 15:58:20 -08001500 return
1501
Alexander Afanasyev53872ce2011-12-16 13:17:18 -08001502def register_Ns3CcnxUnknownHeaderException_methods(root_module, cls):
1503 ## ccnx-header-helper.h (module 'NDNabstraction'): ns3::CcnxUnknownHeaderException::CcnxUnknownHeaderException() [constructor]
1504 cls.add_constructor([])
1505 ## ccnx-header-helper.h (module 'NDNabstraction'): ns3::CcnxUnknownHeaderException::CcnxUnknownHeaderException(ns3::CcnxUnknownHeaderException const & arg0) [copy constructor]
1506 cls.add_constructor([param('ns3::CcnxUnknownHeaderException const &', 'arg0')])
1507 return
1508
Alexander Afanasyev381dea02011-11-03 08:33:26 -07001509def register_Ns3EventId_methods(root_module, cls):
1510 cls.add_binary_comparison_operator('!=')
1511 cls.add_binary_comparison_operator('==')
1512 ## event-id.h (module 'core'): ns3::EventId::EventId(ns3::EventId const & arg0) [copy constructor]
1513 cls.add_constructor([param('ns3::EventId const &', 'arg0')])
1514 ## event-id.h (module 'core'): ns3::EventId::EventId() [constructor]
1515 cls.add_constructor([])
1516 ## event-id.h (module 'core'): ns3::EventId::EventId(ns3::Ptr<ns3::EventImpl> const & impl, uint64_t ts, uint32_t context, uint32_t uid) [constructor]
1517 cls.add_constructor([param('ns3::Ptr< ns3::EventImpl > const &', 'impl'), param('uint64_t', 'ts'), param('uint32_t', 'context'), param('uint32_t', 'uid')])
1518 ## event-id.h (module 'core'): void ns3::EventId::Cancel() [member function]
1519 cls.add_method('Cancel',
1520 'void',
1521 [])
1522 ## event-id.h (module 'core'): uint32_t ns3::EventId::GetContext() const [member function]
1523 cls.add_method('GetContext',
1524 'uint32_t',
1525 [],
1526 is_const=True)
1527 ## event-id.h (module 'core'): uint64_t ns3::EventId::GetTs() const [member function]
1528 cls.add_method('GetTs',
1529 'uint64_t',
1530 [],
1531 is_const=True)
1532 ## event-id.h (module 'core'): uint32_t ns3::EventId::GetUid() const [member function]
1533 cls.add_method('GetUid',
1534 'uint32_t',
1535 [],
1536 is_const=True)
1537 ## event-id.h (module 'core'): bool ns3::EventId::IsExpired() const [member function]
1538 cls.add_method('IsExpired',
1539 'bool',
1540 [],
1541 is_const=True)
1542 ## event-id.h (module 'core'): bool ns3::EventId::IsRunning() const [member function]
1543 cls.add_method('IsRunning',
1544 'bool',
1545 [],
1546 is_const=True)
1547 ## event-id.h (module 'core'): ns3::EventImpl * ns3::EventId::PeekEventImpl() const [member function]
1548 cls.add_method('PeekEventImpl',
1549 'ns3::EventImpl *',
1550 [],
1551 is_const=True)
1552 return
1553
Alexander Afanasyev6f933532012-02-29 13:30:37 -08001554def register_Ns3IntToType__0_methods(root_module, cls):
1555 ## int-to-type.h (module 'core'): ns3::IntToType<0>::IntToType() [constructor]
1556 cls.add_constructor([])
1557 ## int-to-type.h (module 'core'): ns3::IntToType<0>::IntToType(ns3::IntToType<0> const & arg0) [copy constructor]
1558 cls.add_constructor([param('ns3::IntToType< 0 > const &', 'arg0')])
1559 return
1560
1561def register_Ns3IntToType__1_methods(root_module, cls):
1562 ## int-to-type.h (module 'core'): ns3::IntToType<1>::IntToType() [constructor]
1563 cls.add_constructor([])
1564 ## int-to-type.h (module 'core'): ns3::IntToType<1>::IntToType(ns3::IntToType<1> const & arg0) [copy constructor]
1565 cls.add_constructor([param('ns3::IntToType< 1 > const &', 'arg0')])
1566 return
1567
1568def register_Ns3IntToType__2_methods(root_module, cls):
1569 ## int-to-type.h (module 'core'): ns3::IntToType<2>::IntToType() [constructor]
1570 cls.add_constructor([])
1571 ## int-to-type.h (module 'core'): ns3::IntToType<2>::IntToType(ns3::IntToType<2> const & arg0) [copy constructor]
1572 cls.add_constructor([param('ns3::IntToType< 2 > const &', 'arg0')])
1573 return
1574
1575def register_Ns3IntToType__3_methods(root_module, cls):
1576 ## int-to-type.h (module 'core'): ns3::IntToType<3>::IntToType() [constructor]
1577 cls.add_constructor([])
1578 ## int-to-type.h (module 'core'): ns3::IntToType<3>::IntToType(ns3::IntToType<3> const & arg0) [copy constructor]
1579 cls.add_constructor([param('ns3::IntToType< 3 > const &', 'arg0')])
1580 return
1581
1582def register_Ns3IntToType__4_methods(root_module, cls):
1583 ## int-to-type.h (module 'core'): ns3::IntToType<4>::IntToType() [constructor]
1584 cls.add_constructor([])
1585 ## int-to-type.h (module 'core'): ns3::IntToType<4>::IntToType(ns3::IntToType<4> const & arg0) [copy constructor]
1586 cls.add_constructor([param('ns3::IntToType< 4 > const &', 'arg0')])
1587 return
1588
1589def register_Ns3IntToType__5_methods(root_module, cls):
1590 ## int-to-type.h (module 'core'): ns3::IntToType<5>::IntToType() [constructor]
1591 cls.add_constructor([])
1592 ## int-to-type.h (module 'core'): ns3::IntToType<5>::IntToType(ns3::IntToType<5> const & arg0) [copy constructor]
1593 cls.add_constructor([param('ns3::IntToType< 5 > const &', 'arg0')])
1594 return
1595
1596def register_Ns3IntToType__6_methods(root_module, cls):
1597 ## int-to-type.h (module 'core'): ns3::IntToType<6>::IntToType() [constructor]
1598 cls.add_constructor([])
1599 ## int-to-type.h (module 'core'): ns3::IntToType<6>::IntToType(ns3::IntToType<6> const & arg0) [copy constructor]
1600 cls.add_constructor([param('ns3::IntToType< 6 > const &', 'arg0')])
1601 return
1602
Alexander Afanasyev381dea02011-11-03 08:33:26 -07001603def register_Ns3Ipv4Address_methods(root_module, cls):
1604 cls.add_binary_comparison_operator('!=')
1605 cls.add_output_stream_operator()
1606 cls.add_binary_comparison_operator('==')
1607 cls.add_binary_comparison_operator('<')
1608 ## ipv4-address.h (module 'network'): ns3::Ipv4Address::Ipv4Address(ns3::Ipv4Address const & arg0) [copy constructor]
1609 cls.add_constructor([param('ns3::Ipv4Address const &', 'arg0')])
1610 ## ipv4-address.h (module 'network'): ns3::Ipv4Address::Ipv4Address() [constructor]
1611 cls.add_constructor([])
1612 ## ipv4-address.h (module 'network'): ns3::Ipv4Address::Ipv4Address(uint32_t address) [constructor]
1613 cls.add_constructor([param('uint32_t', 'address')])
1614 ## ipv4-address.h (module 'network'): ns3::Ipv4Address::Ipv4Address(char const * address) [constructor]
1615 cls.add_constructor([param('char const *', 'address')])
1616 ## ipv4-address.h (module 'network'): ns3::Ipv4Address ns3::Ipv4Address::CombineMask(ns3::Ipv4Mask const & mask) const [member function]
1617 cls.add_method('CombineMask',
1618 'ns3::Ipv4Address',
1619 [param('ns3::Ipv4Mask const &', 'mask')],
1620 is_const=True)
1621 ## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::ConvertFrom(ns3::Address const & address) [member function]
1622 cls.add_method('ConvertFrom',
1623 'ns3::Ipv4Address',
1624 [param('ns3::Address const &', 'address')],
1625 is_static=True)
1626 ## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::Deserialize(uint8_t const * buf) [member function]
1627 cls.add_method('Deserialize',
1628 'ns3::Ipv4Address',
1629 [param('uint8_t const *', 'buf')],
1630 is_static=True)
1631 ## ipv4-address.h (module 'network'): uint32_t const & ns3::Ipv4Address::Get() const [member function]
1632 cls.add_method('Get',
1633 'uint32_t const &',
1634 [],
1635 is_const=True)
1636 ## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::GetAny() [member function]
1637 cls.add_method('GetAny',
1638 'ns3::Ipv4Address',
1639 [],
1640 is_static=True)
1641 ## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::GetBroadcast() [member function]
1642 cls.add_method('GetBroadcast',
1643 'ns3::Ipv4Address',
1644 [],
1645 is_static=True)
1646 ## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::GetLoopback() [member function]
1647 cls.add_method('GetLoopback',
1648 'ns3::Ipv4Address',
1649 [],
1650 is_static=True)
1651 ## ipv4-address.h (module 'network'): ns3::Ipv4Address ns3::Ipv4Address::GetSubnetDirectedBroadcast(ns3::Ipv4Mask const & mask) const [member function]
1652 cls.add_method('GetSubnetDirectedBroadcast',
1653 'ns3::Ipv4Address',
1654 [param('ns3::Ipv4Mask const &', 'mask')],
1655 is_const=True)
1656 ## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::GetZero() [member function]
1657 cls.add_method('GetZero',
1658 'ns3::Ipv4Address',
1659 [],
1660 is_static=True)
1661 ## ipv4-address.h (module 'network'): bool ns3::Ipv4Address::IsBroadcast() const [member function]
1662 cls.add_method('IsBroadcast',
1663 'bool',
1664 [],
1665 is_const=True)
1666 ## ipv4-address.h (module 'network'): bool ns3::Ipv4Address::IsEqual(ns3::Ipv4Address const & other) const [member function]
1667 cls.add_method('IsEqual',
1668 'bool',
1669 [param('ns3::Ipv4Address const &', 'other')],
1670 is_const=True)
1671 ## ipv4-address.h (module 'network'): bool ns3::Ipv4Address::IsLocalMulticast() const [member function]
1672 cls.add_method('IsLocalMulticast',
1673 'bool',
1674 [],
1675 is_const=True)
1676 ## ipv4-address.h (module 'network'): static bool ns3::Ipv4Address::IsMatchingType(ns3::Address const & address) [member function]
1677 cls.add_method('IsMatchingType',
1678 'bool',
1679 [param('ns3::Address const &', 'address')],
1680 is_static=True)
1681 ## ipv4-address.h (module 'network'): bool ns3::Ipv4Address::IsMulticast() const [member function]
1682 cls.add_method('IsMulticast',
1683 'bool',
1684 [],
1685 is_const=True)
1686 ## ipv4-address.h (module 'network'): bool ns3::Ipv4Address::IsSubnetDirectedBroadcast(ns3::Ipv4Mask const & mask) const [member function]
1687 cls.add_method('IsSubnetDirectedBroadcast',
1688 'bool',
1689 [param('ns3::Ipv4Mask const &', 'mask')],
1690 is_const=True)
1691 ## ipv4-address.h (module 'network'): void ns3::Ipv4Address::Print(std::ostream & os) const [member function]
1692 cls.add_method('Print',
1693 'void',
1694 [param('std::ostream &', 'os')],
1695 is_const=True)
1696 ## ipv4-address.h (module 'network'): void ns3::Ipv4Address::Serialize(uint8_t * buf) const [member function]
1697 cls.add_method('Serialize',
1698 'void',
1699 [param('uint8_t *', 'buf')],
1700 is_const=True)
1701 ## ipv4-address.h (module 'network'): void ns3::Ipv4Address::Set(uint32_t address) [member function]
1702 cls.add_method('Set',
1703 'void',
1704 [param('uint32_t', 'address')])
1705 ## ipv4-address.h (module 'network'): void ns3::Ipv4Address::Set(char const * address) [member function]
1706 cls.add_method('Set',
1707 'void',
1708 [param('char const *', 'address')])
1709 return
1710
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08001711def register_Ns3Ipv4InterfaceAddress_methods(root_module, cls):
1712 cls.add_binary_comparison_operator('!=')
1713 cls.add_output_stream_operator()
1714 cls.add_binary_comparison_operator('==')
1715 ## ipv4-interface-address.h (module 'internet'): ns3::Ipv4InterfaceAddress::Ipv4InterfaceAddress() [constructor]
1716 cls.add_constructor([])
1717 ## ipv4-interface-address.h (module 'internet'): ns3::Ipv4InterfaceAddress::Ipv4InterfaceAddress(ns3::Ipv4Address local, ns3::Ipv4Mask mask) [constructor]
1718 cls.add_constructor([param('ns3::Ipv4Address', 'local'), param('ns3::Ipv4Mask', 'mask')])
1719 ## ipv4-interface-address.h (module 'internet'): ns3::Ipv4InterfaceAddress::Ipv4InterfaceAddress(ns3::Ipv4InterfaceAddress const & o) [copy constructor]
1720 cls.add_constructor([param('ns3::Ipv4InterfaceAddress const &', 'o')])
1721 ## ipv4-interface-address.h (module 'internet'): ns3::Ipv4Address ns3::Ipv4InterfaceAddress::GetBroadcast() const [member function]
1722 cls.add_method('GetBroadcast',
1723 'ns3::Ipv4Address',
1724 [],
1725 is_const=True)
1726 ## ipv4-interface-address.h (module 'internet'): ns3::Ipv4Address ns3::Ipv4InterfaceAddress::GetLocal() const [member function]
1727 cls.add_method('GetLocal',
1728 'ns3::Ipv4Address',
1729 [],
1730 is_const=True)
1731 ## ipv4-interface-address.h (module 'internet'): ns3::Ipv4Mask ns3::Ipv4InterfaceAddress::GetMask() const [member function]
1732 cls.add_method('GetMask',
1733 'ns3::Ipv4Mask',
1734 [],
1735 is_const=True)
1736 ## ipv4-interface-address.h (module 'internet'): ns3::Ipv4InterfaceAddress::InterfaceAddressScope_e ns3::Ipv4InterfaceAddress::GetScope() const [member function]
1737 cls.add_method('GetScope',
1738 'ns3::Ipv4InterfaceAddress::InterfaceAddressScope_e',
1739 [],
1740 is_const=True)
1741 ## ipv4-interface-address.h (module 'internet'): bool ns3::Ipv4InterfaceAddress::IsSecondary() const [member function]
1742 cls.add_method('IsSecondary',
1743 'bool',
1744 [],
1745 is_const=True)
1746 ## ipv4-interface-address.h (module 'internet'): void ns3::Ipv4InterfaceAddress::SetBroadcast(ns3::Ipv4Address broadcast) [member function]
1747 cls.add_method('SetBroadcast',
1748 'void',
1749 [param('ns3::Ipv4Address', 'broadcast')])
1750 ## ipv4-interface-address.h (module 'internet'): void ns3::Ipv4InterfaceAddress::SetLocal(ns3::Ipv4Address local) [member function]
1751 cls.add_method('SetLocal',
1752 'void',
1753 [param('ns3::Ipv4Address', 'local')])
1754 ## ipv4-interface-address.h (module 'internet'): void ns3::Ipv4InterfaceAddress::SetMask(ns3::Ipv4Mask mask) [member function]
1755 cls.add_method('SetMask',
1756 'void',
1757 [param('ns3::Ipv4Mask', 'mask')])
1758 ## ipv4-interface-address.h (module 'internet'): void ns3::Ipv4InterfaceAddress::SetPrimary() [member function]
1759 cls.add_method('SetPrimary',
1760 'void',
1761 [])
1762 ## ipv4-interface-address.h (module 'internet'): void ns3::Ipv4InterfaceAddress::SetScope(ns3::Ipv4InterfaceAddress::InterfaceAddressScope_e scope) [member function]
1763 cls.add_method('SetScope',
1764 'void',
1765 [param('ns3::Ipv4InterfaceAddress::InterfaceAddressScope_e', 'scope')])
1766 ## ipv4-interface-address.h (module 'internet'): void ns3::Ipv4InterfaceAddress::SetSecondary() [member function]
1767 cls.add_method('SetSecondary',
1768 'void',
1769 [])
1770 return
1771
Alexander Afanasyev381dea02011-11-03 08:33:26 -07001772def register_Ns3Ipv4Mask_methods(root_module, cls):
1773 cls.add_binary_comparison_operator('!=')
1774 cls.add_output_stream_operator()
1775 cls.add_binary_comparison_operator('==')
1776 ## ipv4-address.h (module 'network'): ns3::Ipv4Mask::Ipv4Mask(ns3::Ipv4Mask const & arg0) [copy constructor]
1777 cls.add_constructor([param('ns3::Ipv4Mask const &', 'arg0')])
1778 ## ipv4-address.h (module 'network'): ns3::Ipv4Mask::Ipv4Mask() [constructor]
1779 cls.add_constructor([])
1780 ## ipv4-address.h (module 'network'): ns3::Ipv4Mask::Ipv4Mask(uint32_t mask) [constructor]
1781 cls.add_constructor([param('uint32_t', 'mask')])
1782 ## ipv4-address.h (module 'network'): ns3::Ipv4Mask::Ipv4Mask(char const * mask) [constructor]
1783 cls.add_constructor([param('char const *', 'mask')])
1784 ## ipv4-address.h (module 'network'): uint32_t ns3::Ipv4Mask::Get() const [member function]
1785 cls.add_method('Get',
1786 'uint32_t',
1787 [],
1788 is_const=True)
1789 ## ipv4-address.h (module 'network'): uint32_t ns3::Ipv4Mask::GetInverse() const [member function]
1790 cls.add_method('GetInverse',
1791 'uint32_t',
1792 [],
1793 is_const=True)
1794 ## ipv4-address.h (module 'network'): static ns3::Ipv4Mask ns3::Ipv4Mask::GetLoopback() [member function]
1795 cls.add_method('GetLoopback',
1796 'ns3::Ipv4Mask',
1797 [],
1798 is_static=True)
1799 ## ipv4-address.h (module 'network'): static ns3::Ipv4Mask ns3::Ipv4Mask::GetOnes() [member function]
1800 cls.add_method('GetOnes',
1801 'ns3::Ipv4Mask',
1802 [],
1803 is_static=True)
1804 ## ipv4-address.h (module 'network'): uint16_t ns3::Ipv4Mask::GetPrefixLength() const [member function]
1805 cls.add_method('GetPrefixLength',
1806 'uint16_t',
1807 [],
1808 is_const=True)
1809 ## ipv4-address.h (module 'network'): static ns3::Ipv4Mask ns3::Ipv4Mask::GetZero() [member function]
1810 cls.add_method('GetZero',
1811 'ns3::Ipv4Mask',
1812 [],
1813 is_static=True)
1814 ## ipv4-address.h (module 'network'): bool ns3::Ipv4Mask::IsEqual(ns3::Ipv4Mask other) const [member function]
1815 cls.add_method('IsEqual',
1816 'bool',
1817 [param('ns3::Ipv4Mask', 'other')],
1818 is_const=True)
1819 ## ipv4-address.h (module 'network'): bool ns3::Ipv4Mask::IsMatch(ns3::Ipv4Address a, ns3::Ipv4Address b) const [member function]
1820 cls.add_method('IsMatch',
1821 'bool',
1822 [param('ns3::Ipv4Address', 'a'), param('ns3::Ipv4Address', 'b')],
1823 is_const=True)
1824 ## ipv4-address.h (module 'network'): void ns3::Ipv4Mask::Print(std::ostream & os) const [member function]
1825 cls.add_method('Print',
1826 'void',
1827 [param('std::ostream &', 'os')],
1828 is_const=True)
1829 ## ipv4-address.h (module 'network'): void ns3::Ipv4Mask::Set(uint32_t mask) [member function]
1830 cls.add_method('Set',
1831 'void',
1832 [param('uint32_t', 'mask')])
1833 return
1834
1835def register_Ns3Ipv6Address_methods(root_module, cls):
1836 cls.add_binary_comparison_operator('!=')
1837 cls.add_output_stream_operator()
1838 cls.add_binary_comparison_operator('==')
1839 cls.add_binary_comparison_operator('<')
1840 ## ipv6-address.h (module 'network'): ns3::Ipv6Address::Ipv6Address() [constructor]
1841 cls.add_constructor([])
1842 ## ipv6-address.h (module 'network'): ns3::Ipv6Address::Ipv6Address(char const * address) [constructor]
1843 cls.add_constructor([param('char const *', 'address')])
1844 ## ipv6-address.h (module 'network'): ns3::Ipv6Address::Ipv6Address(uint8_t * address) [constructor]
1845 cls.add_constructor([param('uint8_t *', 'address')])
1846 ## ipv6-address.h (module 'network'): ns3::Ipv6Address::Ipv6Address(ns3::Ipv6Address const & addr) [copy constructor]
1847 cls.add_constructor([param('ns3::Ipv6Address const &', 'addr')])
1848 ## ipv6-address.h (module 'network'): ns3::Ipv6Address::Ipv6Address(ns3::Ipv6Address const * addr) [constructor]
1849 cls.add_constructor([param('ns3::Ipv6Address const *', 'addr')])
1850 ## ipv6-address.h (module 'network'): ns3::Ipv6Address ns3::Ipv6Address::CombinePrefix(ns3::Ipv6Prefix const & prefix) [member function]
1851 cls.add_method('CombinePrefix',
1852 'ns3::Ipv6Address',
1853 [param('ns3::Ipv6Prefix const &', 'prefix')])
1854 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::ConvertFrom(ns3::Address const & address) [member function]
1855 cls.add_method('ConvertFrom',
1856 'ns3::Ipv6Address',
1857 [param('ns3::Address const &', 'address')],
1858 is_static=True)
1859 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::Deserialize(uint8_t const * buf) [member function]
1860 cls.add_method('Deserialize',
1861 'ns3::Ipv6Address',
1862 [param('uint8_t const *', 'buf')],
1863 is_static=True)
1864 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetAllHostsMulticast() [member function]
1865 cls.add_method('GetAllHostsMulticast',
1866 'ns3::Ipv6Address',
1867 [],
1868 is_static=True)
1869 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetAllNodesMulticast() [member function]
1870 cls.add_method('GetAllNodesMulticast',
1871 'ns3::Ipv6Address',
1872 [],
1873 is_static=True)
1874 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetAllRoutersMulticast() [member function]
1875 cls.add_method('GetAllRoutersMulticast',
1876 'ns3::Ipv6Address',
1877 [],
1878 is_static=True)
1879 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetAny() [member function]
1880 cls.add_method('GetAny',
1881 'ns3::Ipv6Address',
1882 [],
1883 is_static=True)
1884 ## ipv6-address.h (module 'network'): void ns3::Ipv6Address::GetBytes(uint8_t * buf) const [member function]
1885 cls.add_method('GetBytes',
1886 'void',
1887 [param('uint8_t *', 'buf')],
1888 is_const=True)
Alexander Afanasyev6f933532012-02-29 13:30:37 -08001889 ## ipv6-address.h (module 'network'): ns3::Ipv4Address ns3::Ipv6Address::GetIpv4MappedAddress() const [member function]
1890 cls.add_method('GetIpv4MappedAddress',
1891 'ns3::Ipv4Address',
1892 [],
1893 is_const=True)
Alexander Afanasyev381dea02011-11-03 08:33:26 -07001894 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetLoopback() [member function]
1895 cls.add_method('GetLoopback',
1896 'ns3::Ipv6Address',
1897 [],
1898 is_static=True)
1899 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetOnes() [member function]
1900 cls.add_method('GetOnes',
1901 'ns3::Ipv6Address',
1902 [],
1903 is_static=True)
1904 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetZero() [member function]
1905 cls.add_method('GetZero',
1906 'ns3::Ipv6Address',
1907 [],
1908 is_static=True)
1909 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsAllHostsMulticast() const [member function]
1910 cls.add_method('IsAllHostsMulticast',
1911 'bool',
1912 [],
1913 is_const=True)
1914 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsAllNodesMulticast() const [member function]
1915 cls.add_method('IsAllNodesMulticast',
1916 'bool',
1917 [],
1918 is_const=True)
1919 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsAllRoutersMulticast() const [member function]
1920 cls.add_method('IsAllRoutersMulticast',
1921 'bool',
1922 [],
1923 is_const=True)
1924 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsAny() const [member function]
1925 cls.add_method('IsAny',
1926 'bool',
1927 [],
1928 is_const=True)
1929 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsEqual(ns3::Ipv6Address const & other) const [member function]
1930 cls.add_method('IsEqual',
1931 'bool',
1932 [param('ns3::Ipv6Address const &', 'other')],
1933 is_const=True)
Alexander Afanasyev6f933532012-02-29 13:30:37 -08001934 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsIpv4MappedAddress() [member function]
1935 cls.add_method('IsIpv4MappedAddress',
1936 'bool',
1937 [])
Alexander Afanasyev381dea02011-11-03 08:33:26 -07001938 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsLinkLocal() const [member function]
1939 cls.add_method('IsLinkLocal',
1940 'bool',
1941 [],
1942 is_const=True)
Alexander Afanasyev6f933532012-02-29 13:30:37 -08001943 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsLinkLocalMulticast() const [member function]
1944 cls.add_method('IsLinkLocalMulticast',
1945 'bool',
1946 [],
1947 is_const=True)
Alexander Afanasyev381dea02011-11-03 08:33:26 -07001948 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsLocalhost() const [member function]
1949 cls.add_method('IsLocalhost',
1950 'bool',
1951 [],
1952 is_const=True)
1953 ## ipv6-address.h (module 'network'): static bool ns3::Ipv6Address::IsMatchingType(ns3::Address const & address) [member function]
1954 cls.add_method('IsMatchingType',
1955 'bool',
1956 [param('ns3::Address const &', 'address')],
1957 is_static=True)
1958 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsMulticast() const [member function]
1959 cls.add_method('IsMulticast',
1960 'bool',
1961 [],
1962 is_const=True)
1963 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsSolicitedMulticast() const [member function]
1964 cls.add_method('IsSolicitedMulticast',
1965 'bool',
1966 [],
1967 is_const=True)
1968 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::MakeAutoconfiguredAddress(ns3::Mac48Address addr, ns3::Ipv6Address prefix) [member function]
1969 cls.add_method('MakeAutoconfiguredAddress',
1970 'ns3::Ipv6Address',
1971 [param('ns3::Mac48Address', 'addr'), param('ns3::Ipv6Address', 'prefix')],
1972 is_static=True)
1973 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::MakeAutoconfiguredLinkLocalAddress(ns3::Mac48Address mac) [member function]
1974 cls.add_method('MakeAutoconfiguredLinkLocalAddress',
1975 'ns3::Ipv6Address',
1976 [param('ns3::Mac48Address', 'mac')],
1977 is_static=True)
Alexander Afanasyev6f933532012-02-29 13:30:37 -08001978 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::MakeIpv4MappedAddress(ns3::Ipv4Address addr) [member function]
1979 cls.add_method('MakeIpv4MappedAddress',
1980 'ns3::Ipv6Address',
1981 [param('ns3::Ipv4Address', 'addr')],
1982 is_static=True)
Alexander Afanasyev381dea02011-11-03 08:33:26 -07001983 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::MakeSolicitedAddress(ns3::Ipv6Address addr) [member function]
1984 cls.add_method('MakeSolicitedAddress',
1985 'ns3::Ipv6Address',
1986 [param('ns3::Ipv6Address', 'addr')],
1987 is_static=True)
1988 ## ipv6-address.h (module 'network'): void ns3::Ipv6Address::Print(std::ostream & os) const [member function]
1989 cls.add_method('Print',
1990 'void',
1991 [param('std::ostream &', 'os')],
1992 is_const=True)
1993 ## ipv6-address.h (module 'network'): void ns3::Ipv6Address::Serialize(uint8_t * buf) const [member function]
1994 cls.add_method('Serialize',
1995 'void',
1996 [param('uint8_t *', 'buf')],
1997 is_const=True)
1998 ## ipv6-address.h (module 'network'): void ns3::Ipv6Address::Set(char const * address) [member function]
1999 cls.add_method('Set',
2000 'void',
2001 [param('char const *', 'address')])
2002 ## ipv6-address.h (module 'network'): void ns3::Ipv6Address::Set(uint8_t * address) [member function]
2003 cls.add_method('Set',
2004 'void',
2005 [param('uint8_t *', 'address')])
2006 return
2007
Alexander Afanasyev6f933532012-02-29 13:30:37 -08002008def register_Ns3Ipv6InterfaceAddress_methods(root_module, cls):
2009 cls.add_binary_comparison_operator('!=')
2010 cls.add_output_stream_operator()
2011 cls.add_binary_comparison_operator('==')
2012 ## ipv6-interface-address.h (module 'internet'): ns3::Ipv6InterfaceAddress::Ipv6InterfaceAddress() [constructor]
2013 cls.add_constructor([])
2014 ## ipv6-interface-address.h (module 'internet'): ns3::Ipv6InterfaceAddress::Ipv6InterfaceAddress(ns3::Ipv6Address address) [constructor]
2015 cls.add_constructor([param('ns3::Ipv6Address', 'address')])
2016 ## ipv6-interface-address.h (module 'internet'): ns3::Ipv6InterfaceAddress::Ipv6InterfaceAddress(ns3::Ipv6Address address, ns3::Ipv6Prefix prefix) [constructor]
2017 cls.add_constructor([param('ns3::Ipv6Address', 'address'), param('ns3::Ipv6Prefix', 'prefix')])
2018 ## ipv6-interface-address.h (module 'internet'): ns3::Ipv6InterfaceAddress::Ipv6InterfaceAddress(ns3::Ipv6InterfaceAddress const & o) [copy constructor]
2019 cls.add_constructor([param('ns3::Ipv6InterfaceAddress const &', 'o')])
2020 ## ipv6-interface-address.h (module 'internet'): ns3::Ipv6Address ns3::Ipv6InterfaceAddress::GetAddress() const [member function]
2021 cls.add_method('GetAddress',
2022 'ns3::Ipv6Address',
2023 [],
2024 is_const=True)
2025 ## ipv6-interface-address.h (module 'internet'): uint32_t ns3::Ipv6InterfaceAddress::GetNsDadUid() const [member function]
2026 cls.add_method('GetNsDadUid',
2027 'uint32_t',
2028 [],
2029 is_const=True)
2030 ## ipv6-interface-address.h (module 'internet'): ns3::Ipv6Prefix ns3::Ipv6InterfaceAddress::GetPrefix() const [member function]
2031 cls.add_method('GetPrefix',
2032 'ns3::Ipv6Prefix',
2033 [],
2034 is_const=True)
2035 ## ipv6-interface-address.h (module 'internet'): ns3::Ipv6InterfaceAddress::Scope_e ns3::Ipv6InterfaceAddress::GetScope() const [member function]
2036 cls.add_method('GetScope',
2037 'ns3::Ipv6InterfaceAddress::Scope_e',
2038 [],
2039 is_const=True)
2040 ## ipv6-interface-address.h (module 'internet'): ns3::Ipv6InterfaceAddress::State_e ns3::Ipv6InterfaceAddress::GetState() const [member function]
2041 cls.add_method('GetState',
2042 'ns3::Ipv6InterfaceAddress::State_e',
2043 [],
2044 is_const=True)
2045 ## ipv6-interface-address.h (module 'internet'): void ns3::Ipv6InterfaceAddress::SetAddress(ns3::Ipv6Address address) [member function]
2046 cls.add_method('SetAddress',
2047 'void',
2048 [param('ns3::Ipv6Address', 'address')])
2049 ## ipv6-interface-address.h (module 'internet'): void ns3::Ipv6InterfaceAddress::SetNsDadUid(uint32_t uid) [member function]
2050 cls.add_method('SetNsDadUid',
2051 'void',
2052 [param('uint32_t', 'uid')])
2053 ## ipv6-interface-address.h (module 'internet'): void ns3::Ipv6InterfaceAddress::SetScope(ns3::Ipv6InterfaceAddress::Scope_e scope) [member function]
2054 cls.add_method('SetScope',
2055 'void',
2056 [param('ns3::Ipv6InterfaceAddress::Scope_e', 'scope')])
2057 ## ipv6-interface-address.h (module 'internet'): void ns3::Ipv6InterfaceAddress::SetState(ns3::Ipv6InterfaceAddress::State_e state) [member function]
2058 cls.add_method('SetState',
2059 'void',
2060 [param('ns3::Ipv6InterfaceAddress::State_e', 'state')])
2061 return
2062
Alexander Afanasyev381dea02011-11-03 08:33:26 -07002063def register_Ns3Ipv6Prefix_methods(root_module, cls):
2064 cls.add_binary_comparison_operator('!=')
2065 cls.add_output_stream_operator()
2066 cls.add_binary_comparison_operator('==')
2067 ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix() [constructor]
2068 cls.add_constructor([])
2069 ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix(uint8_t * prefix) [constructor]
2070 cls.add_constructor([param('uint8_t *', 'prefix')])
2071 ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix(char const * prefix) [constructor]
2072 cls.add_constructor([param('char const *', 'prefix')])
2073 ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix(uint8_t prefix) [constructor]
2074 cls.add_constructor([param('uint8_t', 'prefix')])
2075 ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix(ns3::Ipv6Prefix const & prefix) [copy constructor]
2076 cls.add_constructor([param('ns3::Ipv6Prefix const &', 'prefix')])
2077 ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix(ns3::Ipv6Prefix const * prefix) [constructor]
2078 cls.add_constructor([param('ns3::Ipv6Prefix const *', 'prefix')])
2079 ## ipv6-address.h (module 'network'): void ns3::Ipv6Prefix::GetBytes(uint8_t * buf) const [member function]
2080 cls.add_method('GetBytes',
2081 'void',
2082 [param('uint8_t *', 'buf')],
2083 is_const=True)
2084 ## ipv6-address.h (module 'network'): static ns3::Ipv6Prefix ns3::Ipv6Prefix::GetLoopback() [member function]
2085 cls.add_method('GetLoopback',
2086 'ns3::Ipv6Prefix',
2087 [],
2088 is_static=True)
2089 ## ipv6-address.h (module 'network'): static ns3::Ipv6Prefix ns3::Ipv6Prefix::GetOnes() [member function]
2090 cls.add_method('GetOnes',
2091 'ns3::Ipv6Prefix',
2092 [],
2093 is_static=True)
2094 ## ipv6-address.h (module 'network'): uint8_t ns3::Ipv6Prefix::GetPrefixLength() const [member function]
2095 cls.add_method('GetPrefixLength',
2096 'uint8_t',
2097 [],
2098 is_const=True)
2099 ## ipv6-address.h (module 'network'): static ns3::Ipv6Prefix ns3::Ipv6Prefix::GetZero() [member function]
2100 cls.add_method('GetZero',
2101 'ns3::Ipv6Prefix',
2102 [],
2103 is_static=True)
2104 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Prefix::IsEqual(ns3::Ipv6Prefix const & other) const [member function]
2105 cls.add_method('IsEqual',
2106 'bool',
2107 [param('ns3::Ipv6Prefix const &', 'other')],
2108 is_const=True)
2109 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Prefix::IsMatch(ns3::Ipv6Address a, ns3::Ipv6Address b) const [member function]
2110 cls.add_method('IsMatch',
2111 'bool',
2112 [param('ns3::Ipv6Address', 'a'), param('ns3::Ipv6Address', 'b')],
2113 is_const=True)
2114 ## ipv6-address.h (module 'network'): void ns3::Ipv6Prefix::Print(std::ostream & os) const [member function]
2115 cls.add_method('Print',
2116 'void',
2117 [param('std::ostream &', 'os')],
2118 is_const=True)
2119 return
2120
Alexander Afanasyev381dea02011-11-03 08:33:26 -07002121def register_Ns3NetDeviceContainer_methods(root_module, cls):
2122 ## net-device-container.h (module 'network'): ns3::NetDeviceContainer::NetDeviceContainer(ns3::NetDeviceContainer const & arg0) [copy constructor]
2123 cls.add_constructor([param('ns3::NetDeviceContainer const &', 'arg0')])
2124 ## net-device-container.h (module 'network'): ns3::NetDeviceContainer::NetDeviceContainer() [constructor]
2125 cls.add_constructor([])
2126 ## net-device-container.h (module 'network'): ns3::NetDeviceContainer::NetDeviceContainer(ns3::Ptr<ns3::NetDevice> dev) [constructor]
2127 cls.add_constructor([param('ns3::Ptr< ns3::NetDevice >', 'dev')])
2128 ## net-device-container.h (module 'network'): ns3::NetDeviceContainer::NetDeviceContainer(std::string devName) [constructor]
2129 cls.add_constructor([param('std::string', 'devName')])
2130 ## net-device-container.h (module 'network'): ns3::NetDeviceContainer::NetDeviceContainer(ns3::NetDeviceContainer const & a, ns3::NetDeviceContainer const & b) [constructor]
2131 cls.add_constructor([param('ns3::NetDeviceContainer const &', 'a'), param('ns3::NetDeviceContainer const &', 'b')])
2132 ## net-device-container.h (module 'network'): void ns3::NetDeviceContainer::Add(ns3::NetDeviceContainer other) [member function]
2133 cls.add_method('Add',
2134 'void',
2135 [param('ns3::NetDeviceContainer', 'other')])
2136 ## net-device-container.h (module 'network'): void ns3::NetDeviceContainer::Add(ns3::Ptr<ns3::NetDevice> device) [member function]
2137 cls.add_method('Add',
2138 'void',
2139 [param('ns3::Ptr< ns3::NetDevice >', 'device')])
2140 ## net-device-container.h (module 'network'): void ns3::NetDeviceContainer::Add(std::string deviceName) [member function]
2141 cls.add_method('Add',
2142 'void',
2143 [param('std::string', 'deviceName')])
2144 ## net-device-container.h (module 'network'): __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]
2145 cls.add_method('Begin',
2146 '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::NetDevice > const, std::vector< ns3::Ptr< ns3::NetDevice > > >',
2147 [],
2148 is_const=True)
2149 ## net-device-container.h (module 'network'): __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]
2150 cls.add_method('End',
2151 '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::NetDevice > const, std::vector< ns3::Ptr< ns3::NetDevice > > >',
2152 [],
2153 is_const=True)
2154 ## net-device-container.h (module 'network'): ns3::Ptr<ns3::NetDevice> ns3::NetDeviceContainer::Get(uint32_t i) const [member function]
2155 cls.add_method('Get',
2156 'ns3::Ptr< ns3::NetDevice >',
2157 [param('uint32_t', 'i')],
2158 is_const=True)
2159 ## net-device-container.h (module 'network'): uint32_t ns3::NetDeviceContainer::GetN() const [member function]
2160 cls.add_method('GetN',
2161 'uint32_t',
2162 [],
2163 is_const=True)
2164 return
2165
2166def register_Ns3NodeContainer_methods(root_module, cls):
2167 ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer(ns3::NodeContainer const & arg0) [copy constructor]
2168 cls.add_constructor([param('ns3::NodeContainer const &', 'arg0')])
2169 ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer() [constructor]
2170 cls.add_constructor([])
2171 ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer(ns3::Ptr<ns3::Node> node) [constructor]
2172 cls.add_constructor([param('ns3::Ptr< ns3::Node >', 'node')])
2173 ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer(std::string nodeName) [constructor]
2174 cls.add_constructor([param('std::string', 'nodeName')])
2175 ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer(ns3::NodeContainer const & a, ns3::NodeContainer const & b) [constructor]
2176 cls.add_constructor([param('ns3::NodeContainer const &', 'a'), param('ns3::NodeContainer const &', 'b')])
2177 ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer(ns3::NodeContainer const & a, ns3::NodeContainer const & b, ns3::NodeContainer const & c) [constructor]
2178 cls.add_constructor([param('ns3::NodeContainer const &', 'a'), param('ns3::NodeContainer const &', 'b'), param('ns3::NodeContainer const &', 'c')])
2179 ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer(ns3::NodeContainer const & a, ns3::NodeContainer const & b, ns3::NodeContainer const & c, ns3::NodeContainer const & d) [constructor]
2180 cls.add_constructor([param('ns3::NodeContainer const &', 'a'), param('ns3::NodeContainer const &', 'b'), param('ns3::NodeContainer const &', 'c'), param('ns3::NodeContainer const &', 'd')])
2181 ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer(ns3::NodeContainer const & a, ns3::NodeContainer const & b, ns3::NodeContainer const & c, ns3::NodeContainer const & d, ns3::NodeContainer const & e) [constructor]
2182 cls.add_constructor([param('ns3::NodeContainer const &', 'a'), param('ns3::NodeContainer const &', 'b'), param('ns3::NodeContainer const &', 'c'), param('ns3::NodeContainer const &', 'd'), param('ns3::NodeContainer const &', 'e')])
2183 ## node-container.h (module 'network'): void ns3::NodeContainer::Add(ns3::NodeContainer other) [member function]
2184 cls.add_method('Add',
2185 'void',
2186 [param('ns3::NodeContainer', 'other')])
2187 ## node-container.h (module 'network'): void ns3::NodeContainer::Add(ns3::Ptr<ns3::Node> node) [member function]
2188 cls.add_method('Add',
2189 'void',
2190 [param('ns3::Ptr< ns3::Node >', 'node')])
2191 ## node-container.h (module 'network'): void ns3::NodeContainer::Add(std::string nodeName) [member function]
2192 cls.add_method('Add',
2193 'void',
2194 [param('std::string', 'nodeName')])
2195 ## node-container.h (module 'network'): __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]
2196 cls.add_method('Begin',
2197 '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Node > const, std::vector< ns3::Ptr< ns3::Node > > >',
2198 [],
2199 is_const=True)
2200 ## node-container.h (module 'network'): void ns3::NodeContainer::Create(uint32_t n) [member function]
2201 cls.add_method('Create',
2202 'void',
2203 [param('uint32_t', 'n')])
2204 ## node-container.h (module 'network'): void ns3::NodeContainer::Create(uint32_t n, uint32_t systemId) [member function]
2205 cls.add_method('Create',
2206 'void',
2207 [param('uint32_t', 'n'), param('uint32_t', 'systemId')])
2208 ## node-container.h (module 'network'): __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]
2209 cls.add_method('End',
2210 '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Node > const, std::vector< ns3::Ptr< ns3::Node > > >',
2211 [],
2212 is_const=True)
2213 ## node-container.h (module 'network'): ns3::Ptr<ns3::Node> ns3::NodeContainer::Get(uint32_t i) const [member function]
2214 cls.add_method('Get',
2215 'ns3::Ptr< ns3::Node >',
2216 [param('uint32_t', 'i')],
2217 is_const=True)
2218 ## node-container.h (module 'network'): static ns3::NodeContainer ns3::NodeContainer::GetGlobal() [member function]
2219 cls.add_method('GetGlobal',
2220 'ns3::NodeContainer',
2221 [],
2222 is_static=True)
2223 ## node-container.h (module 'network'): uint32_t ns3::NodeContainer::GetN() const [member function]
2224 cls.add_method('GetN',
2225 'uint32_t',
2226 [],
2227 is_const=True)
2228 ## node-container.h (module 'network'): ns3::NodeContainer & ns3::NodeContainer::operator()(ns3::NodeContainer other) [member operator]
2229 cls.add_method('operator()',
2230 'ns3::NodeContainer &',
2231 [param('ns3::NodeContainer', 'other')],
2232 custom_name='__call__')
2233 ## node-container.h (module 'network'): ns3::NodeContainer & ns3::NodeContainer::operator()(ns3::Ptr<ns3::Node> node) [member operator]
2234 cls.add_method('operator()',
2235 'ns3::NodeContainer &',
2236 [param('ns3::Ptr< ns3::Node >', 'node')],
2237 custom_name='__call__')
2238 ## node-container.h (module 'network'): ns3::NodeContainer & ns3::NodeContainer::operator()(std::string nodeName) [member operator]
2239 cls.add_method('operator()',
2240 'ns3::NodeContainer &',
2241 [param('std::string', 'nodeName')],
2242 custom_name='__call__')
2243 return
2244
2245def register_Ns3ObjectBase_methods(root_module, cls):
2246 ## object-base.h (module 'core'): ns3::ObjectBase::ObjectBase() [constructor]
2247 cls.add_constructor([])
2248 ## object-base.h (module 'core'): ns3::ObjectBase::ObjectBase(ns3::ObjectBase const & arg0) [copy constructor]
2249 cls.add_constructor([param('ns3::ObjectBase const &', 'arg0')])
2250 ## object-base.h (module 'core'): void ns3::ObjectBase::GetAttribute(std::string name, ns3::AttributeValue & value) const [member function]
2251 cls.add_method('GetAttribute',
2252 'void',
2253 [param('std::string', 'name'), param('ns3::AttributeValue &', 'value')],
2254 is_const=True)
2255 ## object-base.h (module 'core'): bool ns3::ObjectBase::GetAttributeFailSafe(std::string name, ns3::AttributeValue & attribute) const [member function]
2256 cls.add_method('GetAttributeFailSafe',
2257 'bool',
2258 [param('std::string', 'name'), param('ns3::AttributeValue &', 'attribute')],
2259 is_const=True)
2260 ## object-base.h (module 'core'): ns3::TypeId ns3::ObjectBase::GetInstanceTypeId() const [member function]
2261 cls.add_method('GetInstanceTypeId',
2262 'ns3::TypeId',
2263 [],
2264 is_pure_virtual=True, is_const=True, is_virtual=True)
2265 ## object-base.h (module 'core'): static ns3::TypeId ns3::ObjectBase::GetTypeId() [member function]
2266 cls.add_method('GetTypeId',
2267 'ns3::TypeId',
2268 [],
2269 is_static=True)
2270 ## object-base.h (module 'core'): void ns3::ObjectBase::SetAttribute(std::string name, ns3::AttributeValue const & value) [member function]
2271 cls.add_method('SetAttribute',
2272 'void',
2273 [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')])
2274 ## object-base.h (module 'core'): bool ns3::ObjectBase::SetAttributeFailSafe(std::string name, ns3::AttributeValue const & value) [member function]
2275 cls.add_method('SetAttributeFailSafe',
2276 'bool',
2277 [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')])
2278 ## object-base.h (module 'core'): bool ns3::ObjectBase::TraceConnect(std::string name, std::string context, ns3::CallbackBase const & cb) [member function]
2279 cls.add_method('TraceConnect',
2280 'bool',
2281 [param('std::string', 'name'), param('std::string', 'context'), param('ns3::CallbackBase const &', 'cb')])
2282 ## object-base.h (module 'core'): bool ns3::ObjectBase::TraceConnectWithoutContext(std::string name, ns3::CallbackBase const & cb) [member function]
2283 cls.add_method('TraceConnectWithoutContext',
2284 'bool',
2285 [param('std::string', 'name'), param('ns3::CallbackBase const &', 'cb')])
2286 ## object-base.h (module 'core'): bool ns3::ObjectBase::TraceDisconnect(std::string name, std::string context, ns3::CallbackBase const & cb) [member function]
2287 cls.add_method('TraceDisconnect',
2288 'bool',
2289 [param('std::string', 'name'), param('std::string', 'context'), param('ns3::CallbackBase const &', 'cb')])
2290 ## object-base.h (module 'core'): bool ns3::ObjectBase::TraceDisconnectWithoutContext(std::string name, ns3::CallbackBase const & cb) [member function]
2291 cls.add_method('TraceDisconnectWithoutContext',
2292 'bool',
2293 [param('std::string', 'name'), param('ns3::CallbackBase const &', 'cb')])
2294 ## object-base.h (module 'core'): void ns3::ObjectBase::ConstructSelf(ns3::AttributeConstructionList const & attributes) [member function]
2295 cls.add_method('ConstructSelf',
2296 'void',
2297 [param('ns3::AttributeConstructionList const &', 'attributes')],
2298 visibility='protected')
2299 ## object-base.h (module 'core'): void ns3::ObjectBase::NotifyConstructionCompleted() [member function]
2300 cls.add_method('NotifyConstructionCompleted',
2301 'void',
2302 [],
2303 visibility='protected', is_virtual=True)
2304 return
2305
2306def register_Ns3ObjectDeleter_methods(root_module, cls):
2307 ## object.h (module 'core'): ns3::ObjectDeleter::ObjectDeleter() [constructor]
2308 cls.add_constructor([])
2309 ## object.h (module 'core'): ns3::ObjectDeleter::ObjectDeleter(ns3::ObjectDeleter const & arg0) [copy constructor]
2310 cls.add_constructor([param('ns3::ObjectDeleter const &', 'arg0')])
2311 ## object.h (module 'core'): static void ns3::ObjectDeleter::Delete(ns3::Object * object) [member function]
2312 cls.add_method('Delete',
2313 'void',
2314 [param('ns3::Object *', 'object')],
2315 is_static=True)
2316 return
2317
2318def register_Ns3ObjectFactory_methods(root_module, cls):
2319 cls.add_output_stream_operator()
2320 ## object-factory.h (module 'core'): ns3::ObjectFactory::ObjectFactory(ns3::ObjectFactory const & arg0) [copy constructor]
2321 cls.add_constructor([param('ns3::ObjectFactory const &', 'arg0')])
2322 ## object-factory.h (module 'core'): ns3::ObjectFactory::ObjectFactory() [constructor]
2323 cls.add_constructor([])
2324 ## object-factory.h (module 'core'): ns3::ObjectFactory::ObjectFactory(std::string typeId) [constructor]
2325 cls.add_constructor([param('std::string', 'typeId')])
2326 ## object-factory.h (module 'core'): ns3::Ptr<ns3::Object> ns3::ObjectFactory::Create() const [member function]
2327 cls.add_method('Create',
2328 'ns3::Ptr< ns3::Object >',
2329 [],
2330 is_const=True)
2331 ## object-factory.h (module 'core'): ns3::TypeId ns3::ObjectFactory::GetTypeId() const [member function]
2332 cls.add_method('GetTypeId',
2333 'ns3::TypeId',
2334 [],
2335 is_const=True)
2336 ## object-factory.h (module 'core'): void ns3::ObjectFactory::Set(std::string name, ns3::AttributeValue const & value) [member function]
2337 cls.add_method('Set',
2338 'void',
2339 [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')])
2340 ## object-factory.h (module 'core'): void ns3::ObjectFactory::SetTypeId(ns3::TypeId tid) [member function]
2341 cls.add_method('SetTypeId',
2342 'void',
2343 [param('ns3::TypeId', 'tid')])
2344 ## object-factory.h (module 'core'): void ns3::ObjectFactory::SetTypeId(char const * tid) [member function]
2345 cls.add_method('SetTypeId',
2346 'void',
2347 [param('char const *', 'tid')])
2348 ## object-factory.h (module 'core'): void ns3::ObjectFactory::SetTypeId(std::string tid) [member function]
2349 cls.add_method('SetTypeId',
2350 'void',
2351 [param('std::string', 'tid')])
2352 return
2353
2354def register_Ns3PacketMetadata_methods(root_module, cls):
2355 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::PacketMetadata(uint64_t uid, uint32_t size) [constructor]
2356 cls.add_constructor([param('uint64_t', 'uid'), param('uint32_t', 'size')])
2357 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::PacketMetadata(ns3::PacketMetadata const & o) [copy constructor]
2358 cls.add_constructor([param('ns3::PacketMetadata const &', 'o')])
2359 ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::AddAtEnd(ns3::PacketMetadata const & o) [member function]
2360 cls.add_method('AddAtEnd',
2361 'void',
2362 [param('ns3::PacketMetadata const &', 'o')])
2363 ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::AddHeader(ns3::Header const & header, uint32_t size) [member function]
2364 cls.add_method('AddHeader',
2365 'void',
2366 [param('ns3::Header const &', 'header'), param('uint32_t', 'size')])
2367 ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::AddPaddingAtEnd(uint32_t end) [member function]
2368 cls.add_method('AddPaddingAtEnd',
2369 'void',
2370 [param('uint32_t', 'end')])
2371 ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::AddTrailer(ns3::Trailer const & trailer, uint32_t size) [member function]
2372 cls.add_method('AddTrailer',
2373 'void',
2374 [param('ns3::Trailer const &', 'trailer'), param('uint32_t', 'size')])
2375 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::ItemIterator ns3::PacketMetadata::BeginItem(ns3::Buffer buffer) const [member function]
2376 cls.add_method('BeginItem',
2377 'ns3::PacketMetadata::ItemIterator',
2378 [param('ns3::Buffer', 'buffer')],
2379 is_const=True)
2380 ## packet-metadata.h (module 'network'): ns3::PacketMetadata ns3::PacketMetadata::CreateFragment(uint32_t start, uint32_t end) const [member function]
2381 cls.add_method('CreateFragment',
2382 'ns3::PacketMetadata',
2383 [param('uint32_t', 'start'), param('uint32_t', 'end')],
2384 is_const=True)
2385 ## packet-metadata.h (module 'network'): uint32_t ns3::PacketMetadata::Deserialize(uint8_t const * buffer, uint32_t size) [member function]
2386 cls.add_method('Deserialize',
2387 'uint32_t',
2388 [param('uint8_t const *', 'buffer'), param('uint32_t', 'size')])
2389 ## packet-metadata.h (module 'network'): static void ns3::PacketMetadata::Enable() [member function]
2390 cls.add_method('Enable',
2391 'void',
2392 [],
2393 is_static=True)
2394 ## packet-metadata.h (module 'network'): static void ns3::PacketMetadata::EnableChecking() [member function]
2395 cls.add_method('EnableChecking',
2396 'void',
2397 [],
2398 is_static=True)
2399 ## packet-metadata.h (module 'network'): uint32_t ns3::PacketMetadata::GetSerializedSize() const [member function]
2400 cls.add_method('GetSerializedSize',
2401 'uint32_t',
2402 [],
2403 is_const=True)
2404 ## packet-metadata.h (module 'network'): uint64_t ns3::PacketMetadata::GetUid() const [member function]
2405 cls.add_method('GetUid',
2406 'uint64_t',
2407 [],
2408 is_const=True)
2409 ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::RemoveAtEnd(uint32_t end) [member function]
2410 cls.add_method('RemoveAtEnd',
2411 'void',
2412 [param('uint32_t', 'end')])
2413 ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::RemoveAtStart(uint32_t start) [member function]
2414 cls.add_method('RemoveAtStart',
2415 'void',
2416 [param('uint32_t', 'start')])
2417 ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::RemoveHeader(ns3::Header const & header, uint32_t size) [member function]
2418 cls.add_method('RemoveHeader',
2419 'void',
2420 [param('ns3::Header const &', 'header'), param('uint32_t', 'size')])
2421 ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::RemoveTrailer(ns3::Trailer const & trailer, uint32_t size) [member function]
2422 cls.add_method('RemoveTrailer',
2423 'void',
2424 [param('ns3::Trailer const &', 'trailer'), param('uint32_t', 'size')])
2425 ## packet-metadata.h (module 'network'): uint32_t ns3::PacketMetadata::Serialize(uint8_t * buffer, uint32_t maxSize) const [member function]
2426 cls.add_method('Serialize',
2427 'uint32_t',
2428 [param('uint8_t *', 'buffer'), param('uint32_t', 'maxSize')],
2429 is_const=True)
2430 return
2431
2432def register_Ns3PacketMetadataItem_methods(root_module, cls):
2433 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::Item() [constructor]
2434 cls.add_constructor([])
2435 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::Item(ns3::PacketMetadata::Item const & arg0) [copy constructor]
2436 cls.add_constructor([param('ns3::PacketMetadata::Item const &', 'arg0')])
2437 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::current [variable]
2438 cls.add_instance_attribute('current', 'ns3::Buffer::Iterator', is_const=False)
2439 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::currentSize [variable]
2440 cls.add_instance_attribute('currentSize', 'uint32_t', is_const=False)
2441 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::currentTrimedFromEnd [variable]
2442 cls.add_instance_attribute('currentTrimedFromEnd', 'uint32_t', is_const=False)
2443 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::currentTrimedFromStart [variable]
2444 cls.add_instance_attribute('currentTrimedFromStart', 'uint32_t', is_const=False)
2445 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::isFragment [variable]
2446 cls.add_instance_attribute('isFragment', 'bool', is_const=False)
2447 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::tid [variable]
2448 cls.add_instance_attribute('tid', 'ns3::TypeId', is_const=False)
2449 return
2450
2451def register_Ns3PacketMetadataItemIterator_methods(root_module, cls):
2452 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::ItemIterator::ItemIterator(ns3::PacketMetadata::ItemIterator const & arg0) [copy constructor]
2453 cls.add_constructor([param('ns3::PacketMetadata::ItemIterator const &', 'arg0')])
2454 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::ItemIterator::ItemIterator(ns3::PacketMetadata const * metadata, ns3::Buffer buffer) [constructor]
2455 cls.add_constructor([param('ns3::PacketMetadata const *', 'metadata'), param('ns3::Buffer', 'buffer')])
2456 ## packet-metadata.h (module 'network'): bool ns3::PacketMetadata::ItemIterator::HasNext() const [member function]
2457 cls.add_method('HasNext',
2458 'bool',
2459 [],
2460 is_const=True)
2461 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item ns3::PacketMetadata::ItemIterator::Next() [member function]
2462 cls.add_method('Next',
2463 'ns3::PacketMetadata::Item',
2464 [])
2465 return
2466
Alexander Afanasyev381dea02011-11-03 08:33:26 -07002467def register_Ns3RandomVariable_methods(root_module, cls):
2468 cls.add_output_stream_operator()
2469 ## random-variable.h (module 'core'): ns3::RandomVariable::RandomVariable() [constructor]
2470 cls.add_constructor([])
2471 ## random-variable.h (module 'core'): ns3::RandomVariable::RandomVariable(ns3::RandomVariable const & o) [copy constructor]
2472 cls.add_constructor([param('ns3::RandomVariable const &', 'o')])
2473 ## random-variable.h (module 'core'): uint32_t ns3::RandomVariable::GetInteger() const [member function]
2474 cls.add_method('GetInteger',
2475 'uint32_t',
2476 [],
2477 is_const=True)
2478 ## random-variable.h (module 'core'): double ns3::RandomVariable::GetValue() const [member function]
2479 cls.add_method('GetValue',
2480 'double',
2481 [],
2482 is_const=True)
2483 return
2484
2485def register_Ns3SeedManager_methods(root_module, cls):
2486 ## random-variable.h (module 'core'): ns3::SeedManager::SeedManager() [constructor]
2487 cls.add_constructor([])
2488 ## random-variable.h (module 'core'): ns3::SeedManager::SeedManager(ns3::SeedManager const & arg0) [copy constructor]
2489 cls.add_constructor([param('ns3::SeedManager const &', 'arg0')])
2490 ## random-variable.h (module 'core'): static bool ns3::SeedManager::CheckSeed(uint32_t seed) [member function]
2491 cls.add_method('CheckSeed',
2492 'bool',
2493 [param('uint32_t', 'seed')],
2494 is_static=True)
2495 ## random-variable.h (module 'core'): static uint32_t ns3::SeedManager::GetRun() [member function]
2496 cls.add_method('GetRun',
2497 'uint32_t',
2498 [],
2499 is_static=True)
2500 ## random-variable.h (module 'core'): static uint32_t ns3::SeedManager::GetSeed() [member function]
2501 cls.add_method('GetSeed',
2502 'uint32_t',
2503 [],
2504 is_static=True)
2505 ## random-variable.h (module 'core'): static void ns3::SeedManager::SetRun(uint32_t run) [member function]
2506 cls.add_method('SetRun',
2507 'void',
2508 [param('uint32_t', 'run')],
2509 is_static=True)
2510 ## random-variable.h (module 'core'): static void ns3::SeedManager::SetSeed(uint32_t seed) [member function]
2511 cls.add_method('SetSeed',
2512 'void',
2513 [param('uint32_t', 'seed')],
2514 is_static=True)
2515 return
2516
2517def register_Ns3SequentialVariable_methods(root_module, cls):
2518 ## random-variable.h (module 'core'): ns3::SequentialVariable::SequentialVariable(ns3::SequentialVariable const & arg0) [copy constructor]
2519 cls.add_constructor([param('ns3::SequentialVariable const &', 'arg0')])
2520 ## random-variable.h (module 'core'): ns3::SequentialVariable::SequentialVariable(double f, double l, double i=1, uint32_t c=1) [constructor]
2521 cls.add_constructor([param('double', 'f'), param('double', 'l'), param('double', 'i', default_value='1'), param('uint32_t', 'c', default_value='1')])
2522 ## random-variable.h (module 'core'): ns3::SequentialVariable::SequentialVariable(double f, double l, ns3::RandomVariable const & i, uint32_t c=1) [constructor]
2523 cls.add_constructor([param('double', 'f'), param('double', 'l'), param('ns3::RandomVariable const &', 'i'), param('uint32_t', 'c', default_value='1')])
2524 return
2525
2526def register_Ns3SimpleRefCount__Ns3Chunk_Ns3ObjectBase_Ns3DefaultDeleter__lt__ns3Chunk__gt___methods(root_module, cls):
2527 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Chunk, ns3::ObjectBase, ns3::DefaultDeleter<ns3::Chunk> >::SimpleRefCount() [constructor]
2528 cls.add_constructor([])
2529 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Chunk, ns3::ObjectBase, ns3::DefaultDeleter<ns3::Chunk> >::SimpleRefCount(ns3::SimpleRefCount<ns3::Chunk, ns3::ObjectBase, ns3::DefaultDeleter<ns3::Chunk> > const & o) [copy constructor]
2530 cls.add_constructor([param('ns3::SimpleRefCount< ns3::Chunk, ns3::ObjectBase, ns3::DefaultDeleter< ns3::Chunk > > const &', 'o')])
2531 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::Chunk, ns3::ObjectBase, ns3::DefaultDeleter<ns3::Chunk> >::Cleanup() [member function]
2532 cls.add_method('Cleanup',
2533 'void',
2534 [],
2535 is_static=True)
2536 return
2537
2538def register_Ns3SimpleRefCount__Ns3Object_Ns3ObjectBase_Ns3ObjectDeleter_methods(root_module, cls):
2539 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter>::SimpleRefCount() [constructor]
2540 cls.add_constructor([])
2541 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter>::SimpleRefCount(ns3::SimpleRefCount<ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter> const & o) [copy constructor]
2542 cls.add_constructor([param('ns3::SimpleRefCount< ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter > const &', 'o')])
2543 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter>::Cleanup() [member function]
2544 cls.add_method('Cleanup',
2545 'void',
2546 [],
2547 is_static=True)
2548 return
2549
Alexander Afanasyev03d92e42012-02-01 21:06:53 -08002550def register_Ns3Simulator_methods(root_module, cls):
2551 ## simulator.h (module 'core'): ns3::Simulator::Simulator(ns3::Simulator const & arg0) [copy constructor]
2552 cls.add_constructor([param('ns3::Simulator const &', 'arg0')])
2553 ## simulator.h (module 'core'): static void ns3::Simulator::Cancel(ns3::EventId const & id) [member function]
2554 cls.add_method('Cancel',
2555 'void',
2556 [param('ns3::EventId const &', 'id')],
2557 is_static=True)
2558 ## simulator.h (module 'core'): static void ns3::Simulator::Destroy() [member function]
2559 cls.add_method('Destroy',
2560 'void',
2561 [],
2562 is_static=True)
2563 ## simulator.h (module 'core'): static uint32_t ns3::Simulator::GetContext() [member function]
2564 cls.add_method('GetContext',
2565 'uint32_t',
2566 [],
2567 is_static=True)
2568 ## simulator.h (module 'core'): static ns3::Time ns3::Simulator::GetDelayLeft(ns3::EventId const & id) [member function]
2569 cls.add_method('GetDelayLeft',
2570 'ns3::Time',
2571 [param('ns3::EventId const &', 'id')],
2572 is_static=True)
2573 ## simulator.h (module 'core'): static ns3::Ptr<ns3::SimulatorImpl> ns3::Simulator::GetImplementation() [member function]
2574 cls.add_method('GetImplementation',
2575 'ns3::Ptr< ns3::SimulatorImpl >',
2576 [],
2577 is_static=True)
2578 ## simulator.h (module 'core'): static ns3::Time ns3::Simulator::GetMaximumSimulationTime() [member function]
2579 cls.add_method('GetMaximumSimulationTime',
2580 'ns3::Time',
2581 [],
2582 is_static=True)
2583 ## simulator.h (module 'core'): static uint32_t ns3::Simulator::GetSystemId() [member function]
2584 cls.add_method('GetSystemId',
2585 'uint32_t',
2586 [],
2587 is_static=True)
2588 ## simulator.h (module 'core'): static bool ns3::Simulator::IsExpired(ns3::EventId const & id) [member function]
2589 cls.add_method('IsExpired',
2590 'bool',
2591 [param('ns3::EventId const &', 'id')],
2592 is_static=True)
2593 ## simulator.h (module 'core'): static bool ns3::Simulator::IsFinished() [member function]
2594 cls.add_method('IsFinished',
2595 'bool',
2596 [],
2597 is_static=True)
Alexander Afanasyev03d92e42012-02-01 21:06:53 -08002598 ## simulator.h (module 'core'): static ns3::Time ns3::Simulator::Now() [member function]
2599 cls.add_method('Now',
2600 'ns3::Time',
2601 [],
2602 is_static=True)
2603 ## simulator.h (module 'core'): static void ns3::Simulator::Remove(ns3::EventId const & id) [member function]
2604 cls.add_method('Remove',
2605 'void',
2606 [param('ns3::EventId const &', 'id')],
2607 is_static=True)
Alexander Afanasyev03d92e42012-02-01 21:06:53 -08002608 ## simulator.h (module 'core'): static void ns3::Simulator::SetImplementation(ns3::Ptr<ns3::SimulatorImpl> impl) [member function]
2609 cls.add_method('SetImplementation',
2610 'void',
2611 [param('ns3::Ptr< ns3::SimulatorImpl >', 'impl')],
2612 is_static=True)
2613 ## simulator.h (module 'core'): static void ns3::Simulator::SetScheduler(ns3::ObjectFactory schedulerFactory) [member function]
2614 cls.add_method('SetScheduler',
2615 'void',
2616 [param('ns3::ObjectFactory', 'schedulerFactory')],
2617 is_static=True)
2618 ## simulator.h (module 'core'): static void ns3::Simulator::Stop() [member function]
2619 cls.add_method('Stop',
2620 'void',
2621 [],
2622 is_static=True)
2623 ## simulator.h (module 'core'): static void ns3::Simulator::Stop(ns3::Time const & time) [member function]
2624 cls.add_method('Stop',
2625 'void',
2626 [param('ns3::Time const &', 'time')],
2627 is_static=True)
2628 return
2629
Alexander Afanasyev4975f732011-12-20 17:52:19 -08002630def register_Ns3SpringMobilityHelper_methods(root_module, cls):
2631 ## spring-mobility-helper.h (module 'NDNabstraction'): ns3::SpringMobilityHelper::SpringMobilityHelper() [constructor]
2632 cls.add_constructor([])
2633 ## spring-mobility-helper.h (module 'NDNabstraction'): ns3::SpringMobilityHelper::SpringMobilityHelper(ns3::SpringMobilityHelper const & arg0) [copy constructor]
2634 cls.add_constructor([param('ns3::SpringMobilityHelper const &', 'arg0')])
2635 ## spring-mobility-helper.h (module 'NDNabstraction'): static void ns3::SpringMobilityHelper::InstallSprings(ns3::Ptr<ns3::Node> node1, ns3::Ptr<ns3::Node> node2) [member function]
2636 cls.add_method('InstallSprings',
2637 'void',
2638 [param('ns3::Ptr< ns3::Node >', 'node1'), param('ns3::Ptr< ns3::Node >', 'node2')],
2639 is_static=True)
2640 ## spring-mobility-helper.h (module 'NDNabstraction'): static void ns3::SpringMobilityHelper::InstallSprings(std::_List_const_iterator<ns3::TopologyReader::Link> first, std::_List_const_iterator<ns3::TopologyReader::Link> end) [member function]
2641 cls.add_method('InstallSprings',
2642 'void',
2643 [param('std::_List_const_iterator< ns3::TopologyReader::Link >', 'first'), param('std::_List_const_iterator< ns3::TopologyReader::Link >', 'end')],
2644 is_static=True)
2645 return
2646
Alexander Afanasyev381dea02011-11-03 08:33:26 -07002647def register_Ns3TagBuffer_methods(root_module, cls):
2648 ## tag-buffer.h (module 'network'): ns3::TagBuffer::TagBuffer(ns3::TagBuffer const & arg0) [copy constructor]
2649 cls.add_constructor([param('ns3::TagBuffer const &', 'arg0')])
2650 ## tag-buffer.h (module 'network'): ns3::TagBuffer::TagBuffer(uint8_t * start, uint8_t * end) [constructor]
2651 cls.add_constructor([param('uint8_t *', 'start'), param('uint8_t *', 'end')])
2652 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::CopyFrom(ns3::TagBuffer o) [member function]
2653 cls.add_method('CopyFrom',
2654 'void',
2655 [param('ns3::TagBuffer', 'o')])
2656 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::Read(uint8_t * buffer, uint32_t size) [member function]
2657 cls.add_method('Read',
2658 'void',
2659 [param('uint8_t *', 'buffer'), param('uint32_t', 'size')])
2660 ## tag-buffer.h (module 'network'): double ns3::TagBuffer::ReadDouble() [member function]
2661 cls.add_method('ReadDouble',
2662 'double',
2663 [])
2664 ## tag-buffer.h (module 'network'): uint16_t ns3::TagBuffer::ReadU16() [member function]
2665 cls.add_method('ReadU16',
2666 'uint16_t',
2667 [])
2668 ## tag-buffer.h (module 'network'): uint32_t ns3::TagBuffer::ReadU32() [member function]
2669 cls.add_method('ReadU32',
2670 'uint32_t',
2671 [])
2672 ## tag-buffer.h (module 'network'): uint64_t ns3::TagBuffer::ReadU64() [member function]
2673 cls.add_method('ReadU64',
2674 'uint64_t',
2675 [])
2676 ## tag-buffer.h (module 'network'): uint8_t ns3::TagBuffer::ReadU8() [member function]
2677 cls.add_method('ReadU8',
2678 'uint8_t',
2679 [])
2680 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::TrimAtEnd(uint32_t trim) [member function]
2681 cls.add_method('TrimAtEnd',
2682 'void',
2683 [param('uint32_t', 'trim')])
2684 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::Write(uint8_t const * buffer, uint32_t size) [member function]
2685 cls.add_method('Write',
2686 'void',
2687 [param('uint8_t const *', 'buffer'), param('uint32_t', 'size')])
2688 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::WriteDouble(double v) [member function]
2689 cls.add_method('WriteDouble',
2690 'void',
2691 [param('double', 'v')])
2692 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::WriteU16(uint16_t data) [member function]
2693 cls.add_method('WriteU16',
2694 'void',
2695 [param('uint16_t', 'data')])
2696 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::WriteU32(uint32_t data) [member function]
2697 cls.add_method('WriteU32',
2698 'void',
2699 [param('uint32_t', 'data')])
2700 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::WriteU64(uint64_t v) [member function]
2701 cls.add_method('WriteU64',
2702 'void',
2703 [param('uint64_t', 'v')])
2704 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::WriteU8(uint8_t v) [member function]
2705 cls.add_method('WriteU8',
2706 'void',
2707 [param('uint8_t', 'v')])
2708 return
2709
Alexander Afanasyev6f933532012-02-29 13:30:37 -08002710def register_Ns3Timer_methods(root_module, cls):
2711 ## timer.h (module 'core'): ns3::Timer::Timer(ns3::Timer const & arg0) [copy constructor]
2712 cls.add_constructor([param('ns3::Timer const &', 'arg0')])
2713 ## timer.h (module 'core'): ns3::Timer::Timer() [constructor]
2714 cls.add_constructor([])
2715 ## timer.h (module 'core'): ns3::Timer::Timer(ns3::Timer::DestroyPolicy destroyPolicy) [constructor]
2716 cls.add_constructor([param('ns3::Timer::DestroyPolicy', 'destroyPolicy')])
2717 ## timer.h (module 'core'): void ns3::Timer::Cancel() [member function]
2718 cls.add_method('Cancel',
2719 'void',
2720 [])
2721 ## timer.h (module 'core'): ns3::Time ns3::Timer::GetDelay() const [member function]
2722 cls.add_method('GetDelay',
2723 'ns3::Time',
2724 [],
2725 is_const=True)
2726 ## timer.h (module 'core'): ns3::Time ns3::Timer::GetDelayLeft() const [member function]
2727 cls.add_method('GetDelayLeft',
2728 'ns3::Time',
2729 [],
2730 is_const=True)
2731 ## timer.h (module 'core'): ns3::Timer::State ns3::Timer::GetState() const [member function]
2732 cls.add_method('GetState',
2733 'ns3::Timer::State',
2734 [],
2735 is_const=True)
2736 ## timer.h (module 'core'): bool ns3::Timer::IsExpired() const [member function]
2737 cls.add_method('IsExpired',
2738 'bool',
2739 [],
2740 is_const=True)
2741 ## timer.h (module 'core'): bool ns3::Timer::IsRunning() const [member function]
2742 cls.add_method('IsRunning',
2743 'bool',
2744 [],
2745 is_const=True)
2746 ## timer.h (module 'core'): bool ns3::Timer::IsSuspended() const [member function]
2747 cls.add_method('IsSuspended',
2748 'bool',
2749 [],
2750 is_const=True)
2751 ## timer.h (module 'core'): void ns3::Timer::Remove() [member function]
2752 cls.add_method('Remove',
2753 'void',
2754 [])
2755 ## timer.h (module 'core'): void ns3::Timer::Resume() [member function]
2756 cls.add_method('Resume',
2757 'void',
2758 [])
2759 ## timer.h (module 'core'): void ns3::Timer::Schedule() [member function]
2760 cls.add_method('Schedule',
2761 'void',
2762 [])
2763 ## timer.h (module 'core'): void ns3::Timer::Schedule(ns3::Time delay) [member function]
2764 cls.add_method('Schedule',
2765 'void',
2766 [param('ns3::Time', 'delay')])
2767 ## timer.h (module 'core'): void ns3::Timer::SetDelay(ns3::Time const & delay) [member function]
2768 cls.add_method('SetDelay',
2769 'void',
2770 [param('ns3::Time const &', 'delay')])
2771 ## timer.h (module 'core'): void ns3::Timer::Suspend() [member function]
2772 cls.add_method('Suspend',
2773 'void',
2774 [])
2775 return
2776
2777def register_Ns3TimerImpl_methods(root_module, cls):
2778 ## timer-impl.h (module 'core'): ns3::TimerImpl::TimerImpl() [constructor]
2779 cls.add_constructor([])
2780 ## timer-impl.h (module 'core'): ns3::TimerImpl::TimerImpl(ns3::TimerImpl const & arg0) [copy constructor]
2781 cls.add_constructor([param('ns3::TimerImpl const &', 'arg0')])
2782 ## timer-impl.h (module 'core'): void ns3::TimerImpl::Invoke() [member function]
2783 cls.add_method('Invoke',
2784 'void',
2785 [],
2786 is_pure_virtual=True, is_virtual=True)
2787 ## timer-impl.h (module 'core'): ns3::EventId ns3::TimerImpl::Schedule(ns3::Time const & delay) [member function]
2788 cls.add_method('Schedule',
2789 'ns3::EventId',
2790 [param('ns3::Time const &', 'delay')],
2791 is_pure_virtual=True, is_virtual=True)
2792 return
2793
Alexander Afanasyev381dea02011-11-03 08:33:26 -07002794def register_Ns3TriangularVariable_methods(root_module, cls):
2795 ## random-variable.h (module 'core'): ns3::TriangularVariable::TriangularVariable(ns3::TriangularVariable const & arg0) [copy constructor]
2796 cls.add_constructor([param('ns3::TriangularVariable const &', 'arg0')])
2797 ## random-variable.h (module 'core'): ns3::TriangularVariable::TriangularVariable() [constructor]
2798 cls.add_constructor([])
2799 ## random-variable.h (module 'core'): ns3::TriangularVariable::TriangularVariable(double s, double l, double mean) [constructor]
2800 cls.add_constructor([param('double', 's'), param('double', 'l'), param('double', 'mean')])
2801 return
2802
2803def register_Ns3TypeId_methods(root_module, cls):
2804 cls.add_binary_comparison_operator('!=')
2805 cls.add_output_stream_operator()
2806 cls.add_binary_comparison_operator('==')
2807 cls.add_binary_comparison_operator('<')
2808 ## type-id.h (module 'core'): ns3::TypeId::TypeId(char const * name) [constructor]
2809 cls.add_constructor([param('char const *', 'name')])
2810 ## type-id.h (module 'core'): ns3::TypeId::TypeId() [constructor]
2811 cls.add_constructor([])
2812 ## type-id.h (module 'core'): ns3::TypeId::TypeId(ns3::TypeId const & o) [copy constructor]
2813 cls.add_constructor([param('ns3::TypeId const &', 'o')])
2814 ## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::AddAttribute(std::string name, std::string help, ns3::AttributeValue const & initialValue, ns3::Ptr<ns3::AttributeAccessor const> accessor, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
2815 cls.add_method('AddAttribute',
2816 'ns3::TypeId',
2817 [param('std::string', 'name'), param('std::string', 'help'), param('ns3::AttributeValue const &', 'initialValue'), param('ns3::Ptr< ns3::AttributeAccessor const >', 'accessor'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')])
2818 ## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::AddAttribute(std::string name, std::string help, uint32_t flags, ns3::AttributeValue const & initialValue, ns3::Ptr<ns3::AttributeAccessor const> accessor, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
2819 cls.add_method('AddAttribute',
2820 'ns3::TypeId',
2821 [param('std::string', 'name'), param('std::string', 'help'), param('uint32_t', 'flags'), param('ns3::AttributeValue const &', 'initialValue'), param('ns3::Ptr< ns3::AttributeAccessor const >', 'accessor'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')])
2822 ## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::AddTraceSource(std::string name, std::string help, ns3::Ptr<ns3::TraceSourceAccessor const> accessor) [member function]
2823 cls.add_method('AddTraceSource',
2824 'ns3::TypeId',
2825 [param('std::string', 'name'), param('std::string', 'help'), param('ns3::Ptr< ns3::TraceSourceAccessor const >', 'accessor')])
2826 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation ns3::TypeId::GetAttribute(uint32_t i) const [member function]
2827 cls.add_method('GetAttribute',
2828 'ns3::TypeId::AttributeInformation',
2829 [param('uint32_t', 'i')],
2830 is_const=True)
2831 ## type-id.h (module 'core'): std::string ns3::TypeId::GetAttributeFullName(uint32_t i) const [member function]
2832 cls.add_method('GetAttributeFullName',
2833 'std::string',
2834 [param('uint32_t', 'i')],
2835 is_const=True)
2836 ## type-id.h (module 'core'): uint32_t ns3::TypeId::GetAttributeN() const [member function]
2837 cls.add_method('GetAttributeN',
2838 'uint32_t',
2839 [],
2840 is_const=True)
2841 ## type-id.h (module 'core'): ns3::Callback<ns3::ObjectBase*,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty> ns3::TypeId::GetConstructor() const [member function]
2842 cls.add_method('GetConstructor',
2843 'ns3::Callback< ns3::ObjectBase *, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >',
2844 [],
2845 is_const=True)
2846 ## type-id.h (module 'core'): std::string ns3::TypeId::GetGroupName() const [member function]
2847 cls.add_method('GetGroupName',
2848 'std::string',
2849 [],
2850 is_const=True)
2851 ## type-id.h (module 'core'): std::string ns3::TypeId::GetName() const [member function]
2852 cls.add_method('GetName',
2853 'std::string',
2854 [],
2855 is_const=True)
2856 ## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::GetParent() const [member function]
2857 cls.add_method('GetParent',
2858 'ns3::TypeId',
2859 [],
2860 is_const=True)
2861 ## type-id.h (module 'core'): static ns3::TypeId ns3::TypeId::GetRegistered(uint32_t i) [member function]
2862 cls.add_method('GetRegistered',
2863 'ns3::TypeId',
2864 [param('uint32_t', 'i')],
2865 is_static=True)
2866 ## type-id.h (module 'core'): static uint32_t ns3::TypeId::GetRegisteredN() [member function]
2867 cls.add_method('GetRegisteredN',
2868 'uint32_t',
2869 [],
2870 is_static=True)
2871 ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation ns3::TypeId::GetTraceSource(uint32_t i) const [member function]
2872 cls.add_method('GetTraceSource',
2873 'ns3::TypeId::TraceSourceInformation',
2874 [param('uint32_t', 'i')],
2875 is_const=True)
2876 ## type-id.h (module 'core'): uint32_t ns3::TypeId::GetTraceSourceN() const [member function]
2877 cls.add_method('GetTraceSourceN',
2878 'uint32_t',
2879 [],
2880 is_const=True)
2881 ## type-id.h (module 'core'): uint16_t ns3::TypeId::GetUid() const [member function]
2882 cls.add_method('GetUid',
2883 'uint16_t',
2884 [],
2885 is_const=True)
2886 ## type-id.h (module 'core'): bool ns3::TypeId::HasConstructor() const [member function]
2887 cls.add_method('HasConstructor',
2888 'bool',
2889 [],
2890 is_const=True)
2891 ## type-id.h (module 'core'): bool ns3::TypeId::HasParent() const [member function]
2892 cls.add_method('HasParent',
2893 'bool',
2894 [],
2895 is_const=True)
2896 ## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::HideFromDocumentation() [member function]
2897 cls.add_method('HideFromDocumentation',
2898 'ns3::TypeId',
2899 [])
2900 ## type-id.h (module 'core'): bool ns3::TypeId::IsChildOf(ns3::TypeId other) const [member function]
2901 cls.add_method('IsChildOf',
2902 'bool',
2903 [param('ns3::TypeId', 'other')],
2904 is_const=True)
2905 ## type-id.h (module 'core'): bool ns3::TypeId::LookupAttributeByName(std::string name, ns3::TypeId::AttributeInformation * info) const [member function]
2906 cls.add_method('LookupAttributeByName',
2907 'bool',
Alexander Afanasyev6f933532012-02-29 13:30:37 -08002908 [param('std::string', 'name'), param('ns3::TypeId::AttributeInformation *', 'info', transfer_ownership=False)],
Alexander Afanasyev381dea02011-11-03 08:33:26 -07002909 is_const=True)
2910 ## type-id.h (module 'core'): static ns3::TypeId ns3::TypeId::LookupByName(std::string name) [member function]
2911 cls.add_method('LookupByName',
2912 'ns3::TypeId',
2913 [param('std::string', 'name')],
2914 is_static=True)
2915 ## type-id.h (module 'core'): ns3::Ptr<ns3::TraceSourceAccessor const> ns3::TypeId::LookupTraceSourceByName(std::string name) const [member function]
2916 cls.add_method('LookupTraceSourceByName',
2917 'ns3::Ptr< ns3::TraceSourceAccessor const >',
2918 [param('std::string', 'name')],
2919 is_const=True)
2920 ## type-id.h (module 'core'): bool ns3::TypeId::MustHideFromDocumentation() const [member function]
2921 cls.add_method('MustHideFromDocumentation',
2922 'bool',
2923 [],
2924 is_const=True)
2925 ## type-id.h (module 'core'): bool ns3::TypeId::SetAttributeInitialValue(uint32_t i, ns3::Ptr<ns3::AttributeValue const> initialValue) [member function]
2926 cls.add_method('SetAttributeInitialValue',
2927 'bool',
2928 [param('uint32_t', 'i'), param('ns3::Ptr< ns3::AttributeValue const >', 'initialValue')])
2929 ## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::SetGroupName(std::string groupName) [member function]
2930 cls.add_method('SetGroupName',
2931 'ns3::TypeId',
2932 [param('std::string', 'groupName')])
2933 ## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::SetParent(ns3::TypeId tid) [member function]
2934 cls.add_method('SetParent',
2935 'ns3::TypeId',
2936 [param('ns3::TypeId', 'tid')])
2937 ## type-id.h (module 'core'): void ns3::TypeId::SetUid(uint16_t tid) [member function]
2938 cls.add_method('SetUid',
2939 'void',
2940 [param('uint16_t', 'tid')])
2941 return
2942
2943def register_Ns3TypeIdAttributeInformation_methods(root_module, cls):
2944 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::AttributeInformation() [constructor]
2945 cls.add_constructor([])
2946 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::AttributeInformation(ns3::TypeId::AttributeInformation const & arg0) [copy constructor]
2947 cls.add_constructor([param('ns3::TypeId::AttributeInformation const &', 'arg0')])
2948 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::accessor [variable]
2949 cls.add_instance_attribute('accessor', 'ns3::Ptr< ns3::AttributeAccessor const >', is_const=False)
2950 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::checker [variable]
2951 cls.add_instance_attribute('checker', 'ns3::Ptr< ns3::AttributeChecker const >', is_const=False)
2952 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::flags [variable]
2953 cls.add_instance_attribute('flags', 'uint32_t', is_const=False)
2954 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::help [variable]
2955 cls.add_instance_attribute('help', 'std::string', is_const=False)
2956 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::initialValue [variable]
2957 cls.add_instance_attribute('initialValue', 'ns3::Ptr< ns3::AttributeValue const >', is_const=False)
2958 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::name [variable]
2959 cls.add_instance_attribute('name', 'std::string', is_const=False)
2960 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::originalInitialValue [variable]
2961 cls.add_instance_attribute('originalInitialValue', 'ns3::Ptr< ns3::AttributeValue const >', is_const=False)
2962 return
2963
2964def register_Ns3TypeIdTraceSourceInformation_methods(root_module, cls):
2965 ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation::TraceSourceInformation() [constructor]
2966 cls.add_constructor([])
2967 ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation::TraceSourceInformation(ns3::TypeId::TraceSourceInformation const & arg0) [copy constructor]
2968 cls.add_constructor([param('ns3::TypeId::TraceSourceInformation const &', 'arg0')])
2969 ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation::accessor [variable]
2970 cls.add_instance_attribute('accessor', 'ns3::Ptr< ns3::TraceSourceAccessor const >', is_const=False)
2971 ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation::help [variable]
2972 cls.add_instance_attribute('help', 'std::string', is_const=False)
2973 ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation::name [variable]
2974 cls.add_instance_attribute('name', 'std::string', is_const=False)
2975 return
2976
2977def register_Ns3UniformVariable_methods(root_module, cls):
2978 ## random-variable.h (module 'core'): ns3::UniformVariable::UniformVariable(ns3::UniformVariable const & arg0) [copy constructor]
2979 cls.add_constructor([param('ns3::UniformVariable const &', 'arg0')])
2980 ## random-variable.h (module 'core'): ns3::UniformVariable::UniformVariable() [constructor]
2981 cls.add_constructor([])
2982 ## random-variable.h (module 'core'): ns3::UniformVariable::UniformVariable(double s, double l) [constructor]
2983 cls.add_constructor([param('double', 's'), param('double', 'l')])
2984 ## random-variable.h (module 'core'): uint32_t ns3::UniformVariable::GetInteger(uint32_t s, uint32_t l) [member function]
2985 cls.add_method('GetInteger',
2986 'uint32_t',
2987 [param('uint32_t', 's'), param('uint32_t', 'l')])
2988 ## random-variable.h (module 'core'): double ns3::UniformVariable::GetValue() const [member function]
2989 cls.add_method('GetValue',
2990 'double',
2991 [],
2992 is_const=True)
2993 ## random-variable.h (module 'core'): double ns3::UniformVariable::GetValue(double s, double l) [member function]
2994 cls.add_method('GetValue',
2995 'double',
2996 [param('double', 's'), param('double', 'l')])
2997 return
2998
Alexander Afanasyev4975f732011-12-20 17:52:19 -08002999def register_Ns3Vector2D_methods(root_module, cls):
3000 cls.add_output_stream_operator()
3001 cls.add_binary_numeric_operator('*', root_module['ns3::Vector2D'], root_module['ns3::Vector2D'], param('ns3::Vector2D const &', 'right'))
3002 cls.add_binary_numeric_operator('*', root_module['ns3::Vector2D'], root_module['ns3::Vector2D'], param('double', 'right'))
3003 cls.add_binary_numeric_operator('+', root_module['ns3::Vector2D'], root_module['ns3::Vector2D'], param('ns3::Vector2D const &', 'right'))
3004 cls.add_binary_numeric_operator('+', root_module['ns3::Vector2D'], root_module['ns3::Vector2D'], param('double', 'right'))
3005 cls.add_inplace_numeric_operator('+=', param('ns3::Vector2D const &', 'right'))
3006 cls.add_inplace_numeric_operator('+=', param('double', 'right'))
3007 cls.add_binary_numeric_operator('-', root_module['ns3::Vector2D'], root_module['ns3::Vector2D'], param('ns3::Vector2D const &', 'right'))
3008 cls.add_binary_numeric_operator('/', root_module['ns3::Vector2D'], root_module['ns3::Vector2D'], param('double', 'right'))
3009 ## vector.h (module 'core'): ns3::Vector2D::Vector2D(ns3::Vector2D const & arg0) [copy constructor]
3010 cls.add_constructor([param('ns3::Vector2D const &', 'arg0')])
3011 ## vector.h (module 'core'): ns3::Vector2D::Vector2D(double _x, double _y) [constructor]
3012 cls.add_constructor([param('double', '_x'), param('double', '_y')])
3013 ## vector.h (module 'core'): ns3::Vector2D::Vector2D() [constructor]
3014 cls.add_constructor([])
Alexander Afanasyev6f933532012-02-29 13:30:37 -08003015 ## vector.h (module 'core'): double ns3::Vector2D::GetLength() const [member function]
3016 cls.add_method('GetLength',
3017 'double',
3018 [],
3019 is_const=True)
Alexander Afanasyev4975f732011-12-20 17:52:19 -08003020 ## vector.h (module 'core'): ns3::Vector2D::x [variable]
3021 cls.add_instance_attribute('x', 'double', is_const=False)
3022 ## vector.h (module 'core'): ns3::Vector2D::y [variable]
3023 cls.add_instance_attribute('y', 'double', is_const=False)
3024 return
3025
3026def register_Ns3Vector3D_methods(root_module, cls):
3027 cls.add_output_stream_operator()
3028 cls.add_binary_numeric_operator('*', root_module['ns3::Vector3D'], root_module['ns3::Vector3D'], param('ns3::Vector3D const &', 'right'))
3029 cls.add_binary_numeric_operator('*', root_module['ns3::Vector3D'], root_module['ns3::Vector3D'], param('double', 'right'))
3030 cls.add_binary_numeric_operator('+', root_module['ns3::Vector3D'], root_module['ns3::Vector3D'], param('ns3::Vector3D const &', 'right'))
3031 cls.add_binary_numeric_operator('+', root_module['ns3::Vector3D'], root_module['ns3::Vector3D'], param('double', 'right'))
3032 cls.add_inplace_numeric_operator('+=', param('ns3::Vector3D const &', 'right'))
3033 cls.add_inplace_numeric_operator('+=', param('double', 'right'))
3034 cls.add_binary_numeric_operator('-', root_module['ns3::Vector3D'], root_module['ns3::Vector3D'], param('ns3::Vector3D const &', 'right'))
3035 cls.add_binary_numeric_operator('/', root_module['ns3::Vector3D'], root_module['ns3::Vector3D'], param('double', 'right'))
3036 ## vector.h (module 'core'): ns3::Vector3D::Vector3D(ns3::Vector3D const & arg0) [copy constructor]
3037 cls.add_constructor([param('ns3::Vector3D const &', 'arg0')])
3038 ## vector.h (module 'core'): ns3::Vector3D::Vector3D(double _x, double _y, double _z) [constructor]
3039 cls.add_constructor([param('double', '_x'), param('double', '_y'), param('double', '_z')])
3040 ## vector.h (module 'core'): ns3::Vector3D::Vector3D() [constructor]
3041 cls.add_constructor([])
Alexander Afanasyev6f933532012-02-29 13:30:37 -08003042 ## vector.h (module 'core'): double ns3::Vector3D::GetLength() const [member function]
3043 cls.add_method('GetLength',
3044 'double',
3045 [],
3046 is_const=True)
Alexander Afanasyev4975f732011-12-20 17:52:19 -08003047 ## vector.h (module 'core'): ns3::Vector3D::x [variable]
3048 cls.add_instance_attribute('x', 'double', is_const=False)
3049 ## vector.h (module 'core'): ns3::Vector3D::y [variable]
3050 cls.add_instance_attribute('y', 'double', is_const=False)
3051 ## vector.h (module 'core'): ns3::Vector3D::z [variable]
3052 cls.add_instance_attribute('z', 'double', is_const=False)
3053 return
3054
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003055def register_Ns3WeibullVariable_methods(root_module, cls):
3056 ## random-variable.h (module 'core'): ns3::WeibullVariable::WeibullVariable(ns3::WeibullVariable const & arg0) [copy constructor]
3057 cls.add_constructor([param('ns3::WeibullVariable const &', 'arg0')])
3058 ## random-variable.h (module 'core'): ns3::WeibullVariable::WeibullVariable() [constructor]
3059 cls.add_constructor([])
3060 ## random-variable.h (module 'core'): ns3::WeibullVariable::WeibullVariable(double m) [constructor]
3061 cls.add_constructor([param('double', 'm')])
3062 ## random-variable.h (module 'core'): ns3::WeibullVariable::WeibullVariable(double m, double s) [constructor]
3063 cls.add_constructor([param('double', 'm'), param('double', 's')])
3064 ## random-variable.h (module 'core'): ns3::WeibullVariable::WeibullVariable(double m, double s, double b) [constructor]
3065 cls.add_constructor([param('double', 'm'), param('double', 's'), param('double', 'b')])
3066 return
3067
3068def register_Ns3ZetaVariable_methods(root_module, cls):
3069 ## random-variable.h (module 'core'): ns3::ZetaVariable::ZetaVariable(ns3::ZetaVariable const & arg0) [copy constructor]
3070 cls.add_constructor([param('ns3::ZetaVariable const &', 'arg0')])
3071 ## random-variable.h (module 'core'): ns3::ZetaVariable::ZetaVariable(double alpha) [constructor]
3072 cls.add_constructor([param('double', 'alpha')])
3073 ## random-variable.h (module 'core'): ns3::ZetaVariable::ZetaVariable() [constructor]
3074 cls.add_constructor([])
3075 return
3076
3077def register_Ns3ZipfVariable_methods(root_module, cls):
3078 ## random-variable.h (module 'core'): ns3::ZipfVariable::ZipfVariable(ns3::ZipfVariable const & arg0) [copy constructor]
3079 cls.add_constructor([param('ns3::ZipfVariable const &', 'arg0')])
3080 ## random-variable.h (module 'core'): ns3::ZipfVariable::ZipfVariable(long int N, double alpha) [constructor]
3081 cls.add_constructor([param('long int', 'N'), param('double', 'alpha')])
3082 ## random-variable.h (module 'core'): ns3::ZipfVariable::ZipfVariable() [constructor]
3083 cls.add_constructor([])
3084 return
3085
3086def register_Ns3Empty_methods(root_module, cls):
3087 ## empty.h (module 'core'): ns3::empty::empty() [constructor]
3088 cls.add_constructor([])
3089 ## empty.h (module 'core'): ns3::empty::empty(ns3::empty const & arg0) [copy constructor]
3090 cls.add_constructor([param('ns3::empty const &', 'arg0')])
3091 return
3092
3093def register_Ns3Int64x64_t_methods(root_module, cls):
3094 cls.add_binary_comparison_operator('!=')
3095 cls.add_inplace_numeric_operator('*=', param('ns3::int64x64_t const &', 'right'))
3096 cls.add_inplace_numeric_operator('+=', param('ns3::int64x64_t const &', 'right'))
3097 cls.add_inplace_numeric_operator('-=', param('ns3::int64x64_t const &', 'right'))
3098 cls.add_inplace_numeric_operator('/=', param('ns3::int64x64_t const &', 'right'))
3099 cls.add_output_stream_operator()
Alexander Afanasyev4975f732011-12-20 17:52:19 -08003100 cls.add_binary_comparison_operator('<=')
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003101 cls.add_binary_comparison_operator('==')
3102 cls.add_binary_comparison_operator('>=')
3103 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long unsigned int const', 'right'))
3104 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long unsigned int const', 'right'))
3105 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned int const', 'right'))
3106 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short unsigned int const', 'right'))
3107 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned char const', 'right'))
3108 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long int const', 'right'))
3109 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long int const', 'right'))
3110 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('int const', 'right'))
3111 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short int const', 'right'))
3112 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('signed char const', 'right'))
3113 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('double const', 'right'))
3114 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('ns3::int64x64_t const &', 'right'))
3115 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long unsigned int const', 'right'))
3116 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long unsigned int const', 'right'))
3117 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned int const', 'right'))
3118 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short unsigned int const', 'right'))
3119 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned char const', 'right'))
3120 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long int const', 'right'))
3121 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long int const', 'right'))
3122 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('int const', 'right'))
3123 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short int const', 'right'))
3124 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('signed char const', 'right'))
3125 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('double const', 'right'))
3126 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('ns3::int64x64_t const &', 'right'))
3127 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long unsigned int const', 'right'))
3128 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long unsigned int const', 'right'))
3129 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned int const', 'right'))
3130 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short unsigned int const', 'right'))
3131 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned char const', 'right'))
3132 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long int const', 'right'))
3133 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long int const', 'right'))
3134 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('int const', 'right'))
3135 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short int const', 'right'))
3136 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('signed char const', 'right'))
3137 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('double const', 'right'))
3138 cls.add_unary_numeric_operator('-')
3139 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('ns3::int64x64_t const &', 'right'))
3140 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long unsigned int const', 'right'))
3141 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long unsigned int const', 'right'))
3142 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned int const', 'right'))
3143 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short unsigned int const', 'right'))
3144 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned char const', 'right'))
3145 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long int const', 'right'))
3146 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long int const', 'right'))
3147 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('int const', 'right'))
3148 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short int const', 'right'))
3149 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('signed char const', 'right'))
3150 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('double const', 'right'))
3151 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('ns3::int64x64_t const &', 'right'))
3152 cls.add_binary_comparison_operator('<')
3153 cls.add_binary_comparison_operator('>')
3154 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t() [constructor]
3155 cls.add_constructor([])
3156 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(double v) [constructor]
3157 cls.add_constructor([param('double', 'v')])
3158 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(int v) [constructor]
3159 cls.add_constructor([param('int', 'v')])
3160 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(long int v) [constructor]
3161 cls.add_constructor([param('long int', 'v')])
3162 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(long long int v) [constructor]
3163 cls.add_constructor([param('long long int', 'v')])
3164 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(unsigned int v) [constructor]
3165 cls.add_constructor([param('unsigned int', 'v')])
3166 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(long unsigned int v) [constructor]
3167 cls.add_constructor([param('long unsigned int', 'v')])
3168 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(long long unsigned int v) [constructor]
3169 cls.add_constructor([param('long long unsigned int', 'v')])
3170 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(int64_t hi, uint64_t lo) [constructor]
3171 cls.add_constructor([param('int64_t', 'hi'), param('uint64_t', 'lo')])
3172 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(ns3::int64x64_t const & o) [copy constructor]
3173 cls.add_constructor([param('ns3::int64x64_t const &', 'o')])
3174 ## int64x64-double.h (module 'core'): double ns3::int64x64_t::GetDouble() const [member function]
3175 cls.add_method('GetDouble',
3176 'double',
3177 [],
3178 is_const=True)
3179 ## int64x64-double.h (module 'core'): int64_t ns3::int64x64_t::GetHigh() const [member function]
3180 cls.add_method('GetHigh',
3181 'int64_t',
3182 [],
3183 is_const=True)
3184 ## int64x64-double.h (module 'core'): uint64_t ns3::int64x64_t::GetLow() const [member function]
3185 cls.add_method('GetLow',
3186 'uint64_t',
3187 [],
3188 is_const=True)
3189 ## int64x64-double.h (module 'core'): static ns3::int64x64_t ns3::int64x64_t::Invert(uint64_t v) [member function]
3190 cls.add_method('Invert',
3191 'ns3::int64x64_t',
3192 [param('uint64_t', 'v')],
3193 is_static=True)
3194 ## int64x64-double.h (module 'core'): void ns3::int64x64_t::MulByInvert(ns3::int64x64_t const & o) [member function]
3195 cls.add_method('MulByInvert',
3196 'void',
3197 [param('ns3::int64x64_t const &', 'o')])
3198 return
3199
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003200def register_Ns3Chunk_methods(root_module, cls):
3201 ## chunk.h (module 'network'): ns3::Chunk::Chunk() [constructor]
3202 cls.add_constructor([])
3203 ## chunk.h (module 'network'): ns3::Chunk::Chunk(ns3::Chunk const & arg0) [copy constructor]
3204 cls.add_constructor([param('ns3::Chunk const &', 'arg0')])
3205 ## chunk.h (module 'network'): uint32_t ns3::Chunk::Deserialize(ns3::Buffer::Iterator start) [member function]
3206 cls.add_method('Deserialize',
3207 'uint32_t',
3208 [param('ns3::Buffer::Iterator', 'start')],
3209 is_pure_virtual=True, is_virtual=True)
3210 ## chunk.h (module 'network'): static ns3::TypeId ns3::Chunk::GetTypeId() [member function]
3211 cls.add_method('GetTypeId',
3212 'ns3::TypeId',
3213 [],
3214 is_static=True)
3215 ## chunk.h (module 'network'): void ns3::Chunk::Print(std::ostream & os) const [member function]
3216 cls.add_method('Print',
3217 'void',
3218 [param('std::ostream &', 'os')],
3219 is_pure_virtual=True, is_const=True, is_virtual=True)
3220 return
3221
3222def register_Ns3ConstantVariable_methods(root_module, cls):
3223 ## random-variable.h (module 'core'): ns3::ConstantVariable::ConstantVariable(ns3::ConstantVariable const & arg0) [copy constructor]
3224 cls.add_constructor([param('ns3::ConstantVariable const &', 'arg0')])
3225 ## random-variable.h (module 'core'): ns3::ConstantVariable::ConstantVariable() [constructor]
3226 cls.add_constructor([])
3227 ## random-variable.h (module 'core'): ns3::ConstantVariable::ConstantVariable(double c) [constructor]
3228 cls.add_constructor([param('double', 'c')])
3229 ## random-variable.h (module 'core'): void ns3::ConstantVariable::SetConstant(double c) [member function]
3230 cls.add_method('SetConstant',
3231 'void',
3232 [param('double', 'c')])
3233 return
3234
3235def register_Ns3DeterministicVariable_methods(root_module, cls):
3236 ## random-variable.h (module 'core'): ns3::DeterministicVariable::DeterministicVariable(ns3::DeterministicVariable const & arg0) [copy constructor]
3237 cls.add_constructor([param('ns3::DeterministicVariable const &', 'arg0')])
3238 ## random-variable.h (module 'core'): ns3::DeterministicVariable::DeterministicVariable(double * d, uint32_t c) [constructor]
3239 cls.add_constructor([param('double *', 'd'), param('uint32_t', 'c')])
3240 return
3241
3242def register_Ns3EmpiricalVariable_methods(root_module, cls):
3243 ## random-variable.h (module 'core'): ns3::EmpiricalVariable::EmpiricalVariable(ns3::EmpiricalVariable const & arg0) [copy constructor]
3244 cls.add_constructor([param('ns3::EmpiricalVariable const &', 'arg0')])
3245 ## random-variable.h (module 'core'): ns3::EmpiricalVariable::EmpiricalVariable() [constructor]
3246 cls.add_constructor([])
3247 ## random-variable.h (module 'core'): void ns3::EmpiricalVariable::CDF(double v, double c) [member function]
3248 cls.add_method('CDF',
3249 'void',
3250 [param('double', 'v'), param('double', 'c')])
3251 return
3252
3253def register_Ns3ErlangVariable_methods(root_module, cls):
3254 ## random-variable.h (module 'core'): ns3::ErlangVariable::ErlangVariable(ns3::ErlangVariable const & arg0) [copy constructor]
3255 cls.add_constructor([param('ns3::ErlangVariable const &', 'arg0')])
3256 ## random-variable.h (module 'core'): ns3::ErlangVariable::ErlangVariable() [constructor]
3257 cls.add_constructor([])
3258 ## random-variable.h (module 'core'): ns3::ErlangVariable::ErlangVariable(unsigned int k, double lambda) [constructor]
3259 cls.add_constructor([param('unsigned int', 'k'), param('double', 'lambda')])
3260 ## random-variable.h (module 'core'): double ns3::ErlangVariable::GetValue() const [member function]
3261 cls.add_method('GetValue',
3262 'double',
3263 [],
3264 is_const=True)
3265 ## random-variable.h (module 'core'): double ns3::ErlangVariable::GetValue(unsigned int k, double lambda) const [member function]
3266 cls.add_method('GetValue',
3267 'double',
3268 [param('unsigned int', 'k'), param('double', 'lambda')],
3269 is_const=True)
3270 return
3271
3272def register_Ns3ExponentialVariable_methods(root_module, cls):
3273 ## random-variable.h (module 'core'): ns3::ExponentialVariable::ExponentialVariable(ns3::ExponentialVariable const & arg0) [copy constructor]
3274 cls.add_constructor([param('ns3::ExponentialVariable const &', 'arg0')])
3275 ## random-variable.h (module 'core'): ns3::ExponentialVariable::ExponentialVariable() [constructor]
3276 cls.add_constructor([])
3277 ## random-variable.h (module 'core'): ns3::ExponentialVariable::ExponentialVariable(double m) [constructor]
3278 cls.add_constructor([param('double', 'm')])
3279 ## random-variable.h (module 'core'): ns3::ExponentialVariable::ExponentialVariable(double m, double b) [constructor]
3280 cls.add_constructor([param('double', 'm'), param('double', 'b')])
3281 return
3282
3283def register_Ns3GammaVariable_methods(root_module, cls):
3284 ## random-variable.h (module 'core'): ns3::GammaVariable::GammaVariable(ns3::GammaVariable const & arg0) [copy constructor]
3285 cls.add_constructor([param('ns3::GammaVariable const &', 'arg0')])
3286 ## random-variable.h (module 'core'): ns3::GammaVariable::GammaVariable() [constructor]
3287 cls.add_constructor([])
3288 ## random-variable.h (module 'core'): ns3::GammaVariable::GammaVariable(double alpha, double beta) [constructor]
3289 cls.add_constructor([param('double', 'alpha'), param('double', 'beta')])
3290 ## random-variable.h (module 'core'): double ns3::GammaVariable::GetValue() const [member function]
3291 cls.add_method('GetValue',
3292 'double',
3293 [],
3294 is_const=True)
3295 ## random-variable.h (module 'core'): double ns3::GammaVariable::GetValue(double alpha, double beta) const [member function]
3296 cls.add_method('GetValue',
3297 'double',
3298 [param('double', 'alpha'), param('double', 'beta')],
3299 is_const=True)
3300 return
3301
3302def register_Ns3Header_methods(root_module, cls):
3303 cls.add_output_stream_operator()
3304 ## header.h (module 'network'): ns3::Header::Header() [constructor]
3305 cls.add_constructor([])
3306 ## header.h (module 'network'): ns3::Header::Header(ns3::Header const & arg0) [copy constructor]
3307 cls.add_constructor([param('ns3::Header const &', 'arg0')])
3308 ## header.h (module 'network'): uint32_t ns3::Header::Deserialize(ns3::Buffer::Iterator start) [member function]
3309 cls.add_method('Deserialize',
3310 'uint32_t',
3311 [param('ns3::Buffer::Iterator', 'start')],
3312 is_pure_virtual=True, is_virtual=True)
3313 ## header.h (module 'network'): uint32_t ns3::Header::GetSerializedSize() const [member function]
3314 cls.add_method('GetSerializedSize',
3315 'uint32_t',
3316 [],
3317 is_pure_virtual=True, is_const=True, is_virtual=True)
3318 ## header.h (module 'network'): static ns3::TypeId ns3::Header::GetTypeId() [member function]
3319 cls.add_method('GetTypeId',
3320 'ns3::TypeId',
3321 [],
3322 is_static=True)
3323 ## header.h (module 'network'): void ns3::Header::Print(std::ostream & os) const [member function]
3324 cls.add_method('Print',
3325 'void',
3326 [param('std::ostream &', 'os')],
3327 is_pure_virtual=True, is_const=True, is_virtual=True)
3328 ## header.h (module 'network'): void ns3::Header::Serialize(ns3::Buffer::Iterator start) const [member function]
3329 cls.add_method('Serialize',
3330 'void',
3331 [param('ns3::Buffer::Iterator', 'start')],
3332 is_pure_virtual=True, is_const=True, is_virtual=True)
3333 return
3334
3335def register_Ns3IntEmpiricalVariable_methods(root_module, cls):
3336 ## random-variable.h (module 'core'): ns3::IntEmpiricalVariable::IntEmpiricalVariable(ns3::IntEmpiricalVariable const & arg0) [copy constructor]
3337 cls.add_constructor([param('ns3::IntEmpiricalVariable const &', 'arg0')])
3338 ## random-variable.h (module 'core'): ns3::IntEmpiricalVariable::IntEmpiricalVariable() [constructor]
3339 cls.add_constructor([])
3340 return
3341
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08003342def register_Ns3Ipv4Header_methods(root_module, cls):
3343 ## ipv4-header.h (module 'internet'): ns3::Ipv4Header::Ipv4Header(ns3::Ipv4Header const & arg0) [copy constructor]
3344 cls.add_constructor([param('ns3::Ipv4Header const &', 'arg0')])
3345 ## ipv4-header.h (module 'internet'): ns3::Ipv4Header::Ipv4Header() [constructor]
3346 cls.add_constructor([])
3347 ## ipv4-header.h (module 'internet'): uint32_t ns3::Ipv4Header::Deserialize(ns3::Buffer::Iterator start) [member function]
3348 cls.add_method('Deserialize',
3349 'uint32_t',
3350 [param('ns3::Buffer::Iterator', 'start')],
3351 is_virtual=True)
3352 ## ipv4-header.h (module 'internet'): std::string ns3::Ipv4Header::DscpTypeToString(ns3::Ipv4Header::DscpType dscp) const [member function]
3353 cls.add_method('DscpTypeToString',
3354 'std::string',
3355 [param('ns3::Ipv4Header::DscpType', 'dscp')],
3356 is_const=True)
3357 ## ipv4-header.h (module 'internet'): std::string ns3::Ipv4Header::EcnTypeToString(ns3::Ipv4Header::EcnType ecn) const [member function]
3358 cls.add_method('EcnTypeToString',
3359 'std::string',
3360 [param('ns3::Ipv4Header::EcnType', 'ecn')],
3361 is_const=True)
3362 ## ipv4-header.h (module 'internet'): void ns3::Ipv4Header::EnableChecksum() [member function]
3363 cls.add_method('EnableChecksum',
3364 'void',
3365 [])
3366 ## ipv4-header.h (module 'internet'): ns3::Ipv4Address ns3::Ipv4Header::GetDestination() const [member function]
3367 cls.add_method('GetDestination',
3368 'ns3::Ipv4Address',
3369 [],
3370 is_const=True)
3371 ## ipv4-header.h (module 'internet'): ns3::Ipv4Header::DscpType ns3::Ipv4Header::GetDscp() const [member function]
3372 cls.add_method('GetDscp',
3373 'ns3::Ipv4Header::DscpType',
3374 [],
3375 is_const=True)
3376 ## ipv4-header.h (module 'internet'): ns3::Ipv4Header::EcnType ns3::Ipv4Header::GetEcn() const [member function]
3377 cls.add_method('GetEcn',
3378 'ns3::Ipv4Header::EcnType',
3379 [],
3380 is_const=True)
3381 ## ipv4-header.h (module 'internet'): uint16_t ns3::Ipv4Header::GetFragmentOffset() const [member function]
3382 cls.add_method('GetFragmentOffset',
3383 'uint16_t',
3384 [],
3385 is_const=True)
3386 ## ipv4-header.h (module 'internet'): uint16_t ns3::Ipv4Header::GetIdentification() const [member function]
3387 cls.add_method('GetIdentification',
3388 'uint16_t',
3389 [],
3390 is_const=True)
3391 ## ipv4-header.h (module 'internet'): ns3::TypeId ns3::Ipv4Header::GetInstanceTypeId() const [member function]
3392 cls.add_method('GetInstanceTypeId',
3393 'ns3::TypeId',
3394 [],
3395 is_const=True, is_virtual=True)
3396 ## ipv4-header.h (module 'internet'): uint16_t ns3::Ipv4Header::GetPayloadSize() const [member function]
3397 cls.add_method('GetPayloadSize',
3398 'uint16_t',
3399 [],
3400 is_const=True)
3401 ## ipv4-header.h (module 'internet'): uint8_t ns3::Ipv4Header::GetProtocol() const [member function]
3402 cls.add_method('GetProtocol',
3403 'uint8_t',
3404 [],
3405 is_const=True)
3406 ## ipv4-header.h (module 'internet'): uint32_t ns3::Ipv4Header::GetSerializedSize() const [member function]
3407 cls.add_method('GetSerializedSize',
3408 'uint32_t',
3409 [],
3410 is_const=True, is_virtual=True)
3411 ## ipv4-header.h (module 'internet'): ns3::Ipv4Address ns3::Ipv4Header::GetSource() const [member function]
3412 cls.add_method('GetSource',
3413 'ns3::Ipv4Address',
3414 [],
3415 is_const=True)
3416 ## ipv4-header.h (module 'internet'): uint8_t ns3::Ipv4Header::GetTos() const [member function]
3417 cls.add_method('GetTos',
3418 'uint8_t',
3419 [],
3420 is_const=True)
3421 ## ipv4-header.h (module 'internet'): uint8_t ns3::Ipv4Header::GetTtl() const [member function]
3422 cls.add_method('GetTtl',
3423 'uint8_t',
3424 [],
3425 is_const=True)
3426 ## ipv4-header.h (module 'internet'): static ns3::TypeId ns3::Ipv4Header::GetTypeId() [member function]
3427 cls.add_method('GetTypeId',
3428 'ns3::TypeId',
3429 [],
3430 is_static=True)
3431 ## ipv4-header.h (module 'internet'): bool ns3::Ipv4Header::IsChecksumOk() const [member function]
3432 cls.add_method('IsChecksumOk',
3433 'bool',
3434 [],
3435 is_const=True)
3436 ## ipv4-header.h (module 'internet'): bool ns3::Ipv4Header::IsDontFragment() const [member function]
3437 cls.add_method('IsDontFragment',
3438 'bool',
3439 [],
3440 is_const=True)
3441 ## ipv4-header.h (module 'internet'): bool ns3::Ipv4Header::IsLastFragment() const [member function]
3442 cls.add_method('IsLastFragment',
3443 'bool',
3444 [],
3445 is_const=True)
3446 ## ipv4-header.h (module 'internet'): void ns3::Ipv4Header::Print(std::ostream & os) const [member function]
3447 cls.add_method('Print',
3448 'void',
3449 [param('std::ostream &', 'os')],
3450 is_const=True, is_virtual=True)
3451 ## ipv4-header.h (module 'internet'): void ns3::Ipv4Header::Serialize(ns3::Buffer::Iterator start) const [member function]
3452 cls.add_method('Serialize',
3453 'void',
3454 [param('ns3::Buffer::Iterator', 'start')],
3455 is_const=True, is_virtual=True)
3456 ## ipv4-header.h (module 'internet'): void ns3::Ipv4Header::SetDestination(ns3::Ipv4Address destination) [member function]
3457 cls.add_method('SetDestination',
3458 'void',
3459 [param('ns3::Ipv4Address', 'destination')])
3460 ## ipv4-header.h (module 'internet'): void ns3::Ipv4Header::SetDontFragment() [member function]
3461 cls.add_method('SetDontFragment',
3462 'void',
3463 [])
3464 ## ipv4-header.h (module 'internet'): void ns3::Ipv4Header::SetDscp(ns3::Ipv4Header::DscpType dscp) [member function]
3465 cls.add_method('SetDscp',
3466 'void',
3467 [param('ns3::Ipv4Header::DscpType', 'dscp')])
3468 ## ipv4-header.h (module 'internet'): void ns3::Ipv4Header::SetEcn(ns3::Ipv4Header::EcnType ecn) [member function]
3469 cls.add_method('SetEcn',
3470 'void',
3471 [param('ns3::Ipv4Header::EcnType', 'ecn')])
3472 ## ipv4-header.h (module 'internet'): void ns3::Ipv4Header::SetFragmentOffset(uint16_t offsetBytes) [member function]
3473 cls.add_method('SetFragmentOffset',
3474 'void',
3475 [param('uint16_t', 'offsetBytes')])
3476 ## ipv4-header.h (module 'internet'): void ns3::Ipv4Header::SetIdentification(uint16_t identification) [member function]
3477 cls.add_method('SetIdentification',
3478 'void',
3479 [param('uint16_t', 'identification')])
3480 ## ipv4-header.h (module 'internet'): void ns3::Ipv4Header::SetLastFragment() [member function]
3481 cls.add_method('SetLastFragment',
3482 'void',
3483 [])
3484 ## ipv4-header.h (module 'internet'): void ns3::Ipv4Header::SetMayFragment() [member function]
3485 cls.add_method('SetMayFragment',
3486 'void',
3487 [])
3488 ## ipv4-header.h (module 'internet'): void ns3::Ipv4Header::SetMoreFragments() [member function]
3489 cls.add_method('SetMoreFragments',
3490 'void',
3491 [])
3492 ## ipv4-header.h (module 'internet'): void ns3::Ipv4Header::SetPayloadSize(uint16_t size) [member function]
3493 cls.add_method('SetPayloadSize',
3494 'void',
3495 [param('uint16_t', 'size')])
3496 ## ipv4-header.h (module 'internet'): void ns3::Ipv4Header::SetProtocol(uint8_t num) [member function]
3497 cls.add_method('SetProtocol',
3498 'void',
3499 [param('uint8_t', 'num')])
3500 ## ipv4-header.h (module 'internet'): void ns3::Ipv4Header::SetSource(ns3::Ipv4Address source) [member function]
3501 cls.add_method('SetSource',
3502 'void',
3503 [param('ns3::Ipv4Address', 'source')])
3504 ## ipv4-header.h (module 'internet'): void ns3::Ipv4Header::SetTos(uint8_t tos) [member function]
3505 cls.add_method('SetTos',
3506 'void',
3507 [param('uint8_t', 'tos')])
3508 ## ipv4-header.h (module 'internet'): void ns3::Ipv4Header::SetTtl(uint8_t ttl) [member function]
3509 cls.add_method('SetTtl',
3510 'void',
3511 [param('uint8_t', 'ttl')])
3512 return
3513
Alexander Afanasyev6f933532012-02-29 13:30:37 -08003514def register_Ns3Ipv6Header_methods(root_module, cls):
3515 ## ipv6-header.h (module 'internet'): ns3::Ipv6Header::Ipv6Header(ns3::Ipv6Header const & arg0) [copy constructor]
3516 cls.add_constructor([param('ns3::Ipv6Header const &', 'arg0')])
3517 ## ipv6-header.h (module 'internet'): ns3::Ipv6Header::Ipv6Header() [constructor]
3518 cls.add_constructor([])
3519 ## ipv6-header.h (module 'internet'): uint32_t ns3::Ipv6Header::Deserialize(ns3::Buffer::Iterator start) [member function]
3520 cls.add_method('Deserialize',
3521 'uint32_t',
3522 [param('ns3::Buffer::Iterator', 'start')],
3523 is_virtual=True)
3524 ## ipv6-header.h (module 'internet'): ns3::Ipv6Address ns3::Ipv6Header::GetDestinationAddress() const [member function]
3525 cls.add_method('GetDestinationAddress',
3526 'ns3::Ipv6Address',
3527 [],
3528 is_const=True)
3529 ## ipv6-header.h (module 'internet'): uint32_t ns3::Ipv6Header::GetFlowLabel() const [member function]
3530 cls.add_method('GetFlowLabel',
3531 'uint32_t',
3532 [],
3533 is_const=True)
3534 ## ipv6-header.h (module 'internet'): uint8_t ns3::Ipv6Header::GetHopLimit() const [member function]
3535 cls.add_method('GetHopLimit',
3536 'uint8_t',
3537 [],
3538 is_const=True)
3539 ## ipv6-header.h (module 'internet'): ns3::TypeId ns3::Ipv6Header::GetInstanceTypeId() const [member function]
3540 cls.add_method('GetInstanceTypeId',
3541 'ns3::TypeId',
3542 [],
3543 is_const=True, is_virtual=True)
3544 ## ipv6-header.h (module 'internet'): uint8_t ns3::Ipv6Header::GetNextHeader() const [member function]
3545 cls.add_method('GetNextHeader',
3546 'uint8_t',
3547 [],
3548 is_const=True)
3549 ## ipv6-header.h (module 'internet'): uint16_t ns3::Ipv6Header::GetPayloadLength() const [member function]
3550 cls.add_method('GetPayloadLength',
3551 'uint16_t',
3552 [],
3553 is_const=True)
3554 ## ipv6-header.h (module 'internet'): uint32_t ns3::Ipv6Header::GetSerializedSize() const [member function]
3555 cls.add_method('GetSerializedSize',
3556 'uint32_t',
3557 [],
3558 is_const=True, is_virtual=True)
3559 ## ipv6-header.h (module 'internet'): ns3::Ipv6Address ns3::Ipv6Header::GetSourceAddress() const [member function]
3560 cls.add_method('GetSourceAddress',
3561 'ns3::Ipv6Address',
3562 [],
3563 is_const=True)
3564 ## ipv6-header.h (module 'internet'): uint8_t ns3::Ipv6Header::GetTrafficClass() const [member function]
3565 cls.add_method('GetTrafficClass',
3566 'uint8_t',
3567 [],
3568 is_const=True)
3569 ## ipv6-header.h (module 'internet'): static ns3::TypeId ns3::Ipv6Header::GetTypeId() [member function]
3570 cls.add_method('GetTypeId',
3571 'ns3::TypeId',
3572 [],
3573 is_static=True)
3574 ## ipv6-header.h (module 'internet'): void ns3::Ipv6Header::Print(std::ostream & os) const [member function]
3575 cls.add_method('Print',
3576 'void',
3577 [param('std::ostream &', 'os')],
3578 is_const=True, is_virtual=True)
3579 ## ipv6-header.h (module 'internet'): void ns3::Ipv6Header::Serialize(ns3::Buffer::Iterator start) const [member function]
3580 cls.add_method('Serialize',
3581 'void',
3582 [param('ns3::Buffer::Iterator', 'start')],
3583 is_const=True, is_virtual=True)
3584 ## ipv6-header.h (module 'internet'): void ns3::Ipv6Header::SetDestinationAddress(ns3::Ipv6Address dst) [member function]
3585 cls.add_method('SetDestinationAddress',
3586 'void',
3587 [param('ns3::Ipv6Address', 'dst')])
3588 ## ipv6-header.h (module 'internet'): void ns3::Ipv6Header::SetFlowLabel(uint32_t flow) [member function]
3589 cls.add_method('SetFlowLabel',
3590 'void',
3591 [param('uint32_t', 'flow')])
3592 ## ipv6-header.h (module 'internet'): void ns3::Ipv6Header::SetHopLimit(uint8_t limit) [member function]
3593 cls.add_method('SetHopLimit',
3594 'void',
3595 [param('uint8_t', 'limit')])
3596 ## ipv6-header.h (module 'internet'): void ns3::Ipv6Header::SetNextHeader(uint8_t next) [member function]
3597 cls.add_method('SetNextHeader',
3598 'void',
3599 [param('uint8_t', 'next')])
3600 ## ipv6-header.h (module 'internet'): void ns3::Ipv6Header::SetPayloadLength(uint16_t len) [member function]
3601 cls.add_method('SetPayloadLength',
3602 'void',
3603 [param('uint16_t', 'len')])
3604 ## ipv6-header.h (module 'internet'): void ns3::Ipv6Header::SetSourceAddress(ns3::Ipv6Address src) [member function]
3605 cls.add_method('SetSourceAddress',
3606 'void',
3607 [param('ns3::Ipv6Address', 'src')])
3608 ## ipv6-header.h (module 'internet'): void ns3::Ipv6Header::SetTrafficClass(uint8_t traffic) [member function]
3609 cls.add_method('SetTrafficClass',
3610 'void',
3611 [param('uint8_t', 'traffic')])
3612 return
3613
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003614def register_Ns3LogNormalVariable_methods(root_module, cls):
3615 ## random-variable.h (module 'core'): ns3::LogNormalVariable::LogNormalVariable(ns3::LogNormalVariable const & arg0) [copy constructor]
3616 cls.add_constructor([param('ns3::LogNormalVariable const &', 'arg0')])
3617 ## random-variable.h (module 'core'): ns3::LogNormalVariable::LogNormalVariable(double mu, double sigma) [constructor]
3618 cls.add_constructor([param('double', 'mu'), param('double', 'sigma')])
3619 return
3620
3621def register_Ns3NormalVariable_methods(root_module, cls):
3622 ## random-variable.h (module 'core'): ns3::NormalVariable::NormalVariable(ns3::NormalVariable const & arg0) [copy constructor]
3623 cls.add_constructor([param('ns3::NormalVariable const &', 'arg0')])
3624 ## random-variable.h (module 'core'): ns3::NormalVariable::NormalVariable() [constructor]
3625 cls.add_constructor([])
3626 ## random-variable.h (module 'core'): ns3::NormalVariable::NormalVariable(double m, double v) [constructor]
3627 cls.add_constructor([param('double', 'm'), param('double', 'v')])
3628 ## random-variable.h (module 'core'): ns3::NormalVariable::NormalVariable(double m, double v, double b) [constructor]
3629 cls.add_constructor([param('double', 'm'), param('double', 'v'), param('double', 'b')])
3630 return
3631
3632def register_Ns3Object_methods(root_module, cls):
3633 ## object.h (module 'core'): ns3::Object::Object() [constructor]
3634 cls.add_constructor([])
3635 ## object.h (module 'core'): void ns3::Object::AggregateObject(ns3::Ptr<ns3::Object> other) [member function]
3636 cls.add_method('AggregateObject',
3637 'void',
3638 [param('ns3::Ptr< ns3::Object >', 'other')])
3639 ## object.h (module 'core'): void ns3::Object::Dispose() [member function]
3640 cls.add_method('Dispose',
3641 'void',
3642 [])
3643 ## object.h (module 'core'): ns3::Object::AggregateIterator ns3::Object::GetAggregateIterator() const [member function]
3644 cls.add_method('GetAggregateIterator',
3645 'ns3::Object::AggregateIterator',
3646 [],
3647 is_const=True)
3648 ## object.h (module 'core'): ns3::TypeId ns3::Object::GetInstanceTypeId() const [member function]
3649 cls.add_method('GetInstanceTypeId',
3650 'ns3::TypeId',
3651 [],
3652 is_const=True, is_virtual=True)
3653 ## object.h (module 'core'): static ns3::TypeId ns3::Object::GetTypeId() [member function]
3654 cls.add_method('GetTypeId',
3655 'ns3::TypeId',
3656 [],
3657 is_static=True)
3658 ## object.h (module 'core'): void ns3::Object::Start() [member function]
3659 cls.add_method('Start',
3660 'void',
3661 [])
3662 ## object.h (module 'core'): ns3::Object::Object(ns3::Object const & o) [copy constructor]
3663 cls.add_constructor([param('ns3::Object const &', 'o')],
3664 visibility='protected')
3665 ## object.h (module 'core'): void ns3::Object::DoDispose() [member function]
3666 cls.add_method('DoDispose',
3667 'void',
3668 [],
3669 visibility='protected', is_virtual=True)
3670 ## object.h (module 'core'): void ns3::Object::DoStart() [member function]
3671 cls.add_method('DoStart',
3672 'void',
3673 [],
3674 visibility='protected', is_virtual=True)
3675 ## object.h (module 'core'): void ns3::Object::NotifyNewAggregate() [member function]
3676 cls.add_method('NotifyNewAggregate',
3677 'void',
3678 [],
3679 visibility='protected', is_virtual=True)
3680 return
3681
3682def register_Ns3ObjectAggregateIterator_methods(root_module, cls):
3683 ## object.h (module 'core'): ns3::Object::AggregateIterator::AggregateIterator(ns3::Object::AggregateIterator const & arg0) [copy constructor]
3684 cls.add_constructor([param('ns3::Object::AggregateIterator const &', 'arg0')])
3685 ## object.h (module 'core'): ns3::Object::AggregateIterator::AggregateIterator() [constructor]
3686 cls.add_constructor([])
3687 ## object.h (module 'core'): bool ns3::Object::AggregateIterator::HasNext() const [member function]
3688 cls.add_method('HasNext',
3689 'bool',
3690 [],
3691 is_const=True)
3692 ## object.h (module 'core'): ns3::Ptr<ns3::Object const> ns3::Object::AggregateIterator::Next() [member function]
3693 cls.add_method('Next',
3694 'ns3::Ptr< ns3::Object const >',
3695 [])
3696 return
3697
3698def register_Ns3ParetoVariable_methods(root_module, cls):
3699 ## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable(ns3::ParetoVariable const & arg0) [copy constructor]
3700 cls.add_constructor([param('ns3::ParetoVariable const &', 'arg0')])
3701 ## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable() [constructor]
3702 cls.add_constructor([])
3703 ## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable(double m) [constructor]
3704 cls.add_constructor([param('double', 'm')])
3705 ## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable(double m, double s) [constructor]
3706 cls.add_constructor([param('double', 'm'), param('double', 's')])
3707 ## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable(double m, double s, double b) [constructor]
3708 cls.add_constructor([param('double', 'm'), param('double', 's'), param('double', 'b')])
3709 ## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable(std::pair<double,double> params) [constructor]
3710 cls.add_constructor([param('std::pair< double, double >', 'params')])
3711 ## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable(std::pair<double,double> params, double b) [constructor]
3712 cls.add_constructor([param('std::pair< double, double >', 'params'), param('double', 'b')])
3713 return
3714
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003715def register_Ns3SimpleRefCount__Ns3AttributeAccessor_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeAccessor__gt___methods(root_module, cls):
3716 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> >::SimpleRefCount() [constructor]
3717 cls.add_constructor([])
3718 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> >::SimpleRefCount(ns3::SimpleRefCount<ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> > const & o) [copy constructor]
3719 cls.add_constructor([param('ns3::SimpleRefCount< ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter< ns3::AttributeAccessor > > const &', 'o')])
3720 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> >::Cleanup() [member function]
3721 cls.add_method('Cleanup',
3722 'void',
3723 [],
3724 is_static=True)
3725 return
3726
3727def register_Ns3SimpleRefCount__Ns3AttributeChecker_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeChecker__gt___methods(root_module, cls):
3728 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter<ns3::AttributeChecker> >::SimpleRefCount() [constructor]
3729 cls.add_constructor([])
3730 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter<ns3::AttributeChecker> >::SimpleRefCount(ns3::SimpleRefCount<ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter<ns3::AttributeChecker> > const & o) [copy constructor]
3731 cls.add_constructor([param('ns3::SimpleRefCount< ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter< ns3::AttributeChecker > > const &', 'o')])
3732 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter<ns3::AttributeChecker> >::Cleanup() [member function]
3733 cls.add_method('Cleanup',
3734 'void',
3735 [],
3736 is_static=True)
3737 return
3738
3739def register_Ns3SimpleRefCount__Ns3AttributeValue_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeValue__gt___methods(root_module, cls):
3740 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter<ns3::AttributeValue> >::SimpleRefCount() [constructor]
3741 cls.add_constructor([])
3742 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter<ns3::AttributeValue> >::SimpleRefCount(ns3::SimpleRefCount<ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter<ns3::AttributeValue> > const & o) [copy constructor]
3743 cls.add_constructor([param('ns3::SimpleRefCount< ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter< ns3::AttributeValue > > const &', 'o')])
3744 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter<ns3::AttributeValue> >::Cleanup() [member function]
3745 cls.add_method('Cleanup',
3746 'void',
3747 [],
3748 is_static=True)
3749 return
3750
3751def register_Ns3SimpleRefCount__Ns3CallbackImplBase_Ns3Empty_Ns3DefaultDeleter__lt__ns3CallbackImplBase__gt___methods(root_module, cls):
3752 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> >::SimpleRefCount() [constructor]
3753 cls.add_constructor([])
3754 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> >::SimpleRefCount(ns3::SimpleRefCount<ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> > const & o) [copy constructor]
3755 cls.add_constructor([param('ns3::SimpleRefCount< ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter< ns3::CallbackImplBase > > const &', 'o')])
3756 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> >::Cleanup() [member function]
3757 cls.add_method('Cleanup',
3758 'void',
3759 [],
3760 is_static=True)
3761 return
3762
Alexander Afanasyevb3e4b852011-12-23 15:58:20 -08003763def register_Ns3SimpleRefCount__Ns3CcnxAppTracer_Ns3Empty_Ns3DefaultDeleter__lt__ns3CcnxAppTracer__gt___methods(root_module, cls):
3764 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CcnxAppTracer, ns3::empty, ns3::DefaultDeleter<ns3::CcnxAppTracer> >::SimpleRefCount() [constructor]
3765 cls.add_constructor([])
3766 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CcnxAppTracer, ns3::empty, ns3::DefaultDeleter<ns3::CcnxAppTracer> >::SimpleRefCount(ns3::SimpleRefCount<ns3::CcnxAppTracer, ns3::empty, ns3::DefaultDeleter<ns3::CcnxAppTracer> > const & o) [copy constructor]
3767 cls.add_constructor([param('ns3::SimpleRefCount< ns3::CcnxAppTracer, ns3::empty, ns3::DefaultDeleter< ns3::CcnxAppTracer > > const &', 'o')])
3768 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::CcnxAppTracer, ns3::empty, ns3::DefaultDeleter<ns3::CcnxAppTracer> >::Cleanup() [member function]
3769 cls.add_method('Cleanup',
3770 'void',
3771 [],
3772 is_static=True)
3773 return
3774
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003775def register_Ns3SimpleRefCount__Ns3CcnxFaceContainer_Ns3Empty_Ns3DefaultDeleter__lt__ns3CcnxFaceContainer__gt___methods(root_module, cls):
3776 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CcnxFaceContainer, ns3::empty, ns3::DefaultDeleter<ns3::CcnxFaceContainer> >::SimpleRefCount() [constructor]
3777 cls.add_constructor([])
3778 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CcnxFaceContainer, ns3::empty, ns3::DefaultDeleter<ns3::CcnxFaceContainer> >::SimpleRefCount(ns3::SimpleRefCount<ns3::CcnxFaceContainer, ns3::empty, ns3::DefaultDeleter<ns3::CcnxFaceContainer> > const & o) [copy constructor]
3779 cls.add_constructor([param('ns3::SimpleRefCount< ns3::CcnxFaceContainer, ns3::empty, ns3::DefaultDeleter< ns3::CcnxFaceContainer > > const &', 'o')])
3780 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::CcnxFaceContainer, ns3::empty, ns3::DefaultDeleter<ns3::CcnxFaceContainer> >::Cleanup() [member function]
3781 cls.add_method('Cleanup',
3782 'void',
3783 [],
3784 is_static=True)
3785 return
3786
Alexander Afanasyevb3e4b852011-12-23 15:58:20 -08003787def register_Ns3SimpleRefCount__Ns3CcnxL3Tracer_Ns3Empty_Ns3DefaultDeleter__lt__ns3CcnxL3Tracer__gt___methods(root_module, cls):
3788 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CcnxL3Tracer, ns3::empty, ns3::DefaultDeleter<ns3::CcnxL3Tracer> >::SimpleRefCount() [constructor]
3789 cls.add_constructor([])
3790 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CcnxL3Tracer, ns3::empty, ns3::DefaultDeleter<ns3::CcnxL3Tracer> >::SimpleRefCount(ns3::SimpleRefCount<ns3::CcnxL3Tracer, ns3::empty, ns3::DefaultDeleter<ns3::CcnxL3Tracer> > const & o) [copy constructor]
3791 cls.add_constructor([param('ns3::SimpleRefCount< ns3::CcnxL3Tracer, ns3::empty, ns3::DefaultDeleter< ns3::CcnxL3Tracer > > const &', 'o')])
3792 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::CcnxL3Tracer, ns3::empty, ns3::DefaultDeleter<ns3::CcnxL3Tracer> >::Cleanup() [member function]
3793 cls.add_method('Cleanup',
3794 'void',
3795 [],
3796 is_static=True)
3797 return
3798
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003799def register_Ns3SimpleRefCount__Ns3CcnxNameComponents_Ns3Empty_Ns3DefaultDeleter__lt__ns3CcnxNameComponents__gt___methods(root_module, cls):
3800 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CcnxNameComponents, ns3::empty, ns3::DefaultDeleter<ns3::CcnxNameComponents> >::SimpleRefCount() [constructor]
3801 cls.add_constructor([])
3802 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CcnxNameComponents, ns3::empty, ns3::DefaultDeleter<ns3::CcnxNameComponents> >::SimpleRefCount(ns3::SimpleRefCount<ns3::CcnxNameComponents, ns3::empty, ns3::DefaultDeleter<ns3::CcnxNameComponents> > const & o) [copy constructor]
3803 cls.add_constructor([param('ns3::SimpleRefCount< ns3::CcnxNameComponents, ns3::empty, ns3::DefaultDeleter< ns3::CcnxNameComponents > > const &', 'o')])
3804 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::CcnxNameComponents, ns3::empty, ns3::DefaultDeleter<ns3::CcnxNameComponents> >::Cleanup() [member function]
3805 cls.add_method('Cleanup',
3806 'void',
3807 [],
3808 is_static=True)
3809 return
3810
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08003811def register_Ns3SimpleRefCount__Ns3CcnxPathWeightTracer_Ns3Empty_Ns3DefaultDeleter__lt__ns3CcnxPathWeightTracer__gt___methods(root_module, cls):
3812 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CcnxPathWeightTracer, ns3::empty, ns3::DefaultDeleter<ns3::CcnxPathWeightTracer> >::SimpleRefCount() [constructor]
3813 cls.add_constructor([])
3814 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CcnxPathWeightTracer, ns3::empty, ns3::DefaultDeleter<ns3::CcnxPathWeightTracer> >::SimpleRefCount(ns3::SimpleRefCount<ns3::CcnxPathWeightTracer, ns3::empty, ns3::DefaultDeleter<ns3::CcnxPathWeightTracer> > const & o) [copy constructor]
3815 cls.add_constructor([param('ns3::SimpleRefCount< ns3::CcnxPathWeightTracer, ns3::empty, ns3::DefaultDeleter< ns3::CcnxPathWeightTracer > > const &', 'o')])
3816 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::CcnxPathWeightTracer, ns3::empty, ns3::DefaultDeleter<ns3::CcnxPathWeightTracer> >::Cleanup() [member function]
3817 cls.add_method('Cleanup',
3818 'void',
3819 [],
3820 is_static=True)
3821 return
3822
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003823def register_Ns3SimpleRefCount__Ns3EventImpl_Ns3Empty_Ns3DefaultDeleter__lt__ns3EventImpl__gt___methods(root_module, cls):
3824 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::EventImpl, ns3::empty, ns3::DefaultDeleter<ns3::EventImpl> >::SimpleRefCount() [constructor]
3825 cls.add_constructor([])
3826 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::EventImpl, ns3::empty, ns3::DefaultDeleter<ns3::EventImpl> >::SimpleRefCount(ns3::SimpleRefCount<ns3::EventImpl, ns3::empty, ns3::DefaultDeleter<ns3::EventImpl> > const & o) [copy constructor]
3827 cls.add_constructor([param('ns3::SimpleRefCount< ns3::EventImpl, ns3::empty, ns3::DefaultDeleter< ns3::EventImpl > > const &', 'o')])
3828 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::EventImpl, ns3::empty, ns3::DefaultDeleter<ns3::EventImpl> >::Cleanup() [member function]
3829 cls.add_method('Cleanup',
3830 'void',
3831 [],
3832 is_static=True)
3833 return
3834
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08003835def register_Ns3SimpleRefCount__Ns3Ipv4AppTracer_Ns3Empty_Ns3DefaultDeleter__lt__ns3Ipv4AppTracer__gt___methods(root_module, cls):
3836 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Ipv4AppTracer, ns3::empty, ns3::DefaultDeleter<ns3::Ipv4AppTracer> >::SimpleRefCount() [constructor]
3837 cls.add_constructor([])
3838 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Ipv4AppTracer, ns3::empty, ns3::DefaultDeleter<ns3::Ipv4AppTracer> >::SimpleRefCount(ns3::SimpleRefCount<ns3::Ipv4AppTracer, ns3::empty, ns3::DefaultDeleter<ns3::Ipv4AppTracer> > const & o) [copy constructor]
3839 cls.add_constructor([param('ns3::SimpleRefCount< ns3::Ipv4AppTracer, ns3::empty, ns3::DefaultDeleter< ns3::Ipv4AppTracer > > const &', 'o')])
3840 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::Ipv4AppTracer, ns3::empty, ns3::DefaultDeleter<ns3::Ipv4AppTracer> >::Cleanup() [member function]
3841 cls.add_method('Cleanup',
3842 'void',
3843 [],
3844 is_static=True)
3845 return
3846
Alexander Afanasyev03d92e42012-02-01 21:06:53 -08003847def register_Ns3SimpleRefCount__Ns3Ipv4L3Tracer_Ns3Empty_Ns3DefaultDeleter__lt__ns3Ipv4L3Tracer__gt___methods(root_module, cls):
3848 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Ipv4L3Tracer, ns3::empty, ns3::DefaultDeleter<ns3::Ipv4L3Tracer> >::SimpleRefCount() [constructor]
3849 cls.add_constructor([])
3850 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Ipv4L3Tracer, ns3::empty, ns3::DefaultDeleter<ns3::Ipv4L3Tracer> >::SimpleRefCount(ns3::SimpleRefCount<ns3::Ipv4L3Tracer, ns3::empty, ns3::DefaultDeleter<ns3::Ipv4L3Tracer> > const & o) [copy constructor]
3851 cls.add_constructor([param('ns3::SimpleRefCount< ns3::Ipv4L3Tracer, ns3::empty, ns3::DefaultDeleter< ns3::Ipv4L3Tracer > > const &', 'o')])
3852 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::Ipv4L3Tracer, ns3::empty, ns3::DefaultDeleter<ns3::Ipv4L3Tracer> >::Cleanup() [member function]
3853 cls.add_method('Cleanup',
3854 'void',
3855 [],
3856 is_static=True)
3857 return
3858
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08003859def register_Ns3SimpleRefCount__Ns3Ipv4MulticastRoute_Ns3Empty_Ns3DefaultDeleter__lt__ns3Ipv4MulticastRoute__gt___methods(root_module, cls):
3860 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Ipv4MulticastRoute, ns3::empty, ns3::DefaultDeleter<ns3::Ipv4MulticastRoute> >::SimpleRefCount() [constructor]
3861 cls.add_constructor([])
3862 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Ipv4MulticastRoute, ns3::empty, ns3::DefaultDeleter<ns3::Ipv4MulticastRoute> >::SimpleRefCount(ns3::SimpleRefCount<ns3::Ipv4MulticastRoute, ns3::empty, ns3::DefaultDeleter<ns3::Ipv4MulticastRoute> > const & o) [copy constructor]
3863 cls.add_constructor([param('ns3::SimpleRefCount< ns3::Ipv4MulticastRoute, ns3::empty, ns3::DefaultDeleter< ns3::Ipv4MulticastRoute > > const &', 'o')])
3864 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::Ipv4MulticastRoute, ns3::empty, ns3::DefaultDeleter<ns3::Ipv4MulticastRoute> >::Cleanup() [member function]
3865 cls.add_method('Cleanup',
3866 'void',
3867 [],
3868 is_static=True)
3869 return
3870
3871def register_Ns3SimpleRefCount__Ns3Ipv4Route_Ns3Empty_Ns3DefaultDeleter__lt__ns3Ipv4Route__gt___methods(root_module, cls):
3872 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Ipv4Route, ns3::empty, ns3::DefaultDeleter<ns3::Ipv4Route> >::SimpleRefCount() [constructor]
3873 cls.add_constructor([])
3874 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Ipv4Route, ns3::empty, ns3::DefaultDeleter<ns3::Ipv4Route> >::SimpleRefCount(ns3::SimpleRefCount<ns3::Ipv4Route, ns3::empty, ns3::DefaultDeleter<ns3::Ipv4Route> > const & o) [copy constructor]
3875 cls.add_constructor([param('ns3::SimpleRefCount< ns3::Ipv4Route, ns3::empty, ns3::DefaultDeleter< ns3::Ipv4Route > > const &', 'o')])
3876 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::Ipv4Route, ns3::empty, ns3::DefaultDeleter<ns3::Ipv4Route> >::Cleanup() [member function]
3877 cls.add_method('Cleanup',
3878 'void',
3879 [],
3880 is_static=True)
3881 return
3882
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003883def register_Ns3SimpleRefCount__Ns3NixVector_Ns3Empty_Ns3DefaultDeleter__lt__ns3NixVector__gt___methods(root_module, cls):
3884 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::NixVector, ns3::empty, ns3::DefaultDeleter<ns3::NixVector> >::SimpleRefCount() [constructor]
3885 cls.add_constructor([])
3886 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::NixVector, ns3::empty, ns3::DefaultDeleter<ns3::NixVector> >::SimpleRefCount(ns3::SimpleRefCount<ns3::NixVector, ns3::empty, ns3::DefaultDeleter<ns3::NixVector> > const & o) [copy constructor]
3887 cls.add_constructor([param('ns3::SimpleRefCount< ns3::NixVector, ns3::empty, ns3::DefaultDeleter< ns3::NixVector > > const &', 'o')])
3888 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::NixVector, ns3::empty, ns3::DefaultDeleter<ns3::NixVector> >::Cleanup() [member function]
3889 cls.add_method('Cleanup',
3890 'void',
3891 [],
3892 is_static=True)
3893 return
3894
Alexander Afanasyev03d92e42012-02-01 21:06:53 -08003895def register_Ns3SimpleRefCount__Ns3OutputStreamWrapper_Ns3Empty_Ns3DefaultDeleter__lt__ns3OutputStreamWrapper__gt___methods(root_module, cls):
3896 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::OutputStreamWrapper, ns3::empty, ns3::DefaultDeleter<ns3::OutputStreamWrapper> >::SimpleRefCount() [constructor]
3897 cls.add_constructor([])
3898 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::OutputStreamWrapper, ns3::empty, ns3::DefaultDeleter<ns3::OutputStreamWrapper> >::SimpleRefCount(ns3::SimpleRefCount<ns3::OutputStreamWrapper, ns3::empty, ns3::DefaultDeleter<ns3::OutputStreamWrapper> > const & o) [copy constructor]
3899 cls.add_constructor([param('ns3::SimpleRefCount< ns3::OutputStreamWrapper, ns3::empty, ns3::DefaultDeleter< ns3::OutputStreamWrapper > > const &', 'o')])
3900 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::OutputStreamWrapper, ns3::empty, ns3::DefaultDeleter<ns3::OutputStreamWrapper> >::Cleanup() [member function]
3901 cls.add_method('Cleanup',
3902 'void',
3903 [],
3904 is_static=True)
3905 return
3906
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003907def register_Ns3SimpleRefCount__Ns3Packet_Ns3Empty_Ns3DefaultDeleter__lt__ns3Packet__gt___methods(root_module, cls):
3908 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Packet, ns3::empty, ns3::DefaultDeleter<ns3::Packet> >::SimpleRefCount() [constructor]
3909 cls.add_constructor([])
3910 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Packet, ns3::empty, ns3::DefaultDeleter<ns3::Packet> >::SimpleRefCount(ns3::SimpleRefCount<ns3::Packet, ns3::empty, ns3::DefaultDeleter<ns3::Packet> > const & o) [copy constructor]
3911 cls.add_constructor([param('ns3::SimpleRefCount< ns3::Packet, ns3::empty, ns3::DefaultDeleter< ns3::Packet > > const &', 'o')])
3912 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::Packet, ns3::empty, ns3::DefaultDeleter<ns3::Packet> >::Cleanup() [member function]
3913 cls.add_method('Cleanup',
3914 'void',
3915 [],
3916 is_static=True)
3917 return
3918
Alexander Afanasyevae3b7c32011-12-13 13:20:06 -08003919def register_Ns3SimpleRefCount__Ns3TopologyReader_Ns3Empty_Ns3DefaultDeleter__lt__ns3TopologyReader__gt___methods(root_module, cls):
3920 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::TopologyReader, ns3::empty, ns3::DefaultDeleter<ns3::TopologyReader> >::SimpleRefCount() [constructor]
3921 cls.add_constructor([])
3922 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::TopologyReader, ns3::empty, ns3::DefaultDeleter<ns3::TopologyReader> >::SimpleRefCount(ns3::SimpleRefCount<ns3::TopologyReader, ns3::empty, ns3::DefaultDeleter<ns3::TopologyReader> > const & o) [copy constructor]
3923 cls.add_constructor([param('ns3::SimpleRefCount< ns3::TopologyReader, ns3::empty, ns3::DefaultDeleter< ns3::TopologyReader > > const &', 'o')])
3924 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::TopologyReader, ns3::empty, ns3::DefaultDeleter<ns3::TopologyReader> >::Cleanup() [member function]
3925 cls.add_method('Cleanup',
3926 'void',
3927 [],
3928 is_static=True)
3929 return
3930
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003931def register_Ns3SimpleRefCount__Ns3TraceSourceAccessor_Ns3Empty_Ns3DefaultDeleter__lt__ns3TraceSourceAccessor__gt___methods(root_module, cls):
3932 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter<ns3::TraceSourceAccessor> >::SimpleRefCount() [constructor]
3933 cls.add_constructor([])
3934 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter<ns3::TraceSourceAccessor> >::SimpleRefCount(ns3::SimpleRefCount<ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter<ns3::TraceSourceAccessor> > const & o) [copy constructor]
3935 cls.add_constructor([param('ns3::SimpleRefCount< ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter< ns3::TraceSourceAccessor > > const &', 'o')])
3936 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter<ns3::TraceSourceAccessor> >::Cleanup() [member function]
3937 cls.add_method('Cleanup',
3938 'void',
3939 [],
3940 is_static=True)
3941 return
3942
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08003943def register_Ns3SimpleRefCount__Ns3WindowTracer_Ns3Empty_Ns3DefaultDeleter__lt__ns3WindowTracer__gt___methods(root_module, cls):
3944 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::WindowTracer, ns3::empty, ns3::DefaultDeleter<ns3::WindowTracer> >::SimpleRefCount() [constructor]
3945 cls.add_constructor([])
3946 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::WindowTracer, ns3::empty, ns3::DefaultDeleter<ns3::WindowTracer> >::SimpleRefCount(ns3::SimpleRefCount<ns3::WindowTracer, ns3::empty, ns3::DefaultDeleter<ns3::WindowTracer> > const & o) [copy constructor]
3947 cls.add_constructor([param('ns3::SimpleRefCount< ns3::WindowTracer, ns3::empty, ns3::DefaultDeleter< ns3::WindowTracer > > const &', 'o')])
3948 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::WindowTracer, ns3::empty, ns3::DefaultDeleter<ns3::WindowTracer> >::Cleanup() [member function]
3949 cls.add_method('Cleanup',
3950 'void',
3951 [],
3952 is_static=True)
3953 return
3954
3955def register_Ns3Socket_methods(root_module, cls):
3956 ## socket.h (module 'network'): ns3::Socket::Socket(ns3::Socket const & arg0) [copy constructor]
3957 cls.add_constructor([param('ns3::Socket const &', 'arg0')])
3958 ## socket.h (module 'network'): ns3::Socket::Socket() [constructor]
3959 cls.add_constructor([])
3960 ## socket.h (module 'network'): int ns3::Socket::Bind(ns3::Address const & address) [member function]
3961 cls.add_method('Bind',
3962 'int',
3963 [param('ns3::Address const &', 'address')],
3964 is_pure_virtual=True, is_virtual=True)
3965 ## socket.h (module 'network'): int ns3::Socket::Bind() [member function]
3966 cls.add_method('Bind',
3967 'int',
3968 [],
3969 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyev6f933532012-02-29 13:30:37 -08003970 ## socket.h (module 'network'): int ns3::Socket::Bind6() [member function]
3971 cls.add_method('Bind6',
3972 'int',
3973 [],
3974 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08003975 ## socket.h (module 'network'): void ns3::Socket::BindToNetDevice(ns3::Ptr<ns3::NetDevice> netdevice) [member function]
3976 cls.add_method('BindToNetDevice',
3977 'void',
3978 [param('ns3::Ptr< ns3::NetDevice >', 'netdevice')],
3979 is_virtual=True)
3980 ## socket.h (module 'network'): int ns3::Socket::Close() [member function]
3981 cls.add_method('Close',
3982 'int',
3983 [],
3984 is_pure_virtual=True, is_virtual=True)
3985 ## socket.h (module 'network'): int ns3::Socket::Connect(ns3::Address const & address) [member function]
3986 cls.add_method('Connect',
3987 'int',
3988 [param('ns3::Address const &', 'address')],
3989 is_pure_virtual=True, is_virtual=True)
3990 ## socket.h (module 'network'): static ns3::Ptr<ns3::Socket> ns3::Socket::CreateSocket(ns3::Ptr<ns3::Node> node, ns3::TypeId tid) [member function]
3991 cls.add_method('CreateSocket',
3992 'ns3::Ptr< ns3::Socket >',
3993 [param('ns3::Ptr< ns3::Node >', 'node'), param('ns3::TypeId', 'tid')],
3994 is_static=True)
3995 ## socket.h (module 'network'): bool ns3::Socket::GetAllowBroadcast() const [member function]
3996 cls.add_method('GetAllowBroadcast',
3997 'bool',
3998 [],
3999 is_pure_virtual=True, is_const=True, is_virtual=True)
4000 ## socket.h (module 'network'): ns3::Ptr<ns3::NetDevice> ns3::Socket::GetBoundNetDevice() [member function]
4001 cls.add_method('GetBoundNetDevice',
4002 'ns3::Ptr< ns3::NetDevice >',
4003 [])
4004 ## socket.h (module 'network'): ns3::Socket::SocketErrno ns3::Socket::GetErrno() const [member function]
4005 cls.add_method('GetErrno',
4006 'ns3::Socket::SocketErrno',
4007 [],
4008 is_pure_virtual=True, is_const=True, is_virtual=True)
4009 ## socket.h (module 'network'): ns3::Ptr<ns3::Node> ns3::Socket::GetNode() const [member function]
4010 cls.add_method('GetNode',
4011 'ns3::Ptr< ns3::Node >',
4012 [],
4013 is_pure_virtual=True, is_const=True, is_virtual=True)
4014 ## socket.h (module 'network'): uint32_t ns3::Socket::GetRxAvailable() const [member function]
4015 cls.add_method('GetRxAvailable',
4016 'uint32_t',
4017 [],
4018 is_pure_virtual=True, is_const=True, is_virtual=True)
4019 ## socket.h (module 'network'): int ns3::Socket::GetSockName(ns3::Address & address) const [member function]
4020 cls.add_method('GetSockName',
4021 'int',
4022 [param('ns3::Address &', 'address')],
4023 is_pure_virtual=True, is_const=True, is_virtual=True)
4024 ## socket.h (module 'network'): ns3::Socket::SocketType ns3::Socket::GetSocketType() const [member function]
4025 cls.add_method('GetSocketType',
4026 'ns3::Socket::SocketType',
4027 [],
4028 is_pure_virtual=True, is_const=True, is_virtual=True)
4029 ## socket.h (module 'network'): uint32_t ns3::Socket::GetTxAvailable() const [member function]
4030 cls.add_method('GetTxAvailable',
4031 'uint32_t',
4032 [],
4033 is_pure_virtual=True, is_const=True, is_virtual=True)
4034 ## socket.h (module 'network'): bool ns3::Socket::IsRecvPktInfo() const [member function]
4035 cls.add_method('IsRecvPktInfo',
4036 'bool',
4037 [],
4038 is_const=True)
4039 ## socket.h (module 'network'): int ns3::Socket::Listen() [member function]
4040 cls.add_method('Listen',
4041 'int',
4042 [],
4043 is_pure_virtual=True, is_virtual=True)
4044 ## socket.h (module 'network'): ns3::Ptr<ns3::Packet> ns3::Socket::Recv(uint32_t maxSize, uint32_t flags) [member function]
4045 cls.add_method('Recv',
4046 'ns3::Ptr< ns3::Packet >',
4047 [param('uint32_t', 'maxSize'), param('uint32_t', 'flags')],
4048 is_pure_virtual=True, is_virtual=True)
4049 ## socket.h (module 'network'): ns3::Ptr<ns3::Packet> ns3::Socket::Recv() [member function]
4050 cls.add_method('Recv',
4051 'ns3::Ptr< ns3::Packet >',
4052 [])
4053 ## socket.h (module 'network'): int ns3::Socket::Recv(uint8_t * buf, uint32_t size, uint32_t flags) [member function]
4054 cls.add_method('Recv',
4055 'int',
4056 [param('uint8_t *', 'buf'), param('uint32_t', 'size'), param('uint32_t', 'flags')])
4057 ## socket.h (module 'network'): ns3::Ptr<ns3::Packet> ns3::Socket::RecvFrom(uint32_t maxSize, uint32_t flags, ns3::Address & fromAddress) [member function]
4058 cls.add_method('RecvFrom',
4059 'ns3::Ptr< ns3::Packet >',
4060 [param('uint32_t', 'maxSize'), param('uint32_t', 'flags'), param('ns3::Address &', 'fromAddress')],
4061 is_pure_virtual=True, is_virtual=True)
4062 ## socket.h (module 'network'): ns3::Ptr<ns3::Packet> ns3::Socket::RecvFrom(ns3::Address & fromAddress) [member function]
4063 cls.add_method('RecvFrom',
4064 'ns3::Ptr< ns3::Packet >',
4065 [param('ns3::Address &', 'fromAddress')])
4066 ## socket.h (module 'network'): int ns3::Socket::RecvFrom(uint8_t * buf, uint32_t size, uint32_t flags, ns3::Address & fromAddress) [member function]
4067 cls.add_method('RecvFrom',
4068 'int',
4069 [param('uint8_t *', 'buf'), param('uint32_t', 'size'), param('uint32_t', 'flags'), param('ns3::Address &', 'fromAddress')])
4070 ## socket.h (module 'network'): int ns3::Socket::Send(ns3::Ptr<ns3::Packet> p, uint32_t flags) [member function]
4071 cls.add_method('Send',
4072 'int',
4073 [param('ns3::Ptr< ns3::Packet >', 'p'), param('uint32_t', 'flags')],
4074 is_pure_virtual=True, is_virtual=True)
4075 ## socket.h (module 'network'): int ns3::Socket::Send(ns3::Ptr<ns3::Packet> p) [member function]
4076 cls.add_method('Send',
4077 'int',
4078 [param('ns3::Ptr< ns3::Packet >', 'p')])
4079 ## socket.h (module 'network'): int ns3::Socket::Send(uint8_t const * buf, uint32_t size, uint32_t flags) [member function]
4080 cls.add_method('Send',
4081 'int',
4082 [param('uint8_t const *', 'buf'), param('uint32_t', 'size'), param('uint32_t', 'flags')])
4083 ## socket.h (module 'network'): int ns3::Socket::SendTo(ns3::Ptr<ns3::Packet> p, uint32_t flags, ns3::Address const & toAddress) [member function]
4084 cls.add_method('SendTo',
4085 'int',
4086 [param('ns3::Ptr< ns3::Packet >', 'p'), param('uint32_t', 'flags'), param('ns3::Address const &', 'toAddress')],
4087 is_pure_virtual=True, is_virtual=True)
4088 ## socket.h (module 'network'): int ns3::Socket::SendTo(uint8_t const * buf, uint32_t size, uint32_t flags, ns3::Address const & address) [member function]
4089 cls.add_method('SendTo',
4090 'int',
4091 [param('uint8_t const *', 'buf'), param('uint32_t', 'size'), param('uint32_t', 'flags'), param('ns3::Address const &', 'address')])
4092 ## socket.h (module 'network'): void ns3::Socket::SetAcceptCallback(ns3::Callback<bool, ns3::Ptr<ns3::Socket>, ns3::Address const&, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> connectionRequest, ns3::Callback<void, ns3::Ptr<ns3::Socket>, ns3::Address const&, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> newConnectionCreated) [member function]
4093 cls.add_method('SetAcceptCallback',
4094 'void',
4095 [param('ns3::Callback< bool, ns3::Ptr< ns3::Socket >, ns3::Address const &, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'connectionRequest'), param('ns3::Callback< void, ns3::Ptr< ns3::Socket >, ns3::Address const &, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'newConnectionCreated')])
4096 ## socket.h (module 'network'): bool ns3::Socket::SetAllowBroadcast(bool allowBroadcast) [member function]
4097 cls.add_method('SetAllowBroadcast',
4098 'bool',
4099 [param('bool', 'allowBroadcast')],
4100 is_pure_virtual=True, is_virtual=True)
4101 ## socket.h (module 'network'): void ns3::Socket::SetCloseCallbacks(ns3::Callback<void, ns3::Ptr<ns3::Socket>, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> normalClose, ns3::Callback<void, ns3::Ptr<ns3::Socket>, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> errorClose) [member function]
4102 cls.add_method('SetCloseCallbacks',
4103 'void',
4104 [param('ns3::Callback< void, ns3::Ptr< ns3::Socket >, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'normalClose'), param('ns3::Callback< void, ns3::Ptr< ns3::Socket >, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'errorClose')])
4105 ## socket.h (module 'network'): void ns3::Socket::SetConnectCallback(ns3::Callback<void, ns3::Ptr<ns3::Socket>, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> connectionSucceeded, ns3::Callback<void, ns3::Ptr<ns3::Socket>, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> connectionFailed) [member function]
4106 cls.add_method('SetConnectCallback',
4107 'void',
4108 [param('ns3::Callback< void, ns3::Ptr< ns3::Socket >, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'connectionSucceeded'), param('ns3::Callback< void, ns3::Ptr< ns3::Socket >, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'connectionFailed')])
4109 ## socket.h (module 'network'): void ns3::Socket::SetDataSentCallback(ns3::Callback<void, ns3::Ptr<ns3::Socket>, unsigned int, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> dataSent) [member function]
4110 cls.add_method('SetDataSentCallback',
4111 'void',
4112 [param('ns3::Callback< void, ns3::Ptr< ns3::Socket >, unsigned int, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'dataSent')])
4113 ## socket.h (module 'network'): void ns3::Socket::SetRecvCallback(ns3::Callback<void, ns3::Ptr<ns3::Socket>, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> arg0) [member function]
4114 cls.add_method('SetRecvCallback',
4115 'void',
4116 [param('ns3::Callback< void, ns3::Ptr< ns3::Socket >, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'arg0')])
4117 ## socket.h (module 'network'): void ns3::Socket::SetRecvPktInfo(bool flag) [member function]
4118 cls.add_method('SetRecvPktInfo',
4119 'void',
4120 [param('bool', 'flag')])
4121 ## socket.h (module 'network'): void ns3::Socket::SetSendCallback(ns3::Callback<void, ns3::Ptr<ns3::Socket>, unsigned int, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> sendCb) [member function]
4122 cls.add_method('SetSendCallback',
4123 'void',
4124 [param('ns3::Callback< void, ns3::Ptr< ns3::Socket >, unsigned int, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'sendCb')])
4125 ## socket.h (module 'network'): int ns3::Socket::ShutdownRecv() [member function]
4126 cls.add_method('ShutdownRecv',
4127 'int',
4128 [],
4129 is_pure_virtual=True, is_virtual=True)
4130 ## socket.h (module 'network'): int ns3::Socket::ShutdownSend() [member function]
4131 cls.add_method('ShutdownSend',
4132 'int',
4133 [],
4134 is_pure_virtual=True, is_virtual=True)
4135 ## socket.h (module 'network'): void ns3::Socket::DoDispose() [member function]
4136 cls.add_method('DoDispose',
4137 'void',
4138 [],
4139 visibility='protected', is_virtual=True)
4140 ## socket.h (module 'network'): void ns3::Socket::NotifyConnectionFailed() [member function]
4141 cls.add_method('NotifyConnectionFailed',
4142 'void',
4143 [],
4144 visibility='protected')
4145 ## socket.h (module 'network'): bool ns3::Socket::NotifyConnectionRequest(ns3::Address const & from) [member function]
4146 cls.add_method('NotifyConnectionRequest',
4147 'bool',
4148 [param('ns3::Address const &', 'from')],
4149 visibility='protected')
4150 ## socket.h (module 'network'): void ns3::Socket::NotifyConnectionSucceeded() [member function]
4151 cls.add_method('NotifyConnectionSucceeded',
4152 'void',
4153 [],
4154 visibility='protected')
4155 ## socket.h (module 'network'): void ns3::Socket::NotifyDataRecv() [member function]
4156 cls.add_method('NotifyDataRecv',
4157 'void',
4158 [],
4159 visibility='protected')
4160 ## socket.h (module 'network'): void ns3::Socket::NotifyDataSent(uint32_t size) [member function]
4161 cls.add_method('NotifyDataSent',
4162 'void',
4163 [param('uint32_t', 'size')],
4164 visibility='protected')
4165 ## socket.h (module 'network'): void ns3::Socket::NotifyErrorClose() [member function]
4166 cls.add_method('NotifyErrorClose',
4167 'void',
4168 [],
4169 visibility='protected')
4170 ## socket.h (module 'network'): void ns3::Socket::NotifyNewConnectionCreated(ns3::Ptr<ns3::Socket> socket, ns3::Address const & from) [member function]
4171 cls.add_method('NotifyNewConnectionCreated',
4172 'void',
4173 [param('ns3::Ptr< ns3::Socket >', 'socket'), param('ns3::Address const &', 'from')],
4174 visibility='protected')
4175 ## socket.h (module 'network'): void ns3::Socket::NotifyNormalClose() [member function]
4176 cls.add_method('NotifyNormalClose',
4177 'void',
4178 [],
4179 visibility='protected')
4180 ## socket.h (module 'network'): void ns3::Socket::NotifySend(uint32_t spaceAvailable) [member function]
4181 cls.add_method('NotifySend',
4182 'void',
4183 [param('uint32_t', 'spaceAvailable')],
4184 visibility='protected')
4185 return
4186
4187def register_Ns3Tag_methods(root_module, cls):
4188 cls.add_output_stream_operator()
4189 ## tag.h (module 'network'): ns3::Tag::Tag() [constructor]
4190 cls.add_constructor([])
4191 ## tag.h (module 'network'): ns3::Tag::Tag(ns3::Tag const & arg0) [copy constructor]
4192 cls.add_constructor([param('ns3::Tag const &', 'arg0')])
4193 ## tag.h (module 'network'): void ns3::Tag::Deserialize(ns3::TagBuffer i) [member function]
4194 cls.add_method('Deserialize',
4195 'void',
4196 [param('ns3::TagBuffer', 'i')],
4197 is_pure_virtual=True, is_virtual=True)
4198 ## tag.h (module 'network'): uint32_t ns3::Tag::GetSerializedSize() const [member function]
4199 cls.add_method('GetSerializedSize',
4200 'uint32_t',
4201 [],
4202 is_pure_virtual=True, is_const=True, is_virtual=True)
4203 ## tag.h (module 'network'): static ns3::TypeId ns3::Tag::GetTypeId() [member function]
4204 cls.add_method('GetTypeId',
4205 'ns3::TypeId',
4206 [],
4207 is_static=True)
4208 ## tag.h (module 'network'): void ns3::Tag::Print(std::ostream & os) const [member function]
4209 cls.add_method('Print',
4210 'void',
4211 [param('std::ostream &', 'os')],
4212 is_pure_virtual=True, is_const=True, is_virtual=True)
4213 ## tag.h (module 'network'): void ns3::Tag::Serialize(ns3::TagBuffer i) const [member function]
4214 cls.add_method('Serialize',
4215 'void',
4216 [param('ns3::TagBuffer', 'i')],
4217 is_pure_virtual=True, is_const=True, is_virtual=True)
4218 return
4219
Alexander Afanasyev381dea02011-11-03 08:33:26 -07004220def register_Ns3Time_methods(root_module, cls):
4221 cls.add_binary_comparison_operator('!=')
4222 cls.add_inplace_numeric_operator('+=', param('ns3::Time const &', 'right'))
4223 cls.add_inplace_numeric_operator('-=', param('ns3::Time const &', 'right'))
4224 cls.add_output_stream_operator()
Alexander Afanasyev4975f732011-12-20 17:52:19 -08004225 cls.add_binary_comparison_operator('<=')
Alexander Afanasyev381dea02011-11-03 08:33:26 -07004226 cls.add_binary_comparison_operator('==')
4227 cls.add_binary_comparison_operator('>=')
4228 cls.add_binary_numeric_operator('+', root_module['ns3::Time'], root_module['ns3::Time'], param('ns3::Time const &', 'right'))
4229 cls.add_binary_numeric_operator('-', root_module['ns3::Time'], root_module['ns3::Time'], param('ns3::Time const &', 'right'))
4230 cls.add_binary_comparison_operator('<')
4231 cls.add_binary_comparison_operator('>')
4232 ## nstime.h (module 'core'): ns3::Time::Time() [constructor]
4233 cls.add_constructor([])
4234 ## nstime.h (module 'core'): ns3::Time::Time(ns3::Time const & o) [copy constructor]
4235 cls.add_constructor([param('ns3::Time const &', 'o')])
4236 ## nstime.h (module 'core'): ns3::Time::Time(double v) [constructor]
4237 cls.add_constructor([param('double', 'v')])
4238 ## nstime.h (module 'core'): ns3::Time::Time(int v) [constructor]
4239 cls.add_constructor([param('int', 'v')])
4240 ## nstime.h (module 'core'): ns3::Time::Time(long int v) [constructor]
4241 cls.add_constructor([param('long int', 'v')])
4242 ## nstime.h (module 'core'): ns3::Time::Time(long long int v) [constructor]
4243 cls.add_constructor([param('long long int', 'v')])
4244 ## nstime.h (module 'core'): ns3::Time::Time(unsigned int v) [constructor]
4245 cls.add_constructor([param('unsigned int', 'v')])
4246 ## nstime.h (module 'core'): ns3::Time::Time(long unsigned int v) [constructor]
4247 cls.add_constructor([param('long unsigned int', 'v')])
4248 ## nstime.h (module 'core'): ns3::Time::Time(long long unsigned int v) [constructor]
4249 cls.add_constructor([param('long long unsigned int', 'v')])
4250 ## nstime.h (module 'core'): ns3::Time::Time(std::string const & s) [constructor]
4251 cls.add_constructor([param('std::string const &', 's')])
4252 ## nstime.h (module 'core'): ns3::Time::Time(ns3::int64x64_t const & value) [constructor]
4253 cls.add_constructor([param('ns3::int64x64_t const &', 'value')])
4254 ## nstime.h (module 'core'): int ns3::Time::Compare(ns3::Time const & o) const [member function]
4255 cls.add_method('Compare',
4256 'int',
4257 [param('ns3::Time const &', 'o')],
4258 is_const=True)
4259 ## nstime.h (module 'core'): static ns3::Time ns3::Time::From(ns3::int64x64_t const & from, ns3::Time::Unit timeUnit) [member function]
4260 cls.add_method('From',
4261 'ns3::Time',
4262 [param('ns3::int64x64_t const &', 'from'), param('ns3::Time::Unit', 'timeUnit')],
4263 is_static=True)
4264 ## nstime.h (module 'core'): static ns3::Time ns3::Time::From(ns3::int64x64_t const & value) [member function]
4265 cls.add_method('From',
4266 'ns3::Time',
4267 [param('ns3::int64x64_t const &', 'value')],
4268 is_static=True)
4269 ## nstime.h (module 'core'): static ns3::Time ns3::Time::FromDouble(double value, ns3::Time::Unit timeUnit) [member function]
4270 cls.add_method('FromDouble',
4271 'ns3::Time',
4272 [param('double', 'value'), param('ns3::Time::Unit', 'timeUnit')],
4273 is_static=True)
4274 ## nstime.h (module 'core'): static ns3::Time ns3::Time::FromInteger(uint64_t value, ns3::Time::Unit timeUnit) [member function]
4275 cls.add_method('FromInteger',
4276 'ns3::Time',
4277 [param('uint64_t', 'value'), param('ns3::Time::Unit', 'timeUnit')],
4278 is_static=True)
4279 ## nstime.h (module 'core'): double ns3::Time::GetDouble() const [member function]
4280 cls.add_method('GetDouble',
4281 'double',
4282 [],
4283 is_const=True)
4284 ## nstime.h (module 'core'): int64_t ns3::Time::GetFemtoSeconds() const [member function]
4285 cls.add_method('GetFemtoSeconds',
4286 'int64_t',
4287 [],
4288 is_const=True)
4289 ## nstime.h (module 'core'): int64_t ns3::Time::GetInteger() const [member function]
4290 cls.add_method('GetInteger',
4291 'int64_t',
4292 [],
4293 is_const=True)
4294 ## nstime.h (module 'core'): int64_t ns3::Time::GetMicroSeconds() const [member function]
4295 cls.add_method('GetMicroSeconds',
4296 'int64_t',
4297 [],
4298 is_const=True)
4299 ## nstime.h (module 'core'): int64_t ns3::Time::GetMilliSeconds() const [member function]
4300 cls.add_method('GetMilliSeconds',
4301 'int64_t',
4302 [],
4303 is_const=True)
4304 ## nstime.h (module 'core'): int64_t ns3::Time::GetNanoSeconds() const [member function]
4305 cls.add_method('GetNanoSeconds',
4306 'int64_t',
4307 [],
4308 is_const=True)
4309 ## nstime.h (module 'core'): int64_t ns3::Time::GetPicoSeconds() const [member function]
4310 cls.add_method('GetPicoSeconds',
4311 'int64_t',
4312 [],
4313 is_const=True)
4314 ## nstime.h (module 'core'): static ns3::Time::Unit ns3::Time::GetResolution() [member function]
4315 cls.add_method('GetResolution',
4316 'ns3::Time::Unit',
4317 [],
4318 is_static=True)
4319 ## nstime.h (module 'core'): double ns3::Time::GetSeconds() const [member function]
4320 cls.add_method('GetSeconds',
4321 'double',
4322 [],
4323 is_const=True)
4324 ## nstime.h (module 'core'): int64_t ns3::Time::GetTimeStep() const [member function]
4325 cls.add_method('GetTimeStep',
4326 'int64_t',
4327 [],
4328 is_const=True)
4329 ## nstime.h (module 'core'): bool ns3::Time::IsNegative() const [member function]
4330 cls.add_method('IsNegative',
4331 'bool',
4332 [],
4333 is_const=True)
4334 ## nstime.h (module 'core'): bool ns3::Time::IsPositive() const [member function]
4335 cls.add_method('IsPositive',
4336 'bool',
4337 [],
4338 is_const=True)
4339 ## nstime.h (module 'core'): bool ns3::Time::IsStrictlyNegative() const [member function]
4340 cls.add_method('IsStrictlyNegative',
4341 'bool',
4342 [],
4343 is_const=True)
4344 ## nstime.h (module 'core'): bool ns3::Time::IsStrictlyPositive() const [member function]
4345 cls.add_method('IsStrictlyPositive',
4346 'bool',
4347 [],
4348 is_const=True)
4349 ## nstime.h (module 'core'): bool ns3::Time::IsZero() const [member function]
4350 cls.add_method('IsZero',
4351 'bool',
4352 [],
4353 is_const=True)
4354 ## nstime.h (module 'core'): static void ns3::Time::SetResolution(ns3::Time::Unit resolution) [member function]
4355 cls.add_method('SetResolution',
4356 'void',
4357 [param('ns3::Time::Unit', 'resolution')],
4358 is_static=True)
4359 ## nstime.h (module 'core'): ns3::int64x64_t ns3::Time::To(ns3::Time::Unit timeUnit) const [member function]
4360 cls.add_method('To',
4361 'ns3::int64x64_t',
4362 [param('ns3::Time::Unit', 'timeUnit')],
4363 is_const=True)
4364 ## nstime.h (module 'core'): double ns3::Time::ToDouble(ns3::Time::Unit timeUnit) const [member function]
4365 cls.add_method('ToDouble',
4366 'double',
4367 [param('ns3::Time::Unit', 'timeUnit')],
4368 is_const=True)
4369 ## nstime.h (module 'core'): int64_t ns3::Time::ToInteger(ns3::Time::Unit timeUnit) const [member function]
4370 cls.add_method('ToInteger',
4371 'int64_t',
4372 [param('ns3::Time::Unit', 'timeUnit')],
4373 is_const=True)
4374 return
4375
4376def register_Ns3TopologyReader_methods(root_module, cls):
4377 ## topology-reader.h (module 'topology-read'): ns3::TopologyReader::TopologyReader() [constructor]
4378 cls.add_constructor([])
4379 ## topology-reader.h (module 'topology-read'): void ns3::TopologyReader::AddLink(ns3::TopologyReader::Link link) [member function]
4380 cls.add_method('AddLink',
4381 'void',
4382 [param('ns3::TopologyReader::Link', 'link')])
4383 ## topology-reader.h (module 'topology-read'): std::string ns3::TopologyReader::GetFileName() const [member function]
4384 cls.add_method('GetFileName',
4385 'std::string',
4386 [],
4387 is_const=True)
Alexander Afanasyev381dea02011-11-03 08:33:26 -07004388 ## topology-reader.h (module 'topology-read'): std::_List_const_iterator<ns3::TopologyReader::Link> ns3::TopologyReader::LinksBegin() const [member function]
4389 cls.add_method('LinksBegin',
4390 'std::_List_const_iterator< ns3::TopologyReader::Link >',
4391 [],
4392 is_const=True)
4393 ## topology-reader.h (module 'topology-read'): bool ns3::TopologyReader::LinksEmpty() const [member function]
4394 cls.add_method('LinksEmpty',
4395 'bool',
4396 [],
4397 is_const=True)
4398 ## topology-reader.h (module 'topology-read'): std::_List_const_iterator<ns3::TopologyReader::Link> ns3::TopologyReader::LinksEnd() const [member function]
4399 cls.add_method('LinksEnd',
4400 'std::_List_const_iterator< ns3::TopologyReader::Link >',
4401 [],
4402 is_const=True)
4403 ## topology-reader.h (module 'topology-read'): int ns3::TopologyReader::LinksSize() const [member function]
4404 cls.add_method('LinksSize',
4405 'int',
4406 [],
4407 is_const=True)
4408 ## topology-reader.h (module 'topology-read'): ns3::NodeContainer ns3::TopologyReader::Read() [member function]
4409 cls.add_method('Read',
4410 'ns3::NodeContainer',
4411 [],
4412 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyev07827182011-12-13 01:07:32 -08004413 ## topology-reader.h (module 'topology-read'): void ns3::TopologyReader::SetFileName(std::string const & fileName) [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07004414 cls.add_method('SetFileName',
4415 'void',
Alexander Afanasyev07827182011-12-13 01:07:32 -08004416 [param('std::string const &', 'fileName')])
Alexander Afanasyev381dea02011-11-03 08:33:26 -07004417 return
4418
4419def register_Ns3TopologyReaderLink_methods(root_module, cls):
4420 ## topology-reader.h (module 'topology-read'): ns3::TopologyReader::Link::Link(ns3::TopologyReader::Link const & arg0) [copy constructor]
4421 cls.add_constructor([param('ns3::TopologyReader::Link const &', 'arg0')])
Alexander Afanasyev6bff0df2012-01-19 17:51:52 -08004422 ## topology-reader.h (module 'topology-read'): ns3::TopologyReader::Link::Link() [constructor]
4423 cls.add_constructor([])
Alexander Afanasyev07827182011-12-13 01:07:32 -08004424 ## topology-reader.h (module 'topology-read'): ns3::TopologyReader::Link::Link(ns3::Ptr<ns3::Node> fromPtr, std::string const & fromName, ns3::Ptr<ns3::Node> toPtr, std::string const & toName) [constructor]
4425 cls.add_constructor([param('ns3::Ptr< ns3::Node >', 'fromPtr'), param('std::string const &', 'fromName'), param('ns3::Ptr< ns3::Node >', 'toPtr'), param('std::string const &', 'toName')])
Alexander Afanasyev381dea02011-11-03 08:33:26 -07004426 ## topology-reader.h (module 'topology-read'): std::_Rb_tree_const_iterator<std::pair<const std::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::basic_string<char, std::char_traits<char>, std::allocator<char> > > > ns3::TopologyReader::Link::AttributesBegin() [member function]
4427 cls.add_method('AttributesBegin',
4428 'std::_Rb_tree_const_iterator< std::pair< std::basic_string< char, std::char_traits< char >, std::allocator< char > > const, std::basic_string< char, std::char_traits< char >, std::allocator< char > > > >',
4429 [])
4430 ## topology-reader.h (module 'topology-read'): std::_Rb_tree_const_iterator<std::pair<const std::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::basic_string<char, std::char_traits<char>, std::allocator<char> > > > ns3::TopologyReader::Link::AttributesEnd() [member function]
4431 cls.add_method('AttributesEnd',
4432 'std::_Rb_tree_const_iterator< std::pair< std::basic_string< char, std::char_traits< char >, std::allocator< char > > const, std::basic_string< char, std::char_traits< char >, std::allocator< char > > > >',
4433 [])
Alexander Afanasyev07827182011-12-13 01:07:32 -08004434 ## topology-reader.h (module 'topology-read'): std::string ns3::TopologyReader::Link::GetAttribute(std::string const & name) const [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07004435 cls.add_method('GetAttribute',
4436 'std::string',
Alexander Afanasyev07827182011-12-13 01:07:32 -08004437 [param('std::string const &', 'name')],
Alexander Afanasyev381dea02011-11-03 08:33:26 -07004438 is_const=True)
Alexander Afanasyev07827182011-12-13 01:07:32 -08004439 ## topology-reader.h (module 'topology-read'): bool ns3::TopologyReader::Link::GetAttributeFailSafe(std::string const & name, std::string & value) const [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07004440 cls.add_method('GetAttributeFailSafe',
4441 'bool',
Alexander Afanasyev07827182011-12-13 01:07:32 -08004442 [param('std::string const &', 'name'), param('std::string &', 'value')],
4443 is_const=True)
4444 ## topology-reader.h (module 'topology-read'): ns3::Ptr<ns3::NetDevice> ns3::TopologyReader::Link::GetFromNetDevice() const [member function]
4445 cls.add_method('GetFromNetDevice',
4446 'ns3::Ptr< ns3::NetDevice >',
4447 [],
Alexander Afanasyev381dea02011-11-03 08:33:26 -07004448 is_const=True)
4449 ## topology-reader.h (module 'topology-read'): ns3::Ptr<ns3::Node> ns3::TopologyReader::Link::GetFromNode() const [member function]
4450 cls.add_method('GetFromNode',
4451 'ns3::Ptr< ns3::Node >',
4452 [],
4453 is_const=True)
4454 ## topology-reader.h (module 'topology-read'): std::string ns3::TopologyReader::Link::GetFromNodeName() const [member function]
4455 cls.add_method('GetFromNodeName',
4456 'std::string',
4457 [],
4458 is_const=True)
Alexander Afanasyev07827182011-12-13 01:07:32 -08004459 ## topology-reader.h (module 'topology-read'): ns3::Ptr<ns3::NetDevice> ns3::TopologyReader::Link::GetToNetDevice() const [member function]
4460 cls.add_method('GetToNetDevice',
4461 'ns3::Ptr< ns3::NetDevice >',
4462 [],
4463 is_const=True)
Alexander Afanasyev381dea02011-11-03 08:33:26 -07004464 ## topology-reader.h (module 'topology-read'): ns3::Ptr<ns3::Node> ns3::TopologyReader::Link::GetToNode() const [member function]
4465 cls.add_method('GetToNode',
4466 'ns3::Ptr< ns3::Node >',
4467 [],
4468 is_const=True)
4469 ## topology-reader.h (module 'topology-read'): std::string ns3::TopologyReader::Link::GetToNodeName() const [member function]
4470 cls.add_method('GetToNodeName',
4471 'std::string',
4472 [],
4473 is_const=True)
Alexander Afanasyev07827182011-12-13 01:07:32 -08004474 ## topology-reader.h (module 'topology-read'): void ns3::TopologyReader::Link::SetAttribute(std::string const & name, std::string const & value) [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07004475 cls.add_method('SetAttribute',
4476 'void',
Alexander Afanasyev07827182011-12-13 01:07:32 -08004477 [param('std::string const &', 'name'), param('std::string const &', 'value')])
4478 ## topology-reader.h (module 'topology-read'): void ns3::TopologyReader::Link::SetNetDevices(ns3::Ptr<ns3::NetDevice> from, ns3::Ptr<ns3::NetDevice> to) [member function]
4479 cls.add_method('SetNetDevices',
4480 'void',
4481 [param('ns3::Ptr< ns3::NetDevice >', 'from'), param('ns3::Ptr< ns3::NetDevice >', 'to')])
Alexander Afanasyev381dea02011-11-03 08:33:26 -07004482 return
4483
4484def register_Ns3TraceSourceAccessor_methods(root_module, cls):
4485 ## trace-source-accessor.h (module 'core'): ns3::TraceSourceAccessor::TraceSourceAccessor(ns3::TraceSourceAccessor const & arg0) [copy constructor]
4486 cls.add_constructor([param('ns3::TraceSourceAccessor const &', 'arg0')])
4487 ## trace-source-accessor.h (module 'core'): ns3::TraceSourceAccessor::TraceSourceAccessor() [constructor]
4488 cls.add_constructor([])
4489 ## trace-source-accessor.h (module 'core'): bool ns3::TraceSourceAccessor::Connect(ns3::ObjectBase * obj, std::string context, ns3::CallbackBase const & cb) const [member function]
4490 cls.add_method('Connect',
4491 'bool',
4492 [param('ns3::ObjectBase *', 'obj', transfer_ownership=False), param('std::string', 'context'), param('ns3::CallbackBase const &', 'cb')],
4493 is_pure_virtual=True, is_const=True, is_virtual=True)
4494 ## trace-source-accessor.h (module 'core'): bool ns3::TraceSourceAccessor::ConnectWithoutContext(ns3::ObjectBase * obj, ns3::CallbackBase const & cb) const [member function]
4495 cls.add_method('ConnectWithoutContext',
4496 'bool',
4497 [param('ns3::ObjectBase *', 'obj', transfer_ownership=False), param('ns3::CallbackBase const &', 'cb')],
4498 is_pure_virtual=True, is_const=True, is_virtual=True)
4499 ## trace-source-accessor.h (module 'core'): bool ns3::TraceSourceAccessor::Disconnect(ns3::ObjectBase * obj, std::string context, ns3::CallbackBase const & cb) const [member function]
4500 cls.add_method('Disconnect',
4501 'bool',
4502 [param('ns3::ObjectBase *', 'obj', transfer_ownership=False), param('std::string', 'context'), param('ns3::CallbackBase const &', 'cb')],
4503 is_pure_virtual=True, is_const=True, is_virtual=True)
4504 ## trace-source-accessor.h (module 'core'): bool ns3::TraceSourceAccessor::DisconnectWithoutContext(ns3::ObjectBase * obj, ns3::CallbackBase const & cb) const [member function]
4505 cls.add_method('DisconnectWithoutContext',
4506 'bool',
4507 [param('ns3::ObjectBase *', 'obj', transfer_ownership=False), param('ns3::CallbackBase const &', 'cb')],
4508 is_pure_virtual=True, is_const=True, is_virtual=True)
4509 return
4510
4511def register_Ns3Trailer_methods(root_module, cls):
4512 cls.add_output_stream_operator()
4513 ## trailer.h (module 'network'): ns3::Trailer::Trailer() [constructor]
4514 cls.add_constructor([])
4515 ## trailer.h (module 'network'): ns3::Trailer::Trailer(ns3::Trailer const & arg0) [copy constructor]
4516 cls.add_constructor([param('ns3::Trailer const &', 'arg0')])
4517 ## trailer.h (module 'network'): uint32_t ns3::Trailer::Deserialize(ns3::Buffer::Iterator end) [member function]
4518 cls.add_method('Deserialize',
4519 'uint32_t',
4520 [param('ns3::Buffer::Iterator', 'end')],
4521 is_pure_virtual=True, is_virtual=True)
4522 ## trailer.h (module 'network'): uint32_t ns3::Trailer::GetSerializedSize() const [member function]
4523 cls.add_method('GetSerializedSize',
4524 'uint32_t',
4525 [],
4526 is_pure_virtual=True, is_const=True, is_virtual=True)
4527 ## trailer.h (module 'network'): static ns3::TypeId ns3::Trailer::GetTypeId() [member function]
4528 cls.add_method('GetTypeId',
4529 'ns3::TypeId',
4530 [],
4531 is_static=True)
4532 ## trailer.h (module 'network'): void ns3::Trailer::Print(std::ostream & os) const [member function]
4533 cls.add_method('Print',
4534 'void',
4535 [param('std::ostream &', 'os')],
4536 is_pure_virtual=True, is_const=True, is_virtual=True)
4537 ## trailer.h (module 'network'): void ns3::Trailer::Serialize(ns3::Buffer::Iterator start) const [member function]
4538 cls.add_method('Serialize',
4539 'void',
4540 [param('ns3::Buffer::Iterator', 'start')],
4541 is_pure_virtual=True, is_const=True, is_virtual=True)
4542 return
4543
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08004544def register_Ns3WeightsPathStretchTag_methods(root_module, cls):
4545 ## ccnx-path-stretch-tag.h (module 'NDNabstraction'): ns3::WeightsPathStretchTag::WeightsPathStretchTag(ns3::WeightsPathStretchTag const & arg0) [copy constructor]
4546 cls.add_constructor([param('ns3::WeightsPathStretchTag const &', 'arg0')])
4547 ## ccnx-path-stretch-tag.h (module 'NDNabstraction'): ns3::WeightsPathStretchTag::WeightsPathStretchTag() [constructor]
4548 cls.add_constructor([])
4549 ## ccnx-path-stretch-tag.h (module 'NDNabstraction'): void ns3::WeightsPathStretchTag::AddPathInfo(ns3::Ptr<ns3::Node> node, uint32_t weight) [member function]
4550 cls.add_method('AddPathInfo',
4551 'void',
4552 [param('ns3::Ptr< ns3::Node >', 'node'), param('uint32_t', 'weight')])
4553 ## ccnx-path-stretch-tag.h (module 'NDNabstraction'): void ns3::WeightsPathStretchTag::Deserialize(ns3::TagBuffer i) [member function]
4554 cls.add_method('Deserialize',
4555 'void',
4556 [param('ns3::TagBuffer', 'i')],
4557 is_virtual=True)
Alexander Afanasyev6bff0df2012-01-19 17:51:52 -08004558 ## ccnx-path-stretch-tag.h (module 'NDNabstraction'): ns3::Ptr<ns3::Node> ns3::WeightsPathStretchTag::GetDestinationNode() const [member function]
4559 cls.add_method('GetDestinationNode',
4560 'ns3::Ptr< ns3::Node >',
4561 [],
4562 is_const=True)
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08004563 ## ccnx-path-stretch-tag.h (module 'NDNabstraction'): std::list<ns3::WeightsPathStretchTag::NodeWeightPair, std::allocator<ns3::WeightsPathStretchTag::NodeWeightPair> > const & ns3::WeightsPathStretchTag::GetInfos() const [member function]
4564 cls.add_method('GetInfos',
4565 'std::list< ns3::WeightsPathStretchTag::NodeWeightPair > const &',
4566 [],
4567 is_const=True)
4568 ## ccnx-path-stretch-tag.h (module 'NDNabstraction'): uint32_t ns3::WeightsPathStretchTag::GetSerializedSize() const [member function]
4569 cls.add_method('GetSerializedSize',
4570 'uint32_t',
4571 [],
4572 is_const=True, is_virtual=True)
4573 ## ccnx-path-stretch-tag.h (module 'NDNabstraction'): ns3::Ptr<ns3::Node> ns3::WeightsPathStretchTag::GetSourceNode() const [member function]
4574 cls.add_method('GetSourceNode',
4575 'ns3::Ptr< ns3::Node >',
4576 [],
4577 is_const=True)
Alexander Afanasyev6bff0df2012-01-19 17:51:52 -08004578 ## ccnx-path-stretch-tag.h (module 'NDNabstraction'): uint64_t ns3::WeightsPathStretchTag::GetTotalWeight() const [member function]
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08004579 cls.add_method('GetTotalWeight',
Alexander Afanasyev6bff0df2012-01-19 17:51:52 -08004580 'uint64_t',
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08004581 [],
4582 is_const=True)
4583 ## ccnx-path-stretch-tag.h (module 'NDNabstraction'): static ns3::TypeId ns3::WeightsPathStretchTag::GetTypeId() [member function]
4584 cls.add_method('GetTypeId',
4585 'ns3::TypeId',
4586 [],
4587 is_static=True)
4588 ## ccnx-path-stretch-tag.h (module 'NDNabstraction'): void ns3::WeightsPathStretchTag::Print(std::ostream & os) const [member function]
4589 cls.add_method('Print',
4590 'void',
4591 [param('std::ostream &', 'os')],
4592 is_const=True, is_virtual=True)
4593 ## ccnx-path-stretch-tag.h (module 'NDNabstraction'): void ns3::WeightsPathStretchTag::Serialize(ns3::TagBuffer i) const [member function]
4594 cls.add_method('Serialize',
4595 'void',
4596 [param('ns3::TagBuffer', 'i')],
4597 is_const=True, is_virtual=True)
4598 return
4599
4600def register_Ns3WeightsPathStretchTagNodeWeightPair_methods(root_module, cls):
4601 ## ccnx-path-stretch-tag.h (module 'NDNabstraction'): ns3::WeightsPathStretchTag::NodeWeightPair::NodeWeightPair(ns3::WeightsPathStretchTag::NodeWeightPair const & arg0) [copy constructor]
4602 cls.add_constructor([param('ns3::WeightsPathStretchTag::NodeWeightPair const &', 'arg0')])
4603 ## ccnx-path-stretch-tag.h (module 'NDNabstraction'): ns3::WeightsPathStretchTag::NodeWeightPair::NodeWeightPair() [constructor]
4604 cls.add_constructor([])
4605 ## ccnx-path-stretch-tag.h (module 'NDNabstraction'): ns3::WeightsPathStretchTag::NodeWeightPair::NodeWeightPair(ns3::Ptr<ns3::Node> _node, uint32_t _weight) [constructor]
4606 cls.add_constructor([param('ns3::Ptr< ns3::Node >', '_node'), param('uint32_t', '_weight')])
4607 ## ccnx-path-stretch-tag.h (module 'NDNabstraction'): ns3::WeightsPathStretchTag::NodeWeightPair::node [variable]
4608 cls.add_instance_attribute('node', 'ns3::Ptr< ns3::Node >', is_const=False)
4609 ## ccnx-path-stretch-tag.h (module 'NDNabstraction'): ns3::WeightsPathStretchTag::NodeWeightPair::weight [variable]
4610 cls.add_instance_attribute('weight', 'uint32_t', is_const=False)
4611 return
4612
4613def register_Ns3WindowTracer_methods(root_module, cls):
4614 ## ccnx-consumer-window-tracer.h (module 'NDNabstraction'): ns3::WindowTracer::WindowTracer(ns3::WindowTracer const & arg0) [copy constructor]
4615 cls.add_constructor([param('ns3::WindowTracer const &', 'arg0')])
4616 ## ccnx-consumer-window-tracer.h (module 'NDNabstraction'): ns3::WindowTracer::WindowTracer(std::ostream & os, ns3::Ptr<ns3::Node> node, std::string const & appId="*") [constructor]
4617 cls.add_constructor([param('std::ostream &', 'os'), param('ns3::Ptr< ns3::Node >', 'node'), param('std::string const &', 'appId', default_value='"*"')])
4618 ## ccnx-consumer-window-tracer.h (module 'NDNabstraction'): static void ns3::WindowTracer::PrintHeader(std::ostream & os) [member function]
4619 cls.add_method('PrintHeader',
4620 'void',
4621 [param('std::ostream &', 'os')],
4622 is_static=True)
4623 ## ccnx-consumer-window-tracer.h (module 'NDNabstraction'): void ns3::WindowTracer::OnWindowChange(std::string context, uint32_t oldValue, uint32_t newValue) [member function]
4624 cls.add_method('OnWindowChange',
4625 'void',
4626 [param('std::string', 'context'), param('uint32_t', 'oldValue'), param('uint32_t', 'newValue')],
4627 is_virtual=True)
4628 return
4629
Alexander Afanasyev381dea02011-11-03 08:33:26 -07004630def register_Ns3AnnotatedTopologyReader_methods(root_module, cls):
Alexander Afanasyevb3e4b852011-12-23 15:58:20 -08004631 ## annotated-topology-reader.h (module 'NDNabstraction'): ns3::AnnotatedTopologyReader::AnnotatedTopologyReader(std::string const & path="", double scale=1.0e+0) [constructor]
4632 cls.add_constructor([param('std::string const &', 'path', default_value='""'), param('double', 'scale', default_value='1.0e+0')])
Alexander Afanasyev381dea02011-11-03 08:33:26 -07004633 ## annotated-topology-reader.h (module 'NDNabstraction'): ns3::NodeContainer ns3::AnnotatedTopologyReader::Read() [member function]
4634 cls.add_method('Read',
4635 'ns3::NodeContainer',
4636 [],
4637 is_virtual=True)
Alexander Afanasyevb3e4b852011-12-23 15:58:20 -08004638 ## annotated-topology-reader.h (module 'NDNabstraction'): ns3::NodeContainer ns3::AnnotatedTopologyReader::GetNodes() const [member function]
4639 cls.add_method('GetNodes',
4640 'ns3::NodeContainer',
4641 [],
4642 is_const=True)
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08004643 ## annotated-topology-reader.h (module 'NDNabstraction'): std::list<ns3::TopologyReader::Link, std::allocator<ns3::TopologyReader::Link> > const & ns3::AnnotatedTopologyReader::GetLinks() const [member function]
4644 cls.add_method('GetLinks',
4645 'std::list< ns3::TopologyReader::Link > const &',
4646 [],
4647 is_const=True)
Alexander Afanasyev07827182011-12-13 01:07:32 -08004648 ## annotated-topology-reader.h (module 'NDNabstraction'): void ns3::AnnotatedTopologyReader::AssignIpv4Addresses(ns3::Ipv4Address base) [member function]
4649 cls.add_method('AssignIpv4Addresses',
4650 'void',
4651 [param('ns3::Ipv4Address', 'base')])
Alexander Afanasyevae3b7c32011-12-13 13:20:06 -08004652 ## annotated-topology-reader.h (module 'NDNabstraction'): void ns3::AnnotatedTopologyReader::SetBoundingBox(double ulx, double uly, double lrx, double lry) [member function]
4653 cls.add_method('SetBoundingBox',
4654 'void',
4655 [param('double', 'ulx'), param('double', 'uly'), param('double', 'lrx'), param('double', 'lry')])
Alexander Afanasyev53872ce2011-12-16 13:17:18 -08004656 ## annotated-topology-reader.h (module 'NDNabstraction'): void ns3::AnnotatedTopologyReader::SetMobilityModel(std::string const & model) [member function]
4657 cls.add_method('SetMobilityModel',
4658 'void',
4659 [param('std::string const &', 'model')])
Alexander Afanasyev8e0d2812012-01-19 22:38:14 -08004660 ## annotated-topology-reader.h (module 'NDNabstraction'): void ns3::AnnotatedTopologyReader::ApplyOspfMetric() [member function]
4661 cls.add_method('ApplyOspfMetric',
4662 'void',
4663 [])
Alexander Afanasyev03d92e42012-02-01 21:06:53 -08004664 ## annotated-topology-reader.h (module 'NDNabstraction'): void ns3::AnnotatedTopologyReader::SavePositions(std::string const & file) const [member function]
4665 cls.add_method('SavePositions',
4666 'void',
4667 [param('std::string const &', 'file')],
4668 is_const=True)
Alexander Afanasyevae3b7c32011-12-13 13:20:06 -08004669 ## annotated-topology-reader.h (module 'NDNabstraction'): ns3::Ptr<ns3::Node> ns3::AnnotatedTopologyReader::CreateNode(std::string const name) [member function]
4670 cls.add_method('CreateNode',
4671 'ns3::Ptr< ns3::Node >',
4672 [param('std::string const', 'name')],
4673 visibility='protected')
4674 ## annotated-topology-reader.h (module 'NDNabstraction'): ns3::Ptr<ns3::Node> ns3::AnnotatedTopologyReader::CreateNode(std::string const name, double posX, double posY) [member function]
4675 cls.add_method('CreateNode',
4676 'ns3::Ptr< ns3::Node >',
4677 [param('std::string const', 'name'), param('double', 'posX'), param('double', 'posY')],
4678 visibility='protected')
Alexander Afanasyev53872ce2011-12-16 13:17:18 -08004679 ## annotated-topology-reader.h (module 'NDNabstraction'): void ns3::AnnotatedTopologyReader::ApplySettings() [member function]
4680 cls.add_method('ApplySettings',
4681 'void',
4682 [],
4683 visibility='protected')
Alexander Afanasyev381dea02011-11-03 08:33:26 -07004684 return
4685
4686def register_Ns3Application_methods(root_module, cls):
4687 ## application.h (module 'network'): ns3::Application::Application(ns3::Application const & arg0) [copy constructor]
4688 cls.add_constructor([param('ns3::Application const &', 'arg0')])
4689 ## application.h (module 'network'): ns3::Application::Application() [constructor]
4690 cls.add_constructor([])
4691 ## application.h (module 'network'): ns3::Ptr<ns3::Node> ns3::Application::GetNode() const [member function]
4692 cls.add_method('GetNode',
4693 'ns3::Ptr< ns3::Node >',
4694 [],
4695 is_const=True)
4696 ## application.h (module 'network'): static ns3::TypeId ns3::Application::GetTypeId() [member function]
4697 cls.add_method('GetTypeId',
4698 'ns3::TypeId',
4699 [],
4700 is_static=True)
4701 ## application.h (module 'network'): void ns3::Application::SetNode(ns3::Ptr<ns3::Node> node) [member function]
4702 cls.add_method('SetNode',
4703 'void',
4704 [param('ns3::Ptr< ns3::Node >', 'node')])
4705 ## application.h (module 'network'): void ns3::Application::SetStartTime(ns3::Time start) [member function]
4706 cls.add_method('SetStartTime',
4707 'void',
4708 [param('ns3::Time', 'start')])
4709 ## application.h (module 'network'): void ns3::Application::SetStopTime(ns3::Time stop) [member function]
4710 cls.add_method('SetStopTime',
4711 'void',
4712 [param('ns3::Time', 'stop')])
4713 ## application.h (module 'network'): void ns3::Application::DoDispose() [member function]
4714 cls.add_method('DoDispose',
4715 'void',
4716 [],
4717 visibility='protected', is_virtual=True)
4718 ## application.h (module 'network'): void ns3::Application::DoStart() [member function]
4719 cls.add_method('DoStart',
4720 'void',
4721 [],
4722 visibility='protected', is_virtual=True)
4723 ## application.h (module 'network'): void ns3::Application::StartApplication() [member function]
4724 cls.add_method('StartApplication',
4725 'void',
4726 [],
Alexander Afanasyev07827182011-12-13 01:07:32 -08004727 visibility='protected', is_virtual=True)
Alexander Afanasyev381dea02011-11-03 08:33:26 -07004728 ## application.h (module 'network'): void ns3::Application::StopApplication() [member function]
4729 cls.add_method('StopApplication',
4730 'void',
4731 [],
Alexander Afanasyev07827182011-12-13 01:07:32 -08004732 visibility='protected', is_virtual=True)
Alexander Afanasyev381dea02011-11-03 08:33:26 -07004733 return
4734
4735def register_Ns3AttributeAccessor_methods(root_module, cls):
4736 ## attribute.h (module 'core'): ns3::AttributeAccessor::AttributeAccessor(ns3::AttributeAccessor const & arg0) [copy constructor]
4737 cls.add_constructor([param('ns3::AttributeAccessor const &', 'arg0')])
4738 ## attribute.h (module 'core'): ns3::AttributeAccessor::AttributeAccessor() [constructor]
4739 cls.add_constructor([])
4740 ## attribute.h (module 'core'): bool ns3::AttributeAccessor::Get(ns3::ObjectBase const * object, ns3::AttributeValue & attribute) const [member function]
4741 cls.add_method('Get',
4742 'bool',
4743 [param('ns3::ObjectBase const *', 'object'), param('ns3::AttributeValue &', 'attribute')],
4744 is_pure_virtual=True, is_const=True, is_virtual=True)
4745 ## attribute.h (module 'core'): bool ns3::AttributeAccessor::HasGetter() const [member function]
4746 cls.add_method('HasGetter',
4747 'bool',
4748 [],
4749 is_pure_virtual=True, is_const=True, is_virtual=True)
4750 ## attribute.h (module 'core'): bool ns3::AttributeAccessor::HasSetter() const [member function]
4751 cls.add_method('HasSetter',
4752 'bool',
4753 [],
4754 is_pure_virtual=True, is_const=True, is_virtual=True)
4755 ## attribute.h (module 'core'): bool ns3::AttributeAccessor::Set(ns3::ObjectBase * object, ns3::AttributeValue const & value) const [member function]
4756 cls.add_method('Set',
4757 'bool',
4758 [param('ns3::ObjectBase *', 'object', transfer_ownership=False), param('ns3::AttributeValue const &', 'value')],
4759 is_pure_virtual=True, is_const=True, is_virtual=True)
4760 return
4761
4762def register_Ns3AttributeChecker_methods(root_module, cls):
4763 ## attribute.h (module 'core'): ns3::AttributeChecker::AttributeChecker(ns3::AttributeChecker const & arg0) [copy constructor]
4764 cls.add_constructor([param('ns3::AttributeChecker const &', 'arg0')])
4765 ## attribute.h (module 'core'): ns3::AttributeChecker::AttributeChecker() [constructor]
4766 cls.add_constructor([])
4767 ## attribute.h (module 'core'): bool ns3::AttributeChecker::Check(ns3::AttributeValue const & value) const [member function]
4768 cls.add_method('Check',
4769 'bool',
4770 [param('ns3::AttributeValue const &', 'value')],
4771 is_pure_virtual=True, is_const=True, is_virtual=True)
4772 ## attribute.h (module 'core'): bool ns3::AttributeChecker::Copy(ns3::AttributeValue const & source, ns3::AttributeValue & destination) const [member function]
4773 cls.add_method('Copy',
4774 'bool',
4775 [param('ns3::AttributeValue const &', 'source'), param('ns3::AttributeValue &', 'destination')],
4776 is_pure_virtual=True, is_const=True, is_virtual=True)
4777 ## attribute.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::AttributeChecker::Create() const [member function]
4778 cls.add_method('Create',
4779 'ns3::Ptr< ns3::AttributeValue >',
4780 [],
4781 is_pure_virtual=True, is_const=True, is_virtual=True)
4782 ## attribute.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::AttributeChecker::CreateValidValue(ns3::AttributeValue const & value) const [member function]
4783 cls.add_method('CreateValidValue',
4784 'ns3::Ptr< ns3::AttributeValue >',
4785 [param('ns3::AttributeValue const &', 'value')],
4786 is_const=True)
4787 ## attribute.h (module 'core'): std::string ns3::AttributeChecker::GetUnderlyingTypeInformation() const [member function]
4788 cls.add_method('GetUnderlyingTypeInformation',
4789 'std::string',
4790 [],
4791 is_pure_virtual=True, is_const=True, is_virtual=True)
4792 ## attribute.h (module 'core'): std::string ns3::AttributeChecker::GetValueTypeName() const [member function]
4793 cls.add_method('GetValueTypeName',
4794 'std::string',
4795 [],
4796 is_pure_virtual=True, is_const=True, is_virtual=True)
4797 ## attribute.h (module 'core'): bool ns3::AttributeChecker::HasUnderlyingTypeInformation() const [member function]
4798 cls.add_method('HasUnderlyingTypeInformation',
4799 'bool',
4800 [],
4801 is_pure_virtual=True, is_const=True, is_virtual=True)
4802 return
4803
4804def register_Ns3AttributeValue_methods(root_module, cls):
4805 ## attribute.h (module 'core'): ns3::AttributeValue::AttributeValue(ns3::AttributeValue const & arg0) [copy constructor]
4806 cls.add_constructor([param('ns3::AttributeValue const &', 'arg0')])
4807 ## attribute.h (module 'core'): ns3::AttributeValue::AttributeValue() [constructor]
4808 cls.add_constructor([])
4809 ## attribute.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::AttributeValue::Copy() const [member function]
4810 cls.add_method('Copy',
4811 'ns3::Ptr< ns3::AttributeValue >',
4812 [],
4813 is_pure_virtual=True, is_const=True, is_virtual=True)
4814 ## attribute.h (module 'core'): bool ns3::AttributeValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
4815 cls.add_method('DeserializeFromString',
4816 'bool',
4817 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4818 is_pure_virtual=True, is_virtual=True)
4819 ## attribute.h (module 'core'): std::string ns3::AttributeValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
4820 cls.add_method('SerializeToString',
4821 'std::string',
4822 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4823 is_pure_virtual=True, is_const=True, is_virtual=True)
4824 return
4825
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08004826def register_Ns3BatchesChecker_methods(root_module, cls):
4827 ## batches.h (module 'NDNabstraction'): ns3::BatchesChecker::BatchesChecker() [constructor]
4828 cls.add_constructor([])
4829 ## batches.h (module 'NDNabstraction'): ns3::BatchesChecker::BatchesChecker(ns3::BatchesChecker const & arg0) [copy constructor]
4830 cls.add_constructor([param('ns3::BatchesChecker const &', 'arg0')])
4831 return
4832
4833def register_Ns3BatchesValue_methods(root_module, cls):
4834 ## batches.h (module 'NDNabstraction'): ns3::BatchesValue::BatchesValue() [constructor]
4835 cls.add_constructor([])
4836 ## batches.h (module 'NDNabstraction'): ns3::BatchesValue::BatchesValue(ns3::BatchesValue const & arg0) [copy constructor]
4837 cls.add_constructor([param('ns3::BatchesValue const &', 'arg0')])
4838 ## batches.h (module 'NDNabstraction'): ns3::BatchesValue::BatchesValue(ns3::Batches const & value) [constructor]
4839 cls.add_constructor([param('ns3::Batches const &', 'value')])
4840 ## batches.h (module 'NDNabstraction'): ns3::Ptr<ns3::AttributeValue> ns3::BatchesValue::Copy() const [member function]
4841 cls.add_method('Copy',
4842 'ns3::Ptr< ns3::AttributeValue >',
4843 [],
4844 is_const=True, is_virtual=True)
4845 ## batches.h (module 'NDNabstraction'): bool ns3::BatchesValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
4846 cls.add_method('DeserializeFromString',
4847 'bool',
4848 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4849 is_virtual=True)
4850 ## batches.h (module 'NDNabstraction'): ns3::Batches ns3::BatchesValue::Get() const [member function]
4851 cls.add_method('Get',
4852 'ns3::Batches',
4853 [],
4854 is_const=True)
4855 ## batches.h (module 'NDNabstraction'): std::string ns3::BatchesValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
4856 cls.add_method('SerializeToString',
4857 'std::string',
4858 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4859 is_const=True, is_virtual=True)
4860 ## batches.h (module 'NDNabstraction'): void ns3::BatchesValue::Set(ns3::Batches const & value) [member function]
4861 cls.add_method('Set',
4862 'void',
4863 [param('ns3::Batches const &', 'value')])
4864 return
4865
Alexander Afanasyev381dea02011-11-03 08:33:26 -07004866def register_Ns3CallbackChecker_methods(root_module, cls):
4867 ## callback.h (module 'core'): ns3::CallbackChecker::CallbackChecker() [constructor]
4868 cls.add_constructor([])
4869 ## callback.h (module 'core'): ns3::CallbackChecker::CallbackChecker(ns3::CallbackChecker const & arg0) [copy constructor]
4870 cls.add_constructor([param('ns3::CallbackChecker const &', 'arg0')])
4871 return
4872
4873def register_Ns3CallbackImplBase_methods(root_module, cls):
4874 ## callback.h (module 'core'): ns3::CallbackImplBase::CallbackImplBase() [constructor]
4875 cls.add_constructor([])
4876 ## callback.h (module 'core'): ns3::CallbackImplBase::CallbackImplBase(ns3::CallbackImplBase const & arg0) [copy constructor]
4877 cls.add_constructor([param('ns3::CallbackImplBase const &', 'arg0')])
4878 ## callback.h (module 'core'): bool ns3::CallbackImplBase::IsEqual(ns3::Ptr<ns3::CallbackImplBase const> other) const [member function]
4879 cls.add_method('IsEqual',
4880 'bool',
4881 [param('ns3::Ptr< ns3::CallbackImplBase const >', 'other')],
4882 is_pure_virtual=True, is_const=True, is_virtual=True)
4883 return
4884
4885def register_Ns3CallbackValue_methods(root_module, cls):
4886 ## callback.h (module 'core'): ns3::CallbackValue::CallbackValue(ns3::CallbackValue const & arg0) [copy constructor]
4887 cls.add_constructor([param('ns3::CallbackValue const &', 'arg0')])
4888 ## callback.h (module 'core'): ns3::CallbackValue::CallbackValue() [constructor]
4889 cls.add_constructor([])
4890 ## callback.h (module 'core'): ns3::CallbackValue::CallbackValue(ns3::CallbackBase const & base) [constructor]
4891 cls.add_constructor([param('ns3::CallbackBase const &', 'base')])
4892 ## callback.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::CallbackValue::Copy() const [member function]
4893 cls.add_method('Copy',
4894 'ns3::Ptr< ns3::AttributeValue >',
4895 [],
4896 is_const=True, is_virtual=True)
4897 ## callback.h (module 'core'): bool ns3::CallbackValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
4898 cls.add_method('DeserializeFromString',
4899 'bool',
4900 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4901 is_virtual=True)
4902 ## callback.h (module 'core'): std::string ns3::CallbackValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
4903 cls.add_method('SerializeToString',
4904 'std::string',
4905 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4906 is_const=True, is_virtual=True)
4907 ## callback.h (module 'core'): void ns3::CallbackValue::Set(ns3::CallbackBase base) [member function]
4908 cls.add_method('Set',
4909 'void',
4910 [param('ns3::CallbackBase', 'base')])
4911 return
4912
4913def register_Ns3Ccnx_methods(root_module, cls):
4914 ## ccnx.h (module 'NDNabstraction'): ns3::Ccnx::Ccnx() [constructor]
4915 cls.add_constructor([])
4916 ## ccnx.h (module 'NDNabstraction'): ns3::Ccnx::Ccnx(ns3::Ccnx const & arg0) [copy constructor]
4917 cls.add_constructor([param('ns3::Ccnx const &', 'arg0')])
4918 ## ccnx.h (module 'NDNabstraction'): uint32_t ns3::Ccnx::AddFace(ns3::Ptr<ns3::CcnxFace> const & face) [member function]
4919 cls.add_method('AddFace',
4920 'uint32_t',
4921 [param('ns3::Ptr< ns3::CcnxFace > const &', 'face')],
4922 is_pure_virtual=True, is_virtual=True)
4923 ## ccnx.h (module 'NDNabstraction'): ns3::Ptr<ns3::CcnxFace> ns3::Ccnx::GetFace(uint32_t face) const [member function]
4924 cls.add_method('GetFace',
4925 'ns3::Ptr< ns3::CcnxFace >',
4926 [param('uint32_t', 'face')],
4927 is_pure_virtual=True, is_const=True, is_virtual=True)
Alexander Afanasyev07827182011-12-13 01:07:32 -08004928 ## ccnx.h (module 'NDNabstraction'): ns3::Ptr<ns3::CcnxFace> ns3::Ccnx::GetFaceByNetDevice(ns3::Ptr<ns3::NetDevice> netDevice) const [member function]
4929 cls.add_method('GetFaceByNetDevice',
4930 'ns3::Ptr< ns3::CcnxFace >',
4931 [param('ns3::Ptr< ns3::NetDevice >', 'netDevice')],
4932 is_pure_virtual=True, is_const=True, is_virtual=True)
Alexander Afanasyev381dea02011-11-03 08:33:26 -07004933 ## ccnx.h (module 'NDNabstraction'): ns3::Ptr<ns3::CcnxForwardingStrategy> ns3::Ccnx::GetForwardingStrategy() const [member function]
4934 cls.add_method('GetForwardingStrategy',
4935 'ns3::Ptr< ns3::CcnxForwardingStrategy >',
4936 [],
4937 is_pure_virtual=True, is_const=True, is_virtual=True)
4938 ## ccnx.h (module 'NDNabstraction'): uint32_t ns3::Ccnx::GetNFaces() const [member function]
4939 cls.add_method('GetNFaces',
4940 'uint32_t',
4941 [],
4942 is_pure_virtual=True, is_const=True, is_virtual=True)
4943 ## ccnx.h (module 'NDNabstraction'): static ns3::TypeId ns3::Ccnx::GetTypeId() [member function]
4944 cls.add_method('GetTypeId',
4945 'ns3::TypeId',
4946 [],
4947 is_static=True)
Alexander Afanasyev381dea02011-11-03 08:33:26 -07004948 ## ccnx.h (module 'NDNabstraction'): void ns3::Ccnx::RemoveFace(ns3::Ptr<ns3::CcnxFace> face) [member function]
4949 cls.add_method('RemoveFace',
4950 'void',
4951 [param('ns3::Ptr< ns3::CcnxFace >', 'face')],
4952 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyev381dea02011-11-03 08:33:26 -07004953 ## ccnx.h (module 'NDNabstraction'): void ns3::Ccnx::SetForwardingStrategy(ns3::Ptr<ns3::CcnxForwardingStrategy> forwardingStrategy) [member function]
4954 cls.add_method('SetForwardingStrategy',
4955 'void',
4956 [param('ns3::Ptr< ns3::CcnxForwardingStrategy >', 'forwardingStrategy')],
4957 is_pure_virtual=True, is_virtual=True)
4958 return
4959
Alexander Afanasyev07827182011-12-13 01:07:32 -08004960def register_Ns3CcnxApp_methods(root_module, cls):
4961 ## ccnx-app.h (module 'NDNabstraction'): ns3::CcnxApp::CcnxApp(ns3::CcnxApp const & arg0) [copy constructor]
4962 cls.add_constructor([param('ns3::CcnxApp const &', 'arg0')])
4963 ## ccnx-app.h (module 'NDNabstraction'): ns3::CcnxApp::CcnxApp() [constructor]
4964 cls.add_constructor([])
4965 ## ccnx-app.h (module 'NDNabstraction'): static ns3::TypeId ns3::CcnxApp::GetTypeId() [member function]
4966 cls.add_method('GetTypeId',
4967 'ns3::TypeId',
4968 [],
4969 is_static=True)
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08004970 ## ccnx-app.h (module 'NDNabstraction'): void ns3::CcnxApp::OnContentObject(ns3::Ptr<const ns3::CcnxContentObjectHeader> const & contentObject, ns3::Ptr<ns3::Packet> payload) [member function]
Alexander Afanasyev07827182011-12-13 01:07:32 -08004971 cls.add_method('OnContentObject',
4972 'void',
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08004973 [param('ns3::Ptr< ns3::CcnxContentObjectHeader const > const &', 'contentObject'), param('ns3::Ptr< ns3::Packet >', 'payload')],
Alexander Afanasyev07827182011-12-13 01:07:32 -08004974 is_virtual=True)
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08004975 ## ccnx-app.h (module 'NDNabstraction'): void ns3::CcnxApp::OnInterest(ns3::Ptr<const ns3::CcnxInterestHeader> const & interest, ns3::Ptr<ns3::Packet> packet) [member function]
Alexander Afanasyev07827182011-12-13 01:07:32 -08004976 cls.add_method('OnInterest',
4977 'void',
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08004978 [param('ns3::Ptr< ns3::CcnxInterestHeader const > const &', 'interest'), param('ns3::Ptr< ns3::Packet >', 'packet')],
Alexander Afanasyev07827182011-12-13 01:07:32 -08004979 is_virtual=True)
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08004980 ## ccnx-app.h (module 'NDNabstraction'): void ns3::CcnxApp::OnNack(ns3::Ptr<const ns3::CcnxInterestHeader> const & interest, ns3::Ptr<ns3::Packet> packet) [member function]
Alexander Afanasyev07827182011-12-13 01:07:32 -08004981 cls.add_method('OnNack',
4982 'void',
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08004983 [param('ns3::Ptr< ns3::CcnxInterestHeader const > const &', 'interest'), param('ns3::Ptr< ns3::Packet >', 'packet')],
Alexander Afanasyev07827182011-12-13 01:07:32 -08004984 is_virtual=True)
4985 ## ccnx-app.h (module 'NDNabstraction'): void ns3::CcnxApp::RegisterProtocolHandler(ns3::Callback<bool, ns3::Ptr<ns3::Packet const> const&, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> handler) [member function]
4986 cls.add_method('RegisterProtocolHandler',
4987 'void',
4988 [param('ns3::Callback< bool, ns3::Ptr< ns3::Packet const >, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'handler')])
4989 ## ccnx-app.h (module 'NDNabstraction'): void ns3::CcnxApp::DoDispose() [member function]
4990 cls.add_method('DoDispose',
4991 'void',
4992 [],
4993 visibility='protected', is_virtual=True)
4994 ## ccnx-app.h (module 'NDNabstraction'): void ns3::CcnxApp::StartApplication() [member function]
4995 cls.add_method('StartApplication',
4996 'void',
4997 [],
4998 visibility='protected', is_virtual=True)
4999 ## ccnx-app.h (module 'NDNabstraction'): void ns3::CcnxApp::StopApplication() [member function]
5000 cls.add_method('StopApplication',
5001 'void',
5002 [],
5003 visibility='protected', is_virtual=True)
5004 return
5005
Alexander Afanasyevb3e4b852011-12-23 15:58:20 -08005006def register_Ns3CcnxAppTracer_methods(root_module, cls):
5007 cls.add_output_stream_operator()
5008 ## ccnx-app-tracer.h (module 'NDNabstraction'): ns3::CcnxAppTracer::CcnxAppTracer(ns3::CcnxAppTracer const & arg0) [copy constructor]
5009 cls.add_constructor([param('ns3::CcnxAppTracer const &', 'arg0')])
5010 ## ccnx-app-tracer.h (module 'NDNabstraction'): ns3::CcnxAppTracer::CcnxAppTracer(std::string const & app, ns3::Ptr<ns3::Node> node, std::string const & appId="*") [constructor]
5011 cls.add_constructor([param('std::string const &', 'app'), param('ns3::Ptr< ns3::Node >', 'node'), param('std::string const &', 'appId', default_value='"*"')])
5012 ## ccnx-app-tracer.h (module 'NDNabstraction'): ns3::CcnxAppTracer::CcnxAppTracer(std::string const & app, std::string const & node, std::string const & appId="*") [constructor]
5013 cls.add_constructor([param('std::string const &', 'app'), param('std::string const &', 'node'), param('std::string const &', 'appId', default_value='"*"')])
5014 ## ccnx-app-tracer.h (module 'NDNabstraction'): void ns3::CcnxAppTracer::Connect() [member function]
5015 cls.add_method('Connect',
5016 'void',
5017 [])
5018 ## ccnx-app-tracer.h (module 'NDNabstraction'): void ns3::CcnxAppTracer::InData(std::string context, ns3::Ptr<const ns3::CcnxContentObjectHeader> arg1, ns3::Ptr<const ns3::Packet> arg2, ns3::Ptr<ns3::CcnxApp> arg3, ns3::Ptr<ns3::CcnxFace> arg4) [member function]
5019 cls.add_method('InData',
5020 'void',
5021 [param('std::string', 'context'), param('ns3::Ptr< ns3::CcnxContentObjectHeader const >', 'arg1'), param('ns3::Ptr< ns3::Packet const >', 'arg2'), param('ns3::Ptr< ns3::CcnxApp >', 'arg3'), param('ns3::Ptr< ns3::CcnxFace >', 'arg4')],
5022 is_pure_virtual=True, is_virtual=True)
5023 ## ccnx-app-tracer.h (module 'NDNabstraction'): void ns3::CcnxAppTracer::InInterests(std::string context, ns3::Ptr<const ns3::CcnxInterestHeader> arg1, ns3::Ptr<ns3::CcnxApp> arg2, ns3::Ptr<ns3::CcnxFace> arg3) [member function]
5024 cls.add_method('InInterests',
5025 'void',
5026 [param('std::string', 'context'), param('ns3::Ptr< ns3::CcnxInterestHeader const >', 'arg1'), param('ns3::Ptr< ns3::CcnxApp >', 'arg2'), param('ns3::Ptr< ns3::CcnxFace >', 'arg3')],
5027 is_pure_virtual=True, is_virtual=True)
5028 ## ccnx-app-tracer.h (module 'NDNabstraction'): void ns3::CcnxAppTracer::InNacks(std::string context, ns3::Ptr<const ns3::CcnxInterestHeader> arg1, ns3::Ptr<ns3::CcnxApp> arg2, ns3::Ptr<ns3::CcnxFace> arg3) [member function]
5029 cls.add_method('InNacks',
5030 'void',
5031 [param('std::string', 'context'), param('ns3::Ptr< ns3::CcnxInterestHeader const >', 'arg1'), param('ns3::Ptr< ns3::CcnxApp >', 'arg2'), param('ns3::Ptr< ns3::CcnxFace >', 'arg3')],
5032 is_pure_virtual=True, is_virtual=True)
5033 ## ccnx-app-tracer.h (module 'NDNabstraction'): void ns3::CcnxAppTracer::OutData(std::string context, ns3::Ptr<const ns3::CcnxContentObjectHeader> arg1, ns3::Ptr<const ns3::Packet> arg2, ns3::Ptr<ns3::CcnxApp> arg3, ns3::Ptr<ns3::CcnxFace> arg4) [member function]
5034 cls.add_method('OutData',
5035 'void',
5036 [param('std::string', 'context'), param('ns3::Ptr< ns3::CcnxContentObjectHeader const >', 'arg1'), param('ns3::Ptr< ns3::Packet const >', 'arg2'), param('ns3::Ptr< ns3::CcnxApp >', 'arg3'), param('ns3::Ptr< ns3::CcnxFace >', 'arg4')],
5037 is_pure_virtual=True, is_virtual=True)
5038 ## ccnx-app-tracer.h (module 'NDNabstraction'): void ns3::CcnxAppTracer::OutInterests(std::string context, ns3::Ptr<const ns3::CcnxInterestHeader> arg1, ns3::Ptr<ns3::CcnxApp> arg2, ns3::Ptr<ns3::CcnxFace> arg3) [member function]
5039 cls.add_method('OutInterests',
5040 'void',
5041 [param('std::string', 'context'), param('ns3::Ptr< ns3::CcnxInterestHeader const >', 'arg1'), param('ns3::Ptr< ns3::CcnxApp >', 'arg2'), param('ns3::Ptr< ns3::CcnxFace >', 'arg3')],
5042 is_pure_virtual=True, is_virtual=True)
5043 ## ccnx-app-tracer.h (module 'NDNabstraction'): void ns3::CcnxAppTracer::Print(std::ostream & os) const [member function]
5044 cls.add_method('Print',
5045 'void',
5046 [param('std::ostream &', 'os')],
5047 is_pure_virtual=True, is_const=True, is_virtual=True)
5048 ## ccnx-app-tracer.h (module 'NDNabstraction'): void ns3::CcnxAppTracer::PrintHeader(std::ostream & os) const [member function]
5049 cls.add_method('PrintHeader',
5050 'void',
5051 [param('std::ostream &', 'os')],
5052 is_pure_virtual=True, is_const=True, is_virtual=True)
5053 return
5054
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08005055def register_Ns3CcnxConsumerWindowTracer_methods(root_module, cls):
5056 ## ccnx-consumer-window-tracer.h (module 'NDNabstraction'): ns3::CcnxConsumerWindowTracer::CcnxConsumerWindowTracer(ns3::CcnxConsumerWindowTracer const & arg0) [copy constructor]
5057 cls.add_constructor([param('ns3::CcnxConsumerWindowTracer const &', 'arg0')])
5058 ## ccnx-consumer-window-tracer.h (module 'NDNabstraction'): ns3::CcnxConsumerWindowTracer::CcnxConsumerWindowTracer(std::ostream & os, ns3::Ptr<ns3::Node> node, std::string const & appId="*") [constructor]
5059 cls.add_constructor([param('std::ostream &', 'os'), param('ns3::Ptr< ns3::Node >', 'node'), param('std::string const &', 'appId', default_value='"*"')])
5060 ## ccnx-consumer-window-tracer.h (module 'NDNabstraction'): void ns3::CcnxConsumerWindowTracer::Connect() [member function]
5061 cls.add_method('Connect',
5062 'void',
5063 [])
5064 return
5065
Alexander Afanasyev381dea02011-11-03 08:33:26 -07005066def register_Ns3CcnxContentObjectHeader_methods(root_module, cls):
5067 ## ccnx-content-object-header.h (module 'NDNabstraction'): ns3::CcnxContentObjectHeader::CcnxContentObjectHeader(ns3::CcnxContentObjectHeader const & arg0) [copy constructor]
5068 cls.add_constructor([param('ns3::CcnxContentObjectHeader const &', 'arg0')])
5069 ## ccnx-content-object-header.h (module 'NDNabstraction'): ns3::CcnxContentObjectHeader::CcnxContentObjectHeader() [constructor]
5070 cls.add_constructor([])
5071 ## ccnx-content-object-header.h (module 'NDNabstraction'): uint32_t ns3::CcnxContentObjectHeader::Deserialize(ns3::Buffer::Iterator start) [member function]
5072 cls.add_method('Deserialize',
5073 'uint32_t',
5074 [param('ns3::Buffer::Iterator', 'start')],
5075 is_virtual=True)
Alexander Afanasyev9568f952012-04-05 16:09:14 -07005076 ## ccnx-content-object-header.h (module 'NDNabstraction'): ns3::Time ns3::CcnxContentObjectHeader::GetFreshness() const [member function]
5077 cls.add_method('GetFreshness',
5078 'ns3::Time',
5079 [],
5080 is_const=True)
Alexander Afanasyev381dea02011-11-03 08:33:26 -07005081 ## ccnx-content-object-header.h (module 'NDNabstraction'): ns3::TypeId ns3::CcnxContentObjectHeader::GetInstanceTypeId() const [member function]
5082 cls.add_method('GetInstanceTypeId',
5083 'ns3::TypeId',
5084 [],
5085 is_const=True, is_virtual=True)
5086 ## ccnx-content-object-header.h (module 'NDNabstraction'): ns3::CcnxNameComponents const & ns3::CcnxContentObjectHeader::GetName() const [member function]
5087 cls.add_method('GetName',
5088 'ns3::CcnxNameComponents const &',
5089 [],
5090 is_const=True)
5091 ## ccnx-content-object-header.h (module 'NDNabstraction'): uint32_t ns3::CcnxContentObjectHeader::GetSerializedSize() const [member function]
5092 cls.add_method('GetSerializedSize',
5093 'uint32_t',
5094 [],
5095 is_const=True, is_virtual=True)
Alexander Afanasyev9568f952012-04-05 16:09:14 -07005096 ## ccnx-content-object-header.h (module 'NDNabstraction'): ns3::Time ns3::CcnxContentObjectHeader::GetTimestamp() const [member function]
5097 cls.add_method('GetTimestamp',
5098 'ns3::Time',
5099 [],
5100 is_const=True)
Alexander Afanasyev381dea02011-11-03 08:33:26 -07005101 ## ccnx-content-object-header.h (module 'NDNabstraction'): static ns3::TypeId ns3::CcnxContentObjectHeader::GetTypeId() [member function]
5102 cls.add_method('GetTypeId',
5103 'ns3::TypeId',
5104 [],
5105 is_static=True)
5106 ## ccnx-content-object-header.h (module 'NDNabstraction'): void ns3::CcnxContentObjectHeader::Print(std::ostream & os) const [member function]
5107 cls.add_method('Print',
5108 'void',
5109 [param('std::ostream &', 'os')],
5110 is_const=True, is_virtual=True)
5111 ## ccnx-content-object-header.h (module 'NDNabstraction'): void ns3::CcnxContentObjectHeader::Serialize(ns3::Buffer::Iterator start) const [member function]
5112 cls.add_method('Serialize',
5113 'void',
5114 [param('ns3::Buffer::Iterator', 'start')],
5115 is_const=True, is_virtual=True)
Alexander Afanasyev9568f952012-04-05 16:09:14 -07005116 ## ccnx-content-object-header.h (module 'NDNabstraction'): void ns3::CcnxContentObjectHeader::SetFreshness(ns3::Time const & freshness) [member function]
5117 cls.add_method('SetFreshness',
5118 'void',
5119 [param('ns3::Time const &', 'freshness')])
Alexander Afanasyev381dea02011-11-03 08:33:26 -07005120 ## ccnx-content-object-header.h (module 'NDNabstraction'): void ns3::CcnxContentObjectHeader::SetName(ns3::Ptr<ns3::CcnxNameComponents> const & name) [member function]
5121 cls.add_method('SetName',
5122 'void',
5123 [param('ns3::Ptr< ns3::CcnxNameComponents > const &', 'name')])
Alexander Afanasyev9568f952012-04-05 16:09:14 -07005124 ## ccnx-content-object-header.h (module 'NDNabstraction'): void ns3::CcnxContentObjectHeader::SetTimestamp(ns3::Time const & timestamp) [member function]
5125 cls.add_method('SetTimestamp',
5126 'void',
5127 [param('ns3::Time const &', 'timestamp')])
5128 return
5129
5130def register_Ns3CcnxContentObjectHeaderSignedInfo_methods(root_module, cls):
5131 ## ccnx-content-object-header.h (module 'NDNabstraction'): ns3::CcnxContentObjectHeader::SignedInfo::SignedInfo() [constructor]
5132 cls.add_constructor([])
5133 ## ccnx-content-object-header.h (module 'NDNabstraction'): ns3::CcnxContentObjectHeader::SignedInfo::SignedInfo(ns3::CcnxContentObjectHeader::SignedInfo const & arg0) [copy constructor]
5134 cls.add_constructor([param('ns3::CcnxContentObjectHeader::SignedInfo const &', 'arg0')])
5135 ## ccnx-content-object-header.h (module 'NDNabstraction'): ns3::CcnxContentObjectHeader::SignedInfo::m_freshness [variable]
5136 cls.add_instance_attribute('m_freshness', 'ns3::Time', is_const=False)
5137 ## ccnx-content-object-header.h (module 'NDNabstraction'): ns3::CcnxContentObjectHeader::SignedInfo::m_timestamp [variable]
5138 cls.add_instance_attribute('m_timestamp', 'ns3::Time', is_const=False)
Alexander Afanasyev381dea02011-11-03 08:33:26 -07005139 return
5140
5141def register_Ns3CcnxContentObjectTail_methods(root_module, cls):
5142 ## ccnx-content-object-header.h (module 'NDNabstraction'): ns3::CcnxContentObjectTail::CcnxContentObjectTail(ns3::CcnxContentObjectTail const & arg0) [copy constructor]
5143 cls.add_constructor([param('ns3::CcnxContentObjectTail const &', 'arg0')])
5144 ## ccnx-content-object-header.h (module 'NDNabstraction'): ns3::CcnxContentObjectTail::CcnxContentObjectTail() [constructor]
5145 cls.add_constructor([])
5146 ## ccnx-content-object-header.h (module 'NDNabstraction'): uint32_t ns3::CcnxContentObjectTail::Deserialize(ns3::Buffer::Iterator start) [member function]
5147 cls.add_method('Deserialize',
5148 'uint32_t',
5149 [param('ns3::Buffer::Iterator', 'start')],
5150 is_virtual=True)
5151 ## ccnx-content-object-header.h (module 'NDNabstraction'): ns3::TypeId ns3::CcnxContentObjectTail::GetInstanceTypeId() const [member function]
5152 cls.add_method('GetInstanceTypeId',
5153 'ns3::TypeId',
5154 [],
5155 is_const=True, is_virtual=True)
5156 ## ccnx-content-object-header.h (module 'NDNabstraction'): uint32_t ns3::CcnxContentObjectTail::GetSerializedSize() const [member function]
5157 cls.add_method('GetSerializedSize',
5158 'uint32_t',
5159 [],
5160 is_const=True, is_virtual=True)
5161 ## ccnx-content-object-header.h (module 'NDNabstraction'): static ns3::TypeId ns3::CcnxContentObjectTail::GetTypeId() [member function]
5162 cls.add_method('GetTypeId',
5163 'ns3::TypeId',
5164 [],
5165 is_static=True)
5166 ## ccnx-content-object-header.h (module 'NDNabstraction'): void ns3::CcnxContentObjectTail::Print(std::ostream & os) const [member function]
5167 cls.add_method('Print',
5168 'void',
5169 [param('std::ostream &', 'os')],
5170 is_const=True, is_virtual=True)
5171 ## ccnx-content-object-header.h (module 'NDNabstraction'): void ns3::CcnxContentObjectTail::Serialize(ns3::Buffer::Iterator start) const [member function]
5172 cls.add_method('Serialize',
5173 'void',
5174 [param('ns3::Buffer::Iterator', 'start')],
5175 is_const=True, is_virtual=True)
5176 return
5177
Alexander Afanasyev381dea02011-11-03 08:33:26 -07005178def register_Ns3CcnxFace_methods(root_module, cls):
5179 cls.add_output_stream_operator()
5180 cls.add_binary_comparison_operator('<')
5181 cls.add_binary_comparison_operator('==')
Alexander Afanasyev07827182011-12-13 01:07:32 -08005182 ## ccnx-face.h (module 'NDNabstraction'): ns3::CcnxFace::CcnxFace(ns3::Ptr<ns3::Node> node) [constructor]
5183 cls.add_constructor([param('ns3::Ptr< ns3::Node >', 'node')])
Alexander Afanasyev381dea02011-11-03 08:33:26 -07005184 ## ccnx-face.h (module 'NDNabstraction'): uint32_t ns3::CcnxFace::GetId() const [member function]
5185 cls.add_method('GetId',
5186 'uint32_t',
5187 [],
5188 is_const=True)
Alexander Afanasyev8e0d2812012-01-19 22:38:14 -08005189 ## ccnx-face.h (module 'NDNabstraction'): uint16_t ns3::CcnxFace::GetMetric() const [member function]
5190 cls.add_method('GetMetric',
5191 'uint16_t',
5192 [],
5193 is_const=True, is_virtual=True)
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08005194 ## ccnx-face.h (module 'NDNabstraction'): ns3::Ptr<ns3::Node> ns3::CcnxFace::GetNode() const [member function]
5195 cls.add_method('GetNode',
5196 'ns3::Ptr< ns3::Node >',
5197 [],
5198 is_const=True)
Alexander Afanasyev53872ce2011-12-16 13:17:18 -08005199 ## ccnx-face.h (module 'NDNabstraction'): static ns3::TypeId ns3::CcnxFace::GetTypeId() [member function]
5200 cls.add_method('GetTypeId',
5201 'ns3::TypeId',
5202 [],
5203 is_static=True)
Alexander Afanasyev07827182011-12-13 01:07:32 -08005204 ## ccnx-face.h (module 'NDNabstraction'): bool ns3::CcnxFace::IsBelowLimit() [member function]
5205 cls.add_method('IsBelowLimit',
Alexander Afanasyev381dea02011-11-03 08:33:26 -07005206 'bool',
Alexander Afanasyev07827182011-12-13 01:07:32 -08005207 [])
Alexander Afanasyev381dea02011-11-03 08:33:26 -07005208 ## ccnx-face.h (module 'NDNabstraction'): bool ns3::CcnxFace::IsUp() const [member function]
5209 cls.add_method('IsUp',
5210 'bool',
5211 [],
5212 is_const=True, is_virtual=True)
Alexander Afanasyev4975f732011-12-20 17:52:19 -08005213 ## ccnx-face.h (module 'NDNabstraction'): void ns3::CcnxFace::LeakBucket() [member function]
Alexander Afanasyev07827182011-12-13 01:07:32 -08005214 cls.add_method('LeakBucket',
5215 'void',
Alexander Afanasyev07827182011-12-13 01:07:32 -08005216 [])
Alexander Afanasyev381dea02011-11-03 08:33:26 -07005217 ## ccnx-face.h (module 'NDNabstraction'): std::ostream & ns3::CcnxFace::Print(std::ostream & os) const [member function]
5218 cls.add_method('Print',
5219 'std::ostream &',
5220 [param('std::ostream &', 'os')],
5221 is_const=True, is_virtual=True)
Alexander Afanasyev07827182011-12-13 01:07:32 -08005222 ## ccnx-face.h (module 'NDNabstraction'): bool ns3::CcnxFace::Receive(ns3::Ptr<const ns3::Packet> const & p) [member function]
5223 cls.add_method('Receive',
5224 'bool',
5225 [param('ns3::Ptr< ns3::Packet const > const &', 'p')])
Alexander Afanasyev381dea02011-11-03 08:33:26 -07005226 ## ccnx-face.h (module 'NDNabstraction'): void ns3::CcnxFace::RegisterProtocolHandler(ns3::Callback<void, ns3::Ptr<ns3::CcnxFace> const&, ns3::Ptr<ns3::Packet const> const&, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> handler) [member function]
5227 cls.add_method('RegisterProtocolHandler',
5228 'void',
5229 [param('ns3::Callback< void, ns3::Ptr< ns3::CcnxFace >, ns3::Ptr< ns3::Packet const >, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'handler')],
Alexander Afanasyev381dea02011-11-03 08:33:26 -07005230 is_virtual=True)
Alexander Afanasyev07827182011-12-13 01:07:32 -08005231 ## ccnx-face.h (module 'NDNabstraction'): bool ns3::CcnxFace::Send(ns3::Ptr<ns3::Packet> p) [member function]
5232 cls.add_method('Send',
5233 'bool',
5234 [param('ns3::Ptr< ns3::Packet >', 'p')])
5235 ## ccnx-face.h (module 'NDNabstraction'): void ns3::CcnxFace::SetBucketLeak(double leak) [member function]
5236 cls.add_method('SetBucketLeak',
5237 'void',
5238 [param('double', 'leak')])
5239 ## ccnx-face.h (module 'NDNabstraction'): void ns3::CcnxFace::SetBucketMax(double bucket) [member function]
5240 cls.add_method('SetBucketMax',
5241 'void',
5242 [param('double', 'bucket')])
Alexander Afanasyev381dea02011-11-03 08:33:26 -07005243 ## ccnx-face.h (module 'NDNabstraction'): void ns3::CcnxFace::SetId(uint32_t id) [member function]
5244 cls.add_method('SetId',
5245 'void',
5246 [param('uint32_t', 'id')])
Alexander Afanasyev8e0d2812012-01-19 22:38:14 -08005247 ## ccnx-face.h (module 'NDNabstraction'): void ns3::CcnxFace::SetMetric(uint16_t metric) [member function]
5248 cls.add_method('SetMetric',
5249 'void',
5250 [param('uint16_t', 'metric')],
5251 is_virtual=True)
Alexander Afanasyev07827182011-12-13 01:07:32 -08005252 ## ccnx-face.h (module 'NDNabstraction'): void ns3::CcnxFace::SetUp(bool up=true) [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07005253 cls.add_method('SetUp',
5254 'void',
Alexander Afanasyev07827182011-12-13 01:07:32 -08005255 [param('bool', 'up', default_value='true')],
Alexander Afanasyev381dea02011-11-03 08:33:26 -07005256 is_virtual=True)
Alexander Afanasyev07827182011-12-13 01:07:32 -08005257 ## ccnx-face.h (module 'NDNabstraction'): void ns3::CcnxFace::SendImpl(ns3::Ptr<ns3::Packet> p) [member function]
5258 cls.add_method('SendImpl',
5259 'void',
5260 [param('ns3::Ptr< ns3::Packet >', 'p')],
5261 is_pure_virtual=True, visibility='protected', is_virtual=True)
Alexander Afanasyev381dea02011-11-03 08:33:26 -07005262 return
5263
5264def register_Ns3CcnxFaceContainer_methods(root_module, cls):
5265 ## ccnx-face-container.h (module 'NDNabstraction'): ns3::CcnxFaceContainer::CcnxFaceContainer() [constructor]
5266 cls.add_constructor([])
5267 ## ccnx-face-container.h (module 'NDNabstraction'): ns3::CcnxFaceContainer::CcnxFaceContainer(ns3::CcnxFaceContainer const & other) [copy constructor]
5268 cls.add_constructor([param('ns3::CcnxFaceContainer const &', 'other')])
5269 ## ccnx-face-container.h (module 'NDNabstraction'): void ns3::CcnxFaceContainer::Add(ns3::Ptr<ns3::CcnxFace> const & face) [member function]
5270 cls.add_method('Add',
5271 'void',
5272 [param('ns3::Ptr< ns3::CcnxFace > const &', 'face')])
5273 ## ccnx-face-container.h (module 'NDNabstraction'): void ns3::CcnxFaceContainer::AddAll(ns3::Ptr<ns3::CcnxFaceContainer> other) [member function]
5274 cls.add_method('AddAll',
5275 'void',
5276 [param('ns3::Ptr< ns3::CcnxFaceContainer >', 'other')])
5277 ## ccnx-face-container.h (module 'NDNabstraction'): void ns3::CcnxFaceContainer::AddAll(ns3::CcnxFaceContainer const & other) [member function]
5278 cls.add_method('AddAll',
5279 'void',
5280 [param('ns3::CcnxFaceContainer const &', 'other')])
5281 ## ccnx-face-container.h (module 'NDNabstraction'): __gnu_cxx::__normal_iterator<const ns3::Ptr<ns3::CcnxFace>*,std::vector<ns3::Ptr<ns3::CcnxFace>, std::allocator<ns3::Ptr<ns3::CcnxFace> > > > ns3::CcnxFaceContainer::Begin() const [member function]
5282 cls.add_method('Begin',
5283 '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::CcnxFace > const, std::vector< ns3::Ptr< ns3::CcnxFace > > >',
5284 [],
5285 is_const=True)
5286 ## ccnx-face-container.h (module 'NDNabstraction'): __gnu_cxx::__normal_iterator<const ns3::Ptr<ns3::CcnxFace>*,std::vector<ns3::Ptr<ns3::CcnxFace>, std::allocator<ns3::Ptr<ns3::CcnxFace> > > > ns3::CcnxFaceContainer::End() const [member function]
5287 cls.add_method('End',
5288 '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::CcnxFace > const, std::vector< ns3::Ptr< ns3::CcnxFace > > >',
5289 [],
5290 is_const=True)
5291 ## ccnx-face-container.h (module 'NDNabstraction'): ns3::Ptr<ns3::CcnxFace> ns3::CcnxFaceContainer::Get(__gnu_cxx::__normal_iterator<const ns3::Ptr<ns3::CcnxFace>*,std::vector<ns3::Ptr<ns3::CcnxFace>, std::allocator<ns3::Ptr<ns3::CcnxFace> > > > i) const [member function]
5292 cls.add_method('Get',
5293 'ns3::Ptr< ns3::CcnxFace >',
5294 [param('__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::CcnxFace > const, std::vector< ns3::Ptr< ns3::CcnxFace > > >', 'i')],
5295 is_const=True)
5296 ## ccnx-face-container.h (module 'NDNabstraction'): uint32_t ns3::CcnxFaceContainer::GetN() const [member function]
5297 cls.add_method('GetN',
5298 'uint32_t',
5299 [],
5300 is_const=True)
5301 return
5302
Alexander Afanasyev07827182011-12-13 01:07:32 -08005303def register_Ns3CcnxFib_methods(root_module, cls):
5304 cls.add_output_stream_operator()
5305 ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFib::CcnxFib() [constructor]
5306 cls.add_constructor([])
5307 ## ccnx-fib.h (module 'NDNabstraction'): boost::multi_index::detail::hashed_index_iterator<boost::multi_index::detail::hashed_index_node<boost::multi_index::detail::random_access_index_node<boost::multi_index::detail::index_node_base<ns3::CcnxFibEntry, std::allocator<ns3::CcnxFibEntry> > > >,boost::multi_index::detail::bucket_array<std::allocator<ns3::CcnxFibEntry> > > ns3::CcnxFib::Add(ns3::CcnxNameComponents const & prefix, ns3::Ptr<ns3::CcnxFace> face, int32_t metric) [member function]
5308 cls.add_method('Add',
5309 'boost::multi_index::detail::hashed_index_iterator< boost::multi_index::detail::hashed_index_node< boost::multi_index::detail::random_access_index_node< boost::multi_index::detail::index_node_base< ns3::CcnxFibEntry, std::allocator< ns3::CcnxFibEntry > > > >, boost::multi_index::detail::bucket_array< std::allocator< ns3::CcnxFibEntry > > >',
5310 [param('ns3::CcnxNameComponents const &', 'prefix'), param('ns3::Ptr< ns3::CcnxFace >', 'face'), param('int32_t', 'metric')])
Alexander Afanasyev8e2f1122012-04-17 15:01:11 -07005311 ## ccnx-fib.h (module 'NDNabstraction'): boost::multi_index::detail::hashed_index_iterator<boost::multi_index::detail::hashed_index_node<boost::multi_index::detail::random_access_index_node<boost::multi_index::detail::index_node_base<ns3::CcnxFibEntry, std::allocator<ns3::CcnxFibEntry> > > >,boost::multi_index::detail::bucket_array<std::allocator<ns3::CcnxFibEntry> > > ns3::CcnxFib::Add(ns3::Ptr<ns3::CcnxNameComponents const> const & prefix, ns3::Ptr<ns3::CcnxFace> face, int32_t metric) [member function]
5312 cls.add_method('Add',
5313 'boost::multi_index::detail::hashed_index_iterator< boost::multi_index::detail::hashed_index_node< boost::multi_index::detail::random_access_index_node< boost::multi_index::detail::index_node_base< ns3::CcnxFibEntry, std::allocator< ns3::CcnxFibEntry > > > >, boost::multi_index::detail::bucket_array< std::allocator< ns3::CcnxFibEntry > > >',
5314 [param('ns3::Ptr< ns3::CcnxNameComponents const > const &', 'prefix'), param('ns3::Ptr< ns3::CcnxFace >', 'face'), param('int32_t', 'metric')])
Alexander Afanasyev07827182011-12-13 01:07:32 -08005315 ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFibEntry const & ns3::CcnxFib::GetCcnxFibEntry(uint32_t index) [member function]
5316 cls.add_method('GetCcnxFibEntry',
5317 'ns3::CcnxFibEntry const &',
5318 [param('uint32_t', 'index')])
5319 ## ccnx-fib.h (module 'NDNabstraction'): uint32_t ns3::CcnxFib::GetCcnxFibEntryCount() const [member function]
5320 cls.add_method('GetCcnxFibEntryCount',
5321 'uint32_t',
5322 [],
5323 is_const=True)
5324 ## ccnx-fib.h (module 'NDNabstraction'): static ns3::TypeId ns3::CcnxFib::GetTypeId() [member function]
5325 cls.add_method('GetTypeId',
5326 'ns3::TypeId',
5327 [],
5328 is_static=True)
Alexander Afanasyev8e2f1122012-04-17 15:01:11 -07005329 ## ccnx-fib.h (module 'NDNabstraction'): void ns3::CcnxFib::Invalidate(ns3::Ptr<ns3::CcnxNameComponents const> const & prefix) [member function]
5330 cls.add_method('Invalidate',
5331 'void',
5332 [param('ns3::Ptr< ns3::CcnxNameComponents const > const &', 'prefix')])
5333 ## ccnx-fib.h (module 'NDNabstraction'): void ns3::CcnxFib::InvalidateAll() [member function]
5334 cls.add_method('InvalidateAll',
5335 'void',
5336 [])
Alexander Afanasyev07827182011-12-13 01:07:32 -08005337 ## ccnx-fib.h (module 'NDNabstraction'): boost::multi_index::detail::hashed_index_iterator<boost::multi_index::detail::hashed_index_node<boost::multi_index::detail::random_access_index_node<boost::multi_index::detail::index_node_base<ns3::CcnxFibEntry, std::allocator<ns3::CcnxFibEntry> > > >,boost::multi_index::detail::bucket_array<std::allocator<ns3::CcnxFibEntry> > > ns3::CcnxFib::LongestPrefixMatch(ns3::CcnxInterestHeader const & interest) const [member function]
5338 cls.add_method('LongestPrefixMatch',
5339 'boost::multi_index::detail::hashed_index_iterator< boost::multi_index::detail::hashed_index_node< boost::multi_index::detail::random_access_index_node< boost::multi_index::detail::index_node_base< ns3::CcnxFibEntry, std::allocator< ns3::CcnxFibEntry > > > >, boost::multi_index::detail::bucket_array< std::allocator< ns3::CcnxFibEntry > > >',
5340 [param('ns3::CcnxInterestHeader const &', 'interest')],
5341 is_const=True)
Alexander Afanasyev8e2f1122012-04-17 15:01:11 -07005342 ## ccnx-fib.h (module 'NDNabstraction'): void ns3::CcnxFib::Remove(ns3::Ptr<ns3::CcnxNameComponents const> const & prefix) [member function]
5343 cls.add_method('Remove',
5344 'void',
5345 [param('ns3::Ptr< ns3::CcnxNameComponents const > const &', 'prefix')])
Alexander Afanasyev07827182011-12-13 01:07:32 -08005346 ## ccnx-fib.h (module 'NDNabstraction'): void ns3::CcnxFib::Remove(ns3::CcnxFibEntry const & entry, ns3::Ptr<ns3::CcnxFace> face) [member function]
5347 cls.add_method('Remove',
5348 'void',
5349 [param('ns3::CcnxFibEntry const &', 'entry'), param('ns3::Ptr< ns3::CcnxFace >', 'face')])
5350 ## ccnx-fib.h (module 'NDNabstraction'): void ns3::CcnxFib::RemoveFromAll(ns3::Ptr<ns3::CcnxFace> face) [member function]
5351 cls.add_method('RemoveFromAll',
5352 'void',
5353 [param('ns3::Ptr< ns3::CcnxFace >', 'face')])
5354 ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFib::m_fib [variable]
5355 cls.add_instance_attribute('m_fib', 'boost::multi_index::multi_index_container< ns3::CcnxFibEntry, boost::multi_index::indexed_by< boost::multi_index::hashed_unique< boost::multi_index::tag< ns3::__ccnx_private::i_prefix, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na >, boost::multi_index::const_mem_fun< ns3::CcnxFibEntry, ns3::CcnxNameComponents const &, & ( ns3::CcnxFibEntry::GetPrefix ( ) const ) >, ns3::CcnxPrefixHash, mpl_::na >, boost::multi_index::random_access< boost::multi_index::tag< ns3::__ccnx_private::i_nth, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na > >, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na >, std::allocator< ns3::CcnxFibEntry > >', is_const=False)
5356 ## ccnx-fib.h (module 'NDNabstraction'): void ns3::CcnxFib::DoDispose() [member function]
5357 cls.add_method('DoDispose',
5358 'void',
5359 [],
5360 visibility='protected', is_virtual=True)
5361 ## ccnx-fib.h (module 'NDNabstraction'): void ns3::CcnxFib::NotifyNewAggregate() [member function]
5362 cls.add_method('NotifyNewAggregate',
5363 'void',
5364 [],
5365 visibility='protected', is_virtual=True)
5366 return
5367
Alexander Afanasyev381dea02011-11-03 08:33:26 -07005368def register_Ns3CcnxInterestHeader_methods(root_module, cls):
5369 ## ccnx-interest-header.h (module 'NDNabstraction'): ns3::CcnxInterestHeader::CcnxInterestHeader(ns3::CcnxInterestHeader const & arg0) [copy constructor]
5370 cls.add_constructor([param('ns3::CcnxInterestHeader const &', 'arg0')])
5371 ## ccnx-interest-header.h (module 'NDNabstraction'): ns3::CcnxInterestHeader::CcnxInterestHeader() [constructor]
5372 cls.add_constructor([])
5373 ## ccnx-interest-header.h (module 'NDNabstraction'): uint32_t ns3::CcnxInterestHeader::Deserialize(ns3::Buffer::Iterator start) [member function]
5374 cls.add_method('Deserialize',
5375 'uint32_t',
5376 [param('ns3::Buffer::Iterator', 'start')],
5377 is_virtual=True)
5378 ## ccnx-interest-header.h (module 'NDNabstraction'): ns3::CcnxNameComponents const & ns3::CcnxInterestHeader::GetExclude() const [member function]
5379 cls.add_method('GetExclude',
5380 'ns3::CcnxNameComponents const &',
5381 [],
5382 is_const=True)
5383 ## ccnx-interest-header.h (module 'NDNabstraction'): ns3::TypeId ns3::CcnxInterestHeader::GetInstanceTypeId() const [member function]
5384 cls.add_method('GetInstanceTypeId',
5385 'ns3::TypeId',
5386 [],
5387 is_const=True, is_virtual=True)
5388 ## ccnx-interest-header.h (module 'NDNabstraction'): ns3::Time ns3::CcnxInterestHeader::GetInterestLifetime() const [member function]
5389 cls.add_method('GetInterestLifetime',
5390 'ns3::Time',
5391 [],
5392 is_const=True)
5393 ## ccnx-interest-header.h (module 'NDNabstraction'): int32_t ns3::CcnxInterestHeader::GetMaxSuffixComponents() const [member function]
5394 cls.add_method('GetMaxSuffixComponents',
5395 'int32_t',
5396 [],
5397 is_const=True)
5398 ## ccnx-interest-header.h (module 'NDNabstraction'): int32_t ns3::CcnxInterestHeader::GetMinSuffixComponents() const [member function]
5399 cls.add_method('GetMinSuffixComponents',
5400 'int32_t',
5401 [],
5402 is_const=True)
Alexander Afanasyev07827182011-12-13 01:07:32 -08005403 ## ccnx-interest-header.h (module 'NDNabstraction'): uint32_t ns3::CcnxInterestHeader::GetNack() const [member function]
5404 cls.add_method('GetNack',
5405 'uint32_t',
5406 [],
5407 is_const=True)
Alexander Afanasyev381dea02011-11-03 08:33:26 -07005408 ## ccnx-interest-header.h (module 'NDNabstraction'): ns3::CcnxNameComponents const & ns3::CcnxInterestHeader::GetName() const [member function]
5409 cls.add_method('GetName',
5410 'ns3::CcnxNameComponents const &',
5411 [],
5412 is_const=True)
5413 ## ccnx-interest-header.h (module 'NDNabstraction'): uint32_t ns3::CcnxInterestHeader::GetNonce() const [member function]
5414 cls.add_method('GetNonce',
5415 'uint32_t',
5416 [],
5417 is_const=True)
5418 ## ccnx-interest-header.h (module 'NDNabstraction'): int8_t ns3::CcnxInterestHeader::GetScope() const [member function]
5419 cls.add_method('GetScope',
5420 'int8_t',
5421 [],
5422 is_const=True)
5423 ## ccnx-interest-header.h (module 'NDNabstraction'): uint32_t ns3::CcnxInterestHeader::GetSerializedSize() const [member function]
5424 cls.add_method('GetSerializedSize',
5425 'uint32_t',
5426 [],
5427 is_const=True, is_virtual=True)
5428 ## ccnx-interest-header.h (module 'NDNabstraction'): static ns3::TypeId ns3::CcnxInterestHeader::GetTypeId() [member function]
5429 cls.add_method('GetTypeId',
5430 'ns3::TypeId',
5431 [],
5432 is_static=True)
Alexander Afanasyev381dea02011-11-03 08:33:26 -07005433 ## ccnx-interest-header.h (module 'NDNabstraction'): bool ns3::CcnxInterestHeader::IsEnabledAnswerOriginKind() const [member function]
5434 cls.add_method('IsEnabledAnswerOriginKind',
5435 'bool',
5436 [],
5437 is_const=True)
5438 ## ccnx-interest-header.h (module 'NDNabstraction'): bool ns3::CcnxInterestHeader::IsEnabledChildSelector() const [member function]
5439 cls.add_method('IsEnabledChildSelector',
5440 'bool',
5441 [],
5442 is_const=True)
5443 ## ccnx-interest-header.h (module 'NDNabstraction'): bool ns3::CcnxInterestHeader::IsEnabledExclude() const [member function]
5444 cls.add_method('IsEnabledExclude',
5445 'bool',
5446 [],
5447 is_const=True)
Alexander Afanasyev381dea02011-11-03 08:33:26 -07005448 ## ccnx-interest-header.h (module 'NDNabstraction'): void ns3::CcnxInterestHeader::Print(std::ostream & os) const [member function]
5449 cls.add_method('Print',
5450 'void',
5451 [param('std::ostream &', 'os')],
5452 is_const=True, is_virtual=True)
5453 ## ccnx-interest-header.h (module 'NDNabstraction'): void ns3::CcnxInterestHeader::Serialize(ns3::Buffer::Iterator start) const [member function]
5454 cls.add_method('Serialize',
5455 'void',
5456 [param('ns3::Buffer::Iterator', 'start')],
5457 is_const=True, is_virtual=True)
5458 ## ccnx-interest-header.h (module 'NDNabstraction'): void ns3::CcnxInterestHeader::SetAnswerOriginKind(bool value) [member function]
5459 cls.add_method('SetAnswerOriginKind',
5460 'void',
5461 [param('bool', 'value')])
5462 ## ccnx-interest-header.h (module 'NDNabstraction'): void ns3::CcnxInterestHeader::SetChildSelector(bool value) [member function]
5463 cls.add_method('SetChildSelector',
5464 'void',
5465 [param('bool', 'value')])
Alexander Afanasyev381dea02011-11-03 08:33:26 -07005466 ## ccnx-interest-header.h (module 'NDNabstraction'): void ns3::CcnxInterestHeader::SetExclude(ns3::Ptr<ns3::CcnxNameComponents> const & exclude) [member function]
5467 cls.add_method('SetExclude',
5468 'void',
5469 [param('ns3::Ptr< ns3::CcnxNameComponents > const &', 'exclude')])
5470 ## ccnx-interest-header.h (module 'NDNabstraction'): void ns3::CcnxInterestHeader::SetInterestLifetime(ns3::Time time) [member function]
5471 cls.add_method('SetInterestLifetime',
5472 'void',
5473 [param('ns3::Time', 'time')])
5474 ## ccnx-interest-header.h (module 'NDNabstraction'): void ns3::CcnxInterestHeader::SetMaxSuffixComponents(int32_t value) [member function]
5475 cls.add_method('SetMaxSuffixComponents',
5476 'void',
5477 [param('int32_t', 'value')])
5478 ## ccnx-interest-header.h (module 'NDNabstraction'): void ns3::CcnxInterestHeader::SetMinSuffixComponents(int32_t value) [member function]
5479 cls.add_method('SetMinSuffixComponents',
5480 'void',
5481 [param('int32_t', 'value')])
Alexander Afanasyev07827182011-12-13 01:07:32 -08005482 ## ccnx-interest-header.h (module 'NDNabstraction'): void ns3::CcnxInterestHeader::SetNack(uint32_t nackType) [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07005483 cls.add_method('SetNack',
5484 'void',
Alexander Afanasyev07827182011-12-13 01:07:32 -08005485 [param('uint32_t', 'nackType')])
Alexander Afanasyev381dea02011-11-03 08:33:26 -07005486 ## ccnx-interest-header.h (module 'NDNabstraction'): void ns3::CcnxInterestHeader::SetName(ns3::Ptr<ns3::CcnxNameComponents> const & name) [member function]
5487 cls.add_method('SetName',
5488 'void',
5489 [param('ns3::Ptr< ns3::CcnxNameComponents > const &', 'name')])
5490 ## ccnx-interest-header.h (module 'NDNabstraction'): void ns3::CcnxInterestHeader::SetNonce(uint32_t nonce) [member function]
5491 cls.add_method('SetNonce',
5492 'void',
5493 [param('uint32_t', 'nonce')])
5494 ## ccnx-interest-header.h (module 'NDNabstraction'): void ns3::CcnxInterestHeader::SetScope(int8_t scope) [member function]
5495 cls.add_method('SetScope',
5496 'void',
5497 [param('int8_t', 'scope')])
5498 return
5499
Alexander Afanasyevb3e4b852011-12-23 15:58:20 -08005500def register_Ns3CcnxL3Tracer_methods(root_module, cls):
5501 cls.add_output_stream_operator()
5502 ## ccnx-l3-tracer.h (module 'NDNabstraction'): ns3::CcnxL3Tracer::CcnxL3Tracer(ns3::CcnxL3Tracer const & arg0) [copy constructor]
5503 cls.add_constructor([param('ns3::CcnxL3Tracer const &', 'arg0')])
5504 ## ccnx-l3-tracer.h (module 'NDNabstraction'): ns3::CcnxL3Tracer::CcnxL3Tracer(ns3::Ptr<ns3::Node> node) [constructor]
5505 cls.add_constructor([param('ns3::Ptr< ns3::Node >', 'node')])
5506 ## ccnx-l3-tracer.h (module 'NDNabstraction'): ns3::CcnxL3Tracer::CcnxL3Tracer(std::string const & node) [constructor]
5507 cls.add_constructor([param('std::string const &', 'node')])
5508 ## ccnx-l3-tracer.h (module 'NDNabstraction'): void ns3::CcnxL3Tracer::Connect() [member function]
5509 cls.add_method('Connect',
5510 'void',
5511 [])
5512 ## ccnx-l3-tracer.h (module 'NDNabstraction'): void ns3::CcnxL3Tracer::DropData(std::string context, ns3::Ptr<const ns3::CcnxContentObjectHeader> arg1, ns3::Ptr<const ns3::Packet> arg2, ns3::Ccnx::DropReason arg3, ns3::Ptr<const ns3::CcnxFace> arg4) [member function]
5513 cls.add_method('DropData',
5514 'void',
5515 [param('std::string', 'context'), param('ns3::Ptr< ns3::CcnxContentObjectHeader const >', 'arg1'), param('ns3::Ptr< ns3::Packet const >', 'arg2'), param('ns3::Ccnx::DropReason', 'arg3'), param('ns3::Ptr< ns3::CcnxFace const >', 'arg4')],
5516 is_pure_virtual=True, is_virtual=True)
5517 ## ccnx-l3-tracer.h (module 'NDNabstraction'): void ns3::CcnxL3Tracer::DropInterests(std::string context, ns3::Ptr<const ns3::CcnxInterestHeader> arg1, ns3::Ccnx::DropReason arg2, ns3::Ptr<const ns3::CcnxFace> arg3) [member function]
5518 cls.add_method('DropInterests',
5519 'void',
5520 [param('std::string', 'context'), param('ns3::Ptr< ns3::CcnxInterestHeader const >', 'arg1'), param('ns3::Ccnx::DropReason', 'arg2'), param('ns3::Ptr< ns3::CcnxFace const >', 'arg3')],
5521 is_pure_virtual=True, is_virtual=True)
5522 ## ccnx-l3-tracer.h (module 'NDNabstraction'): void ns3::CcnxL3Tracer::DropNacks(std::string context, ns3::Ptr<const ns3::CcnxInterestHeader> arg1, ns3::Ccnx::DropReason arg2, ns3::Ptr<const ns3::CcnxFace> arg3) [member function]
5523 cls.add_method('DropNacks',
5524 'void',
5525 [param('std::string', 'context'), param('ns3::Ptr< ns3::CcnxInterestHeader const >', 'arg1'), param('ns3::Ccnx::DropReason', 'arg2'), param('ns3::Ptr< ns3::CcnxFace const >', 'arg3')],
5526 is_pure_virtual=True, is_virtual=True)
5527 ## ccnx-l3-tracer.h (module 'NDNabstraction'): void ns3::CcnxL3Tracer::InData(std::string context, ns3::Ptr<const ns3::CcnxContentObjectHeader> arg1, ns3::Ptr<const ns3::Packet> arg2, ns3::Ptr<const ns3::CcnxFace> arg3) [member function]
5528 cls.add_method('InData',
5529 'void',
5530 [param('std::string', 'context'), param('ns3::Ptr< ns3::CcnxContentObjectHeader const >', 'arg1'), param('ns3::Ptr< ns3::Packet const >', 'arg2'), param('ns3::Ptr< ns3::CcnxFace const >', 'arg3')],
5531 is_pure_virtual=True, is_virtual=True)
5532 ## ccnx-l3-tracer.h (module 'NDNabstraction'): void ns3::CcnxL3Tracer::InInterests(std::string context, ns3::Ptr<const ns3::CcnxInterestHeader> arg1, ns3::Ptr<const ns3::CcnxFace> arg2) [member function]
5533 cls.add_method('InInterests',
5534 'void',
5535 [param('std::string', 'context'), param('ns3::Ptr< ns3::CcnxInterestHeader const >', 'arg1'), param('ns3::Ptr< ns3::CcnxFace const >', 'arg2')],
5536 is_pure_virtual=True, is_virtual=True)
5537 ## ccnx-l3-tracer.h (module 'NDNabstraction'): void ns3::CcnxL3Tracer::InNacks(std::string context, ns3::Ptr<const ns3::CcnxInterestHeader> arg1, ns3::Ptr<const ns3::CcnxFace> arg2) [member function]
5538 cls.add_method('InNacks',
5539 'void',
5540 [param('std::string', 'context'), param('ns3::Ptr< ns3::CcnxInterestHeader const >', 'arg1'), param('ns3::Ptr< ns3::CcnxFace const >', 'arg2')],
5541 is_pure_virtual=True, is_virtual=True)
5542 ## ccnx-l3-tracer.h (module 'NDNabstraction'): void ns3::CcnxL3Tracer::OutData(std::string context, ns3::Ptr<const ns3::CcnxContentObjectHeader> arg1, ns3::Ptr<const ns3::Packet> arg2, bool fromCache, ns3::Ptr<const ns3::CcnxFace> arg4) [member function]
5543 cls.add_method('OutData',
5544 'void',
5545 [param('std::string', 'context'), param('ns3::Ptr< ns3::CcnxContentObjectHeader const >', 'arg1'), param('ns3::Ptr< ns3::Packet const >', 'arg2'), param('bool', 'fromCache'), param('ns3::Ptr< ns3::CcnxFace const >', 'arg4')],
5546 is_pure_virtual=True, is_virtual=True)
5547 ## ccnx-l3-tracer.h (module 'NDNabstraction'): void ns3::CcnxL3Tracer::OutInterests(std::string context, ns3::Ptr<const ns3::CcnxInterestHeader> arg1, ns3::Ptr<const ns3::CcnxFace> arg2) [member function]
5548 cls.add_method('OutInterests',
5549 'void',
5550 [param('std::string', 'context'), param('ns3::Ptr< ns3::CcnxInterestHeader const >', 'arg1'), param('ns3::Ptr< ns3::CcnxFace const >', 'arg2')],
5551 is_pure_virtual=True, is_virtual=True)
5552 ## ccnx-l3-tracer.h (module 'NDNabstraction'): void ns3::CcnxL3Tracer::OutNacks(std::string context, ns3::Ptr<const ns3::CcnxInterestHeader> arg1, ns3::Ptr<const ns3::CcnxFace> arg2) [member function]
5553 cls.add_method('OutNacks',
5554 'void',
5555 [param('std::string', 'context'), param('ns3::Ptr< ns3::CcnxInterestHeader const >', 'arg1'), param('ns3::Ptr< ns3::CcnxFace const >', 'arg2')],
5556 is_pure_virtual=True, is_virtual=True)
5557 ## ccnx-l3-tracer.h (module 'NDNabstraction'): void ns3::CcnxL3Tracer::Print(std::ostream & os) const [member function]
5558 cls.add_method('Print',
5559 'void',
5560 [param('std::ostream &', 'os')],
5561 is_pure_virtual=True, is_const=True, is_virtual=True)
5562 ## ccnx-l3-tracer.h (module 'NDNabstraction'): void ns3::CcnxL3Tracer::PrintHeader(std::ostream & os) const [member function]
5563 cls.add_method('PrintHeader',
5564 'void',
5565 [param('std::ostream &', 'os')],
5566 is_pure_virtual=True, is_const=True, is_virtual=True)
5567 return
5568
Alexander Afanasyev381dea02011-11-03 08:33:26 -07005569def register_Ns3CcnxNameComponents_methods(root_module, cls):
5570 cls.add_output_stream_operator()
5571 cls.add_binary_comparison_operator('<')
5572 cls.add_binary_comparison_operator('==')
5573 ## ccnx-name-components.h (module 'NDNabstraction'): ns3::CcnxNameComponents::CcnxNameComponents(ns3::CcnxNameComponents const & arg0) [copy constructor]
5574 cls.add_constructor([param('ns3::CcnxNameComponents const &', 'arg0')])
5575 ## ccnx-name-components.h (module 'NDNabstraction'): ns3::CcnxNameComponents::CcnxNameComponents() [constructor]
5576 cls.add_constructor([])
Alexander Afanasyev8e2f1122012-04-17 15:01:11 -07005577 ## ccnx-name-components.h (module 'NDNabstraction'): ns3::CcnxNameComponents::CcnxNameComponents(std::list<boost::reference_wrapper<const std::basic_string<char, std::char_traits<char>, std::allocator<char> > >,std::allocator<boost::reference_wrapper<const std::basic_string<char, std::char_traits<char>, std::allocator<char> > > > > const & components) [constructor]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07005578 cls.add_constructor([param('std::list< boost::reference_wrapper< std::string const > > const &', 'components')])
Alexander Afanasyev381dea02011-11-03 08:33:26 -07005579 ## ccnx-name-components.h (module 'NDNabstraction'): std::list<std::string, std::allocator<std::string> > const & ns3::CcnxNameComponents::GetComponents() const [member function]
5580 cls.add_method('GetComponents',
5581 'std::list< std::string > const &',
5582 [],
5583 is_const=True)
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08005584 ## ccnx-name-components.h (module 'NDNabstraction'): std::string ns3::CcnxNameComponents::GetLastComponent() const [member function]
5585 cls.add_method('GetLastComponent',
5586 'std::string',
5587 [],
5588 is_const=True)
Alexander Afanasyev8e2f1122012-04-17 15:01:11 -07005589 ## ccnx-name-components.h (module 'NDNabstraction'): std::list<boost::reference_wrapper<const std::basic_string<char, std::char_traits<char>, std::allocator<char> > >,std::allocator<boost::reference_wrapper<const std::basic_string<char, std::char_traits<char>, std::allocator<char> > > > > ns3::CcnxNameComponents::GetSubComponents(size_t num) const [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07005590 cls.add_method('GetSubComponents',
5591 'std::list< boost::reference_wrapper< std::string const > >',
5592 [param('size_t', 'num')],
5593 is_const=True)
5594 ## ccnx-name-components.h (module 'NDNabstraction'): void ns3::CcnxNameComponents::Print(std::ostream & os) const [member function]
5595 cls.add_method('Print',
5596 'void',
5597 [param('std::ostream &', 'os')],
5598 is_const=True)
5599 ## ccnx-name-components.h (module 'NDNabstraction'): size_t ns3::CcnxNameComponents::size() const [member function]
5600 cls.add_method('size',
5601 'size_t',
5602 [],
5603 is_const=True)
Alexander Afanasyev381dea02011-11-03 08:33:26 -07005604 return
5605
5606def register_Ns3CcnxNameComponentsChecker_methods(root_module, cls):
5607 ## ccnx-name-components.h (module 'NDNabstraction'): ns3::CcnxNameComponentsChecker::CcnxNameComponentsChecker() [constructor]
5608 cls.add_constructor([])
5609 ## ccnx-name-components.h (module 'NDNabstraction'): ns3::CcnxNameComponentsChecker::CcnxNameComponentsChecker(ns3::CcnxNameComponentsChecker const & arg0) [copy constructor]
5610 cls.add_constructor([param('ns3::CcnxNameComponentsChecker const &', 'arg0')])
5611 return
5612
5613def register_Ns3CcnxNameComponentsValue_methods(root_module, cls):
5614 ## ccnx-name-components.h (module 'NDNabstraction'): ns3::CcnxNameComponentsValue::CcnxNameComponentsValue() [constructor]
5615 cls.add_constructor([])
5616 ## ccnx-name-components.h (module 'NDNabstraction'): ns3::CcnxNameComponentsValue::CcnxNameComponentsValue(ns3::CcnxNameComponentsValue const & arg0) [copy constructor]
5617 cls.add_constructor([param('ns3::CcnxNameComponentsValue const &', 'arg0')])
5618 ## ccnx-name-components.h (module 'NDNabstraction'): ns3::CcnxNameComponentsValue::CcnxNameComponentsValue(ns3::CcnxNameComponents const & value) [constructor]
5619 cls.add_constructor([param('ns3::CcnxNameComponents const &', 'value')])
5620 ## ccnx-name-components.h (module 'NDNabstraction'): ns3::Ptr<ns3::AttributeValue> ns3::CcnxNameComponentsValue::Copy() const [member function]
5621 cls.add_method('Copy',
5622 'ns3::Ptr< ns3::AttributeValue >',
5623 [],
5624 is_const=True, is_virtual=True)
5625 ## ccnx-name-components.h (module 'NDNabstraction'): bool ns3::CcnxNameComponentsValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
5626 cls.add_method('DeserializeFromString',
5627 'bool',
5628 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
5629 is_virtual=True)
5630 ## ccnx-name-components.h (module 'NDNabstraction'): ns3::CcnxNameComponents ns3::CcnxNameComponentsValue::Get() const [member function]
5631 cls.add_method('Get',
5632 'ns3::CcnxNameComponents',
5633 [],
5634 is_const=True)
5635 ## ccnx-name-components.h (module 'NDNabstraction'): std::string ns3::CcnxNameComponentsValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
5636 cls.add_method('SerializeToString',
5637 'std::string',
5638 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
5639 is_const=True, is_virtual=True)
5640 ## ccnx-name-components.h (module 'NDNabstraction'): void ns3::CcnxNameComponentsValue::Set(ns3::CcnxNameComponents const & value) [member function]
5641 cls.add_method('Set',
5642 'void',
5643 [param('ns3::CcnxNameComponents const &', 'value')])
5644 return
5645
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08005646def register_Ns3CcnxPathWeightTracer_methods(root_module, cls):
5647 ## ccnx-path-weight-tracer.h (module 'NDNabstraction'): ns3::CcnxPathWeightTracer::CcnxPathWeightTracer(ns3::CcnxPathWeightTracer const & arg0) [copy constructor]
5648 cls.add_constructor([param('ns3::CcnxPathWeightTracer const &', 'arg0')])
Alexander Afanasyev8e0d2812012-01-19 22:38:14 -08005649 ## ccnx-path-weight-tracer.h (module 'NDNabstraction'): ns3::CcnxPathWeightTracer::CcnxPathWeightTracer(std::ostream & os, ns3::Ptr<ns3::Node> node) [constructor]
5650 cls.add_constructor([param('std::ostream &', 'os'), param('ns3::Ptr< ns3::Node >', 'node')])
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08005651 ## ccnx-path-weight-tracer.h (module 'NDNabstraction'): void ns3::CcnxPathWeightTracer::Connect() [member function]
5652 cls.add_method('Connect',
5653 'void',
5654 [])
Alexander Afanasyev8e0d2812012-01-19 22:38:14 -08005655 ## ccnx-path-weight-tracer.h (module 'NDNabstraction'): static void ns3::CcnxPathWeightTracer::PrintHeader(std::ostream & os) [member function]
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08005656 cls.add_method('PrintHeader',
5657 'void',
5658 [param('std::ostream &', 'os')],
Alexander Afanasyev8e0d2812012-01-19 22:38:14 -08005659 is_static=True)
Alexander Afanasyev6bff0df2012-01-19 17:51:52 -08005660 ## ccnx-path-weight-tracer.h (module 'NDNabstraction'): void ns3::CcnxPathWeightTracer::InLocalFace(std::string context, ns3::Ptr<ns3::Node> src, ns3::Ptr<ns3::Node> dst, uint32_t seqno, uint32_t weight) [member function]
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08005661 cls.add_method('InLocalFace',
5662 'void',
Alexander Afanasyev6bff0df2012-01-19 17:51:52 -08005663 [param('std::string', 'context'), param('ns3::Ptr< ns3::Node >', 'src'), param('ns3::Ptr< ns3::Node >', 'dst'), param('uint32_t', 'seqno'), param('uint32_t', 'weight')],
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08005664 is_virtual=True)
5665 return
5666
Alexander Afanasyev381dea02011-11-03 08:33:26 -07005667def register_Ns3EmptyAttributeValue_methods(root_module, cls):
5668 ## attribute.h (module 'core'): ns3::EmptyAttributeValue::EmptyAttributeValue(ns3::EmptyAttributeValue const & arg0) [copy constructor]
5669 cls.add_constructor([param('ns3::EmptyAttributeValue const &', 'arg0')])
5670 ## attribute.h (module 'core'): ns3::EmptyAttributeValue::EmptyAttributeValue() [constructor]
5671 cls.add_constructor([])
5672 ## attribute.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::EmptyAttributeValue::Copy() const [member function]
5673 cls.add_method('Copy',
5674 'ns3::Ptr< ns3::AttributeValue >',
5675 [],
5676 is_const=True, visibility='private', is_virtual=True)
5677 ## attribute.h (module 'core'): bool ns3::EmptyAttributeValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
5678 cls.add_method('DeserializeFromString',
5679 'bool',
5680 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
5681 visibility='private', is_virtual=True)
5682 ## attribute.h (module 'core'): std::string ns3::EmptyAttributeValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
5683 cls.add_method('SerializeToString',
5684 'std::string',
5685 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
5686 is_const=True, visibility='private', is_virtual=True)
5687 return
5688
5689def register_Ns3EventImpl_methods(root_module, cls):
5690 ## event-impl.h (module 'core'): ns3::EventImpl::EventImpl(ns3::EventImpl const & arg0) [copy constructor]
5691 cls.add_constructor([param('ns3::EventImpl const &', 'arg0')])
5692 ## event-impl.h (module 'core'): ns3::EventImpl::EventImpl() [constructor]
5693 cls.add_constructor([])
5694 ## event-impl.h (module 'core'): void ns3::EventImpl::Cancel() [member function]
5695 cls.add_method('Cancel',
5696 'void',
5697 [])
5698 ## event-impl.h (module 'core'): void ns3::EventImpl::Invoke() [member function]
5699 cls.add_method('Invoke',
5700 'void',
5701 [])
5702 ## event-impl.h (module 'core'): bool ns3::EventImpl::IsCancelled() [member function]
5703 cls.add_method('IsCancelled',
5704 'bool',
5705 [])
5706 ## event-impl.h (module 'core'): void ns3::EventImpl::Notify() [member function]
5707 cls.add_method('Notify',
5708 'void',
5709 [],
5710 is_pure_virtual=True, visibility='protected', is_virtual=True)
5711 return
5712
5713def register_Ns3IntegerValue_methods(root_module, cls):
5714 ## integer.h (module 'core'): ns3::IntegerValue::IntegerValue() [constructor]
5715 cls.add_constructor([])
5716 ## integer.h (module 'core'): ns3::IntegerValue::IntegerValue(ns3::IntegerValue const & arg0) [copy constructor]
5717 cls.add_constructor([param('ns3::IntegerValue const &', 'arg0')])
5718 ## integer.h (module 'core'): ns3::IntegerValue::IntegerValue(int64_t const & value) [constructor]
5719 cls.add_constructor([param('int64_t const &', 'value')])
5720 ## integer.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::IntegerValue::Copy() const [member function]
5721 cls.add_method('Copy',
5722 'ns3::Ptr< ns3::AttributeValue >',
5723 [],
5724 is_const=True, is_virtual=True)
5725 ## integer.h (module 'core'): bool ns3::IntegerValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
5726 cls.add_method('DeserializeFromString',
5727 'bool',
5728 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
5729 is_virtual=True)
5730 ## integer.h (module 'core'): int64_t ns3::IntegerValue::Get() const [member function]
5731 cls.add_method('Get',
5732 'int64_t',
5733 [],
5734 is_const=True)
5735 ## integer.h (module 'core'): std::string ns3::IntegerValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
5736 cls.add_method('SerializeToString',
5737 'std::string',
5738 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
5739 is_const=True, is_virtual=True)
5740 ## integer.h (module 'core'): void ns3::IntegerValue::Set(int64_t const & value) [member function]
5741 cls.add_method('Set',
5742 'void',
5743 [param('int64_t const &', 'value')])
5744 return
5745
Alexander Afanasyev6f933532012-02-29 13:30:37 -08005746def register_Ns3IpL4Protocol_methods(root_module, cls):
5747 ## ip-l4-protocol.h (module 'internet'): ns3::IpL4Protocol::IpL4Protocol() [constructor]
5748 cls.add_constructor([])
5749 ## ip-l4-protocol.h (module 'internet'): ns3::IpL4Protocol::IpL4Protocol(ns3::IpL4Protocol const & arg0) [copy constructor]
5750 cls.add_constructor([param('ns3::IpL4Protocol const &', 'arg0')])
5751 ## ip-l4-protocol.h (module 'internet'): ns3::Callback<void,ns3::Ptr<ns3::Packet>,ns3::Ipv4Address,ns3::Ipv4Address,unsigned char,ns3::Ptr<ns3::Ipv4Route>,ns3::empty,ns3::empty,ns3::empty,ns3::empty> ns3::IpL4Protocol::GetDownTarget() const [member function]
5752 cls.add_method('GetDownTarget',
5753 'ns3::Callback< void, ns3::Ptr< ns3::Packet >, ns3::Ipv4Address, ns3::Ipv4Address, unsigned char, ns3::Ptr< ns3::Ipv4Route >, ns3::empty, ns3::empty, ns3::empty, ns3::empty >',
5754 [],
5755 is_pure_virtual=True, is_const=True, is_virtual=True)
5756 ## ip-l4-protocol.h (module 'internet'): ns3::Callback<void,ns3::Ptr<ns3::Packet>,ns3::Ipv6Address,ns3::Ipv6Address,unsigned char,ns3::Ptr<ns3::Ipv6Route>,ns3::empty,ns3::empty,ns3::empty,ns3::empty> ns3::IpL4Protocol::GetDownTarget6() const [member function]
5757 cls.add_method('GetDownTarget6',
5758 'ns3::Callback< void, ns3::Ptr< ns3::Packet >, ns3::Ipv6Address, ns3::Ipv6Address, unsigned char, ns3::Ptr< ns3::Ipv6Route >, ns3::empty, ns3::empty, ns3::empty, ns3::empty >',
5759 [],
5760 is_pure_virtual=True, is_const=True, is_virtual=True)
5761 ## ip-l4-protocol.h (module 'internet'): int ns3::IpL4Protocol::GetProtocolNumber() const [member function]
5762 cls.add_method('GetProtocolNumber',
5763 'int',
5764 [],
5765 is_pure_virtual=True, is_const=True, is_virtual=True)
5766 ## ip-l4-protocol.h (module 'internet'): static ns3::TypeId ns3::IpL4Protocol::GetTypeId() [member function]
5767 cls.add_method('GetTypeId',
5768 'ns3::TypeId',
5769 [],
5770 is_static=True)
5771 ## ip-l4-protocol.h (module 'internet'): ns3::IpL4Protocol::RxStatus ns3::IpL4Protocol::Receive(ns3::Ptr<ns3::Packet> p, ns3::Ipv4Header const & header, ns3::Ptr<ns3::Ipv4Interface> incomingInterface) [member function]
5772 cls.add_method('Receive',
5773 'ns3::IpL4Protocol::RxStatus',
5774 [param('ns3::Ptr< ns3::Packet >', 'p'), param('ns3::Ipv4Header const &', 'header'), param('ns3::Ptr< ns3::Ipv4Interface >', 'incomingInterface')],
5775 is_pure_virtual=True, is_virtual=True)
5776 ## ip-l4-protocol.h (module 'internet'): ns3::IpL4Protocol::RxStatus ns3::IpL4Protocol::Receive(ns3::Ptr<ns3::Packet> p, ns3::Ipv6Address & src, ns3::Ipv6Address & dst, ns3::Ptr<ns3::Ipv6Interface> incomingInterface) [member function]
5777 cls.add_method('Receive',
5778 'ns3::IpL4Protocol::RxStatus',
5779 [param('ns3::Ptr< ns3::Packet >', 'p'), param('ns3::Ipv6Address &', 'src'), param('ns3::Ipv6Address &', 'dst'), param('ns3::Ptr< ns3::Ipv6Interface >', 'incomingInterface')],
5780 is_pure_virtual=True, is_virtual=True)
5781 ## ip-l4-protocol.h (module 'internet'): void ns3::IpL4Protocol::ReceiveIcmp(ns3::Ipv4Address icmpSource, uint8_t icmpTtl, uint8_t icmpType, uint8_t icmpCode, uint32_t icmpInfo, ns3::Ipv4Address payloadSource, ns3::Ipv4Address payloadDestination, uint8_t const * payload) [member function]
5782 cls.add_method('ReceiveIcmp',
5783 'void',
5784 [param('ns3::Ipv4Address', 'icmpSource'), param('uint8_t', 'icmpTtl'), param('uint8_t', 'icmpType'), param('uint8_t', 'icmpCode'), param('uint32_t', 'icmpInfo'), param('ns3::Ipv4Address', 'payloadSource'), param('ns3::Ipv4Address', 'payloadDestination'), param('uint8_t const *', 'payload')],
5785 is_virtual=True)
5786 ## ip-l4-protocol.h (module 'internet'): void ns3::IpL4Protocol::ReceiveIcmp(ns3::Ipv6Address icmpSource, uint8_t icmpTtl, uint8_t icmpType, uint8_t icmpCode, uint32_t icmpInfo, ns3::Ipv6Address payloadSource, ns3::Ipv6Address payloadDestination, uint8_t const * payload) [member function]
5787 cls.add_method('ReceiveIcmp',
5788 'void',
5789 [param('ns3::Ipv6Address', 'icmpSource'), param('uint8_t', 'icmpTtl'), param('uint8_t', 'icmpType'), param('uint8_t', 'icmpCode'), param('uint32_t', 'icmpInfo'), param('ns3::Ipv6Address', 'payloadSource'), param('ns3::Ipv6Address', 'payloadDestination'), param('uint8_t const *', 'payload')],
5790 is_virtual=True)
5791 ## ip-l4-protocol.h (module 'internet'): void ns3::IpL4Protocol::SetDownTarget(ns3::Callback<void,ns3::Ptr<ns3::Packet>,ns3::Ipv4Address,ns3::Ipv4Address,unsigned char,ns3::Ptr<ns3::Ipv4Route>,ns3::empty,ns3::empty,ns3::empty,ns3::empty> cb) [member function]
5792 cls.add_method('SetDownTarget',
5793 'void',
5794 [param('ns3::Callback< void, ns3::Ptr< ns3::Packet >, ns3::Ipv4Address, ns3::Ipv4Address, unsigned char, ns3::Ptr< ns3::Ipv4Route >, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'cb')],
5795 is_pure_virtual=True, is_virtual=True)
5796 ## ip-l4-protocol.h (module 'internet'): void ns3::IpL4Protocol::SetDownTarget6(ns3::Callback<void,ns3::Ptr<ns3::Packet>,ns3::Ipv6Address,ns3::Ipv6Address,unsigned char,ns3::Ptr<ns3::Ipv6Route>,ns3::empty,ns3::empty,ns3::empty,ns3::empty> cb) [member function]
5797 cls.add_method('SetDownTarget6',
5798 'void',
5799 [param('ns3::Callback< void, ns3::Ptr< ns3::Packet >, ns3::Ipv6Address, ns3::Ipv6Address, unsigned char, ns3::Ptr< ns3::Ipv6Route >, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'cb')],
5800 is_pure_virtual=True, is_virtual=True)
5801 return
5802
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08005803def register_Ns3Ipv4_methods(root_module, cls):
5804 ## ipv4.h (module 'internet'): ns3::Ipv4::Ipv4(ns3::Ipv4 const & arg0) [copy constructor]
5805 cls.add_constructor([param('ns3::Ipv4 const &', 'arg0')])
5806 ## ipv4.h (module 'internet'): ns3::Ipv4::Ipv4() [constructor]
5807 cls.add_constructor([])
5808 ## ipv4.h (module 'internet'): bool ns3::Ipv4::AddAddress(uint32_t interface, ns3::Ipv4InterfaceAddress address) [member function]
5809 cls.add_method('AddAddress',
5810 'bool',
5811 [param('uint32_t', 'interface'), param('ns3::Ipv4InterfaceAddress', 'address')],
5812 is_pure_virtual=True, is_virtual=True)
5813 ## ipv4.h (module 'internet'): uint32_t ns3::Ipv4::AddInterface(ns3::Ptr<ns3::NetDevice> device) [member function]
5814 cls.add_method('AddInterface',
5815 'uint32_t',
5816 [param('ns3::Ptr< ns3::NetDevice >', 'device')],
5817 is_pure_virtual=True, is_virtual=True)
5818 ## ipv4.h (module 'internet'): ns3::Ipv4InterfaceAddress ns3::Ipv4::GetAddress(uint32_t interface, uint32_t addressIndex) const [member function]
5819 cls.add_method('GetAddress',
5820 'ns3::Ipv4InterfaceAddress',
5821 [param('uint32_t', 'interface'), param('uint32_t', 'addressIndex')],
5822 is_pure_virtual=True, is_const=True, is_virtual=True)
5823 ## ipv4.h (module 'internet'): int32_t ns3::Ipv4::GetInterfaceForAddress(ns3::Ipv4Address address) const [member function]
5824 cls.add_method('GetInterfaceForAddress',
5825 'int32_t',
5826 [param('ns3::Ipv4Address', 'address')],
5827 is_pure_virtual=True, is_const=True, is_virtual=True)
5828 ## ipv4.h (module 'internet'): int32_t ns3::Ipv4::GetInterfaceForDevice(ns3::Ptr<const ns3::NetDevice> device) const [member function]
5829 cls.add_method('GetInterfaceForDevice',
5830 'int32_t',
5831 [param('ns3::Ptr< ns3::NetDevice const >', 'device')],
5832 is_pure_virtual=True, is_const=True, is_virtual=True)
5833 ## ipv4.h (module 'internet'): int32_t ns3::Ipv4::GetInterfaceForPrefix(ns3::Ipv4Address address, ns3::Ipv4Mask mask) const [member function]
5834 cls.add_method('GetInterfaceForPrefix',
5835 'int32_t',
5836 [param('ns3::Ipv4Address', 'address'), param('ns3::Ipv4Mask', 'mask')],
5837 is_pure_virtual=True, is_const=True, is_virtual=True)
5838 ## ipv4.h (module 'internet'): uint16_t ns3::Ipv4::GetMetric(uint32_t interface) const [member function]
5839 cls.add_method('GetMetric',
5840 'uint16_t',
5841 [param('uint32_t', 'interface')],
5842 is_pure_virtual=True, is_const=True, is_virtual=True)
5843 ## ipv4.h (module 'internet'): uint16_t ns3::Ipv4::GetMtu(uint32_t interface) const [member function]
5844 cls.add_method('GetMtu',
5845 'uint16_t',
5846 [param('uint32_t', 'interface')],
5847 is_pure_virtual=True, is_const=True, is_virtual=True)
5848 ## ipv4.h (module 'internet'): uint32_t ns3::Ipv4::GetNAddresses(uint32_t interface) const [member function]
5849 cls.add_method('GetNAddresses',
5850 'uint32_t',
5851 [param('uint32_t', 'interface')],
5852 is_pure_virtual=True, is_const=True, is_virtual=True)
5853 ## ipv4.h (module 'internet'): uint32_t ns3::Ipv4::GetNInterfaces() const [member function]
5854 cls.add_method('GetNInterfaces',
5855 'uint32_t',
5856 [],
5857 is_pure_virtual=True, is_const=True, is_virtual=True)
5858 ## ipv4.h (module 'internet'): ns3::Ptr<ns3::NetDevice> ns3::Ipv4::GetNetDevice(uint32_t interface) [member function]
5859 cls.add_method('GetNetDevice',
5860 'ns3::Ptr< ns3::NetDevice >',
5861 [param('uint32_t', 'interface')],
5862 is_pure_virtual=True, is_virtual=True)
5863 ## ipv4.h (module 'internet'): ns3::Ptr<ns3::Ipv4RoutingProtocol> ns3::Ipv4::GetRoutingProtocol() const [member function]
5864 cls.add_method('GetRoutingProtocol',
5865 'ns3::Ptr< ns3::Ipv4RoutingProtocol >',
5866 [],
5867 is_pure_virtual=True, is_const=True, is_virtual=True)
5868 ## ipv4.h (module 'internet'): static ns3::TypeId ns3::Ipv4::GetTypeId() [member function]
5869 cls.add_method('GetTypeId',
5870 'ns3::TypeId',
5871 [],
5872 is_static=True)
Alexander Afanasyev6f933532012-02-29 13:30:37 -08005873 ## ipv4.h (module 'internet'): void ns3::Ipv4::Insert(ns3::Ptr<ns3::IpL4Protocol> protocol) [member function]
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08005874 cls.add_method('Insert',
5875 'void',
Alexander Afanasyev6f933532012-02-29 13:30:37 -08005876 [param('ns3::Ptr< ns3::IpL4Protocol >', 'protocol')],
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08005877 is_pure_virtual=True, is_virtual=True)
5878 ## ipv4.h (module 'internet'): bool ns3::Ipv4::IsDestinationAddress(ns3::Ipv4Address address, uint32_t iif) const [member function]
5879 cls.add_method('IsDestinationAddress',
5880 'bool',
5881 [param('ns3::Ipv4Address', 'address'), param('uint32_t', 'iif')],
5882 is_pure_virtual=True, is_const=True, is_virtual=True)
5883 ## ipv4.h (module 'internet'): bool ns3::Ipv4::IsForwarding(uint32_t interface) const [member function]
5884 cls.add_method('IsForwarding',
5885 'bool',
5886 [param('uint32_t', 'interface')],
5887 is_pure_virtual=True, is_const=True, is_virtual=True)
5888 ## ipv4.h (module 'internet'): bool ns3::Ipv4::IsUp(uint32_t interface) const [member function]
5889 cls.add_method('IsUp',
5890 'bool',
5891 [param('uint32_t', 'interface')],
5892 is_pure_virtual=True, is_const=True, is_virtual=True)
5893 ## ipv4.h (module 'internet'): bool ns3::Ipv4::RemoveAddress(uint32_t interface, uint32_t addressIndex) [member function]
5894 cls.add_method('RemoveAddress',
5895 'bool',
5896 [param('uint32_t', 'interface'), param('uint32_t', 'addressIndex')],
5897 is_pure_virtual=True, is_virtual=True)
5898 ## ipv4.h (module 'internet'): ns3::Ipv4Address ns3::Ipv4::SelectSourceAddress(ns3::Ptr<const ns3::NetDevice> device, ns3::Ipv4Address dst, ns3::Ipv4InterfaceAddress::InterfaceAddressScope_e scope) [member function]
5899 cls.add_method('SelectSourceAddress',
5900 'ns3::Ipv4Address',
5901 [param('ns3::Ptr< ns3::NetDevice const >', 'device'), param('ns3::Ipv4Address', 'dst'), param('ns3::Ipv4InterfaceAddress::InterfaceAddressScope_e', 'scope')],
5902 is_pure_virtual=True, is_virtual=True)
5903 ## ipv4.h (module 'internet'): void ns3::Ipv4::Send(ns3::Ptr<ns3::Packet> packet, ns3::Ipv4Address source, ns3::Ipv4Address destination, uint8_t protocol, ns3::Ptr<ns3::Ipv4Route> route) [member function]
5904 cls.add_method('Send',
5905 'void',
5906 [param('ns3::Ptr< ns3::Packet >', 'packet'), param('ns3::Ipv4Address', 'source'), param('ns3::Ipv4Address', 'destination'), param('uint8_t', 'protocol'), param('ns3::Ptr< ns3::Ipv4Route >', 'route')],
5907 is_pure_virtual=True, is_virtual=True)
5908 ## ipv4.h (module 'internet'): void ns3::Ipv4::SetDown(uint32_t interface) [member function]
5909 cls.add_method('SetDown',
5910 'void',
5911 [param('uint32_t', 'interface')],
5912 is_pure_virtual=True, is_virtual=True)
5913 ## ipv4.h (module 'internet'): void ns3::Ipv4::SetForwarding(uint32_t interface, bool val) [member function]
5914 cls.add_method('SetForwarding',
5915 'void',
5916 [param('uint32_t', 'interface'), param('bool', 'val')],
5917 is_pure_virtual=True, is_virtual=True)
5918 ## ipv4.h (module 'internet'): void ns3::Ipv4::SetMetric(uint32_t interface, uint16_t metric) [member function]
5919 cls.add_method('SetMetric',
5920 'void',
5921 [param('uint32_t', 'interface'), param('uint16_t', 'metric')],
5922 is_pure_virtual=True, is_virtual=True)
5923 ## ipv4.h (module 'internet'): void ns3::Ipv4::SetRoutingProtocol(ns3::Ptr<ns3::Ipv4RoutingProtocol> routingProtocol) [member function]
5924 cls.add_method('SetRoutingProtocol',
5925 'void',
5926 [param('ns3::Ptr< ns3::Ipv4RoutingProtocol >', 'routingProtocol')],
5927 is_pure_virtual=True, is_virtual=True)
5928 ## ipv4.h (module 'internet'): void ns3::Ipv4::SetUp(uint32_t interface) [member function]
5929 cls.add_method('SetUp',
5930 'void',
5931 [param('uint32_t', 'interface')],
5932 is_pure_virtual=True, is_virtual=True)
5933 ## ipv4.h (module 'internet'): ns3::Ipv4::IF_ANY [variable]
5934 cls.add_static_attribute('IF_ANY', 'uint32_t const', is_const=True)
5935 ## ipv4.h (module 'internet'): bool ns3::Ipv4::GetIpForward() const [member function]
5936 cls.add_method('GetIpForward',
5937 'bool',
5938 [],
5939 is_pure_virtual=True, is_const=True, visibility='private', is_virtual=True)
5940 ## ipv4.h (module 'internet'): bool ns3::Ipv4::GetWeakEsModel() const [member function]
5941 cls.add_method('GetWeakEsModel',
5942 'bool',
5943 [],
5944 is_pure_virtual=True, is_const=True, visibility='private', is_virtual=True)
5945 ## ipv4.h (module 'internet'): void ns3::Ipv4::SetIpForward(bool forward) [member function]
5946 cls.add_method('SetIpForward',
5947 'void',
5948 [param('bool', 'forward')],
5949 is_pure_virtual=True, visibility='private', is_virtual=True)
5950 ## ipv4.h (module 'internet'): void ns3::Ipv4::SetWeakEsModel(bool model) [member function]
5951 cls.add_method('SetWeakEsModel',
5952 'void',
5953 [param('bool', 'model')],
5954 is_pure_virtual=True, visibility='private', is_virtual=True)
5955 return
5956
Alexander Afanasyev381dea02011-11-03 08:33:26 -07005957def register_Ns3Ipv4AddressChecker_methods(root_module, cls):
5958 ## ipv4-address.h (module 'network'): ns3::Ipv4AddressChecker::Ipv4AddressChecker() [constructor]
5959 cls.add_constructor([])
5960 ## ipv4-address.h (module 'network'): ns3::Ipv4AddressChecker::Ipv4AddressChecker(ns3::Ipv4AddressChecker const & arg0) [copy constructor]
5961 cls.add_constructor([param('ns3::Ipv4AddressChecker const &', 'arg0')])
5962 return
5963
5964def register_Ns3Ipv4AddressValue_methods(root_module, cls):
5965 ## ipv4-address.h (module 'network'): ns3::Ipv4AddressValue::Ipv4AddressValue() [constructor]
5966 cls.add_constructor([])
5967 ## ipv4-address.h (module 'network'): ns3::Ipv4AddressValue::Ipv4AddressValue(ns3::Ipv4AddressValue const & arg0) [copy constructor]
5968 cls.add_constructor([param('ns3::Ipv4AddressValue const &', 'arg0')])
5969 ## ipv4-address.h (module 'network'): ns3::Ipv4AddressValue::Ipv4AddressValue(ns3::Ipv4Address const & value) [constructor]
5970 cls.add_constructor([param('ns3::Ipv4Address const &', 'value')])
5971 ## ipv4-address.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::Ipv4AddressValue::Copy() const [member function]
5972 cls.add_method('Copy',
5973 'ns3::Ptr< ns3::AttributeValue >',
5974 [],
5975 is_const=True, is_virtual=True)
5976 ## ipv4-address.h (module 'network'): bool ns3::Ipv4AddressValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
5977 cls.add_method('DeserializeFromString',
5978 'bool',
5979 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
5980 is_virtual=True)
5981 ## ipv4-address.h (module 'network'): ns3::Ipv4Address ns3::Ipv4AddressValue::Get() const [member function]
5982 cls.add_method('Get',
5983 'ns3::Ipv4Address',
5984 [],
5985 is_const=True)
5986 ## ipv4-address.h (module 'network'): std::string ns3::Ipv4AddressValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
5987 cls.add_method('SerializeToString',
5988 'std::string',
5989 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
5990 is_const=True, is_virtual=True)
5991 ## ipv4-address.h (module 'network'): void ns3::Ipv4AddressValue::Set(ns3::Ipv4Address const & value) [member function]
5992 cls.add_method('Set',
5993 'void',
5994 [param('ns3::Ipv4Address const &', 'value')])
5995 return
5996
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08005997def register_Ns3Ipv4AppTracer_methods(root_module, cls):
5998 cls.add_output_stream_operator()
5999 ## ipv4-app-tracer.h (module 'NDNabstraction'): ns3::Ipv4AppTracer::Ipv4AppTracer(ns3::Ipv4AppTracer const & arg0) [copy constructor]
6000 cls.add_constructor([param('ns3::Ipv4AppTracer const &', 'arg0')])
6001 ## ipv4-app-tracer.h (module 'NDNabstraction'): ns3::Ipv4AppTracer::Ipv4AppTracer(ns3::Ptr<ns3::Node> node, std::string const & appId="*") [constructor]
6002 cls.add_constructor([param('ns3::Ptr< ns3::Node >', 'node'), param('std::string const &', 'appId', default_value='"*"')])
6003 ## ipv4-app-tracer.h (module 'NDNabstraction'): void ns3::Ipv4AppTracer::Connect() [member function]
6004 cls.add_method('Connect',
6005 'void',
6006 [])
6007 ## ipv4-app-tracer.h (module 'NDNabstraction'): void ns3::Ipv4AppTracer::Print(std::ostream & os) const [member function]
6008 cls.add_method('Print',
6009 'void',
6010 [param('std::ostream &', 'os')],
6011 is_pure_virtual=True, is_const=True, is_virtual=True)
6012 ## ipv4-app-tracer.h (module 'NDNabstraction'): void ns3::Ipv4AppTracer::PrintHeader(std::ostream & os) const [member function]
6013 cls.add_method('PrintHeader',
6014 'void',
6015 [param('std::ostream &', 'os')],
6016 is_pure_virtual=True, is_const=True, is_virtual=True)
6017 ## ipv4-app-tracer.h (module 'NDNabstraction'): void ns3::Ipv4AppTracer::Rx(std::string context, ns3::Ipv4Header const & arg1, ns3::Ptr<const ns3::Packet> arg2, uint32_t arg3) [member function]
6018 cls.add_method('Rx',
6019 'void',
6020 [param('std::string', 'context'), param('ns3::Ipv4Header const &', 'arg1'), param('ns3::Ptr< ns3::Packet const >', 'arg2'), param('uint32_t', 'arg3')],
6021 is_pure_virtual=True, is_virtual=True)
6022 ## ipv4-app-tracer.h (module 'NDNabstraction'): void ns3::Ipv4AppTracer::Tx(std::string context, ns3::Ipv4Header const & arg1, ns3::Ptr<const ns3::Packet> arg2, uint32_t arg3) [member function]
6023 cls.add_method('Tx',
6024 'void',
6025 [param('std::string', 'context'), param('ns3::Ipv4Header const &', 'arg1'), param('ns3::Ptr< ns3::Packet const >', 'arg2'), param('uint32_t', 'arg3')],
6026 is_pure_virtual=True, is_virtual=True)
6027 return
6028
Alexander Afanasyev03d92e42012-02-01 21:06:53 -08006029def register_Ns3Ipv4L3Protocol_methods(root_module, cls):
6030 ## ipv4-l3-protocol.h (module 'internet'): ns3::Ipv4L3Protocol::Ipv4L3Protocol() [constructor]
6031 cls.add_constructor([])
6032 ## ipv4-l3-protocol.h (module 'internet'): bool ns3::Ipv4L3Protocol::AddAddress(uint32_t i, ns3::Ipv4InterfaceAddress address) [member function]
6033 cls.add_method('AddAddress',
6034 'bool',
6035 [param('uint32_t', 'i'), param('ns3::Ipv4InterfaceAddress', 'address')],
6036 is_virtual=True)
6037 ## ipv4-l3-protocol.h (module 'internet'): uint32_t ns3::Ipv4L3Protocol::AddInterface(ns3::Ptr<ns3::NetDevice> device) [member function]
6038 cls.add_method('AddInterface',
6039 'uint32_t',
6040 [param('ns3::Ptr< ns3::NetDevice >', 'device')],
6041 is_virtual=True)
6042 ## ipv4-l3-protocol.h (module 'internet'): ns3::Ptr<ns3::Socket> ns3::Ipv4L3Protocol::CreateRawSocket() [member function]
6043 cls.add_method('CreateRawSocket',
6044 'ns3::Ptr< ns3::Socket >',
6045 [])
6046 ## ipv4-l3-protocol.h (module 'internet'): void ns3::Ipv4L3Protocol::DeleteRawSocket(ns3::Ptr<ns3::Socket> socket) [member function]
6047 cls.add_method('DeleteRawSocket',
6048 'void',
6049 [param('ns3::Ptr< ns3::Socket >', 'socket')])
6050 ## ipv4-l3-protocol.h (module 'internet'): ns3::Ipv4InterfaceAddress ns3::Ipv4L3Protocol::GetAddress(uint32_t interfaceIndex, uint32_t addressIndex) const [member function]
6051 cls.add_method('GetAddress',
6052 'ns3::Ipv4InterfaceAddress',
6053 [param('uint32_t', 'interfaceIndex'), param('uint32_t', 'addressIndex')],
6054 is_const=True, is_virtual=True)
6055 ## ipv4-l3-protocol.h (module 'internet'): ns3::Ptr<ns3::Ipv4Interface> ns3::Ipv4L3Protocol::GetInterface(uint32_t i) const [member function]
6056 cls.add_method('GetInterface',
6057 'ns3::Ptr< ns3::Ipv4Interface >',
6058 [param('uint32_t', 'i')],
6059 is_const=True)
6060 ## ipv4-l3-protocol.h (module 'internet'): int32_t ns3::Ipv4L3Protocol::GetInterfaceForAddress(ns3::Ipv4Address addr) const [member function]
6061 cls.add_method('GetInterfaceForAddress',
6062 'int32_t',
6063 [param('ns3::Ipv4Address', 'addr')],
6064 is_const=True, is_virtual=True)
6065 ## ipv4-l3-protocol.h (module 'internet'): int32_t ns3::Ipv4L3Protocol::GetInterfaceForDevice(ns3::Ptr<const ns3::NetDevice> device) const [member function]
6066 cls.add_method('GetInterfaceForDevice',
6067 'int32_t',
6068 [param('ns3::Ptr< ns3::NetDevice const >', 'device')],
6069 is_const=True, is_virtual=True)
6070 ## ipv4-l3-protocol.h (module 'internet'): int32_t ns3::Ipv4L3Protocol::GetInterfaceForPrefix(ns3::Ipv4Address addr, ns3::Ipv4Mask mask) const [member function]
6071 cls.add_method('GetInterfaceForPrefix',
6072 'int32_t',
6073 [param('ns3::Ipv4Address', 'addr'), param('ns3::Ipv4Mask', 'mask')],
6074 is_const=True, is_virtual=True)
6075 ## ipv4-l3-protocol.h (module 'internet'): uint16_t ns3::Ipv4L3Protocol::GetMetric(uint32_t i) const [member function]
6076 cls.add_method('GetMetric',
6077 'uint16_t',
6078 [param('uint32_t', 'i')],
6079 is_const=True, is_virtual=True)
6080 ## ipv4-l3-protocol.h (module 'internet'): uint16_t ns3::Ipv4L3Protocol::GetMtu(uint32_t i) const [member function]
6081 cls.add_method('GetMtu',
6082 'uint16_t',
6083 [param('uint32_t', 'i')],
6084 is_const=True, is_virtual=True)
6085 ## ipv4-l3-protocol.h (module 'internet'): uint32_t ns3::Ipv4L3Protocol::GetNAddresses(uint32_t interface) const [member function]
6086 cls.add_method('GetNAddresses',
6087 'uint32_t',
6088 [param('uint32_t', 'interface')],
6089 is_const=True, is_virtual=True)
6090 ## ipv4-l3-protocol.h (module 'internet'): uint32_t ns3::Ipv4L3Protocol::GetNInterfaces() const [member function]
6091 cls.add_method('GetNInterfaces',
6092 'uint32_t',
6093 [],
6094 is_const=True, is_virtual=True)
6095 ## ipv4-l3-protocol.h (module 'internet'): ns3::Ptr<ns3::NetDevice> ns3::Ipv4L3Protocol::GetNetDevice(uint32_t i) [member function]
6096 cls.add_method('GetNetDevice',
6097 'ns3::Ptr< ns3::NetDevice >',
6098 [param('uint32_t', 'i')],
6099 is_virtual=True)
Alexander Afanasyev6f933532012-02-29 13:30:37 -08006100 ## ipv4-l3-protocol.h (module 'internet'): ns3::Ptr<ns3::IpL4Protocol> ns3::Ipv4L3Protocol::GetProtocol(int protocolNumber) const [member function]
Alexander Afanasyev03d92e42012-02-01 21:06:53 -08006101 cls.add_method('GetProtocol',
Alexander Afanasyev6f933532012-02-29 13:30:37 -08006102 'ns3::Ptr< ns3::IpL4Protocol >',
Alexander Afanasyev03d92e42012-02-01 21:06:53 -08006103 [param('int', 'protocolNumber')],
6104 is_const=True)
6105 ## ipv4-l3-protocol.h (module 'internet'): ns3::Ptr<ns3::Ipv4RoutingProtocol> ns3::Ipv4L3Protocol::GetRoutingProtocol() const [member function]
6106 cls.add_method('GetRoutingProtocol',
6107 'ns3::Ptr< ns3::Ipv4RoutingProtocol >',
6108 [],
6109 is_const=True, is_virtual=True)
6110 ## ipv4-l3-protocol.h (module 'internet'): static ns3::TypeId ns3::Ipv4L3Protocol::GetTypeId() [member function]
6111 cls.add_method('GetTypeId',
6112 'ns3::TypeId',
6113 [],
6114 is_static=True)
Alexander Afanasyev6f933532012-02-29 13:30:37 -08006115 ## ipv4-l3-protocol.h (module 'internet'): void ns3::Ipv4L3Protocol::Insert(ns3::Ptr<ns3::IpL4Protocol> protocol) [member function]
Alexander Afanasyev03d92e42012-02-01 21:06:53 -08006116 cls.add_method('Insert',
6117 'void',
Alexander Afanasyev6f933532012-02-29 13:30:37 -08006118 [param('ns3::Ptr< ns3::IpL4Protocol >', 'protocol')],
Alexander Afanasyev03d92e42012-02-01 21:06:53 -08006119 is_virtual=True)
6120 ## ipv4-l3-protocol.h (module 'internet'): bool ns3::Ipv4L3Protocol::IsDestinationAddress(ns3::Ipv4Address address, uint32_t iif) const [member function]
6121 cls.add_method('IsDestinationAddress',
6122 'bool',
6123 [param('ns3::Ipv4Address', 'address'), param('uint32_t', 'iif')],
6124 is_const=True, is_virtual=True)
6125 ## ipv4-l3-protocol.h (module 'internet'): bool ns3::Ipv4L3Protocol::IsForwarding(uint32_t i) const [member function]
6126 cls.add_method('IsForwarding',
6127 'bool',
6128 [param('uint32_t', 'i')],
6129 is_const=True, is_virtual=True)
6130 ## ipv4-l3-protocol.h (module 'internet'): bool ns3::Ipv4L3Protocol::IsUp(uint32_t i) const [member function]
6131 cls.add_method('IsUp',
6132 'bool',
6133 [param('uint32_t', 'i')],
6134 is_const=True, is_virtual=True)
6135 ## ipv4-l3-protocol.h (module 'internet'): void ns3::Ipv4L3Protocol::Receive(ns3::Ptr<ns3::NetDevice> device, ns3::Ptr<const ns3::Packet> p, uint16_t protocol, ns3::Address const & from, ns3::Address const & to, ns3::NetDevice::PacketType packetType) [member function]
6136 cls.add_method('Receive',
6137 'void',
6138 [param('ns3::Ptr< ns3::NetDevice >', 'device'), param('ns3::Ptr< ns3::Packet const >', 'p'), param('uint16_t', 'protocol'), param('ns3::Address const &', 'from'), param('ns3::Address const &', 'to'), param('ns3::NetDevice::PacketType', 'packetType')])
Alexander Afanasyev6f933532012-02-29 13:30:37 -08006139 ## ipv4-l3-protocol.h (module 'internet'): void ns3::Ipv4L3Protocol::Remove(ns3::Ptr<ns3::IpL4Protocol> protocol) [member function]
Alexander Afanasyev03d92e42012-02-01 21:06:53 -08006140 cls.add_method('Remove',
6141 'void',
Alexander Afanasyev6f933532012-02-29 13:30:37 -08006142 [param('ns3::Ptr< ns3::IpL4Protocol >', 'protocol')])
Alexander Afanasyev03d92e42012-02-01 21:06:53 -08006143 ## ipv4-l3-protocol.h (module 'internet'): bool ns3::Ipv4L3Protocol::RemoveAddress(uint32_t interfaceIndex, uint32_t addressIndex) [member function]
6144 cls.add_method('RemoveAddress',
6145 'bool',
6146 [param('uint32_t', 'interfaceIndex'), param('uint32_t', 'addressIndex')],
6147 is_virtual=True)
6148 ## ipv4-l3-protocol.h (module 'internet'): ns3::Ipv4Address ns3::Ipv4L3Protocol::SelectSourceAddress(ns3::Ptr<const ns3::NetDevice> device, ns3::Ipv4Address dst, ns3::Ipv4InterfaceAddress::InterfaceAddressScope_e scope) [member function]
6149 cls.add_method('SelectSourceAddress',
6150 'ns3::Ipv4Address',
6151 [param('ns3::Ptr< ns3::NetDevice const >', 'device'), param('ns3::Ipv4Address', 'dst'), param('ns3::Ipv4InterfaceAddress::InterfaceAddressScope_e', 'scope')],
6152 is_virtual=True)
6153 ## ipv4-l3-protocol.h (module 'internet'): void ns3::Ipv4L3Protocol::Send(ns3::Ptr<ns3::Packet> packet, ns3::Ipv4Address source, ns3::Ipv4Address destination, uint8_t protocol, ns3::Ptr<ns3::Ipv4Route> route) [member function]
6154 cls.add_method('Send',
6155 'void',
6156 [param('ns3::Ptr< ns3::Packet >', 'packet'), param('ns3::Ipv4Address', 'source'), param('ns3::Ipv4Address', 'destination'), param('uint8_t', 'protocol'), param('ns3::Ptr< ns3::Ipv4Route >', 'route')],
6157 is_virtual=True)
6158 ## ipv4-l3-protocol.h (module 'internet'): void ns3::Ipv4L3Protocol::SendWithHeader(ns3::Ptr<ns3::Packet> packet, ns3::Ipv4Header ipHeader, ns3::Ptr<ns3::Ipv4Route> route) [member function]
6159 cls.add_method('SendWithHeader',
6160 'void',
6161 [param('ns3::Ptr< ns3::Packet >', 'packet'), param('ns3::Ipv4Header', 'ipHeader'), param('ns3::Ptr< ns3::Ipv4Route >', 'route')])
6162 ## ipv4-l3-protocol.h (module 'internet'): void ns3::Ipv4L3Protocol::SetDefaultTtl(uint8_t ttl) [member function]
6163 cls.add_method('SetDefaultTtl',
6164 'void',
6165 [param('uint8_t', 'ttl')])
6166 ## ipv4-l3-protocol.h (module 'internet'): void ns3::Ipv4L3Protocol::SetDown(uint32_t i) [member function]
6167 cls.add_method('SetDown',
6168 'void',
6169 [param('uint32_t', 'i')],
6170 is_virtual=True)
6171 ## ipv4-l3-protocol.h (module 'internet'): void ns3::Ipv4L3Protocol::SetForwarding(uint32_t i, bool val) [member function]
6172 cls.add_method('SetForwarding',
6173 'void',
6174 [param('uint32_t', 'i'), param('bool', 'val')],
6175 is_virtual=True)
6176 ## ipv4-l3-protocol.h (module 'internet'): void ns3::Ipv4L3Protocol::SetMetric(uint32_t i, uint16_t metric) [member function]
6177 cls.add_method('SetMetric',
6178 'void',
6179 [param('uint32_t', 'i'), param('uint16_t', 'metric')],
6180 is_virtual=True)
6181 ## ipv4-l3-protocol.h (module 'internet'): void ns3::Ipv4L3Protocol::SetNode(ns3::Ptr<ns3::Node> node) [member function]
6182 cls.add_method('SetNode',
6183 'void',
6184 [param('ns3::Ptr< ns3::Node >', 'node')])
6185 ## ipv4-l3-protocol.h (module 'internet'): void ns3::Ipv4L3Protocol::SetRoutingProtocol(ns3::Ptr<ns3::Ipv4RoutingProtocol> routingProtocol) [member function]
6186 cls.add_method('SetRoutingProtocol',
6187 'void',
6188 [param('ns3::Ptr< ns3::Ipv4RoutingProtocol >', 'routingProtocol')],
6189 is_virtual=True)
6190 ## ipv4-l3-protocol.h (module 'internet'): void ns3::Ipv4L3Protocol::SetUp(uint32_t i) [member function]
6191 cls.add_method('SetUp',
6192 'void',
6193 [param('uint32_t', 'i')],
6194 is_virtual=True)
6195 ## ipv4-l3-protocol.h (module 'internet'): ns3::Ipv4L3Protocol::PROT_NUMBER [variable]
6196 cls.add_static_attribute('PROT_NUMBER', 'uint16_t const', is_const=True)
6197 ## ipv4-l3-protocol.h (module 'internet'): void ns3::Ipv4L3Protocol::DoDispose() [member function]
6198 cls.add_method('DoDispose',
6199 'void',
6200 [],
6201 visibility='protected', is_virtual=True)
6202 ## ipv4-l3-protocol.h (module 'internet'): void ns3::Ipv4L3Protocol::NotifyNewAggregate() [member function]
6203 cls.add_method('NotifyNewAggregate',
6204 'void',
6205 [],
6206 visibility='protected', is_virtual=True)
6207 ## ipv4-l3-protocol.h (module 'internet'): bool ns3::Ipv4L3Protocol::GetIpForward() const [member function]
6208 cls.add_method('GetIpForward',
6209 'bool',
6210 [],
6211 is_const=True, visibility='private', is_virtual=True)
6212 ## ipv4-l3-protocol.h (module 'internet'): bool ns3::Ipv4L3Protocol::GetWeakEsModel() const [member function]
6213 cls.add_method('GetWeakEsModel',
6214 'bool',
6215 [],
6216 is_const=True, visibility='private', is_virtual=True)
6217 ## ipv4-l3-protocol.h (module 'internet'): void ns3::Ipv4L3Protocol::SetIpForward(bool forward) [member function]
6218 cls.add_method('SetIpForward',
6219 'void',
6220 [param('bool', 'forward')],
6221 visibility='private', is_virtual=True)
6222 ## ipv4-l3-protocol.h (module 'internet'): void ns3::Ipv4L3Protocol::SetWeakEsModel(bool model) [member function]
6223 cls.add_method('SetWeakEsModel',
6224 'void',
6225 [param('bool', 'model')],
6226 visibility='private', is_virtual=True)
6227 return
6228
6229def register_Ns3Ipv4L3Tracer_methods(root_module, cls):
6230 cls.add_output_stream_operator()
6231 ## ipv4-l3-tracer.h (module 'NDNabstraction'): ns3::Ipv4L3Tracer::Ipv4L3Tracer(ns3::Ipv4L3Tracer const & arg0) [copy constructor]
6232 cls.add_constructor([param('ns3::Ipv4L3Tracer const &', 'arg0')])
6233 ## ipv4-l3-tracer.h (module 'NDNabstraction'): ns3::Ipv4L3Tracer::Ipv4L3Tracer(ns3::Ptr<ns3::Node> node) [constructor]
6234 cls.add_constructor([param('ns3::Ptr< ns3::Node >', 'node')])
6235 ## ipv4-l3-tracer.h (module 'NDNabstraction'): void ns3::Ipv4L3Tracer::Connect() [member function]
6236 cls.add_method('Connect',
6237 'void',
6238 [])
6239 ## ipv4-l3-tracer.h (module 'NDNabstraction'): void ns3::Ipv4L3Tracer::Drop(std::string context, ns3::Ipv4Header const & arg1, ns3::Ptr<const ns3::Packet> arg2, ns3::Ipv4L3Protocol::DropReason arg3, ns3::Ptr<ns3::Ipv4> arg4, uint32_t arg5) [member function]
6240 cls.add_method('Drop',
6241 'void',
6242 [param('std::string', 'context'), param('ns3::Ipv4Header const &', 'arg1'), param('ns3::Ptr< ns3::Packet const >', 'arg2'), param('ns3::Ipv4L3Protocol::DropReason', 'arg3'), param('ns3::Ptr< ns3::Ipv4 >', 'arg4'), param('uint32_t', 'arg5')],
6243 is_pure_virtual=True, is_virtual=True)
6244 ## ipv4-l3-tracer.h (module 'NDNabstraction'): void ns3::Ipv4L3Tracer::Print(std::ostream & os) const [member function]
6245 cls.add_method('Print',
6246 'void',
6247 [param('std::ostream &', 'os')],
6248 is_pure_virtual=True, is_const=True, is_virtual=True)
6249 ## ipv4-l3-tracer.h (module 'NDNabstraction'): void ns3::Ipv4L3Tracer::PrintHeader(std::ostream & os) const [member function]
6250 cls.add_method('PrintHeader',
6251 'void',
6252 [param('std::ostream &', 'os')],
6253 is_pure_virtual=True, is_const=True, is_virtual=True)
6254 ## ipv4-l3-tracer.h (module 'NDNabstraction'): void ns3::Ipv4L3Tracer::Rx(std::string context, ns3::Ptr<const ns3::Packet> arg1, ns3::Ptr<ns3::Ipv4> arg2, uint32_t arg3) [member function]
6255 cls.add_method('Rx',
6256 'void',
6257 [param('std::string', 'context'), param('ns3::Ptr< ns3::Packet const >', 'arg1'), param('ns3::Ptr< ns3::Ipv4 >', 'arg2'), param('uint32_t', 'arg3')],
6258 is_pure_virtual=True, is_virtual=True)
6259 ## ipv4-l3-tracer.h (module 'NDNabstraction'): void ns3::Ipv4L3Tracer::Tx(std::string context, ns3::Ptr<const ns3::Packet> arg1, ns3::Ptr<ns3::Ipv4> arg2, uint32_t arg3) [member function]
6260 cls.add_method('Tx',
6261 'void',
6262 [param('std::string', 'context'), param('ns3::Ptr< ns3::Packet const >', 'arg1'), param('ns3::Ptr< ns3::Ipv4 >', 'arg2'), param('uint32_t', 'arg3')],
6263 is_pure_virtual=True, is_virtual=True)
6264 return
6265
Alexander Afanasyev381dea02011-11-03 08:33:26 -07006266def register_Ns3Ipv4MaskChecker_methods(root_module, cls):
6267 ## ipv4-address.h (module 'network'): ns3::Ipv4MaskChecker::Ipv4MaskChecker() [constructor]
6268 cls.add_constructor([])
6269 ## ipv4-address.h (module 'network'): ns3::Ipv4MaskChecker::Ipv4MaskChecker(ns3::Ipv4MaskChecker const & arg0) [copy constructor]
6270 cls.add_constructor([param('ns3::Ipv4MaskChecker const &', 'arg0')])
6271 return
6272
6273def register_Ns3Ipv4MaskValue_methods(root_module, cls):
6274 ## ipv4-address.h (module 'network'): ns3::Ipv4MaskValue::Ipv4MaskValue() [constructor]
6275 cls.add_constructor([])
6276 ## ipv4-address.h (module 'network'): ns3::Ipv4MaskValue::Ipv4MaskValue(ns3::Ipv4MaskValue const & arg0) [copy constructor]
6277 cls.add_constructor([param('ns3::Ipv4MaskValue const &', 'arg0')])
6278 ## ipv4-address.h (module 'network'): ns3::Ipv4MaskValue::Ipv4MaskValue(ns3::Ipv4Mask const & value) [constructor]
6279 cls.add_constructor([param('ns3::Ipv4Mask const &', 'value')])
6280 ## ipv4-address.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::Ipv4MaskValue::Copy() const [member function]
6281 cls.add_method('Copy',
6282 'ns3::Ptr< ns3::AttributeValue >',
6283 [],
6284 is_const=True, is_virtual=True)
6285 ## ipv4-address.h (module 'network'): bool ns3::Ipv4MaskValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
6286 cls.add_method('DeserializeFromString',
6287 'bool',
6288 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
6289 is_virtual=True)
6290 ## ipv4-address.h (module 'network'): ns3::Ipv4Mask ns3::Ipv4MaskValue::Get() const [member function]
6291 cls.add_method('Get',
6292 'ns3::Ipv4Mask',
6293 [],
6294 is_const=True)
6295 ## ipv4-address.h (module 'network'): std::string ns3::Ipv4MaskValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
6296 cls.add_method('SerializeToString',
6297 'std::string',
6298 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
6299 is_const=True, is_virtual=True)
6300 ## ipv4-address.h (module 'network'): void ns3::Ipv4MaskValue::Set(ns3::Ipv4Mask const & value) [member function]
6301 cls.add_method('Set',
6302 'void',
6303 [param('ns3::Ipv4Mask const &', 'value')])
6304 return
6305
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08006306def register_Ns3Ipv4MulticastRoute_methods(root_module, cls):
6307 ## ipv4-route.h (module 'internet'): ns3::Ipv4MulticastRoute::Ipv4MulticastRoute(ns3::Ipv4MulticastRoute const & arg0) [copy constructor]
6308 cls.add_constructor([param('ns3::Ipv4MulticastRoute const &', 'arg0')])
6309 ## ipv4-route.h (module 'internet'): ns3::Ipv4MulticastRoute::Ipv4MulticastRoute() [constructor]
6310 cls.add_constructor([])
6311 ## ipv4-route.h (module 'internet'): ns3::Ipv4Address ns3::Ipv4MulticastRoute::GetGroup() const [member function]
6312 cls.add_method('GetGroup',
6313 'ns3::Ipv4Address',
6314 [],
6315 is_const=True)
6316 ## ipv4-route.h (module 'internet'): ns3::Ipv4Address ns3::Ipv4MulticastRoute::GetOrigin() const [member function]
6317 cls.add_method('GetOrigin',
6318 'ns3::Ipv4Address',
6319 [],
6320 is_const=True)
6321 ## ipv4-route.h (module 'internet'): uint32_t ns3::Ipv4MulticastRoute::GetOutputTtl(uint32_t oif) [member function]
6322 cls.add_method('GetOutputTtl',
6323 'uint32_t',
6324 [param('uint32_t', 'oif')],
6325 deprecated=True)
6326 ## ipv4-route.h (module 'internet'): std::map<unsigned int, unsigned int, std::less<unsigned int>, std::allocator<std::pair<unsigned int const, unsigned int> > > ns3::Ipv4MulticastRoute::GetOutputTtlMap() const [member function]
6327 cls.add_method('GetOutputTtlMap',
6328 'std::map< unsigned int, unsigned int >',
6329 [],
6330 is_const=True)
6331 ## ipv4-route.h (module 'internet'): uint32_t ns3::Ipv4MulticastRoute::GetParent() const [member function]
6332 cls.add_method('GetParent',
6333 'uint32_t',
6334 [],
6335 is_const=True)
6336 ## ipv4-route.h (module 'internet'): void ns3::Ipv4MulticastRoute::SetGroup(ns3::Ipv4Address const group) [member function]
6337 cls.add_method('SetGroup',
6338 'void',
6339 [param('ns3::Ipv4Address const', 'group')])
6340 ## ipv4-route.h (module 'internet'): void ns3::Ipv4MulticastRoute::SetOrigin(ns3::Ipv4Address const origin) [member function]
6341 cls.add_method('SetOrigin',
6342 'void',
6343 [param('ns3::Ipv4Address const', 'origin')])
6344 ## ipv4-route.h (module 'internet'): void ns3::Ipv4MulticastRoute::SetOutputTtl(uint32_t oif, uint32_t ttl) [member function]
6345 cls.add_method('SetOutputTtl',
6346 'void',
6347 [param('uint32_t', 'oif'), param('uint32_t', 'ttl')])
6348 ## ipv4-route.h (module 'internet'): void ns3::Ipv4MulticastRoute::SetParent(uint32_t iif) [member function]
6349 cls.add_method('SetParent',
6350 'void',
6351 [param('uint32_t', 'iif')])
6352 ## ipv4-route.h (module 'internet'): ns3::Ipv4MulticastRoute::MAX_INTERFACES [variable]
6353 cls.add_static_attribute('MAX_INTERFACES', 'uint32_t const', is_const=True)
6354 ## ipv4-route.h (module 'internet'): ns3::Ipv4MulticastRoute::MAX_TTL [variable]
6355 cls.add_static_attribute('MAX_TTL', 'uint32_t const', is_const=True)
6356 return
6357
6358def register_Ns3Ipv4Route_methods(root_module, cls):
6359 cls.add_output_stream_operator()
6360 ## ipv4-route.h (module 'internet'): ns3::Ipv4Route::Ipv4Route(ns3::Ipv4Route const & arg0) [copy constructor]
6361 cls.add_constructor([param('ns3::Ipv4Route const &', 'arg0')])
6362 ## ipv4-route.h (module 'internet'): ns3::Ipv4Route::Ipv4Route() [constructor]
6363 cls.add_constructor([])
6364 ## ipv4-route.h (module 'internet'): ns3::Ipv4Address ns3::Ipv4Route::GetDestination() const [member function]
6365 cls.add_method('GetDestination',
6366 'ns3::Ipv4Address',
6367 [],
6368 is_const=True)
6369 ## ipv4-route.h (module 'internet'): ns3::Ipv4Address ns3::Ipv4Route::GetGateway() const [member function]
6370 cls.add_method('GetGateway',
6371 'ns3::Ipv4Address',
6372 [],
6373 is_const=True)
6374 ## ipv4-route.h (module 'internet'): ns3::Ptr<ns3::NetDevice> ns3::Ipv4Route::GetOutputDevice() const [member function]
6375 cls.add_method('GetOutputDevice',
6376 'ns3::Ptr< ns3::NetDevice >',
6377 [],
6378 is_const=True)
6379 ## ipv4-route.h (module 'internet'): ns3::Ipv4Address ns3::Ipv4Route::GetSource() const [member function]
6380 cls.add_method('GetSource',
6381 'ns3::Ipv4Address',
6382 [],
6383 is_const=True)
6384 ## ipv4-route.h (module 'internet'): void ns3::Ipv4Route::SetDestination(ns3::Ipv4Address dest) [member function]
6385 cls.add_method('SetDestination',
6386 'void',
6387 [param('ns3::Ipv4Address', 'dest')])
6388 ## ipv4-route.h (module 'internet'): void ns3::Ipv4Route::SetGateway(ns3::Ipv4Address gw) [member function]
6389 cls.add_method('SetGateway',
6390 'void',
6391 [param('ns3::Ipv4Address', 'gw')])
6392 ## ipv4-route.h (module 'internet'): void ns3::Ipv4Route::SetOutputDevice(ns3::Ptr<ns3::NetDevice> outputDevice) [member function]
6393 cls.add_method('SetOutputDevice',
6394 'void',
6395 [param('ns3::Ptr< ns3::NetDevice >', 'outputDevice')])
6396 ## ipv4-route.h (module 'internet'): void ns3::Ipv4Route::SetSource(ns3::Ipv4Address src) [member function]
6397 cls.add_method('SetSource',
6398 'void',
6399 [param('ns3::Ipv4Address', 'src')])
6400 return
6401
Alexander Afanasyev03d92e42012-02-01 21:06:53 -08006402def register_Ns3Ipv4RoutingProtocol_methods(root_module, cls):
6403 ## ipv4-routing-protocol.h (module 'internet'): ns3::Ipv4RoutingProtocol::Ipv4RoutingProtocol() [constructor]
6404 cls.add_constructor([])
6405 ## ipv4-routing-protocol.h (module 'internet'): ns3::Ipv4RoutingProtocol::Ipv4RoutingProtocol(ns3::Ipv4RoutingProtocol const & arg0) [copy constructor]
6406 cls.add_constructor([param('ns3::Ipv4RoutingProtocol const &', 'arg0')])
6407 ## ipv4-routing-protocol.h (module 'internet'): static ns3::TypeId ns3::Ipv4RoutingProtocol::GetTypeId() [member function]
6408 cls.add_method('GetTypeId',
6409 'ns3::TypeId',
6410 [],
6411 is_static=True)
6412 ## ipv4-routing-protocol.h (module 'internet'): void ns3::Ipv4RoutingProtocol::NotifyAddAddress(uint32_t interface, ns3::Ipv4InterfaceAddress address) [member function]
6413 cls.add_method('NotifyAddAddress',
6414 'void',
6415 [param('uint32_t', 'interface'), param('ns3::Ipv4InterfaceAddress', 'address')],
6416 is_pure_virtual=True, is_virtual=True)
6417 ## ipv4-routing-protocol.h (module 'internet'): void ns3::Ipv4RoutingProtocol::NotifyInterfaceDown(uint32_t interface) [member function]
6418 cls.add_method('NotifyInterfaceDown',
6419 'void',
6420 [param('uint32_t', 'interface')],
6421 is_pure_virtual=True, is_virtual=True)
6422 ## ipv4-routing-protocol.h (module 'internet'): void ns3::Ipv4RoutingProtocol::NotifyInterfaceUp(uint32_t interface) [member function]
6423 cls.add_method('NotifyInterfaceUp',
6424 'void',
6425 [param('uint32_t', 'interface')],
6426 is_pure_virtual=True, is_virtual=True)
6427 ## ipv4-routing-protocol.h (module 'internet'): void ns3::Ipv4RoutingProtocol::NotifyRemoveAddress(uint32_t interface, ns3::Ipv4InterfaceAddress address) [member function]
6428 cls.add_method('NotifyRemoveAddress',
6429 'void',
6430 [param('uint32_t', 'interface'), param('ns3::Ipv4InterfaceAddress', 'address')],
6431 is_pure_virtual=True, is_virtual=True)
6432 ## ipv4-routing-protocol.h (module 'internet'): void ns3::Ipv4RoutingProtocol::PrintRoutingTable(ns3::Ptr<ns3::OutputStreamWrapper> stream) const [member function]
6433 cls.add_method('PrintRoutingTable',
6434 'void',
6435 [param('ns3::Ptr< ns3::OutputStreamWrapper >', 'stream')],
6436 is_pure_virtual=True, is_const=True, is_virtual=True)
6437 ## ipv4-routing-protocol.h (module 'internet'): bool ns3::Ipv4RoutingProtocol::RouteInput(ns3::Ptr<const ns3::Packet> p, ns3::Ipv4Header const & header, ns3::Ptr<const ns3::NetDevice> idev, ns3::Callback<void,ns3::Ptr<ns3::Ipv4Route>,ns3::Ptr<const ns3::Packet>,const ns3::Ipv4Header&,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty> ucb, ns3::Callback<void,ns3::Ptr<ns3::Ipv4MulticastRoute>,ns3::Ptr<const ns3::Packet>,const ns3::Ipv4Header&,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty> mcb, ns3::Callback<void,ns3::Ptr<const ns3::Packet>,const ns3::Ipv4Header&,unsigned int,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty> lcb, ns3::Callback<void,ns3::Ptr<const ns3::Packet>,const ns3::Ipv4Header&,ns3::Socket::SocketErrno,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty> ecb) [member function]
6438 cls.add_method('RouteInput',
6439 'bool',
6440 [param('ns3::Ptr< ns3::Packet const >', 'p'), param('ns3::Ipv4Header const &', 'header'), param('ns3::Ptr< ns3::NetDevice const >', 'idev'), param('ns3::Callback< void, ns3::Ptr< ns3::Ipv4Route >, ns3::Ptr< ns3::Packet const >, ns3::Ipv4Header const &, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'ucb'), param('ns3::Callback< void, ns3::Ptr< ns3::Ipv4MulticastRoute >, ns3::Ptr< ns3::Packet const >, ns3::Ipv4Header const &, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'mcb'), param('ns3::Callback< void, ns3::Ptr< ns3::Packet const >, ns3::Ipv4Header const &, unsigned int, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'lcb'), param('ns3::Callback< void, ns3::Ptr< ns3::Packet const >, ns3::Ipv4Header const &, ns3::Socket::SocketErrno, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'ecb')],
6441 is_pure_virtual=True, is_virtual=True)
6442 ## ipv4-routing-protocol.h (module 'internet'): ns3::Ptr<ns3::Ipv4Route> ns3::Ipv4RoutingProtocol::RouteOutput(ns3::Ptr<ns3::Packet> p, ns3::Ipv4Header const & header, ns3::Ptr<ns3::NetDevice> oif, ns3::Socket::SocketErrno & sockerr) [member function]
6443 cls.add_method('RouteOutput',
6444 'ns3::Ptr< ns3::Ipv4Route >',
6445 [param('ns3::Ptr< ns3::Packet >', 'p'), param('ns3::Ipv4Header const &', 'header'), param('ns3::Ptr< ns3::NetDevice >', 'oif'), param('ns3::Socket::SocketErrno &', 'sockerr')],
6446 is_pure_virtual=True, is_virtual=True)
6447 ## ipv4-routing-protocol.h (module 'internet'): void ns3::Ipv4RoutingProtocol::SetIpv4(ns3::Ptr<ns3::Ipv4> ipv4) [member function]
6448 cls.add_method('SetIpv4',
6449 'void',
6450 [param('ns3::Ptr< ns3::Ipv4 >', 'ipv4')],
6451 is_pure_virtual=True, is_virtual=True)
6452 return
6453
Alexander Afanasyev381dea02011-11-03 08:33:26 -07006454def register_Ns3Ipv6AddressChecker_methods(root_module, cls):
6455 ## ipv6-address.h (module 'network'): ns3::Ipv6AddressChecker::Ipv6AddressChecker() [constructor]
6456 cls.add_constructor([])
6457 ## ipv6-address.h (module 'network'): ns3::Ipv6AddressChecker::Ipv6AddressChecker(ns3::Ipv6AddressChecker const & arg0) [copy constructor]
6458 cls.add_constructor([param('ns3::Ipv6AddressChecker const &', 'arg0')])
6459 return
6460
6461def register_Ns3Ipv6AddressValue_methods(root_module, cls):
6462 ## ipv6-address.h (module 'network'): ns3::Ipv6AddressValue::Ipv6AddressValue() [constructor]
6463 cls.add_constructor([])
6464 ## ipv6-address.h (module 'network'): ns3::Ipv6AddressValue::Ipv6AddressValue(ns3::Ipv6AddressValue const & arg0) [copy constructor]
6465 cls.add_constructor([param('ns3::Ipv6AddressValue const &', 'arg0')])
6466 ## ipv6-address.h (module 'network'): ns3::Ipv6AddressValue::Ipv6AddressValue(ns3::Ipv6Address const & value) [constructor]
6467 cls.add_constructor([param('ns3::Ipv6Address const &', 'value')])
6468 ## ipv6-address.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::Ipv6AddressValue::Copy() const [member function]
6469 cls.add_method('Copy',
6470 'ns3::Ptr< ns3::AttributeValue >',
6471 [],
6472 is_const=True, is_virtual=True)
6473 ## ipv6-address.h (module 'network'): bool ns3::Ipv6AddressValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
6474 cls.add_method('DeserializeFromString',
6475 'bool',
6476 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
6477 is_virtual=True)
6478 ## ipv6-address.h (module 'network'): ns3::Ipv6Address ns3::Ipv6AddressValue::Get() const [member function]
6479 cls.add_method('Get',
6480 'ns3::Ipv6Address',
6481 [],
6482 is_const=True)
6483 ## ipv6-address.h (module 'network'): std::string ns3::Ipv6AddressValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
6484 cls.add_method('SerializeToString',
6485 'std::string',
6486 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
6487 is_const=True, is_virtual=True)
6488 ## ipv6-address.h (module 'network'): void ns3::Ipv6AddressValue::Set(ns3::Ipv6Address const & value) [member function]
6489 cls.add_method('Set',
6490 'void',
6491 [param('ns3::Ipv6Address const &', 'value')])
6492 return
6493
Alexander Afanasyev6f933532012-02-29 13:30:37 -08006494def register_Ns3Ipv6Interface_methods(root_module, cls):
6495 ## ipv6-interface.h (module 'internet'): ns3::Ipv6Interface::Ipv6Interface(ns3::Ipv6Interface const & arg0) [copy constructor]
6496 cls.add_constructor([param('ns3::Ipv6Interface const &', 'arg0')])
6497 ## ipv6-interface.h (module 'internet'): ns3::Ipv6Interface::Ipv6Interface() [constructor]
6498 cls.add_constructor([])
6499 ## ipv6-interface.h (module 'internet'): bool ns3::Ipv6Interface::AddAddress(ns3::Ipv6InterfaceAddress iface) [member function]
6500 cls.add_method('AddAddress',
6501 'bool',
6502 [param('ns3::Ipv6InterfaceAddress', 'iface')])
6503 ## ipv6-interface.h (module 'internet'): ns3::Ipv6InterfaceAddress ns3::Ipv6Interface::GetAddress(uint32_t index) const [member function]
6504 cls.add_method('GetAddress',
6505 'ns3::Ipv6InterfaceAddress',
6506 [param('uint32_t', 'index')],
6507 is_const=True)
6508 ## ipv6-interface.h (module 'internet'): ns3::Ipv6InterfaceAddress ns3::Ipv6Interface::GetAddressMatchingDestination(ns3::Ipv6Address dst) [member function]
6509 cls.add_method('GetAddressMatchingDestination',
6510 'ns3::Ipv6InterfaceAddress',
6511 [param('ns3::Ipv6Address', 'dst')])
6512 ## ipv6-interface.h (module 'internet'): uint16_t ns3::Ipv6Interface::GetBaseReachableTime() const [member function]
6513 cls.add_method('GetBaseReachableTime',
6514 'uint16_t',
6515 [],
6516 is_const=True)
6517 ## ipv6-interface.h (module 'internet'): uint8_t ns3::Ipv6Interface::GetCurHopLimit() const [member function]
6518 cls.add_method('GetCurHopLimit',
6519 'uint8_t',
6520 [],
6521 is_const=True)
6522 ## ipv6-interface.h (module 'internet'): ns3::Ptr<ns3::NetDevice> ns3::Ipv6Interface::GetDevice() const [member function]
6523 cls.add_method('GetDevice',
6524 'ns3::Ptr< ns3::NetDevice >',
6525 [],
6526 is_const=True, is_virtual=True)
6527 ## ipv6-interface.h (module 'internet'): ns3::Ipv6InterfaceAddress ns3::Ipv6Interface::GetLinkLocalAddress() const [member function]
6528 cls.add_method('GetLinkLocalAddress',
6529 'ns3::Ipv6InterfaceAddress',
6530 [],
6531 is_const=True)
6532 ## ipv6-interface.h (module 'internet'): uint16_t ns3::Ipv6Interface::GetMetric() const [member function]
6533 cls.add_method('GetMetric',
6534 'uint16_t',
6535 [],
6536 is_const=True)
6537 ## ipv6-interface.h (module 'internet'): uint32_t ns3::Ipv6Interface::GetNAddresses() const [member function]
6538 cls.add_method('GetNAddresses',
6539 'uint32_t',
6540 [],
6541 is_const=True)
6542 ## ipv6-interface.h (module 'internet'): uint16_t ns3::Ipv6Interface::GetReachableTime() const [member function]
6543 cls.add_method('GetReachableTime',
6544 'uint16_t',
6545 [],
6546 is_const=True)
6547 ## ipv6-interface.h (module 'internet'): uint16_t ns3::Ipv6Interface::GetRetransTimer() const [member function]
6548 cls.add_method('GetRetransTimer',
6549 'uint16_t',
6550 [],
6551 is_const=True)
6552 ## ipv6-interface.h (module 'internet'): static ns3::TypeId ns3::Ipv6Interface::GetTypeId() [member function]
6553 cls.add_method('GetTypeId',
6554 'ns3::TypeId',
6555 [],
6556 is_static=True)
6557 ## ipv6-interface.h (module 'internet'): bool ns3::Ipv6Interface::IsDown() const [member function]
6558 cls.add_method('IsDown',
6559 'bool',
6560 [],
6561 is_const=True)
6562 ## ipv6-interface.h (module 'internet'): bool ns3::Ipv6Interface::IsForwarding() const [member function]
6563 cls.add_method('IsForwarding',
6564 'bool',
6565 [],
6566 is_const=True)
6567 ## ipv6-interface.h (module 'internet'): bool ns3::Ipv6Interface::IsUp() const [member function]
6568 cls.add_method('IsUp',
6569 'bool',
6570 [],
6571 is_const=True)
6572 ## ipv6-interface.h (module 'internet'): ns3::Ipv6InterfaceAddress ns3::Ipv6Interface::RemoveAddress(uint32_t index) [member function]
6573 cls.add_method('RemoveAddress',
6574 'ns3::Ipv6InterfaceAddress',
6575 [param('uint32_t', 'index')])
6576 ## ipv6-interface.h (module 'internet'): void ns3::Ipv6Interface::Send(ns3::Ptr<ns3::Packet> p, ns3::Ipv6Address dest) [member function]
6577 cls.add_method('Send',
6578 'void',
6579 [param('ns3::Ptr< ns3::Packet >', 'p'), param('ns3::Ipv6Address', 'dest')])
6580 ## ipv6-interface.h (module 'internet'): void ns3::Ipv6Interface::SetBaseReachableTime(uint16_t baseReachableTime) [member function]
6581 cls.add_method('SetBaseReachableTime',
6582 'void',
6583 [param('uint16_t', 'baseReachableTime')])
6584 ## ipv6-interface.h (module 'internet'): void ns3::Ipv6Interface::SetCurHopLimit(uint8_t curHopLimit) [member function]
6585 cls.add_method('SetCurHopLimit',
6586 'void',
6587 [param('uint8_t', 'curHopLimit')])
6588 ## ipv6-interface.h (module 'internet'): void ns3::Ipv6Interface::SetDevice(ns3::Ptr<ns3::NetDevice> device) [member function]
6589 cls.add_method('SetDevice',
6590 'void',
6591 [param('ns3::Ptr< ns3::NetDevice >', 'device')])
6592 ## ipv6-interface.h (module 'internet'): void ns3::Ipv6Interface::SetDown() [member function]
6593 cls.add_method('SetDown',
6594 'void',
6595 [])
6596 ## ipv6-interface.h (module 'internet'): void ns3::Ipv6Interface::SetForwarding(bool forward) [member function]
6597 cls.add_method('SetForwarding',
6598 'void',
6599 [param('bool', 'forward')])
6600 ## ipv6-interface.h (module 'internet'): void ns3::Ipv6Interface::SetMetric(uint16_t metric) [member function]
6601 cls.add_method('SetMetric',
6602 'void',
6603 [param('uint16_t', 'metric')])
6604 ## ipv6-interface.h (module 'internet'): void ns3::Ipv6Interface::SetNode(ns3::Ptr<ns3::Node> node) [member function]
6605 cls.add_method('SetNode',
6606 'void',
6607 [param('ns3::Ptr< ns3::Node >', 'node')])
6608 ## ipv6-interface.h (module 'internet'): void ns3::Ipv6Interface::SetNsDadUid(ns3::Ipv6Address address, uint32_t uid) [member function]
6609 cls.add_method('SetNsDadUid',
6610 'void',
6611 [param('ns3::Ipv6Address', 'address'), param('uint32_t', 'uid')])
6612 ## ipv6-interface.h (module 'internet'): void ns3::Ipv6Interface::SetReachableTime(uint16_t reachableTime) [member function]
6613 cls.add_method('SetReachableTime',
6614 'void',
6615 [param('uint16_t', 'reachableTime')])
6616 ## ipv6-interface.h (module 'internet'): void ns3::Ipv6Interface::SetRetransTimer(uint16_t retransTimer) [member function]
6617 cls.add_method('SetRetransTimer',
6618 'void',
6619 [param('uint16_t', 'retransTimer')])
6620 ## ipv6-interface.h (module 'internet'): void ns3::Ipv6Interface::SetState(ns3::Ipv6Address address, ns3::Ipv6InterfaceAddress::State_e state) [member function]
6621 cls.add_method('SetState',
6622 'void',
6623 [param('ns3::Ipv6Address', 'address'), param('ns3::Ipv6InterfaceAddress::State_e', 'state')])
6624 ## ipv6-interface.h (module 'internet'): void ns3::Ipv6Interface::SetUp() [member function]
6625 cls.add_method('SetUp',
6626 'void',
6627 [])
6628 ## ipv6-interface.h (module 'internet'): void ns3::Ipv6Interface::DoDispose() [member function]
6629 cls.add_method('DoDispose',
6630 'void',
6631 [],
6632 visibility='protected', is_virtual=True)
6633 return
6634
Alexander Afanasyev381dea02011-11-03 08:33:26 -07006635def register_Ns3Ipv6PrefixChecker_methods(root_module, cls):
6636 ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixChecker::Ipv6PrefixChecker() [constructor]
6637 cls.add_constructor([])
6638 ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixChecker::Ipv6PrefixChecker(ns3::Ipv6PrefixChecker const & arg0) [copy constructor]
6639 cls.add_constructor([param('ns3::Ipv6PrefixChecker const &', 'arg0')])
6640 return
6641
6642def register_Ns3Ipv6PrefixValue_methods(root_module, cls):
6643 ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixValue::Ipv6PrefixValue() [constructor]
6644 cls.add_constructor([])
6645 ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixValue::Ipv6PrefixValue(ns3::Ipv6PrefixValue const & arg0) [copy constructor]
6646 cls.add_constructor([param('ns3::Ipv6PrefixValue const &', 'arg0')])
6647 ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixValue::Ipv6PrefixValue(ns3::Ipv6Prefix const & value) [constructor]
6648 cls.add_constructor([param('ns3::Ipv6Prefix const &', 'value')])
6649 ## ipv6-address.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::Ipv6PrefixValue::Copy() const [member function]
6650 cls.add_method('Copy',
6651 'ns3::Ptr< ns3::AttributeValue >',
6652 [],
6653 is_const=True, is_virtual=True)
6654 ## ipv6-address.h (module 'network'): bool ns3::Ipv6PrefixValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
6655 cls.add_method('DeserializeFromString',
6656 'bool',
6657 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
6658 is_virtual=True)
6659 ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix ns3::Ipv6PrefixValue::Get() const [member function]
6660 cls.add_method('Get',
6661 'ns3::Ipv6Prefix',
6662 [],
6663 is_const=True)
6664 ## ipv6-address.h (module 'network'): std::string ns3::Ipv6PrefixValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
6665 cls.add_method('SerializeToString',
6666 'std::string',
6667 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
6668 is_const=True, is_virtual=True)
6669 ## ipv6-address.h (module 'network'): void ns3::Ipv6PrefixValue::Set(ns3::Ipv6Prefix const & value) [member function]
6670 cls.add_method('Set',
6671 'void',
6672 [param('ns3::Ipv6Prefix const &', 'value')])
6673 return
6674
Alexander Afanasyev4975f732011-12-20 17:52:19 -08006675def register_Ns3MobilityModel_methods(root_module, cls):
6676 ## mobility-model.h (module 'mobility'): ns3::MobilityModel::MobilityModel(ns3::MobilityModel const & arg0) [copy constructor]
6677 cls.add_constructor([param('ns3::MobilityModel const &', 'arg0')])
6678 ## mobility-model.h (module 'mobility'): ns3::MobilityModel::MobilityModel() [constructor]
6679 cls.add_constructor([])
6680 ## mobility-model.h (module 'mobility'): double ns3::MobilityModel::GetDistanceFrom(ns3::Ptr<const ns3::MobilityModel> position) const [member function]
6681 cls.add_method('GetDistanceFrom',
6682 'double',
6683 [param('ns3::Ptr< ns3::MobilityModel const >', 'position')],
6684 is_const=True)
6685 ## mobility-model.h (module 'mobility'): ns3::Vector ns3::MobilityModel::GetPosition() const [member function]
6686 cls.add_method('GetPosition',
6687 'ns3::Vector',
6688 [],
6689 is_const=True)
6690 ## mobility-model.h (module 'mobility'): double ns3::MobilityModel::GetRelativeSpeed(ns3::Ptr<const ns3::MobilityModel> other) const [member function]
6691 cls.add_method('GetRelativeSpeed',
6692 'double',
6693 [param('ns3::Ptr< ns3::MobilityModel const >', 'other')],
6694 is_const=True)
6695 ## mobility-model.h (module 'mobility'): static ns3::TypeId ns3::MobilityModel::GetTypeId() [member function]
6696 cls.add_method('GetTypeId',
6697 'ns3::TypeId',
6698 [],
6699 is_static=True)
6700 ## mobility-model.h (module 'mobility'): ns3::Vector ns3::MobilityModel::GetVelocity() const [member function]
6701 cls.add_method('GetVelocity',
6702 'ns3::Vector',
6703 [],
6704 is_const=True)
6705 ## mobility-model.h (module 'mobility'): void ns3::MobilityModel::SetPosition(ns3::Vector const & position) [member function]
6706 cls.add_method('SetPosition',
6707 'void',
6708 [param('ns3::Vector const &', 'position')])
6709 ## mobility-model.h (module 'mobility'): void ns3::MobilityModel::NotifyCourseChange() const [member function]
6710 cls.add_method('NotifyCourseChange',
6711 'void',
6712 [],
6713 is_const=True, visibility='protected')
6714 ## mobility-model.h (module 'mobility'): ns3::Vector ns3::MobilityModel::DoGetPosition() const [member function]
6715 cls.add_method('DoGetPosition',
6716 'ns3::Vector',
6717 [],
6718 is_pure_virtual=True, is_const=True, visibility='private', is_virtual=True)
6719 ## mobility-model.h (module 'mobility'): ns3::Vector ns3::MobilityModel::DoGetVelocity() const [member function]
6720 cls.add_method('DoGetVelocity',
6721 'ns3::Vector',
6722 [],
6723 is_pure_virtual=True, is_const=True, visibility='private', is_virtual=True)
6724 ## mobility-model.h (module 'mobility'): void ns3::MobilityModel::DoSetPosition(ns3::Vector const & position) [member function]
6725 cls.add_method('DoSetPosition',
6726 'void',
6727 [param('ns3::Vector const &', 'position')],
6728 is_pure_virtual=True, visibility='private', is_virtual=True)
6729 return
6730
Alexander Afanasyev381dea02011-11-03 08:33:26 -07006731def register_Ns3NetDevice_methods(root_module, cls):
6732 ## net-device.h (module 'network'): ns3::NetDevice::NetDevice() [constructor]
6733 cls.add_constructor([])
6734 ## net-device.h (module 'network'): ns3::NetDevice::NetDevice(ns3::NetDevice const & arg0) [copy constructor]
6735 cls.add_constructor([param('ns3::NetDevice const &', 'arg0')])
6736 ## net-device.h (module 'network'): void ns3::NetDevice::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]
6737 cls.add_method('AddLinkChangeCallback',
6738 'void',
6739 [param('ns3::Callback< void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'callback')],
6740 is_pure_virtual=True, is_virtual=True)
6741 ## net-device.h (module 'network'): ns3::Address ns3::NetDevice::GetAddress() const [member function]
6742 cls.add_method('GetAddress',
6743 'ns3::Address',
6744 [],
6745 is_pure_virtual=True, is_const=True, is_virtual=True)
6746 ## net-device.h (module 'network'): ns3::Address ns3::NetDevice::GetBroadcast() const [member function]
6747 cls.add_method('GetBroadcast',
6748 'ns3::Address',
6749 [],
6750 is_pure_virtual=True, is_const=True, is_virtual=True)
6751 ## net-device.h (module 'network'): ns3::Ptr<ns3::Channel> ns3::NetDevice::GetChannel() const [member function]
6752 cls.add_method('GetChannel',
6753 'ns3::Ptr< ns3::Channel >',
6754 [],
6755 is_pure_virtual=True, is_const=True, is_virtual=True)
6756 ## net-device.h (module 'network'): uint32_t ns3::NetDevice::GetIfIndex() const [member function]
6757 cls.add_method('GetIfIndex',
6758 'uint32_t',
6759 [],
6760 is_pure_virtual=True, is_const=True, is_virtual=True)
6761 ## net-device.h (module 'network'): uint16_t ns3::NetDevice::GetMtu() const [member function]
6762 cls.add_method('GetMtu',
6763 'uint16_t',
6764 [],
6765 is_pure_virtual=True, is_const=True, is_virtual=True)
6766 ## net-device.h (module 'network'): ns3::Address ns3::NetDevice::GetMulticast(ns3::Ipv4Address multicastGroup) const [member function]
6767 cls.add_method('GetMulticast',
6768 'ns3::Address',
6769 [param('ns3::Ipv4Address', 'multicastGroup')],
6770 is_pure_virtual=True, is_const=True, is_virtual=True)
6771 ## net-device.h (module 'network'): ns3::Address ns3::NetDevice::GetMulticast(ns3::Ipv6Address addr) const [member function]
6772 cls.add_method('GetMulticast',
6773 'ns3::Address',
6774 [param('ns3::Ipv6Address', 'addr')],
6775 is_pure_virtual=True, is_const=True, is_virtual=True)
6776 ## net-device.h (module 'network'): ns3::Ptr<ns3::Node> ns3::NetDevice::GetNode() const [member function]
6777 cls.add_method('GetNode',
6778 'ns3::Ptr< ns3::Node >',
6779 [],
6780 is_pure_virtual=True, is_const=True, is_virtual=True)
6781 ## net-device.h (module 'network'): static ns3::TypeId ns3::NetDevice::GetTypeId() [member function]
6782 cls.add_method('GetTypeId',
6783 'ns3::TypeId',
6784 [],
6785 is_static=True)
6786 ## net-device.h (module 'network'): bool ns3::NetDevice::IsBridge() const [member function]
6787 cls.add_method('IsBridge',
6788 'bool',
6789 [],
6790 is_pure_virtual=True, is_const=True, is_virtual=True)
6791 ## net-device.h (module 'network'): bool ns3::NetDevice::IsBroadcast() const [member function]
6792 cls.add_method('IsBroadcast',
6793 'bool',
6794 [],
6795 is_pure_virtual=True, is_const=True, is_virtual=True)
6796 ## net-device.h (module 'network'): bool ns3::NetDevice::IsLinkUp() const [member function]
6797 cls.add_method('IsLinkUp',
6798 'bool',
6799 [],
6800 is_pure_virtual=True, is_const=True, is_virtual=True)
6801 ## net-device.h (module 'network'): bool ns3::NetDevice::IsMulticast() const [member function]
6802 cls.add_method('IsMulticast',
6803 'bool',
6804 [],
6805 is_pure_virtual=True, is_const=True, is_virtual=True)
6806 ## net-device.h (module 'network'): bool ns3::NetDevice::IsPointToPoint() const [member function]
6807 cls.add_method('IsPointToPoint',
6808 'bool',
6809 [],
6810 is_pure_virtual=True, is_const=True, is_virtual=True)
6811 ## net-device.h (module 'network'): bool ns3::NetDevice::NeedsArp() const [member function]
6812 cls.add_method('NeedsArp',
6813 'bool',
6814 [],
6815 is_pure_virtual=True, is_const=True, is_virtual=True)
6816 ## net-device.h (module 'network'): bool ns3::NetDevice::Send(ns3::Ptr<ns3::Packet> packet, ns3::Address const & dest, uint16_t protocolNumber) [member function]
6817 cls.add_method('Send',
6818 'bool',
6819 [param('ns3::Ptr< ns3::Packet >', 'packet'), param('ns3::Address const &', 'dest'), param('uint16_t', 'protocolNumber')],
6820 is_pure_virtual=True, is_virtual=True)
6821 ## net-device.h (module 'network'): bool ns3::NetDevice::SendFrom(ns3::Ptr<ns3::Packet> packet, ns3::Address const & source, ns3::Address const & dest, uint16_t protocolNumber) [member function]
6822 cls.add_method('SendFrom',
6823 'bool',
6824 [param('ns3::Ptr< ns3::Packet >', 'packet'), param('ns3::Address const &', 'source'), param('ns3::Address const &', 'dest'), param('uint16_t', 'protocolNumber')],
6825 is_pure_virtual=True, is_virtual=True)
6826 ## net-device.h (module 'network'): void ns3::NetDevice::SetAddress(ns3::Address address) [member function]
6827 cls.add_method('SetAddress',
6828 'void',
6829 [param('ns3::Address', 'address')],
6830 is_pure_virtual=True, is_virtual=True)
6831 ## net-device.h (module 'network'): void ns3::NetDevice::SetIfIndex(uint32_t const index) [member function]
6832 cls.add_method('SetIfIndex',
6833 'void',
6834 [param('uint32_t const', 'index')],
6835 is_pure_virtual=True, is_virtual=True)
6836 ## net-device.h (module 'network'): bool ns3::NetDevice::SetMtu(uint16_t const mtu) [member function]
6837 cls.add_method('SetMtu',
6838 'bool',
6839 [param('uint16_t const', 'mtu')],
6840 is_pure_virtual=True, is_virtual=True)
6841 ## net-device.h (module 'network'): void ns3::NetDevice::SetNode(ns3::Ptr<ns3::Node> node) [member function]
6842 cls.add_method('SetNode',
6843 'void',
6844 [param('ns3::Ptr< ns3::Node >', 'node')],
6845 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyev07827182011-12-13 01:07:32 -08006846 ## net-device.h (module 'network'): void ns3::NetDevice::SetPromiscReceiveCallback(ns3::Callback<bool,ns3::Ptr<ns3::NetDevice>,ns3::Ptr<const ns3::Packet>,short unsigned int,const ns3::Address&,const ns3::Address&,ns3::NetDevice::PacketType,ns3::empty,ns3::empty,ns3::empty> cb) [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07006847 cls.add_method('SetPromiscReceiveCallback',
6848 'void',
Alexander Afanasyev07827182011-12-13 01:07:32 -08006849 [param('ns3::Callback< bool, ns3::Ptr< ns3::NetDevice >, ns3::Ptr< ns3::Packet const >, short unsigned int, ns3::Address const &, ns3::Address const &, ns3::NetDevice::PacketType, ns3::empty, ns3::empty, ns3::empty >', 'cb')],
Alexander Afanasyev381dea02011-11-03 08:33:26 -07006850 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyev07827182011-12-13 01:07:32 -08006851 ## net-device.h (module 'network'): void ns3::NetDevice::SetReceiveCallback(ns3::Callback<bool,ns3::Ptr<ns3::NetDevice>,ns3::Ptr<const ns3::Packet>,short unsigned int,const ns3::Address&,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty> cb) [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07006852 cls.add_method('SetReceiveCallback',
6853 'void',
Alexander Afanasyev07827182011-12-13 01:07:32 -08006854 [param('ns3::Callback< bool, ns3::Ptr< ns3::NetDevice >, ns3::Ptr< ns3::Packet const >, short unsigned int, ns3::Address const &, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'cb')],
Alexander Afanasyev381dea02011-11-03 08:33:26 -07006855 is_pure_virtual=True, is_virtual=True)
6856 ## net-device.h (module 'network'): bool ns3::NetDevice::SupportsSendFrom() const [member function]
6857 cls.add_method('SupportsSendFrom',
6858 'bool',
6859 [],
6860 is_pure_virtual=True, is_const=True, is_virtual=True)
6861 return
6862
6863def register_Ns3NixVector_methods(root_module, cls):
6864 cls.add_output_stream_operator()
6865 ## nix-vector.h (module 'network'): ns3::NixVector::NixVector() [constructor]
6866 cls.add_constructor([])
6867 ## nix-vector.h (module 'network'): ns3::NixVector::NixVector(ns3::NixVector const & o) [copy constructor]
6868 cls.add_constructor([param('ns3::NixVector const &', 'o')])
6869 ## nix-vector.h (module 'network'): void ns3::NixVector::AddNeighborIndex(uint32_t newBits, uint32_t numberOfBits) [member function]
6870 cls.add_method('AddNeighborIndex',
6871 'void',
6872 [param('uint32_t', 'newBits'), param('uint32_t', 'numberOfBits')])
6873 ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::BitCount(uint32_t numberOfNeighbors) const [member function]
6874 cls.add_method('BitCount',
6875 'uint32_t',
6876 [param('uint32_t', 'numberOfNeighbors')],
6877 is_const=True)
6878 ## nix-vector.h (module 'network'): ns3::Ptr<ns3::NixVector> ns3::NixVector::Copy() const [member function]
6879 cls.add_method('Copy',
6880 'ns3::Ptr< ns3::NixVector >',
6881 [],
6882 is_const=True)
6883 ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::Deserialize(uint32_t const * buffer, uint32_t size) [member function]
6884 cls.add_method('Deserialize',
6885 'uint32_t',
6886 [param('uint32_t const *', 'buffer'), param('uint32_t', 'size')])
6887 ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::ExtractNeighborIndex(uint32_t numberOfBits) [member function]
6888 cls.add_method('ExtractNeighborIndex',
6889 'uint32_t',
6890 [param('uint32_t', 'numberOfBits')])
6891 ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::GetRemainingBits() [member function]
6892 cls.add_method('GetRemainingBits',
6893 'uint32_t',
6894 [])
6895 ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::GetSerializedSize() const [member function]
6896 cls.add_method('GetSerializedSize',
6897 'uint32_t',
6898 [],
6899 is_const=True)
6900 ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::Serialize(uint32_t * buffer, uint32_t maxSize) const [member function]
6901 cls.add_method('Serialize',
6902 'uint32_t',
6903 [param('uint32_t *', 'buffer'), param('uint32_t', 'maxSize')],
6904 is_const=True)
6905 return
6906
6907def register_Ns3Node_methods(root_module, cls):
6908 ## node.h (module 'network'): ns3::Node::Node(ns3::Node const & arg0) [copy constructor]
6909 cls.add_constructor([param('ns3::Node const &', 'arg0')])
6910 ## node.h (module 'network'): ns3::Node::Node() [constructor]
6911 cls.add_constructor([])
6912 ## node.h (module 'network'): ns3::Node::Node(uint32_t systemId) [constructor]
6913 cls.add_constructor([param('uint32_t', 'systemId')])
6914 ## node.h (module 'network'): uint32_t ns3::Node::AddApplication(ns3::Ptr<ns3::Application> application) [member function]
6915 cls.add_method('AddApplication',
6916 'uint32_t',
6917 [param('ns3::Ptr< ns3::Application >', 'application')])
6918 ## node.h (module 'network'): uint32_t ns3::Node::AddDevice(ns3::Ptr<ns3::NetDevice> device) [member function]
6919 cls.add_method('AddDevice',
6920 'uint32_t',
6921 [param('ns3::Ptr< ns3::NetDevice >', 'device')])
6922 ## node.h (module 'network'): static bool ns3::Node::ChecksumEnabled() [member function]
6923 cls.add_method('ChecksumEnabled',
6924 'bool',
6925 [],
6926 is_static=True)
6927 ## node.h (module 'network'): ns3::Ptr<ns3::Application> ns3::Node::GetApplication(uint32_t index) const [member function]
6928 cls.add_method('GetApplication',
6929 'ns3::Ptr< ns3::Application >',
6930 [param('uint32_t', 'index')],
6931 is_const=True)
6932 ## node.h (module 'network'): ns3::Ptr<ns3::NetDevice> ns3::Node::GetDevice(uint32_t index) const [member function]
6933 cls.add_method('GetDevice',
6934 'ns3::Ptr< ns3::NetDevice >',
6935 [param('uint32_t', 'index')],
6936 is_const=True)
6937 ## node.h (module 'network'): uint32_t ns3::Node::GetId() const [member function]
6938 cls.add_method('GetId',
6939 'uint32_t',
6940 [],
6941 is_const=True)
6942 ## node.h (module 'network'): uint32_t ns3::Node::GetNApplications() const [member function]
6943 cls.add_method('GetNApplications',
6944 'uint32_t',
6945 [],
6946 is_const=True)
6947 ## node.h (module 'network'): uint32_t ns3::Node::GetNDevices() const [member function]
6948 cls.add_method('GetNDevices',
6949 'uint32_t',
6950 [],
6951 is_const=True)
6952 ## node.h (module 'network'): uint32_t ns3::Node::GetSystemId() const [member function]
6953 cls.add_method('GetSystemId',
6954 'uint32_t',
6955 [],
6956 is_const=True)
6957 ## node.h (module 'network'): static ns3::TypeId ns3::Node::GetTypeId() [member function]
6958 cls.add_method('GetTypeId',
6959 'ns3::TypeId',
6960 [],
6961 is_static=True)
6962 ## node.h (module 'network'): void ns3::Node::RegisterDeviceAdditionListener(ns3::Callback<void,ns3::Ptr<ns3::NetDevice>,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty> listener) [member function]
6963 cls.add_method('RegisterDeviceAdditionListener',
6964 'void',
6965 [param('ns3::Callback< void, ns3::Ptr< ns3::NetDevice >, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'listener')])
6966 ## node.h (module 'network'): void ns3::Node::RegisterProtocolHandler(ns3::Callback<void, 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> handler, uint16_t protocolType, ns3::Ptr<ns3::NetDevice> device, bool promiscuous=false) [member function]
6967 cls.add_method('RegisterProtocolHandler',
6968 'void',
6969 [param('ns3::Callback< void, 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 >', 'handler'), param('uint16_t', 'protocolType'), param('ns3::Ptr< ns3::NetDevice >', 'device'), param('bool', 'promiscuous', default_value='false')])
6970 ## node.h (module 'network'): void ns3::Node::UnregisterDeviceAdditionListener(ns3::Callback<void,ns3::Ptr<ns3::NetDevice>,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty> listener) [member function]
6971 cls.add_method('UnregisterDeviceAdditionListener',
6972 'void',
6973 [param('ns3::Callback< void, ns3::Ptr< ns3::NetDevice >, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'listener')])
6974 ## node.h (module 'network'): void ns3::Node::UnregisterProtocolHandler(ns3::Callback<void, 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> handler) [member function]
6975 cls.add_method('UnregisterProtocolHandler',
6976 'void',
6977 [param('ns3::Callback< void, 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 >', 'handler')])
6978 ## node.h (module 'network'): void ns3::Node::DoDispose() [member function]
6979 cls.add_method('DoDispose',
6980 'void',
6981 [],
6982 visibility='protected', is_virtual=True)
6983 ## node.h (module 'network'): void ns3::Node::DoStart() [member function]
6984 cls.add_method('DoStart',
6985 'void',
6986 [],
6987 visibility='protected', is_virtual=True)
6988 return
6989
6990def register_Ns3ObjectFactoryChecker_methods(root_module, cls):
6991 ## object-factory.h (module 'core'): ns3::ObjectFactoryChecker::ObjectFactoryChecker() [constructor]
6992 cls.add_constructor([])
6993 ## object-factory.h (module 'core'): ns3::ObjectFactoryChecker::ObjectFactoryChecker(ns3::ObjectFactoryChecker const & arg0) [copy constructor]
6994 cls.add_constructor([param('ns3::ObjectFactoryChecker const &', 'arg0')])
6995 return
6996
6997def register_Ns3ObjectFactoryValue_methods(root_module, cls):
6998 ## object-factory.h (module 'core'): ns3::ObjectFactoryValue::ObjectFactoryValue() [constructor]
6999 cls.add_constructor([])
7000 ## object-factory.h (module 'core'): ns3::ObjectFactoryValue::ObjectFactoryValue(ns3::ObjectFactoryValue const & arg0) [copy constructor]
7001 cls.add_constructor([param('ns3::ObjectFactoryValue const &', 'arg0')])
7002 ## object-factory.h (module 'core'): ns3::ObjectFactoryValue::ObjectFactoryValue(ns3::ObjectFactory const & value) [constructor]
7003 cls.add_constructor([param('ns3::ObjectFactory const &', 'value')])
7004 ## object-factory.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::ObjectFactoryValue::Copy() const [member function]
7005 cls.add_method('Copy',
7006 'ns3::Ptr< ns3::AttributeValue >',
7007 [],
7008 is_const=True, is_virtual=True)
7009 ## object-factory.h (module 'core'): bool ns3::ObjectFactoryValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
7010 cls.add_method('DeserializeFromString',
7011 'bool',
7012 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
7013 is_virtual=True)
7014 ## object-factory.h (module 'core'): ns3::ObjectFactory ns3::ObjectFactoryValue::Get() const [member function]
7015 cls.add_method('Get',
7016 'ns3::ObjectFactory',
7017 [],
7018 is_const=True)
7019 ## object-factory.h (module 'core'): std::string ns3::ObjectFactoryValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
7020 cls.add_method('SerializeToString',
7021 'std::string',
7022 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
7023 is_const=True, is_virtual=True)
7024 ## object-factory.h (module 'core'): void ns3::ObjectFactoryValue::Set(ns3::ObjectFactory const & value) [member function]
7025 cls.add_method('Set',
7026 'void',
7027 [param('ns3::ObjectFactory const &', 'value')])
7028 return
7029
Alexander Afanasyev03d92e42012-02-01 21:06:53 -08007030def register_Ns3OutputStreamWrapper_methods(root_module, cls):
7031 ## output-stream-wrapper.h (module 'network'): ns3::OutputStreamWrapper::OutputStreamWrapper(ns3::OutputStreamWrapper const & arg0) [copy constructor]
7032 cls.add_constructor([param('ns3::OutputStreamWrapper const &', 'arg0')])
7033 ## output-stream-wrapper.h (module 'network'): ns3::OutputStreamWrapper::OutputStreamWrapper(std::string filename, std::_Ios_Openmode filemode) [constructor]
7034 cls.add_constructor([param('std::string', 'filename'), param('std::_Ios_Openmode', 'filemode')])
7035 ## output-stream-wrapper.h (module 'network'): ns3::OutputStreamWrapper::OutputStreamWrapper(std::ostream * os) [constructor]
7036 cls.add_constructor([param('std::ostream *', 'os')])
7037 ## output-stream-wrapper.h (module 'network'): std::ostream * ns3::OutputStreamWrapper::GetStream() [member function]
7038 cls.add_method('GetStream',
7039 'std::ostream *',
7040 [])
7041 return
7042
Alexander Afanasyev381dea02011-11-03 08:33:26 -07007043def register_Ns3Packet_methods(root_module, cls):
7044 cls.add_output_stream_operator()
7045 ## packet.h (module 'network'): ns3::Packet::Packet() [constructor]
7046 cls.add_constructor([])
7047 ## packet.h (module 'network'): ns3::Packet::Packet(ns3::Packet const & o) [copy constructor]
7048 cls.add_constructor([param('ns3::Packet const &', 'o')])
7049 ## packet.h (module 'network'): ns3::Packet::Packet(uint32_t size) [constructor]
7050 cls.add_constructor([param('uint32_t', 'size')])
7051 ## packet.h (module 'network'): ns3::Packet::Packet(uint8_t const * buffer, uint32_t size, bool magic) [constructor]
7052 cls.add_constructor([param('uint8_t const *', 'buffer'), param('uint32_t', 'size'), param('bool', 'magic')])
7053 ## packet.h (module 'network'): ns3::Packet::Packet(uint8_t const * buffer, uint32_t size) [constructor]
7054 cls.add_constructor([param('uint8_t const *', 'buffer'), param('uint32_t', 'size')])
Alexander Afanasyev07827182011-12-13 01:07:32 -08007055 ## packet.h (module 'network'): void ns3::Packet::AddAtEnd(ns3::Ptr<const ns3::Packet> packet) [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07007056 cls.add_method('AddAtEnd',
7057 'void',
7058 [param('ns3::Ptr< ns3::Packet const >', 'packet')])
7059 ## packet.h (module 'network'): void ns3::Packet::AddByteTag(ns3::Tag const & tag) const [member function]
7060 cls.add_method('AddByteTag',
7061 'void',
7062 [param('ns3::Tag const &', 'tag')],
7063 is_const=True)
7064 ## packet.h (module 'network'): void ns3::Packet::AddHeader(ns3::Header const & header) [member function]
7065 cls.add_method('AddHeader',
7066 'void',
7067 [param('ns3::Header const &', 'header')])
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08007068 ## packet.h (module 'network'): void ns3::Packet::AddPacketTag(ns3::Ptr<const ns3::Tag> tag) [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07007069 cls.add_method('AddPacketTag',
7070 'void',
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08007071 [param('ns3::Ptr< ns3::Tag const >', 'tag')])
Alexander Afanasyev381dea02011-11-03 08:33:26 -07007072 ## packet.h (module 'network'): void ns3::Packet::AddPaddingAtEnd(uint32_t size) [member function]
7073 cls.add_method('AddPaddingAtEnd',
7074 'void',
7075 [param('uint32_t', 'size')])
7076 ## packet.h (module 'network'): void ns3::Packet::AddTrailer(ns3::Trailer const & trailer) [member function]
7077 cls.add_method('AddTrailer',
7078 'void',
7079 [param('ns3::Trailer const &', 'trailer')])
7080 ## packet.h (module 'network'): ns3::PacketMetadata::ItemIterator ns3::Packet::BeginItem() const [member function]
7081 cls.add_method('BeginItem',
7082 'ns3::PacketMetadata::ItemIterator',
7083 [],
7084 is_const=True)
7085 ## packet.h (module 'network'): ns3::Ptr<ns3::Packet> ns3::Packet::Copy() const [member function]
7086 cls.add_method('Copy',
7087 'ns3::Ptr< ns3::Packet >',
7088 [],
7089 is_const=True)
7090 ## packet.h (module 'network'): uint32_t ns3::Packet::CopyData(uint8_t * buffer, uint32_t size) const [member function]
7091 cls.add_method('CopyData',
7092 'uint32_t',
7093 [param('uint8_t *', 'buffer'), param('uint32_t', 'size')],
7094 is_const=True)
7095 ## packet.h (module 'network'): void ns3::Packet::CopyData(std::ostream * os, uint32_t size) const [member function]
7096 cls.add_method('CopyData',
7097 'void',
7098 [param('std::ostream *', 'os'), param('uint32_t', 'size')],
7099 is_const=True)
7100 ## packet.h (module 'network'): ns3::Ptr<ns3::Packet> ns3::Packet::CreateFragment(uint32_t start, uint32_t length) const [member function]
7101 cls.add_method('CreateFragment',
7102 'ns3::Ptr< ns3::Packet >',
7103 [param('uint32_t', 'start'), param('uint32_t', 'length')],
7104 is_const=True)
7105 ## packet.h (module 'network'): static void ns3::Packet::EnableChecking() [member function]
7106 cls.add_method('EnableChecking',
7107 'void',
7108 [],
7109 is_static=True)
7110 ## packet.h (module 'network'): static void ns3::Packet::EnablePrinting() [member function]
7111 cls.add_method('EnablePrinting',
7112 'void',
7113 [],
7114 is_static=True)
7115 ## packet.h (module 'network'): bool ns3::Packet::FindFirstMatchingByteTag(ns3::Tag & tag) const [member function]
7116 cls.add_method('FindFirstMatchingByteTag',
7117 'bool',
7118 [param('ns3::Tag &', 'tag')],
7119 is_const=True)
7120 ## packet.h (module 'network'): ns3::ByteTagIterator ns3::Packet::GetByteTagIterator() const [member function]
7121 cls.add_method('GetByteTagIterator',
7122 'ns3::ByteTagIterator',
7123 [],
7124 is_const=True)
7125 ## packet.h (module 'network'): ns3::Ptr<ns3::NixVector> ns3::Packet::GetNixVector() const [member function]
7126 cls.add_method('GetNixVector',
7127 'ns3::Ptr< ns3::NixVector >',
7128 [],
7129 is_const=True)
Alexander Afanasyev381dea02011-11-03 08:33:26 -07007130 ## packet.h (module 'network'): uint32_t ns3::Packet::GetSerializedSize() const [member function]
7131 cls.add_method('GetSerializedSize',
7132 'uint32_t',
7133 [],
7134 is_const=True)
7135 ## packet.h (module 'network'): uint32_t ns3::Packet::GetSize() const [member function]
7136 cls.add_method('GetSize',
7137 'uint32_t',
7138 [],
7139 is_const=True)
7140 ## packet.h (module 'network'): uint64_t ns3::Packet::GetUid() const [member function]
7141 cls.add_method('GetUid',
7142 'uint64_t',
7143 [],
7144 is_const=True)
7145 ## packet.h (module 'network'): uint8_t const * ns3::Packet::PeekData() const [member function]
7146 cls.add_method('PeekData',
7147 'uint8_t const *',
7148 [],
7149 deprecated=True, is_const=True)
7150 ## packet.h (module 'network'): uint32_t ns3::Packet::PeekHeader(ns3::Header & header) const [member function]
7151 cls.add_method('PeekHeader',
7152 'uint32_t',
7153 [param('ns3::Header &', 'header')],
7154 is_const=True)
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08007155 ## packet.h (module 'network'): ns3::Ptr<const ns3::Tag> ns3::Packet::PeekPacketTag(ns3::TypeId tagType) const [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07007156 cls.add_method('PeekPacketTag',
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08007157 'ns3::Ptr< ns3::Tag const >',
7158 [param('ns3::TypeId', 'tagType')],
Alexander Afanasyev381dea02011-11-03 08:33:26 -07007159 is_const=True)
7160 ## packet.h (module 'network'): uint32_t ns3::Packet::PeekTrailer(ns3::Trailer & trailer) [member function]
7161 cls.add_method('PeekTrailer',
7162 'uint32_t',
7163 [param('ns3::Trailer &', 'trailer')])
7164 ## packet.h (module 'network'): void ns3::Packet::Print(std::ostream & os) const [member function]
7165 cls.add_method('Print',
7166 'void',
7167 [param('std::ostream &', 'os')],
7168 is_const=True)
7169 ## packet.h (module 'network'): void ns3::Packet::PrintByteTags(std::ostream & os) const [member function]
7170 cls.add_method('PrintByteTags',
7171 'void',
7172 [param('std::ostream &', 'os')],
7173 is_const=True)
7174 ## packet.h (module 'network'): void ns3::Packet::PrintPacketTags(std::ostream & os) const [member function]
7175 cls.add_method('PrintPacketTags',
7176 'void',
7177 [param('std::ostream &', 'os')],
7178 is_const=True)
7179 ## packet.h (module 'network'): void ns3::Packet::RemoveAllByteTags() [member function]
7180 cls.add_method('RemoveAllByteTags',
7181 'void',
7182 [])
7183 ## packet.h (module 'network'): void ns3::Packet::RemoveAllPacketTags() [member function]
7184 cls.add_method('RemoveAllPacketTags',
7185 'void',
7186 [])
7187 ## packet.h (module 'network'): void ns3::Packet::RemoveAtEnd(uint32_t size) [member function]
7188 cls.add_method('RemoveAtEnd',
7189 'void',
7190 [param('uint32_t', 'size')])
7191 ## packet.h (module 'network'): void ns3::Packet::RemoveAtStart(uint32_t size) [member function]
7192 cls.add_method('RemoveAtStart',
7193 'void',
7194 [param('uint32_t', 'size')])
7195 ## packet.h (module 'network'): uint32_t ns3::Packet::RemoveHeader(ns3::Header & header) [member function]
7196 cls.add_method('RemoveHeader',
7197 'uint32_t',
7198 [param('ns3::Header &', 'header')])
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08007199 ## packet.h (module 'network'): ns3::Ptr<const ns3::Tag> ns3::Packet::RemovePacketTag(ns3::TypeId tagType) [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07007200 cls.add_method('RemovePacketTag',
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08007201 'ns3::Ptr< ns3::Tag const >',
7202 [param('ns3::TypeId', 'tagType')])
Alexander Afanasyev381dea02011-11-03 08:33:26 -07007203 ## packet.h (module 'network'): uint32_t ns3::Packet::RemoveTrailer(ns3::Trailer & trailer) [member function]
7204 cls.add_method('RemoveTrailer',
7205 'uint32_t',
7206 [param('ns3::Trailer &', 'trailer')])
7207 ## packet.h (module 'network'): uint32_t ns3::Packet::Serialize(uint8_t * buffer, uint32_t maxSize) const [member function]
7208 cls.add_method('Serialize',
7209 'uint32_t',
7210 [param('uint8_t *', 'buffer'), param('uint32_t', 'maxSize')],
7211 is_const=True)
7212 ## packet.h (module 'network'): void ns3::Packet::SetNixVector(ns3::Ptr<ns3::NixVector> arg0) [member function]
7213 cls.add_method('SetNixVector',
7214 'void',
7215 [param('ns3::Ptr< ns3::NixVector >', 'arg0')])
7216 return
7217
Alexander Afanasyev381dea02011-11-03 08:33:26 -07007218def register_Ns3RandomVariableChecker_methods(root_module, cls):
7219 ## random-variable.h (module 'core'): ns3::RandomVariableChecker::RandomVariableChecker() [constructor]
7220 cls.add_constructor([])
7221 ## random-variable.h (module 'core'): ns3::RandomVariableChecker::RandomVariableChecker(ns3::RandomVariableChecker const & arg0) [copy constructor]
7222 cls.add_constructor([param('ns3::RandomVariableChecker const &', 'arg0')])
7223 return
7224
7225def register_Ns3RandomVariableValue_methods(root_module, cls):
7226 ## random-variable.h (module 'core'): ns3::RandomVariableValue::RandomVariableValue() [constructor]
7227 cls.add_constructor([])
7228 ## random-variable.h (module 'core'): ns3::RandomVariableValue::RandomVariableValue(ns3::RandomVariableValue const & arg0) [copy constructor]
7229 cls.add_constructor([param('ns3::RandomVariableValue const &', 'arg0')])
7230 ## random-variable.h (module 'core'): ns3::RandomVariableValue::RandomVariableValue(ns3::RandomVariable const & value) [constructor]
7231 cls.add_constructor([param('ns3::RandomVariable const &', 'value')])
7232 ## random-variable.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::RandomVariableValue::Copy() const [member function]
7233 cls.add_method('Copy',
7234 'ns3::Ptr< ns3::AttributeValue >',
7235 [],
7236 is_const=True, is_virtual=True)
7237 ## random-variable.h (module 'core'): bool ns3::RandomVariableValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
7238 cls.add_method('DeserializeFromString',
7239 'bool',
7240 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
7241 is_virtual=True)
7242 ## random-variable.h (module 'core'): ns3::RandomVariable ns3::RandomVariableValue::Get() const [member function]
7243 cls.add_method('Get',
7244 'ns3::RandomVariable',
7245 [],
7246 is_const=True)
7247 ## random-variable.h (module 'core'): std::string ns3::RandomVariableValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
7248 cls.add_method('SerializeToString',
7249 'std::string',
7250 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
7251 is_const=True, is_virtual=True)
7252 ## random-variable.h (module 'core'): void ns3::RandomVariableValue::Set(ns3::RandomVariable const & value) [member function]
7253 cls.add_method('Set',
7254 'void',
7255 [param('ns3::RandomVariable const &', 'value')])
7256 return
7257
Alexander Afanasyev07827182011-12-13 01:07:32 -08007258def register_Ns3RocketfuelWeightsReader_methods(root_module, cls):
Alexander Afanasyev53872ce2011-12-16 13:17:18 -08007259 ## rocketfuel-weights-reader.h (module 'NDNabstraction'): ns3::RocketfuelWeightsReader::RocketfuelWeightsReader(std::string const & path="") [constructor]
7260 cls.add_constructor([param('std::string const &', 'path', default_value='""')])
Alexander Afanasyevae3b7c32011-12-13 13:20:06 -08007261 ## rocketfuel-weights-reader.h (module 'NDNabstraction'): void ns3::RocketfuelWeightsReader::SetFileType(uint8_t inputType) [member function]
7262 cls.add_method('SetFileType',
7263 'void',
7264 [param('uint8_t', 'inputType')])
Alexander Afanasyev07827182011-12-13 01:07:32 -08007265 ## rocketfuel-weights-reader.h (module 'NDNabstraction'): ns3::NodeContainer ns3::RocketfuelWeightsReader::Read() [member function]
7266 cls.add_method('Read',
7267 'ns3::NodeContainer',
7268 [],
Alexander Afanasyev381dea02011-11-03 08:33:26 -07007269 is_virtual=True)
Alexander Afanasyev53872ce2011-12-16 13:17:18 -08007270 ## rocketfuel-weights-reader.h (module 'NDNabstraction'): void ns3::RocketfuelWeightsReader::Commit() [member function]
7271 cls.add_method('Commit',
7272 'void',
7273 [])
Alexander Afanasyev381dea02011-11-03 08:33:26 -07007274 return
7275
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08007276def register_Ns3SocketAddressTag_methods(root_module, cls):
7277 ## socket.h (module 'network'): ns3::SocketAddressTag::SocketAddressTag(ns3::SocketAddressTag const & arg0) [copy constructor]
7278 cls.add_constructor([param('ns3::SocketAddressTag const &', 'arg0')])
7279 ## socket.h (module 'network'): ns3::SocketAddressTag::SocketAddressTag() [constructor]
7280 cls.add_constructor([])
7281 ## socket.h (module 'network'): void ns3::SocketAddressTag::Deserialize(ns3::TagBuffer i) [member function]
7282 cls.add_method('Deserialize',
7283 'void',
7284 [param('ns3::TagBuffer', 'i')],
7285 is_virtual=True)
7286 ## socket.h (module 'network'): ns3::Address ns3::SocketAddressTag::GetAddress() const [member function]
7287 cls.add_method('GetAddress',
7288 'ns3::Address',
7289 [],
7290 is_const=True)
7291 ## socket.h (module 'network'): ns3::TypeId ns3::SocketAddressTag::GetInstanceTypeId() const [member function]
7292 cls.add_method('GetInstanceTypeId',
7293 'ns3::TypeId',
7294 [],
7295 is_const=True, is_virtual=True)
7296 ## socket.h (module 'network'): uint32_t ns3::SocketAddressTag::GetSerializedSize() const [member function]
7297 cls.add_method('GetSerializedSize',
7298 'uint32_t',
7299 [],
7300 is_const=True, is_virtual=True)
7301 ## socket.h (module 'network'): static ns3::TypeId ns3::SocketAddressTag::GetTypeId() [member function]
7302 cls.add_method('GetTypeId',
7303 'ns3::TypeId',
7304 [],
7305 is_static=True)
7306 ## socket.h (module 'network'): void ns3::SocketAddressTag::Print(std::ostream & os) const [member function]
7307 cls.add_method('Print',
7308 'void',
7309 [param('std::ostream &', 'os')],
7310 is_const=True, is_virtual=True)
7311 ## socket.h (module 'network'): void ns3::SocketAddressTag::Serialize(ns3::TagBuffer i) const [member function]
7312 cls.add_method('Serialize',
7313 'void',
7314 [param('ns3::TagBuffer', 'i')],
7315 is_const=True, is_virtual=True)
7316 ## socket.h (module 'network'): void ns3::SocketAddressTag::SetAddress(ns3::Address addr) [member function]
7317 cls.add_method('SetAddress',
7318 'void',
7319 [param('ns3::Address', 'addr')])
7320 return
7321
7322def register_Ns3SocketIpTtlTag_methods(root_module, cls):
7323 ## socket.h (module 'network'): ns3::SocketIpTtlTag::SocketIpTtlTag(ns3::SocketIpTtlTag const & arg0) [copy constructor]
7324 cls.add_constructor([param('ns3::SocketIpTtlTag const &', 'arg0')])
7325 ## socket.h (module 'network'): ns3::SocketIpTtlTag::SocketIpTtlTag() [constructor]
7326 cls.add_constructor([])
7327 ## socket.h (module 'network'): void ns3::SocketIpTtlTag::Deserialize(ns3::TagBuffer i) [member function]
7328 cls.add_method('Deserialize',
7329 'void',
7330 [param('ns3::TagBuffer', 'i')],
7331 is_virtual=True)
7332 ## socket.h (module 'network'): ns3::TypeId ns3::SocketIpTtlTag::GetInstanceTypeId() const [member function]
7333 cls.add_method('GetInstanceTypeId',
7334 'ns3::TypeId',
7335 [],
7336 is_const=True, is_virtual=True)
7337 ## socket.h (module 'network'): uint32_t ns3::SocketIpTtlTag::GetSerializedSize() const [member function]
7338 cls.add_method('GetSerializedSize',
7339 'uint32_t',
7340 [],
7341 is_const=True, is_virtual=True)
7342 ## socket.h (module 'network'): uint8_t ns3::SocketIpTtlTag::GetTtl() const [member function]
7343 cls.add_method('GetTtl',
7344 'uint8_t',
7345 [],
7346 is_const=True)
7347 ## socket.h (module 'network'): static ns3::TypeId ns3::SocketIpTtlTag::GetTypeId() [member function]
7348 cls.add_method('GetTypeId',
7349 'ns3::TypeId',
7350 [],
7351 is_static=True)
7352 ## socket.h (module 'network'): void ns3::SocketIpTtlTag::Print(std::ostream & os) const [member function]
7353 cls.add_method('Print',
7354 'void',
7355 [param('std::ostream &', 'os')],
7356 is_const=True, is_virtual=True)
7357 ## socket.h (module 'network'): void ns3::SocketIpTtlTag::Serialize(ns3::TagBuffer i) const [member function]
7358 cls.add_method('Serialize',
7359 'void',
7360 [param('ns3::TagBuffer', 'i')],
7361 is_const=True, is_virtual=True)
7362 ## socket.h (module 'network'): void ns3::SocketIpTtlTag::SetTtl(uint8_t ttl) [member function]
7363 cls.add_method('SetTtl',
7364 'void',
7365 [param('uint8_t', 'ttl')])
7366 return
7367
7368def register_Ns3SocketSetDontFragmentTag_methods(root_module, cls):
7369 ## socket.h (module 'network'): ns3::SocketSetDontFragmentTag::SocketSetDontFragmentTag(ns3::SocketSetDontFragmentTag const & arg0) [copy constructor]
7370 cls.add_constructor([param('ns3::SocketSetDontFragmentTag const &', 'arg0')])
7371 ## socket.h (module 'network'): ns3::SocketSetDontFragmentTag::SocketSetDontFragmentTag() [constructor]
7372 cls.add_constructor([])
7373 ## socket.h (module 'network'): void ns3::SocketSetDontFragmentTag::Deserialize(ns3::TagBuffer i) [member function]
7374 cls.add_method('Deserialize',
7375 'void',
7376 [param('ns3::TagBuffer', 'i')],
7377 is_virtual=True)
7378 ## socket.h (module 'network'): void ns3::SocketSetDontFragmentTag::Disable() [member function]
7379 cls.add_method('Disable',
7380 'void',
7381 [])
7382 ## socket.h (module 'network'): void ns3::SocketSetDontFragmentTag::Enable() [member function]
7383 cls.add_method('Enable',
7384 'void',
7385 [])
7386 ## socket.h (module 'network'): ns3::TypeId ns3::SocketSetDontFragmentTag::GetInstanceTypeId() const [member function]
7387 cls.add_method('GetInstanceTypeId',
7388 'ns3::TypeId',
7389 [],
7390 is_const=True, is_virtual=True)
7391 ## socket.h (module 'network'): uint32_t ns3::SocketSetDontFragmentTag::GetSerializedSize() const [member function]
7392 cls.add_method('GetSerializedSize',
7393 'uint32_t',
7394 [],
7395 is_const=True, is_virtual=True)
7396 ## socket.h (module 'network'): static ns3::TypeId ns3::SocketSetDontFragmentTag::GetTypeId() [member function]
7397 cls.add_method('GetTypeId',
7398 'ns3::TypeId',
7399 [],
7400 is_static=True)
7401 ## socket.h (module 'network'): bool ns3::SocketSetDontFragmentTag::IsEnabled() const [member function]
7402 cls.add_method('IsEnabled',
7403 'bool',
7404 [],
7405 is_const=True)
7406 ## socket.h (module 'network'): void ns3::SocketSetDontFragmentTag::Print(std::ostream & os) const [member function]
7407 cls.add_method('Print',
7408 'void',
7409 [param('std::ostream &', 'os')],
7410 is_const=True, is_virtual=True)
7411 ## socket.h (module 'network'): void ns3::SocketSetDontFragmentTag::Serialize(ns3::TagBuffer i) const [member function]
7412 cls.add_method('Serialize',
7413 'void',
7414 [param('ns3::TagBuffer', 'i')],
7415 is_const=True, is_virtual=True)
7416 return
7417
Alexander Afanasyev4975f732011-12-20 17:52:19 -08007418def register_Ns3SpringMobilityModel_methods(root_module, cls):
7419 ## spring-mobility-model.h (module 'NDNabstraction'): ns3::SpringMobilityModel::SpringMobilityModel(ns3::SpringMobilityModel const & arg0) [copy constructor]
7420 cls.add_constructor([param('ns3::SpringMobilityModel const &', 'arg0')])
7421 ## spring-mobility-model.h (module 'NDNabstraction'): ns3::SpringMobilityModel::SpringMobilityModel() [constructor]
7422 cls.add_constructor([])
7423 ## spring-mobility-model.h (module 'NDNabstraction'): void ns3::SpringMobilityModel::AddSpring(ns3::Ptr<ns3::MobilityModel> node) [member function]
7424 cls.add_method('AddSpring',
7425 'void',
7426 [param('ns3::Ptr< ns3::MobilityModel >', 'node')])
7427 ## spring-mobility-model.h (module 'NDNabstraction'): static ns3::TypeId ns3::SpringMobilityModel::GetTypeId() [member function]
7428 cls.add_method('GetTypeId',
7429 'ns3::TypeId',
7430 [],
7431 is_static=True)
7432 ## spring-mobility-model.h (module 'NDNabstraction'): ns3::Vector ns3::SpringMobilityModel::DoGetPosition() const [member function]
7433 cls.add_method('DoGetPosition',
7434 'ns3::Vector',
7435 [],
7436 is_const=True, visibility='private', is_virtual=True)
7437 ## spring-mobility-model.h (module 'NDNabstraction'): ns3::Vector ns3::SpringMobilityModel::DoGetVelocity() const [member function]
7438 cls.add_method('DoGetVelocity',
7439 'ns3::Vector',
7440 [],
7441 is_const=True, visibility='private', is_virtual=True)
7442 ## spring-mobility-model.h (module 'NDNabstraction'): void ns3::SpringMobilityModel::DoSetPosition(ns3::Vector const & position) [member function]
7443 cls.add_method('DoSetPosition',
7444 'void',
7445 [param('ns3::Vector const &', 'position')],
7446 visibility='private', is_virtual=True)
7447 ## spring-mobility-model.h (module 'NDNabstraction'): void ns3::SpringMobilityModel::DoStart() [member function]
7448 cls.add_method('DoStart',
7449 'void',
7450 [],
7451 visibility='private', is_virtual=True)
7452 return
7453
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08007454def register_Ns3TcpCongestionWindowTracer_methods(root_module, cls):
7455 ## ccnx-consumer-window-tracer.h (module 'NDNabstraction'): ns3::TcpCongestionWindowTracer::TcpCongestionWindowTracer(ns3::TcpCongestionWindowTracer const & arg0) [copy constructor]
7456 cls.add_constructor([param('ns3::TcpCongestionWindowTracer const &', 'arg0')])
7457 ## ccnx-consumer-window-tracer.h (module 'NDNabstraction'): ns3::TcpCongestionWindowTracer::TcpCongestionWindowTracer(std::ostream & os, ns3::Ptr<ns3::Node> node, std::string const & appId="*") [constructor]
7458 cls.add_constructor([param('std::ostream &', 'os'), param('ns3::Ptr< ns3::Node >', 'node'), param('std::string const &', 'appId', default_value='"*"')])
7459 ## ccnx-consumer-window-tracer.h (module 'NDNabstraction'): void ns3::TcpCongestionWindowTracer::Connect() [member function]
7460 cls.add_method('Connect',
7461 'void',
7462 [])
7463 return
7464
Alexander Afanasyev381dea02011-11-03 08:33:26 -07007465def register_Ns3TimeChecker_methods(root_module, cls):
7466 ## nstime.h (module 'core'): ns3::TimeChecker::TimeChecker() [constructor]
7467 cls.add_constructor([])
7468 ## nstime.h (module 'core'): ns3::TimeChecker::TimeChecker(ns3::TimeChecker const & arg0) [copy constructor]
7469 cls.add_constructor([param('ns3::TimeChecker const &', 'arg0')])
7470 return
7471
7472def register_Ns3TimeValue_methods(root_module, cls):
7473 ## nstime.h (module 'core'): ns3::TimeValue::TimeValue() [constructor]
7474 cls.add_constructor([])
7475 ## nstime.h (module 'core'): ns3::TimeValue::TimeValue(ns3::TimeValue const & arg0) [copy constructor]
7476 cls.add_constructor([param('ns3::TimeValue const &', 'arg0')])
7477 ## nstime.h (module 'core'): ns3::TimeValue::TimeValue(ns3::Time const & value) [constructor]
7478 cls.add_constructor([param('ns3::Time const &', 'value')])
7479 ## nstime.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::TimeValue::Copy() const [member function]
7480 cls.add_method('Copy',
7481 'ns3::Ptr< ns3::AttributeValue >',
7482 [],
7483 is_const=True, is_virtual=True)
7484 ## nstime.h (module 'core'): bool ns3::TimeValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
7485 cls.add_method('DeserializeFromString',
7486 'bool',
7487 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
7488 is_virtual=True)
7489 ## nstime.h (module 'core'): ns3::Time ns3::TimeValue::Get() const [member function]
7490 cls.add_method('Get',
7491 'ns3::Time',
7492 [],
7493 is_const=True)
7494 ## nstime.h (module 'core'): std::string ns3::TimeValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
7495 cls.add_method('SerializeToString',
7496 'std::string',
7497 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
7498 is_const=True, is_virtual=True)
7499 ## nstime.h (module 'core'): void ns3::TimeValue::Set(ns3::Time const & value) [member function]
7500 cls.add_method('Set',
7501 'void',
7502 [param('ns3::Time const &', 'value')])
7503 return
7504
7505def register_Ns3TypeIdChecker_methods(root_module, cls):
7506 ## type-id.h (module 'core'): ns3::TypeIdChecker::TypeIdChecker() [constructor]
7507 cls.add_constructor([])
7508 ## type-id.h (module 'core'): ns3::TypeIdChecker::TypeIdChecker(ns3::TypeIdChecker const & arg0) [copy constructor]
7509 cls.add_constructor([param('ns3::TypeIdChecker const &', 'arg0')])
7510 return
7511
7512def register_Ns3TypeIdValue_methods(root_module, cls):
7513 ## type-id.h (module 'core'): ns3::TypeIdValue::TypeIdValue() [constructor]
7514 cls.add_constructor([])
7515 ## type-id.h (module 'core'): ns3::TypeIdValue::TypeIdValue(ns3::TypeIdValue const & arg0) [copy constructor]
7516 cls.add_constructor([param('ns3::TypeIdValue const &', 'arg0')])
7517 ## type-id.h (module 'core'): ns3::TypeIdValue::TypeIdValue(ns3::TypeId const & value) [constructor]
7518 cls.add_constructor([param('ns3::TypeId const &', 'value')])
7519 ## type-id.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::TypeIdValue::Copy() const [member function]
7520 cls.add_method('Copy',
7521 'ns3::Ptr< ns3::AttributeValue >',
7522 [],
7523 is_const=True, is_virtual=True)
7524 ## type-id.h (module 'core'): bool ns3::TypeIdValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
7525 cls.add_method('DeserializeFromString',
7526 'bool',
7527 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
7528 is_virtual=True)
7529 ## type-id.h (module 'core'): ns3::TypeId ns3::TypeIdValue::Get() const [member function]
7530 cls.add_method('Get',
7531 'ns3::TypeId',
7532 [],
7533 is_const=True)
7534 ## type-id.h (module 'core'): std::string ns3::TypeIdValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
7535 cls.add_method('SerializeToString',
7536 'std::string',
7537 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
7538 is_const=True, is_virtual=True)
7539 ## type-id.h (module 'core'): void ns3::TypeIdValue::Set(ns3::TypeId const & value) [member function]
7540 cls.add_method('Set',
7541 'void',
7542 [param('ns3::TypeId const &', 'value')])
7543 return
7544
Alexander Afanasyev4975f732011-12-20 17:52:19 -08007545def register_Ns3Vector2DChecker_methods(root_module, cls):
7546 ## vector.h (module 'core'): ns3::Vector2DChecker::Vector2DChecker() [constructor]
7547 cls.add_constructor([])
7548 ## vector.h (module 'core'): ns3::Vector2DChecker::Vector2DChecker(ns3::Vector2DChecker const & arg0) [copy constructor]
7549 cls.add_constructor([param('ns3::Vector2DChecker const &', 'arg0')])
7550 return
7551
7552def register_Ns3Vector2DValue_methods(root_module, cls):
7553 ## vector.h (module 'core'): ns3::Vector2DValue::Vector2DValue() [constructor]
7554 cls.add_constructor([])
7555 ## vector.h (module 'core'): ns3::Vector2DValue::Vector2DValue(ns3::Vector2DValue const & arg0) [copy constructor]
7556 cls.add_constructor([param('ns3::Vector2DValue const &', 'arg0')])
7557 ## vector.h (module 'core'): ns3::Vector2DValue::Vector2DValue(ns3::Vector2D const & value) [constructor]
7558 cls.add_constructor([param('ns3::Vector2D const &', 'value')])
7559 ## vector.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::Vector2DValue::Copy() const [member function]
7560 cls.add_method('Copy',
7561 'ns3::Ptr< ns3::AttributeValue >',
7562 [],
7563 is_const=True, is_virtual=True)
7564 ## vector.h (module 'core'): bool ns3::Vector2DValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
7565 cls.add_method('DeserializeFromString',
7566 'bool',
7567 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
7568 is_virtual=True)
7569 ## vector.h (module 'core'): ns3::Vector2D ns3::Vector2DValue::Get() const [member function]
7570 cls.add_method('Get',
7571 'ns3::Vector2D',
7572 [],
7573 is_const=True)
7574 ## vector.h (module 'core'): std::string ns3::Vector2DValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
7575 cls.add_method('SerializeToString',
7576 'std::string',
7577 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
7578 is_const=True, is_virtual=True)
7579 ## vector.h (module 'core'): void ns3::Vector2DValue::Set(ns3::Vector2D const & value) [member function]
7580 cls.add_method('Set',
7581 'void',
7582 [param('ns3::Vector2D const &', 'value')])
7583 return
7584
7585def register_Ns3Vector3DChecker_methods(root_module, cls):
7586 ## vector.h (module 'core'): ns3::Vector3DChecker::Vector3DChecker() [constructor]
7587 cls.add_constructor([])
7588 ## vector.h (module 'core'): ns3::Vector3DChecker::Vector3DChecker(ns3::Vector3DChecker const & arg0) [copy constructor]
7589 cls.add_constructor([param('ns3::Vector3DChecker const &', 'arg0')])
7590 return
7591
7592def register_Ns3Vector3DValue_methods(root_module, cls):
7593 ## vector.h (module 'core'): ns3::Vector3DValue::Vector3DValue() [constructor]
7594 cls.add_constructor([])
7595 ## vector.h (module 'core'): ns3::Vector3DValue::Vector3DValue(ns3::Vector3DValue const & arg0) [copy constructor]
7596 cls.add_constructor([param('ns3::Vector3DValue const &', 'arg0')])
7597 ## vector.h (module 'core'): ns3::Vector3DValue::Vector3DValue(ns3::Vector3D const & value) [constructor]
7598 cls.add_constructor([param('ns3::Vector3D const &', 'value')])
7599 ## vector.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::Vector3DValue::Copy() const [member function]
7600 cls.add_method('Copy',
7601 'ns3::Ptr< ns3::AttributeValue >',
7602 [],
7603 is_const=True, is_virtual=True)
7604 ## vector.h (module 'core'): bool ns3::Vector3DValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
7605 cls.add_method('DeserializeFromString',
7606 'bool',
7607 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
7608 is_virtual=True)
7609 ## vector.h (module 'core'): ns3::Vector3D ns3::Vector3DValue::Get() const [member function]
7610 cls.add_method('Get',
7611 'ns3::Vector3D',
7612 [],
7613 is_const=True)
7614 ## vector.h (module 'core'): std::string ns3::Vector3DValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
7615 cls.add_method('SerializeToString',
7616 'std::string',
7617 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
7618 is_const=True, is_virtual=True)
7619 ## vector.h (module 'core'): void ns3::Vector3DValue::Set(ns3::Vector3D const & value) [member function]
7620 cls.add_method('Set',
7621 'void',
7622 [param('ns3::Vector3D const &', 'value')])
7623 return
7624
Alexander Afanasyev381dea02011-11-03 08:33:26 -07007625def register_Ns3AddressChecker_methods(root_module, cls):
7626 ## address.h (module 'network'): ns3::AddressChecker::AddressChecker() [constructor]
7627 cls.add_constructor([])
7628 ## address.h (module 'network'): ns3::AddressChecker::AddressChecker(ns3::AddressChecker const & arg0) [copy constructor]
7629 cls.add_constructor([param('ns3::AddressChecker const &', 'arg0')])
7630 return
7631
7632def register_Ns3AddressValue_methods(root_module, cls):
7633 ## address.h (module 'network'): ns3::AddressValue::AddressValue() [constructor]
7634 cls.add_constructor([])
7635 ## address.h (module 'network'): ns3::AddressValue::AddressValue(ns3::AddressValue const & arg0) [copy constructor]
7636 cls.add_constructor([param('ns3::AddressValue const &', 'arg0')])
7637 ## address.h (module 'network'): ns3::AddressValue::AddressValue(ns3::Address const & value) [constructor]
7638 cls.add_constructor([param('ns3::Address const &', 'value')])
7639 ## address.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::AddressValue::Copy() const [member function]
7640 cls.add_method('Copy',
7641 'ns3::Ptr< ns3::AttributeValue >',
7642 [],
7643 is_const=True, is_virtual=True)
7644 ## address.h (module 'network'): bool ns3::AddressValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
7645 cls.add_method('DeserializeFromString',
7646 'bool',
7647 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
7648 is_virtual=True)
7649 ## address.h (module 'network'): ns3::Address ns3::AddressValue::Get() const [member function]
7650 cls.add_method('Get',
7651 'ns3::Address',
7652 [],
7653 is_const=True)
7654 ## address.h (module 'network'): std::string ns3::AddressValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
7655 cls.add_method('SerializeToString',
7656 'std::string',
7657 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
7658 is_const=True, is_virtual=True)
7659 ## address.h (module 'network'): void ns3::AddressValue::Set(ns3::Address const & value) [member function]
7660 cls.add_method('Set',
7661 'void',
7662 [param('ns3::Address const &', 'value')])
7663 return
7664
Alexander Afanasyev381dea02011-11-03 08:33:26 -07007665def register_functions(root_module):
7666 module = root_module
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08007667 ## batches.h (module 'NDNabstraction'): extern ns3::Ptr<ns3::AttributeChecker const> ns3::MakeBatchesChecker() [free function]
7668 module.add_function('MakeBatchesChecker',
7669 'ns3::Ptr< ns3::AttributeChecker const >',
7670 [])
Alexander Afanasyev381dea02011-11-03 08:33:26 -07007671 ## ccnx-name-components.h (module 'NDNabstraction'): extern ns3::Ptr<ns3::AttributeChecker const> ns3::MakeCcnxNameComponentsChecker() [free function]
7672 module.add_function('MakeCcnxNameComponentsChecker',
7673 'ns3::Ptr< ns3::AttributeChecker const >',
7674 [])
Alexander Afanasyev381dea02011-11-03 08:33:26 -07007675 register_functions_ns3_FatalImpl(module.get_submodule('FatalImpl'), root_module)
7676 register_functions_ns3_internal(module.get_submodule('internal'), root_module)
7677 return
7678
Alexander Afanasyev381dea02011-11-03 08:33:26 -07007679def register_functions_ns3_FatalImpl(module, root_module):
7680 return
7681
7682def register_functions_ns3_internal(module, root_module):
7683 return
7684
7685def main():
7686 out = FileCodeSink(sys.stdout)
7687 root_module = module_init()
7688 register_types(root_module)
7689 register_methods(root_module)
7690 register_functions(root_module)
7691 root_module.generate(out)
7692
7693if __name__ == '__main__':
7694 main()
7695