blob: e86e16bf442d8c70951cd859ce56d9d89e89470d [file] [log] [blame]
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001from 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 Afanasyevaa032ea2011-12-13 12:38:32 -080023 ## 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 Afanasyevaa032ea2011-12-13 12:38:32 -080029 ## 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 Afanasyevaa032ea2011-12-13 12:38:32 -080051 ## ccnx-content-object-header.h (module 'NDNabstraction'): ns3::CcnxContentObjectHeaderException [class]
52 module.add_class('CcnxContentObjectHeaderException')
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -080053 ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFibEntryContainer [struct]
54 module.add_class('CcnxFibEntryContainer')
55 ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFibFaceMetric [class]
56 module.add_class('CcnxFibFaceMetric')
57 ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFibFaceMetric::Status [enumeration]
58 module.add_enum('Status', ['NDN_FIB_GREEN', 'NDN_FIB_YELLOW', 'NDN_FIB_RED'], outer_class=root_module['ns3::CcnxFibFaceMetric'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -080059 ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFibFaceMetricContainer [struct]
60 module.add_class('CcnxFibFaceMetricContainer')
Alexander Afanasyev53872ce2011-12-16 13:17:18 -080061 ## ccnx-header-helper.h (module 'NDNabstraction'): ns3::CcnxHeaderHelper [class]
62 module.add_class('CcnxHeaderHelper')
63 ## ccnx-header-helper.h (module 'NDNabstraction'): ns3::CcnxHeaderHelper::Type [enumeration]
64 module.add_enum('Type', ['INTEREST', 'CONTENT_OBJECT'], outer_class=root_module['ns3::CcnxHeaderHelper'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -080065 ## ccnx-interest-header.h (module 'NDNabstraction'): ns3::CcnxInterestHeaderException [class]
66 module.add_class('CcnxInterestHeaderException')
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -080067 ## ccnx-stack-helper.h (module 'NDNabstraction'): ns3::CcnxStackHelper [class]
68 module.add_class('CcnxStackHelper')
Alexander Afanasyevb3e4b852011-12-23 15:58:20 -080069 ## ccnx-trace-helper.h (module 'NDNabstraction'): ns3::CcnxTraceHelper [class]
70 module.add_class('CcnxTraceHelper')
Alexander Afanasyev53872ce2011-12-16 13:17:18 -080071 ## ccnx-header-helper.h (module 'NDNabstraction'): ns3::CcnxUnknownHeaderException [class]
72 module.add_class('CcnxUnknownHeaderException')
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -080073 ## event-id.h (module 'core'): ns3::EventId [class]
74 module.add_class('EventId', import_from_module='ns.core')
Alexander Afanasyev6f933532012-02-29 13:30:37 -080075 ## int-to-type.h (module 'core'): ns3::IntToType<0> [struct]
76 module.add_class('IntToType', import_from_module='ns.core', template_parameters=['0'])
77 ## int-to-type.h (module 'core'): ns3::IntToType<0>::v_e [enumeration]
78 module.add_enum('v_e', ['value'], outer_class=root_module['ns3::IntToType< 0 >'], import_from_module='ns.core')
79 ## int-to-type.h (module 'core'): ns3::IntToType<1> [struct]
80 module.add_class('IntToType', import_from_module='ns.core', template_parameters=['1'])
81 ## int-to-type.h (module 'core'): ns3::IntToType<1>::v_e [enumeration]
82 module.add_enum('v_e', ['value'], outer_class=root_module['ns3::IntToType< 1 >'], import_from_module='ns.core')
83 ## int-to-type.h (module 'core'): ns3::IntToType<2> [struct]
84 module.add_class('IntToType', import_from_module='ns.core', template_parameters=['2'])
85 ## int-to-type.h (module 'core'): ns3::IntToType<2>::v_e [enumeration]
86 module.add_enum('v_e', ['value'], outer_class=root_module['ns3::IntToType< 2 >'], import_from_module='ns.core')
87 ## int-to-type.h (module 'core'): ns3::IntToType<3> [struct]
88 module.add_class('IntToType', import_from_module='ns.core', template_parameters=['3'])
89 ## int-to-type.h (module 'core'): ns3::IntToType<3>::v_e [enumeration]
90 module.add_enum('v_e', ['value'], outer_class=root_module['ns3::IntToType< 3 >'], import_from_module='ns.core')
91 ## int-to-type.h (module 'core'): ns3::IntToType<4> [struct]
92 module.add_class('IntToType', import_from_module='ns.core', template_parameters=['4'])
93 ## int-to-type.h (module 'core'): ns3::IntToType<4>::v_e [enumeration]
94 module.add_enum('v_e', ['value'], outer_class=root_module['ns3::IntToType< 4 >'], import_from_module='ns.core')
95 ## int-to-type.h (module 'core'): ns3::IntToType<5> [struct]
96 module.add_class('IntToType', import_from_module='ns.core', template_parameters=['5'])
97 ## int-to-type.h (module 'core'): ns3::IntToType<5>::v_e [enumeration]
98 module.add_enum('v_e', ['value'], outer_class=root_module['ns3::IntToType< 5 >'], import_from_module='ns.core')
99 ## int-to-type.h (module 'core'): ns3::IntToType<6> [struct]
100 module.add_class('IntToType', import_from_module='ns.core', template_parameters=['6'])
101 ## int-to-type.h (module 'core'): ns3::IntToType<6>::v_e [enumeration]
102 module.add_enum('v_e', ['value'], outer_class=root_module['ns3::IntToType< 6 >'], import_from_module='ns.core')
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800103 ## ipv4-address.h (module 'network'): ns3::Ipv4Address [class]
104 module.add_class('Ipv4Address', import_from_module='ns.network')
105 ## ipv4-address.h (module 'network'): ns3::Ipv4Address [class]
106 root_module['ns3::Ipv4Address'].implicitly_converts_to(root_module['ns3::Address'])
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -0800107 ## ipv4-interface-address.h (module 'internet'): ns3::Ipv4InterfaceAddress [class]
108 module.add_class('Ipv4InterfaceAddress', import_from_module='ns.internet')
109 ## ipv4-interface-address.h (module 'internet'): ns3::Ipv4InterfaceAddress::InterfaceAddressScope_e [enumeration]
110 module.add_enum('InterfaceAddressScope_e', ['HOST', 'LINK', 'GLOBAL'], outer_class=root_module['ns3::Ipv4InterfaceAddress'], import_from_module='ns.internet')
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800111 ## ipv4-address.h (module 'network'): ns3::Ipv4Mask [class]
112 module.add_class('Ipv4Mask', import_from_module='ns.network')
113 ## ipv6-address.h (module 'network'): ns3::Ipv6Address [class]
114 module.add_class('Ipv6Address', import_from_module='ns.network')
115 ## ipv6-address.h (module 'network'): ns3::Ipv6Address [class]
116 root_module['ns3::Ipv6Address'].implicitly_converts_to(root_module['ns3::Address'])
Alexander Afanasyev6f933532012-02-29 13:30:37 -0800117 ## ipv6-interface-address.h (module 'internet'): ns3::Ipv6InterfaceAddress [class]
118 module.add_class('Ipv6InterfaceAddress', import_from_module='ns.internet')
119 ## ipv6-interface-address.h (module 'internet'): ns3::Ipv6InterfaceAddress::State_e [enumeration]
120 module.add_enum('State_e', ['TENTATIVE', 'DEPRECATED', 'PREFERRED', 'PERMANENT', 'HOMEADDRESS', 'TENTATIVE_OPTIMISTIC', 'INVALID'], outer_class=root_module['ns3::Ipv6InterfaceAddress'], import_from_module='ns.internet')
121 ## ipv6-interface-address.h (module 'internet'): ns3::Ipv6InterfaceAddress::Scope_e [enumeration]
122 module.add_enum('Scope_e', ['HOST', 'LINKLOCAL', 'GLOBAL'], outer_class=root_module['ns3::Ipv6InterfaceAddress'], import_from_module='ns.internet')
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800123 ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix [class]
124 module.add_class('Ipv6Prefix', import_from_module='ns.network')
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800125 ## net-device-container.h (module 'network'): ns3::NetDeviceContainer [class]
126 module.add_class('NetDeviceContainer', import_from_module='ns.network')
127 ## node-container.h (module 'network'): ns3::NodeContainer [class]
128 module.add_class('NodeContainer', import_from_module='ns.network')
129 ## object-base.h (module 'core'): ns3::ObjectBase [class]
130 module.add_class('ObjectBase', allow_subclassing=True, import_from_module='ns.core')
131 ## object.h (module 'core'): ns3::ObjectDeleter [struct]
132 module.add_class('ObjectDeleter', import_from_module='ns.core')
133 ## object-factory.h (module 'core'): ns3::ObjectFactory [class]
134 module.add_class('ObjectFactory', import_from_module='ns.core')
135 ## packet-metadata.h (module 'network'): ns3::PacketMetadata [class]
136 module.add_class('PacketMetadata', import_from_module='ns.network')
137 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item [struct]
138 module.add_class('Item', import_from_module='ns.network', outer_class=root_module['ns3::PacketMetadata'])
139 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item [enumeration]
140 module.add_enum('', ['PAYLOAD', 'HEADER', 'TRAILER'], outer_class=root_module['ns3::PacketMetadata::Item'], import_from_module='ns.network')
141 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::ItemIterator [class]
142 module.add_class('ItemIterator', import_from_module='ns.network', outer_class=root_module['ns3::PacketMetadata'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800143 ## random-variable.h (module 'core'): ns3::RandomVariable [class]
144 module.add_class('RandomVariable', import_from_module='ns.core')
145 ## random-variable.h (module 'core'): ns3::SeedManager [class]
146 module.add_class('SeedManager', import_from_module='ns.core')
147 ## random-variable.h (module 'core'): ns3::SequentialVariable [class]
148 module.add_class('SequentialVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
149 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Chunk, ns3::ObjectBase, ns3::DefaultDeleter<ns3::Chunk> > [class]
150 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'))
151 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter> [class]
152 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 -0800153 ## simulator.h (module 'core'): ns3::Simulator [class]
154 module.add_class('Simulator', destructor_visibility='private', import_from_module='ns.core')
Alexander Afanasyev4975f732011-12-20 17:52:19 -0800155 ## spring-mobility-helper.h (module 'NDNabstraction'): ns3::SpringMobilityHelper [class]
156 module.add_class('SpringMobilityHelper')
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800157 ## tag-buffer.h (module 'network'): ns3::TagBuffer [class]
158 module.add_class('TagBuffer', import_from_module='ns.network')
Alexander Afanasyev6f933532012-02-29 13:30:37 -0800159 ## timer.h (module 'core'): ns3::Timer [class]
160 module.add_class('Timer', import_from_module='ns.core')
161 ## timer.h (module 'core'): ns3::Timer::DestroyPolicy [enumeration]
162 module.add_enum('DestroyPolicy', ['CANCEL_ON_DESTROY', 'REMOVE_ON_DESTROY', 'CHECK_ON_DESTROY'], outer_class=root_module['ns3::Timer'], import_from_module='ns.core')
163 ## timer.h (module 'core'): ns3::Timer::State [enumeration]
164 module.add_enum('State', ['RUNNING', 'EXPIRED', 'SUSPENDED'], outer_class=root_module['ns3::Timer'], import_from_module='ns.core')
165 ## timer-impl.h (module 'core'): ns3::TimerImpl [class]
166 module.add_class('TimerImpl', allow_subclassing=True, import_from_module='ns.core')
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800167 ## random-variable.h (module 'core'): ns3::TriangularVariable [class]
168 module.add_class('TriangularVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
169 ## type-id.h (module 'core'): ns3::TypeId [class]
170 module.add_class('TypeId', import_from_module='ns.core')
171 ## type-id.h (module 'core'): ns3::TypeId::AttributeFlag [enumeration]
172 module.add_enum('AttributeFlag', ['ATTR_GET', 'ATTR_SET', 'ATTR_CONSTRUCT', 'ATTR_SGC'], outer_class=root_module['ns3::TypeId'], import_from_module='ns.core')
173 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation [struct]
174 module.add_class('AttributeInformation', import_from_module='ns.core', outer_class=root_module['ns3::TypeId'])
175 ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation [struct]
176 module.add_class('TraceSourceInformation', import_from_module='ns.core', outer_class=root_module['ns3::TypeId'])
177 ## random-variable.h (module 'core'): ns3::UniformVariable [class]
178 module.add_class('UniformVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
Alexander Afanasyev4975f732011-12-20 17:52:19 -0800179 ## vector.h (module 'core'): ns3::Vector2D [class]
180 module.add_class('Vector2D', import_from_module='ns.core')
181 ## vector.h (module 'core'): ns3::Vector3D [class]
182 module.add_class('Vector3D', import_from_module='ns.core')
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800183 ## random-variable.h (module 'core'): ns3::WeibullVariable [class]
184 module.add_class('WeibullVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
185 ## random-variable.h (module 'core'): ns3::ZetaVariable [class]
186 module.add_class('ZetaVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
187 ## random-variable.h (module 'core'): ns3::ZipfVariable [class]
188 module.add_class('ZipfVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
189 ## empty.h (module 'core'): ns3::empty [class]
190 module.add_class('empty', import_from_module='ns.core')
191 ## int64x64-double.h (module 'core'): ns3::int64x64_t [class]
192 module.add_class('int64x64_t', import_from_module='ns.core')
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800193 ## chunk.h (module 'network'): ns3::Chunk [class]
194 module.add_class('Chunk', import_from_module='ns.network', parent=root_module['ns3::SimpleRefCount< ns3::Chunk, ns3::ObjectBase, ns3::DefaultDeleter<ns3::Chunk> >'])
195 ## random-variable.h (module 'core'): ns3::ConstantVariable [class]
196 module.add_class('ConstantVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
197 ## random-variable.h (module 'core'): ns3::DeterministicVariable [class]
198 module.add_class('DeterministicVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
199 ## random-variable.h (module 'core'): ns3::EmpiricalVariable [class]
200 module.add_class('EmpiricalVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
201 ## random-variable.h (module 'core'): ns3::ErlangVariable [class]
202 module.add_class('ErlangVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
203 ## random-variable.h (module 'core'): ns3::ExponentialVariable [class]
204 module.add_class('ExponentialVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
205 ## random-variable.h (module 'core'): ns3::GammaVariable [class]
206 module.add_class('GammaVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
207 ## header.h (module 'network'): ns3::Header [class]
208 module.add_class('Header', import_from_module='ns.network', parent=root_module['ns3::Chunk'])
209 ## random-variable.h (module 'core'): ns3::IntEmpiricalVariable [class]
210 module.add_class('IntEmpiricalVariable', import_from_module='ns.core', parent=root_module['ns3::EmpiricalVariable'])
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -0800211 ## ipv4-header.h (module 'internet'): ns3::Ipv4Header [class]
212 module.add_class('Ipv4Header', import_from_module='ns.internet', parent=root_module['ns3::Header'])
213 ## ipv4-header.h (module 'internet'): ns3::Ipv4Header::DscpType [enumeration]
214 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')
215 ## ipv4-header.h (module 'internet'): ns3::Ipv4Header::EcnType [enumeration]
216 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 -0800217 ## ipv6-header.h (module 'internet'): ns3::Ipv6Header [class]
218 module.add_class('Ipv6Header', import_from_module='ns.internet', parent=root_module['ns3::Header'])
219 ## ipv6-header.h (module 'internet'): ns3::Ipv6Header::NextHeader_e [enumeration]
220 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 Afanasyevaa032ea2011-12-13 12:38:32 -0800221 ## random-variable.h (module 'core'): ns3::LogNormalVariable [class]
222 module.add_class('LogNormalVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
223 ## random-variable.h (module 'core'): ns3::NormalVariable [class]
224 module.add_class('NormalVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
225 ## object.h (module 'core'): ns3::Object [class]
226 module.add_class('Object', import_from_module='ns.core', parent=root_module['ns3::SimpleRefCount< ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter >'])
227 ## object.h (module 'core'): ns3::Object::AggregateIterator [class]
228 module.add_class('AggregateIterator', import_from_module='ns.core', outer_class=root_module['ns3::Object'])
229 ## random-variable.h (module 'core'): ns3::ParetoVariable [class]
230 module.add_class('ParetoVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800231 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> > [class]
232 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'))
233 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter<ns3::AttributeChecker> > [class]
234 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'))
235 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter<ns3::AttributeValue> > [class]
236 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'))
237 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> > [class]
238 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 -0800239 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CcnxAppTracer, ns3::empty, ns3::DefaultDeleter<ns3::CcnxAppTracer> > [class]
240 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 Afanasyevaa032ea2011-12-13 12:38:32 -0800241 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CcnxFaceContainer, ns3::empty, ns3::DefaultDeleter<ns3::CcnxFaceContainer> > [class]
242 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'))
243 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CcnxFibEntry, ns3::empty, ns3::DefaultDeleter<ns3::CcnxFibEntry> > [class]
244 module.add_class('SimpleRefCount', automatic_type_narrowing=True, template_parameters=['ns3::CcnxFibEntry', 'ns3::empty', 'ns3::DefaultDeleter<ns3::CcnxFibEntry>'], 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::CcnxL3Tracer, ns3::empty, ns3::DefaultDeleter<ns3::CcnxL3Tracer> > [class]
246 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 Afanasyevaa032ea2011-12-13 12:38:32 -0800247 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CcnxNameComponents, ns3::empty, ns3::DefaultDeleter<ns3::CcnxNameComponents> > [class]
248 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 -0800249 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CcnxPathWeightTracer, ns3::empty, ns3::DefaultDeleter<ns3::CcnxPathWeightTracer> > [class]
250 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 Afanasyevaa032ea2011-12-13 12:38:32 -0800251 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::EventImpl, ns3::empty, ns3::DefaultDeleter<ns3::EventImpl> > [class]
252 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 -0800253 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Ipv4AppTracer, ns3::empty, ns3::DefaultDeleter<ns3::Ipv4AppTracer> > [class]
254 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 -0800255 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Ipv4L3Tracer, ns3::empty, ns3::DefaultDeleter<ns3::Ipv4L3Tracer> > [class]
256 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 -0800257 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Ipv4MulticastRoute, ns3::empty, ns3::DefaultDeleter<ns3::Ipv4MulticastRoute> > [class]
258 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'))
259 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Ipv4Route, ns3::empty, ns3::DefaultDeleter<ns3::Ipv4Route> > [class]
260 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 Afanasyevaa032ea2011-12-13 12:38:32 -0800261 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::NixVector, ns3::empty, ns3::DefaultDeleter<ns3::NixVector> > [class]
262 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 -0800263 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::OutputStreamWrapper, ns3::empty, ns3::DefaultDeleter<ns3::OutputStreamWrapper> > [class]
264 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 Afanasyevaa032ea2011-12-13 12:38:32 -0800265 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Packet, ns3::empty, ns3::DefaultDeleter<ns3::Packet> > [class]
266 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 -0800267 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::TopologyReader, ns3::empty, ns3::DefaultDeleter<ns3::TopologyReader> > [class]
268 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 Afanasyevaa032ea2011-12-13 12:38:32 -0800269 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter<ns3::TraceSourceAccessor> > [class]
270 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 -0800271 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::WindowTracer, ns3::empty, ns3::DefaultDeleter<ns3::WindowTracer> > [class]
272 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'))
273 ## socket.h (module 'network'): ns3::Socket [class]
274 module.add_class('Socket', import_from_module='ns.network', parent=root_module['ns3::Object'])
275 ## socket.h (module 'network'): ns3::Socket::SocketErrno [enumeration]
276 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')
277 ## socket.h (module 'network'): ns3::Socket::SocketType [enumeration]
278 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')
279 ## tag.h (module 'network'): ns3::Tag [class]
280 module.add_class('Tag', import_from_module='ns.network', parent=root_module['ns3::Object'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800281 ## nstime.h (module 'core'): ns3::Time [class]
282 module.add_class('Time', import_from_module='ns.core')
283 ## nstime.h (module 'core'): ns3::Time::Unit [enumeration]
284 module.add_enum('Unit', ['S', 'MS', 'US', 'NS', 'PS', 'FS', 'LAST'], outer_class=root_module['ns3::Time'], import_from_module='ns.core')
285 ## nstime.h (module 'core'): ns3::Time [class]
286 root_module['ns3::Time'].implicitly_converts_to(root_module['ns3::int64x64_t'])
287 ## topology-reader.h (module 'topology-read'): ns3::TopologyReader [class]
Alexander Afanasyevae3b7c32011-12-13 13:20:06 -0800288 module.add_class('TopologyReader', import_from_module='ns.topology_read', parent=root_module['ns3::SimpleRefCount< ns3::TopologyReader, ns3::empty, ns3::DefaultDeleter<ns3::TopologyReader> >'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800289 ## topology-reader.h (module 'topology-read'): ns3::TopologyReader::Link [class]
290 module.add_class('Link', import_from_module='ns.topology_read', outer_class=root_module['ns3::TopologyReader'])
291 ## trace-source-accessor.h (module 'core'): ns3::TraceSourceAccessor [class]
292 module.add_class('TraceSourceAccessor', import_from_module='ns.core', parent=root_module['ns3::SimpleRefCount< ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter<ns3::TraceSourceAccessor> >'])
293 ## trailer.h (module 'network'): ns3::Trailer [class]
294 module.add_class('Trailer', import_from_module='ns.network', parent=root_module['ns3::Chunk'])
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -0800295 ## ccnx-path-stretch-tag.h (module 'NDNabstraction'): ns3::WeightsPathStretchTag [class]
296 module.add_class('WeightsPathStretchTag', parent=root_module['ns3::Tag'])
297 ## ccnx-path-stretch-tag.h (module 'NDNabstraction'): ns3::WeightsPathStretchTag::NodeWeightPair [struct]
298 module.add_class('NodeWeightPair', outer_class=root_module['ns3::WeightsPathStretchTag'])
299 ## ccnx-consumer-window-tracer.h (module 'NDNabstraction'): ns3::WindowTracer [class]
300 module.add_class('WindowTracer', parent=root_module['ns3::SimpleRefCount< ns3::WindowTracer, ns3::empty, ns3::DefaultDeleter<ns3::WindowTracer> >'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800301 ## annotated-topology-reader.h (module 'NDNabstraction'): ns3::AnnotatedTopologyReader [class]
302 module.add_class('AnnotatedTopologyReader', parent=root_module['ns3::TopologyReader'])
303 ## application.h (module 'network'): ns3::Application [class]
304 module.add_class('Application', import_from_module='ns.network', parent=root_module['ns3::Object'])
305 ## attribute.h (module 'core'): ns3::AttributeAccessor [class]
306 module.add_class('AttributeAccessor', import_from_module='ns.core', parent=root_module['ns3::SimpleRefCount< ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> >'])
307 ## attribute.h (module 'core'): ns3::AttributeChecker [class]
308 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> >'])
309 ## attribute.h (module 'core'): ns3::AttributeValue [class]
310 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 -0800311 ## batches.h (module 'NDNabstraction'): ns3::BatchesChecker [class]
312 module.add_class('BatchesChecker', parent=root_module['ns3::AttributeChecker'])
313 ## batches.h (module 'NDNabstraction'): ns3::BatchesValue [class]
314 module.add_class('BatchesValue', parent=root_module['ns3::AttributeValue'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800315 ## callback.h (module 'core'): ns3::CallbackChecker [class]
316 module.add_class('CallbackChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker'])
317 ## callback.h (module 'core'): ns3::CallbackImplBase [class]
318 module.add_class('CallbackImplBase', import_from_module='ns.core', parent=root_module['ns3::SimpleRefCount< ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> >'])
319 ## callback.h (module 'core'): ns3::CallbackValue [class]
320 module.add_class('CallbackValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
321 ## ccnx.h (module 'NDNabstraction'): ns3::Ccnx [class]
322 module.add_class('Ccnx', parent=root_module['ns3::Object'])
Alexander Afanasyev8f5a9bb2011-12-18 19:49:02 -0800323 ## ccnx.h (module 'NDNabstraction'): ns3::Ccnx::DropReason [enumeration]
324 module.add_enum('DropReason', ['DUPLICATED', 'SUPPRESSED', 'NO_FACES', 'NON_DUPLICATED', 'AFTER_SATISFIED', 'UNSOLICITED'], outer_class=root_module['ns3::Ccnx'])
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -0800325 ## ccnx-app.h (module 'NDNabstraction'): ns3::CcnxApp [class]
326 module.add_class('CcnxApp', parent=root_module['ns3::Application'])
Alexander Afanasyevb3e4b852011-12-23 15:58:20 -0800327 ## ccnx-app-tracer.h (module 'NDNabstraction'): ns3::CcnxAppTracer [class]
328 module.add_class('CcnxAppTracer', parent=root_module['ns3::SimpleRefCount< ns3::CcnxAppTracer, ns3::empty, ns3::DefaultDeleter<ns3::CcnxAppTracer> >'])
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -0800329 ## ccnx-consumer-window-tracer.h (module 'NDNabstraction'): ns3::CcnxConsumerWindowTracer [class]
330 module.add_class('CcnxConsumerWindowTracer', parent=root_module['ns3::WindowTracer'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800331 ## ccnx-content-object-header.h (module 'NDNabstraction'): ns3::CcnxContentObjectHeader [class]
332 module.add_class('CcnxContentObjectHeader', parent=root_module['ns3::Header'])
Alexander Afanasyev9568f952012-04-05 16:09:14 -0700333 ## ccnx-content-object-header.h (module 'NDNabstraction'): ns3::CcnxContentObjectHeader::SignedInfo [struct]
334 module.add_class('SignedInfo', outer_class=root_module['ns3::CcnxContentObjectHeader'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800335 ## ccnx-content-object-header.h (module 'NDNabstraction'): ns3::CcnxContentObjectTail [class]
336 module.add_class('CcnxContentObjectTail', parent=root_module['ns3::Trailer'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800337 ## ccnx-face.h (module 'NDNabstraction'): ns3::CcnxFace [class]
Alexander Afanasyev53872ce2011-12-16 13:17:18 -0800338 module.add_class('CcnxFace', parent=root_module['ns3::Object'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800339 ## ccnx-face-container.h (module 'NDNabstraction'): ns3::CcnxFaceContainer [class]
340 module.add_class('CcnxFaceContainer', parent=root_module['ns3::SimpleRefCount< ns3::CcnxFaceContainer, ns3::empty, ns3::DefaultDeleter<ns3::CcnxFaceContainer> >'])
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -0800341 ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFib [class]
342 module.add_class('CcnxFib', parent=root_module['ns3::Object'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800343 ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFibEntry [class]
344 module.add_class('CcnxFibEntry', parent=root_module['ns3::SimpleRefCount< ns3::CcnxFibEntry, ns3::empty, ns3::DefaultDeleter<ns3::CcnxFibEntry> >'])
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -0800345 ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFibEntry::NoFaces [class]
346 module.add_class('NoFaces', outer_class=root_module['ns3::CcnxFibEntry'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800347 ## ccnx-interest-header.h (module 'NDNabstraction'): ns3::CcnxInterestHeader [class]
348 module.add_class('CcnxInterestHeader', parent=root_module['ns3::Header'])
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -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 Afanasyevaa032ea2011-12-13 12:38:32 -0800353 ## 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 Afanasyevaa032ea2011-12-13 12:38:32 -0800361 ## 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 Afanasyevaa032ea2011-12-13 12:38:32 -0800373 ## 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 Afanasyevaa032ea2011-12-13 12:38:32 -0800385 ## 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 Afanasyevaa032ea2011-12-13 12:38:32 -0800395 ## 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 Afanasyevaa032ea2011-12-13 12:38:32 -0800401 ## 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 Afanasyevaa032ea2011-12-13 12:38:32 -0800407 ## 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 Afanasyevaa032ea2011-12-13 12:38:32 -0800421 ## 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 Afanasyevaa032ea2011-12-13 12:38:32 -0800423 ## 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 Afanasyevdd3eeec2011-12-13 13:19:15 -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 Afanasyevaa032ea2011-12-13 12:38:32 -0800441 ## 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 Afanasyevaa032ea2011-12-13 12:38:32 -0800457 ## 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 Afanasyevaa032ea2011-12-13 12:38:32 -0800461 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 Afanasyevaa032ea2011-12-13 12:38:32 -0800464 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 Afanasyevaa032ea2011-12-13 12:38:32 -0800479
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 Afanasyevaa032ea2011-12-13 12:38:32 -0800492def 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 Afanasyevaa032ea2011-12-13 12:38:32 -0800503 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 Afanasyevaa032ea2011-12-13 12:38:32 -0800514 register_Ns3CcnxContentObjectHeaderException_methods(root_module, root_module['ns3::CcnxContentObjectHeaderException'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800515 register_Ns3CcnxFibEntryContainer_methods(root_module, root_module['ns3::CcnxFibEntryContainer'])
516 register_Ns3CcnxFibFaceMetric_methods(root_module, root_module['ns3::CcnxFibFaceMetric'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800517 register_Ns3CcnxFibFaceMetricContainer_methods(root_module, root_module['ns3::CcnxFibFaceMetricContainer'])
Alexander Afanasyev53872ce2011-12-16 13:17:18 -0800518 register_Ns3CcnxHeaderHelper_methods(root_module, root_module['ns3::CcnxHeaderHelper'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800519 register_Ns3CcnxInterestHeaderException_methods(root_module, root_module['ns3::CcnxInterestHeaderException'])
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -0800520 register_Ns3CcnxStackHelper_methods(root_module, root_module['ns3::CcnxStackHelper'])
Alexander Afanasyevb3e4b852011-12-23 15:58:20 -0800521 register_Ns3CcnxTraceHelper_methods(root_module, root_module['ns3::CcnxTraceHelper'])
Alexander Afanasyev53872ce2011-12-16 13:17:18 -0800522 register_Ns3CcnxUnknownHeaderException_methods(root_module, root_module['ns3::CcnxUnknownHeaderException'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800523 register_Ns3EventId_methods(root_module, root_module['ns3::EventId'])
Alexander Afanasyev6f933532012-02-29 13:30:37 -0800524 register_Ns3IntToType__0_methods(root_module, root_module['ns3::IntToType< 0 >'])
525 register_Ns3IntToType__1_methods(root_module, root_module['ns3::IntToType< 1 >'])
526 register_Ns3IntToType__2_methods(root_module, root_module['ns3::IntToType< 2 >'])
527 register_Ns3IntToType__3_methods(root_module, root_module['ns3::IntToType< 3 >'])
528 register_Ns3IntToType__4_methods(root_module, root_module['ns3::IntToType< 4 >'])
529 register_Ns3IntToType__5_methods(root_module, root_module['ns3::IntToType< 5 >'])
530 register_Ns3IntToType__6_methods(root_module, root_module['ns3::IntToType< 6 >'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800531 register_Ns3Ipv4Address_methods(root_module, root_module['ns3::Ipv4Address'])
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -0800532 register_Ns3Ipv4InterfaceAddress_methods(root_module, root_module['ns3::Ipv4InterfaceAddress'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800533 register_Ns3Ipv4Mask_methods(root_module, root_module['ns3::Ipv4Mask'])
534 register_Ns3Ipv6Address_methods(root_module, root_module['ns3::Ipv6Address'])
Alexander Afanasyev6f933532012-02-29 13:30:37 -0800535 register_Ns3Ipv6InterfaceAddress_methods(root_module, root_module['ns3::Ipv6InterfaceAddress'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800536 register_Ns3Ipv6Prefix_methods(root_module, root_module['ns3::Ipv6Prefix'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800537 register_Ns3NetDeviceContainer_methods(root_module, root_module['ns3::NetDeviceContainer'])
538 register_Ns3NodeContainer_methods(root_module, root_module['ns3::NodeContainer'])
539 register_Ns3ObjectBase_methods(root_module, root_module['ns3::ObjectBase'])
540 register_Ns3ObjectDeleter_methods(root_module, root_module['ns3::ObjectDeleter'])
541 register_Ns3ObjectFactory_methods(root_module, root_module['ns3::ObjectFactory'])
542 register_Ns3PacketMetadata_methods(root_module, root_module['ns3::PacketMetadata'])
543 register_Ns3PacketMetadataItem_methods(root_module, root_module['ns3::PacketMetadata::Item'])
544 register_Ns3PacketMetadataItemIterator_methods(root_module, root_module['ns3::PacketMetadata::ItemIterator'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800545 register_Ns3RandomVariable_methods(root_module, root_module['ns3::RandomVariable'])
546 register_Ns3SeedManager_methods(root_module, root_module['ns3::SeedManager'])
547 register_Ns3SequentialVariable_methods(root_module, root_module['ns3::SequentialVariable'])
548 register_Ns3SimpleRefCount__Ns3Chunk_Ns3ObjectBase_Ns3DefaultDeleter__lt__ns3Chunk__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::Chunk, ns3::ObjectBase, ns3::DefaultDeleter<ns3::Chunk> >'])
549 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 -0800550 register_Ns3Simulator_methods(root_module, root_module['ns3::Simulator'])
Alexander Afanasyev4975f732011-12-20 17:52:19 -0800551 register_Ns3SpringMobilityHelper_methods(root_module, root_module['ns3::SpringMobilityHelper'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800552 register_Ns3TagBuffer_methods(root_module, root_module['ns3::TagBuffer'])
Alexander Afanasyev6f933532012-02-29 13:30:37 -0800553 register_Ns3Timer_methods(root_module, root_module['ns3::Timer'])
554 register_Ns3TimerImpl_methods(root_module, root_module['ns3::TimerImpl'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800555 register_Ns3TriangularVariable_methods(root_module, root_module['ns3::TriangularVariable'])
556 register_Ns3TypeId_methods(root_module, root_module['ns3::TypeId'])
557 register_Ns3TypeIdAttributeInformation_methods(root_module, root_module['ns3::TypeId::AttributeInformation'])
558 register_Ns3TypeIdTraceSourceInformation_methods(root_module, root_module['ns3::TypeId::TraceSourceInformation'])
559 register_Ns3UniformVariable_methods(root_module, root_module['ns3::UniformVariable'])
Alexander Afanasyev4975f732011-12-20 17:52:19 -0800560 register_Ns3Vector2D_methods(root_module, root_module['ns3::Vector2D'])
561 register_Ns3Vector3D_methods(root_module, root_module['ns3::Vector3D'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800562 register_Ns3WeibullVariable_methods(root_module, root_module['ns3::WeibullVariable'])
563 register_Ns3ZetaVariable_methods(root_module, root_module['ns3::ZetaVariable'])
564 register_Ns3ZipfVariable_methods(root_module, root_module['ns3::ZipfVariable'])
565 register_Ns3Empty_methods(root_module, root_module['ns3::empty'])
566 register_Ns3Int64x64_t_methods(root_module, root_module['ns3::int64x64_t'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800567 register_Ns3Chunk_methods(root_module, root_module['ns3::Chunk'])
568 register_Ns3ConstantVariable_methods(root_module, root_module['ns3::ConstantVariable'])
569 register_Ns3DeterministicVariable_methods(root_module, root_module['ns3::DeterministicVariable'])
570 register_Ns3EmpiricalVariable_methods(root_module, root_module['ns3::EmpiricalVariable'])
571 register_Ns3ErlangVariable_methods(root_module, root_module['ns3::ErlangVariable'])
572 register_Ns3ExponentialVariable_methods(root_module, root_module['ns3::ExponentialVariable'])
573 register_Ns3GammaVariable_methods(root_module, root_module['ns3::GammaVariable'])
574 register_Ns3Header_methods(root_module, root_module['ns3::Header'])
575 register_Ns3IntEmpiricalVariable_methods(root_module, root_module['ns3::IntEmpiricalVariable'])
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -0800576 register_Ns3Ipv4Header_methods(root_module, root_module['ns3::Ipv4Header'])
Alexander Afanasyev6f933532012-02-29 13:30:37 -0800577 register_Ns3Ipv6Header_methods(root_module, root_module['ns3::Ipv6Header'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800578 register_Ns3LogNormalVariable_methods(root_module, root_module['ns3::LogNormalVariable'])
579 register_Ns3NormalVariable_methods(root_module, root_module['ns3::NormalVariable'])
580 register_Ns3Object_methods(root_module, root_module['ns3::Object'])
581 register_Ns3ObjectAggregateIterator_methods(root_module, root_module['ns3::Object::AggregateIterator'])
582 register_Ns3ParetoVariable_methods(root_module, root_module['ns3::ParetoVariable'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800583 register_Ns3SimpleRefCount__Ns3AttributeAccessor_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeAccessor__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> >'])
584 register_Ns3SimpleRefCount__Ns3AttributeChecker_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeChecker__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter<ns3::AttributeChecker> >'])
585 register_Ns3SimpleRefCount__Ns3AttributeValue_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeValue__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter<ns3::AttributeValue> >'])
586 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 -0800587 register_Ns3SimpleRefCount__Ns3CcnxAppTracer_Ns3Empty_Ns3DefaultDeleter__lt__ns3CcnxAppTracer__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::CcnxAppTracer, ns3::empty, ns3::DefaultDeleter<ns3::CcnxAppTracer> >'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800588 register_Ns3SimpleRefCount__Ns3CcnxFaceContainer_Ns3Empty_Ns3DefaultDeleter__lt__ns3CcnxFaceContainer__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::CcnxFaceContainer, ns3::empty, ns3::DefaultDeleter<ns3::CcnxFaceContainer> >'])
589 register_Ns3SimpleRefCount__Ns3CcnxFibEntry_Ns3Empty_Ns3DefaultDeleter__lt__ns3CcnxFibEntry__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::CcnxFibEntry, ns3::empty, ns3::DefaultDeleter<ns3::CcnxFibEntry> >'])
Alexander Afanasyevb3e4b852011-12-23 15:58:20 -0800590 register_Ns3SimpleRefCount__Ns3CcnxL3Tracer_Ns3Empty_Ns3DefaultDeleter__lt__ns3CcnxL3Tracer__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::CcnxL3Tracer, ns3::empty, ns3::DefaultDeleter<ns3::CcnxL3Tracer> >'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800591 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 -0800592 register_Ns3SimpleRefCount__Ns3CcnxPathWeightTracer_Ns3Empty_Ns3DefaultDeleter__lt__ns3CcnxPathWeightTracer__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::CcnxPathWeightTracer, ns3::empty, ns3::DefaultDeleter<ns3::CcnxPathWeightTracer> >'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800593 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 -0800594 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 -0800595 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 -0800596 register_Ns3SimpleRefCount__Ns3Ipv4MulticastRoute_Ns3Empty_Ns3DefaultDeleter__lt__ns3Ipv4MulticastRoute__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::Ipv4MulticastRoute, ns3::empty, ns3::DefaultDeleter<ns3::Ipv4MulticastRoute> >'])
597 register_Ns3SimpleRefCount__Ns3Ipv4Route_Ns3Empty_Ns3DefaultDeleter__lt__ns3Ipv4Route__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::Ipv4Route, ns3::empty, ns3::DefaultDeleter<ns3::Ipv4Route> >'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800598 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 -0800599 register_Ns3SimpleRefCount__Ns3OutputStreamWrapper_Ns3Empty_Ns3DefaultDeleter__lt__ns3OutputStreamWrapper__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::OutputStreamWrapper, ns3::empty, ns3::DefaultDeleter<ns3::OutputStreamWrapper> >'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800600 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 -0800601 register_Ns3SimpleRefCount__Ns3TopologyReader_Ns3Empty_Ns3DefaultDeleter__lt__ns3TopologyReader__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::TopologyReader, ns3::empty, ns3::DefaultDeleter<ns3::TopologyReader> >'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800602 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 -0800603 register_Ns3SimpleRefCount__Ns3WindowTracer_Ns3Empty_Ns3DefaultDeleter__lt__ns3WindowTracer__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::WindowTracer, ns3::empty, ns3::DefaultDeleter<ns3::WindowTracer> >'])
604 register_Ns3Socket_methods(root_module, root_module['ns3::Socket'])
605 register_Ns3Tag_methods(root_module, root_module['ns3::Tag'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800606 register_Ns3Time_methods(root_module, root_module['ns3::Time'])
607 register_Ns3TopologyReader_methods(root_module, root_module['ns3::TopologyReader'])
608 register_Ns3TopologyReaderLink_methods(root_module, root_module['ns3::TopologyReader::Link'])
609 register_Ns3TraceSourceAccessor_methods(root_module, root_module['ns3::TraceSourceAccessor'])
610 register_Ns3Trailer_methods(root_module, root_module['ns3::Trailer'])
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -0800611 register_Ns3WeightsPathStretchTag_methods(root_module, root_module['ns3::WeightsPathStretchTag'])
612 register_Ns3WeightsPathStretchTagNodeWeightPair_methods(root_module, root_module['ns3::WeightsPathStretchTag::NodeWeightPair'])
613 register_Ns3WindowTracer_methods(root_module, root_module['ns3::WindowTracer'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800614 register_Ns3AnnotatedTopologyReader_methods(root_module, root_module['ns3::AnnotatedTopologyReader'])
615 register_Ns3Application_methods(root_module, root_module['ns3::Application'])
616 register_Ns3AttributeAccessor_methods(root_module, root_module['ns3::AttributeAccessor'])
617 register_Ns3AttributeChecker_methods(root_module, root_module['ns3::AttributeChecker'])
618 register_Ns3AttributeValue_methods(root_module, root_module['ns3::AttributeValue'])
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -0800619 register_Ns3BatchesChecker_methods(root_module, root_module['ns3::BatchesChecker'])
620 register_Ns3BatchesValue_methods(root_module, root_module['ns3::BatchesValue'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800621 register_Ns3CallbackChecker_methods(root_module, root_module['ns3::CallbackChecker'])
622 register_Ns3CallbackImplBase_methods(root_module, root_module['ns3::CallbackImplBase'])
623 register_Ns3CallbackValue_methods(root_module, root_module['ns3::CallbackValue'])
624 register_Ns3Ccnx_methods(root_module, root_module['ns3::Ccnx'])
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -0800625 register_Ns3CcnxApp_methods(root_module, root_module['ns3::CcnxApp'])
Alexander Afanasyevb3e4b852011-12-23 15:58:20 -0800626 register_Ns3CcnxAppTracer_methods(root_module, root_module['ns3::CcnxAppTracer'])
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -0800627 register_Ns3CcnxConsumerWindowTracer_methods(root_module, root_module['ns3::CcnxConsumerWindowTracer'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800628 register_Ns3CcnxContentObjectHeader_methods(root_module, root_module['ns3::CcnxContentObjectHeader'])
Alexander Afanasyev9568f952012-04-05 16:09:14 -0700629 register_Ns3CcnxContentObjectHeaderSignedInfo_methods(root_module, root_module['ns3::CcnxContentObjectHeader::SignedInfo'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800630 register_Ns3CcnxContentObjectTail_methods(root_module, root_module['ns3::CcnxContentObjectTail'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800631 register_Ns3CcnxFace_methods(root_module, root_module['ns3::CcnxFace'])
632 register_Ns3CcnxFaceContainer_methods(root_module, root_module['ns3::CcnxFaceContainer'])
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -0800633 register_Ns3CcnxFib_methods(root_module, root_module['ns3::CcnxFib'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800634 register_Ns3CcnxFibEntry_methods(root_module, root_module['ns3::CcnxFibEntry'])
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -0800635 register_Ns3CcnxFibEntryNoFaces_methods(root_module, root_module['ns3::CcnxFibEntry::NoFaces'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800636 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 Afanasyevaa032ea2011-12-13 12:38:32 -0800638 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 Afanasyevaa032ea2011-12-13 12:38:32 -0800642 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 Afanasyevaa032ea2011-12-13 12:38:32 -0800647 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 Afanasyevaa032ea2011-12-13 12:38:32 -0800652 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 Afanasyevaa032ea2011-12-13 12:38:32 -0800657 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 Afanasyevaa032ea2011-12-13 12:38:32 -0800660 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 Afanasyevaa032ea2011-12-13 12:38:32 -0800663 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 Afanasyevaa032ea2011-12-13 12:38:32 -0800669 register_Ns3Packet_methods(root_module, root_module['ns3::Packet'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800670 register_Ns3RandomVariableChecker_methods(root_module, root_module['ns3::RandomVariableChecker'])
671 register_Ns3RandomVariableValue_methods(root_module, root_module['ns3::RandomVariableValue'])
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -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 Afanasyevaa032ea2011-12-13 12:38:32 -0800678 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 Afanasyevaa032ea2011-12-13 12:38:32 -0800686 register_Ns3AddressChecker_methods(root_module, root_module['ns3::AddressChecker'])
687 register_Ns3AddressValue_methods(root_module, root_module['ns3::AddressValue'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800688 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 Afanasyevaa032ea2011-12-13 12:38:32 -0800811def 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 Afanasyevaa032ea2011-12-13 12:38:32 -08001231 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 Afanasyevaa032ea2011-12-13 12:38:32 -08001233 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 Afanasyevaa032ea2011-12-13 12:38:32 -08001237 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 Afanasyevaa032ea2011-12-13 12:38:32 -08001241 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 Afanasyevaa032ea2011-12-13 12:38:32 -08001245 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 Afanasyevaa032ea2011-12-13 12:38:32 -08001252 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 Afanasyevaa032ea2011-12-13 12:38:32 -08001261def register_Ns3CcnxFibEntryContainer_methods(root_module, cls):
1262 ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFibEntryContainer::CcnxFibEntryContainer() [constructor]
1263 cls.add_constructor([])
1264 ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFibEntryContainer::CcnxFibEntryContainer(ns3::CcnxFibEntryContainer const & arg0) [copy constructor]
1265 cls.add_constructor([param('ns3::CcnxFibEntryContainer const &', 'arg0')])
1266 return
1267
1268def register_Ns3CcnxFibFaceMetric_methods(root_module, cls):
1269 cls.add_output_stream_operator()
1270 cls.add_binary_comparison_operator('<')
1271 ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFibFaceMetric::CcnxFibFaceMetric(ns3::CcnxFibFaceMetric const & arg0) [copy constructor]
1272 cls.add_constructor([param('ns3::CcnxFibFaceMetric const &', 'arg0')])
Alexander Afanasyev03d92e42012-02-01 21:06:53 -08001273 ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFibFaceMetric::CcnxFibFaceMetric(ns3::Ptr<ns3::CcnxFace> face, int32_t cost) [constructor]
1274 cls.add_constructor([param('ns3::Ptr< ns3::CcnxFace >', 'face'), param('int32_t', 'cost')])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001275 ## ccnx-fib.h (module 'NDNabstraction'): ns3::Ptr<ns3::CcnxFace> ns3::CcnxFibFaceMetric::GetFace() const [member function]
1276 cls.add_method('GetFace',
1277 'ns3::Ptr< ns3::CcnxFace >',
1278 [],
1279 is_const=True)
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -08001280 ## ccnx-fib.h (module 'NDNabstraction'): void ns3::CcnxFibFaceMetric::UpdateRtt(ns3::Time const & rttSample) [member function]
1281 cls.add_method('UpdateRtt',
1282 'void',
1283 [param('ns3::Time const &', 'rttSample')])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001284 ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFibFaceMetric::m_face [variable]
1285 cls.add_instance_attribute('m_face', 'ns3::Ptr< ns3::CcnxFace >', is_const=False)
1286 ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFibFaceMetric::m_routingCost [variable]
1287 cls.add_instance_attribute('m_routingCost', 'int32_t', is_const=False)
1288 ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFibFaceMetric::m_rttVar [variable]
1289 cls.add_instance_attribute('m_rttVar', 'ns3::Time', is_const=False)
1290 ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFibFaceMetric::m_sRtt [variable]
1291 cls.add_instance_attribute('m_sRtt', 'ns3::Time', is_const=False)
1292 ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFibFaceMetric::m_status [variable]
1293 cls.add_instance_attribute('m_status', 'ns3::CcnxFibFaceMetric::Status', is_const=False)
1294 return
1295
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001296def register_Ns3CcnxFibFaceMetricContainer_methods(root_module, cls):
1297 ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFibFaceMetricContainer::CcnxFibFaceMetricContainer() [constructor]
1298 cls.add_constructor([])
1299 ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFibFaceMetricContainer::CcnxFibFaceMetricContainer(ns3::CcnxFibFaceMetricContainer const & arg0) [copy constructor]
1300 cls.add_constructor([param('ns3::CcnxFibFaceMetricContainer const &', 'arg0')])
1301 return
1302
Alexander Afanasyev53872ce2011-12-16 13:17:18 -08001303def register_Ns3CcnxHeaderHelper_methods(root_module, cls):
1304 ## ccnx-header-helper.h (module 'NDNabstraction'): ns3::CcnxHeaderHelper::CcnxHeaderHelper() [constructor]
1305 cls.add_constructor([])
1306 ## ccnx-header-helper.h (module 'NDNabstraction'): ns3::CcnxHeaderHelper::CcnxHeaderHelper(ns3::CcnxHeaderHelper const & arg0) [copy constructor]
1307 cls.add_constructor([param('ns3::CcnxHeaderHelper const &', 'arg0')])
1308 ## ccnx-header-helper.h (module 'NDNabstraction'): static ns3::CcnxHeaderHelper::Type ns3::CcnxHeaderHelper::GetCcnxHeaderType(ns3::Ptr<const ns3::Packet> packet) [member function]
1309 cls.add_method('GetCcnxHeaderType',
1310 'ns3::CcnxHeaderHelper::Type',
1311 [param('ns3::Ptr< ns3::Packet const >', 'packet')],
1312 is_static=True)
1313 return
1314
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001315def register_Ns3CcnxInterestHeaderException_methods(root_module, cls):
1316 ## ccnx-interest-header.h (module 'NDNabstraction'): ns3::CcnxInterestHeaderException::CcnxInterestHeaderException() [constructor]
1317 cls.add_constructor([])
1318 ## ccnx-interest-header.h (module 'NDNabstraction'): ns3::CcnxInterestHeaderException::CcnxInterestHeaderException(ns3::CcnxInterestHeaderException const & arg0) [copy constructor]
1319 cls.add_constructor([param('ns3::CcnxInterestHeaderException const &', 'arg0')])
1320 return
1321
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -08001322def register_Ns3CcnxStackHelper_methods(root_module, cls):
1323 ## ccnx-stack-helper.h (module 'NDNabstraction'): ns3::CcnxStackHelper::CcnxStackHelper() [constructor]
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001324 cls.add_constructor([])
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -08001325 ## ccnx-stack-helper.h (module 'NDNabstraction'): void ns3::CcnxStackHelper::SetForwardingStrategy(std::string forwardingStrategy) [member function]
1326 cls.add_method('SetForwardingStrategy',
1327 'void',
1328 [param('std::string', 'forwardingStrategy')])
1329 ## 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]
1330 cls.add_method('EnableLimits',
1331 'void',
1332 [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')])
1333 ## ccnx-stack-helper.h (module 'NDNabstraction'): ns3::Ptr<ns3::CcnxFaceContainer> ns3::CcnxStackHelper::Install(std::string nodeName) const [member function]
1334 cls.add_method('Install',
1335 'ns3::Ptr< ns3::CcnxFaceContainer >',
1336 [param('std::string', 'nodeName')],
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001337 is_const=True)
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -08001338 ## ccnx-stack-helper.h (module 'NDNabstraction'): ns3::Ptr<ns3::CcnxFaceContainer> ns3::CcnxStackHelper::Install(ns3::Ptr<ns3::Node> node) const [member function]
1339 cls.add_method('Install',
1340 'ns3::Ptr< ns3::CcnxFaceContainer >',
1341 [param('ns3::Ptr< ns3::Node >', 'node')],
1342 is_const=True)
1343 ## ccnx-stack-helper.h (module 'NDNabstraction'): ns3::Ptr<ns3::CcnxFaceContainer> ns3::CcnxStackHelper::Install(ns3::NodeContainer c) const [member function]
1344 cls.add_method('Install',
1345 'ns3::Ptr< ns3::CcnxFaceContainer >',
1346 [param('ns3::NodeContainer', 'c')],
1347 is_const=True)
1348 ## ccnx-stack-helper.h (module 'NDNabstraction'): ns3::Ptr<ns3::CcnxFaceContainer> ns3::CcnxStackHelper::InstallAll() const [member function]
1349 cls.add_method('InstallAll',
1350 'ns3::Ptr< ns3::CcnxFaceContainer >',
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001351 [],
1352 is_const=True)
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08001353 ## 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 Afanasyevdd3eeec2011-12-13 13:19:15 -08001354 cls.add_method('AddRoute',
1355 'void',
1356 [param('std::string', 'nodeName'), param('std::string', 'prefix'), param('uint32_t', 'faceId'), param('int32_t', 'metric')],
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08001357 is_static=True)
1358 ## 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 Afanasyevdd3eeec2011-12-13 13:19:15 -08001359 cls.add_method('AddRoute',
1360 'void',
1361 [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 -08001362 is_static=True)
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -08001363 ## ccnx-stack-helper.h (module 'NDNabstraction'): void ns3::CcnxStackHelper::SetDefaultRoutes(bool needSet) [member function]
1364 cls.add_method('SetDefaultRoutes',
1365 'void',
1366 [param('bool', 'needSet')])
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08001367 ## ccnx-stack-helper.h (module 'NDNabstraction'): static void ns3::CcnxStackHelper::InstallFakeGlobalRoutes() [member function]
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -08001368 cls.add_method('InstallFakeGlobalRoutes',
1369 'void',
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08001370 [],
1371 is_static=True)
1372 ## ccnx-stack-helper.h (module 'NDNabstraction'): static void ns3::CcnxStackHelper::InstallFakeGlobalRoutesImpl() [member function]
1373 cls.add_method('InstallFakeGlobalRoutesImpl',
1374 'void',
1375 [],
1376 is_static=True)
1377 ## ccnx-stack-helper.h (module 'NDNabstraction'): static void ns3::CcnxStackHelper::InstallRouteTo(ns3::Ptr<ns3::Node> node) [member function]
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -08001378 cls.add_method('InstallRouteTo',
1379 'void',
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08001380 [param('ns3::Ptr< ns3::Node >', 'node')],
1381 is_static=True)
1382 ## ccnx-stack-helper.h (module 'NDNabstraction'): static void ns3::CcnxStackHelper::InstallRouteTo(std::string const & prefix, ns3::Ptr<ns3::Node> node) [member function]
1383 cls.add_method('InstallRouteTo',
1384 'void',
1385 [param('std::string const &', 'prefix'), param('ns3::Ptr< ns3::Node >', 'node')],
1386 is_static=True)
1387 ## ccnx-stack-helper.h (module 'NDNabstraction'): static void ns3::CcnxStackHelper::InstallRoutesToAll() [member function]
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -08001388 cls.add_method('InstallRoutesToAll',
1389 'void',
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08001390 [],
1391 is_static=True)
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001392 return
1393
Alexander Afanasyevb3e4b852011-12-23 15:58:20 -08001394def register_Ns3CcnxTraceHelper_methods(root_module, cls):
1395 ## ccnx-trace-helper.h (module 'NDNabstraction'): ns3::CcnxTraceHelper::CcnxTraceHelper(ns3::CcnxTraceHelper const & arg0) [copy constructor]
1396 cls.add_constructor([param('ns3::CcnxTraceHelper const &', 'arg0')])
1397 ## ccnx-trace-helper.h (module 'NDNabstraction'): ns3::CcnxTraceHelper::CcnxTraceHelper() [constructor]
1398 cls.add_constructor([])
1399 ## ccnx-trace-helper.h (module 'NDNabstraction'): void ns3::CcnxTraceHelper::EnableAggregateAppAll(std::string const & app) [member function]
1400 cls.add_method('EnableAggregateAppAll',
1401 'void',
1402 [param('std::string const &', 'app')])
1403 ## ccnx-trace-helper.h (module 'NDNabstraction'): void ns3::CcnxTraceHelper::EnableAggregateL3All() [member function]
1404 cls.add_method('EnableAggregateL3All',
1405 'void',
1406 [])
Alexander Afanasyev03d92e42012-02-01 21:06:53 -08001407 ## ccnx-trace-helper.h (module 'NDNabstraction'): void ns3::CcnxTraceHelper::EnableIpv4RateL3All(std::string const & ipv4RateTrace="ipv4-rate.log") [member function]
1408 cls.add_method('EnableIpv4RateL3All',
1409 'void',
1410 [param('std::string const &', 'ipv4RateTrace', default_value='"ipv4-rate.log"')])
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08001411 ## ccnx-trace-helper.h (module 'NDNabstraction'): void ns3::CcnxTraceHelper::EnableIpv4SeqsAppAll(std::string const & appSeqsTrace="app-seqs.log") [member function]
1412 cls.add_method('EnableIpv4SeqsAppAll',
1413 'void',
1414 [param('std::string const &', 'appSeqsTrace', default_value='"app-seqs.log"')])
1415 ## ccnx-trace-helper.h (module 'NDNabstraction'): void ns3::CcnxTraceHelper::EnablePathWeights(std::string const & pathWeights) [member function]
1416 cls.add_method('EnablePathWeights',
1417 'void',
1418 [param('std::string const &', 'pathWeights')])
Alexander Afanasyevb3e4b852011-12-23 15:58:20 -08001419 ## ccnx-trace-helper.h (module 'NDNabstraction'): void ns3::CcnxTraceHelper::EnableRateL3All(std::string const & l3RateTrace="l3-rate.log") [member function]
1420 cls.add_method('EnableRateL3All',
1421 'void',
1422 [param('std::string const &', 'l3RateTrace', default_value='"l3-rate.log"')])
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08001423 ## ccnx-trace-helper.h (module 'NDNabstraction'): void ns3::CcnxTraceHelper::EnableSeqsAppAll(std::string const & app, std::string const & appSeqsTrace="app-seqs.log") [member function]
1424 cls.add_method('EnableSeqsAppAll',
1425 'void',
1426 [param('std::string const &', 'app'), param('std::string const &', 'appSeqsTrace', default_value='"app-seqs.log"')])
1427 ## ccnx-trace-helper.h (module 'NDNabstraction'): void ns3::CcnxTraceHelper::EnableWindowsAll(std::string const & windowTrace="windows.log") [member function]
1428 cls.add_method('EnableWindowsAll',
1429 'void',
1430 [param('std::string const &', 'windowTrace', default_value='"windows.log"')])
1431 ## ccnx-trace-helper.h (module 'NDNabstraction'): void ns3::CcnxTraceHelper::EnableWindowsTcpAll(std::string const & windowTrace) [member function]
1432 cls.add_method('EnableWindowsTcpAll',
1433 'void',
1434 [param('std::string const &', 'windowTrace')])
Alexander Afanasyevb3e4b852011-12-23 15:58:20 -08001435 ## ccnx-trace-helper.h (module 'NDNabstraction'): void ns3::CcnxTraceHelper::SetAppTraceFile(std::string const & appTrace="apps.log") [member function]
1436 cls.add_method('SetAppTraceFile',
1437 'void',
1438 [param('std::string const &', 'appTrace', default_value='"apps.log"')])
1439 ## ccnx-trace-helper.h (module 'NDNabstraction'): void ns3::CcnxTraceHelper::SetL3TraceFile(std::string const & l3Trace="l3.log") [member function]
1440 cls.add_method('SetL3TraceFile',
1441 'void',
1442 [param('std::string const &', 'l3Trace', default_value='"l3.log"')])
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08001443 ## ccnx-trace-helper.h (module 'NDNabstraction'): void ns3::CcnxTraceHelper::TcpConnect(ns3::Ptr<ns3::Node> node) [member function]
1444 cls.add_method('TcpConnect',
1445 'void',
1446 [param('ns3::Ptr< ns3::Node >', 'node')])
Alexander Afanasyevb3e4b852011-12-23 15:58:20 -08001447 return
1448
Alexander Afanasyev53872ce2011-12-16 13:17:18 -08001449def register_Ns3CcnxUnknownHeaderException_methods(root_module, cls):
1450 ## ccnx-header-helper.h (module 'NDNabstraction'): ns3::CcnxUnknownHeaderException::CcnxUnknownHeaderException() [constructor]
1451 cls.add_constructor([])
1452 ## ccnx-header-helper.h (module 'NDNabstraction'): ns3::CcnxUnknownHeaderException::CcnxUnknownHeaderException(ns3::CcnxUnknownHeaderException const & arg0) [copy constructor]
1453 cls.add_constructor([param('ns3::CcnxUnknownHeaderException const &', 'arg0')])
1454 return
1455
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001456def register_Ns3EventId_methods(root_module, cls):
1457 cls.add_binary_comparison_operator('!=')
1458 cls.add_binary_comparison_operator('==')
1459 ## event-id.h (module 'core'): ns3::EventId::EventId(ns3::EventId const & arg0) [copy constructor]
1460 cls.add_constructor([param('ns3::EventId const &', 'arg0')])
1461 ## event-id.h (module 'core'): ns3::EventId::EventId() [constructor]
1462 cls.add_constructor([])
1463 ## event-id.h (module 'core'): ns3::EventId::EventId(ns3::Ptr<ns3::EventImpl> const & impl, uint64_t ts, uint32_t context, uint32_t uid) [constructor]
1464 cls.add_constructor([param('ns3::Ptr< ns3::EventImpl > const &', 'impl'), param('uint64_t', 'ts'), param('uint32_t', 'context'), param('uint32_t', 'uid')])
1465 ## event-id.h (module 'core'): void ns3::EventId::Cancel() [member function]
1466 cls.add_method('Cancel',
1467 'void',
1468 [])
1469 ## event-id.h (module 'core'): uint32_t ns3::EventId::GetContext() const [member function]
1470 cls.add_method('GetContext',
1471 'uint32_t',
1472 [],
1473 is_const=True)
1474 ## event-id.h (module 'core'): uint64_t ns3::EventId::GetTs() const [member function]
1475 cls.add_method('GetTs',
1476 'uint64_t',
1477 [],
1478 is_const=True)
1479 ## event-id.h (module 'core'): uint32_t ns3::EventId::GetUid() const [member function]
1480 cls.add_method('GetUid',
1481 'uint32_t',
1482 [],
1483 is_const=True)
1484 ## event-id.h (module 'core'): bool ns3::EventId::IsExpired() const [member function]
1485 cls.add_method('IsExpired',
1486 'bool',
1487 [],
1488 is_const=True)
1489 ## event-id.h (module 'core'): bool ns3::EventId::IsRunning() const [member function]
1490 cls.add_method('IsRunning',
1491 'bool',
1492 [],
1493 is_const=True)
1494 ## event-id.h (module 'core'): ns3::EventImpl * ns3::EventId::PeekEventImpl() const [member function]
1495 cls.add_method('PeekEventImpl',
1496 'ns3::EventImpl *',
1497 [],
1498 is_const=True)
1499 return
1500
Alexander Afanasyev6f933532012-02-29 13:30:37 -08001501def register_Ns3IntToType__0_methods(root_module, cls):
1502 ## int-to-type.h (module 'core'): ns3::IntToType<0>::IntToType() [constructor]
1503 cls.add_constructor([])
1504 ## int-to-type.h (module 'core'): ns3::IntToType<0>::IntToType(ns3::IntToType<0> const & arg0) [copy constructor]
1505 cls.add_constructor([param('ns3::IntToType< 0 > const &', 'arg0')])
1506 return
1507
1508def register_Ns3IntToType__1_methods(root_module, cls):
1509 ## int-to-type.h (module 'core'): ns3::IntToType<1>::IntToType() [constructor]
1510 cls.add_constructor([])
1511 ## int-to-type.h (module 'core'): ns3::IntToType<1>::IntToType(ns3::IntToType<1> const & arg0) [copy constructor]
1512 cls.add_constructor([param('ns3::IntToType< 1 > const &', 'arg0')])
1513 return
1514
1515def register_Ns3IntToType__2_methods(root_module, cls):
1516 ## int-to-type.h (module 'core'): ns3::IntToType<2>::IntToType() [constructor]
1517 cls.add_constructor([])
1518 ## int-to-type.h (module 'core'): ns3::IntToType<2>::IntToType(ns3::IntToType<2> const & arg0) [copy constructor]
1519 cls.add_constructor([param('ns3::IntToType< 2 > const &', 'arg0')])
1520 return
1521
1522def register_Ns3IntToType__3_methods(root_module, cls):
1523 ## int-to-type.h (module 'core'): ns3::IntToType<3>::IntToType() [constructor]
1524 cls.add_constructor([])
1525 ## int-to-type.h (module 'core'): ns3::IntToType<3>::IntToType(ns3::IntToType<3> const & arg0) [copy constructor]
1526 cls.add_constructor([param('ns3::IntToType< 3 > const &', 'arg0')])
1527 return
1528
1529def register_Ns3IntToType__4_methods(root_module, cls):
1530 ## int-to-type.h (module 'core'): ns3::IntToType<4>::IntToType() [constructor]
1531 cls.add_constructor([])
1532 ## int-to-type.h (module 'core'): ns3::IntToType<4>::IntToType(ns3::IntToType<4> const & arg0) [copy constructor]
1533 cls.add_constructor([param('ns3::IntToType< 4 > const &', 'arg0')])
1534 return
1535
1536def register_Ns3IntToType__5_methods(root_module, cls):
1537 ## int-to-type.h (module 'core'): ns3::IntToType<5>::IntToType() [constructor]
1538 cls.add_constructor([])
1539 ## int-to-type.h (module 'core'): ns3::IntToType<5>::IntToType(ns3::IntToType<5> const & arg0) [copy constructor]
1540 cls.add_constructor([param('ns3::IntToType< 5 > const &', 'arg0')])
1541 return
1542
1543def register_Ns3IntToType__6_methods(root_module, cls):
1544 ## int-to-type.h (module 'core'): ns3::IntToType<6>::IntToType() [constructor]
1545 cls.add_constructor([])
1546 ## int-to-type.h (module 'core'): ns3::IntToType<6>::IntToType(ns3::IntToType<6> const & arg0) [copy constructor]
1547 cls.add_constructor([param('ns3::IntToType< 6 > const &', 'arg0')])
1548 return
1549
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001550def register_Ns3Ipv4Address_methods(root_module, cls):
1551 cls.add_binary_comparison_operator('!=')
1552 cls.add_output_stream_operator()
1553 cls.add_binary_comparison_operator('==')
1554 cls.add_binary_comparison_operator('<')
1555 ## ipv4-address.h (module 'network'): ns3::Ipv4Address::Ipv4Address(ns3::Ipv4Address const & arg0) [copy constructor]
1556 cls.add_constructor([param('ns3::Ipv4Address const &', 'arg0')])
1557 ## ipv4-address.h (module 'network'): ns3::Ipv4Address::Ipv4Address() [constructor]
1558 cls.add_constructor([])
1559 ## ipv4-address.h (module 'network'): ns3::Ipv4Address::Ipv4Address(uint32_t address) [constructor]
1560 cls.add_constructor([param('uint32_t', 'address')])
1561 ## ipv4-address.h (module 'network'): ns3::Ipv4Address::Ipv4Address(char const * address) [constructor]
1562 cls.add_constructor([param('char const *', 'address')])
1563 ## ipv4-address.h (module 'network'): ns3::Ipv4Address ns3::Ipv4Address::CombineMask(ns3::Ipv4Mask const & mask) const [member function]
1564 cls.add_method('CombineMask',
1565 'ns3::Ipv4Address',
1566 [param('ns3::Ipv4Mask const &', 'mask')],
1567 is_const=True)
1568 ## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::ConvertFrom(ns3::Address const & address) [member function]
1569 cls.add_method('ConvertFrom',
1570 'ns3::Ipv4Address',
1571 [param('ns3::Address const &', 'address')],
1572 is_static=True)
1573 ## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::Deserialize(uint8_t const * buf) [member function]
1574 cls.add_method('Deserialize',
1575 'ns3::Ipv4Address',
1576 [param('uint8_t const *', 'buf')],
1577 is_static=True)
1578 ## ipv4-address.h (module 'network'): uint32_t const & ns3::Ipv4Address::Get() const [member function]
1579 cls.add_method('Get',
1580 'uint32_t const &',
1581 [],
1582 is_const=True)
1583 ## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::GetAny() [member function]
1584 cls.add_method('GetAny',
1585 'ns3::Ipv4Address',
1586 [],
1587 is_static=True)
1588 ## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::GetBroadcast() [member function]
1589 cls.add_method('GetBroadcast',
1590 'ns3::Ipv4Address',
1591 [],
1592 is_static=True)
1593 ## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::GetLoopback() [member function]
1594 cls.add_method('GetLoopback',
1595 'ns3::Ipv4Address',
1596 [],
1597 is_static=True)
1598 ## ipv4-address.h (module 'network'): ns3::Ipv4Address ns3::Ipv4Address::GetSubnetDirectedBroadcast(ns3::Ipv4Mask const & mask) const [member function]
1599 cls.add_method('GetSubnetDirectedBroadcast',
1600 'ns3::Ipv4Address',
1601 [param('ns3::Ipv4Mask const &', 'mask')],
1602 is_const=True)
1603 ## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::GetZero() [member function]
1604 cls.add_method('GetZero',
1605 'ns3::Ipv4Address',
1606 [],
1607 is_static=True)
1608 ## ipv4-address.h (module 'network'): bool ns3::Ipv4Address::IsBroadcast() const [member function]
1609 cls.add_method('IsBroadcast',
1610 'bool',
1611 [],
1612 is_const=True)
1613 ## ipv4-address.h (module 'network'): bool ns3::Ipv4Address::IsEqual(ns3::Ipv4Address const & other) const [member function]
1614 cls.add_method('IsEqual',
1615 'bool',
1616 [param('ns3::Ipv4Address const &', 'other')],
1617 is_const=True)
1618 ## ipv4-address.h (module 'network'): bool ns3::Ipv4Address::IsLocalMulticast() const [member function]
1619 cls.add_method('IsLocalMulticast',
1620 'bool',
1621 [],
1622 is_const=True)
1623 ## ipv4-address.h (module 'network'): static bool ns3::Ipv4Address::IsMatchingType(ns3::Address const & address) [member function]
1624 cls.add_method('IsMatchingType',
1625 'bool',
1626 [param('ns3::Address const &', 'address')],
1627 is_static=True)
1628 ## ipv4-address.h (module 'network'): bool ns3::Ipv4Address::IsMulticast() const [member function]
1629 cls.add_method('IsMulticast',
1630 'bool',
1631 [],
1632 is_const=True)
1633 ## ipv4-address.h (module 'network'): bool ns3::Ipv4Address::IsSubnetDirectedBroadcast(ns3::Ipv4Mask const & mask) const [member function]
1634 cls.add_method('IsSubnetDirectedBroadcast',
1635 'bool',
1636 [param('ns3::Ipv4Mask const &', 'mask')],
1637 is_const=True)
1638 ## ipv4-address.h (module 'network'): void ns3::Ipv4Address::Print(std::ostream & os) const [member function]
1639 cls.add_method('Print',
1640 'void',
1641 [param('std::ostream &', 'os')],
1642 is_const=True)
1643 ## ipv4-address.h (module 'network'): void ns3::Ipv4Address::Serialize(uint8_t * buf) const [member function]
1644 cls.add_method('Serialize',
1645 'void',
1646 [param('uint8_t *', 'buf')],
1647 is_const=True)
1648 ## ipv4-address.h (module 'network'): void ns3::Ipv4Address::Set(uint32_t address) [member function]
1649 cls.add_method('Set',
1650 'void',
1651 [param('uint32_t', 'address')])
1652 ## ipv4-address.h (module 'network'): void ns3::Ipv4Address::Set(char const * address) [member function]
1653 cls.add_method('Set',
1654 'void',
1655 [param('char const *', 'address')])
1656 return
1657
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08001658def register_Ns3Ipv4InterfaceAddress_methods(root_module, cls):
1659 cls.add_binary_comparison_operator('!=')
1660 cls.add_output_stream_operator()
1661 cls.add_binary_comparison_operator('==')
1662 ## ipv4-interface-address.h (module 'internet'): ns3::Ipv4InterfaceAddress::Ipv4InterfaceAddress() [constructor]
1663 cls.add_constructor([])
1664 ## ipv4-interface-address.h (module 'internet'): ns3::Ipv4InterfaceAddress::Ipv4InterfaceAddress(ns3::Ipv4Address local, ns3::Ipv4Mask mask) [constructor]
1665 cls.add_constructor([param('ns3::Ipv4Address', 'local'), param('ns3::Ipv4Mask', 'mask')])
1666 ## ipv4-interface-address.h (module 'internet'): ns3::Ipv4InterfaceAddress::Ipv4InterfaceAddress(ns3::Ipv4InterfaceAddress const & o) [copy constructor]
1667 cls.add_constructor([param('ns3::Ipv4InterfaceAddress const &', 'o')])
1668 ## ipv4-interface-address.h (module 'internet'): ns3::Ipv4Address ns3::Ipv4InterfaceAddress::GetBroadcast() const [member function]
1669 cls.add_method('GetBroadcast',
1670 'ns3::Ipv4Address',
1671 [],
1672 is_const=True)
1673 ## ipv4-interface-address.h (module 'internet'): ns3::Ipv4Address ns3::Ipv4InterfaceAddress::GetLocal() const [member function]
1674 cls.add_method('GetLocal',
1675 'ns3::Ipv4Address',
1676 [],
1677 is_const=True)
1678 ## ipv4-interface-address.h (module 'internet'): ns3::Ipv4Mask ns3::Ipv4InterfaceAddress::GetMask() const [member function]
1679 cls.add_method('GetMask',
1680 'ns3::Ipv4Mask',
1681 [],
1682 is_const=True)
1683 ## ipv4-interface-address.h (module 'internet'): ns3::Ipv4InterfaceAddress::InterfaceAddressScope_e ns3::Ipv4InterfaceAddress::GetScope() const [member function]
1684 cls.add_method('GetScope',
1685 'ns3::Ipv4InterfaceAddress::InterfaceAddressScope_e',
1686 [],
1687 is_const=True)
1688 ## ipv4-interface-address.h (module 'internet'): bool ns3::Ipv4InterfaceAddress::IsSecondary() const [member function]
1689 cls.add_method('IsSecondary',
1690 'bool',
1691 [],
1692 is_const=True)
1693 ## ipv4-interface-address.h (module 'internet'): void ns3::Ipv4InterfaceAddress::SetBroadcast(ns3::Ipv4Address broadcast) [member function]
1694 cls.add_method('SetBroadcast',
1695 'void',
1696 [param('ns3::Ipv4Address', 'broadcast')])
1697 ## ipv4-interface-address.h (module 'internet'): void ns3::Ipv4InterfaceAddress::SetLocal(ns3::Ipv4Address local) [member function]
1698 cls.add_method('SetLocal',
1699 'void',
1700 [param('ns3::Ipv4Address', 'local')])
1701 ## ipv4-interface-address.h (module 'internet'): void ns3::Ipv4InterfaceAddress::SetMask(ns3::Ipv4Mask mask) [member function]
1702 cls.add_method('SetMask',
1703 'void',
1704 [param('ns3::Ipv4Mask', 'mask')])
1705 ## ipv4-interface-address.h (module 'internet'): void ns3::Ipv4InterfaceAddress::SetPrimary() [member function]
1706 cls.add_method('SetPrimary',
1707 'void',
1708 [])
1709 ## ipv4-interface-address.h (module 'internet'): void ns3::Ipv4InterfaceAddress::SetScope(ns3::Ipv4InterfaceAddress::InterfaceAddressScope_e scope) [member function]
1710 cls.add_method('SetScope',
1711 'void',
1712 [param('ns3::Ipv4InterfaceAddress::InterfaceAddressScope_e', 'scope')])
1713 ## ipv4-interface-address.h (module 'internet'): void ns3::Ipv4InterfaceAddress::SetSecondary() [member function]
1714 cls.add_method('SetSecondary',
1715 'void',
1716 [])
1717 return
1718
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001719def register_Ns3Ipv4Mask_methods(root_module, cls):
1720 cls.add_binary_comparison_operator('!=')
1721 cls.add_output_stream_operator()
1722 cls.add_binary_comparison_operator('==')
1723 ## ipv4-address.h (module 'network'): ns3::Ipv4Mask::Ipv4Mask(ns3::Ipv4Mask const & arg0) [copy constructor]
1724 cls.add_constructor([param('ns3::Ipv4Mask const &', 'arg0')])
1725 ## ipv4-address.h (module 'network'): ns3::Ipv4Mask::Ipv4Mask() [constructor]
1726 cls.add_constructor([])
1727 ## ipv4-address.h (module 'network'): ns3::Ipv4Mask::Ipv4Mask(uint32_t mask) [constructor]
1728 cls.add_constructor([param('uint32_t', 'mask')])
1729 ## ipv4-address.h (module 'network'): ns3::Ipv4Mask::Ipv4Mask(char const * mask) [constructor]
1730 cls.add_constructor([param('char const *', 'mask')])
1731 ## ipv4-address.h (module 'network'): uint32_t ns3::Ipv4Mask::Get() const [member function]
1732 cls.add_method('Get',
1733 'uint32_t',
1734 [],
1735 is_const=True)
1736 ## ipv4-address.h (module 'network'): uint32_t ns3::Ipv4Mask::GetInverse() const [member function]
1737 cls.add_method('GetInverse',
1738 'uint32_t',
1739 [],
1740 is_const=True)
1741 ## ipv4-address.h (module 'network'): static ns3::Ipv4Mask ns3::Ipv4Mask::GetLoopback() [member function]
1742 cls.add_method('GetLoopback',
1743 'ns3::Ipv4Mask',
1744 [],
1745 is_static=True)
1746 ## ipv4-address.h (module 'network'): static ns3::Ipv4Mask ns3::Ipv4Mask::GetOnes() [member function]
1747 cls.add_method('GetOnes',
1748 'ns3::Ipv4Mask',
1749 [],
1750 is_static=True)
1751 ## ipv4-address.h (module 'network'): uint16_t ns3::Ipv4Mask::GetPrefixLength() const [member function]
1752 cls.add_method('GetPrefixLength',
1753 'uint16_t',
1754 [],
1755 is_const=True)
1756 ## ipv4-address.h (module 'network'): static ns3::Ipv4Mask ns3::Ipv4Mask::GetZero() [member function]
1757 cls.add_method('GetZero',
1758 'ns3::Ipv4Mask',
1759 [],
1760 is_static=True)
1761 ## ipv4-address.h (module 'network'): bool ns3::Ipv4Mask::IsEqual(ns3::Ipv4Mask other) const [member function]
1762 cls.add_method('IsEqual',
1763 'bool',
1764 [param('ns3::Ipv4Mask', 'other')],
1765 is_const=True)
1766 ## ipv4-address.h (module 'network'): bool ns3::Ipv4Mask::IsMatch(ns3::Ipv4Address a, ns3::Ipv4Address b) const [member function]
1767 cls.add_method('IsMatch',
1768 'bool',
1769 [param('ns3::Ipv4Address', 'a'), param('ns3::Ipv4Address', 'b')],
1770 is_const=True)
1771 ## ipv4-address.h (module 'network'): void ns3::Ipv4Mask::Print(std::ostream & os) const [member function]
1772 cls.add_method('Print',
1773 'void',
1774 [param('std::ostream &', 'os')],
1775 is_const=True)
1776 ## ipv4-address.h (module 'network'): void ns3::Ipv4Mask::Set(uint32_t mask) [member function]
1777 cls.add_method('Set',
1778 'void',
1779 [param('uint32_t', 'mask')])
1780 return
1781
1782def register_Ns3Ipv6Address_methods(root_module, cls):
1783 cls.add_binary_comparison_operator('!=')
1784 cls.add_output_stream_operator()
1785 cls.add_binary_comparison_operator('==')
1786 cls.add_binary_comparison_operator('<')
1787 ## ipv6-address.h (module 'network'): ns3::Ipv6Address::Ipv6Address() [constructor]
1788 cls.add_constructor([])
1789 ## ipv6-address.h (module 'network'): ns3::Ipv6Address::Ipv6Address(char const * address) [constructor]
1790 cls.add_constructor([param('char const *', 'address')])
1791 ## ipv6-address.h (module 'network'): ns3::Ipv6Address::Ipv6Address(uint8_t * address) [constructor]
1792 cls.add_constructor([param('uint8_t *', 'address')])
1793 ## ipv6-address.h (module 'network'): ns3::Ipv6Address::Ipv6Address(ns3::Ipv6Address const & addr) [copy constructor]
1794 cls.add_constructor([param('ns3::Ipv6Address const &', 'addr')])
1795 ## ipv6-address.h (module 'network'): ns3::Ipv6Address::Ipv6Address(ns3::Ipv6Address const * addr) [constructor]
1796 cls.add_constructor([param('ns3::Ipv6Address const *', 'addr')])
1797 ## ipv6-address.h (module 'network'): ns3::Ipv6Address ns3::Ipv6Address::CombinePrefix(ns3::Ipv6Prefix const & prefix) [member function]
1798 cls.add_method('CombinePrefix',
1799 'ns3::Ipv6Address',
1800 [param('ns3::Ipv6Prefix const &', 'prefix')])
1801 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::ConvertFrom(ns3::Address const & address) [member function]
1802 cls.add_method('ConvertFrom',
1803 'ns3::Ipv6Address',
1804 [param('ns3::Address const &', 'address')],
1805 is_static=True)
1806 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::Deserialize(uint8_t const * buf) [member function]
1807 cls.add_method('Deserialize',
1808 'ns3::Ipv6Address',
1809 [param('uint8_t const *', 'buf')],
1810 is_static=True)
1811 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetAllHostsMulticast() [member function]
1812 cls.add_method('GetAllHostsMulticast',
1813 'ns3::Ipv6Address',
1814 [],
1815 is_static=True)
1816 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetAllNodesMulticast() [member function]
1817 cls.add_method('GetAllNodesMulticast',
1818 'ns3::Ipv6Address',
1819 [],
1820 is_static=True)
1821 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetAllRoutersMulticast() [member function]
1822 cls.add_method('GetAllRoutersMulticast',
1823 'ns3::Ipv6Address',
1824 [],
1825 is_static=True)
1826 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetAny() [member function]
1827 cls.add_method('GetAny',
1828 'ns3::Ipv6Address',
1829 [],
1830 is_static=True)
1831 ## ipv6-address.h (module 'network'): void ns3::Ipv6Address::GetBytes(uint8_t * buf) const [member function]
1832 cls.add_method('GetBytes',
1833 'void',
1834 [param('uint8_t *', 'buf')],
1835 is_const=True)
Alexander Afanasyev6f933532012-02-29 13:30:37 -08001836 ## ipv6-address.h (module 'network'): ns3::Ipv4Address ns3::Ipv6Address::GetIpv4MappedAddress() const [member function]
1837 cls.add_method('GetIpv4MappedAddress',
1838 'ns3::Ipv4Address',
1839 [],
1840 is_const=True)
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001841 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetLoopback() [member function]
1842 cls.add_method('GetLoopback',
1843 'ns3::Ipv6Address',
1844 [],
1845 is_static=True)
1846 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetOnes() [member function]
1847 cls.add_method('GetOnes',
1848 'ns3::Ipv6Address',
1849 [],
1850 is_static=True)
1851 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetZero() [member function]
1852 cls.add_method('GetZero',
1853 'ns3::Ipv6Address',
1854 [],
1855 is_static=True)
1856 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsAllHostsMulticast() const [member function]
1857 cls.add_method('IsAllHostsMulticast',
1858 'bool',
1859 [],
1860 is_const=True)
1861 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsAllNodesMulticast() const [member function]
1862 cls.add_method('IsAllNodesMulticast',
1863 'bool',
1864 [],
1865 is_const=True)
1866 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsAllRoutersMulticast() const [member function]
1867 cls.add_method('IsAllRoutersMulticast',
1868 'bool',
1869 [],
1870 is_const=True)
1871 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsAny() const [member function]
1872 cls.add_method('IsAny',
1873 'bool',
1874 [],
1875 is_const=True)
1876 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsEqual(ns3::Ipv6Address const & other) const [member function]
1877 cls.add_method('IsEqual',
1878 'bool',
1879 [param('ns3::Ipv6Address const &', 'other')],
1880 is_const=True)
Alexander Afanasyev6f933532012-02-29 13:30:37 -08001881 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsIpv4MappedAddress() [member function]
1882 cls.add_method('IsIpv4MappedAddress',
1883 'bool',
1884 [])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001885 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsLinkLocal() const [member function]
1886 cls.add_method('IsLinkLocal',
1887 'bool',
1888 [],
1889 is_const=True)
Alexander Afanasyev6f933532012-02-29 13:30:37 -08001890 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsLinkLocalMulticast() const [member function]
1891 cls.add_method('IsLinkLocalMulticast',
1892 'bool',
1893 [],
1894 is_const=True)
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001895 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsLocalhost() const [member function]
1896 cls.add_method('IsLocalhost',
1897 'bool',
1898 [],
1899 is_const=True)
1900 ## ipv6-address.h (module 'network'): static bool ns3::Ipv6Address::IsMatchingType(ns3::Address const & address) [member function]
1901 cls.add_method('IsMatchingType',
1902 'bool',
1903 [param('ns3::Address const &', 'address')],
1904 is_static=True)
1905 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsMulticast() const [member function]
1906 cls.add_method('IsMulticast',
1907 'bool',
1908 [],
1909 is_const=True)
1910 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsSolicitedMulticast() const [member function]
1911 cls.add_method('IsSolicitedMulticast',
1912 'bool',
1913 [],
1914 is_const=True)
1915 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::MakeAutoconfiguredAddress(ns3::Mac48Address addr, ns3::Ipv6Address prefix) [member function]
1916 cls.add_method('MakeAutoconfiguredAddress',
1917 'ns3::Ipv6Address',
1918 [param('ns3::Mac48Address', 'addr'), param('ns3::Ipv6Address', 'prefix')],
1919 is_static=True)
1920 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::MakeAutoconfiguredLinkLocalAddress(ns3::Mac48Address mac) [member function]
1921 cls.add_method('MakeAutoconfiguredLinkLocalAddress',
1922 'ns3::Ipv6Address',
1923 [param('ns3::Mac48Address', 'mac')],
1924 is_static=True)
Alexander Afanasyev6f933532012-02-29 13:30:37 -08001925 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::MakeIpv4MappedAddress(ns3::Ipv4Address addr) [member function]
1926 cls.add_method('MakeIpv4MappedAddress',
1927 'ns3::Ipv6Address',
1928 [param('ns3::Ipv4Address', 'addr')],
1929 is_static=True)
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001930 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::MakeSolicitedAddress(ns3::Ipv6Address addr) [member function]
1931 cls.add_method('MakeSolicitedAddress',
1932 'ns3::Ipv6Address',
1933 [param('ns3::Ipv6Address', 'addr')],
1934 is_static=True)
1935 ## ipv6-address.h (module 'network'): void ns3::Ipv6Address::Print(std::ostream & os) const [member function]
1936 cls.add_method('Print',
1937 'void',
1938 [param('std::ostream &', 'os')],
1939 is_const=True)
1940 ## ipv6-address.h (module 'network'): void ns3::Ipv6Address::Serialize(uint8_t * buf) const [member function]
1941 cls.add_method('Serialize',
1942 'void',
1943 [param('uint8_t *', 'buf')],
1944 is_const=True)
1945 ## ipv6-address.h (module 'network'): void ns3::Ipv6Address::Set(char const * address) [member function]
1946 cls.add_method('Set',
1947 'void',
1948 [param('char const *', 'address')])
1949 ## ipv6-address.h (module 'network'): void ns3::Ipv6Address::Set(uint8_t * address) [member function]
1950 cls.add_method('Set',
1951 'void',
1952 [param('uint8_t *', 'address')])
1953 return
1954
Alexander Afanasyev6f933532012-02-29 13:30:37 -08001955def register_Ns3Ipv6InterfaceAddress_methods(root_module, cls):
1956 cls.add_binary_comparison_operator('!=')
1957 cls.add_output_stream_operator()
1958 cls.add_binary_comparison_operator('==')
1959 ## ipv6-interface-address.h (module 'internet'): ns3::Ipv6InterfaceAddress::Ipv6InterfaceAddress() [constructor]
1960 cls.add_constructor([])
1961 ## ipv6-interface-address.h (module 'internet'): ns3::Ipv6InterfaceAddress::Ipv6InterfaceAddress(ns3::Ipv6Address address) [constructor]
1962 cls.add_constructor([param('ns3::Ipv6Address', 'address')])
1963 ## ipv6-interface-address.h (module 'internet'): ns3::Ipv6InterfaceAddress::Ipv6InterfaceAddress(ns3::Ipv6Address address, ns3::Ipv6Prefix prefix) [constructor]
1964 cls.add_constructor([param('ns3::Ipv6Address', 'address'), param('ns3::Ipv6Prefix', 'prefix')])
1965 ## ipv6-interface-address.h (module 'internet'): ns3::Ipv6InterfaceAddress::Ipv6InterfaceAddress(ns3::Ipv6InterfaceAddress const & o) [copy constructor]
1966 cls.add_constructor([param('ns3::Ipv6InterfaceAddress const &', 'o')])
1967 ## ipv6-interface-address.h (module 'internet'): ns3::Ipv6Address ns3::Ipv6InterfaceAddress::GetAddress() const [member function]
1968 cls.add_method('GetAddress',
1969 'ns3::Ipv6Address',
1970 [],
1971 is_const=True)
1972 ## ipv6-interface-address.h (module 'internet'): uint32_t ns3::Ipv6InterfaceAddress::GetNsDadUid() const [member function]
1973 cls.add_method('GetNsDadUid',
1974 'uint32_t',
1975 [],
1976 is_const=True)
1977 ## ipv6-interface-address.h (module 'internet'): ns3::Ipv6Prefix ns3::Ipv6InterfaceAddress::GetPrefix() const [member function]
1978 cls.add_method('GetPrefix',
1979 'ns3::Ipv6Prefix',
1980 [],
1981 is_const=True)
1982 ## ipv6-interface-address.h (module 'internet'): ns3::Ipv6InterfaceAddress::Scope_e ns3::Ipv6InterfaceAddress::GetScope() const [member function]
1983 cls.add_method('GetScope',
1984 'ns3::Ipv6InterfaceAddress::Scope_e',
1985 [],
1986 is_const=True)
1987 ## ipv6-interface-address.h (module 'internet'): ns3::Ipv6InterfaceAddress::State_e ns3::Ipv6InterfaceAddress::GetState() const [member function]
1988 cls.add_method('GetState',
1989 'ns3::Ipv6InterfaceAddress::State_e',
1990 [],
1991 is_const=True)
1992 ## ipv6-interface-address.h (module 'internet'): void ns3::Ipv6InterfaceAddress::SetAddress(ns3::Ipv6Address address) [member function]
1993 cls.add_method('SetAddress',
1994 'void',
1995 [param('ns3::Ipv6Address', 'address')])
1996 ## ipv6-interface-address.h (module 'internet'): void ns3::Ipv6InterfaceAddress::SetNsDadUid(uint32_t uid) [member function]
1997 cls.add_method('SetNsDadUid',
1998 'void',
1999 [param('uint32_t', 'uid')])
2000 ## ipv6-interface-address.h (module 'internet'): void ns3::Ipv6InterfaceAddress::SetScope(ns3::Ipv6InterfaceAddress::Scope_e scope) [member function]
2001 cls.add_method('SetScope',
2002 'void',
2003 [param('ns3::Ipv6InterfaceAddress::Scope_e', 'scope')])
2004 ## ipv6-interface-address.h (module 'internet'): void ns3::Ipv6InterfaceAddress::SetState(ns3::Ipv6InterfaceAddress::State_e state) [member function]
2005 cls.add_method('SetState',
2006 'void',
2007 [param('ns3::Ipv6InterfaceAddress::State_e', 'state')])
2008 return
2009
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002010def register_Ns3Ipv6Prefix_methods(root_module, cls):
2011 cls.add_binary_comparison_operator('!=')
2012 cls.add_output_stream_operator()
2013 cls.add_binary_comparison_operator('==')
2014 ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix() [constructor]
2015 cls.add_constructor([])
2016 ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix(uint8_t * prefix) [constructor]
2017 cls.add_constructor([param('uint8_t *', 'prefix')])
2018 ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix(char const * prefix) [constructor]
2019 cls.add_constructor([param('char const *', 'prefix')])
2020 ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix(uint8_t prefix) [constructor]
2021 cls.add_constructor([param('uint8_t', 'prefix')])
2022 ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix(ns3::Ipv6Prefix const & prefix) [copy constructor]
2023 cls.add_constructor([param('ns3::Ipv6Prefix const &', 'prefix')])
2024 ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix(ns3::Ipv6Prefix const * prefix) [constructor]
2025 cls.add_constructor([param('ns3::Ipv6Prefix const *', 'prefix')])
2026 ## ipv6-address.h (module 'network'): void ns3::Ipv6Prefix::GetBytes(uint8_t * buf) const [member function]
2027 cls.add_method('GetBytes',
2028 'void',
2029 [param('uint8_t *', 'buf')],
2030 is_const=True)
2031 ## ipv6-address.h (module 'network'): static ns3::Ipv6Prefix ns3::Ipv6Prefix::GetLoopback() [member function]
2032 cls.add_method('GetLoopback',
2033 'ns3::Ipv6Prefix',
2034 [],
2035 is_static=True)
2036 ## ipv6-address.h (module 'network'): static ns3::Ipv6Prefix ns3::Ipv6Prefix::GetOnes() [member function]
2037 cls.add_method('GetOnes',
2038 'ns3::Ipv6Prefix',
2039 [],
2040 is_static=True)
2041 ## ipv6-address.h (module 'network'): uint8_t ns3::Ipv6Prefix::GetPrefixLength() const [member function]
2042 cls.add_method('GetPrefixLength',
2043 'uint8_t',
2044 [],
2045 is_const=True)
2046 ## ipv6-address.h (module 'network'): static ns3::Ipv6Prefix ns3::Ipv6Prefix::GetZero() [member function]
2047 cls.add_method('GetZero',
2048 'ns3::Ipv6Prefix',
2049 [],
2050 is_static=True)
2051 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Prefix::IsEqual(ns3::Ipv6Prefix const & other) const [member function]
2052 cls.add_method('IsEqual',
2053 'bool',
2054 [param('ns3::Ipv6Prefix const &', 'other')],
2055 is_const=True)
2056 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Prefix::IsMatch(ns3::Ipv6Address a, ns3::Ipv6Address b) const [member function]
2057 cls.add_method('IsMatch',
2058 'bool',
2059 [param('ns3::Ipv6Address', 'a'), param('ns3::Ipv6Address', 'b')],
2060 is_const=True)
2061 ## ipv6-address.h (module 'network'): void ns3::Ipv6Prefix::Print(std::ostream & os) const [member function]
2062 cls.add_method('Print',
2063 'void',
2064 [param('std::ostream &', 'os')],
2065 is_const=True)
2066 return
2067
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002068def register_Ns3NetDeviceContainer_methods(root_module, cls):
2069 ## net-device-container.h (module 'network'): ns3::NetDeviceContainer::NetDeviceContainer(ns3::NetDeviceContainer const & arg0) [copy constructor]
2070 cls.add_constructor([param('ns3::NetDeviceContainer const &', 'arg0')])
2071 ## net-device-container.h (module 'network'): ns3::NetDeviceContainer::NetDeviceContainer() [constructor]
2072 cls.add_constructor([])
2073 ## net-device-container.h (module 'network'): ns3::NetDeviceContainer::NetDeviceContainer(ns3::Ptr<ns3::NetDevice> dev) [constructor]
2074 cls.add_constructor([param('ns3::Ptr< ns3::NetDevice >', 'dev')])
2075 ## net-device-container.h (module 'network'): ns3::NetDeviceContainer::NetDeviceContainer(std::string devName) [constructor]
2076 cls.add_constructor([param('std::string', 'devName')])
2077 ## net-device-container.h (module 'network'): ns3::NetDeviceContainer::NetDeviceContainer(ns3::NetDeviceContainer const & a, ns3::NetDeviceContainer const & b) [constructor]
2078 cls.add_constructor([param('ns3::NetDeviceContainer const &', 'a'), param('ns3::NetDeviceContainer const &', 'b')])
2079 ## net-device-container.h (module 'network'): void ns3::NetDeviceContainer::Add(ns3::NetDeviceContainer other) [member function]
2080 cls.add_method('Add',
2081 'void',
2082 [param('ns3::NetDeviceContainer', 'other')])
2083 ## net-device-container.h (module 'network'): void ns3::NetDeviceContainer::Add(ns3::Ptr<ns3::NetDevice> device) [member function]
2084 cls.add_method('Add',
2085 'void',
2086 [param('ns3::Ptr< ns3::NetDevice >', 'device')])
2087 ## net-device-container.h (module 'network'): void ns3::NetDeviceContainer::Add(std::string deviceName) [member function]
2088 cls.add_method('Add',
2089 'void',
2090 [param('std::string', 'deviceName')])
2091 ## 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]
2092 cls.add_method('Begin',
2093 '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::NetDevice > const, std::vector< ns3::Ptr< ns3::NetDevice > > >',
2094 [],
2095 is_const=True)
2096 ## 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]
2097 cls.add_method('End',
2098 '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::NetDevice > const, std::vector< ns3::Ptr< ns3::NetDevice > > >',
2099 [],
2100 is_const=True)
2101 ## net-device-container.h (module 'network'): ns3::Ptr<ns3::NetDevice> ns3::NetDeviceContainer::Get(uint32_t i) const [member function]
2102 cls.add_method('Get',
2103 'ns3::Ptr< ns3::NetDevice >',
2104 [param('uint32_t', 'i')],
2105 is_const=True)
2106 ## net-device-container.h (module 'network'): uint32_t ns3::NetDeviceContainer::GetN() const [member function]
2107 cls.add_method('GetN',
2108 'uint32_t',
2109 [],
2110 is_const=True)
2111 return
2112
2113def register_Ns3NodeContainer_methods(root_module, cls):
2114 ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer(ns3::NodeContainer const & arg0) [copy constructor]
2115 cls.add_constructor([param('ns3::NodeContainer const &', 'arg0')])
2116 ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer() [constructor]
2117 cls.add_constructor([])
2118 ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer(ns3::Ptr<ns3::Node> node) [constructor]
2119 cls.add_constructor([param('ns3::Ptr< ns3::Node >', 'node')])
2120 ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer(std::string nodeName) [constructor]
2121 cls.add_constructor([param('std::string', 'nodeName')])
2122 ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer(ns3::NodeContainer const & a, ns3::NodeContainer const & b) [constructor]
2123 cls.add_constructor([param('ns3::NodeContainer const &', 'a'), param('ns3::NodeContainer const &', 'b')])
2124 ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer(ns3::NodeContainer const & a, ns3::NodeContainer const & b, ns3::NodeContainer const & c) [constructor]
2125 cls.add_constructor([param('ns3::NodeContainer const &', 'a'), param('ns3::NodeContainer const &', 'b'), param('ns3::NodeContainer const &', 'c')])
2126 ## 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]
2127 cls.add_constructor([param('ns3::NodeContainer const &', 'a'), param('ns3::NodeContainer const &', 'b'), param('ns3::NodeContainer const &', 'c'), param('ns3::NodeContainer const &', 'd')])
2128 ## 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]
2129 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')])
2130 ## node-container.h (module 'network'): void ns3::NodeContainer::Add(ns3::NodeContainer other) [member function]
2131 cls.add_method('Add',
2132 'void',
2133 [param('ns3::NodeContainer', 'other')])
2134 ## node-container.h (module 'network'): void ns3::NodeContainer::Add(ns3::Ptr<ns3::Node> node) [member function]
2135 cls.add_method('Add',
2136 'void',
2137 [param('ns3::Ptr< ns3::Node >', 'node')])
2138 ## node-container.h (module 'network'): void ns3::NodeContainer::Add(std::string nodeName) [member function]
2139 cls.add_method('Add',
2140 'void',
2141 [param('std::string', 'nodeName')])
2142 ## 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]
2143 cls.add_method('Begin',
2144 '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Node > const, std::vector< ns3::Ptr< ns3::Node > > >',
2145 [],
2146 is_const=True)
2147 ## node-container.h (module 'network'): void ns3::NodeContainer::Create(uint32_t n) [member function]
2148 cls.add_method('Create',
2149 'void',
2150 [param('uint32_t', 'n')])
2151 ## node-container.h (module 'network'): void ns3::NodeContainer::Create(uint32_t n, uint32_t systemId) [member function]
2152 cls.add_method('Create',
2153 'void',
2154 [param('uint32_t', 'n'), param('uint32_t', 'systemId')])
2155 ## 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]
2156 cls.add_method('End',
2157 '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Node > const, std::vector< ns3::Ptr< ns3::Node > > >',
2158 [],
2159 is_const=True)
2160 ## node-container.h (module 'network'): ns3::Ptr<ns3::Node> ns3::NodeContainer::Get(uint32_t i) const [member function]
2161 cls.add_method('Get',
2162 'ns3::Ptr< ns3::Node >',
2163 [param('uint32_t', 'i')],
2164 is_const=True)
2165 ## node-container.h (module 'network'): static ns3::NodeContainer ns3::NodeContainer::GetGlobal() [member function]
2166 cls.add_method('GetGlobal',
2167 'ns3::NodeContainer',
2168 [],
2169 is_static=True)
2170 ## node-container.h (module 'network'): uint32_t ns3::NodeContainer::GetN() const [member function]
2171 cls.add_method('GetN',
2172 'uint32_t',
2173 [],
2174 is_const=True)
2175 ## node-container.h (module 'network'): ns3::NodeContainer & ns3::NodeContainer::operator()(ns3::NodeContainer other) [member operator]
2176 cls.add_method('operator()',
2177 'ns3::NodeContainer &',
2178 [param('ns3::NodeContainer', 'other')],
2179 custom_name='__call__')
2180 ## node-container.h (module 'network'): ns3::NodeContainer & ns3::NodeContainer::operator()(ns3::Ptr<ns3::Node> node) [member operator]
2181 cls.add_method('operator()',
2182 'ns3::NodeContainer &',
2183 [param('ns3::Ptr< ns3::Node >', 'node')],
2184 custom_name='__call__')
2185 ## node-container.h (module 'network'): ns3::NodeContainer & ns3::NodeContainer::operator()(std::string nodeName) [member operator]
2186 cls.add_method('operator()',
2187 'ns3::NodeContainer &',
2188 [param('std::string', 'nodeName')],
2189 custom_name='__call__')
2190 return
2191
2192def register_Ns3ObjectBase_methods(root_module, cls):
2193 ## object-base.h (module 'core'): ns3::ObjectBase::ObjectBase() [constructor]
2194 cls.add_constructor([])
2195 ## object-base.h (module 'core'): ns3::ObjectBase::ObjectBase(ns3::ObjectBase const & arg0) [copy constructor]
2196 cls.add_constructor([param('ns3::ObjectBase const &', 'arg0')])
2197 ## object-base.h (module 'core'): void ns3::ObjectBase::GetAttribute(std::string name, ns3::AttributeValue & value) const [member function]
2198 cls.add_method('GetAttribute',
2199 'void',
2200 [param('std::string', 'name'), param('ns3::AttributeValue &', 'value')],
2201 is_const=True)
2202 ## object-base.h (module 'core'): bool ns3::ObjectBase::GetAttributeFailSafe(std::string name, ns3::AttributeValue & attribute) const [member function]
2203 cls.add_method('GetAttributeFailSafe',
2204 'bool',
2205 [param('std::string', 'name'), param('ns3::AttributeValue &', 'attribute')],
2206 is_const=True)
2207 ## object-base.h (module 'core'): ns3::TypeId ns3::ObjectBase::GetInstanceTypeId() const [member function]
2208 cls.add_method('GetInstanceTypeId',
2209 'ns3::TypeId',
2210 [],
2211 is_pure_virtual=True, is_const=True, is_virtual=True)
2212 ## object-base.h (module 'core'): static ns3::TypeId ns3::ObjectBase::GetTypeId() [member function]
2213 cls.add_method('GetTypeId',
2214 'ns3::TypeId',
2215 [],
2216 is_static=True)
2217 ## object-base.h (module 'core'): void ns3::ObjectBase::SetAttribute(std::string name, ns3::AttributeValue const & value) [member function]
2218 cls.add_method('SetAttribute',
2219 'void',
2220 [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')])
2221 ## object-base.h (module 'core'): bool ns3::ObjectBase::SetAttributeFailSafe(std::string name, ns3::AttributeValue const & value) [member function]
2222 cls.add_method('SetAttributeFailSafe',
2223 'bool',
2224 [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')])
2225 ## object-base.h (module 'core'): bool ns3::ObjectBase::TraceConnect(std::string name, std::string context, ns3::CallbackBase const & cb) [member function]
2226 cls.add_method('TraceConnect',
2227 'bool',
2228 [param('std::string', 'name'), param('std::string', 'context'), param('ns3::CallbackBase const &', 'cb')])
2229 ## object-base.h (module 'core'): bool ns3::ObjectBase::TraceConnectWithoutContext(std::string name, ns3::CallbackBase const & cb) [member function]
2230 cls.add_method('TraceConnectWithoutContext',
2231 'bool',
2232 [param('std::string', 'name'), param('ns3::CallbackBase const &', 'cb')])
2233 ## object-base.h (module 'core'): bool ns3::ObjectBase::TraceDisconnect(std::string name, std::string context, ns3::CallbackBase const & cb) [member function]
2234 cls.add_method('TraceDisconnect',
2235 'bool',
2236 [param('std::string', 'name'), param('std::string', 'context'), param('ns3::CallbackBase const &', 'cb')])
2237 ## object-base.h (module 'core'): bool ns3::ObjectBase::TraceDisconnectWithoutContext(std::string name, ns3::CallbackBase const & cb) [member function]
2238 cls.add_method('TraceDisconnectWithoutContext',
2239 'bool',
2240 [param('std::string', 'name'), param('ns3::CallbackBase const &', 'cb')])
2241 ## object-base.h (module 'core'): void ns3::ObjectBase::ConstructSelf(ns3::AttributeConstructionList const & attributes) [member function]
2242 cls.add_method('ConstructSelf',
2243 'void',
2244 [param('ns3::AttributeConstructionList const &', 'attributes')],
2245 visibility='protected')
2246 ## object-base.h (module 'core'): void ns3::ObjectBase::NotifyConstructionCompleted() [member function]
2247 cls.add_method('NotifyConstructionCompleted',
2248 'void',
2249 [],
2250 visibility='protected', is_virtual=True)
2251 return
2252
2253def register_Ns3ObjectDeleter_methods(root_module, cls):
2254 ## object.h (module 'core'): ns3::ObjectDeleter::ObjectDeleter() [constructor]
2255 cls.add_constructor([])
2256 ## object.h (module 'core'): ns3::ObjectDeleter::ObjectDeleter(ns3::ObjectDeleter const & arg0) [copy constructor]
2257 cls.add_constructor([param('ns3::ObjectDeleter const &', 'arg0')])
2258 ## object.h (module 'core'): static void ns3::ObjectDeleter::Delete(ns3::Object * object) [member function]
2259 cls.add_method('Delete',
2260 'void',
2261 [param('ns3::Object *', 'object')],
2262 is_static=True)
2263 return
2264
2265def register_Ns3ObjectFactory_methods(root_module, cls):
2266 cls.add_output_stream_operator()
2267 ## object-factory.h (module 'core'): ns3::ObjectFactory::ObjectFactory(ns3::ObjectFactory const & arg0) [copy constructor]
2268 cls.add_constructor([param('ns3::ObjectFactory const &', 'arg0')])
2269 ## object-factory.h (module 'core'): ns3::ObjectFactory::ObjectFactory() [constructor]
2270 cls.add_constructor([])
2271 ## object-factory.h (module 'core'): ns3::ObjectFactory::ObjectFactory(std::string typeId) [constructor]
2272 cls.add_constructor([param('std::string', 'typeId')])
2273 ## object-factory.h (module 'core'): ns3::Ptr<ns3::Object> ns3::ObjectFactory::Create() const [member function]
2274 cls.add_method('Create',
2275 'ns3::Ptr< ns3::Object >',
2276 [],
2277 is_const=True)
2278 ## object-factory.h (module 'core'): ns3::TypeId ns3::ObjectFactory::GetTypeId() const [member function]
2279 cls.add_method('GetTypeId',
2280 'ns3::TypeId',
2281 [],
2282 is_const=True)
2283 ## object-factory.h (module 'core'): void ns3::ObjectFactory::Set(std::string name, ns3::AttributeValue const & value) [member function]
2284 cls.add_method('Set',
2285 'void',
2286 [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')])
2287 ## object-factory.h (module 'core'): void ns3::ObjectFactory::SetTypeId(ns3::TypeId tid) [member function]
2288 cls.add_method('SetTypeId',
2289 'void',
2290 [param('ns3::TypeId', 'tid')])
2291 ## object-factory.h (module 'core'): void ns3::ObjectFactory::SetTypeId(char const * tid) [member function]
2292 cls.add_method('SetTypeId',
2293 'void',
2294 [param('char const *', 'tid')])
2295 ## object-factory.h (module 'core'): void ns3::ObjectFactory::SetTypeId(std::string tid) [member function]
2296 cls.add_method('SetTypeId',
2297 'void',
2298 [param('std::string', 'tid')])
2299 return
2300
2301def register_Ns3PacketMetadata_methods(root_module, cls):
2302 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::PacketMetadata(uint64_t uid, uint32_t size) [constructor]
2303 cls.add_constructor([param('uint64_t', 'uid'), param('uint32_t', 'size')])
2304 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::PacketMetadata(ns3::PacketMetadata const & o) [copy constructor]
2305 cls.add_constructor([param('ns3::PacketMetadata const &', 'o')])
2306 ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::AddAtEnd(ns3::PacketMetadata const & o) [member function]
2307 cls.add_method('AddAtEnd',
2308 'void',
2309 [param('ns3::PacketMetadata const &', 'o')])
2310 ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::AddHeader(ns3::Header const & header, uint32_t size) [member function]
2311 cls.add_method('AddHeader',
2312 'void',
2313 [param('ns3::Header const &', 'header'), param('uint32_t', 'size')])
2314 ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::AddPaddingAtEnd(uint32_t end) [member function]
2315 cls.add_method('AddPaddingAtEnd',
2316 'void',
2317 [param('uint32_t', 'end')])
2318 ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::AddTrailer(ns3::Trailer const & trailer, uint32_t size) [member function]
2319 cls.add_method('AddTrailer',
2320 'void',
2321 [param('ns3::Trailer const &', 'trailer'), param('uint32_t', 'size')])
2322 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::ItemIterator ns3::PacketMetadata::BeginItem(ns3::Buffer buffer) const [member function]
2323 cls.add_method('BeginItem',
2324 'ns3::PacketMetadata::ItemIterator',
2325 [param('ns3::Buffer', 'buffer')],
2326 is_const=True)
2327 ## packet-metadata.h (module 'network'): ns3::PacketMetadata ns3::PacketMetadata::CreateFragment(uint32_t start, uint32_t end) const [member function]
2328 cls.add_method('CreateFragment',
2329 'ns3::PacketMetadata',
2330 [param('uint32_t', 'start'), param('uint32_t', 'end')],
2331 is_const=True)
2332 ## packet-metadata.h (module 'network'): uint32_t ns3::PacketMetadata::Deserialize(uint8_t const * buffer, uint32_t size) [member function]
2333 cls.add_method('Deserialize',
2334 'uint32_t',
2335 [param('uint8_t const *', 'buffer'), param('uint32_t', 'size')])
2336 ## packet-metadata.h (module 'network'): static void ns3::PacketMetadata::Enable() [member function]
2337 cls.add_method('Enable',
2338 'void',
2339 [],
2340 is_static=True)
2341 ## packet-metadata.h (module 'network'): static void ns3::PacketMetadata::EnableChecking() [member function]
2342 cls.add_method('EnableChecking',
2343 'void',
2344 [],
2345 is_static=True)
2346 ## packet-metadata.h (module 'network'): uint32_t ns3::PacketMetadata::GetSerializedSize() const [member function]
2347 cls.add_method('GetSerializedSize',
2348 'uint32_t',
2349 [],
2350 is_const=True)
2351 ## packet-metadata.h (module 'network'): uint64_t ns3::PacketMetadata::GetUid() const [member function]
2352 cls.add_method('GetUid',
2353 'uint64_t',
2354 [],
2355 is_const=True)
2356 ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::RemoveAtEnd(uint32_t end) [member function]
2357 cls.add_method('RemoveAtEnd',
2358 'void',
2359 [param('uint32_t', 'end')])
2360 ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::RemoveAtStart(uint32_t start) [member function]
2361 cls.add_method('RemoveAtStart',
2362 'void',
2363 [param('uint32_t', 'start')])
2364 ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::RemoveHeader(ns3::Header const & header, uint32_t size) [member function]
2365 cls.add_method('RemoveHeader',
2366 'void',
2367 [param('ns3::Header const &', 'header'), param('uint32_t', 'size')])
2368 ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::RemoveTrailer(ns3::Trailer const & trailer, uint32_t size) [member function]
2369 cls.add_method('RemoveTrailer',
2370 'void',
2371 [param('ns3::Trailer const &', 'trailer'), param('uint32_t', 'size')])
2372 ## packet-metadata.h (module 'network'): uint32_t ns3::PacketMetadata::Serialize(uint8_t * buffer, uint32_t maxSize) const [member function]
2373 cls.add_method('Serialize',
2374 'uint32_t',
2375 [param('uint8_t *', 'buffer'), param('uint32_t', 'maxSize')],
2376 is_const=True)
2377 return
2378
2379def register_Ns3PacketMetadataItem_methods(root_module, cls):
2380 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::Item() [constructor]
2381 cls.add_constructor([])
2382 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::Item(ns3::PacketMetadata::Item const & arg0) [copy constructor]
2383 cls.add_constructor([param('ns3::PacketMetadata::Item const &', 'arg0')])
2384 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::current [variable]
2385 cls.add_instance_attribute('current', 'ns3::Buffer::Iterator', is_const=False)
2386 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::currentSize [variable]
2387 cls.add_instance_attribute('currentSize', 'uint32_t', is_const=False)
2388 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::currentTrimedFromEnd [variable]
2389 cls.add_instance_attribute('currentTrimedFromEnd', 'uint32_t', is_const=False)
2390 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::currentTrimedFromStart [variable]
2391 cls.add_instance_attribute('currentTrimedFromStart', 'uint32_t', is_const=False)
2392 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::isFragment [variable]
2393 cls.add_instance_attribute('isFragment', 'bool', is_const=False)
2394 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::tid [variable]
2395 cls.add_instance_attribute('tid', 'ns3::TypeId', is_const=False)
2396 return
2397
2398def register_Ns3PacketMetadataItemIterator_methods(root_module, cls):
2399 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::ItemIterator::ItemIterator(ns3::PacketMetadata::ItemIterator const & arg0) [copy constructor]
2400 cls.add_constructor([param('ns3::PacketMetadata::ItemIterator const &', 'arg0')])
2401 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::ItemIterator::ItemIterator(ns3::PacketMetadata const * metadata, ns3::Buffer buffer) [constructor]
2402 cls.add_constructor([param('ns3::PacketMetadata const *', 'metadata'), param('ns3::Buffer', 'buffer')])
2403 ## packet-metadata.h (module 'network'): bool ns3::PacketMetadata::ItemIterator::HasNext() const [member function]
2404 cls.add_method('HasNext',
2405 'bool',
2406 [],
2407 is_const=True)
2408 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item ns3::PacketMetadata::ItemIterator::Next() [member function]
2409 cls.add_method('Next',
2410 'ns3::PacketMetadata::Item',
2411 [])
2412 return
2413
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002414def register_Ns3RandomVariable_methods(root_module, cls):
2415 cls.add_output_stream_operator()
2416 ## random-variable.h (module 'core'): ns3::RandomVariable::RandomVariable() [constructor]
2417 cls.add_constructor([])
2418 ## random-variable.h (module 'core'): ns3::RandomVariable::RandomVariable(ns3::RandomVariable const & o) [copy constructor]
2419 cls.add_constructor([param('ns3::RandomVariable const &', 'o')])
2420 ## random-variable.h (module 'core'): uint32_t ns3::RandomVariable::GetInteger() const [member function]
2421 cls.add_method('GetInteger',
2422 'uint32_t',
2423 [],
2424 is_const=True)
2425 ## random-variable.h (module 'core'): double ns3::RandomVariable::GetValue() const [member function]
2426 cls.add_method('GetValue',
2427 'double',
2428 [],
2429 is_const=True)
2430 return
2431
2432def register_Ns3SeedManager_methods(root_module, cls):
2433 ## random-variable.h (module 'core'): ns3::SeedManager::SeedManager() [constructor]
2434 cls.add_constructor([])
2435 ## random-variable.h (module 'core'): ns3::SeedManager::SeedManager(ns3::SeedManager const & arg0) [copy constructor]
2436 cls.add_constructor([param('ns3::SeedManager const &', 'arg0')])
2437 ## random-variable.h (module 'core'): static bool ns3::SeedManager::CheckSeed(uint32_t seed) [member function]
2438 cls.add_method('CheckSeed',
2439 'bool',
2440 [param('uint32_t', 'seed')],
2441 is_static=True)
2442 ## random-variable.h (module 'core'): static uint32_t ns3::SeedManager::GetRun() [member function]
2443 cls.add_method('GetRun',
2444 'uint32_t',
2445 [],
2446 is_static=True)
2447 ## random-variable.h (module 'core'): static uint32_t ns3::SeedManager::GetSeed() [member function]
2448 cls.add_method('GetSeed',
2449 'uint32_t',
2450 [],
2451 is_static=True)
2452 ## random-variable.h (module 'core'): static void ns3::SeedManager::SetRun(uint32_t run) [member function]
2453 cls.add_method('SetRun',
2454 'void',
2455 [param('uint32_t', 'run')],
2456 is_static=True)
2457 ## random-variable.h (module 'core'): static void ns3::SeedManager::SetSeed(uint32_t seed) [member function]
2458 cls.add_method('SetSeed',
2459 'void',
2460 [param('uint32_t', 'seed')],
2461 is_static=True)
2462 return
2463
2464def register_Ns3SequentialVariable_methods(root_module, cls):
2465 ## random-variable.h (module 'core'): ns3::SequentialVariable::SequentialVariable(ns3::SequentialVariable const & arg0) [copy constructor]
2466 cls.add_constructor([param('ns3::SequentialVariable const &', 'arg0')])
2467 ## random-variable.h (module 'core'): ns3::SequentialVariable::SequentialVariable(double f, double l, double i=1, uint32_t c=1) [constructor]
2468 cls.add_constructor([param('double', 'f'), param('double', 'l'), param('double', 'i', default_value='1'), param('uint32_t', 'c', default_value='1')])
2469 ## random-variable.h (module 'core'): ns3::SequentialVariable::SequentialVariable(double f, double l, ns3::RandomVariable const & i, uint32_t c=1) [constructor]
2470 cls.add_constructor([param('double', 'f'), param('double', 'l'), param('ns3::RandomVariable const &', 'i'), param('uint32_t', 'c', default_value='1')])
2471 return
2472
2473def register_Ns3SimpleRefCount__Ns3Chunk_Ns3ObjectBase_Ns3DefaultDeleter__lt__ns3Chunk__gt___methods(root_module, cls):
2474 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Chunk, ns3::ObjectBase, ns3::DefaultDeleter<ns3::Chunk> >::SimpleRefCount() [constructor]
2475 cls.add_constructor([])
2476 ## 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]
2477 cls.add_constructor([param('ns3::SimpleRefCount< ns3::Chunk, ns3::ObjectBase, ns3::DefaultDeleter< ns3::Chunk > > const &', 'o')])
2478 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::Chunk, ns3::ObjectBase, ns3::DefaultDeleter<ns3::Chunk> >::Cleanup() [member function]
2479 cls.add_method('Cleanup',
2480 'void',
2481 [],
2482 is_static=True)
2483 return
2484
2485def register_Ns3SimpleRefCount__Ns3Object_Ns3ObjectBase_Ns3ObjectDeleter_methods(root_module, cls):
2486 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter>::SimpleRefCount() [constructor]
2487 cls.add_constructor([])
2488 ## 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]
2489 cls.add_constructor([param('ns3::SimpleRefCount< ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter > const &', 'o')])
2490 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter>::Cleanup() [member function]
2491 cls.add_method('Cleanup',
2492 'void',
2493 [],
2494 is_static=True)
2495 return
2496
Alexander Afanasyev03d92e42012-02-01 21:06:53 -08002497def register_Ns3Simulator_methods(root_module, cls):
2498 ## simulator.h (module 'core'): ns3::Simulator::Simulator(ns3::Simulator const & arg0) [copy constructor]
2499 cls.add_constructor([param('ns3::Simulator const &', 'arg0')])
2500 ## simulator.h (module 'core'): static void ns3::Simulator::Cancel(ns3::EventId const & id) [member function]
2501 cls.add_method('Cancel',
2502 'void',
2503 [param('ns3::EventId const &', 'id')],
2504 is_static=True)
2505 ## simulator.h (module 'core'): static void ns3::Simulator::Destroy() [member function]
2506 cls.add_method('Destroy',
2507 'void',
2508 [],
2509 is_static=True)
2510 ## simulator.h (module 'core'): static uint32_t ns3::Simulator::GetContext() [member function]
2511 cls.add_method('GetContext',
2512 'uint32_t',
2513 [],
2514 is_static=True)
2515 ## simulator.h (module 'core'): static ns3::Time ns3::Simulator::GetDelayLeft(ns3::EventId const & id) [member function]
2516 cls.add_method('GetDelayLeft',
2517 'ns3::Time',
2518 [param('ns3::EventId const &', 'id')],
2519 is_static=True)
2520 ## simulator.h (module 'core'): static ns3::Ptr<ns3::SimulatorImpl> ns3::Simulator::GetImplementation() [member function]
2521 cls.add_method('GetImplementation',
2522 'ns3::Ptr< ns3::SimulatorImpl >',
2523 [],
2524 is_static=True)
2525 ## simulator.h (module 'core'): static ns3::Time ns3::Simulator::GetMaximumSimulationTime() [member function]
2526 cls.add_method('GetMaximumSimulationTime',
2527 'ns3::Time',
2528 [],
2529 is_static=True)
2530 ## simulator.h (module 'core'): static uint32_t ns3::Simulator::GetSystemId() [member function]
2531 cls.add_method('GetSystemId',
2532 'uint32_t',
2533 [],
2534 is_static=True)
2535 ## simulator.h (module 'core'): static bool ns3::Simulator::IsExpired(ns3::EventId const & id) [member function]
2536 cls.add_method('IsExpired',
2537 'bool',
2538 [param('ns3::EventId const &', 'id')],
2539 is_static=True)
2540 ## simulator.h (module 'core'): static bool ns3::Simulator::IsFinished() [member function]
2541 cls.add_method('IsFinished',
2542 'bool',
2543 [],
2544 is_static=True)
Alexander Afanasyev03d92e42012-02-01 21:06:53 -08002545 ## simulator.h (module 'core'): static ns3::Time ns3::Simulator::Now() [member function]
2546 cls.add_method('Now',
2547 'ns3::Time',
2548 [],
2549 is_static=True)
2550 ## simulator.h (module 'core'): static void ns3::Simulator::Remove(ns3::EventId const & id) [member function]
2551 cls.add_method('Remove',
2552 'void',
2553 [param('ns3::EventId const &', 'id')],
2554 is_static=True)
Alexander Afanasyev03d92e42012-02-01 21:06:53 -08002555 ## simulator.h (module 'core'): static void ns3::Simulator::SetImplementation(ns3::Ptr<ns3::SimulatorImpl> impl) [member function]
2556 cls.add_method('SetImplementation',
2557 'void',
2558 [param('ns3::Ptr< ns3::SimulatorImpl >', 'impl')],
2559 is_static=True)
2560 ## simulator.h (module 'core'): static void ns3::Simulator::SetScheduler(ns3::ObjectFactory schedulerFactory) [member function]
2561 cls.add_method('SetScheduler',
2562 'void',
2563 [param('ns3::ObjectFactory', 'schedulerFactory')],
2564 is_static=True)
2565 ## simulator.h (module 'core'): static void ns3::Simulator::Stop() [member function]
2566 cls.add_method('Stop',
2567 'void',
2568 [],
2569 is_static=True)
2570 ## simulator.h (module 'core'): static void ns3::Simulator::Stop(ns3::Time const & time) [member function]
2571 cls.add_method('Stop',
2572 'void',
2573 [param('ns3::Time const &', 'time')],
2574 is_static=True)
2575 return
2576
Alexander Afanasyev4975f732011-12-20 17:52:19 -08002577def register_Ns3SpringMobilityHelper_methods(root_module, cls):
2578 ## spring-mobility-helper.h (module 'NDNabstraction'): ns3::SpringMobilityHelper::SpringMobilityHelper() [constructor]
2579 cls.add_constructor([])
2580 ## spring-mobility-helper.h (module 'NDNabstraction'): ns3::SpringMobilityHelper::SpringMobilityHelper(ns3::SpringMobilityHelper const & arg0) [copy constructor]
2581 cls.add_constructor([param('ns3::SpringMobilityHelper const &', 'arg0')])
2582 ## spring-mobility-helper.h (module 'NDNabstraction'): static void ns3::SpringMobilityHelper::InstallSprings(ns3::Ptr<ns3::Node> node1, ns3::Ptr<ns3::Node> node2) [member function]
2583 cls.add_method('InstallSprings',
2584 'void',
2585 [param('ns3::Ptr< ns3::Node >', 'node1'), param('ns3::Ptr< ns3::Node >', 'node2')],
2586 is_static=True)
2587 ## 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]
2588 cls.add_method('InstallSprings',
2589 'void',
2590 [param('std::_List_const_iterator< ns3::TopologyReader::Link >', 'first'), param('std::_List_const_iterator< ns3::TopologyReader::Link >', 'end')],
2591 is_static=True)
2592 return
2593
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002594def register_Ns3TagBuffer_methods(root_module, cls):
2595 ## tag-buffer.h (module 'network'): ns3::TagBuffer::TagBuffer(ns3::TagBuffer const & arg0) [copy constructor]
2596 cls.add_constructor([param('ns3::TagBuffer const &', 'arg0')])
2597 ## tag-buffer.h (module 'network'): ns3::TagBuffer::TagBuffer(uint8_t * start, uint8_t * end) [constructor]
2598 cls.add_constructor([param('uint8_t *', 'start'), param('uint8_t *', 'end')])
2599 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::CopyFrom(ns3::TagBuffer o) [member function]
2600 cls.add_method('CopyFrom',
2601 'void',
2602 [param('ns3::TagBuffer', 'o')])
2603 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::Read(uint8_t * buffer, uint32_t size) [member function]
2604 cls.add_method('Read',
2605 'void',
2606 [param('uint8_t *', 'buffer'), param('uint32_t', 'size')])
2607 ## tag-buffer.h (module 'network'): double ns3::TagBuffer::ReadDouble() [member function]
2608 cls.add_method('ReadDouble',
2609 'double',
2610 [])
2611 ## tag-buffer.h (module 'network'): uint16_t ns3::TagBuffer::ReadU16() [member function]
2612 cls.add_method('ReadU16',
2613 'uint16_t',
2614 [])
2615 ## tag-buffer.h (module 'network'): uint32_t ns3::TagBuffer::ReadU32() [member function]
2616 cls.add_method('ReadU32',
2617 'uint32_t',
2618 [])
2619 ## tag-buffer.h (module 'network'): uint64_t ns3::TagBuffer::ReadU64() [member function]
2620 cls.add_method('ReadU64',
2621 'uint64_t',
2622 [])
2623 ## tag-buffer.h (module 'network'): uint8_t ns3::TagBuffer::ReadU8() [member function]
2624 cls.add_method('ReadU8',
2625 'uint8_t',
2626 [])
2627 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::TrimAtEnd(uint32_t trim) [member function]
2628 cls.add_method('TrimAtEnd',
2629 'void',
2630 [param('uint32_t', 'trim')])
2631 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::Write(uint8_t const * buffer, uint32_t size) [member function]
2632 cls.add_method('Write',
2633 'void',
2634 [param('uint8_t const *', 'buffer'), param('uint32_t', 'size')])
2635 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::WriteDouble(double v) [member function]
2636 cls.add_method('WriteDouble',
2637 'void',
2638 [param('double', 'v')])
2639 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::WriteU16(uint16_t data) [member function]
2640 cls.add_method('WriteU16',
2641 'void',
2642 [param('uint16_t', 'data')])
2643 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::WriteU32(uint32_t data) [member function]
2644 cls.add_method('WriteU32',
2645 'void',
2646 [param('uint32_t', 'data')])
2647 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::WriteU64(uint64_t v) [member function]
2648 cls.add_method('WriteU64',
2649 'void',
2650 [param('uint64_t', 'v')])
2651 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::WriteU8(uint8_t v) [member function]
2652 cls.add_method('WriteU8',
2653 'void',
2654 [param('uint8_t', 'v')])
2655 return
2656
Alexander Afanasyev6f933532012-02-29 13:30:37 -08002657def register_Ns3Timer_methods(root_module, cls):
2658 ## timer.h (module 'core'): ns3::Timer::Timer(ns3::Timer const & arg0) [copy constructor]
2659 cls.add_constructor([param('ns3::Timer const &', 'arg0')])
2660 ## timer.h (module 'core'): ns3::Timer::Timer() [constructor]
2661 cls.add_constructor([])
2662 ## timer.h (module 'core'): ns3::Timer::Timer(ns3::Timer::DestroyPolicy destroyPolicy) [constructor]
2663 cls.add_constructor([param('ns3::Timer::DestroyPolicy', 'destroyPolicy')])
2664 ## timer.h (module 'core'): void ns3::Timer::Cancel() [member function]
2665 cls.add_method('Cancel',
2666 'void',
2667 [])
2668 ## timer.h (module 'core'): ns3::Time ns3::Timer::GetDelay() const [member function]
2669 cls.add_method('GetDelay',
2670 'ns3::Time',
2671 [],
2672 is_const=True)
2673 ## timer.h (module 'core'): ns3::Time ns3::Timer::GetDelayLeft() const [member function]
2674 cls.add_method('GetDelayLeft',
2675 'ns3::Time',
2676 [],
2677 is_const=True)
2678 ## timer.h (module 'core'): ns3::Timer::State ns3::Timer::GetState() const [member function]
2679 cls.add_method('GetState',
2680 'ns3::Timer::State',
2681 [],
2682 is_const=True)
2683 ## timer.h (module 'core'): bool ns3::Timer::IsExpired() const [member function]
2684 cls.add_method('IsExpired',
2685 'bool',
2686 [],
2687 is_const=True)
2688 ## timer.h (module 'core'): bool ns3::Timer::IsRunning() const [member function]
2689 cls.add_method('IsRunning',
2690 'bool',
2691 [],
2692 is_const=True)
2693 ## timer.h (module 'core'): bool ns3::Timer::IsSuspended() const [member function]
2694 cls.add_method('IsSuspended',
2695 'bool',
2696 [],
2697 is_const=True)
2698 ## timer.h (module 'core'): void ns3::Timer::Remove() [member function]
2699 cls.add_method('Remove',
2700 'void',
2701 [])
2702 ## timer.h (module 'core'): void ns3::Timer::Resume() [member function]
2703 cls.add_method('Resume',
2704 'void',
2705 [])
2706 ## timer.h (module 'core'): void ns3::Timer::Schedule() [member function]
2707 cls.add_method('Schedule',
2708 'void',
2709 [])
2710 ## timer.h (module 'core'): void ns3::Timer::Schedule(ns3::Time delay) [member function]
2711 cls.add_method('Schedule',
2712 'void',
2713 [param('ns3::Time', 'delay')])
2714 ## timer.h (module 'core'): void ns3::Timer::SetDelay(ns3::Time const & delay) [member function]
2715 cls.add_method('SetDelay',
2716 'void',
2717 [param('ns3::Time const &', 'delay')])
2718 ## timer.h (module 'core'): void ns3::Timer::Suspend() [member function]
2719 cls.add_method('Suspend',
2720 'void',
2721 [])
2722 return
2723
2724def register_Ns3TimerImpl_methods(root_module, cls):
2725 ## timer-impl.h (module 'core'): ns3::TimerImpl::TimerImpl() [constructor]
2726 cls.add_constructor([])
2727 ## timer-impl.h (module 'core'): ns3::TimerImpl::TimerImpl(ns3::TimerImpl const & arg0) [copy constructor]
2728 cls.add_constructor([param('ns3::TimerImpl const &', 'arg0')])
2729 ## timer-impl.h (module 'core'): void ns3::TimerImpl::Invoke() [member function]
2730 cls.add_method('Invoke',
2731 'void',
2732 [],
2733 is_pure_virtual=True, is_virtual=True)
2734 ## timer-impl.h (module 'core'): ns3::EventId ns3::TimerImpl::Schedule(ns3::Time const & delay) [member function]
2735 cls.add_method('Schedule',
2736 'ns3::EventId',
2737 [param('ns3::Time const &', 'delay')],
2738 is_pure_virtual=True, is_virtual=True)
2739 return
2740
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002741def register_Ns3TriangularVariable_methods(root_module, cls):
2742 ## random-variable.h (module 'core'): ns3::TriangularVariable::TriangularVariable(ns3::TriangularVariable const & arg0) [copy constructor]
2743 cls.add_constructor([param('ns3::TriangularVariable const &', 'arg0')])
2744 ## random-variable.h (module 'core'): ns3::TriangularVariable::TriangularVariable() [constructor]
2745 cls.add_constructor([])
2746 ## random-variable.h (module 'core'): ns3::TriangularVariable::TriangularVariable(double s, double l, double mean) [constructor]
2747 cls.add_constructor([param('double', 's'), param('double', 'l'), param('double', 'mean')])
2748 return
2749
2750def register_Ns3TypeId_methods(root_module, cls):
2751 cls.add_binary_comparison_operator('!=')
2752 cls.add_output_stream_operator()
2753 cls.add_binary_comparison_operator('==')
2754 cls.add_binary_comparison_operator('<')
2755 ## type-id.h (module 'core'): ns3::TypeId::TypeId(char const * name) [constructor]
2756 cls.add_constructor([param('char const *', 'name')])
2757 ## type-id.h (module 'core'): ns3::TypeId::TypeId() [constructor]
2758 cls.add_constructor([])
2759 ## type-id.h (module 'core'): ns3::TypeId::TypeId(ns3::TypeId const & o) [copy constructor]
2760 cls.add_constructor([param('ns3::TypeId const &', 'o')])
2761 ## 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]
2762 cls.add_method('AddAttribute',
2763 'ns3::TypeId',
2764 [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')])
2765 ## 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]
2766 cls.add_method('AddAttribute',
2767 'ns3::TypeId',
2768 [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')])
2769 ## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::AddTraceSource(std::string name, std::string help, ns3::Ptr<ns3::TraceSourceAccessor const> accessor) [member function]
2770 cls.add_method('AddTraceSource',
2771 'ns3::TypeId',
2772 [param('std::string', 'name'), param('std::string', 'help'), param('ns3::Ptr< ns3::TraceSourceAccessor const >', 'accessor')])
2773 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation ns3::TypeId::GetAttribute(uint32_t i) const [member function]
2774 cls.add_method('GetAttribute',
2775 'ns3::TypeId::AttributeInformation',
2776 [param('uint32_t', 'i')],
2777 is_const=True)
2778 ## type-id.h (module 'core'): std::string ns3::TypeId::GetAttributeFullName(uint32_t i) const [member function]
2779 cls.add_method('GetAttributeFullName',
2780 'std::string',
2781 [param('uint32_t', 'i')],
2782 is_const=True)
2783 ## type-id.h (module 'core'): uint32_t ns3::TypeId::GetAttributeN() const [member function]
2784 cls.add_method('GetAttributeN',
2785 'uint32_t',
2786 [],
2787 is_const=True)
2788 ## 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]
2789 cls.add_method('GetConstructor',
2790 'ns3::Callback< ns3::ObjectBase *, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >',
2791 [],
2792 is_const=True)
2793 ## type-id.h (module 'core'): std::string ns3::TypeId::GetGroupName() const [member function]
2794 cls.add_method('GetGroupName',
2795 'std::string',
2796 [],
2797 is_const=True)
2798 ## type-id.h (module 'core'): std::string ns3::TypeId::GetName() const [member function]
2799 cls.add_method('GetName',
2800 'std::string',
2801 [],
2802 is_const=True)
2803 ## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::GetParent() const [member function]
2804 cls.add_method('GetParent',
2805 'ns3::TypeId',
2806 [],
2807 is_const=True)
2808 ## type-id.h (module 'core'): static ns3::TypeId ns3::TypeId::GetRegistered(uint32_t i) [member function]
2809 cls.add_method('GetRegistered',
2810 'ns3::TypeId',
2811 [param('uint32_t', 'i')],
2812 is_static=True)
2813 ## type-id.h (module 'core'): static uint32_t ns3::TypeId::GetRegisteredN() [member function]
2814 cls.add_method('GetRegisteredN',
2815 'uint32_t',
2816 [],
2817 is_static=True)
2818 ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation ns3::TypeId::GetTraceSource(uint32_t i) const [member function]
2819 cls.add_method('GetTraceSource',
2820 'ns3::TypeId::TraceSourceInformation',
2821 [param('uint32_t', 'i')],
2822 is_const=True)
2823 ## type-id.h (module 'core'): uint32_t ns3::TypeId::GetTraceSourceN() const [member function]
2824 cls.add_method('GetTraceSourceN',
2825 'uint32_t',
2826 [],
2827 is_const=True)
2828 ## type-id.h (module 'core'): uint16_t ns3::TypeId::GetUid() const [member function]
2829 cls.add_method('GetUid',
2830 'uint16_t',
2831 [],
2832 is_const=True)
2833 ## type-id.h (module 'core'): bool ns3::TypeId::HasConstructor() const [member function]
2834 cls.add_method('HasConstructor',
2835 'bool',
2836 [],
2837 is_const=True)
2838 ## type-id.h (module 'core'): bool ns3::TypeId::HasParent() const [member function]
2839 cls.add_method('HasParent',
2840 'bool',
2841 [],
2842 is_const=True)
2843 ## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::HideFromDocumentation() [member function]
2844 cls.add_method('HideFromDocumentation',
2845 'ns3::TypeId',
2846 [])
2847 ## type-id.h (module 'core'): bool ns3::TypeId::IsChildOf(ns3::TypeId other) const [member function]
2848 cls.add_method('IsChildOf',
2849 'bool',
2850 [param('ns3::TypeId', 'other')],
2851 is_const=True)
2852 ## type-id.h (module 'core'): bool ns3::TypeId::LookupAttributeByName(std::string name, ns3::TypeId::AttributeInformation * info) const [member function]
2853 cls.add_method('LookupAttributeByName',
2854 'bool',
Alexander Afanasyev6f933532012-02-29 13:30:37 -08002855 [param('std::string', 'name'), param('ns3::TypeId::AttributeInformation *', 'info', transfer_ownership=False)],
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002856 is_const=True)
2857 ## type-id.h (module 'core'): static ns3::TypeId ns3::TypeId::LookupByName(std::string name) [member function]
2858 cls.add_method('LookupByName',
2859 'ns3::TypeId',
2860 [param('std::string', 'name')],
2861 is_static=True)
2862 ## type-id.h (module 'core'): ns3::Ptr<ns3::TraceSourceAccessor const> ns3::TypeId::LookupTraceSourceByName(std::string name) const [member function]
2863 cls.add_method('LookupTraceSourceByName',
2864 'ns3::Ptr< ns3::TraceSourceAccessor const >',
2865 [param('std::string', 'name')],
2866 is_const=True)
2867 ## type-id.h (module 'core'): bool ns3::TypeId::MustHideFromDocumentation() const [member function]
2868 cls.add_method('MustHideFromDocumentation',
2869 'bool',
2870 [],
2871 is_const=True)
2872 ## type-id.h (module 'core'): bool ns3::TypeId::SetAttributeInitialValue(uint32_t i, ns3::Ptr<ns3::AttributeValue const> initialValue) [member function]
2873 cls.add_method('SetAttributeInitialValue',
2874 'bool',
2875 [param('uint32_t', 'i'), param('ns3::Ptr< ns3::AttributeValue const >', 'initialValue')])
2876 ## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::SetGroupName(std::string groupName) [member function]
2877 cls.add_method('SetGroupName',
2878 'ns3::TypeId',
2879 [param('std::string', 'groupName')])
2880 ## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::SetParent(ns3::TypeId tid) [member function]
2881 cls.add_method('SetParent',
2882 'ns3::TypeId',
2883 [param('ns3::TypeId', 'tid')])
2884 ## type-id.h (module 'core'): void ns3::TypeId::SetUid(uint16_t tid) [member function]
2885 cls.add_method('SetUid',
2886 'void',
2887 [param('uint16_t', 'tid')])
2888 return
2889
2890def register_Ns3TypeIdAttributeInformation_methods(root_module, cls):
2891 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::AttributeInformation() [constructor]
2892 cls.add_constructor([])
2893 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::AttributeInformation(ns3::TypeId::AttributeInformation const & arg0) [copy constructor]
2894 cls.add_constructor([param('ns3::TypeId::AttributeInformation const &', 'arg0')])
2895 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::accessor [variable]
2896 cls.add_instance_attribute('accessor', 'ns3::Ptr< ns3::AttributeAccessor const >', is_const=False)
2897 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::checker [variable]
2898 cls.add_instance_attribute('checker', 'ns3::Ptr< ns3::AttributeChecker const >', is_const=False)
2899 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::flags [variable]
2900 cls.add_instance_attribute('flags', 'uint32_t', is_const=False)
2901 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::help [variable]
2902 cls.add_instance_attribute('help', 'std::string', is_const=False)
2903 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::initialValue [variable]
2904 cls.add_instance_attribute('initialValue', 'ns3::Ptr< ns3::AttributeValue const >', is_const=False)
2905 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::name [variable]
2906 cls.add_instance_attribute('name', 'std::string', is_const=False)
2907 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::originalInitialValue [variable]
2908 cls.add_instance_attribute('originalInitialValue', 'ns3::Ptr< ns3::AttributeValue const >', is_const=False)
2909 return
2910
2911def register_Ns3TypeIdTraceSourceInformation_methods(root_module, cls):
2912 ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation::TraceSourceInformation() [constructor]
2913 cls.add_constructor([])
2914 ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation::TraceSourceInformation(ns3::TypeId::TraceSourceInformation const & arg0) [copy constructor]
2915 cls.add_constructor([param('ns3::TypeId::TraceSourceInformation const &', 'arg0')])
2916 ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation::accessor [variable]
2917 cls.add_instance_attribute('accessor', 'ns3::Ptr< ns3::TraceSourceAccessor const >', is_const=False)
2918 ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation::help [variable]
2919 cls.add_instance_attribute('help', 'std::string', is_const=False)
2920 ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation::name [variable]
2921 cls.add_instance_attribute('name', 'std::string', is_const=False)
2922 return
2923
2924def register_Ns3UniformVariable_methods(root_module, cls):
2925 ## random-variable.h (module 'core'): ns3::UniformVariable::UniformVariable(ns3::UniformVariable const & arg0) [copy constructor]
2926 cls.add_constructor([param('ns3::UniformVariable const &', 'arg0')])
2927 ## random-variable.h (module 'core'): ns3::UniformVariable::UniformVariable() [constructor]
2928 cls.add_constructor([])
2929 ## random-variable.h (module 'core'): ns3::UniformVariable::UniformVariable(double s, double l) [constructor]
2930 cls.add_constructor([param('double', 's'), param('double', 'l')])
2931 ## random-variable.h (module 'core'): uint32_t ns3::UniformVariable::GetInteger(uint32_t s, uint32_t l) [member function]
2932 cls.add_method('GetInteger',
2933 'uint32_t',
2934 [param('uint32_t', 's'), param('uint32_t', 'l')])
2935 ## random-variable.h (module 'core'): double ns3::UniformVariable::GetValue() const [member function]
2936 cls.add_method('GetValue',
2937 'double',
2938 [],
2939 is_const=True)
2940 ## random-variable.h (module 'core'): double ns3::UniformVariable::GetValue(double s, double l) [member function]
2941 cls.add_method('GetValue',
2942 'double',
2943 [param('double', 's'), param('double', 'l')])
2944 return
2945
Alexander Afanasyev4975f732011-12-20 17:52:19 -08002946def register_Ns3Vector2D_methods(root_module, cls):
2947 cls.add_output_stream_operator()
2948 cls.add_binary_numeric_operator('*', root_module['ns3::Vector2D'], root_module['ns3::Vector2D'], param('ns3::Vector2D const &', 'right'))
2949 cls.add_binary_numeric_operator('*', root_module['ns3::Vector2D'], root_module['ns3::Vector2D'], param('double', 'right'))
2950 cls.add_binary_numeric_operator('+', root_module['ns3::Vector2D'], root_module['ns3::Vector2D'], param('ns3::Vector2D const &', 'right'))
2951 cls.add_binary_numeric_operator('+', root_module['ns3::Vector2D'], root_module['ns3::Vector2D'], param('double', 'right'))
2952 cls.add_inplace_numeric_operator('+=', param('ns3::Vector2D const &', 'right'))
2953 cls.add_inplace_numeric_operator('+=', param('double', 'right'))
2954 cls.add_binary_numeric_operator('-', root_module['ns3::Vector2D'], root_module['ns3::Vector2D'], param('ns3::Vector2D const &', 'right'))
2955 cls.add_binary_numeric_operator('/', root_module['ns3::Vector2D'], root_module['ns3::Vector2D'], param('double', 'right'))
2956 ## vector.h (module 'core'): ns3::Vector2D::Vector2D(ns3::Vector2D const & arg0) [copy constructor]
2957 cls.add_constructor([param('ns3::Vector2D const &', 'arg0')])
2958 ## vector.h (module 'core'): ns3::Vector2D::Vector2D(double _x, double _y) [constructor]
2959 cls.add_constructor([param('double', '_x'), param('double', '_y')])
2960 ## vector.h (module 'core'): ns3::Vector2D::Vector2D() [constructor]
2961 cls.add_constructor([])
Alexander Afanasyev6f933532012-02-29 13:30:37 -08002962 ## vector.h (module 'core'): double ns3::Vector2D::GetLength() const [member function]
2963 cls.add_method('GetLength',
2964 'double',
2965 [],
2966 is_const=True)
Alexander Afanasyev4975f732011-12-20 17:52:19 -08002967 ## vector.h (module 'core'): ns3::Vector2D::x [variable]
2968 cls.add_instance_attribute('x', 'double', is_const=False)
2969 ## vector.h (module 'core'): ns3::Vector2D::y [variable]
2970 cls.add_instance_attribute('y', 'double', is_const=False)
2971 return
2972
2973def register_Ns3Vector3D_methods(root_module, cls):
2974 cls.add_output_stream_operator()
2975 cls.add_binary_numeric_operator('*', root_module['ns3::Vector3D'], root_module['ns3::Vector3D'], param('ns3::Vector3D const &', 'right'))
2976 cls.add_binary_numeric_operator('*', root_module['ns3::Vector3D'], root_module['ns3::Vector3D'], param('double', 'right'))
2977 cls.add_binary_numeric_operator('+', root_module['ns3::Vector3D'], root_module['ns3::Vector3D'], param('ns3::Vector3D const &', 'right'))
2978 cls.add_binary_numeric_operator('+', root_module['ns3::Vector3D'], root_module['ns3::Vector3D'], param('double', 'right'))
2979 cls.add_inplace_numeric_operator('+=', param('ns3::Vector3D const &', 'right'))
2980 cls.add_inplace_numeric_operator('+=', param('double', 'right'))
2981 cls.add_binary_numeric_operator('-', root_module['ns3::Vector3D'], root_module['ns3::Vector3D'], param('ns3::Vector3D const &', 'right'))
2982 cls.add_binary_numeric_operator('/', root_module['ns3::Vector3D'], root_module['ns3::Vector3D'], param('double', 'right'))
2983 ## vector.h (module 'core'): ns3::Vector3D::Vector3D(ns3::Vector3D const & arg0) [copy constructor]
2984 cls.add_constructor([param('ns3::Vector3D const &', 'arg0')])
2985 ## vector.h (module 'core'): ns3::Vector3D::Vector3D(double _x, double _y, double _z) [constructor]
2986 cls.add_constructor([param('double', '_x'), param('double', '_y'), param('double', '_z')])
2987 ## vector.h (module 'core'): ns3::Vector3D::Vector3D() [constructor]
2988 cls.add_constructor([])
Alexander Afanasyev6f933532012-02-29 13:30:37 -08002989 ## vector.h (module 'core'): double ns3::Vector3D::GetLength() const [member function]
2990 cls.add_method('GetLength',
2991 'double',
2992 [],
2993 is_const=True)
Alexander Afanasyev4975f732011-12-20 17:52:19 -08002994 ## vector.h (module 'core'): ns3::Vector3D::x [variable]
2995 cls.add_instance_attribute('x', 'double', is_const=False)
2996 ## vector.h (module 'core'): ns3::Vector3D::y [variable]
2997 cls.add_instance_attribute('y', 'double', is_const=False)
2998 ## vector.h (module 'core'): ns3::Vector3D::z [variable]
2999 cls.add_instance_attribute('z', 'double', is_const=False)
3000 return
3001
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08003002def register_Ns3WeibullVariable_methods(root_module, cls):
3003 ## random-variable.h (module 'core'): ns3::WeibullVariable::WeibullVariable(ns3::WeibullVariable const & arg0) [copy constructor]
3004 cls.add_constructor([param('ns3::WeibullVariable const &', 'arg0')])
3005 ## random-variable.h (module 'core'): ns3::WeibullVariable::WeibullVariable() [constructor]
3006 cls.add_constructor([])
3007 ## random-variable.h (module 'core'): ns3::WeibullVariable::WeibullVariable(double m) [constructor]
3008 cls.add_constructor([param('double', 'm')])
3009 ## random-variable.h (module 'core'): ns3::WeibullVariable::WeibullVariable(double m, double s) [constructor]
3010 cls.add_constructor([param('double', 'm'), param('double', 's')])
3011 ## random-variable.h (module 'core'): ns3::WeibullVariable::WeibullVariable(double m, double s, double b) [constructor]
3012 cls.add_constructor([param('double', 'm'), param('double', 's'), param('double', 'b')])
3013 return
3014
3015def register_Ns3ZetaVariable_methods(root_module, cls):
3016 ## random-variable.h (module 'core'): ns3::ZetaVariable::ZetaVariable(ns3::ZetaVariable const & arg0) [copy constructor]
3017 cls.add_constructor([param('ns3::ZetaVariable const &', 'arg0')])
3018 ## random-variable.h (module 'core'): ns3::ZetaVariable::ZetaVariable(double alpha) [constructor]
3019 cls.add_constructor([param('double', 'alpha')])
3020 ## random-variable.h (module 'core'): ns3::ZetaVariable::ZetaVariable() [constructor]
3021 cls.add_constructor([])
3022 return
3023
3024def register_Ns3ZipfVariable_methods(root_module, cls):
3025 ## random-variable.h (module 'core'): ns3::ZipfVariable::ZipfVariable(ns3::ZipfVariable const & arg0) [copy constructor]
3026 cls.add_constructor([param('ns3::ZipfVariable const &', 'arg0')])
3027 ## random-variable.h (module 'core'): ns3::ZipfVariable::ZipfVariable(long int N, double alpha) [constructor]
3028 cls.add_constructor([param('long int', 'N'), param('double', 'alpha')])
3029 ## random-variable.h (module 'core'): ns3::ZipfVariable::ZipfVariable() [constructor]
3030 cls.add_constructor([])
3031 return
3032
3033def register_Ns3Empty_methods(root_module, cls):
3034 ## empty.h (module 'core'): ns3::empty::empty() [constructor]
3035 cls.add_constructor([])
3036 ## empty.h (module 'core'): ns3::empty::empty(ns3::empty const & arg0) [copy constructor]
3037 cls.add_constructor([param('ns3::empty const &', 'arg0')])
3038 return
3039
3040def register_Ns3Int64x64_t_methods(root_module, cls):
3041 cls.add_binary_comparison_operator('!=')
3042 cls.add_inplace_numeric_operator('*=', param('ns3::int64x64_t const &', 'right'))
3043 cls.add_inplace_numeric_operator('+=', param('ns3::int64x64_t const &', 'right'))
3044 cls.add_inplace_numeric_operator('-=', param('ns3::int64x64_t const &', 'right'))
3045 cls.add_inplace_numeric_operator('/=', param('ns3::int64x64_t const &', 'right'))
3046 cls.add_output_stream_operator()
Alexander Afanasyev4975f732011-12-20 17:52:19 -08003047 cls.add_binary_comparison_operator('<=')
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08003048 cls.add_binary_comparison_operator('==')
3049 cls.add_binary_comparison_operator('>=')
3050 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long unsigned int const', 'right'))
3051 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long unsigned int const', 'right'))
3052 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned int const', 'right'))
3053 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short unsigned int const', 'right'))
3054 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned char const', 'right'))
3055 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long int const', 'right'))
3056 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long int const', 'right'))
3057 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('int const', 'right'))
3058 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short int const', 'right'))
3059 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('signed char const', 'right'))
3060 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('double const', 'right'))
3061 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('ns3::int64x64_t const &', 'right'))
3062 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long unsigned int const', 'right'))
3063 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long unsigned int const', 'right'))
3064 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned int const', 'right'))
3065 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short unsigned int const', 'right'))
3066 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned char const', 'right'))
3067 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long int const', 'right'))
3068 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long int const', 'right'))
3069 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('int const', 'right'))
3070 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short int const', 'right'))
3071 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('signed char const', 'right'))
3072 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('double const', 'right'))
3073 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('ns3::int64x64_t const &', 'right'))
3074 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long unsigned int const', 'right'))
3075 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long unsigned int const', 'right'))
3076 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned int const', 'right'))
3077 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short unsigned int const', 'right'))
3078 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned char const', 'right'))
3079 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long int const', 'right'))
3080 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long int const', 'right'))
3081 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('int const', 'right'))
3082 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short int const', 'right'))
3083 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('signed char const', 'right'))
3084 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('double const', 'right'))
3085 cls.add_unary_numeric_operator('-')
3086 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('ns3::int64x64_t const &', 'right'))
3087 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long unsigned int const', 'right'))
3088 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long unsigned int const', 'right'))
3089 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned int const', 'right'))
3090 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short unsigned int const', 'right'))
3091 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned char const', 'right'))
3092 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long int const', 'right'))
3093 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long int const', 'right'))
3094 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('int const', 'right'))
3095 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short int const', 'right'))
3096 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('signed char const', 'right'))
3097 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('double const', 'right'))
3098 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('ns3::int64x64_t const &', 'right'))
3099 cls.add_binary_comparison_operator('<')
3100 cls.add_binary_comparison_operator('>')
3101 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t() [constructor]
3102 cls.add_constructor([])
3103 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(double v) [constructor]
3104 cls.add_constructor([param('double', 'v')])
3105 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(int v) [constructor]
3106 cls.add_constructor([param('int', 'v')])
3107 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(long int v) [constructor]
3108 cls.add_constructor([param('long int', 'v')])
3109 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(long long int v) [constructor]
3110 cls.add_constructor([param('long long int', 'v')])
3111 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(unsigned int v) [constructor]
3112 cls.add_constructor([param('unsigned int', 'v')])
3113 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(long unsigned int v) [constructor]
3114 cls.add_constructor([param('long unsigned int', 'v')])
3115 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(long long unsigned int v) [constructor]
3116 cls.add_constructor([param('long long unsigned int', 'v')])
3117 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(int64_t hi, uint64_t lo) [constructor]
3118 cls.add_constructor([param('int64_t', 'hi'), param('uint64_t', 'lo')])
3119 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(ns3::int64x64_t const & o) [copy constructor]
3120 cls.add_constructor([param('ns3::int64x64_t const &', 'o')])
3121 ## int64x64-double.h (module 'core'): double ns3::int64x64_t::GetDouble() const [member function]
3122 cls.add_method('GetDouble',
3123 'double',
3124 [],
3125 is_const=True)
3126 ## int64x64-double.h (module 'core'): int64_t ns3::int64x64_t::GetHigh() const [member function]
3127 cls.add_method('GetHigh',
3128 'int64_t',
3129 [],
3130 is_const=True)
3131 ## int64x64-double.h (module 'core'): uint64_t ns3::int64x64_t::GetLow() const [member function]
3132 cls.add_method('GetLow',
3133 'uint64_t',
3134 [],
3135 is_const=True)
3136 ## int64x64-double.h (module 'core'): static ns3::int64x64_t ns3::int64x64_t::Invert(uint64_t v) [member function]
3137 cls.add_method('Invert',
3138 'ns3::int64x64_t',
3139 [param('uint64_t', 'v')],
3140 is_static=True)
3141 ## int64x64-double.h (module 'core'): void ns3::int64x64_t::MulByInvert(ns3::int64x64_t const & o) [member function]
3142 cls.add_method('MulByInvert',
3143 'void',
3144 [param('ns3::int64x64_t const &', 'o')])
3145 return
3146
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08003147def register_Ns3Chunk_methods(root_module, cls):
3148 ## chunk.h (module 'network'): ns3::Chunk::Chunk() [constructor]
3149 cls.add_constructor([])
3150 ## chunk.h (module 'network'): ns3::Chunk::Chunk(ns3::Chunk const & arg0) [copy constructor]
3151 cls.add_constructor([param('ns3::Chunk const &', 'arg0')])
3152 ## chunk.h (module 'network'): uint32_t ns3::Chunk::Deserialize(ns3::Buffer::Iterator start) [member function]
3153 cls.add_method('Deserialize',
3154 'uint32_t',
3155 [param('ns3::Buffer::Iterator', 'start')],
3156 is_pure_virtual=True, is_virtual=True)
3157 ## chunk.h (module 'network'): static ns3::TypeId ns3::Chunk::GetTypeId() [member function]
3158 cls.add_method('GetTypeId',
3159 'ns3::TypeId',
3160 [],
3161 is_static=True)
3162 ## chunk.h (module 'network'): void ns3::Chunk::Print(std::ostream & os) const [member function]
3163 cls.add_method('Print',
3164 'void',
3165 [param('std::ostream &', 'os')],
3166 is_pure_virtual=True, is_const=True, is_virtual=True)
3167 return
3168
3169def register_Ns3ConstantVariable_methods(root_module, cls):
3170 ## random-variable.h (module 'core'): ns3::ConstantVariable::ConstantVariable(ns3::ConstantVariable const & arg0) [copy constructor]
3171 cls.add_constructor([param('ns3::ConstantVariable const &', 'arg0')])
3172 ## random-variable.h (module 'core'): ns3::ConstantVariable::ConstantVariable() [constructor]
3173 cls.add_constructor([])
3174 ## random-variable.h (module 'core'): ns3::ConstantVariable::ConstantVariable(double c) [constructor]
3175 cls.add_constructor([param('double', 'c')])
3176 ## random-variable.h (module 'core'): void ns3::ConstantVariable::SetConstant(double c) [member function]
3177 cls.add_method('SetConstant',
3178 'void',
3179 [param('double', 'c')])
3180 return
3181
3182def register_Ns3DeterministicVariable_methods(root_module, cls):
3183 ## random-variable.h (module 'core'): ns3::DeterministicVariable::DeterministicVariable(ns3::DeterministicVariable const & arg0) [copy constructor]
3184 cls.add_constructor([param('ns3::DeterministicVariable const &', 'arg0')])
3185 ## random-variable.h (module 'core'): ns3::DeterministicVariable::DeterministicVariable(double * d, uint32_t c) [constructor]
3186 cls.add_constructor([param('double *', 'd'), param('uint32_t', 'c')])
3187 return
3188
3189def register_Ns3EmpiricalVariable_methods(root_module, cls):
3190 ## random-variable.h (module 'core'): ns3::EmpiricalVariable::EmpiricalVariable(ns3::EmpiricalVariable const & arg0) [copy constructor]
3191 cls.add_constructor([param('ns3::EmpiricalVariable const &', 'arg0')])
3192 ## random-variable.h (module 'core'): ns3::EmpiricalVariable::EmpiricalVariable() [constructor]
3193 cls.add_constructor([])
3194 ## random-variable.h (module 'core'): void ns3::EmpiricalVariable::CDF(double v, double c) [member function]
3195 cls.add_method('CDF',
3196 'void',
3197 [param('double', 'v'), param('double', 'c')])
3198 return
3199
3200def register_Ns3ErlangVariable_methods(root_module, cls):
3201 ## random-variable.h (module 'core'): ns3::ErlangVariable::ErlangVariable(ns3::ErlangVariable const & arg0) [copy constructor]
3202 cls.add_constructor([param('ns3::ErlangVariable const &', 'arg0')])
3203 ## random-variable.h (module 'core'): ns3::ErlangVariable::ErlangVariable() [constructor]
3204 cls.add_constructor([])
3205 ## random-variable.h (module 'core'): ns3::ErlangVariable::ErlangVariable(unsigned int k, double lambda) [constructor]
3206 cls.add_constructor([param('unsigned int', 'k'), param('double', 'lambda')])
3207 ## random-variable.h (module 'core'): double ns3::ErlangVariable::GetValue() const [member function]
3208 cls.add_method('GetValue',
3209 'double',
3210 [],
3211 is_const=True)
3212 ## random-variable.h (module 'core'): double ns3::ErlangVariable::GetValue(unsigned int k, double lambda) const [member function]
3213 cls.add_method('GetValue',
3214 'double',
3215 [param('unsigned int', 'k'), param('double', 'lambda')],
3216 is_const=True)
3217 return
3218
3219def register_Ns3ExponentialVariable_methods(root_module, cls):
3220 ## random-variable.h (module 'core'): ns3::ExponentialVariable::ExponentialVariable(ns3::ExponentialVariable const & arg0) [copy constructor]
3221 cls.add_constructor([param('ns3::ExponentialVariable const &', 'arg0')])
3222 ## random-variable.h (module 'core'): ns3::ExponentialVariable::ExponentialVariable() [constructor]
3223 cls.add_constructor([])
3224 ## random-variable.h (module 'core'): ns3::ExponentialVariable::ExponentialVariable(double m) [constructor]
3225 cls.add_constructor([param('double', 'm')])
3226 ## random-variable.h (module 'core'): ns3::ExponentialVariable::ExponentialVariable(double m, double b) [constructor]
3227 cls.add_constructor([param('double', 'm'), param('double', 'b')])
3228 return
3229
3230def register_Ns3GammaVariable_methods(root_module, cls):
3231 ## random-variable.h (module 'core'): ns3::GammaVariable::GammaVariable(ns3::GammaVariable const & arg0) [copy constructor]
3232 cls.add_constructor([param('ns3::GammaVariable const &', 'arg0')])
3233 ## random-variable.h (module 'core'): ns3::GammaVariable::GammaVariable() [constructor]
3234 cls.add_constructor([])
3235 ## random-variable.h (module 'core'): ns3::GammaVariable::GammaVariable(double alpha, double beta) [constructor]
3236 cls.add_constructor([param('double', 'alpha'), param('double', 'beta')])
3237 ## random-variable.h (module 'core'): double ns3::GammaVariable::GetValue() const [member function]
3238 cls.add_method('GetValue',
3239 'double',
3240 [],
3241 is_const=True)
3242 ## random-variable.h (module 'core'): double ns3::GammaVariable::GetValue(double alpha, double beta) const [member function]
3243 cls.add_method('GetValue',
3244 'double',
3245 [param('double', 'alpha'), param('double', 'beta')],
3246 is_const=True)
3247 return
3248
3249def register_Ns3Header_methods(root_module, cls):
3250 cls.add_output_stream_operator()
3251 ## header.h (module 'network'): ns3::Header::Header() [constructor]
3252 cls.add_constructor([])
3253 ## header.h (module 'network'): ns3::Header::Header(ns3::Header const & arg0) [copy constructor]
3254 cls.add_constructor([param('ns3::Header const &', 'arg0')])
3255 ## header.h (module 'network'): uint32_t ns3::Header::Deserialize(ns3::Buffer::Iterator start) [member function]
3256 cls.add_method('Deserialize',
3257 'uint32_t',
3258 [param('ns3::Buffer::Iterator', 'start')],
3259 is_pure_virtual=True, is_virtual=True)
3260 ## header.h (module 'network'): uint32_t ns3::Header::GetSerializedSize() const [member function]
3261 cls.add_method('GetSerializedSize',
3262 'uint32_t',
3263 [],
3264 is_pure_virtual=True, is_const=True, is_virtual=True)
3265 ## header.h (module 'network'): static ns3::TypeId ns3::Header::GetTypeId() [member function]
3266 cls.add_method('GetTypeId',
3267 'ns3::TypeId',
3268 [],
3269 is_static=True)
3270 ## header.h (module 'network'): void ns3::Header::Print(std::ostream & os) const [member function]
3271 cls.add_method('Print',
3272 'void',
3273 [param('std::ostream &', 'os')],
3274 is_pure_virtual=True, is_const=True, is_virtual=True)
3275 ## header.h (module 'network'): void ns3::Header::Serialize(ns3::Buffer::Iterator start) const [member function]
3276 cls.add_method('Serialize',
3277 'void',
3278 [param('ns3::Buffer::Iterator', 'start')],
3279 is_pure_virtual=True, is_const=True, is_virtual=True)
3280 return
3281
3282def register_Ns3IntEmpiricalVariable_methods(root_module, cls):
3283 ## random-variable.h (module 'core'): ns3::IntEmpiricalVariable::IntEmpiricalVariable(ns3::IntEmpiricalVariable const & arg0) [copy constructor]
3284 cls.add_constructor([param('ns3::IntEmpiricalVariable const &', 'arg0')])
3285 ## random-variable.h (module 'core'): ns3::IntEmpiricalVariable::IntEmpiricalVariable() [constructor]
3286 cls.add_constructor([])
3287 return
3288
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08003289def register_Ns3Ipv4Header_methods(root_module, cls):
3290 ## ipv4-header.h (module 'internet'): ns3::Ipv4Header::Ipv4Header(ns3::Ipv4Header const & arg0) [copy constructor]
3291 cls.add_constructor([param('ns3::Ipv4Header const &', 'arg0')])
3292 ## ipv4-header.h (module 'internet'): ns3::Ipv4Header::Ipv4Header() [constructor]
3293 cls.add_constructor([])
3294 ## ipv4-header.h (module 'internet'): uint32_t ns3::Ipv4Header::Deserialize(ns3::Buffer::Iterator start) [member function]
3295 cls.add_method('Deserialize',
3296 'uint32_t',
3297 [param('ns3::Buffer::Iterator', 'start')],
3298 is_virtual=True)
3299 ## ipv4-header.h (module 'internet'): std::string ns3::Ipv4Header::DscpTypeToString(ns3::Ipv4Header::DscpType dscp) const [member function]
3300 cls.add_method('DscpTypeToString',
3301 'std::string',
3302 [param('ns3::Ipv4Header::DscpType', 'dscp')],
3303 is_const=True)
3304 ## ipv4-header.h (module 'internet'): std::string ns3::Ipv4Header::EcnTypeToString(ns3::Ipv4Header::EcnType ecn) const [member function]
3305 cls.add_method('EcnTypeToString',
3306 'std::string',
3307 [param('ns3::Ipv4Header::EcnType', 'ecn')],
3308 is_const=True)
3309 ## ipv4-header.h (module 'internet'): void ns3::Ipv4Header::EnableChecksum() [member function]
3310 cls.add_method('EnableChecksum',
3311 'void',
3312 [])
3313 ## ipv4-header.h (module 'internet'): ns3::Ipv4Address ns3::Ipv4Header::GetDestination() const [member function]
3314 cls.add_method('GetDestination',
3315 'ns3::Ipv4Address',
3316 [],
3317 is_const=True)
3318 ## ipv4-header.h (module 'internet'): ns3::Ipv4Header::DscpType ns3::Ipv4Header::GetDscp() const [member function]
3319 cls.add_method('GetDscp',
3320 'ns3::Ipv4Header::DscpType',
3321 [],
3322 is_const=True)
3323 ## ipv4-header.h (module 'internet'): ns3::Ipv4Header::EcnType ns3::Ipv4Header::GetEcn() const [member function]
3324 cls.add_method('GetEcn',
3325 'ns3::Ipv4Header::EcnType',
3326 [],
3327 is_const=True)
3328 ## ipv4-header.h (module 'internet'): uint16_t ns3::Ipv4Header::GetFragmentOffset() const [member function]
3329 cls.add_method('GetFragmentOffset',
3330 'uint16_t',
3331 [],
3332 is_const=True)
3333 ## ipv4-header.h (module 'internet'): uint16_t ns3::Ipv4Header::GetIdentification() const [member function]
3334 cls.add_method('GetIdentification',
3335 'uint16_t',
3336 [],
3337 is_const=True)
3338 ## ipv4-header.h (module 'internet'): ns3::TypeId ns3::Ipv4Header::GetInstanceTypeId() const [member function]
3339 cls.add_method('GetInstanceTypeId',
3340 'ns3::TypeId',
3341 [],
3342 is_const=True, is_virtual=True)
3343 ## ipv4-header.h (module 'internet'): uint16_t ns3::Ipv4Header::GetPayloadSize() const [member function]
3344 cls.add_method('GetPayloadSize',
3345 'uint16_t',
3346 [],
3347 is_const=True)
3348 ## ipv4-header.h (module 'internet'): uint8_t ns3::Ipv4Header::GetProtocol() const [member function]
3349 cls.add_method('GetProtocol',
3350 'uint8_t',
3351 [],
3352 is_const=True)
3353 ## ipv4-header.h (module 'internet'): uint32_t ns3::Ipv4Header::GetSerializedSize() const [member function]
3354 cls.add_method('GetSerializedSize',
3355 'uint32_t',
3356 [],
3357 is_const=True, is_virtual=True)
3358 ## ipv4-header.h (module 'internet'): ns3::Ipv4Address ns3::Ipv4Header::GetSource() const [member function]
3359 cls.add_method('GetSource',
3360 'ns3::Ipv4Address',
3361 [],
3362 is_const=True)
3363 ## ipv4-header.h (module 'internet'): uint8_t ns3::Ipv4Header::GetTos() const [member function]
3364 cls.add_method('GetTos',
3365 'uint8_t',
3366 [],
3367 is_const=True)
3368 ## ipv4-header.h (module 'internet'): uint8_t ns3::Ipv4Header::GetTtl() const [member function]
3369 cls.add_method('GetTtl',
3370 'uint8_t',
3371 [],
3372 is_const=True)
3373 ## ipv4-header.h (module 'internet'): static ns3::TypeId ns3::Ipv4Header::GetTypeId() [member function]
3374 cls.add_method('GetTypeId',
3375 'ns3::TypeId',
3376 [],
3377 is_static=True)
3378 ## ipv4-header.h (module 'internet'): bool ns3::Ipv4Header::IsChecksumOk() const [member function]
3379 cls.add_method('IsChecksumOk',
3380 'bool',
3381 [],
3382 is_const=True)
3383 ## ipv4-header.h (module 'internet'): bool ns3::Ipv4Header::IsDontFragment() const [member function]
3384 cls.add_method('IsDontFragment',
3385 'bool',
3386 [],
3387 is_const=True)
3388 ## ipv4-header.h (module 'internet'): bool ns3::Ipv4Header::IsLastFragment() const [member function]
3389 cls.add_method('IsLastFragment',
3390 'bool',
3391 [],
3392 is_const=True)
3393 ## ipv4-header.h (module 'internet'): void ns3::Ipv4Header::Print(std::ostream & os) const [member function]
3394 cls.add_method('Print',
3395 'void',
3396 [param('std::ostream &', 'os')],
3397 is_const=True, is_virtual=True)
3398 ## ipv4-header.h (module 'internet'): void ns3::Ipv4Header::Serialize(ns3::Buffer::Iterator start) const [member function]
3399 cls.add_method('Serialize',
3400 'void',
3401 [param('ns3::Buffer::Iterator', 'start')],
3402 is_const=True, is_virtual=True)
3403 ## ipv4-header.h (module 'internet'): void ns3::Ipv4Header::SetDestination(ns3::Ipv4Address destination) [member function]
3404 cls.add_method('SetDestination',
3405 'void',
3406 [param('ns3::Ipv4Address', 'destination')])
3407 ## ipv4-header.h (module 'internet'): void ns3::Ipv4Header::SetDontFragment() [member function]
3408 cls.add_method('SetDontFragment',
3409 'void',
3410 [])
3411 ## ipv4-header.h (module 'internet'): void ns3::Ipv4Header::SetDscp(ns3::Ipv4Header::DscpType dscp) [member function]
3412 cls.add_method('SetDscp',
3413 'void',
3414 [param('ns3::Ipv4Header::DscpType', 'dscp')])
3415 ## ipv4-header.h (module 'internet'): void ns3::Ipv4Header::SetEcn(ns3::Ipv4Header::EcnType ecn) [member function]
3416 cls.add_method('SetEcn',
3417 'void',
3418 [param('ns3::Ipv4Header::EcnType', 'ecn')])
3419 ## ipv4-header.h (module 'internet'): void ns3::Ipv4Header::SetFragmentOffset(uint16_t offsetBytes) [member function]
3420 cls.add_method('SetFragmentOffset',
3421 'void',
3422 [param('uint16_t', 'offsetBytes')])
3423 ## ipv4-header.h (module 'internet'): void ns3::Ipv4Header::SetIdentification(uint16_t identification) [member function]
3424 cls.add_method('SetIdentification',
3425 'void',
3426 [param('uint16_t', 'identification')])
3427 ## ipv4-header.h (module 'internet'): void ns3::Ipv4Header::SetLastFragment() [member function]
3428 cls.add_method('SetLastFragment',
3429 'void',
3430 [])
3431 ## ipv4-header.h (module 'internet'): void ns3::Ipv4Header::SetMayFragment() [member function]
3432 cls.add_method('SetMayFragment',
3433 'void',
3434 [])
3435 ## ipv4-header.h (module 'internet'): void ns3::Ipv4Header::SetMoreFragments() [member function]
3436 cls.add_method('SetMoreFragments',
3437 'void',
3438 [])
3439 ## ipv4-header.h (module 'internet'): void ns3::Ipv4Header::SetPayloadSize(uint16_t size) [member function]
3440 cls.add_method('SetPayloadSize',
3441 'void',
3442 [param('uint16_t', 'size')])
3443 ## ipv4-header.h (module 'internet'): void ns3::Ipv4Header::SetProtocol(uint8_t num) [member function]
3444 cls.add_method('SetProtocol',
3445 'void',
3446 [param('uint8_t', 'num')])
3447 ## ipv4-header.h (module 'internet'): void ns3::Ipv4Header::SetSource(ns3::Ipv4Address source) [member function]
3448 cls.add_method('SetSource',
3449 'void',
3450 [param('ns3::Ipv4Address', 'source')])
3451 ## ipv4-header.h (module 'internet'): void ns3::Ipv4Header::SetTos(uint8_t tos) [member function]
3452 cls.add_method('SetTos',
3453 'void',
3454 [param('uint8_t', 'tos')])
3455 ## ipv4-header.h (module 'internet'): void ns3::Ipv4Header::SetTtl(uint8_t ttl) [member function]
3456 cls.add_method('SetTtl',
3457 'void',
3458 [param('uint8_t', 'ttl')])
3459 return
3460
Alexander Afanasyev6f933532012-02-29 13:30:37 -08003461def register_Ns3Ipv6Header_methods(root_module, cls):
3462 ## ipv6-header.h (module 'internet'): ns3::Ipv6Header::Ipv6Header(ns3::Ipv6Header const & arg0) [copy constructor]
3463 cls.add_constructor([param('ns3::Ipv6Header const &', 'arg0')])
3464 ## ipv6-header.h (module 'internet'): ns3::Ipv6Header::Ipv6Header() [constructor]
3465 cls.add_constructor([])
3466 ## ipv6-header.h (module 'internet'): uint32_t ns3::Ipv6Header::Deserialize(ns3::Buffer::Iterator start) [member function]
3467 cls.add_method('Deserialize',
3468 'uint32_t',
3469 [param('ns3::Buffer::Iterator', 'start')],
3470 is_virtual=True)
3471 ## ipv6-header.h (module 'internet'): ns3::Ipv6Address ns3::Ipv6Header::GetDestinationAddress() const [member function]
3472 cls.add_method('GetDestinationAddress',
3473 'ns3::Ipv6Address',
3474 [],
3475 is_const=True)
3476 ## ipv6-header.h (module 'internet'): uint32_t ns3::Ipv6Header::GetFlowLabel() const [member function]
3477 cls.add_method('GetFlowLabel',
3478 'uint32_t',
3479 [],
3480 is_const=True)
3481 ## ipv6-header.h (module 'internet'): uint8_t ns3::Ipv6Header::GetHopLimit() const [member function]
3482 cls.add_method('GetHopLimit',
3483 'uint8_t',
3484 [],
3485 is_const=True)
3486 ## ipv6-header.h (module 'internet'): ns3::TypeId ns3::Ipv6Header::GetInstanceTypeId() const [member function]
3487 cls.add_method('GetInstanceTypeId',
3488 'ns3::TypeId',
3489 [],
3490 is_const=True, is_virtual=True)
3491 ## ipv6-header.h (module 'internet'): uint8_t ns3::Ipv6Header::GetNextHeader() const [member function]
3492 cls.add_method('GetNextHeader',
3493 'uint8_t',
3494 [],
3495 is_const=True)
3496 ## ipv6-header.h (module 'internet'): uint16_t ns3::Ipv6Header::GetPayloadLength() const [member function]
3497 cls.add_method('GetPayloadLength',
3498 'uint16_t',
3499 [],
3500 is_const=True)
3501 ## ipv6-header.h (module 'internet'): uint32_t ns3::Ipv6Header::GetSerializedSize() const [member function]
3502 cls.add_method('GetSerializedSize',
3503 'uint32_t',
3504 [],
3505 is_const=True, is_virtual=True)
3506 ## ipv6-header.h (module 'internet'): ns3::Ipv6Address ns3::Ipv6Header::GetSourceAddress() const [member function]
3507 cls.add_method('GetSourceAddress',
3508 'ns3::Ipv6Address',
3509 [],
3510 is_const=True)
3511 ## ipv6-header.h (module 'internet'): uint8_t ns3::Ipv6Header::GetTrafficClass() const [member function]
3512 cls.add_method('GetTrafficClass',
3513 'uint8_t',
3514 [],
3515 is_const=True)
3516 ## ipv6-header.h (module 'internet'): static ns3::TypeId ns3::Ipv6Header::GetTypeId() [member function]
3517 cls.add_method('GetTypeId',
3518 'ns3::TypeId',
3519 [],
3520 is_static=True)
3521 ## ipv6-header.h (module 'internet'): void ns3::Ipv6Header::Print(std::ostream & os) const [member function]
3522 cls.add_method('Print',
3523 'void',
3524 [param('std::ostream &', 'os')],
3525 is_const=True, is_virtual=True)
3526 ## ipv6-header.h (module 'internet'): void ns3::Ipv6Header::Serialize(ns3::Buffer::Iterator start) const [member function]
3527 cls.add_method('Serialize',
3528 'void',
3529 [param('ns3::Buffer::Iterator', 'start')],
3530 is_const=True, is_virtual=True)
3531 ## ipv6-header.h (module 'internet'): void ns3::Ipv6Header::SetDestinationAddress(ns3::Ipv6Address dst) [member function]
3532 cls.add_method('SetDestinationAddress',
3533 'void',
3534 [param('ns3::Ipv6Address', 'dst')])
3535 ## ipv6-header.h (module 'internet'): void ns3::Ipv6Header::SetFlowLabel(uint32_t flow) [member function]
3536 cls.add_method('SetFlowLabel',
3537 'void',
3538 [param('uint32_t', 'flow')])
3539 ## ipv6-header.h (module 'internet'): void ns3::Ipv6Header::SetHopLimit(uint8_t limit) [member function]
3540 cls.add_method('SetHopLimit',
3541 'void',
3542 [param('uint8_t', 'limit')])
3543 ## ipv6-header.h (module 'internet'): void ns3::Ipv6Header::SetNextHeader(uint8_t next) [member function]
3544 cls.add_method('SetNextHeader',
3545 'void',
3546 [param('uint8_t', 'next')])
3547 ## ipv6-header.h (module 'internet'): void ns3::Ipv6Header::SetPayloadLength(uint16_t len) [member function]
3548 cls.add_method('SetPayloadLength',
3549 'void',
3550 [param('uint16_t', 'len')])
3551 ## ipv6-header.h (module 'internet'): void ns3::Ipv6Header::SetSourceAddress(ns3::Ipv6Address src) [member function]
3552 cls.add_method('SetSourceAddress',
3553 'void',
3554 [param('ns3::Ipv6Address', 'src')])
3555 ## ipv6-header.h (module 'internet'): void ns3::Ipv6Header::SetTrafficClass(uint8_t traffic) [member function]
3556 cls.add_method('SetTrafficClass',
3557 'void',
3558 [param('uint8_t', 'traffic')])
3559 return
3560
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08003561def register_Ns3LogNormalVariable_methods(root_module, cls):
3562 ## random-variable.h (module 'core'): ns3::LogNormalVariable::LogNormalVariable(ns3::LogNormalVariable const & arg0) [copy constructor]
3563 cls.add_constructor([param('ns3::LogNormalVariable const &', 'arg0')])
3564 ## random-variable.h (module 'core'): ns3::LogNormalVariable::LogNormalVariable(double mu, double sigma) [constructor]
3565 cls.add_constructor([param('double', 'mu'), param('double', 'sigma')])
3566 return
3567
3568def register_Ns3NormalVariable_methods(root_module, cls):
3569 ## random-variable.h (module 'core'): ns3::NormalVariable::NormalVariable(ns3::NormalVariable const & arg0) [copy constructor]
3570 cls.add_constructor([param('ns3::NormalVariable const &', 'arg0')])
3571 ## random-variable.h (module 'core'): ns3::NormalVariable::NormalVariable() [constructor]
3572 cls.add_constructor([])
3573 ## random-variable.h (module 'core'): ns3::NormalVariable::NormalVariable(double m, double v) [constructor]
3574 cls.add_constructor([param('double', 'm'), param('double', 'v')])
3575 ## random-variable.h (module 'core'): ns3::NormalVariable::NormalVariable(double m, double v, double b) [constructor]
3576 cls.add_constructor([param('double', 'm'), param('double', 'v'), param('double', 'b')])
3577 return
3578
3579def register_Ns3Object_methods(root_module, cls):
3580 ## object.h (module 'core'): ns3::Object::Object() [constructor]
3581 cls.add_constructor([])
3582 ## object.h (module 'core'): void ns3::Object::AggregateObject(ns3::Ptr<ns3::Object> other) [member function]
3583 cls.add_method('AggregateObject',
3584 'void',
3585 [param('ns3::Ptr< ns3::Object >', 'other')])
3586 ## object.h (module 'core'): void ns3::Object::Dispose() [member function]
3587 cls.add_method('Dispose',
3588 'void',
3589 [])
3590 ## object.h (module 'core'): ns3::Object::AggregateIterator ns3::Object::GetAggregateIterator() const [member function]
3591 cls.add_method('GetAggregateIterator',
3592 'ns3::Object::AggregateIterator',
3593 [],
3594 is_const=True)
3595 ## object.h (module 'core'): ns3::TypeId ns3::Object::GetInstanceTypeId() const [member function]
3596 cls.add_method('GetInstanceTypeId',
3597 'ns3::TypeId',
3598 [],
3599 is_const=True, is_virtual=True)
3600 ## object.h (module 'core'): static ns3::TypeId ns3::Object::GetTypeId() [member function]
3601 cls.add_method('GetTypeId',
3602 'ns3::TypeId',
3603 [],
3604 is_static=True)
3605 ## object.h (module 'core'): void ns3::Object::Start() [member function]
3606 cls.add_method('Start',
3607 'void',
3608 [])
3609 ## object.h (module 'core'): ns3::Object::Object(ns3::Object const & o) [copy constructor]
3610 cls.add_constructor([param('ns3::Object const &', 'o')],
3611 visibility='protected')
3612 ## object.h (module 'core'): void ns3::Object::DoDispose() [member function]
3613 cls.add_method('DoDispose',
3614 'void',
3615 [],
3616 visibility='protected', is_virtual=True)
3617 ## object.h (module 'core'): void ns3::Object::DoStart() [member function]
3618 cls.add_method('DoStart',
3619 'void',
3620 [],
3621 visibility='protected', is_virtual=True)
3622 ## object.h (module 'core'): void ns3::Object::NotifyNewAggregate() [member function]
3623 cls.add_method('NotifyNewAggregate',
3624 'void',
3625 [],
3626 visibility='protected', is_virtual=True)
3627 return
3628
3629def register_Ns3ObjectAggregateIterator_methods(root_module, cls):
3630 ## object.h (module 'core'): ns3::Object::AggregateIterator::AggregateIterator(ns3::Object::AggregateIterator const & arg0) [copy constructor]
3631 cls.add_constructor([param('ns3::Object::AggregateIterator const &', 'arg0')])
3632 ## object.h (module 'core'): ns3::Object::AggregateIterator::AggregateIterator() [constructor]
3633 cls.add_constructor([])
3634 ## object.h (module 'core'): bool ns3::Object::AggregateIterator::HasNext() const [member function]
3635 cls.add_method('HasNext',
3636 'bool',
3637 [],
3638 is_const=True)
3639 ## object.h (module 'core'): ns3::Ptr<ns3::Object const> ns3::Object::AggregateIterator::Next() [member function]
3640 cls.add_method('Next',
3641 'ns3::Ptr< ns3::Object const >',
3642 [])
3643 return
3644
3645def register_Ns3ParetoVariable_methods(root_module, cls):
3646 ## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable(ns3::ParetoVariable const & arg0) [copy constructor]
3647 cls.add_constructor([param('ns3::ParetoVariable const &', 'arg0')])
3648 ## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable() [constructor]
3649 cls.add_constructor([])
3650 ## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable(double m) [constructor]
3651 cls.add_constructor([param('double', 'm')])
3652 ## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable(double m, double s) [constructor]
3653 cls.add_constructor([param('double', 'm'), param('double', 's')])
3654 ## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable(double m, double s, double b) [constructor]
3655 cls.add_constructor([param('double', 'm'), param('double', 's'), param('double', 'b')])
3656 ## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable(std::pair<double,double> params) [constructor]
3657 cls.add_constructor([param('std::pair< double, double >', 'params')])
3658 ## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable(std::pair<double,double> params, double b) [constructor]
3659 cls.add_constructor([param('std::pair< double, double >', 'params'), param('double', 'b')])
3660 return
3661
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08003662def register_Ns3SimpleRefCount__Ns3AttributeAccessor_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeAccessor__gt___methods(root_module, cls):
3663 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> >::SimpleRefCount() [constructor]
3664 cls.add_constructor([])
3665 ## 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]
3666 cls.add_constructor([param('ns3::SimpleRefCount< ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter< ns3::AttributeAccessor > > const &', 'o')])
3667 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> >::Cleanup() [member function]
3668 cls.add_method('Cleanup',
3669 'void',
3670 [],
3671 is_static=True)
3672 return
3673
3674def register_Ns3SimpleRefCount__Ns3AttributeChecker_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeChecker__gt___methods(root_module, cls):
3675 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter<ns3::AttributeChecker> >::SimpleRefCount() [constructor]
3676 cls.add_constructor([])
3677 ## 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]
3678 cls.add_constructor([param('ns3::SimpleRefCount< ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter< ns3::AttributeChecker > > const &', 'o')])
3679 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter<ns3::AttributeChecker> >::Cleanup() [member function]
3680 cls.add_method('Cleanup',
3681 'void',
3682 [],
3683 is_static=True)
3684 return
3685
3686def register_Ns3SimpleRefCount__Ns3AttributeValue_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeValue__gt___methods(root_module, cls):
3687 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter<ns3::AttributeValue> >::SimpleRefCount() [constructor]
3688 cls.add_constructor([])
3689 ## 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]
3690 cls.add_constructor([param('ns3::SimpleRefCount< ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter< ns3::AttributeValue > > const &', 'o')])
3691 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter<ns3::AttributeValue> >::Cleanup() [member function]
3692 cls.add_method('Cleanup',
3693 'void',
3694 [],
3695 is_static=True)
3696 return
3697
3698def register_Ns3SimpleRefCount__Ns3CallbackImplBase_Ns3Empty_Ns3DefaultDeleter__lt__ns3CallbackImplBase__gt___methods(root_module, cls):
3699 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> >::SimpleRefCount() [constructor]
3700 cls.add_constructor([])
3701 ## 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]
3702 cls.add_constructor([param('ns3::SimpleRefCount< ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter< ns3::CallbackImplBase > > const &', 'o')])
3703 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> >::Cleanup() [member function]
3704 cls.add_method('Cleanup',
3705 'void',
3706 [],
3707 is_static=True)
3708 return
3709
Alexander Afanasyevb3e4b852011-12-23 15:58:20 -08003710def register_Ns3SimpleRefCount__Ns3CcnxAppTracer_Ns3Empty_Ns3DefaultDeleter__lt__ns3CcnxAppTracer__gt___methods(root_module, cls):
3711 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CcnxAppTracer, ns3::empty, ns3::DefaultDeleter<ns3::CcnxAppTracer> >::SimpleRefCount() [constructor]
3712 cls.add_constructor([])
3713 ## 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]
3714 cls.add_constructor([param('ns3::SimpleRefCount< ns3::CcnxAppTracer, ns3::empty, ns3::DefaultDeleter< ns3::CcnxAppTracer > > const &', 'o')])
3715 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::CcnxAppTracer, ns3::empty, ns3::DefaultDeleter<ns3::CcnxAppTracer> >::Cleanup() [member function]
3716 cls.add_method('Cleanup',
3717 'void',
3718 [],
3719 is_static=True)
3720 return
3721
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08003722def register_Ns3SimpleRefCount__Ns3CcnxFaceContainer_Ns3Empty_Ns3DefaultDeleter__lt__ns3CcnxFaceContainer__gt___methods(root_module, cls):
3723 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CcnxFaceContainer, ns3::empty, ns3::DefaultDeleter<ns3::CcnxFaceContainer> >::SimpleRefCount() [constructor]
3724 cls.add_constructor([])
3725 ## 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]
3726 cls.add_constructor([param('ns3::SimpleRefCount< ns3::CcnxFaceContainer, ns3::empty, ns3::DefaultDeleter< ns3::CcnxFaceContainer > > const &', 'o')])
3727 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::CcnxFaceContainer, ns3::empty, ns3::DefaultDeleter<ns3::CcnxFaceContainer> >::Cleanup() [member function]
3728 cls.add_method('Cleanup',
3729 'void',
3730 [],
3731 is_static=True)
3732 return
3733
3734def register_Ns3SimpleRefCount__Ns3CcnxFibEntry_Ns3Empty_Ns3DefaultDeleter__lt__ns3CcnxFibEntry__gt___methods(root_module, cls):
3735 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CcnxFibEntry, ns3::empty, ns3::DefaultDeleter<ns3::CcnxFibEntry> >::SimpleRefCount() [constructor]
3736 cls.add_constructor([])
3737 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CcnxFibEntry, ns3::empty, ns3::DefaultDeleter<ns3::CcnxFibEntry> >::SimpleRefCount(ns3::SimpleRefCount<ns3::CcnxFibEntry, ns3::empty, ns3::DefaultDeleter<ns3::CcnxFibEntry> > const & o) [copy constructor]
3738 cls.add_constructor([param('ns3::SimpleRefCount< ns3::CcnxFibEntry, ns3::empty, ns3::DefaultDeleter< ns3::CcnxFibEntry > > const &', 'o')])
3739 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::CcnxFibEntry, ns3::empty, ns3::DefaultDeleter<ns3::CcnxFibEntry> >::Cleanup() [member function]
3740 cls.add_method('Cleanup',
3741 'void',
3742 [],
3743 is_static=True)
3744 return
3745
Alexander Afanasyevb3e4b852011-12-23 15:58:20 -08003746def register_Ns3SimpleRefCount__Ns3CcnxL3Tracer_Ns3Empty_Ns3DefaultDeleter__lt__ns3CcnxL3Tracer__gt___methods(root_module, cls):
3747 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CcnxL3Tracer, ns3::empty, ns3::DefaultDeleter<ns3::CcnxL3Tracer> >::SimpleRefCount() [constructor]
3748 cls.add_constructor([])
3749 ## 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]
3750 cls.add_constructor([param('ns3::SimpleRefCount< ns3::CcnxL3Tracer, ns3::empty, ns3::DefaultDeleter< ns3::CcnxL3Tracer > > const &', 'o')])
3751 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::CcnxL3Tracer, ns3::empty, ns3::DefaultDeleter<ns3::CcnxL3Tracer> >::Cleanup() [member function]
3752 cls.add_method('Cleanup',
3753 'void',
3754 [],
3755 is_static=True)
3756 return
3757
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08003758def register_Ns3SimpleRefCount__Ns3CcnxNameComponents_Ns3Empty_Ns3DefaultDeleter__lt__ns3CcnxNameComponents__gt___methods(root_module, cls):
3759 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CcnxNameComponents, ns3::empty, ns3::DefaultDeleter<ns3::CcnxNameComponents> >::SimpleRefCount() [constructor]
3760 cls.add_constructor([])
3761 ## 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]
3762 cls.add_constructor([param('ns3::SimpleRefCount< ns3::CcnxNameComponents, ns3::empty, ns3::DefaultDeleter< ns3::CcnxNameComponents > > const &', 'o')])
3763 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::CcnxNameComponents, ns3::empty, ns3::DefaultDeleter<ns3::CcnxNameComponents> >::Cleanup() [member function]
3764 cls.add_method('Cleanup',
3765 'void',
3766 [],
3767 is_static=True)
3768 return
3769
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08003770def register_Ns3SimpleRefCount__Ns3CcnxPathWeightTracer_Ns3Empty_Ns3DefaultDeleter__lt__ns3CcnxPathWeightTracer__gt___methods(root_module, cls):
3771 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CcnxPathWeightTracer, ns3::empty, ns3::DefaultDeleter<ns3::CcnxPathWeightTracer> >::SimpleRefCount() [constructor]
3772 cls.add_constructor([])
3773 ## 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]
3774 cls.add_constructor([param('ns3::SimpleRefCount< ns3::CcnxPathWeightTracer, ns3::empty, ns3::DefaultDeleter< ns3::CcnxPathWeightTracer > > const &', 'o')])
3775 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::CcnxPathWeightTracer, ns3::empty, ns3::DefaultDeleter<ns3::CcnxPathWeightTracer> >::Cleanup() [member function]
3776 cls.add_method('Cleanup',
3777 'void',
3778 [],
3779 is_static=True)
3780 return
3781
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08003782def register_Ns3SimpleRefCount__Ns3EventImpl_Ns3Empty_Ns3DefaultDeleter__lt__ns3EventImpl__gt___methods(root_module, cls):
3783 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::EventImpl, ns3::empty, ns3::DefaultDeleter<ns3::EventImpl> >::SimpleRefCount() [constructor]
3784 cls.add_constructor([])
3785 ## 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]
3786 cls.add_constructor([param('ns3::SimpleRefCount< ns3::EventImpl, ns3::empty, ns3::DefaultDeleter< ns3::EventImpl > > const &', 'o')])
3787 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::EventImpl, ns3::empty, ns3::DefaultDeleter<ns3::EventImpl> >::Cleanup() [member function]
3788 cls.add_method('Cleanup',
3789 'void',
3790 [],
3791 is_static=True)
3792 return
3793
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08003794def register_Ns3SimpleRefCount__Ns3Ipv4AppTracer_Ns3Empty_Ns3DefaultDeleter__lt__ns3Ipv4AppTracer__gt___methods(root_module, cls):
3795 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Ipv4AppTracer, ns3::empty, ns3::DefaultDeleter<ns3::Ipv4AppTracer> >::SimpleRefCount() [constructor]
3796 cls.add_constructor([])
3797 ## 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]
3798 cls.add_constructor([param('ns3::SimpleRefCount< ns3::Ipv4AppTracer, ns3::empty, ns3::DefaultDeleter< ns3::Ipv4AppTracer > > const &', 'o')])
3799 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::Ipv4AppTracer, ns3::empty, ns3::DefaultDeleter<ns3::Ipv4AppTracer> >::Cleanup() [member function]
3800 cls.add_method('Cleanup',
3801 'void',
3802 [],
3803 is_static=True)
3804 return
3805
Alexander Afanasyev03d92e42012-02-01 21:06:53 -08003806def register_Ns3SimpleRefCount__Ns3Ipv4L3Tracer_Ns3Empty_Ns3DefaultDeleter__lt__ns3Ipv4L3Tracer__gt___methods(root_module, cls):
3807 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Ipv4L3Tracer, ns3::empty, ns3::DefaultDeleter<ns3::Ipv4L3Tracer> >::SimpleRefCount() [constructor]
3808 cls.add_constructor([])
3809 ## 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]
3810 cls.add_constructor([param('ns3::SimpleRefCount< ns3::Ipv4L3Tracer, ns3::empty, ns3::DefaultDeleter< ns3::Ipv4L3Tracer > > const &', 'o')])
3811 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::Ipv4L3Tracer, ns3::empty, ns3::DefaultDeleter<ns3::Ipv4L3Tracer> >::Cleanup() [member function]
3812 cls.add_method('Cleanup',
3813 'void',
3814 [],
3815 is_static=True)
3816 return
3817
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08003818def register_Ns3SimpleRefCount__Ns3Ipv4MulticastRoute_Ns3Empty_Ns3DefaultDeleter__lt__ns3Ipv4MulticastRoute__gt___methods(root_module, cls):
3819 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Ipv4MulticastRoute, ns3::empty, ns3::DefaultDeleter<ns3::Ipv4MulticastRoute> >::SimpleRefCount() [constructor]
3820 cls.add_constructor([])
3821 ## 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]
3822 cls.add_constructor([param('ns3::SimpleRefCount< ns3::Ipv4MulticastRoute, ns3::empty, ns3::DefaultDeleter< ns3::Ipv4MulticastRoute > > const &', 'o')])
3823 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::Ipv4MulticastRoute, ns3::empty, ns3::DefaultDeleter<ns3::Ipv4MulticastRoute> >::Cleanup() [member function]
3824 cls.add_method('Cleanup',
3825 'void',
3826 [],
3827 is_static=True)
3828 return
3829
3830def register_Ns3SimpleRefCount__Ns3Ipv4Route_Ns3Empty_Ns3DefaultDeleter__lt__ns3Ipv4Route__gt___methods(root_module, cls):
3831 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Ipv4Route, ns3::empty, ns3::DefaultDeleter<ns3::Ipv4Route> >::SimpleRefCount() [constructor]
3832 cls.add_constructor([])
3833 ## 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]
3834 cls.add_constructor([param('ns3::SimpleRefCount< ns3::Ipv4Route, ns3::empty, ns3::DefaultDeleter< ns3::Ipv4Route > > const &', 'o')])
3835 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::Ipv4Route, ns3::empty, ns3::DefaultDeleter<ns3::Ipv4Route> >::Cleanup() [member function]
3836 cls.add_method('Cleanup',
3837 'void',
3838 [],
3839 is_static=True)
3840 return
3841
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08003842def register_Ns3SimpleRefCount__Ns3NixVector_Ns3Empty_Ns3DefaultDeleter__lt__ns3NixVector__gt___methods(root_module, cls):
3843 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::NixVector, ns3::empty, ns3::DefaultDeleter<ns3::NixVector> >::SimpleRefCount() [constructor]
3844 cls.add_constructor([])
3845 ## 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]
3846 cls.add_constructor([param('ns3::SimpleRefCount< ns3::NixVector, ns3::empty, ns3::DefaultDeleter< ns3::NixVector > > const &', 'o')])
3847 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::NixVector, ns3::empty, ns3::DefaultDeleter<ns3::NixVector> >::Cleanup() [member function]
3848 cls.add_method('Cleanup',
3849 'void',
3850 [],
3851 is_static=True)
3852 return
3853
Alexander Afanasyev03d92e42012-02-01 21:06:53 -08003854def register_Ns3SimpleRefCount__Ns3OutputStreamWrapper_Ns3Empty_Ns3DefaultDeleter__lt__ns3OutputStreamWrapper__gt___methods(root_module, cls):
3855 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::OutputStreamWrapper, ns3::empty, ns3::DefaultDeleter<ns3::OutputStreamWrapper> >::SimpleRefCount() [constructor]
3856 cls.add_constructor([])
3857 ## 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]
3858 cls.add_constructor([param('ns3::SimpleRefCount< ns3::OutputStreamWrapper, ns3::empty, ns3::DefaultDeleter< ns3::OutputStreamWrapper > > const &', 'o')])
3859 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::OutputStreamWrapper, ns3::empty, ns3::DefaultDeleter<ns3::OutputStreamWrapper> >::Cleanup() [member function]
3860 cls.add_method('Cleanup',
3861 'void',
3862 [],
3863 is_static=True)
3864 return
3865
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08003866def register_Ns3SimpleRefCount__Ns3Packet_Ns3Empty_Ns3DefaultDeleter__lt__ns3Packet__gt___methods(root_module, cls):
3867 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Packet, ns3::empty, ns3::DefaultDeleter<ns3::Packet> >::SimpleRefCount() [constructor]
3868 cls.add_constructor([])
3869 ## 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]
3870 cls.add_constructor([param('ns3::SimpleRefCount< ns3::Packet, ns3::empty, ns3::DefaultDeleter< ns3::Packet > > const &', 'o')])
3871 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::Packet, ns3::empty, ns3::DefaultDeleter<ns3::Packet> >::Cleanup() [member function]
3872 cls.add_method('Cleanup',
3873 'void',
3874 [],
3875 is_static=True)
3876 return
3877
Alexander Afanasyevae3b7c32011-12-13 13:20:06 -08003878def register_Ns3SimpleRefCount__Ns3TopologyReader_Ns3Empty_Ns3DefaultDeleter__lt__ns3TopologyReader__gt___methods(root_module, cls):
3879 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::TopologyReader, ns3::empty, ns3::DefaultDeleter<ns3::TopologyReader> >::SimpleRefCount() [constructor]
3880 cls.add_constructor([])
3881 ## 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]
3882 cls.add_constructor([param('ns3::SimpleRefCount< ns3::TopologyReader, ns3::empty, ns3::DefaultDeleter< ns3::TopologyReader > > const &', 'o')])
3883 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::TopologyReader, ns3::empty, ns3::DefaultDeleter<ns3::TopologyReader> >::Cleanup() [member function]
3884 cls.add_method('Cleanup',
3885 'void',
3886 [],
3887 is_static=True)
3888 return
3889
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08003890def register_Ns3SimpleRefCount__Ns3TraceSourceAccessor_Ns3Empty_Ns3DefaultDeleter__lt__ns3TraceSourceAccessor__gt___methods(root_module, cls):
3891 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter<ns3::TraceSourceAccessor> >::SimpleRefCount() [constructor]
3892 cls.add_constructor([])
3893 ## 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]
3894 cls.add_constructor([param('ns3::SimpleRefCount< ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter< ns3::TraceSourceAccessor > > const &', 'o')])
3895 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter<ns3::TraceSourceAccessor> >::Cleanup() [member function]
3896 cls.add_method('Cleanup',
3897 'void',
3898 [],
3899 is_static=True)
3900 return
3901
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08003902def register_Ns3SimpleRefCount__Ns3WindowTracer_Ns3Empty_Ns3DefaultDeleter__lt__ns3WindowTracer__gt___methods(root_module, cls):
3903 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::WindowTracer, ns3::empty, ns3::DefaultDeleter<ns3::WindowTracer> >::SimpleRefCount() [constructor]
3904 cls.add_constructor([])
3905 ## 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]
3906 cls.add_constructor([param('ns3::SimpleRefCount< ns3::WindowTracer, ns3::empty, ns3::DefaultDeleter< ns3::WindowTracer > > const &', 'o')])
3907 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::WindowTracer, ns3::empty, ns3::DefaultDeleter<ns3::WindowTracer> >::Cleanup() [member function]
3908 cls.add_method('Cleanup',
3909 'void',
3910 [],
3911 is_static=True)
3912 return
3913
3914def register_Ns3Socket_methods(root_module, cls):
3915 ## socket.h (module 'network'): ns3::Socket::Socket(ns3::Socket const & arg0) [copy constructor]
3916 cls.add_constructor([param('ns3::Socket const &', 'arg0')])
3917 ## socket.h (module 'network'): ns3::Socket::Socket() [constructor]
3918 cls.add_constructor([])
3919 ## socket.h (module 'network'): int ns3::Socket::Bind(ns3::Address const & address) [member function]
3920 cls.add_method('Bind',
3921 'int',
3922 [param('ns3::Address const &', 'address')],
3923 is_pure_virtual=True, is_virtual=True)
3924 ## socket.h (module 'network'): int ns3::Socket::Bind() [member function]
3925 cls.add_method('Bind',
3926 'int',
3927 [],
3928 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyev6f933532012-02-29 13:30:37 -08003929 ## socket.h (module 'network'): int ns3::Socket::Bind6() [member function]
3930 cls.add_method('Bind6',
3931 'int',
3932 [],
3933 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08003934 ## socket.h (module 'network'): void ns3::Socket::BindToNetDevice(ns3::Ptr<ns3::NetDevice> netdevice) [member function]
3935 cls.add_method('BindToNetDevice',
3936 'void',
3937 [param('ns3::Ptr< ns3::NetDevice >', 'netdevice')],
3938 is_virtual=True)
3939 ## socket.h (module 'network'): int ns3::Socket::Close() [member function]
3940 cls.add_method('Close',
3941 'int',
3942 [],
3943 is_pure_virtual=True, is_virtual=True)
3944 ## socket.h (module 'network'): int ns3::Socket::Connect(ns3::Address const & address) [member function]
3945 cls.add_method('Connect',
3946 'int',
3947 [param('ns3::Address const &', 'address')],
3948 is_pure_virtual=True, is_virtual=True)
3949 ## socket.h (module 'network'): static ns3::Ptr<ns3::Socket> ns3::Socket::CreateSocket(ns3::Ptr<ns3::Node> node, ns3::TypeId tid) [member function]
3950 cls.add_method('CreateSocket',
3951 'ns3::Ptr< ns3::Socket >',
3952 [param('ns3::Ptr< ns3::Node >', 'node'), param('ns3::TypeId', 'tid')],
3953 is_static=True)
3954 ## socket.h (module 'network'): bool ns3::Socket::GetAllowBroadcast() const [member function]
3955 cls.add_method('GetAllowBroadcast',
3956 'bool',
3957 [],
3958 is_pure_virtual=True, is_const=True, is_virtual=True)
3959 ## socket.h (module 'network'): ns3::Ptr<ns3::NetDevice> ns3::Socket::GetBoundNetDevice() [member function]
3960 cls.add_method('GetBoundNetDevice',
3961 'ns3::Ptr< ns3::NetDevice >',
3962 [])
3963 ## socket.h (module 'network'): ns3::Socket::SocketErrno ns3::Socket::GetErrno() const [member function]
3964 cls.add_method('GetErrno',
3965 'ns3::Socket::SocketErrno',
3966 [],
3967 is_pure_virtual=True, is_const=True, is_virtual=True)
3968 ## socket.h (module 'network'): ns3::Ptr<ns3::Node> ns3::Socket::GetNode() const [member function]
3969 cls.add_method('GetNode',
3970 'ns3::Ptr< ns3::Node >',
3971 [],
3972 is_pure_virtual=True, is_const=True, is_virtual=True)
3973 ## socket.h (module 'network'): uint32_t ns3::Socket::GetRxAvailable() const [member function]
3974 cls.add_method('GetRxAvailable',
3975 'uint32_t',
3976 [],
3977 is_pure_virtual=True, is_const=True, is_virtual=True)
3978 ## socket.h (module 'network'): int ns3::Socket::GetSockName(ns3::Address & address) const [member function]
3979 cls.add_method('GetSockName',
3980 'int',
3981 [param('ns3::Address &', 'address')],
3982 is_pure_virtual=True, is_const=True, is_virtual=True)
3983 ## socket.h (module 'network'): ns3::Socket::SocketType ns3::Socket::GetSocketType() const [member function]
3984 cls.add_method('GetSocketType',
3985 'ns3::Socket::SocketType',
3986 [],
3987 is_pure_virtual=True, is_const=True, is_virtual=True)
3988 ## socket.h (module 'network'): uint32_t ns3::Socket::GetTxAvailable() const [member function]
3989 cls.add_method('GetTxAvailable',
3990 'uint32_t',
3991 [],
3992 is_pure_virtual=True, is_const=True, is_virtual=True)
3993 ## socket.h (module 'network'): bool ns3::Socket::IsRecvPktInfo() const [member function]
3994 cls.add_method('IsRecvPktInfo',
3995 'bool',
3996 [],
3997 is_const=True)
3998 ## socket.h (module 'network'): int ns3::Socket::Listen() [member function]
3999 cls.add_method('Listen',
4000 'int',
4001 [],
4002 is_pure_virtual=True, is_virtual=True)
4003 ## socket.h (module 'network'): ns3::Ptr<ns3::Packet> ns3::Socket::Recv(uint32_t maxSize, uint32_t flags) [member function]
4004 cls.add_method('Recv',
4005 'ns3::Ptr< ns3::Packet >',
4006 [param('uint32_t', 'maxSize'), param('uint32_t', 'flags')],
4007 is_pure_virtual=True, is_virtual=True)
4008 ## socket.h (module 'network'): ns3::Ptr<ns3::Packet> ns3::Socket::Recv() [member function]
4009 cls.add_method('Recv',
4010 'ns3::Ptr< ns3::Packet >',
4011 [])
4012 ## socket.h (module 'network'): int ns3::Socket::Recv(uint8_t * buf, uint32_t size, uint32_t flags) [member function]
4013 cls.add_method('Recv',
4014 'int',
4015 [param('uint8_t *', 'buf'), param('uint32_t', 'size'), param('uint32_t', 'flags')])
4016 ## socket.h (module 'network'): ns3::Ptr<ns3::Packet> ns3::Socket::RecvFrom(uint32_t maxSize, uint32_t flags, ns3::Address & fromAddress) [member function]
4017 cls.add_method('RecvFrom',
4018 'ns3::Ptr< ns3::Packet >',
4019 [param('uint32_t', 'maxSize'), param('uint32_t', 'flags'), param('ns3::Address &', 'fromAddress')],
4020 is_pure_virtual=True, is_virtual=True)
4021 ## socket.h (module 'network'): ns3::Ptr<ns3::Packet> ns3::Socket::RecvFrom(ns3::Address & fromAddress) [member function]
4022 cls.add_method('RecvFrom',
4023 'ns3::Ptr< ns3::Packet >',
4024 [param('ns3::Address &', 'fromAddress')])
4025 ## socket.h (module 'network'): int ns3::Socket::RecvFrom(uint8_t * buf, uint32_t size, uint32_t flags, ns3::Address & fromAddress) [member function]
4026 cls.add_method('RecvFrom',
4027 'int',
4028 [param('uint8_t *', 'buf'), param('uint32_t', 'size'), param('uint32_t', 'flags'), param('ns3::Address &', 'fromAddress')])
4029 ## socket.h (module 'network'): int ns3::Socket::Send(ns3::Ptr<ns3::Packet> p, uint32_t flags) [member function]
4030 cls.add_method('Send',
4031 'int',
4032 [param('ns3::Ptr< ns3::Packet >', 'p'), param('uint32_t', 'flags')],
4033 is_pure_virtual=True, is_virtual=True)
4034 ## socket.h (module 'network'): int ns3::Socket::Send(ns3::Ptr<ns3::Packet> p) [member function]
4035 cls.add_method('Send',
4036 'int',
4037 [param('ns3::Ptr< ns3::Packet >', 'p')])
4038 ## socket.h (module 'network'): int ns3::Socket::Send(uint8_t const * buf, uint32_t size, uint32_t flags) [member function]
4039 cls.add_method('Send',
4040 'int',
4041 [param('uint8_t const *', 'buf'), param('uint32_t', 'size'), param('uint32_t', 'flags')])
4042 ## socket.h (module 'network'): int ns3::Socket::SendTo(ns3::Ptr<ns3::Packet> p, uint32_t flags, ns3::Address const & toAddress) [member function]
4043 cls.add_method('SendTo',
4044 'int',
4045 [param('ns3::Ptr< ns3::Packet >', 'p'), param('uint32_t', 'flags'), param('ns3::Address const &', 'toAddress')],
4046 is_pure_virtual=True, is_virtual=True)
4047 ## socket.h (module 'network'): int ns3::Socket::SendTo(uint8_t const * buf, uint32_t size, uint32_t flags, ns3::Address const & address) [member function]
4048 cls.add_method('SendTo',
4049 'int',
4050 [param('uint8_t const *', 'buf'), param('uint32_t', 'size'), param('uint32_t', 'flags'), param('ns3::Address const &', 'address')])
4051 ## 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]
4052 cls.add_method('SetAcceptCallback',
4053 'void',
4054 [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')])
4055 ## socket.h (module 'network'): bool ns3::Socket::SetAllowBroadcast(bool allowBroadcast) [member function]
4056 cls.add_method('SetAllowBroadcast',
4057 'bool',
4058 [param('bool', 'allowBroadcast')],
4059 is_pure_virtual=True, is_virtual=True)
4060 ## 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]
4061 cls.add_method('SetCloseCallbacks',
4062 'void',
4063 [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')])
4064 ## 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]
4065 cls.add_method('SetConnectCallback',
4066 'void',
4067 [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')])
4068 ## 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]
4069 cls.add_method('SetDataSentCallback',
4070 'void',
4071 [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')])
4072 ## 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]
4073 cls.add_method('SetRecvCallback',
4074 'void',
4075 [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')])
4076 ## socket.h (module 'network'): void ns3::Socket::SetRecvPktInfo(bool flag) [member function]
4077 cls.add_method('SetRecvPktInfo',
4078 'void',
4079 [param('bool', 'flag')])
4080 ## 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]
4081 cls.add_method('SetSendCallback',
4082 'void',
4083 [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')])
4084 ## socket.h (module 'network'): int ns3::Socket::ShutdownRecv() [member function]
4085 cls.add_method('ShutdownRecv',
4086 'int',
4087 [],
4088 is_pure_virtual=True, is_virtual=True)
4089 ## socket.h (module 'network'): int ns3::Socket::ShutdownSend() [member function]
4090 cls.add_method('ShutdownSend',
4091 'int',
4092 [],
4093 is_pure_virtual=True, is_virtual=True)
4094 ## socket.h (module 'network'): void ns3::Socket::DoDispose() [member function]
4095 cls.add_method('DoDispose',
4096 'void',
4097 [],
4098 visibility='protected', is_virtual=True)
4099 ## socket.h (module 'network'): void ns3::Socket::NotifyConnectionFailed() [member function]
4100 cls.add_method('NotifyConnectionFailed',
4101 'void',
4102 [],
4103 visibility='protected')
4104 ## socket.h (module 'network'): bool ns3::Socket::NotifyConnectionRequest(ns3::Address const & from) [member function]
4105 cls.add_method('NotifyConnectionRequest',
4106 'bool',
4107 [param('ns3::Address const &', 'from')],
4108 visibility='protected')
4109 ## socket.h (module 'network'): void ns3::Socket::NotifyConnectionSucceeded() [member function]
4110 cls.add_method('NotifyConnectionSucceeded',
4111 'void',
4112 [],
4113 visibility='protected')
4114 ## socket.h (module 'network'): void ns3::Socket::NotifyDataRecv() [member function]
4115 cls.add_method('NotifyDataRecv',
4116 'void',
4117 [],
4118 visibility='protected')
4119 ## socket.h (module 'network'): void ns3::Socket::NotifyDataSent(uint32_t size) [member function]
4120 cls.add_method('NotifyDataSent',
4121 'void',
4122 [param('uint32_t', 'size')],
4123 visibility='protected')
4124 ## socket.h (module 'network'): void ns3::Socket::NotifyErrorClose() [member function]
4125 cls.add_method('NotifyErrorClose',
4126 'void',
4127 [],
4128 visibility='protected')
4129 ## socket.h (module 'network'): void ns3::Socket::NotifyNewConnectionCreated(ns3::Ptr<ns3::Socket> socket, ns3::Address const & from) [member function]
4130 cls.add_method('NotifyNewConnectionCreated',
4131 'void',
4132 [param('ns3::Ptr< ns3::Socket >', 'socket'), param('ns3::Address const &', 'from')],
4133 visibility='protected')
4134 ## socket.h (module 'network'): void ns3::Socket::NotifyNormalClose() [member function]
4135 cls.add_method('NotifyNormalClose',
4136 'void',
4137 [],
4138 visibility='protected')
4139 ## socket.h (module 'network'): void ns3::Socket::NotifySend(uint32_t spaceAvailable) [member function]
4140 cls.add_method('NotifySend',
4141 'void',
4142 [param('uint32_t', 'spaceAvailable')],
4143 visibility='protected')
4144 return
4145
4146def register_Ns3Tag_methods(root_module, cls):
4147 cls.add_output_stream_operator()
4148 ## tag.h (module 'network'): ns3::Tag::Tag() [constructor]
4149 cls.add_constructor([])
4150 ## tag.h (module 'network'): ns3::Tag::Tag(ns3::Tag const & arg0) [copy constructor]
4151 cls.add_constructor([param('ns3::Tag const &', 'arg0')])
4152 ## tag.h (module 'network'): void ns3::Tag::Deserialize(ns3::TagBuffer i) [member function]
4153 cls.add_method('Deserialize',
4154 'void',
4155 [param('ns3::TagBuffer', 'i')],
4156 is_pure_virtual=True, is_virtual=True)
4157 ## tag.h (module 'network'): uint32_t ns3::Tag::GetSerializedSize() const [member function]
4158 cls.add_method('GetSerializedSize',
4159 'uint32_t',
4160 [],
4161 is_pure_virtual=True, is_const=True, is_virtual=True)
4162 ## tag.h (module 'network'): static ns3::TypeId ns3::Tag::GetTypeId() [member function]
4163 cls.add_method('GetTypeId',
4164 'ns3::TypeId',
4165 [],
4166 is_static=True)
4167 ## tag.h (module 'network'): void ns3::Tag::Print(std::ostream & os) const [member function]
4168 cls.add_method('Print',
4169 'void',
4170 [param('std::ostream &', 'os')],
4171 is_pure_virtual=True, is_const=True, is_virtual=True)
4172 ## tag.h (module 'network'): void ns3::Tag::Serialize(ns3::TagBuffer i) const [member function]
4173 cls.add_method('Serialize',
4174 'void',
4175 [param('ns3::TagBuffer', 'i')],
4176 is_pure_virtual=True, is_const=True, is_virtual=True)
4177 return
4178
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004179def register_Ns3Time_methods(root_module, cls):
4180 cls.add_binary_comparison_operator('!=')
4181 cls.add_inplace_numeric_operator('+=', param('ns3::Time const &', 'right'))
4182 cls.add_inplace_numeric_operator('-=', param('ns3::Time const &', 'right'))
4183 cls.add_output_stream_operator()
Alexander Afanasyev4975f732011-12-20 17:52:19 -08004184 cls.add_binary_comparison_operator('<=')
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004185 cls.add_binary_comparison_operator('==')
4186 cls.add_binary_comparison_operator('>=')
4187 cls.add_binary_numeric_operator('+', root_module['ns3::Time'], root_module['ns3::Time'], param('ns3::Time const &', 'right'))
4188 cls.add_binary_numeric_operator('-', root_module['ns3::Time'], root_module['ns3::Time'], param('ns3::Time const &', 'right'))
4189 cls.add_binary_comparison_operator('<')
4190 cls.add_binary_comparison_operator('>')
4191 ## nstime.h (module 'core'): ns3::Time::Time() [constructor]
4192 cls.add_constructor([])
4193 ## nstime.h (module 'core'): ns3::Time::Time(ns3::Time const & o) [copy constructor]
4194 cls.add_constructor([param('ns3::Time const &', 'o')])
4195 ## nstime.h (module 'core'): ns3::Time::Time(double v) [constructor]
4196 cls.add_constructor([param('double', 'v')])
4197 ## nstime.h (module 'core'): ns3::Time::Time(int v) [constructor]
4198 cls.add_constructor([param('int', 'v')])
4199 ## nstime.h (module 'core'): ns3::Time::Time(long int v) [constructor]
4200 cls.add_constructor([param('long int', 'v')])
4201 ## nstime.h (module 'core'): ns3::Time::Time(long long int v) [constructor]
4202 cls.add_constructor([param('long long int', 'v')])
4203 ## nstime.h (module 'core'): ns3::Time::Time(unsigned int v) [constructor]
4204 cls.add_constructor([param('unsigned int', 'v')])
4205 ## nstime.h (module 'core'): ns3::Time::Time(long unsigned int v) [constructor]
4206 cls.add_constructor([param('long unsigned int', 'v')])
4207 ## nstime.h (module 'core'): ns3::Time::Time(long long unsigned int v) [constructor]
4208 cls.add_constructor([param('long long unsigned int', 'v')])
4209 ## nstime.h (module 'core'): ns3::Time::Time(std::string const & s) [constructor]
4210 cls.add_constructor([param('std::string const &', 's')])
4211 ## nstime.h (module 'core'): ns3::Time::Time(ns3::int64x64_t const & value) [constructor]
4212 cls.add_constructor([param('ns3::int64x64_t const &', 'value')])
4213 ## nstime.h (module 'core'): int ns3::Time::Compare(ns3::Time const & o) const [member function]
4214 cls.add_method('Compare',
4215 'int',
4216 [param('ns3::Time const &', 'o')],
4217 is_const=True)
4218 ## nstime.h (module 'core'): static ns3::Time ns3::Time::From(ns3::int64x64_t const & from, ns3::Time::Unit timeUnit) [member function]
4219 cls.add_method('From',
4220 'ns3::Time',
4221 [param('ns3::int64x64_t const &', 'from'), param('ns3::Time::Unit', 'timeUnit')],
4222 is_static=True)
4223 ## nstime.h (module 'core'): static ns3::Time ns3::Time::From(ns3::int64x64_t const & value) [member function]
4224 cls.add_method('From',
4225 'ns3::Time',
4226 [param('ns3::int64x64_t const &', 'value')],
4227 is_static=True)
4228 ## nstime.h (module 'core'): static ns3::Time ns3::Time::FromDouble(double value, ns3::Time::Unit timeUnit) [member function]
4229 cls.add_method('FromDouble',
4230 'ns3::Time',
4231 [param('double', 'value'), param('ns3::Time::Unit', 'timeUnit')],
4232 is_static=True)
4233 ## nstime.h (module 'core'): static ns3::Time ns3::Time::FromInteger(uint64_t value, ns3::Time::Unit timeUnit) [member function]
4234 cls.add_method('FromInteger',
4235 'ns3::Time',
4236 [param('uint64_t', 'value'), param('ns3::Time::Unit', 'timeUnit')],
4237 is_static=True)
4238 ## nstime.h (module 'core'): double ns3::Time::GetDouble() const [member function]
4239 cls.add_method('GetDouble',
4240 'double',
4241 [],
4242 is_const=True)
4243 ## nstime.h (module 'core'): int64_t ns3::Time::GetFemtoSeconds() const [member function]
4244 cls.add_method('GetFemtoSeconds',
4245 'int64_t',
4246 [],
4247 is_const=True)
4248 ## nstime.h (module 'core'): int64_t ns3::Time::GetInteger() const [member function]
4249 cls.add_method('GetInteger',
4250 'int64_t',
4251 [],
4252 is_const=True)
4253 ## nstime.h (module 'core'): int64_t ns3::Time::GetMicroSeconds() const [member function]
4254 cls.add_method('GetMicroSeconds',
4255 'int64_t',
4256 [],
4257 is_const=True)
4258 ## nstime.h (module 'core'): int64_t ns3::Time::GetMilliSeconds() const [member function]
4259 cls.add_method('GetMilliSeconds',
4260 'int64_t',
4261 [],
4262 is_const=True)
4263 ## nstime.h (module 'core'): int64_t ns3::Time::GetNanoSeconds() const [member function]
4264 cls.add_method('GetNanoSeconds',
4265 'int64_t',
4266 [],
4267 is_const=True)
4268 ## nstime.h (module 'core'): int64_t ns3::Time::GetPicoSeconds() const [member function]
4269 cls.add_method('GetPicoSeconds',
4270 'int64_t',
4271 [],
4272 is_const=True)
4273 ## nstime.h (module 'core'): static ns3::Time::Unit ns3::Time::GetResolution() [member function]
4274 cls.add_method('GetResolution',
4275 'ns3::Time::Unit',
4276 [],
4277 is_static=True)
4278 ## nstime.h (module 'core'): double ns3::Time::GetSeconds() const [member function]
4279 cls.add_method('GetSeconds',
4280 'double',
4281 [],
4282 is_const=True)
4283 ## nstime.h (module 'core'): int64_t ns3::Time::GetTimeStep() const [member function]
4284 cls.add_method('GetTimeStep',
4285 'int64_t',
4286 [],
4287 is_const=True)
4288 ## nstime.h (module 'core'): bool ns3::Time::IsNegative() const [member function]
4289 cls.add_method('IsNegative',
4290 'bool',
4291 [],
4292 is_const=True)
4293 ## nstime.h (module 'core'): bool ns3::Time::IsPositive() const [member function]
4294 cls.add_method('IsPositive',
4295 'bool',
4296 [],
4297 is_const=True)
4298 ## nstime.h (module 'core'): bool ns3::Time::IsStrictlyNegative() const [member function]
4299 cls.add_method('IsStrictlyNegative',
4300 'bool',
4301 [],
4302 is_const=True)
4303 ## nstime.h (module 'core'): bool ns3::Time::IsStrictlyPositive() const [member function]
4304 cls.add_method('IsStrictlyPositive',
4305 'bool',
4306 [],
4307 is_const=True)
4308 ## nstime.h (module 'core'): bool ns3::Time::IsZero() const [member function]
4309 cls.add_method('IsZero',
4310 'bool',
4311 [],
4312 is_const=True)
4313 ## nstime.h (module 'core'): static void ns3::Time::SetResolution(ns3::Time::Unit resolution) [member function]
4314 cls.add_method('SetResolution',
4315 'void',
4316 [param('ns3::Time::Unit', 'resolution')],
4317 is_static=True)
4318 ## nstime.h (module 'core'): ns3::int64x64_t ns3::Time::To(ns3::Time::Unit timeUnit) const [member function]
4319 cls.add_method('To',
4320 'ns3::int64x64_t',
4321 [param('ns3::Time::Unit', 'timeUnit')],
4322 is_const=True)
4323 ## nstime.h (module 'core'): double ns3::Time::ToDouble(ns3::Time::Unit timeUnit) const [member function]
4324 cls.add_method('ToDouble',
4325 'double',
4326 [param('ns3::Time::Unit', 'timeUnit')],
4327 is_const=True)
4328 ## nstime.h (module 'core'): int64_t ns3::Time::ToInteger(ns3::Time::Unit timeUnit) const [member function]
4329 cls.add_method('ToInteger',
4330 'int64_t',
4331 [param('ns3::Time::Unit', 'timeUnit')],
4332 is_const=True)
4333 return
4334
4335def register_Ns3TopologyReader_methods(root_module, cls):
4336 ## topology-reader.h (module 'topology-read'): ns3::TopologyReader::TopologyReader() [constructor]
4337 cls.add_constructor([])
4338 ## topology-reader.h (module 'topology-read'): void ns3::TopologyReader::AddLink(ns3::TopologyReader::Link link) [member function]
4339 cls.add_method('AddLink',
4340 'void',
4341 [param('ns3::TopologyReader::Link', 'link')])
4342 ## topology-reader.h (module 'topology-read'): std::string ns3::TopologyReader::GetFileName() const [member function]
4343 cls.add_method('GetFileName',
4344 'std::string',
4345 [],
4346 is_const=True)
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004347 ## topology-reader.h (module 'topology-read'): std::_List_const_iterator<ns3::TopologyReader::Link> ns3::TopologyReader::LinksBegin() const [member function]
4348 cls.add_method('LinksBegin',
4349 'std::_List_const_iterator< ns3::TopologyReader::Link >',
4350 [],
4351 is_const=True)
4352 ## topology-reader.h (module 'topology-read'): bool ns3::TopologyReader::LinksEmpty() const [member function]
4353 cls.add_method('LinksEmpty',
4354 'bool',
4355 [],
4356 is_const=True)
4357 ## topology-reader.h (module 'topology-read'): std::_List_const_iterator<ns3::TopologyReader::Link> ns3::TopologyReader::LinksEnd() const [member function]
4358 cls.add_method('LinksEnd',
4359 'std::_List_const_iterator< ns3::TopologyReader::Link >',
4360 [],
4361 is_const=True)
4362 ## topology-reader.h (module 'topology-read'): int ns3::TopologyReader::LinksSize() const [member function]
4363 cls.add_method('LinksSize',
4364 'int',
4365 [],
4366 is_const=True)
4367 ## topology-reader.h (module 'topology-read'): ns3::NodeContainer ns3::TopologyReader::Read() [member function]
4368 cls.add_method('Read',
4369 'ns3::NodeContainer',
4370 [],
4371 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -08004372 ## topology-reader.h (module 'topology-read'): void ns3::TopologyReader::SetFileName(std::string const & fileName) [member function]
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004373 cls.add_method('SetFileName',
4374 'void',
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -08004375 [param('std::string const &', 'fileName')])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004376 return
4377
4378def register_Ns3TopologyReaderLink_methods(root_module, cls):
4379 ## topology-reader.h (module 'topology-read'): ns3::TopologyReader::Link::Link(ns3::TopologyReader::Link const & arg0) [copy constructor]
4380 cls.add_constructor([param('ns3::TopologyReader::Link const &', 'arg0')])
Alexander Afanasyev6bff0df2012-01-19 17:51:52 -08004381 ## topology-reader.h (module 'topology-read'): ns3::TopologyReader::Link::Link() [constructor]
4382 cls.add_constructor([])
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -08004383 ## 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]
4384 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 Afanasyevaa032ea2011-12-13 12:38:32 -08004385 ## 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]
4386 cls.add_method('AttributesBegin',
4387 '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 > > > >',
4388 [])
4389 ## 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]
4390 cls.add_method('AttributesEnd',
4391 '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 > > > >',
4392 [])
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -08004393 ## topology-reader.h (module 'topology-read'): std::string ns3::TopologyReader::Link::GetAttribute(std::string const & name) const [member function]
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004394 cls.add_method('GetAttribute',
4395 'std::string',
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -08004396 [param('std::string const &', 'name')],
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004397 is_const=True)
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -08004398 ## topology-reader.h (module 'topology-read'): bool ns3::TopologyReader::Link::GetAttributeFailSafe(std::string const & name, std::string & value) const [member function]
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004399 cls.add_method('GetAttributeFailSafe',
4400 'bool',
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -08004401 [param('std::string const &', 'name'), param('std::string &', 'value')],
4402 is_const=True)
4403 ## topology-reader.h (module 'topology-read'): ns3::Ptr<ns3::NetDevice> ns3::TopologyReader::Link::GetFromNetDevice() const [member function]
4404 cls.add_method('GetFromNetDevice',
4405 'ns3::Ptr< ns3::NetDevice >',
4406 [],
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004407 is_const=True)
4408 ## topology-reader.h (module 'topology-read'): ns3::Ptr<ns3::Node> ns3::TopologyReader::Link::GetFromNode() const [member function]
4409 cls.add_method('GetFromNode',
4410 'ns3::Ptr< ns3::Node >',
4411 [],
4412 is_const=True)
4413 ## topology-reader.h (module 'topology-read'): std::string ns3::TopologyReader::Link::GetFromNodeName() const [member function]
4414 cls.add_method('GetFromNodeName',
4415 'std::string',
4416 [],
4417 is_const=True)
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -08004418 ## topology-reader.h (module 'topology-read'): ns3::Ptr<ns3::NetDevice> ns3::TopologyReader::Link::GetToNetDevice() const [member function]
4419 cls.add_method('GetToNetDevice',
4420 'ns3::Ptr< ns3::NetDevice >',
4421 [],
4422 is_const=True)
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004423 ## topology-reader.h (module 'topology-read'): ns3::Ptr<ns3::Node> ns3::TopologyReader::Link::GetToNode() const [member function]
4424 cls.add_method('GetToNode',
4425 'ns3::Ptr< ns3::Node >',
4426 [],
4427 is_const=True)
4428 ## topology-reader.h (module 'topology-read'): std::string ns3::TopologyReader::Link::GetToNodeName() const [member function]
4429 cls.add_method('GetToNodeName',
4430 'std::string',
4431 [],
4432 is_const=True)
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -08004433 ## topology-reader.h (module 'topology-read'): void ns3::TopologyReader::Link::SetAttribute(std::string const & name, std::string const & value) [member function]
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004434 cls.add_method('SetAttribute',
4435 'void',
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -08004436 [param('std::string const &', 'name'), param('std::string const &', 'value')])
4437 ## topology-reader.h (module 'topology-read'): void ns3::TopologyReader::Link::SetNetDevices(ns3::Ptr<ns3::NetDevice> from, ns3::Ptr<ns3::NetDevice> to) [member function]
4438 cls.add_method('SetNetDevices',
4439 'void',
4440 [param('ns3::Ptr< ns3::NetDevice >', 'from'), param('ns3::Ptr< ns3::NetDevice >', 'to')])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004441 return
4442
4443def register_Ns3TraceSourceAccessor_methods(root_module, cls):
4444 ## trace-source-accessor.h (module 'core'): ns3::TraceSourceAccessor::TraceSourceAccessor(ns3::TraceSourceAccessor const & arg0) [copy constructor]
4445 cls.add_constructor([param('ns3::TraceSourceAccessor const &', 'arg0')])
4446 ## trace-source-accessor.h (module 'core'): ns3::TraceSourceAccessor::TraceSourceAccessor() [constructor]
4447 cls.add_constructor([])
4448 ## trace-source-accessor.h (module 'core'): bool ns3::TraceSourceAccessor::Connect(ns3::ObjectBase * obj, std::string context, ns3::CallbackBase const & cb) const [member function]
4449 cls.add_method('Connect',
4450 'bool',
4451 [param('ns3::ObjectBase *', 'obj', transfer_ownership=False), param('std::string', 'context'), param('ns3::CallbackBase const &', 'cb')],
4452 is_pure_virtual=True, is_const=True, is_virtual=True)
4453 ## trace-source-accessor.h (module 'core'): bool ns3::TraceSourceAccessor::ConnectWithoutContext(ns3::ObjectBase * obj, ns3::CallbackBase const & cb) const [member function]
4454 cls.add_method('ConnectWithoutContext',
4455 'bool',
4456 [param('ns3::ObjectBase *', 'obj', transfer_ownership=False), param('ns3::CallbackBase const &', 'cb')],
4457 is_pure_virtual=True, is_const=True, is_virtual=True)
4458 ## trace-source-accessor.h (module 'core'): bool ns3::TraceSourceAccessor::Disconnect(ns3::ObjectBase * obj, std::string context, ns3::CallbackBase const & cb) const [member function]
4459 cls.add_method('Disconnect',
4460 'bool',
4461 [param('ns3::ObjectBase *', 'obj', transfer_ownership=False), param('std::string', 'context'), param('ns3::CallbackBase const &', 'cb')],
4462 is_pure_virtual=True, is_const=True, is_virtual=True)
4463 ## trace-source-accessor.h (module 'core'): bool ns3::TraceSourceAccessor::DisconnectWithoutContext(ns3::ObjectBase * obj, ns3::CallbackBase const & cb) const [member function]
4464 cls.add_method('DisconnectWithoutContext',
4465 'bool',
4466 [param('ns3::ObjectBase *', 'obj', transfer_ownership=False), param('ns3::CallbackBase const &', 'cb')],
4467 is_pure_virtual=True, is_const=True, is_virtual=True)
4468 return
4469
4470def register_Ns3Trailer_methods(root_module, cls):
4471 cls.add_output_stream_operator()
4472 ## trailer.h (module 'network'): ns3::Trailer::Trailer() [constructor]
4473 cls.add_constructor([])
4474 ## trailer.h (module 'network'): ns3::Trailer::Trailer(ns3::Trailer const & arg0) [copy constructor]
4475 cls.add_constructor([param('ns3::Trailer const &', 'arg0')])
4476 ## trailer.h (module 'network'): uint32_t ns3::Trailer::Deserialize(ns3::Buffer::Iterator end) [member function]
4477 cls.add_method('Deserialize',
4478 'uint32_t',
4479 [param('ns3::Buffer::Iterator', 'end')],
4480 is_pure_virtual=True, is_virtual=True)
4481 ## trailer.h (module 'network'): uint32_t ns3::Trailer::GetSerializedSize() const [member function]
4482 cls.add_method('GetSerializedSize',
4483 'uint32_t',
4484 [],
4485 is_pure_virtual=True, is_const=True, is_virtual=True)
4486 ## trailer.h (module 'network'): static ns3::TypeId ns3::Trailer::GetTypeId() [member function]
4487 cls.add_method('GetTypeId',
4488 'ns3::TypeId',
4489 [],
4490 is_static=True)
4491 ## trailer.h (module 'network'): void ns3::Trailer::Print(std::ostream & os) const [member function]
4492 cls.add_method('Print',
4493 'void',
4494 [param('std::ostream &', 'os')],
4495 is_pure_virtual=True, is_const=True, is_virtual=True)
4496 ## trailer.h (module 'network'): void ns3::Trailer::Serialize(ns3::Buffer::Iterator start) const [member function]
4497 cls.add_method('Serialize',
4498 'void',
4499 [param('ns3::Buffer::Iterator', 'start')],
4500 is_pure_virtual=True, is_const=True, is_virtual=True)
4501 return
4502
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08004503def register_Ns3WeightsPathStretchTag_methods(root_module, cls):
4504 ## ccnx-path-stretch-tag.h (module 'NDNabstraction'): ns3::WeightsPathStretchTag::WeightsPathStretchTag(ns3::WeightsPathStretchTag const & arg0) [copy constructor]
4505 cls.add_constructor([param('ns3::WeightsPathStretchTag const &', 'arg0')])
4506 ## ccnx-path-stretch-tag.h (module 'NDNabstraction'): ns3::WeightsPathStretchTag::WeightsPathStretchTag() [constructor]
4507 cls.add_constructor([])
4508 ## ccnx-path-stretch-tag.h (module 'NDNabstraction'): void ns3::WeightsPathStretchTag::AddPathInfo(ns3::Ptr<ns3::Node> node, uint32_t weight) [member function]
4509 cls.add_method('AddPathInfo',
4510 'void',
4511 [param('ns3::Ptr< ns3::Node >', 'node'), param('uint32_t', 'weight')])
4512 ## ccnx-path-stretch-tag.h (module 'NDNabstraction'): void ns3::WeightsPathStretchTag::Deserialize(ns3::TagBuffer i) [member function]
4513 cls.add_method('Deserialize',
4514 'void',
4515 [param('ns3::TagBuffer', 'i')],
4516 is_virtual=True)
Alexander Afanasyev6bff0df2012-01-19 17:51:52 -08004517 ## ccnx-path-stretch-tag.h (module 'NDNabstraction'): ns3::Ptr<ns3::Node> ns3::WeightsPathStretchTag::GetDestinationNode() const [member function]
4518 cls.add_method('GetDestinationNode',
4519 'ns3::Ptr< ns3::Node >',
4520 [],
4521 is_const=True)
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08004522 ## ccnx-path-stretch-tag.h (module 'NDNabstraction'): std::list<ns3::WeightsPathStretchTag::NodeWeightPair, std::allocator<ns3::WeightsPathStretchTag::NodeWeightPair> > const & ns3::WeightsPathStretchTag::GetInfos() const [member function]
4523 cls.add_method('GetInfos',
4524 'std::list< ns3::WeightsPathStretchTag::NodeWeightPair > const &',
4525 [],
4526 is_const=True)
4527 ## ccnx-path-stretch-tag.h (module 'NDNabstraction'): uint32_t ns3::WeightsPathStretchTag::GetSerializedSize() const [member function]
4528 cls.add_method('GetSerializedSize',
4529 'uint32_t',
4530 [],
4531 is_const=True, is_virtual=True)
4532 ## ccnx-path-stretch-tag.h (module 'NDNabstraction'): ns3::Ptr<ns3::Node> ns3::WeightsPathStretchTag::GetSourceNode() const [member function]
4533 cls.add_method('GetSourceNode',
4534 'ns3::Ptr< ns3::Node >',
4535 [],
4536 is_const=True)
Alexander Afanasyev6bff0df2012-01-19 17:51:52 -08004537 ## ccnx-path-stretch-tag.h (module 'NDNabstraction'): uint64_t ns3::WeightsPathStretchTag::GetTotalWeight() const [member function]
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08004538 cls.add_method('GetTotalWeight',
Alexander Afanasyev6bff0df2012-01-19 17:51:52 -08004539 'uint64_t',
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08004540 [],
4541 is_const=True)
4542 ## ccnx-path-stretch-tag.h (module 'NDNabstraction'): static ns3::TypeId ns3::WeightsPathStretchTag::GetTypeId() [member function]
4543 cls.add_method('GetTypeId',
4544 'ns3::TypeId',
4545 [],
4546 is_static=True)
4547 ## ccnx-path-stretch-tag.h (module 'NDNabstraction'): void ns3::WeightsPathStretchTag::Print(std::ostream & os) const [member function]
4548 cls.add_method('Print',
4549 'void',
4550 [param('std::ostream &', 'os')],
4551 is_const=True, is_virtual=True)
4552 ## ccnx-path-stretch-tag.h (module 'NDNabstraction'): void ns3::WeightsPathStretchTag::Serialize(ns3::TagBuffer i) const [member function]
4553 cls.add_method('Serialize',
4554 'void',
4555 [param('ns3::TagBuffer', 'i')],
4556 is_const=True, is_virtual=True)
4557 return
4558
4559def register_Ns3WeightsPathStretchTagNodeWeightPair_methods(root_module, cls):
4560 ## ccnx-path-stretch-tag.h (module 'NDNabstraction'): ns3::WeightsPathStretchTag::NodeWeightPair::NodeWeightPair(ns3::WeightsPathStretchTag::NodeWeightPair const & arg0) [copy constructor]
4561 cls.add_constructor([param('ns3::WeightsPathStretchTag::NodeWeightPair const &', 'arg0')])
4562 ## ccnx-path-stretch-tag.h (module 'NDNabstraction'): ns3::WeightsPathStretchTag::NodeWeightPair::NodeWeightPair() [constructor]
4563 cls.add_constructor([])
4564 ## ccnx-path-stretch-tag.h (module 'NDNabstraction'): ns3::WeightsPathStretchTag::NodeWeightPair::NodeWeightPair(ns3::Ptr<ns3::Node> _node, uint32_t _weight) [constructor]
4565 cls.add_constructor([param('ns3::Ptr< ns3::Node >', '_node'), param('uint32_t', '_weight')])
4566 ## ccnx-path-stretch-tag.h (module 'NDNabstraction'): ns3::WeightsPathStretchTag::NodeWeightPair::node [variable]
4567 cls.add_instance_attribute('node', 'ns3::Ptr< ns3::Node >', is_const=False)
4568 ## ccnx-path-stretch-tag.h (module 'NDNabstraction'): ns3::WeightsPathStretchTag::NodeWeightPair::weight [variable]
4569 cls.add_instance_attribute('weight', 'uint32_t', is_const=False)
4570 return
4571
4572def register_Ns3WindowTracer_methods(root_module, cls):
4573 ## ccnx-consumer-window-tracer.h (module 'NDNabstraction'): ns3::WindowTracer::WindowTracer(ns3::WindowTracer const & arg0) [copy constructor]
4574 cls.add_constructor([param('ns3::WindowTracer const &', 'arg0')])
4575 ## ccnx-consumer-window-tracer.h (module 'NDNabstraction'): ns3::WindowTracer::WindowTracer(std::ostream & os, ns3::Ptr<ns3::Node> node, std::string const & appId="*") [constructor]
4576 cls.add_constructor([param('std::ostream &', 'os'), param('ns3::Ptr< ns3::Node >', 'node'), param('std::string const &', 'appId', default_value='"*"')])
4577 ## ccnx-consumer-window-tracer.h (module 'NDNabstraction'): static void ns3::WindowTracer::PrintHeader(std::ostream & os) [member function]
4578 cls.add_method('PrintHeader',
4579 'void',
4580 [param('std::ostream &', 'os')],
4581 is_static=True)
4582 ## ccnx-consumer-window-tracer.h (module 'NDNabstraction'): void ns3::WindowTracer::OnWindowChange(std::string context, uint32_t oldValue, uint32_t newValue) [member function]
4583 cls.add_method('OnWindowChange',
4584 'void',
4585 [param('std::string', 'context'), param('uint32_t', 'oldValue'), param('uint32_t', 'newValue')],
4586 is_virtual=True)
4587 return
4588
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004589def register_Ns3AnnotatedTopologyReader_methods(root_module, cls):
Alexander Afanasyevb3e4b852011-12-23 15:58:20 -08004590 ## annotated-topology-reader.h (module 'NDNabstraction'): ns3::AnnotatedTopologyReader::AnnotatedTopologyReader(std::string const & path="", double scale=1.0e+0) [constructor]
4591 cls.add_constructor([param('std::string const &', 'path', default_value='""'), param('double', 'scale', default_value='1.0e+0')])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004592 ## annotated-topology-reader.h (module 'NDNabstraction'): ns3::NodeContainer ns3::AnnotatedTopologyReader::Read() [member function]
4593 cls.add_method('Read',
4594 'ns3::NodeContainer',
4595 [],
4596 is_virtual=True)
Alexander Afanasyevb3e4b852011-12-23 15:58:20 -08004597 ## annotated-topology-reader.h (module 'NDNabstraction'): ns3::NodeContainer ns3::AnnotatedTopologyReader::GetNodes() const [member function]
4598 cls.add_method('GetNodes',
4599 'ns3::NodeContainer',
4600 [],
4601 is_const=True)
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08004602 ## annotated-topology-reader.h (module 'NDNabstraction'): std::list<ns3::TopologyReader::Link, std::allocator<ns3::TopologyReader::Link> > const & ns3::AnnotatedTopologyReader::GetLinks() const [member function]
4603 cls.add_method('GetLinks',
4604 'std::list< ns3::TopologyReader::Link > const &',
4605 [],
4606 is_const=True)
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -08004607 ## annotated-topology-reader.h (module 'NDNabstraction'): void ns3::AnnotatedTopologyReader::AssignIpv4Addresses(ns3::Ipv4Address base) [member function]
4608 cls.add_method('AssignIpv4Addresses',
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004609 'void',
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -08004610 [param('ns3::Ipv4Address', 'base')])
Alexander Afanasyevae3b7c32011-12-13 13:20:06 -08004611 ## annotated-topology-reader.h (module 'NDNabstraction'): void ns3::AnnotatedTopologyReader::SetBoundingBox(double ulx, double uly, double lrx, double lry) [member function]
4612 cls.add_method('SetBoundingBox',
4613 'void',
4614 [param('double', 'ulx'), param('double', 'uly'), param('double', 'lrx'), param('double', 'lry')])
Alexander Afanasyev53872ce2011-12-16 13:17:18 -08004615 ## annotated-topology-reader.h (module 'NDNabstraction'): void ns3::AnnotatedTopologyReader::SetMobilityModel(std::string const & model) [member function]
4616 cls.add_method('SetMobilityModel',
4617 'void',
4618 [param('std::string const &', 'model')])
Alexander Afanasyev8e0d2812012-01-19 22:38:14 -08004619 ## annotated-topology-reader.h (module 'NDNabstraction'): void ns3::AnnotatedTopologyReader::ApplyOspfMetric() [member function]
4620 cls.add_method('ApplyOspfMetric',
4621 'void',
4622 [])
Alexander Afanasyev03d92e42012-02-01 21:06:53 -08004623 ## annotated-topology-reader.h (module 'NDNabstraction'): void ns3::AnnotatedTopologyReader::SavePositions(std::string const & file) const [member function]
4624 cls.add_method('SavePositions',
4625 'void',
4626 [param('std::string const &', 'file')],
4627 is_const=True)
Alexander Afanasyevae3b7c32011-12-13 13:20:06 -08004628 ## annotated-topology-reader.h (module 'NDNabstraction'): ns3::Ptr<ns3::Node> ns3::AnnotatedTopologyReader::CreateNode(std::string const name) [member function]
4629 cls.add_method('CreateNode',
4630 'ns3::Ptr< ns3::Node >',
4631 [param('std::string const', 'name')],
4632 visibility='protected')
4633 ## annotated-topology-reader.h (module 'NDNabstraction'): ns3::Ptr<ns3::Node> ns3::AnnotatedTopologyReader::CreateNode(std::string const name, double posX, double posY) [member function]
4634 cls.add_method('CreateNode',
4635 'ns3::Ptr< ns3::Node >',
4636 [param('std::string const', 'name'), param('double', 'posX'), param('double', 'posY')],
4637 visibility='protected')
Alexander Afanasyev53872ce2011-12-16 13:17:18 -08004638 ## annotated-topology-reader.h (module 'NDNabstraction'): void ns3::AnnotatedTopologyReader::ApplySettings() [member function]
4639 cls.add_method('ApplySettings',
4640 'void',
4641 [],
4642 visibility='protected')
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004643 return
4644
4645def register_Ns3Application_methods(root_module, cls):
4646 ## application.h (module 'network'): ns3::Application::Application(ns3::Application const & arg0) [copy constructor]
4647 cls.add_constructor([param('ns3::Application const &', 'arg0')])
4648 ## application.h (module 'network'): ns3::Application::Application() [constructor]
4649 cls.add_constructor([])
4650 ## application.h (module 'network'): ns3::Ptr<ns3::Node> ns3::Application::GetNode() const [member function]
4651 cls.add_method('GetNode',
4652 'ns3::Ptr< ns3::Node >',
4653 [],
4654 is_const=True)
4655 ## application.h (module 'network'): static ns3::TypeId ns3::Application::GetTypeId() [member function]
4656 cls.add_method('GetTypeId',
4657 'ns3::TypeId',
4658 [],
4659 is_static=True)
4660 ## application.h (module 'network'): void ns3::Application::SetNode(ns3::Ptr<ns3::Node> node) [member function]
4661 cls.add_method('SetNode',
4662 'void',
4663 [param('ns3::Ptr< ns3::Node >', 'node')])
4664 ## application.h (module 'network'): void ns3::Application::SetStartTime(ns3::Time start) [member function]
4665 cls.add_method('SetStartTime',
4666 'void',
4667 [param('ns3::Time', 'start')])
4668 ## application.h (module 'network'): void ns3::Application::SetStopTime(ns3::Time stop) [member function]
4669 cls.add_method('SetStopTime',
4670 'void',
4671 [param('ns3::Time', 'stop')])
4672 ## application.h (module 'network'): void ns3::Application::DoDispose() [member function]
4673 cls.add_method('DoDispose',
4674 'void',
4675 [],
4676 visibility='protected', is_virtual=True)
4677 ## application.h (module 'network'): void ns3::Application::DoStart() [member function]
4678 cls.add_method('DoStart',
4679 'void',
4680 [],
4681 visibility='protected', is_virtual=True)
4682 ## application.h (module 'network'): void ns3::Application::StartApplication() [member function]
4683 cls.add_method('StartApplication',
4684 'void',
4685 [],
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -08004686 visibility='protected', is_virtual=True)
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004687 ## application.h (module 'network'): void ns3::Application::StopApplication() [member function]
4688 cls.add_method('StopApplication',
4689 'void',
4690 [],
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -08004691 visibility='protected', is_virtual=True)
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004692 return
4693
4694def register_Ns3AttributeAccessor_methods(root_module, cls):
4695 ## attribute.h (module 'core'): ns3::AttributeAccessor::AttributeAccessor(ns3::AttributeAccessor const & arg0) [copy constructor]
4696 cls.add_constructor([param('ns3::AttributeAccessor const &', 'arg0')])
4697 ## attribute.h (module 'core'): ns3::AttributeAccessor::AttributeAccessor() [constructor]
4698 cls.add_constructor([])
4699 ## attribute.h (module 'core'): bool ns3::AttributeAccessor::Get(ns3::ObjectBase const * object, ns3::AttributeValue & attribute) const [member function]
4700 cls.add_method('Get',
4701 'bool',
4702 [param('ns3::ObjectBase const *', 'object'), param('ns3::AttributeValue &', 'attribute')],
4703 is_pure_virtual=True, is_const=True, is_virtual=True)
4704 ## attribute.h (module 'core'): bool ns3::AttributeAccessor::HasGetter() const [member function]
4705 cls.add_method('HasGetter',
4706 'bool',
4707 [],
4708 is_pure_virtual=True, is_const=True, is_virtual=True)
4709 ## attribute.h (module 'core'): bool ns3::AttributeAccessor::HasSetter() const [member function]
4710 cls.add_method('HasSetter',
4711 'bool',
4712 [],
4713 is_pure_virtual=True, is_const=True, is_virtual=True)
4714 ## attribute.h (module 'core'): bool ns3::AttributeAccessor::Set(ns3::ObjectBase * object, ns3::AttributeValue const & value) const [member function]
4715 cls.add_method('Set',
4716 'bool',
4717 [param('ns3::ObjectBase *', 'object', transfer_ownership=False), param('ns3::AttributeValue const &', 'value')],
4718 is_pure_virtual=True, is_const=True, is_virtual=True)
4719 return
4720
4721def register_Ns3AttributeChecker_methods(root_module, cls):
4722 ## attribute.h (module 'core'): ns3::AttributeChecker::AttributeChecker(ns3::AttributeChecker const & arg0) [copy constructor]
4723 cls.add_constructor([param('ns3::AttributeChecker const &', 'arg0')])
4724 ## attribute.h (module 'core'): ns3::AttributeChecker::AttributeChecker() [constructor]
4725 cls.add_constructor([])
4726 ## attribute.h (module 'core'): bool ns3::AttributeChecker::Check(ns3::AttributeValue const & value) const [member function]
4727 cls.add_method('Check',
4728 'bool',
4729 [param('ns3::AttributeValue const &', 'value')],
4730 is_pure_virtual=True, is_const=True, is_virtual=True)
4731 ## attribute.h (module 'core'): bool ns3::AttributeChecker::Copy(ns3::AttributeValue const & source, ns3::AttributeValue & destination) const [member function]
4732 cls.add_method('Copy',
4733 'bool',
4734 [param('ns3::AttributeValue const &', 'source'), param('ns3::AttributeValue &', 'destination')],
4735 is_pure_virtual=True, is_const=True, is_virtual=True)
4736 ## attribute.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::AttributeChecker::Create() const [member function]
4737 cls.add_method('Create',
4738 'ns3::Ptr< ns3::AttributeValue >',
4739 [],
4740 is_pure_virtual=True, is_const=True, is_virtual=True)
4741 ## attribute.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::AttributeChecker::CreateValidValue(ns3::AttributeValue const & value) const [member function]
4742 cls.add_method('CreateValidValue',
4743 'ns3::Ptr< ns3::AttributeValue >',
4744 [param('ns3::AttributeValue const &', 'value')],
4745 is_const=True)
4746 ## attribute.h (module 'core'): std::string ns3::AttributeChecker::GetUnderlyingTypeInformation() const [member function]
4747 cls.add_method('GetUnderlyingTypeInformation',
4748 'std::string',
4749 [],
4750 is_pure_virtual=True, is_const=True, is_virtual=True)
4751 ## attribute.h (module 'core'): std::string ns3::AttributeChecker::GetValueTypeName() const [member function]
4752 cls.add_method('GetValueTypeName',
4753 'std::string',
4754 [],
4755 is_pure_virtual=True, is_const=True, is_virtual=True)
4756 ## attribute.h (module 'core'): bool ns3::AttributeChecker::HasUnderlyingTypeInformation() const [member function]
4757 cls.add_method('HasUnderlyingTypeInformation',
4758 'bool',
4759 [],
4760 is_pure_virtual=True, is_const=True, is_virtual=True)
4761 return
4762
4763def register_Ns3AttributeValue_methods(root_module, cls):
4764 ## attribute.h (module 'core'): ns3::AttributeValue::AttributeValue(ns3::AttributeValue const & arg0) [copy constructor]
4765 cls.add_constructor([param('ns3::AttributeValue const &', 'arg0')])
4766 ## attribute.h (module 'core'): ns3::AttributeValue::AttributeValue() [constructor]
4767 cls.add_constructor([])
4768 ## attribute.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::AttributeValue::Copy() const [member function]
4769 cls.add_method('Copy',
4770 'ns3::Ptr< ns3::AttributeValue >',
4771 [],
4772 is_pure_virtual=True, is_const=True, is_virtual=True)
4773 ## attribute.h (module 'core'): bool ns3::AttributeValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
4774 cls.add_method('DeserializeFromString',
4775 'bool',
4776 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4777 is_pure_virtual=True, is_virtual=True)
4778 ## attribute.h (module 'core'): std::string ns3::AttributeValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
4779 cls.add_method('SerializeToString',
4780 'std::string',
4781 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4782 is_pure_virtual=True, is_const=True, is_virtual=True)
4783 return
4784
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08004785def register_Ns3BatchesChecker_methods(root_module, cls):
4786 ## batches.h (module 'NDNabstraction'): ns3::BatchesChecker::BatchesChecker() [constructor]
4787 cls.add_constructor([])
4788 ## batches.h (module 'NDNabstraction'): ns3::BatchesChecker::BatchesChecker(ns3::BatchesChecker const & arg0) [copy constructor]
4789 cls.add_constructor([param('ns3::BatchesChecker const &', 'arg0')])
4790 return
4791
4792def register_Ns3BatchesValue_methods(root_module, cls):
4793 ## batches.h (module 'NDNabstraction'): ns3::BatchesValue::BatchesValue() [constructor]
4794 cls.add_constructor([])
4795 ## batches.h (module 'NDNabstraction'): ns3::BatchesValue::BatchesValue(ns3::BatchesValue const & arg0) [copy constructor]
4796 cls.add_constructor([param('ns3::BatchesValue const &', 'arg0')])
4797 ## batches.h (module 'NDNabstraction'): ns3::BatchesValue::BatchesValue(ns3::Batches const & value) [constructor]
4798 cls.add_constructor([param('ns3::Batches const &', 'value')])
4799 ## batches.h (module 'NDNabstraction'): ns3::Ptr<ns3::AttributeValue> ns3::BatchesValue::Copy() const [member function]
4800 cls.add_method('Copy',
4801 'ns3::Ptr< ns3::AttributeValue >',
4802 [],
4803 is_const=True, is_virtual=True)
4804 ## batches.h (module 'NDNabstraction'): bool ns3::BatchesValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
4805 cls.add_method('DeserializeFromString',
4806 'bool',
4807 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4808 is_virtual=True)
4809 ## batches.h (module 'NDNabstraction'): ns3::Batches ns3::BatchesValue::Get() const [member function]
4810 cls.add_method('Get',
4811 'ns3::Batches',
4812 [],
4813 is_const=True)
4814 ## batches.h (module 'NDNabstraction'): std::string ns3::BatchesValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
4815 cls.add_method('SerializeToString',
4816 'std::string',
4817 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4818 is_const=True, is_virtual=True)
4819 ## batches.h (module 'NDNabstraction'): void ns3::BatchesValue::Set(ns3::Batches const & value) [member function]
4820 cls.add_method('Set',
4821 'void',
4822 [param('ns3::Batches const &', 'value')])
4823 return
4824
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004825def register_Ns3CallbackChecker_methods(root_module, cls):
4826 ## callback.h (module 'core'): ns3::CallbackChecker::CallbackChecker() [constructor]
4827 cls.add_constructor([])
4828 ## callback.h (module 'core'): ns3::CallbackChecker::CallbackChecker(ns3::CallbackChecker const & arg0) [copy constructor]
4829 cls.add_constructor([param('ns3::CallbackChecker const &', 'arg0')])
4830 return
4831
4832def register_Ns3CallbackImplBase_methods(root_module, cls):
4833 ## callback.h (module 'core'): ns3::CallbackImplBase::CallbackImplBase() [constructor]
4834 cls.add_constructor([])
4835 ## callback.h (module 'core'): ns3::CallbackImplBase::CallbackImplBase(ns3::CallbackImplBase const & arg0) [copy constructor]
4836 cls.add_constructor([param('ns3::CallbackImplBase const &', 'arg0')])
4837 ## callback.h (module 'core'): bool ns3::CallbackImplBase::IsEqual(ns3::Ptr<ns3::CallbackImplBase const> other) const [member function]
4838 cls.add_method('IsEqual',
4839 'bool',
4840 [param('ns3::Ptr< ns3::CallbackImplBase const >', 'other')],
4841 is_pure_virtual=True, is_const=True, is_virtual=True)
4842 return
4843
4844def register_Ns3CallbackValue_methods(root_module, cls):
4845 ## callback.h (module 'core'): ns3::CallbackValue::CallbackValue(ns3::CallbackValue const & arg0) [copy constructor]
4846 cls.add_constructor([param('ns3::CallbackValue const &', 'arg0')])
4847 ## callback.h (module 'core'): ns3::CallbackValue::CallbackValue() [constructor]
4848 cls.add_constructor([])
4849 ## callback.h (module 'core'): ns3::CallbackValue::CallbackValue(ns3::CallbackBase const & base) [constructor]
4850 cls.add_constructor([param('ns3::CallbackBase const &', 'base')])
4851 ## callback.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::CallbackValue::Copy() const [member function]
4852 cls.add_method('Copy',
4853 'ns3::Ptr< ns3::AttributeValue >',
4854 [],
4855 is_const=True, is_virtual=True)
4856 ## callback.h (module 'core'): bool ns3::CallbackValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
4857 cls.add_method('DeserializeFromString',
4858 'bool',
4859 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4860 is_virtual=True)
4861 ## callback.h (module 'core'): std::string ns3::CallbackValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
4862 cls.add_method('SerializeToString',
4863 'std::string',
4864 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4865 is_const=True, is_virtual=True)
4866 ## callback.h (module 'core'): void ns3::CallbackValue::Set(ns3::CallbackBase base) [member function]
4867 cls.add_method('Set',
4868 'void',
4869 [param('ns3::CallbackBase', 'base')])
4870 return
4871
4872def register_Ns3Ccnx_methods(root_module, cls):
4873 ## ccnx.h (module 'NDNabstraction'): ns3::Ccnx::Ccnx() [constructor]
4874 cls.add_constructor([])
4875 ## ccnx.h (module 'NDNabstraction'): ns3::Ccnx::Ccnx(ns3::Ccnx const & arg0) [copy constructor]
4876 cls.add_constructor([param('ns3::Ccnx const &', 'arg0')])
4877 ## ccnx.h (module 'NDNabstraction'): uint32_t ns3::Ccnx::AddFace(ns3::Ptr<ns3::CcnxFace> const & face) [member function]
4878 cls.add_method('AddFace',
4879 'uint32_t',
4880 [param('ns3::Ptr< ns3::CcnxFace > const &', 'face')],
4881 is_pure_virtual=True, is_virtual=True)
4882 ## ccnx.h (module 'NDNabstraction'): ns3::Ptr<ns3::CcnxFace> ns3::Ccnx::GetFace(uint32_t face) const [member function]
4883 cls.add_method('GetFace',
4884 'ns3::Ptr< ns3::CcnxFace >',
4885 [param('uint32_t', 'face')],
4886 is_pure_virtual=True, is_const=True, is_virtual=True)
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -08004887 ## ccnx.h (module 'NDNabstraction'): ns3::Ptr<ns3::CcnxFace> ns3::Ccnx::GetFaceByNetDevice(ns3::Ptr<ns3::NetDevice> netDevice) const [member function]
4888 cls.add_method('GetFaceByNetDevice',
4889 'ns3::Ptr< ns3::CcnxFace >',
4890 [param('ns3::Ptr< ns3::NetDevice >', 'netDevice')],
4891 is_pure_virtual=True, is_const=True, is_virtual=True)
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004892 ## ccnx.h (module 'NDNabstraction'): ns3::Ptr<ns3::CcnxForwardingStrategy> ns3::Ccnx::GetForwardingStrategy() const [member function]
4893 cls.add_method('GetForwardingStrategy',
4894 'ns3::Ptr< ns3::CcnxForwardingStrategy >',
4895 [],
4896 is_pure_virtual=True, is_const=True, is_virtual=True)
4897 ## ccnx.h (module 'NDNabstraction'): uint32_t ns3::Ccnx::GetNFaces() const [member function]
4898 cls.add_method('GetNFaces',
4899 'uint32_t',
4900 [],
4901 is_pure_virtual=True, is_const=True, is_virtual=True)
4902 ## ccnx.h (module 'NDNabstraction'): static ns3::TypeId ns3::Ccnx::GetTypeId() [member function]
4903 cls.add_method('GetTypeId',
4904 'ns3::TypeId',
4905 [],
4906 is_static=True)
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004907 ## ccnx.h (module 'NDNabstraction'): void ns3::Ccnx::RemoveFace(ns3::Ptr<ns3::CcnxFace> face) [member function]
4908 cls.add_method('RemoveFace',
4909 'void',
4910 [param('ns3::Ptr< ns3::CcnxFace >', 'face')],
4911 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004912 ## ccnx.h (module 'NDNabstraction'): void ns3::Ccnx::SetForwardingStrategy(ns3::Ptr<ns3::CcnxForwardingStrategy> forwardingStrategy) [member function]
4913 cls.add_method('SetForwardingStrategy',
4914 'void',
4915 [param('ns3::Ptr< ns3::CcnxForwardingStrategy >', 'forwardingStrategy')],
4916 is_pure_virtual=True, is_virtual=True)
4917 return
4918
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -08004919def register_Ns3CcnxApp_methods(root_module, cls):
4920 ## ccnx-app.h (module 'NDNabstraction'): ns3::CcnxApp::CcnxApp(ns3::CcnxApp const & arg0) [copy constructor]
4921 cls.add_constructor([param('ns3::CcnxApp const &', 'arg0')])
4922 ## ccnx-app.h (module 'NDNabstraction'): ns3::CcnxApp::CcnxApp() [constructor]
4923 cls.add_constructor([])
4924 ## ccnx-app.h (module 'NDNabstraction'): static ns3::TypeId ns3::CcnxApp::GetTypeId() [member function]
4925 cls.add_method('GetTypeId',
4926 'ns3::TypeId',
4927 [],
4928 is_static=True)
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08004929 ## ccnx-app.h (module 'NDNabstraction'): void ns3::CcnxApp::OnContentObject(ns3::Ptr<const ns3::CcnxContentObjectHeader> const & contentObject, ns3::Ptr<ns3::Packet> payload) [member function]
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -08004930 cls.add_method('OnContentObject',
4931 'void',
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08004932 [param('ns3::Ptr< ns3::CcnxContentObjectHeader const > const &', 'contentObject'), param('ns3::Ptr< ns3::Packet >', 'payload')],
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -08004933 is_virtual=True)
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08004934 ## ccnx-app.h (module 'NDNabstraction'): void ns3::CcnxApp::OnInterest(ns3::Ptr<const ns3::CcnxInterestHeader> const & interest, ns3::Ptr<ns3::Packet> packet) [member function]
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -08004935 cls.add_method('OnInterest',
4936 'void',
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08004937 [param('ns3::Ptr< ns3::CcnxInterestHeader const > const &', 'interest'), param('ns3::Ptr< ns3::Packet >', 'packet')],
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -08004938 is_virtual=True)
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08004939 ## ccnx-app.h (module 'NDNabstraction'): void ns3::CcnxApp::OnNack(ns3::Ptr<const ns3::CcnxInterestHeader> const & interest, ns3::Ptr<ns3::Packet> packet) [member function]
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -08004940 cls.add_method('OnNack',
4941 'void',
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08004942 [param('ns3::Ptr< ns3::CcnxInterestHeader const > const &', 'interest'), param('ns3::Ptr< ns3::Packet >', 'packet')],
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -08004943 is_virtual=True)
4944 ## 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]
4945 cls.add_method('RegisterProtocolHandler',
4946 'void',
4947 [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')])
4948 ## ccnx-app.h (module 'NDNabstraction'): void ns3::CcnxApp::DoDispose() [member function]
4949 cls.add_method('DoDispose',
4950 'void',
4951 [],
4952 visibility='protected', is_virtual=True)
4953 ## ccnx-app.h (module 'NDNabstraction'): void ns3::CcnxApp::StartApplication() [member function]
4954 cls.add_method('StartApplication',
4955 'void',
4956 [],
4957 visibility='protected', is_virtual=True)
4958 ## ccnx-app.h (module 'NDNabstraction'): void ns3::CcnxApp::StopApplication() [member function]
4959 cls.add_method('StopApplication',
4960 'void',
4961 [],
4962 visibility='protected', is_virtual=True)
4963 return
4964
Alexander Afanasyevb3e4b852011-12-23 15:58:20 -08004965def register_Ns3CcnxAppTracer_methods(root_module, cls):
4966 cls.add_output_stream_operator()
4967 ## ccnx-app-tracer.h (module 'NDNabstraction'): ns3::CcnxAppTracer::CcnxAppTracer(ns3::CcnxAppTracer const & arg0) [copy constructor]
4968 cls.add_constructor([param('ns3::CcnxAppTracer const &', 'arg0')])
4969 ## ccnx-app-tracer.h (module 'NDNabstraction'): ns3::CcnxAppTracer::CcnxAppTracer(std::string const & app, ns3::Ptr<ns3::Node> node, std::string const & appId="*") [constructor]
4970 cls.add_constructor([param('std::string const &', 'app'), param('ns3::Ptr< ns3::Node >', 'node'), param('std::string const &', 'appId', default_value='"*"')])
4971 ## ccnx-app-tracer.h (module 'NDNabstraction'): ns3::CcnxAppTracer::CcnxAppTracer(std::string const & app, std::string const & node, std::string const & appId="*") [constructor]
4972 cls.add_constructor([param('std::string const &', 'app'), param('std::string const &', 'node'), param('std::string const &', 'appId', default_value='"*"')])
4973 ## ccnx-app-tracer.h (module 'NDNabstraction'): void ns3::CcnxAppTracer::Connect() [member function]
4974 cls.add_method('Connect',
4975 'void',
4976 [])
4977 ## 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]
4978 cls.add_method('InData',
4979 'void',
4980 [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')],
4981 is_pure_virtual=True, is_virtual=True)
4982 ## 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]
4983 cls.add_method('InInterests',
4984 'void',
4985 [param('std::string', 'context'), param('ns3::Ptr< ns3::CcnxInterestHeader const >', 'arg1'), param('ns3::Ptr< ns3::CcnxApp >', 'arg2'), param('ns3::Ptr< ns3::CcnxFace >', 'arg3')],
4986 is_pure_virtual=True, is_virtual=True)
4987 ## 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]
4988 cls.add_method('InNacks',
4989 'void',
4990 [param('std::string', 'context'), param('ns3::Ptr< ns3::CcnxInterestHeader const >', 'arg1'), param('ns3::Ptr< ns3::CcnxApp >', 'arg2'), param('ns3::Ptr< ns3::CcnxFace >', 'arg3')],
4991 is_pure_virtual=True, is_virtual=True)
4992 ## 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]
4993 cls.add_method('OutData',
4994 'void',
4995 [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')],
4996 is_pure_virtual=True, is_virtual=True)
4997 ## 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]
4998 cls.add_method('OutInterests',
4999 'void',
5000 [param('std::string', 'context'), param('ns3::Ptr< ns3::CcnxInterestHeader const >', 'arg1'), param('ns3::Ptr< ns3::CcnxApp >', 'arg2'), param('ns3::Ptr< ns3::CcnxFace >', 'arg3')],
5001 is_pure_virtual=True, is_virtual=True)
5002 ## ccnx-app-tracer.h (module 'NDNabstraction'): void ns3::CcnxAppTracer::Print(std::ostream & os) const [member function]
5003 cls.add_method('Print',
5004 'void',
5005 [param('std::ostream &', 'os')],
5006 is_pure_virtual=True, is_const=True, is_virtual=True)
5007 ## ccnx-app-tracer.h (module 'NDNabstraction'): void ns3::CcnxAppTracer::PrintHeader(std::ostream & os) const [member function]
5008 cls.add_method('PrintHeader',
5009 'void',
5010 [param('std::ostream &', 'os')],
5011 is_pure_virtual=True, is_const=True, is_virtual=True)
5012 return
5013
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08005014def register_Ns3CcnxConsumerWindowTracer_methods(root_module, cls):
5015 ## ccnx-consumer-window-tracer.h (module 'NDNabstraction'): ns3::CcnxConsumerWindowTracer::CcnxConsumerWindowTracer(ns3::CcnxConsumerWindowTracer const & arg0) [copy constructor]
5016 cls.add_constructor([param('ns3::CcnxConsumerWindowTracer const &', 'arg0')])
5017 ## ccnx-consumer-window-tracer.h (module 'NDNabstraction'): ns3::CcnxConsumerWindowTracer::CcnxConsumerWindowTracer(std::ostream & os, ns3::Ptr<ns3::Node> node, std::string const & appId="*") [constructor]
5018 cls.add_constructor([param('std::ostream &', 'os'), param('ns3::Ptr< ns3::Node >', 'node'), param('std::string const &', 'appId', default_value='"*"')])
5019 ## ccnx-consumer-window-tracer.h (module 'NDNabstraction'): void ns3::CcnxConsumerWindowTracer::Connect() [member function]
5020 cls.add_method('Connect',
5021 'void',
5022 [])
5023 return
5024
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08005025def register_Ns3CcnxContentObjectHeader_methods(root_module, cls):
5026 ## ccnx-content-object-header.h (module 'NDNabstraction'): ns3::CcnxContentObjectHeader::CcnxContentObjectHeader(ns3::CcnxContentObjectHeader const & arg0) [copy constructor]
5027 cls.add_constructor([param('ns3::CcnxContentObjectHeader const &', 'arg0')])
5028 ## ccnx-content-object-header.h (module 'NDNabstraction'): ns3::CcnxContentObjectHeader::CcnxContentObjectHeader() [constructor]
5029 cls.add_constructor([])
5030 ## ccnx-content-object-header.h (module 'NDNabstraction'): uint32_t ns3::CcnxContentObjectHeader::Deserialize(ns3::Buffer::Iterator start) [member function]
5031 cls.add_method('Deserialize',
5032 'uint32_t',
5033 [param('ns3::Buffer::Iterator', 'start')],
5034 is_virtual=True)
Alexander Afanasyev9568f952012-04-05 16:09:14 -07005035 ## ccnx-content-object-header.h (module 'NDNabstraction'): ns3::Time ns3::CcnxContentObjectHeader::GetFreshness() const [member function]
5036 cls.add_method('GetFreshness',
5037 'ns3::Time',
5038 [],
5039 is_const=True)
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08005040 ## ccnx-content-object-header.h (module 'NDNabstraction'): ns3::TypeId ns3::CcnxContentObjectHeader::GetInstanceTypeId() const [member function]
5041 cls.add_method('GetInstanceTypeId',
5042 'ns3::TypeId',
5043 [],
5044 is_const=True, is_virtual=True)
5045 ## ccnx-content-object-header.h (module 'NDNabstraction'): ns3::CcnxNameComponents const & ns3::CcnxContentObjectHeader::GetName() const [member function]
5046 cls.add_method('GetName',
5047 'ns3::CcnxNameComponents const &',
5048 [],
5049 is_const=True)
5050 ## ccnx-content-object-header.h (module 'NDNabstraction'): uint32_t ns3::CcnxContentObjectHeader::GetSerializedSize() const [member function]
5051 cls.add_method('GetSerializedSize',
5052 'uint32_t',
5053 [],
5054 is_const=True, is_virtual=True)
Alexander Afanasyev9568f952012-04-05 16:09:14 -07005055 ## ccnx-content-object-header.h (module 'NDNabstraction'): ns3::Time ns3::CcnxContentObjectHeader::GetTimestamp() const [member function]
5056 cls.add_method('GetTimestamp',
5057 'ns3::Time',
5058 [],
5059 is_const=True)
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08005060 ## ccnx-content-object-header.h (module 'NDNabstraction'): static ns3::TypeId ns3::CcnxContentObjectHeader::GetTypeId() [member function]
5061 cls.add_method('GetTypeId',
5062 'ns3::TypeId',
5063 [],
5064 is_static=True)
5065 ## ccnx-content-object-header.h (module 'NDNabstraction'): void ns3::CcnxContentObjectHeader::Print(std::ostream & os) const [member function]
5066 cls.add_method('Print',
5067 'void',
5068 [param('std::ostream &', 'os')],
5069 is_const=True, is_virtual=True)
5070 ## ccnx-content-object-header.h (module 'NDNabstraction'): void ns3::CcnxContentObjectHeader::Serialize(ns3::Buffer::Iterator start) const [member function]
5071 cls.add_method('Serialize',
5072 'void',
5073 [param('ns3::Buffer::Iterator', 'start')],
5074 is_const=True, is_virtual=True)
Alexander Afanasyev9568f952012-04-05 16:09:14 -07005075 ## ccnx-content-object-header.h (module 'NDNabstraction'): void ns3::CcnxContentObjectHeader::SetFreshness(ns3::Time const & freshness) [member function]
5076 cls.add_method('SetFreshness',
5077 'void',
5078 [param('ns3::Time const &', 'freshness')])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08005079 ## ccnx-content-object-header.h (module 'NDNabstraction'): void ns3::CcnxContentObjectHeader::SetName(ns3::Ptr<ns3::CcnxNameComponents> const & name) [member function]
5080 cls.add_method('SetName',
5081 'void',
5082 [param('ns3::Ptr< ns3::CcnxNameComponents > const &', 'name')])
Alexander Afanasyev9568f952012-04-05 16:09:14 -07005083 ## ccnx-content-object-header.h (module 'NDNabstraction'): void ns3::CcnxContentObjectHeader::SetTimestamp(ns3::Time const & timestamp) [member function]
5084 cls.add_method('SetTimestamp',
5085 'void',
5086 [param('ns3::Time const &', 'timestamp')])
5087 return
5088
5089def register_Ns3CcnxContentObjectHeaderSignedInfo_methods(root_module, cls):
5090 ## ccnx-content-object-header.h (module 'NDNabstraction'): ns3::CcnxContentObjectHeader::SignedInfo::SignedInfo() [constructor]
5091 cls.add_constructor([])
5092 ## ccnx-content-object-header.h (module 'NDNabstraction'): ns3::CcnxContentObjectHeader::SignedInfo::SignedInfo(ns3::CcnxContentObjectHeader::SignedInfo const & arg0) [copy constructor]
5093 cls.add_constructor([param('ns3::CcnxContentObjectHeader::SignedInfo const &', 'arg0')])
5094 ## ccnx-content-object-header.h (module 'NDNabstraction'): ns3::CcnxContentObjectHeader::SignedInfo::m_freshness [variable]
5095 cls.add_instance_attribute('m_freshness', 'ns3::Time', is_const=False)
5096 ## ccnx-content-object-header.h (module 'NDNabstraction'): ns3::CcnxContentObjectHeader::SignedInfo::m_timestamp [variable]
5097 cls.add_instance_attribute('m_timestamp', 'ns3::Time', is_const=False)
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08005098 return
5099
5100def register_Ns3CcnxContentObjectTail_methods(root_module, cls):
5101 ## ccnx-content-object-header.h (module 'NDNabstraction'): ns3::CcnxContentObjectTail::CcnxContentObjectTail(ns3::CcnxContentObjectTail const & arg0) [copy constructor]
5102 cls.add_constructor([param('ns3::CcnxContentObjectTail const &', 'arg0')])
5103 ## ccnx-content-object-header.h (module 'NDNabstraction'): ns3::CcnxContentObjectTail::CcnxContentObjectTail() [constructor]
5104 cls.add_constructor([])
5105 ## ccnx-content-object-header.h (module 'NDNabstraction'): uint32_t ns3::CcnxContentObjectTail::Deserialize(ns3::Buffer::Iterator start) [member function]
5106 cls.add_method('Deserialize',
5107 'uint32_t',
5108 [param('ns3::Buffer::Iterator', 'start')],
5109 is_virtual=True)
5110 ## ccnx-content-object-header.h (module 'NDNabstraction'): ns3::TypeId ns3::CcnxContentObjectTail::GetInstanceTypeId() const [member function]
5111 cls.add_method('GetInstanceTypeId',
5112 'ns3::TypeId',
5113 [],
5114 is_const=True, is_virtual=True)
5115 ## ccnx-content-object-header.h (module 'NDNabstraction'): uint32_t ns3::CcnxContentObjectTail::GetSerializedSize() const [member function]
5116 cls.add_method('GetSerializedSize',
5117 'uint32_t',
5118 [],
5119 is_const=True, is_virtual=True)
5120 ## ccnx-content-object-header.h (module 'NDNabstraction'): static ns3::TypeId ns3::CcnxContentObjectTail::GetTypeId() [member function]
5121 cls.add_method('GetTypeId',
5122 'ns3::TypeId',
5123 [],
5124 is_static=True)
5125 ## ccnx-content-object-header.h (module 'NDNabstraction'): void ns3::CcnxContentObjectTail::Print(std::ostream & os) const [member function]
5126 cls.add_method('Print',
5127 'void',
5128 [param('std::ostream &', 'os')],
5129 is_const=True, is_virtual=True)
5130 ## ccnx-content-object-header.h (module 'NDNabstraction'): void ns3::CcnxContentObjectTail::Serialize(ns3::Buffer::Iterator start) const [member function]
5131 cls.add_method('Serialize',
5132 'void',
5133 [param('ns3::Buffer::Iterator', 'start')],
5134 is_const=True, is_virtual=True)
5135 return
5136
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08005137def register_Ns3CcnxFace_methods(root_module, cls):
5138 cls.add_output_stream_operator()
5139 cls.add_binary_comparison_operator('<')
5140 cls.add_binary_comparison_operator('==')
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -08005141 ## ccnx-face.h (module 'NDNabstraction'): ns3::CcnxFace::CcnxFace(ns3::Ptr<ns3::Node> node) [constructor]
5142 cls.add_constructor([param('ns3::Ptr< ns3::Node >', 'node')])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08005143 ## ccnx-face.h (module 'NDNabstraction'): uint32_t ns3::CcnxFace::GetId() const [member function]
5144 cls.add_method('GetId',
5145 'uint32_t',
5146 [],
5147 is_const=True)
Alexander Afanasyev8e0d2812012-01-19 22:38:14 -08005148 ## ccnx-face.h (module 'NDNabstraction'): uint16_t ns3::CcnxFace::GetMetric() const [member function]
5149 cls.add_method('GetMetric',
5150 'uint16_t',
5151 [],
5152 is_const=True, is_virtual=True)
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08005153 ## ccnx-face.h (module 'NDNabstraction'): ns3::Ptr<ns3::Node> ns3::CcnxFace::GetNode() const [member function]
5154 cls.add_method('GetNode',
5155 'ns3::Ptr< ns3::Node >',
5156 [],
5157 is_const=True)
Alexander Afanasyev53872ce2011-12-16 13:17:18 -08005158 ## ccnx-face.h (module 'NDNabstraction'): static ns3::TypeId ns3::CcnxFace::GetTypeId() [member function]
5159 cls.add_method('GetTypeId',
5160 'ns3::TypeId',
5161 [],
5162 is_static=True)
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -08005163 ## ccnx-face.h (module 'NDNabstraction'): bool ns3::CcnxFace::IsBelowLimit() [member function]
5164 cls.add_method('IsBelowLimit',
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08005165 'bool',
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -08005166 [])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08005167 ## ccnx-face.h (module 'NDNabstraction'): bool ns3::CcnxFace::IsUp() const [member function]
5168 cls.add_method('IsUp',
5169 'bool',
5170 [],
5171 is_const=True, is_virtual=True)
Alexander Afanasyev4975f732011-12-20 17:52:19 -08005172 ## ccnx-face.h (module 'NDNabstraction'): void ns3::CcnxFace::LeakBucket() [member function]
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -08005173 cls.add_method('LeakBucket',
5174 'void',
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -08005175 [])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08005176 ## ccnx-face.h (module 'NDNabstraction'): std::ostream & ns3::CcnxFace::Print(std::ostream & os) const [member function]
5177 cls.add_method('Print',
5178 'std::ostream &',
5179 [param('std::ostream &', 'os')],
5180 is_const=True, is_virtual=True)
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -08005181 ## ccnx-face.h (module 'NDNabstraction'): bool ns3::CcnxFace::Receive(ns3::Ptr<const ns3::Packet> const & p) [member function]
5182 cls.add_method('Receive',
5183 'bool',
5184 [param('ns3::Ptr< ns3::Packet const > const &', 'p')])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08005185 ## 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]
5186 cls.add_method('RegisterProtocolHandler',
5187 'void',
5188 [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 Afanasyevaa032ea2011-12-13 12:38:32 -08005189 is_virtual=True)
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -08005190 ## ccnx-face.h (module 'NDNabstraction'): bool ns3::CcnxFace::Send(ns3::Ptr<ns3::Packet> p) [member function]
5191 cls.add_method('Send',
5192 'bool',
5193 [param('ns3::Ptr< ns3::Packet >', 'p')])
5194 ## ccnx-face.h (module 'NDNabstraction'): void ns3::CcnxFace::SetBucketLeak(double leak) [member function]
5195 cls.add_method('SetBucketLeak',
5196 'void',
5197 [param('double', 'leak')])
5198 ## ccnx-face.h (module 'NDNabstraction'): void ns3::CcnxFace::SetBucketMax(double bucket) [member function]
5199 cls.add_method('SetBucketMax',
5200 'void',
5201 [param('double', 'bucket')])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08005202 ## ccnx-face.h (module 'NDNabstraction'): void ns3::CcnxFace::SetId(uint32_t id) [member function]
5203 cls.add_method('SetId',
5204 'void',
5205 [param('uint32_t', 'id')])
Alexander Afanasyev8e0d2812012-01-19 22:38:14 -08005206 ## ccnx-face.h (module 'NDNabstraction'): void ns3::CcnxFace::SetMetric(uint16_t metric) [member function]
5207 cls.add_method('SetMetric',
5208 'void',
5209 [param('uint16_t', 'metric')],
5210 is_virtual=True)
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -08005211 ## ccnx-face.h (module 'NDNabstraction'): void ns3::CcnxFace::SetUp(bool up=true) [member function]
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08005212 cls.add_method('SetUp',
5213 'void',
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -08005214 [param('bool', 'up', default_value='true')],
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08005215 is_virtual=True)
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -08005216 ## ccnx-face.h (module 'NDNabstraction'): void ns3::CcnxFace::SendImpl(ns3::Ptr<ns3::Packet> p) [member function]
5217 cls.add_method('SendImpl',
5218 'void',
5219 [param('ns3::Ptr< ns3::Packet >', 'p')],
5220 is_pure_virtual=True, visibility='protected', is_virtual=True)
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08005221 return
5222
5223def register_Ns3CcnxFaceContainer_methods(root_module, cls):
5224 ## ccnx-face-container.h (module 'NDNabstraction'): ns3::CcnxFaceContainer::CcnxFaceContainer() [constructor]
5225 cls.add_constructor([])
5226 ## ccnx-face-container.h (module 'NDNabstraction'): ns3::CcnxFaceContainer::CcnxFaceContainer(ns3::CcnxFaceContainer const & other) [copy constructor]
5227 cls.add_constructor([param('ns3::CcnxFaceContainer const &', 'other')])
5228 ## ccnx-face-container.h (module 'NDNabstraction'): void ns3::CcnxFaceContainer::Add(ns3::Ptr<ns3::CcnxFace> const & face) [member function]
5229 cls.add_method('Add',
5230 'void',
5231 [param('ns3::Ptr< ns3::CcnxFace > const &', 'face')])
5232 ## ccnx-face-container.h (module 'NDNabstraction'): void ns3::CcnxFaceContainer::AddAll(ns3::Ptr<ns3::CcnxFaceContainer> other) [member function]
5233 cls.add_method('AddAll',
5234 'void',
5235 [param('ns3::Ptr< ns3::CcnxFaceContainer >', 'other')])
5236 ## ccnx-face-container.h (module 'NDNabstraction'): void ns3::CcnxFaceContainer::AddAll(ns3::CcnxFaceContainer const & other) [member function]
5237 cls.add_method('AddAll',
5238 'void',
5239 [param('ns3::CcnxFaceContainer const &', 'other')])
5240 ## 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]
5241 cls.add_method('Begin',
5242 '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::CcnxFace > const, std::vector< ns3::Ptr< ns3::CcnxFace > > >',
5243 [],
5244 is_const=True)
5245 ## 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]
5246 cls.add_method('End',
5247 '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::CcnxFace > const, std::vector< ns3::Ptr< ns3::CcnxFace > > >',
5248 [],
5249 is_const=True)
5250 ## 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]
5251 cls.add_method('Get',
5252 'ns3::Ptr< ns3::CcnxFace >',
5253 [param('__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::CcnxFace > const, std::vector< ns3::Ptr< ns3::CcnxFace > > >', 'i')],
5254 is_const=True)
5255 ## ccnx-face-container.h (module 'NDNabstraction'): uint32_t ns3::CcnxFaceContainer::GetN() const [member function]
5256 cls.add_method('GetN',
5257 'uint32_t',
5258 [],
5259 is_const=True)
5260 return
5261
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -08005262def register_Ns3CcnxFib_methods(root_module, cls):
5263 cls.add_output_stream_operator()
5264 ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFib::CcnxFib() [constructor]
5265 cls.add_constructor([])
5266 ## 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]
5267 cls.add_method('Add',
5268 '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 > > >',
5269 [param('ns3::CcnxNameComponents const &', 'prefix'), param('ns3::Ptr< ns3::CcnxFace >', 'face'), param('int32_t', 'metric')])
5270 ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFibEntry const & ns3::CcnxFib::GetCcnxFibEntry(uint32_t index) [member function]
5271 cls.add_method('GetCcnxFibEntry',
5272 'ns3::CcnxFibEntry const &',
5273 [param('uint32_t', 'index')])
5274 ## ccnx-fib.h (module 'NDNabstraction'): uint32_t ns3::CcnxFib::GetCcnxFibEntryCount() const [member function]
5275 cls.add_method('GetCcnxFibEntryCount',
5276 'uint32_t',
5277 [],
5278 is_const=True)
5279 ## ccnx-fib.h (module 'NDNabstraction'): static ns3::TypeId ns3::CcnxFib::GetTypeId() [member function]
5280 cls.add_method('GetTypeId',
5281 'ns3::TypeId',
5282 [],
5283 is_static=True)
5284 ## 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]
5285 cls.add_method('LongestPrefixMatch',
5286 '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 > > >',
5287 [param('ns3::CcnxInterestHeader const &', 'interest')],
5288 is_const=True)
5289 ## ccnx-fib.h (module 'NDNabstraction'): void ns3::CcnxFib::Remove(ns3::CcnxFibEntry const & entry, ns3::Ptr<ns3::CcnxFace> face) [member function]
5290 cls.add_method('Remove',
5291 'void',
5292 [param('ns3::CcnxFibEntry const &', 'entry'), param('ns3::Ptr< ns3::CcnxFace >', 'face')])
5293 ## ccnx-fib.h (module 'NDNabstraction'): void ns3::CcnxFib::RemoveFromAll(ns3::Ptr<ns3::CcnxFace> face) [member function]
5294 cls.add_method('RemoveFromAll',
5295 'void',
5296 [param('ns3::Ptr< ns3::CcnxFace >', 'face')])
5297 ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFib::m_fib [variable]
5298 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)
5299 ## ccnx-fib.h (module 'NDNabstraction'): void ns3::CcnxFib::DoDispose() [member function]
5300 cls.add_method('DoDispose',
5301 'void',
5302 [],
5303 visibility='protected', is_virtual=True)
5304 ## ccnx-fib.h (module 'NDNabstraction'): void ns3::CcnxFib::NotifyNewAggregate() [member function]
5305 cls.add_method('NotifyNewAggregate',
5306 'void',
5307 [],
5308 visibility='protected', is_virtual=True)
5309 return
5310
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08005311def register_Ns3CcnxFibEntry_methods(root_module, cls):
5312 cls.add_output_stream_operator()
5313 ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFibEntry::CcnxFibEntry(ns3::CcnxFibEntry const & arg0) [copy constructor]
5314 cls.add_constructor([param('ns3::CcnxFibEntry const &', 'arg0')])
5315 ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFibEntry::CcnxFibEntry(ns3::CcnxNameComponents const & prefix) [constructor]
5316 cls.add_constructor([param('ns3::CcnxNameComponents const &', 'prefix')])
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -08005317 ## ccnx-fib.h (module 'NDNabstraction'): void ns3::CcnxFibEntry::AddOrUpdateRoutingMetric(ns3::Ptr<ns3::CcnxFace> face, int32_t metric) [member function]
5318 cls.add_method('AddOrUpdateRoutingMetric',
5319 'void',
5320 [param('ns3::Ptr< ns3::CcnxFace >', 'face'), param('int32_t', 'metric')])
5321 ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFibFaceMetric const & ns3::CcnxFibEntry::FindBestCandidate(uint32_t skip=0) const [member function]
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08005322 cls.add_method('FindBestCandidate',
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -08005323 'ns3::CcnxFibFaceMetric const &',
5324 [param('uint32_t', 'skip', default_value='0')],
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08005325 is_const=True)
5326 ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxNameComponents const & ns3::CcnxFibEntry::GetPrefix() const [member function]
5327 cls.add_method('GetPrefix',
5328 'ns3::CcnxNameComponents const &',
5329 [],
5330 is_const=True)
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -08005331 ## ccnx-fib.h (module 'NDNabstraction'): void ns3::CcnxFibEntry::RemoveFace(ns3::Ptr<ns3::CcnxFace> const & face) [member function]
5332 cls.add_method('RemoveFace',
5333 'void',
5334 [param('ns3::Ptr< ns3::CcnxFace > const &', 'face')])
5335 ## ccnx-fib.h (module 'NDNabstraction'): void ns3::CcnxFibEntry::UpdateFaceRtt(ns3::Ptr<ns3::CcnxFace> face, ns3::Time const & sample) [member function]
5336 cls.add_method('UpdateFaceRtt',
5337 'void',
5338 [param('ns3::Ptr< ns3::CcnxFace >', 'face'), param('ns3::Time const &', 'sample')])
5339 ## ccnx-fib.h (module 'NDNabstraction'): void ns3::CcnxFibEntry::UpdateStatus(ns3::Ptr<ns3::CcnxFace> face, ns3::CcnxFibFaceMetric::Status status) [member function]
5340 cls.add_method('UpdateStatus',
5341 'void',
5342 [param('ns3::Ptr< ns3::CcnxFace >', 'face'), param('ns3::CcnxFibFaceMetric::Status', 'status')])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08005343 ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFibEntry::m_faces [variable]
5344 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)
5345 ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFibEntry::m_needsProbing [variable]
5346 cls.add_instance_attribute('m_needsProbing', 'bool', is_const=False)
5347 ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFibEntry::m_prefix [variable]
5348 cls.add_instance_attribute('m_prefix', 'ns3::Ptr< ns3::CcnxNameComponents >', is_const=False)
5349 return
5350
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -08005351def register_Ns3CcnxFibEntryNoFaces_methods(root_module, cls):
5352 ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFibEntry::NoFaces::NoFaces() [constructor]
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08005353 cls.add_constructor([])
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -08005354 ## ccnx-fib.h (module 'NDNabstraction'): ns3::CcnxFibEntry::NoFaces::NoFaces(ns3::CcnxFibEntry::NoFaces const & arg0) [copy constructor]
5355 cls.add_constructor([param('ns3::CcnxFibEntry::NoFaces const &', 'arg0')])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08005356 return
5357
5358def register_Ns3CcnxInterestHeader_methods(root_module, cls):
5359 ## ccnx-interest-header.h (module 'NDNabstraction'): ns3::CcnxInterestHeader::CcnxInterestHeader(ns3::CcnxInterestHeader const & arg0) [copy constructor]
5360 cls.add_constructor([param('ns3::CcnxInterestHeader const &', 'arg0')])
5361 ## ccnx-interest-header.h (module 'NDNabstraction'): ns3::CcnxInterestHeader::CcnxInterestHeader() [constructor]
5362 cls.add_constructor([])
5363 ## ccnx-interest-header.h (module 'NDNabstraction'): uint32_t ns3::CcnxInterestHeader::Deserialize(ns3::Buffer::Iterator start) [member function]
5364 cls.add_method('Deserialize',
5365 'uint32_t',
5366 [param('ns3::Buffer::Iterator', 'start')],
5367 is_virtual=True)
5368 ## ccnx-interest-header.h (module 'NDNabstraction'): ns3::CcnxNameComponents const & ns3::CcnxInterestHeader::GetExclude() const [member function]
5369 cls.add_method('GetExclude',
5370 'ns3::CcnxNameComponents const &',
5371 [],
5372 is_const=True)
5373 ## ccnx-interest-header.h (module 'NDNabstraction'): ns3::TypeId ns3::CcnxInterestHeader::GetInstanceTypeId() const [member function]
5374 cls.add_method('GetInstanceTypeId',
5375 'ns3::TypeId',
5376 [],
5377 is_const=True, is_virtual=True)
5378 ## ccnx-interest-header.h (module 'NDNabstraction'): ns3::Time ns3::CcnxInterestHeader::GetInterestLifetime() const [member function]
5379 cls.add_method('GetInterestLifetime',
5380 'ns3::Time',
5381 [],
5382 is_const=True)
5383 ## ccnx-interest-header.h (module 'NDNabstraction'): int32_t ns3::CcnxInterestHeader::GetMaxSuffixComponents() const [member function]
5384 cls.add_method('GetMaxSuffixComponents',
5385 'int32_t',
5386 [],
5387 is_const=True)
5388 ## ccnx-interest-header.h (module 'NDNabstraction'): int32_t ns3::CcnxInterestHeader::GetMinSuffixComponents() const [member function]
5389 cls.add_method('GetMinSuffixComponents',
5390 'int32_t',
5391 [],
5392 is_const=True)
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -08005393 ## ccnx-interest-header.h (module 'NDNabstraction'): uint32_t ns3::CcnxInterestHeader::GetNack() const [member function]
5394 cls.add_method('GetNack',
5395 'uint32_t',
5396 [],
5397 is_const=True)
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08005398 ## ccnx-interest-header.h (module 'NDNabstraction'): ns3::CcnxNameComponents const & ns3::CcnxInterestHeader::GetName() const [member function]
5399 cls.add_method('GetName',
5400 'ns3::CcnxNameComponents const &',
5401 [],
5402 is_const=True)
5403 ## ccnx-interest-header.h (module 'NDNabstraction'): uint32_t ns3::CcnxInterestHeader::GetNonce() const [member function]
5404 cls.add_method('GetNonce',
5405 'uint32_t',
5406 [],
5407 is_const=True)
5408 ## ccnx-interest-header.h (module 'NDNabstraction'): int8_t ns3::CcnxInterestHeader::GetScope() const [member function]
5409 cls.add_method('GetScope',
5410 'int8_t',
5411 [],
5412 is_const=True)
5413 ## ccnx-interest-header.h (module 'NDNabstraction'): uint32_t ns3::CcnxInterestHeader::GetSerializedSize() const [member function]
5414 cls.add_method('GetSerializedSize',
5415 'uint32_t',
5416 [],
5417 is_const=True, is_virtual=True)
5418 ## ccnx-interest-header.h (module 'NDNabstraction'): static ns3::TypeId ns3::CcnxInterestHeader::GetTypeId() [member function]
5419 cls.add_method('GetTypeId',
5420 'ns3::TypeId',
5421 [],
5422 is_static=True)
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08005423 ## ccnx-interest-header.h (module 'NDNabstraction'): bool ns3::CcnxInterestHeader::IsEnabledAnswerOriginKind() const [member function]
5424 cls.add_method('IsEnabledAnswerOriginKind',
5425 'bool',
5426 [],
5427 is_const=True)
5428 ## ccnx-interest-header.h (module 'NDNabstraction'): bool ns3::CcnxInterestHeader::IsEnabledChildSelector() const [member function]
5429 cls.add_method('IsEnabledChildSelector',
5430 'bool',
5431 [],
5432 is_const=True)
5433 ## ccnx-interest-header.h (module 'NDNabstraction'): bool ns3::CcnxInterestHeader::IsEnabledExclude() const [member function]
5434 cls.add_method('IsEnabledExclude',
5435 'bool',
5436 [],
5437 is_const=True)
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08005438 ## ccnx-interest-header.h (module 'NDNabstraction'): void ns3::CcnxInterestHeader::Print(std::ostream & os) const [member function]
5439 cls.add_method('Print',
5440 'void',
5441 [param('std::ostream &', 'os')],
5442 is_const=True, is_virtual=True)
5443 ## ccnx-interest-header.h (module 'NDNabstraction'): void ns3::CcnxInterestHeader::Serialize(ns3::Buffer::Iterator start) const [member function]
5444 cls.add_method('Serialize',
5445 'void',
5446 [param('ns3::Buffer::Iterator', 'start')],
5447 is_const=True, is_virtual=True)
5448 ## ccnx-interest-header.h (module 'NDNabstraction'): void ns3::CcnxInterestHeader::SetAnswerOriginKind(bool value) [member function]
5449 cls.add_method('SetAnswerOriginKind',
5450 'void',
5451 [param('bool', 'value')])
5452 ## ccnx-interest-header.h (module 'NDNabstraction'): void ns3::CcnxInterestHeader::SetChildSelector(bool value) [member function]
5453 cls.add_method('SetChildSelector',
5454 'void',
5455 [param('bool', 'value')])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08005456 ## ccnx-interest-header.h (module 'NDNabstraction'): void ns3::CcnxInterestHeader::SetExclude(ns3::Ptr<ns3::CcnxNameComponents> const & exclude) [member function]
5457 cls.add_method('SetExclude',
5458 'void',
5459 [param('ns3::Ptr< ns3::CcnxNameComponents > const &', 'exclude')])
5460 ## ccnx-interest-header.h (module 'NDNabstraction'): void ns3::CcnxInterestHeader::SetInterestLifetime(ns3::Time time) [member function]
5461 cls.add_method('SetInterestLifetime',
5462 'void',
5463 [param('ns3::Time', 'time')])
5464 ## ccnx-interest-header.h (module 'NDNabstraction'): void ns3::CcnxInterestHeader::SetMaxSuffixComponents(int32_t value) [member function]
5465 cls.add_method('SetMaxSuffixComponents',
5466 'void',
5467 [param('int32_t', 'value')])
5468 ## ccnx-interest-header.h (module 'NDNabstraction'): void ns3::CcnxInterestHeader::SetMinSuffixComponents(int32_t value) [member function]
5469 cls.add_method('SetMinSuffixComponents',
5470 'void',
5471 [param('int32_t', 'value')])
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -08005472 ## ccnx-interest-header.h (module 'NDNabstraction'): void ns3::CcnxInterestHeader::SetNack(uint32_t nackType) [member function]
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08005473 cls.add_method('SetNack',
5474 'void',
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -08005475 [param('uint32_t', 'nackType')])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08005476 ## ccnx-interest-header.h (module 'NDNabstraction'): void ns3::CcnxInterestHeader::SetName(ns3::Ptr<ns3::CcnxNameComponents> const & name) [member function]
5477 cls.add_method('SetName',
5478 'void',
5479 [param('ns3::Ptr< ns3::CcnxNameComponents > const &', 'name')])
5480 ## ccnx-interest-header.h (module 'NDNabstraction'): void ns3::CcnxInterestHeader::SetNonce(uint32_t nonce) [member function]
5481 cls.add_method('SetNonce',
5482 'void',
5483 [param('uint32_t', 'nonce')])
5484 ## ccnx-interest-header.h (module 'NDNabstraction'): void ns3::CcnxInterestHeader::SetScope(int8_t scope) [member function]
5485 cls.add_method('SetScope',
5486 'void',
5487 [param('int8_t', 'scope')])
5488 return
5489
Alexander Afanasyevb3e4b852011-12-23 15:58:20 -08005490def register_Ns3CcnxL3Tracer_methods(root_module, cls):
5491 cls.add_output_stream_operator()
5492 ## ccnx-l3-tracer.h (module 'NDNabstraction'): ns3::CcnxL3Tracer::CcnxL3Tracer(ns3::CcnxL3Tracer const & arg0) [copy constructor]
5493 cls.add_constructor([param('ns3::CcnxL3Tracer const &', 'arg0')])
5494 ## ccnx-l3-tracer.h (module 'NDNabstraction'): ns3::CcnxL3Tracer::CcnxL3Tracer(ns3::Ptr<ns3::Node> node) [constructor]
5495 cls.add_constructor([param('ns3::Ptr< ns3::Node >', 'node')])
5496 ## ccnx-l3-tracer.h (module 'NDNabstraction'): ns3::CcnxL3Tracer::CcnxL3Tracer(std::string const & node) [constructor]
5497 cls.add_constructor([param('std::string const &', 'node')])
5498 ## ccnx-l3-tracer.h (module 'NDNabstraction'): void ns3::CcnxL3Tracer::Connect() [member function]
5499 cls.add_method('Connect',
5500 'void',
5501 [])
5502 ## 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]
5503 cls.add_method('DropData',
5504 'void',
5505 [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')],
5506 is_pure_virtual=True, is_virtual=True)
5507 ## 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]
5508 cls.add_method('DropInterests',
5509 'void',
5510 [param('std::string', 'context'), param('ns3::Ptr< ns3::CcnxInterestHeader const >', 'arg1'), param('ns3::Ccnx::DropReason', 'arg2'), param('ns3::Ptr< ns3::CcnxFace const >', 'arg3')],
5511 is_pure_virtual=True, is_virtual=True)
5512 ## 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]
5513 cls.add_method('DropNacks',
5514 'void',
5515 [param('std::string', 'context'), param('ns3::Ptr< ns3::CcnxInterestHeader const >', 'arg1'), param('ns3::Ccnx::DropReason', 'arg2'), param('ns3::Ptr< ns3::CcnxFace const >', 'arg3')],
5516 is_pure_virtual=True, is_virtual=True)
5517 ## 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]
5518 cls.add_method('InData',
5519 'void',
5520 [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')],
5521 is_pure_virtual=True, is_virtual=True)
5522 ## 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]
5523 cls.add_method('InInterests',
5524 'void',
5525 [param('std::string', 'context'), param('ns3::Ptr< ns3::CcnxInterestHeader const >', 'arg1'), param('ns3::Ptr< ns3::CcnxFace const >', 'arg2')],
5526 is_pure_virtual=True, is_virtual=True)
5527 ## 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]
5528 cls.add_method('InNacks',
5529 'void',
5530 [param('std::string', 'context'), param('ns3::Ptr< ns3::CcnxInterestHeader const >', 'arg1'), param('ns3::Ptr< ns3::CcnxFace const >', 'arg2')],
5531 is_pure_virtual=True, is_virtual=True)
5532 ## 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]
5533 cls.add_method('OutData',
5534 'void',
5535 [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')],
5536 is_pure_virtual=True, is_virtual=True)
5537 ## 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]
5538 cls.add_method('OutInterests',
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::OutNacks(std::string context, ns3::Ptr<const ns3::CcnxInterestHeader> arg1, ns3::Ptr<const ns3::CcnxFace> arg2) [member function]
5543 cls.add_method('OutNacks',
5544 'void',
5545 [param('std::string', 'context'), param('ns3::Ptr< ns3::CcnxInterestHeader const >', 'arg1'), param('ns3::Ptr< ns3::CcnxFace const >', 'arg2')],
5546 is_pure_virtual=True, is_virtual=True)
5547 ## ccnx-l3-tracer.h (module 'NDNabstraction'): void ns3::CcnxL3Tracer::Print(std::ostream & os) const [member function]
5548 cls.add_method('Print',
5549 'void',
5550 [param('std::ostream &', 'os')],
5551 is_pure_virtual=True, is_const=True, is_virtual=True)
5552 ## ccnx-l3-tracer.h (module 'NDNabstraction'): void ns3::CcnxL3Tracer::PrintHeader(std::ostream & os) const [member function]
5553 cls.add_method('PrintHeader',
5554 'void',
5555 [param('std::ostream &', 'os')],
5556 is_pure_virtual=True, is_const=True, is_virtual=True)
5557 return
5558
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08005559def register_Ns3CcnxNameComponents_methods(root_module, cls):
5560 cls.add_output_stream_operator()
5561 cls.add_binary_comparison_operator('<')
5562 cls.add_binary_comparison_operator('==')
5563 ## ccnx-name-components.h (module 'NDNabstraction'): ns3::CcnxNameComponents::CcnxNameComponents(ns3::CcnxNameComponents const & arg0) [copy constructor]
5564 cls.add_constructor([param('ns3::CcnxNameComponents const &', 'arg0')])
5565 ## ccnx-name-components.h (module 'NDNabstraction'): ns3::CcnxNameComponents::CcnxNameComponents() [constructor]
5566 cls.add_constructor([])
5567 ## ccnx-name-components.h (module 'NDNabstraction'): ns3::CcnxNameComponents::CcnxNameComponents(std::list<boost::reference_wrapper<std::string const>, std::allocator<boost::reference_wrapper<std::string const> > > const & components) [constructor]
5568 cls.add_constructor([param('std::list< boost::reference_wrapper< std::string const > > const &', 'components')])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08005569 ## ccnx-name-components.h (module 'NDNabstraction'): std::list<std::string, std::allocator<std::string> > const & ns3::CcnxNameComponents::GetComponents() const [member function]
5570 cls.add_method('GetComponents',
5571 'std::list< std::string > const &',
5572 [],
5573 is_const=True)
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08005574 ## ccnx-name-components.h (module 'NDNabstraction'): std::string ns3::CcnxNameComponents::GetLastComponent() const [member function]
5575 cls.add_method('GetLastComponent',
5576 'std::string',
5577 [],
5578 is_const=True)
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08005579 ## ccnx-name-components.h (module 'NDNabstraction'): std::list<boost::reference_wrapper<std::string const>, std::allocator<boost::reference_wrapper<std::string const> > > ns3::CcnxNameComponents::GetSubComponents(size_t num) const [member function]
5580 cls.add_method('GetSubComponents',
5581 'std::list< boost::reference_wrapper< std::string const > >',
5582 [param('size_t', 'num')],
5583 is_const=True)
5584 ## ccnx-name-components.h (module 'NDNabstraction'): void ns3::CcnxNameComponents::Print(std::ostream & os) const [member function]
5585 cls.add_method('Print',
5586 'void',
5587 [param('std::ostream &', 'os')],
5588 is_const=True)
5589 ## ccnx-name-components.h (module 'NDNabstraction'): size_t ns3::CcnxNameComponents::size() const [member function]
5590 cls.add_method('size',
5591 'size_t',
5592 [],
5593 is_const=True)
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08005594 return
5595
5596def register_Ns3CcnxNameComponentsChecker_methods(root_module, cls):
5597 ## ccnx-name-components.h (module 'NDNabstraction'): ns3::CcnxNameComponentsChecker::CcnxNameComponentsChecker() [constructor]
5598 cls.add_constructor([])
5599 ## ccnx-name-components.h (module 'NDNabstraction'): ns3::CcnxNameComponentsChecker::CcnxNameComponentsChecker(ns3::CcnxNameComponentsChecker const & arg0) [copy constructor]
5600 cls.add_constructor([param('ns3::CcnxNameComponentsChecker const &', 'arg0')])
5601 return
5602
5603def register_Ns3CcnxNameComponentsValue_methods(root_module, cls):
5604 ## ccnx-name-components.h (module 'NDNabstraction'): ns3::CcnxNameComponentsValue::CcnxNameComponentsValue() [constructor]
5605 cls.add_constructor([])
5606 ## ccnx-name-components.h (module 'NDNabstraction'): ns3::CcnxNameComponentsValue::CcnxNameComponentsValue(ns3::CcnxNameComponentsValue const & arg0) [copy constructor]
5607 cls.add_constructor([param('ns3::CcnxNameComponentsValue const &', 'arg0')])
5608 ## ccnx-name-components.h (module 'NDNabstraction'): ns3::CcnxNameComponentsValue::CcnxNameComponentsValue(ns3::CcnxNameComponents const & value) [constructor]
5609 cls.add_constructor([param('ns3::CcnxNameComponents const &', 'value')])
5610 ## ccnx-name-components.h (module 'NDNabstraction'): ns3::Ptr<ns3::AttributeValue> ns3::CcnxNameComponentsValue::Copy() const [member function]
5611 cls.add_method('Copy',
5612 'ns3::Ptr< ns3::AttributeValue >',
5613 [],
5614 is_const=True, is_virtual=True)
5615 ## ccnx-name-components.h (module 'NDNabstraction'): bool ns3::CcnxNameComponentsValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
5616 cls.add_method('DeserializeFromString',
5617 'bool',
5618 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
5619 is_virtual=True)
5620 ## ccnx-name-components.h (module 'NDNabstraction'): ns3::CcnxNameComponents ns3::CcnxNameComponentsValue::Get() const [member function]
5621 cls.add_method('Get',
5622 'ns3::CcnxNameComponents',
5623 [],
5624 is_const=True)
5625 ## ccnx-name-components.h (module 'NDNabstraction'): std::string ns3::CcnxNameComponentsValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
5626 cls.add_method('SerializeToString',
5627 'std::string',
5628 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
5629 is_const=True, is_virtual=True)
5630 ## ccnx-name-components.h (module 'NDNabstraction'): void ns3::CcnxNameComponentsValue::Set(ns3::CcnxNameComponents const & value) [member function]
5631 cls.add_method('Set',
5632 'void',
5633 [param('ns3::CcnxNameComponents const &', 'value')])
5634 return
5635
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08005636def register_Ns3CcnxPathWeightTracer_methods(root_module, cls):
5637 ## ccnx-path-weight-tracer.h (module 'NDNabstraction'): ns3::CcnxPathWeightTracer::CcnxPathWeightTracer(ns3::CcnxPathWeightTracer const & arg0) [copy constructor]
5638 cls.add_constructor([param('ns3::CcnxPathWeightTracer const &', 'arg0')])
Alexander Afanasyev8e0d2812012-01-19 22:38:14 -08005639 ## ccnx-path-weight-tracer.h (module 'NDNabstraction'): ns3::CcnxPathWeightTracer::CcnxPathWeightTracer(std::ostream & os, ns3::Ptr<ns3::Node> node) [constructor]
5640 cls.add_constructor([param('std::ostream &', 'os'), param('ns3::Ptr< ns3::Node >', 'node')])
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08005641 ## ccnx-path-weight-tracer.h (module 'NDNabstraction'): void ns3::CcnxPathWeightTracer::Connect() [member function]
5642 cls.add_method('Connect',
5643 'void',
5644 [])
Alexander Afanasyev8e0d2812012-01-19 22:38:14 -08005645 ## ccnx-path-weight-tracer.h (module 'NDNabstraction'): static void ns3::CcnxPathWeightTracer::PrintHeader(std::ostream & os) [member function]
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08005646 cls.add_method('PrintHeader',
5647 'void',
5648 [param('std::ostream &', 'os')],
Alexander Afanasyev8e0d2812012-01-19 22:38:14 -08005649 is_static=True)
Alexander Afanasyev6bff0df2012-01-19 17:51:52 -08005650 ## 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 -08005651 cls.add_method('InLocalFace',
5652 'void',
Alexander Afanasyev6bff0df2012-01-19 17:51:52 -08005653 [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 -08005654 is_virtual=True)
5655 return
5656
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08005657def register_Ns3EmptyAttributeValue_methods(root_module, cls):
5658 ## attribute.h (module 'core'): ns3::EmptyAttributeValue::EmptyAttributeValue(ns3::EmptyAttributeValue const & arg0) [copy constructor]
5659 cls.add_constructor([param('ns3::EmptyAttributeValue const &', 'arg0')])
5660 ## attribute.h (module 'core'): ns3::EmptyAttributeValue::EmptyAttributeValue() [constructor]
5661 cls.add_constructor([])
5662 ## attribute.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::EmptyAttributeValue::Copy() const [member function]
5663 cls.add_method('Copy',
5664 'ns3::Ptr< ns3::AttributeValue >',
5665 [],
5666 is_const=True, visibility='private', is_virtual=True)
5667 ## attribute.h (module 'core'): bool ns3::EmptyAttributeValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
5668 cls.add_method('DeserializeFromString',
5669 'bool',
5670 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
5671 visibility='private', is_virtual=True)
5672 ## attribute.h (module 'core'): std::string ns3::EmptyAttributeValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
5673 cls.add_method('SerializeToString',
5674 'std::string',
5675 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
5676 is_const=True, visibility='private', is_virtual=True)
5677 return
5678
5679def register_Ns3EventImpl_methods(root_module, cls):
5680 ## event-impl.h (module 'core'): ns3::EventImpl::EventImpl(ns3::EventImpl const & arg0) [copy constructor]
5681 cls.add_constructor([param('ns3::EventImpl const &', 'arg0')])
5682 ## event-impl.h (module 'core'): ns3::EventImpl::EventImpl() [constructor]
5683 cls.add_constructor([])
5684 ## event-impl.h (module 'core'): void ns3::EventImpl::Cancel() [member function]
5685 cls.add_method('Cancel',
5686 'void',
5687 [])
5688 ## event-impl.h (module 'core'): void ns3::EventImpl::Invoke() [member function]
5689 cls.add_method('Invoke',
5690 'void',
5691 [])
5692 ## event-impl.h (module 'core'): bool ns3::EventImpl::IsCancelled() [member function]
5693 cls.add_method('IsCancelled',
5694 'bool',
5695 [])
5696 ## event-impl.h (module 'core'): void ns3::EventImpl::Notify() [member function]
5697 cls.add_method('Notify',
5698 'void',
5699 [],
5700 is_pure_virtual=True, visibility='protected', is_virtual=True)
5701 return
5702
5703def register_Ns3IntegerValue_methods(root_module, cls):
5704 ## integer.h (module 'core'): ns3::IntegerValue::IntegerValue() [constructor]
5705 cls.add_constructor([])
5706 ## integer.h (module 'core'): ns3::IntegerValue::IntegerValue(ns3::IntegerValue const & arg0) [copy constructor]
5707 cls.add_constructor([param('ns3::IntegerValue const &', 'arg0')])
5708 ## integer.h (module 'core'): ns3::IntegerValue::IntegerValue(int64_t const & value) [constructor]
5709 cls.add_constructor([param('int64_t const &', 'value')])
5710 ## integer.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::IntegerValue::Copy() const [member function]
5711 cls.add_method('Copy',
5712 'ns3::Ptr< ns3::AttributeValue >',
5713 [],
5714 is_const=True, is_virtual=True)
5715 ## integer.h (module 'core'): bool ns3::IntegerValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
5716 cls.add_method('DeserializeFromString',
5717 'bool',
5718 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
5719 is_virtual=True)
5720 ## integer.h (module 'core'): int64_t ns3::IntegerValue::Get() const [member function]
5721 cls.add_method('Get',
5722 'int64_t',
5723 [],
5724 is_const=True)
5725 ## integer.h (module 'core'): std::string ns3::IntegerValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
5726 cls.add_method('SerializeToString',
5727 'std::string',
5728 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
5729 is_const=True, is_virtual=True)
5730 ## integer.h (module 'core'): void ns3::IntegerValue::Set(int64_t const & value) [member function]
5731 cls.add_method('Set',
5732 'void',
5733 [param('int64_t const &', 'value')])
5734 return
5735
Alexander Afanasyev6f933532012-02-29 13:30:37 -08005736def register_Ns3IpL4Protocol_methods(root_module, cls):
5737 ## ip-l4-protocol.h (module 'internet'): ns3::IpL4Protocol::IpL4Protocol() [constructor]
5738 cls.add_constructor([])
5739 ## ip-l4-protocol.h (module 'internet'): ns3::IpL4Protocol::IpL4Protocol(ns3::IpL4Protocol const & arg0) [copy constructor]
5740 cls.add_constructor([param('ns3::IpL4Protocol const &', 'arg0')])
5741 ## 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]
5742 cls.add_method('GetDownTarget',
5743 '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 >',
5744 [],
5745 is_pure_virtual=True, is_const=True, is_virtual=True)
5746 ## 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]
5747 cls.add_method('GetDownTarget6',
5748 '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 >',
5749 [],
5750 is_pure_virtual=True, is_const=True, is_virtual=True)
5751 ## ip-l4-protocol.h (module 'internet'): int ns3::IpL4Protocol::GetProtocolNumber() const [member function]
5752 cls.add_method('GetProtocolNumber',
5753 'int',
5754 [],
5755 is_pure_virtual=True, is_const=True, is_virtual=True)
5756 ## ip-l4-protocol.h (module 'internet'): static ns3::TypeId ns3::IpL4Protocol::GetTypeId() [member function]
5757 cls.add_method('GetTypeId',
5758 'ns3::TypeId',
5759 [],
5760 is_static=True)
5761 ## 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]
5762 cls.add_method('Receive',
5763 'ns3::IpL4Protocol::RxStatus',
5764 [param('ns3::Ptr< ns3::Packet >', 'p'), param('ns3::Ipv4Header const &', 'header'), param('ns3::Ptr< ns3::Ipv4Interface >', 'incomingInterface')],
5765 is_pure_virtual=True, is_virtual=True)
5766 ## 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]
5767 cls.add_method('Receive',
5768 'ns3::IpL4Protocol::RxStatus',
5769 [param('ns3::Ptr< ns3::Packet >', 'p'), param('ns3::Ipv6Address &', 'src'), param('ns3::Ipv6Address &', 'dst'), param('ns3::Ptr< ns3::Ipv6Interface >', 'incomingInterface')],
5770 is_pure_virtual=True, is_virtual=True)
5771 ## 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]
5772 cls.add_method('ReceiveIcmp',
5773 'void',
5774 [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')],
5775 is_virtual=True)
5776 ## 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]
5777 cls.add_method('ReceiveIcmp',
5778 'void',
5779 [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')],
5780 is_virtual=True)
5781 ## 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]
5782 cls.add_method('SetDownTarget',
5783 'void',
5784 [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')],
5785 is_pure_virtual=True, is_virtual=True)
5786 ## 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]
5787 cls.add_method('SetDownTarget6',
5788 'void',
5789 [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')],
5790 is_pure_virtual=True, is_virtual=True)
5791 return
5792
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08005793def register_Ns3Ipv4_methods(root_module, cls):
5794 ## ipv4.h (module 'internet'): ns3::Ipv4::Ipv4(ns3::Ipv4 const & arg0) [copy constructor]
5795 cls.add_constructor([param('ns3::Ipv4 const &', 'arg0')])
5796 ## ipv4.h (module 'internet'): ns3::Ipv4::Ipv4() [constructor]
5797 cls.add_constructor([])
5798 ## ipv4.h (module 'internet'): bool ns3::Ipv4::AddAddress(uint32_t interface, ns3::Ipv4InterfaceAddress address) [member function]
5799 cls.add_method('AddAddress',
5800 'bool',
5801 [param('uint32_t', 'interface'), param('ns3::Ipv4InterfaceAddress', 'address')],
5802 is_pure_virtual=True, is_virtual=True)
5803 ## ipv4.h (module 'internet'): uint32_t ns3::Ipv4::AddInterface(ns3::Ptr<ns3::NetDevice> device) [member function]
5804 cls.add_method('AddInterface',
5805 'uint32_t',
5806 [param('ns3::Ptr< ns3::NetDevice >', 'device')],
5807 is_pure_virtual=True, is_virtual=True)
5808 ## ipv4.h (module 'internet'): ns3::Ipv4InterfaceAddress ns3::Ipv4::GetAddress(uint32_t interface, uint32_t addressIndex) const [member function]
5809 cls.add_method('GetAddress',
5810 'ns3::Ipv4InterfaceAddress',
5811 [param('uint32_t', 'interface'), param('uint32_t', 'addressIndex')],
5812 is_pure_virtual=True, is_const=True, is_virtual=True)
5813 ## ipv4.h (module 'internet'): int32_t ns3::Ipv4::GetInterfaceForAddress(ns3::Ipv4Address address) const [member function]
5814 cls.add_method('GetInterfaceForAddress',
5815 'int32_t',
5816 [param('ns3::Ipv4Address', 'address')],
5817 is_pure_virtual=True, is_const=True, is_virtual=True)
5818 ## ipv4.h (module 'internet'): int32_t ns3::Ipv4::GetInterfaceForDevice(ns3::Ptr<const ns3::NetDevice> device) const [member function]
5819 cls.add_method('GetInterfaceForDevice',
5820 'int32_t',
5821 [param('ns3::Ptr< ns3::NetDevice const >', 'device')],
5822 is_pure_virtual=True, is_const=True, is_virtual=True)
5823 ## ipv4.h (module 'internet'): int32_t ns3::Ipv4::GetInterfaceForPrefix(ns3::Ipv4Address address, ns3::Ipv4Mask mask) const [member function]
5824 cls.add_method('GetInterfaceForPrefix',
5825 'int32_t',
5826 [param('ns3::Ipv4Address', 'address'), param('ns3::Ipv4Mask', 'mask')],
5827 is_pure_virtual=True, is_const=True, is_virtual=True)
5828 ## ipv4.h (module 'internet'): uint16_t ns3::Ipv4::GetMetric(uint32_t interface) const [member function]
5829 cls.add_method('GetMetric',
5830 'uint16_t',
5831 [param('uint32_t', 'interface')],
5832 is_pure_virtual=True, is_const=True, is_virtual=True)
5833 ## ipv4.h (module 'internet'): uint16_t ns3::Ipv4::GetMtu(uint32_t interface) const [member function]
5834 cls.add_method('GetMtu',
5835 'uint16_t',
5836 [param('uint32_t', 'interface')],
5837 is_pure_virtual=True, is_const=True, is_virtual=True)
5838 ## ipv4.h (module 'internet'): uint32_t ns3::Ipv4::GetNAddresses(uint32_t interface) const [member function]
5839 cls.add_method('GetNAddresses',
5840 'uint32_t',
5841 [param('uint32_t', 'interface')],
5842 is_pure_virtual=True, is_const=True, is_virtual=True)
5843 ## ipv4.h (module 'internet'): uint32_t ns3::Ipv4::GetNInterfaces() const [member function]
5844 cls.add_method('GetNInterfaces',
5845 'uint32_t',
5846 [],
5847 is_pure_virtual=True, is_const=True, is_virtual=True)
5848 ## ipv4.h (module 'internet'): ns3::Ptr<ns3::NetDevice> ns3::Ipv4::GetNetDevice(uint32_t interface) [member function]
5849 cls.add_method('GetNetDevice',
5850 'ns3::Ptr< ns3::NetDevice >',
5851 [param('uint32_t', 'interface')],
5852 is_pure_virtual=True, is_virtual=True)
5853 ## ipv4.h (module 'internet'): ns3::Ptr<ns3::Ipv4RoutingProtocol> ns3::Ipv4::GetRoutingProtocol() const [member function]
5854 cls.add_method('GetRoutingProtocol',
5855 'ns3::Ptr< ns3::Ipv4RoutingProtocol >',
5856 [],
5857 is_pure_virtual=True, is_const=True, is_virtual=True)
5858 ## ipv4.h (module 'internet'): static ns3::TypeId ns3::Ipv4::GetTypeId() [member function]
5859 cls.add_method('GetTypeId',
5860 'ns3::TypeId',
5861 [],
5862 is_static=True)
Alexander Afanasyev6f933532012-02-29 13:30:37 -08005863 ## ipv4.h (module 'internet'): void ns3::Ipv4::Insert(ns3::Ptr<ns3::IpL4Protocol> protocol) [member function]
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08005864 cls.add_method('Insert',
5865 'void',
Alexander Afanasyev6f933532012-02-29 13:30:37 -08005866 [param('ns3::Ptr< ns3::IpL4Protocol >', 'protocol')],
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08005867 is_pure_virtual=True, is_virtual=True)
5868 ## ipv4.h (module 'internet'): bool ns3::Ipv4::IsDestinationAddress(ns3::Ipv4Address address, uint32_t iif) const [member function]
5869 cls.add_method('IsDestinationAddress',
5870 'bool',
5871 [param('ns3::Ipv4Address', 'address'), param('uint32_t', 'iif')],
5872 is_pure_virtual=True, is_const=True, is_virtual=True)
5873 ## ipv4.h (module 'internet'): bool ns3::Ipv4::IsForwarding(uint32_t interface) const [member function]
5874 cls.add_method('IsForwarding',
5875 'bool',
5876 [param('uint32_t', 'interface')],
5877 is_pure_virtual=True, is_const=True, is_virtual=True)
5878 ## ipv4.h (module 'internet'): bool ns3::Ipv4::IsUp(uint32_t interface) const [member function]
5879 cls.add_method('IsUp',
5880 'bool',
5881 [param('uint32_t', 'interface')],
5882 is_pure_virtual=True, is_const=True, is_virtual=True)
5883 ## ipv4.h (module 'internet'): bool ns3::Ipv4::RemoveAddress(uint32_t interface, uint32_t addressIndex) [member function]
5884 cls.add_method('RemoveAddress',
5885 'bool',
5886 [param('uint32_t', 'interface'), param('uint32_t', 'addressIndex')],
5887 is_pure_virtual=True, is_virtual=True)
5888 ## 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]
5889 cls.add_method('SelectSourceAddress',
5890 'ns3::Ipv4Address',
5891 [param('ns3::Ptr< ns3::NetDevice const >', 'device'), param('ns3::Ipv4Address', 'dst'), param('ns3::Ipv4InterfaceAddress::InterfaceAddressScope_e', 'scope')],
5892 is_pure_virtual=True, is_virtual=True)
5893 ## 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]
5894 cls.add_method('Send',
5895 'void',
5896 [param('ns3::Ptr< ns3::Packet >', 'packet'), param('ns3::Ipv4Address', 'source'), param('ns3::Ipv4Address', 'destination'), param('uint8_t', 'protocol'), param('ns3::Ptr< ns3::Ipv4Route >', 'route')],
5897 is_pure_virtual=True, is_virtual=True)
5898 ## ipv4.h (module 'internet'): void ns3::Ipv4::SetDown(uint32_t interface) [member function]
5899 cls.add_method('SetDown',
5900 'void',
5901 [param('uint32_t', 'interface')],
5902 is_pure_virtual=True, is_virtual=True)
5903 ## ipv4.h (module 'internet'): void ns3::Ipv4::SetForwarding(uint32_t interface, bool val) [member function]
5904 cls.add_method('SetForwarding',
5905 'void',
5906 [param('uint32_t', 'interface'), param('bool', 'val')],
5907 is_pure_virtual=True, is_virtual=True)
5908 ## ipv4.h (module 'internet'): void ns3::Ipv4::SetMetric(uint32_t interface, uint16_t metric) [member function]
5909 cls.add_method('SetMetric',
5910 'void',
5911 [param('uint32_t', 'interface'), param('uint16_t', 'metric')],
5912 is_pure_virtual=True, is_virtual=True)
5913 ## ipv4.h (module 'internet'): void ns3::Ipv4::SetRoutingProtocol(ns3::Ptr<ns3::Ipv4RoutingProtocol> routingProtocol) [member function]
5914 cls.add_method('SetRoutingProtocol',
5915 'void',
5916 [param('ns3::Ptr< ns3::Ipv4RoutingProtocol >', 'routingProtocol')],
5917 is_pure_virtual=True, is_virtual=True)
5918 ## ipv4.h (module 'internet'): void ns3::Ipv4::SetUp(uint32_t interface) [member function]
5919 cls.add_method('SetUp',
5920 'void',
5921 [param('uint32_t', 'interface')],
5922 is_pure_virtual=True, is_virtual=True)
5923 ## ipv4.h (module 'internet'): ns3::Ipv4::IF_ANY [variable]
5924 cls.add_static_attribute('IF_ANY', 'uint32_t const', is_const=True)
5925 ## ipv4.h (module 'internet'): bool ns3::Ipv4::GetIpForward() const [member function]
5926 cls.add_method('GetIpForward',
5927 'bool',
5928 [],
5929 is_pure_virtual=True, is_const=True, visibility='private', is_virtual=True)
5930 ## ipv4.h (module 'internet'): bool ns3::Ipv4::GetWeakEsModel() const [member function]
5931 cls.add_method('GetWeakEsModel',
5932 'bool',
5933 [],
5934 is_pure_virtual=True, is_const=True, visibility='private', is_virtual=True)
5935 ## ipv4.h (module 'internet'): void ns3::Ipv4::SetIpForward(bool forward) [member function]
5936 cls.add_method('SetIpForward',
5937 'void',
5938 [param('bool', 'forward')],
5939 is_pure_virtual=True, visibility='private', is_virtual=True)
5940 ## ipv4.h (module 'internet'): void ns3::Ipv4::SetWeakEsModel(bool model) [member function]
5941 cls.add_method('SetWeakEsModel',
5942 'void',
5943 [param('bool', 'model')],
5944 is_pure_virtual=True, visibility='private', is_virtual=True)
5945 return
5946
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08005947def register_Ns3Ipv4AddressChecker_methods(root_module, cls):
5948 ## ipv4-address.h (module 'network'): ns3::Ipv4AddressChecker::Ipv4AddressChecker() [constructor]
5949 cls.add_constructor([])
5950 ## ipv4-address.h (module 'network'): ns3::Ipv4AddressChecker::Ipv4AddressChecker(ns3::Ipv4AddressChecker const & arg0) [copy constructor]
5951 cls.add_constructor([param('ns3::Ipv4AddressChecker const &', 'arg0')])
5952 return
5953
5954def register_Ns3Ipv4AddressValue_methods(root_module, cls):
5955 ## ipv4-address.h (module 'network'): ns3::Ipv4AddressValue::Ipv4AddressValue() [constructor]
5956 cls.add_constructor([])
5957 ## ipv4-address.h (module 'network'): ns3::Ipv4AddressValue::Ipv4AddressValue(ns3::Ipv4AddressValue const & arg0) [copy constructor]
5958 cls.add_constructor([param('ns3::Ipv4AddressValue const &', 'arg0')])
5959 ## ipv4-address.h (module 'network'): ns3::Ipv4AddressValue::Ipv4AddressValue(ns3::Ipv4Address const & value) [constructor]
5960 cls.add_constructor([param('ns3::Ipv4Address const &', 'value')])
5961 ## ipv4-address.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::Ipv4AddressValue::Copy() const [member function]
5962 cls.add_method('Copy',
5963 'ns3::Ptr< ns3::AttributeValue >',
5964 [],
5965 is_const=True, is_virtual=True)
5966 ## ipv4-address.h (module 'network'): bool ns3::Ipv4AddressValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
5967 cls.add_method('DeserializeFromString',
5968 'bool',
5969 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
5970 is_virtual=True)
5971 ## ipv4-address.h (module 'network'): ns3::Ipv4Address ns3::Ipv4AddressValue::Get() const [member function]
5972 cls.add_method('Get',
5973 'ns3::Ipv4Address',
5974 [],
5975 is_const=True)
5976 ## ipv4-address.h (module 'network'): std::string ns3::Ipv4AddressValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
5977 cls.add_method('SerializeToString',
5978 'std::string',
5979 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
5980 is_const=True, is_virtual=True)
5981 ## ipv4-address.h (module 'network'): void ns3::Ipv4AddressValue::Set(ns3::Ipv4Address const & value) [member function]
5982 cls.add_method('Set',
5983 'void',
5984 [param('ns3::Ipv4Address const &', 'value')])
5985 return
5986
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08005987def register_Ns3Ipv4AppTracer_methods(root_module, cls):
5988 cls.add_output_stream_operator()
5989 ## ipv4-app-tracer.h (module 'NDNabstraction'): ns3::Ipv4AppTracer::Ipv4AppTracer(ns3::Ipv4AppTracer const & arg0) [copy constructor]
5990 cls.add_constructor([param('ns3::Ipv4AppTracer const &', 'arg0')])
5991 ## ipv4-app-tracer.h (module 'NDNabstraction'): ns3::Ipv4AppTracer::Ipv4AppTracer(ns3::Ptr<ns3::Node> node, std::string const & appId="*") [constructor]
5992 cls.add_constructor([param('ns3::Ptr< ns3::Node >', 'node'), param('std::string const &', 'appId', default_value='"*"')])
5993 ## ipv4-app-tracer.h (module 'NDNabstraction'): void ns3::Ipv4AppTracer::Connect() [member function]
5994 cls.add_method('Connect',
5995 'void',
5996 [])
5997 ## ipv4-app-tracer.h (module 'NDNabstraction'): void ns3::Ipv4AppTracer::Print(std::ostream & os) const [member function]
5998 cls.add_method('Print',
5999 'void',
6000 [param('std::ostream &', 'os')],
6001 is_pure_virtual=True, is_const=True, is_virtual=True)
6002 ## ipv4-app-tracer.h (module 'NDNabstraction'): void ns3::Ipv4AppTracer::PrintHeader(std::ostream & os) const [member function]
6003 cls.add_method('PrintHeader',
6004 'void',
6005 [param('std::ostream &', 'os')],
6006 is_pure_virtual=True, is_const=True, is_virtual=True)
6007 ## 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]
6008 cls.add_method('Rx',
6009 'void',
6010 [param('std::string', 'context'), param('ns3::Ipv4Header const &', 'arg1'), param('ns3::Ptr< ns3::Packet const >', 'arg2'), param('uint32_t', 'arg3')],
6011 is_pure_virtual=True, is_virtual=True)
6012 ## 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]
6013 cls.add_method('Tx',
6014 'void',
6015 [param('std::string', 'context'), param('ns3::Ipv4Header const &', 'arg1'), param('ns3::Ptr< ns3::Packet const >', 'arg2'), param('uint32_t', 'arg3')],
6016 is_pure_virtual=True, is_virtual=True)
6017 return
6018
Alexander Afanasyev03d92e42012-02-01 21:06:53 -08006019def register_Ns3Ipv4L3Protocol_methods(root_module, cls):
6020 ## ipv4-l3-protocol.h (module 'internet'): ns3::Ipv4L3Protocol::Ipv4L3Protocol() [constructor]
6021 cls.add_constructor([])
6022 ## ipv4-l3-protocol.h (module 'internet'): bool ns3::Ipv4L3Protocol::AddAddress(uint32_t i, ns3::Ipv4InterfaceAddress address) [member function]
6023 cls.add_method('AddAddress',
6024 'bool',
6025 [param('uint32_t', 'i'), param('ns3::Ipv4InterfaceAddress', 'address')],
6026 is_virtual=True)
6027 ## ipv4-l3-protocol.h (module 'internet'): uint32_t ns3::Ipv4L3Protocol::AddInterface(ns3::Ptr<ns3::NetDevice> device) [member function]
6028 cls.add_method('AddInterface',
6029 'uint32_t',
6030 [param('ns3::Ptr< ns3::NetDevice >', 'device')],
6031 is_virtual=True)
6032 ## ipv4-l3-protocol.h (module 'internet'): ns3::Ptr<ns3::Socket> ns3::Ipv4L3Protocol::CreateRawSocket() [member function]
6033 cls.add_method('CreateRawSocket',
6034 'ns3::Ptr< ns3::Socket >',
6035 [])
6036 ## ipv4-l3-protocol.h (module 'internet'): void ns3::Ipv4L3Protocol::DeleteRawSocket(ns3::Ptr<ns3::Socket> socket) [member function]
6037 cls.add_method('DeleteRawSocket',
6038 'void',
6039 [param('ns3::Ptr< ns3::Socket >', 'socket')])
6040 ## ipv4-l3-protocol.h (module 'internet'): ns3::Ipv4InterfaceAddress ns3::Ipv4L3Protocol::GetAddress(uint32_t interfaceIndex, uint32_t addressIndex) const [member function]
6041 cls.add_method('GetAddress',
6042 'ns3::Ipv4InterfaceAddress',
6043 [param('uint32_t', 'interfaceIndex'), param('uint32_t', 'addressIndex')],
6044 is_const=True, is_virtual=True)
6045 ## ipv4-l3-protocol.h (module 'internet'): ns3::Ptr<ns3::Ipv4Interface> ns3::Ipv4L3Protocol::GetInterface(uint32_t i) const [member function]
6046 cls.add_method('GetInterface',
6047 'ns3::Ptr< ns3::Ipv4Interface >',
6048 [param('uint32_t', 'i')],
6049 is_const=True)
6050 ## ipv4-l3-protocol.h (module 'internet'): int32_t ns3::Ipv4L3Protocol::GetInterfaceForAddress(ns3::Ipv4Address addr) const [member function]
6051 cls.add_method('GetInterfaceForAddress',
6052 'int32_t',
6053 [param('ns3::Ipv4Address', 'addr')],
6054 is_const=True, is_virtual=True)
6055 ## ipv4-l3-protocol.h (module 'internet'): int32_t ns3::Ipv4L3Protocol::GetInterfaceForDevice(ns3::Ptr<const ns3::NetDevice> device) const [member function]
6056 cls.add_method('GetInterfaceForDevice',
6057 'int32_t',
6058 [param('ns3::Ptr< ns3::NetDevice const >', 'device')],
6059 is_const=True, is_virtual=True)
6060 ## ipv4-l3-protocol.h (module 'internet'): int32_t ns3::Ipv4L3Protocol::GetInterfaceForPrefix(ns3::Ipv4Address addr, ns3::Ipv4Mask mask) const [member function]
6061 cls.add_method('GetInterfaceForPrefix',
6062 'int32_t',
6063 [param('ns3::Ipv4Address', 'addr'), param('ns3::Ipv4Mask', 'mask')],
6064 is_const=True, is_virtual=True)
6065 ## ipv4-l3-protocol.h (module 'internet'): uint16_t ns3::Ipv4L3Protocol::GetMetric(uint32_t i) const [member function]
6066 cls.add_method('GetMetric',
6067 'uint16_t',
6068 [param('uint32_t', 'i')],
6069 is_const=True, is_virtual=True)
6070 ## ipv4-l3-protocol.h (module 'internet'): uint16_t ns3::Ipv4L3Protocol::GetMtu(uint32_t i) const [member function]
6071 cls.add_method('GetMtu',
6072 'uint16_t',
6073 [param('uint32_t', 'i')],
6074 is_const=True, is_virtual=True)
6075 ## ipv4-l3-protocol.h (module 'internet'): uint32_t ns3::Ipv4L3Protocol::GetNAddresses(uint32_t interface) const [member function]
6076 cls.add_method('GetNAddresses',
6077 'uint32_t',
6078 [param('uint32_t', 'interface')],
6079 is_const=True, is_virtual=True)
6080 ## ipv4-l3-protocol.h (module 'internet'): uint32_t ns3::Ipv4L3Protocol::GetNInterfaces() const [member function]
6081 cls.add_method('GetNInterfaces',
6082 'uint32_t',
6083 [],
6084 is_const=True, is_virtual=True)
6085 ## ipv4-l3-protocol.h (module 'internet'): ns3::Ptr<ns3::NetDevice> ns3::Ipv4L3Protocol::GetNetDevice(uint32_t i) [member function]
6086 cls.add_method('GetNetDevice',
6087 'ns3::Ptr< ns3::NetDevice >',
6088 [param('uint32_t', 'i')],
6089 is_virtual=True)
Alexander Afanasyev6f933532012-02-29 13:30:37 -08006090 ## 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 -08006091 cls.add_method('GetProtocol',
Alexander Afanasyev6f933532012-02-29 13:30:37 -08006092 'ns3::Ptr< ns3::IpL4Protocol >',
Alexander Afanasyev03d92e42012-02-01 21:06:53 -08006093 [param('int', 'protocolNumber')],
6094 is_const=True)
6095 ## ipv4-l3-protocol.h (module 'internet'): ns3::Ptr<ns3::Ipv4RoutingProtocol> ns3::Ipv4L3Protocol::GetRoutingProtocol() const [member function]
6096 cls.add_method('GetRoutingProtocol',
6097 'ns3::Ptr< ns3::Ipv4RoutingProtocol >',
6098 [],
6099 is_const=True, is_virtual=True)
6100 ## ipv4-l3-protocol.h (module 'internet'): static ns3::TypeId ns3::Ipv4L3Protocol::GetTypeId() [member function]
6101 cls.add_method('GetTypeId',
6102 'ns3::TypeId',
6103 [],
6104 is_static=True)
Alexander Afanasyev6f933532012-02-29 13:30:37 -08006105 ## ipv4-l3-protocol.h (module 'internet'): void ns3::Ipv4L3Protocol::Insert(ns3::Ptr<ns3::IpL4Protocol> protocol) [member function]
Alexander Afanasyev03d92e42012-02-01 21:06:53 -08006106 cls.add_method('Insert',
6107 'void',
Alexander Afanasyev6f933532012-02-29 13:30:37 -08006108 [param('ns3::Ptr< ns3::IpL4Protocol >', 'protocol')],
Alexander Afanasyev03d92e42012-02-01 21:06:53 -08006109 is_virtual=True)
6110 ## ipv4-l3-protocol.h (module 'internet'): bool ns3::Ipv4L3Protocol::IsDestinationAddress(ns3::Ipv4Address address, uint32_t iif) const [member function]
6111 cls.add_method('IsDestinationAddress',
6112 'bool',
6113 [param('ns3::Ipv4Address', 'address'), param('uint32_t', 'iif')],
6114 is_const=True, is_virtual=True)
6115 ## ipv4-l3-protocol.h (module 'internet'): bool ns3::Ipv4L3Protocol::IsForwarding(uint32_t i) const [member function]
6116 cls.add_method('IsForwarding',
6117 'bool',
6118 [param('uint32_t', 'i')],
6119 is_const=True, is_virtual=True)
6120 ## ipv4-l3-protocol.h (module 'internet'): bool ns3::Ipv4L3Protocol::IsUp(uint32_t i) const [member function]
6121 cls.add_method('IsUp',
6122 'bool',
6123 [param('uint32_t', 'i')],
6124 is_const=True, is_virtual=True)
6125 ## 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]
6126 cls.add_method('Receive',
6127 'void',
6128 [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 -08006129 ## ipv4-l3-protocol.h (module 'internet'): void ns3::Ipv4L3Protocol::Remove(ns3::Ptr<ns3::IpL4Protocol> protocol) [member function]
Alexander Afanasyev03d92e42012-02-01 21:06:53 -08006130 cls.add_method('Remove',
6131 'void',
Alexander Afanasyev6f933532012-02-29 13:30:37 -08006132 [param('ns3::Ptr< ns3::IpL4Protocol >', 'protocol')])
Alexander Afanasyev03d92e42012-02-01 21:06:53 -08006133 ## ipv4-l3-protocol.h (module 'internet'): bool ns3::Ipv4L3Protocol::RemoveAddress(uint32_t interfaceIndex, uint32_t addressIndex) [member function]
6134 cls.add_method('RemoveAddress',
6135 'bool',
6136 [param('uint32_t', 'interfaceIndex'), param('uint32_t', 'addressIndex')],
6137 is_virtual=True)
6138 ## 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]
6139 cls.add_method('SelectSourceAddress',
6140 'ns3::Ipv4Address',
6141 [param('ns3::Ptr< ns3::NetDevice const >', 'device'), param('ns3::Ipv4Address', 'dst'), param('ns3::Ipv4InterfaceAddress::InterfaceAddressScope_e', 'scope')],
6142 is_virtual=True)
6143 ## 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]
6144 cls.add_method('Send',
6145 'void',
6146 [param('ns3::Ptr< ns3::Packet >', 'packet'), param('ns3::Ipv4Address', 'source'), param('ns3::Ipv4Address', 'destination'), param('uint8_t', 'protocol'), param('ns3::Ptr< ns3::Ipv4Route >', 'route')],
6147 is_virtual=True)
6148 ## 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]
6149 cls.add_method('SendWithHeader',
6150 'void',
6151 [param('ns3::Ptr< ns3::Packet >', 'packet'), param('ns3::Ipv4Header', 'ipHeader'), param('ns3::Ptr< ns3::Ipv4Route >', 'route')])
6152 ## ipv4-l3-protocol.h (module 'internet'): void ns3::Ipv4L3Protocol::SetDefaultTtl(uint8_t ttl) [member function]
6153 cls.add_method('SetDefaultTtl',
6154 'void',
6155 [param('uint8_t', 'ttl')])
6156 ## ipv4-l3-protocol.h (module 'internet'): void ns3::Ipv4L3Protocol::SetDown(uint32_t i) [member function]
6157 cls.add_method('SetDown',
6158 'void',
6159 [param('uint32_t', 'i')],
6160 is_virtual=True)
6161 ## ipv4-l3-protocol.h (module 'internet'): void ns3::Ipv4L3Protocol::SetForwarding(uint32_t i, bool val) [member function]
6162 cls.add_method('SetForwarding',
6163 'void',
6164 [param('uint32_t', 'i'), param('bool', 'val')],
6165 is_virtual=True)
6166 ## ipv4-l3-protocol.h (module 'internet'): void ns3::Ipv4L3Protocol::SetMetric(uint32_t i, uint16_t metric) [member function]
6167 cls.add_method('SetMetric',
6168 'void',
6169 [param('uint32_t', 'i'), param('uint16_t', 'metric')],
6170 is_virtual=True)
6171 ## ipv4-l3-protocol.h (module 'internet'): void ns3::Ipv4L3Protocol::SetNode(ns3::Ptr<ns3::Node> node) [member function]
6172 cls.add_method('SetNode',
6173 'void',
6174 [param('ns3::Ptr< ns3::Node >', 'node')])
6175 ## ipv4-l3-protocol.h (module 'internet'): void ns3::Ipv4L3Protocol::SetRoutingProtocol(ns3::Ptr<ns3::Ipv4RoutingProtocol> routingProtocol) [member function]
6176 cls.add_method('SetRoutingProtocol',
6177 'void',
6178 [param('ns3::Ptr< ns3::Ipv4RoutingProtocol >', 'routingProtocol')],
6179 is_virtual=True)
6180 ## ipv4-l3-protocol.h (module 'internet'): void ns3::Ipv4L3Protocol::SetUp(uint32_t i) [member function]
6181 cls.add_method('SetUp',
6182 'void',
6183 [param('uint32_t', 'i')],
6184 is_virtual=True)
6185 ## ipv4-l3-protocol.h (module 'internet'): ns3::Ipv4L3Protocol::PROT_NUMBER [variable]
6186 cls.add_static_attribute('PROT_NUMBER', 'uint16_t const', is_const=True)
6187 ## ipv4-l3-protocol.h (module 'internet'): void ns3::Ipv4L3Protocol::DoDispose() [member function]
6188 cls.add_method('DoDispose',
6189 'void',
6190 [],
6191 visibility='protected', is_virtual=True)
6192 ## ipv4-l3-protocol.h (module 'internet'): void ns3::Ipv4L3Protocol::NotifyNewAggregate() [member function]
6193 cls.add_method('NotifyNewAggregate',
6194 'void',
6195 [],
6196 visibility='protected', is_virtual=True)
6197 ## ipv4-l3-protocol.h (module 'internet'): bool ns3::Ipv4L3Protocol::GetIpForward() const [member function]
6198 cls.add_method('GetIpForward',
6199 'bool',
6200 [],
6201 is_const=True, visibility='private', is_virtual=True)
6202 ## ipv4-l3-protocol.h (module 'internet'): bool ns3::Ipv4L3Protocol::GetWeakEsModel() const [member function]
6203 cls.add_method('GetWeakEsModel',
6204 'bool',
6205 [],
6206 is_const=True, visibility='private', is_virtual=True)
6207 ## ipv4-l3-protocol.h (module 'internet'): void ns3::Ipv4L3Protocol::SetIpForward(bool forward) [member function]
6208 cls.add_method('SetIpForward',
6209 'void',
6210 [param('bool', 'forward')],
6211 visibility='private', is_virtual=True)
6212 ## ipv4-l3-protocol.h (module 'internet'): void ns3::Ipv4L3Protocol::SetWeakEsModel(bool model) [member function]
6213 cls.add_method('SetWeakEsModel',
6214 'void',
6215 [param('bool', 'model')],
6216 visibility='private', is_virtual=True)
6217 return
6218
6219def register_Ns3Ipv4L3Tracer_methods(root_module, cls):
6220 cls.add_output_stream_operator()
6221 ## ipv4-l3-tracer.h (module 'NDNabstraction'): ns3::Ipv4L3Tracer::Ipv4L3Tracer(ns3::Ipv4L3Tracer const & arg0) [copy constructor]
6222 cls.add_constructor([param('ns3::Ipv4L3Tracer const &', 'arg0')])
6223 ## ipv4-l3-tracer.h (module 'NDNabstraction'): ns3::Ipv4L3Tracer::Ipv4L3Tracer(ns3::Ptr<ns3::Node> node) [constructor]
6224 cls.add_constructor([param('ns3::Ptr< ns3::Node >', 'node')])
6225 ## ipv4-l3-tracer.h (module 'NDNabstraction'): void ns3::Ipv4L3Tracer::Connect() [member function]
6226 cls.add_method('Connect',
6227 'void',
6228 [])
6229 ## 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]
6230 cls.add_method('Drop',
6231 'void',
6232 [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')],
6233 is_pure_virtual=True, is_virtual=True)
6234 ## ipv4-l3-tracer.h (module 'NDNabstraction'): void ns3::Ipv4L3Tracer::Print(std::ostream & os) const [member function]
6235 cls.add_method('Print',
6236 'void',
6237 [param('std::ostream &', 'os')],
6238 is_pure_virtual=True, is_const=True, is_virtual=True)
6239 ## ipv4-l3-tracer.h (module 'NDNabstraction'): void ns3::Ipv4L3Tracer::PrintHeader(std::ostream & os) const [member function]
6240 cls.add_method('PrintHeader',
6241 'void',
6242 [param('std::ostream &', 'os')],
6243 is_pure_virtual=True, is_const=True, is_virtual=True)
6244 ## 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]
6245 cls.add_method('Rx',
6246 'void',
6247 [param('std::string', 'context'), param('ns3::Ptr< ns3::Packet const >', 'arg1'), param('ns3::Ptr< ns3::Ipv4 >', 'arg2'), param('uint32_t', 'arg3')],
6248 is_pure_virtual=True, is_virtual=True)
6249 ## 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]
6250 cls.add_method('Tx',
6251 'void',
6252 [param('std::string', 'context'), param('ns3::Ptr< ns3::Packet const >', 'arg1'), param('ns3::Ptr< ns3::Ipv4 >', 'arg2'), param('uint32_t', 'arg3')],
6253 is_pure_virtual=True, is_virtual=True)
6254 return
6255
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08006256def register_Ns3Ipv4MaskChecker_methods(root_module, cls):
6257 ## ipv4-address.h (module 'network'): ns3::Ipv4MaskChecker::Ipv4MaskChecker() [constructor]
6258 cls.add_constructor([])
6259 ## ipv4-address.h (module 'network'): ns3::Ipv4MaskChecker::Ipv4MaskChecker(ns3::Ipv4MaskChecker const & arg0) [copy constructor]
6260 cls.add_constructor([param('ns3::Ipv4MaskChecker const &', 'arg0')])
6261 return
6262
6263def register_Ns3Ipv4MaskValue_methods(root_module, cls):
6264 ## ipv4-address.h (module 'network'): ns3::Ipv4MaskValue::Ipv4MaskValue() [constructor]
6265 cls.add_constructor([])
6266 ## ipv4-address.h (module 'network'): ns3::Ipv4MaskValue::Ipv4MaskValue(ns3::Ipv4MaskValue const & arg0) [copy constructor]
6267 cls.add_constructor([param('ns3::Ipv4MaskValue const &', 'arg0')])
6268 ## ipv4-address.h (module 'network'): ns3::Ipv4MaskValue::Ipv4MaskValue(ns3::Ipv4Mask const & value) [constructor]
6269 cls.add_constructor([param('ns3::Ipv4Mask const &', 'value')])
6270 ## ipv4-address.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::Ipv4MaskValue::Copy() const [member function]
6271 cls.add_method('Copy',
6272 'ns3::Ptr< ns3::AttributeValue >',
6273 [],
6274 is_const=True, is_virtual=True)
6275 ## ipv4-address.h (module 'network'): bool ns3::Ipv4MaskValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
6276 cls.add_method('DeserializeFromString',
6277 'bool',
6278 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
6279 is_virtual=True)
6280 ## ipv4-address.h (module 'network'): ns3::Ipv4Mask ns3::Ipv4MaskValue::Get() const [member function]
6281 cls.add_method('Get',
6282 'ns3::Ipv4Mask',
6283 [],
6284 is_const=True)
6285 ## ipv4-address.h (module 'network'): std::string ns3::Ipv4MaskValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
6286 cls.add_method('SerializeToString',
6287 'std::string',
6288 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
6289 is_const=True, is_virtual=True)
6290 ## ipv4-address.h (module 'network'): void ns3::Ipv4MaskValue::Set(ns3::Ipv4Mask const & value) [member function]
6291 cls.add_method('Set',
6292 'void',
6293 [param('ns3::Ipv4Mask const &', 'value')])
6294 return
6295
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08006296def register_Ns3Ipv4MulticastRoute_methods(root_module, cls):
6297 ## ipv4-route.h (module 'internet'): ns3::Ipv4MulticastRoute::Ipv4MulticastRoute(ns3::Ipv4MulticastRoute const & arg0) [copy constructor]
6298 cls.add_constructor([param('ns3::Ipv4MulticastRoute const &', 'arg0')])
6299 ## ipv4-route.h (module 'internet'): ns3::Ipv4MulticastRoute::Ipv4MulticastRoute() [constructor]
6300 cls.add_constructor([])
6301 ## ipv4-route.h (module 'internet'): ns3::Ipv4Address ns3::Ipv4MulticastRoute::GetGroup() const [member function]
6302 cls.add_method('GetGroup',
6303 'ns3::Ipv4Address',
6304 [],
6305 is_const=True)
6306 ## ipv4-route.h (module 'internet'): ns3::Ipv4Address ns3::Ipv4MulticastRoute::GetOrigin() const [member function]
6307 cls.add_method('GetOrigin',
6308 'ns3::Ipv4Address',
6309 [],
6310 is_const=True)
6311 ## ipv4-route.h (module 'internet'): uint32_t ns3::Ipv4MulticastRoute::GetOutputTtl(uint32_t oif) [member function]
6312 cls.add_method('GetOutputTtl',
6313 'uint32_t',
6314 [param('uint32_t', 'oif')],
6315 deprecated=True)
6316 ## 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]
6317 cls.add_method('GetOutputTtlMap',
6318 'std::map< unsigned int, unsigned int >',
6319 [],
6320 is_const=True)
6321 ## ipv4-route.h (module 'internet'): uint32_t ns3::Ipv4MulticastRoute::GetParent() const [member function]
6322 cls.add_method('GetParent',
6323 'uint32_t',
6324 [],
6325 is_const=True)
6326 ## ipv4-route.h (module 'internet'): void ns3::Ipv4MulticastRoute::SetGroup(ns3::Ipv4Address const group) [member function]
6327 cls.add_method('SetGroup',
6328 'void',
6329 [param('ns3::Ipv4Address const', 'group')])
6330 ## ipv4-route.h (module 'internet'): void ns3::Ipv4MulticastRoute::SetOrigin(ns3::Ipv4Address const origin) [member function]
6331 cls.add_method('SetOrigin',
6332 'void',
6333 [param('ns3::Ipv4Address const', 'origin')])
6334 ## ipv4-route.h (module 'internet'): void ns3::Ipv4MulticastRoute::SetOutputTtl(uint32_t oif, uint32_t ttl) [member function]
6335 cls.add_method('SetOutputTtl',
6336 'void',
6337 [param('uint32_t', 'oif'), param('uint32_t', 'ttl')])
6338 ## ipv4-route.h (module 'internet'): void ns3::Ipv4MulticastRoute::SetParent(uint32_t iif) [member function]
6339 cls.add_method('SetParent',
6340 'void',
6341 [param('uint32_t', 'iif')])
6342 ## ipv4-route.h (module 'internet'): ns3::Ipv4MulticastRoute::MAX_INTERFACES [variable]
6343 cls.add_static_attribute('MAX_INTERFACES', 'uint32_t const', is_const=True)
6344 ## ipv4-route.h (module 'internet'): ns3::Ipv4MulticastRoute::MAX_TTL [variable]
6345 cls.add_static_attribute('MAX_TTL', 'uint32_t const', is_const=True)
6346 return
6347
6348def register_Ns3Ipv4Route_methods(root_module, cls):
6349 cls.add_output_stream_operator()
6350 ## ipv4-route.h (module 'internet'): ns3::Ipv4Route::Ipv4Route(ns3::Ipv4Route const & arg0) [copy constructor]
6351 cls.add_constructor([param('ns3::Ipv4Route const &', 'arg0')])
6352 ## ipv4-route.h (module 'internet'): ns3::Ipv4Route::Ipv4Route() [constructor]
6353 cls.add_constructor([])
6354 ## ipv4-route.h (module 'internet'): ns3::Ipv4Address ns3::Ipv4Route::GetDestination() const [member function]
6355 cls.add_method('GetDestination',
6356 'ns3::Ipv4Address',
6357 [],
6358 is_const=True)
6359 ## ipv4-route.h (module 'internet'): ns3::Ipv4Address ns3::Ipv4Route::GetGateway() const [member function]
6360 cls.add_method('GetGateway',
6361 'ns3::Ipv4Address',
6362 [],
6363 is_const=True)
6364 ## ipv4-route.h (module 'internet'): ns3::Ptr<ns3::NetDevice> ns3::Ipv4Route::GetOutputDevice() const [member function]
6365 cls.add_method('GetOutputDevice',
6366 'ns3::Ptr< ns3::NetDevice >',
6367 [],
6368 is_const=True)
6369 ## ipv4-route.h (module 'internet'): ns3::Ipv4Address ns3::Ipv4Route::GetSource() const [member function]
6370 cls.add_method('GetSource',
6371 'ns3::Ipv4Address',
6372 [],
6373 is_const=True)
6374 ## ipv4-route.h (module 'internet'): void ns3::Ipv4Route::SetDestination(ns3::Ipv4Address dest) [member function]
6375 cls.add_method('SetDestination',
6376 'void',
6377 [param('ns3::Ipv4Address', 'dest')])
6378 ## ipv4-route.h (module 'internet'): void ns3::Ipv4Route::SetGateway(ns3::Ipv4Address gw) [member function]
6379 cls.add_method('SetGateway',
6380 'void',
6381 [param('ns3::Ipv4Address', 'gw')])
6382 ## ipv4-route.h (module 'internet'): void ns3::Ipv4Route::SetOutputDevice(ns3::Ptr<ns3::NetDevice> outputDevice) [member function]
6383 cls.add_method('SetOutputDevice',
6384 'void',
6385 [param('ns3::Ptr< ns3::NetDevice >', 'outputDevice')])
6386 ## ipv4-route.h (module 'internet'): void ns3::Ipv4Route::SetSource(ns3::Ipv4Address src) [member function]
6387 cls.add_method('SetSource',
6388 'void',
6389 [param('ns3::Ipv4Address', 'src')])
6390 return
6391
Alexander Afanasyev03d92e42012-02-01 21:06:53 -08006392def register_Ns3Ipv4RoutingProtocol_methods(root_module, cls):
6393 ## ipv4-routing-protocol.h (module 'internet'): ns3::Ipv4RoutingProtocol::Ipv4RoutingProtocol() [constructor]
6394 cls.add_constructor([])
6395 ## ipv4-routing-protocol.h (module 'internet'): ns3::Ipv4RoutingProtocol::Ipv4RoutingProtocol(ns3::Ipv4RoutingProtocol const & arg0) [copy constructor]
6396 cls.add_constructor([param('ns3::Ipv4RoutingProtocol const &', 'arg0')])
6397 ## ipv4-routing-protocol.h (module 'internet'): static ns3::TypeId ns3::Ipv4RoutingProtocol::GetTypeId() [member function]
6398 cls.add_method('GetTypeId',
6399 'ns3::TypeId',
6400 [],
6401 is_static=True)
6402 ## ipv4-routing-protocol.h (module 'internet'): void ns3::Ipv4RoutingProtocol::NotifyAddAddress(uint32_t interface, ns3::Ipv4InterfaceAddress address) [member function]
6403 cls.add_method('NotifyAddAddress',
6404 'void',
6405 [param('uint32_t', 'interface'), param('ns3::Ipv4InterfaceAddress', 'address')],
6406 is_pure_virtual=True, is_virtual=True)
6407 ## ipv4-routing-protocol.h (module 'internet'): void ns3::Ipv4RoutingProtocol::NotifyInterfaceDown(uint32_t interface) [member function]
6408 cls.add_method('NotifyInterfaceDown',
6409 'void',
6410 [param('uint32_t', 'interface')],
6411 is_pure_virtual=True, is_virtual=True)
6412 ## ipv4-routing-protocol.h (module 'internet'): void ns3::Ipv4RoutingProtocol::NotifyInterfaceUp(uint32_t interface) [member function]
6413 cls.add_method('NotifyInterfaceUp',
6414 'void',
6415 [param('uint32_t', 'interface')],
6416 is_pure_virtual=True, is_virtual=True)
6417 ## ipv4-routing-protocol.h (module 'internet'): void ns3::Ipv4RoutingProtocol::NotifyRemoveAddress(uint32_t interface, ns3::Ipv4InterfaceAddress address) [member function]
6418 cls.add_method('NotifyRemoveAddress',
6419 'void',
6420 [param('uint32_t', 'interface'), param('ns3::Ipv4InterfaceAddress', 'address')],
6421 is_pure_virtual=True, is_virtual=True)
6422 ## ipv4-routing-protocol.h (module 'internet'): void ns3::Ipv4RoutingProtocol::PrintRoutingTable(ns3::Ptr<ns3::OutputStreamWrapper> stream) const [member function]
6423 cls.add_method('PrintRoutingTable',
6424 'void',
6425 [param('ns3::Ptr< ns3::OutputStreamWrapper >', 'stream')],
6426 is_pure_virtual=True, is_const=True, is_virtual=True)
6427 ## 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]
6428 cls.add_method('RouteInput',
6429 'bool',
6430 [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')],
6431 is_pure_virtual=True, is_virtual=True)
6432 ## 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]
6433 cls.add_method('RouteOutput',
6434 'ns3::Ptr< ns3::Ipv4Route >',
6435 [param('ns3::Ptr< ns3::Packet >', 'p'), param('ns3::Ipv4Header const &', 'header'), param('ns3::Ptr< ns3::NetDevice >', 'oif'), param('ns3::Socket::SocketErrno &', 'sockerr')],
6436 is_pure_virtual=True, is_virtual=True)
6437 ## ipv4-routing-protocol.h (module 'internet'): void ns3::Ipv4RoutingProtocol::SetIpv4(ns3::Ptr<ns3::Ipv4> ipv4) [member function]
6438 cls.add_method('SetIpv4',
6439 'void',
6440 [param('ns3::Ptr< ns3::Ipv4 >', 'ipv4')],
6441 is_pure_virtual=True, is_virtual=True)
6442 return
6443
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08006444def register_Ns3Ipv6AddressChecker_methods(root_module, cls):
6445 ## ipv6-address.h (module 'network'): ns3::Ipv6AddressChecker::Ipv6AddressChecker() [constructor]
6446 cls.add_constructor([])
6447 ## ipv6-address.h (module 'network'): ns3::Ipv6AddressChecker::Ipv6AddressChecker(ns3::Ipv6AddressChecker const & arg0) [copy constructor]
6448 cls.add_constructor([param('ns3::Ipv6AddressChecker const &', 'arg0')])
6449 return
6450
6451def register_Ns3Ipv6AddressValue_methods(root_module, cls):
6452 ## ipv6-address.h (module 'network'): ns3::Ipv6AddressValue::Ipv6AddressValue() [constructor]
6453 cls.add_constructor([])
6454 ## ipv6-address.h (module 'network'): ns3::Ipv6AddressValue::Ipv6AddressValue(ns3::Ipv6AddressValue const & arg0) [copy constructor]
6455 cls.add_constructor([param('ns3::Ipv6AddressValue const &', 'arg0')])
6456 ## ipv6-address.h (module 'network'): ns3::Ipv6AddressValue::Ipv6AddressValue(ns3::Ipv6Address const & value) [constructor]
6457 cls.add_constructor([param('ns3::Ipv6Address const &', 'value')])
6458 ## ipv6-address.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::Ipv6AddressValue::Copy() const [member function]
6459 cls.add_method('Copy',
6460 'ns3::Ptr< ns3::AttributeValue >',
6461 [],
6462 is_const=True, is_virtual=True)
6463 ## ipv6-address.h (module 'network'): bool ns3::Ipv6AddressValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
6464 cls.add_method('DeserializeFromString',
6465 'bool',
6466 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
6467 is_virtual=True)
6468 ## ipv6-address.h (module 'network'): ns3::Ipv6Address ns3::Ipv6AddressValue::Get() const [member function]
6469 cls.add_method('Get',
6470 'ns3::Ipv6Address',
6471 [],
6472 is_const=True)
6473 ## ipv6-address.h (module 'network'): std::string ns3::Ipv6AddressValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
6474 cls.add_method('SerializeToString',
6475 'std::string',
6476 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
6477 is_const=True, is_virtual=True)
6478 ## ipv6-address.h (module 'network'): void ns3::Ipv6AddressValue::Set(ns3::Ipv6Address const & value) [member function]
6479 cls.add_method('Set',
6480 'void',
6481 [param('ns3::Ipv6Address const &', 'value')])
6482 return
6483
Alexander Afanasyev6f933532012-02-29 13:30:37 -08006484def register_Ns3Ipv6Interface_methods(root_module, cls):
6485 ## ipv6-interface.h (module 'internet'): ns3::Ipv6Interface::Ipv6Interface(ns3::Ipv6Interface const & arg0) [copy constructor]
6486 cls.add_constructor([param('ns3::Ipv6Interface const &', 'arg0')])
6487 ## ipv6-interface.h (module 'internet'): ns3::Ipv6Interface::Ipv6Interface() [constructor]
6488 cls.add_constructor([])
6489 ## ipv6-interface.h (module 'internet'): bool ns3::Ipv6Interface::AddAddress(ns3::Ipv6InterfaceAddress iface) [member function]
6490 cls.add_method('AddAddress',
6491 'bool',
6492 [param('ns3::Ipv6InterfaceAddress', 'iface')])
6493 ## ipv6-interface.h (module 'internet'): ns3::Ipv6InterfaceAddress ns3::Ipv6Interface::GetAddress(uint32_t index) const [member function]
6494 cls.add_method('GetAddress',
6495 'ns3::Ipv6InterfaceAddress',
6496 [param('uint32_t', 'index')],
6497 is_const=True)
6498 ## ipv6-interface.h (module 'internet'): ns3::Ipv6InterfaceAddress ns3::Ipv6Interface::GetAddressMatchingDestination(ns3::Ipv6Address dst) [member function]
6499 cls.add_method('GetAddressMatchingDestination',
6500 'ns3::Ipv6InterfaceAddress',
6501 [param('ns3::Ipv6Address', 'dst')])
6502 ## ipv6-interface.h (module 'internet'): uint16_t ns3::Ipv6Interface::GetBaseReachableTime() const [member function]
6503 cls.add_method('GetBaseReachableTime',
6504 'uint16_t',
6505 [],
6506 is_const=True)
6507 ## ipv6-interface.h (module 'internet'): uint8_t ns3::Ipv6Interface::GetCurHopLimit() const [member function]
6508 cls.add_method('GetCurHopLimit',
6509 'uint8_t',
6510 [],
6511 is_const=True)
6512 ## ipv6-interface.h (module 'internet'): ns3::Ptr<ns3::NetDevice> ns3::Ipv6Interface::GetDevice() const [member function]
6513 cls.add_method('GetDevice',
6514 'ns3::Ptr< ns3::NetDevice >',
6515 [],
6516 is_const=True, is_virtual=True)
6517 ## ipv6-interface.h (module 'internet'): ns3::Ipv6InterfaceAddress ns3::Ipv6Interface::GetLinkLocalAddress() const [member function]
6518 cls.add_method('GetLinkLocalAddress',
6519 'ns3::Ipv6InterfaceAddress',
6520 [],
6521 is_const=True)
6522 ## ipv6-interface.h (module 'internet'): uint16_t ns3::Ipv6Interface::GetMetric() const [member function]
6523 cls.add_method('GetMetric',
6524 'uint16_t',
6525 [],
6526 is_const=True)
6527 ## ipv6-interface.h (module 'internet'): uint32_t ns3::Ipv6Interface::GetNAddresses() const [member function]
6528 cls.add_method('GetNAddresses',
6529 'uint32_t',
6530 [],
6531 is_const=True)
6532 ## ipv6-interface.h (module 'internet'): uint16_t ns3::Ipv6Interface::GetReachableTime() const [member function]
6533 cls.add_method('GetReachableTime',
6534 'uint16_t',
6535 [],
6536 is_const=True)
6537 ## ipv6-interface.h (module 'internet'): uint16_t ns3::Ipv6Interface::GetRetransTimer() const [member function]
6538 cls.add_method('GetRetransTimer',
6539 'uint16_t',
6540 [],
6541 is_const=True)
6542 ## ipv6-interface.h (module 'internet'): static ns3::TypeId ns3::Ipv6Interface::GetTypeId() [member function]
6543 cls.add_method('GetTypeId',
6544 'ns3::TypeId',
6545 [],
6546 is_static=True)
6547 ## ipv6-interface.h (module 'internet'): bool ns3::Ipv6Interface::IsDown() const [member function]
6548 cls.add_method('IsDown',
6549 'bool',
6550 [],
6551 is_const=True)
6552 ## ipv6-interface.h (module 'internet'): bool ns3::Ipv6Interface::IsForwarding() const [member function]
6553 cls.add_method('IsForwarding',
6554 'bool',
6555 [],
6556 is_const=True)
6557 ## ipv6-interface.h (module 'internet'): bool ns3::Ipv6Interface::IsUp() const [member function]
6558 cls.add_method('IsUp',
6559 'bool',
6560 [],
6561 is_const=True)
6562 ## ipv6-interface.h (module 'internet'): ns3::Ipv6InterfaceAddress ns3::Ipv6Interface::RemoveAddress(uint32_t index) [member function]
6563 cls.add_method('RemoveAddress',
6564 'ns3::Ipv6InterfaceAddress',
6565 [param('uint32_t', 'index')])
6566 ## ipv6-interface.h (module 'internet'): void ns3::Ipv6Interface::Send(ns3::Ptr<ns3::Packet> p, ns3::Ipv6Address dest) [member function]
6567 cls.add_method('Send',
6568 'void',
6569 [param('ns3::Ptr< ns3::Packet >', 'p'), param('ns3::Ipv6Address', 'dest')])
6570 ## ipv6-interface.h (module 'internet'): void ns3::Ipv6Interface::SetBaseReachableTime(uint16_t baseReachableTime) [member function]
6571 cls.add_method('SetBaseReachableTime',
6572 'void',
6573 [param('uint16_t', 'baseReachableTime')])
6574 ## ipv6-interface.h (module 'internet'): void ns3::Ipv6Interface::SetCurHopLimit(uint8_t curHopLimit) [member function]
6575 cls.add_method('SetCurHopLimit',
6576 'void',
6577 [param('uint8_t', 'curHopLimit')])
6578 ## ipv6-interface.h (module 'internet'): void ns3::Ipv6Interface::SetDevice(ns3::Ptr<ns3::NetDevice> device) [member function]
6579 cls.add_method('SetDevice',
6580 'void',
6581 [param('ns3::Ptr< ns3::NetDevice >', 'device')])
6582 ## ipv6-interface.h (module 'internet'): void ns3::Ipv6Interface::SetDown() [member function]
6583 cls.add_method('SetDown',
6584 'void',
6585 [])
6586 ## ipv6-interface.h (module 'internet'): void ns3::Ipv6Interface::SetForwarding(bool forward) [member function]
6587 cls.add_method('SetForwarding',
6588 'void',
6589 [param('bool', 'forward')])
6590 ## ipv6-interface.h (module 'internet'): void ns3::Ipv6Interface::SetMetric(uint16_t metric) [member function]
6591 cls.add_method('SetMetric',
6592 'void',
6593 [param('uint16_t', 'metric')])
6594 ## ipv6-interface.h (module 'internet'): void ns3::Ipv6Interface::SetNode(ns3::Ptr<ns3::Node> node) [member function]
6595 cls.add_method('SetNode',
6596 'void',
6597 [param('ns3::Ptr< ns3::Node >', 'node')])
6598 ## ipv6-interface.h (module 'internet'): void ns3::Ipv6Interface::SetNsDadUid(ns3::Ipv6Address address, uint32_t uid) [member function]
6599 cls.add_method('SetNsDadUid',
6600 'void',
6601 [param('ns3::Ipv6Address', 'address'), param('uint32_t', 'uid')])
6602 ## ipv6-interface.h (module 'internet'): void ns3::Ipv6Interface::SetReachableTime(uint16_t reachableTime) [member function]
6603 cls.add_method('SetReachableTime',
6604 'void',
6605 [param('uint16_t', 'reachableTime')])
6606 ## ipv6-interface.h (module 'internet'): void ns3::Ipv6Interface::SetRetransTimer(uint16_t retransTimer) [member function]
6607 cls.add_method('SetRetransTimer',
6608 'void',
6609 [param('uint16_t', 'retransTimer')])
6610 ## ipv6-interface.h (module 'internet'): void ns3::Ipv6Interface::SetState(ns3::Ipv6Address address, ns3::Ipv6InterfaceAddress::State_e state) [member function]
6611 cls.add_method('SetState',
6612 'void',
6613 [param('ns3::Ipv6Address', 'address'), param('ns3::Ipv6InterfaceAddress::State_e', 'state')])
6614 ## ipv6-interface.h (module 'internet'): void ns3::Ipv6Interface::SetUp() [member function]
6615 cls.add_method('SetUp',
6616 'void',
6617 [])
6618 ## ipv6-interface.h (module 'internet'): void ns3::Ipv6Interface::DoDispose() [member function]
6619 cls.add_method('DoDispose',
6620 'void',
6621 [],
6622 visibility='protected', is_virtual=True)
6623 return
6624
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08006625def register_Ns3Ipv6PrefixChecker_methods(root_module, cls):
6626 ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixChecker::Ipv6PrefixChecker() [constructor]
6627 cls.add_constructor([])
6628 ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixChecker::Ipv6PrefixChecker(ns3::Ipv6PrefixChecker const & arg0) [copy constructor]
6629 cls.add_constructor([param('ns3::Ipv6PrefixChecker const &', 'arg0')])
6630 return
6631
6632def register_Ns3Ipv6PrefixValue_methods(root_module, cls):
6633 ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixValue::Ipv6PrefixValue() [constructor]
6634 cls.add_constructor([])
6635 ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixValue::Ipv6PrefixValue(ns3::Ipv6PrefixValue const & arg0) [copy constructor]
6636 cls.add_constructor([param('ns3::Ipv6PrefixValue const &', 'arg0')])
6637 ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixValue::Ipv6PrefixValue(ns3::Ipv6Prefix const & value) [constructor]
6638 cls.add_constructor([param('ns3::Ipv6Prefix const &', 'value')])
6639 ## ipv6-address.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::Ipv6PrefixValue::Copy() const [member function]
6640 cls.add_method('Copy',
6641 'ns3::Ptr< ns3::AttributeValue >',
6642 [],
6643 is_const=True, is_virtual=True)
6644 ## ipv6-address.h (module 'network'): bool ns3::Ipv6PrefixValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
6645 cls.add_method('DeserializeFromString',
6646 'bool',
6647 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
6648 is_virtual=True)
6649 ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix ns3::Ipv6PrefixValue::Get() const [member function]
6650 cls.add_method('Get',
6651 'ns3::Ipv6Prefix',
6652 [],
6653 is_const=True)
6654 ## ipv6-address.h (module 'network'): std::string ns3::Ipv6PrefixValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
6655 cls.add_method('SerializeToString',
6656 'std::string',
6657 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
6658 is_const=True, is_virtual=True)
6659 ## ipv6-address.h (module 'network'): void ns3::Ipv6PrefixValue::Set(ns3::Ipv6Prefix const & value) [member function]
6660 cls.add_method('Set',
6661 'void',
6662 [param('ns3::Ipv6Prefix const &', 'value')])
6663 return
6664
Alexander Afanasyev4975f732011-12-20 17:52:19 -08006665def register_Ns3MobilityModel_methods(root_module, cls):
6666 ## mobility-model.h (module 'mobility'): ns3::MobilityModel::MobilityModel(ns3::MobilityModel const & arg0) [copy constructor]
6667 cls.add_constructor([param('ns3::MobilityModel const &', 'arg0')])
6668 ## mobility-model.h (module 'mobility'): ns3::MobilityModel::MobilityModel() [constructor]
6669 cls.add_constructor([])
6670 ## mobility-model.h (module 'mobility'): double ns3::MobilityModel::GetDistanceFrom(ns3::Ptr<const ns3::MobilityModel> position) const [member function]
6671 cls.add_method('GetDistanceFrom',
6672 'double',
6673 [param('ns3::Ptr< ns3::MobilityModel const >', 'position')],
6674 is_const=True)
6675 ## mobility-model.h (module 'mobility'): ns3::Vector ns3::MobilityModel::GetPosition() const [member function]
6676 cls.add_method('GetPosition',
6677 'ns3::Vector',
6678 [],
6679 is_const=True)
6680 ## mobility-model.h (module 'mobility'): double ns3::MobilityModel::GetRelativeSpeed(ns3::Ptr<const ns3::MobilityModel> other) const [member function]
6681 cls.add_method('GetRelativeSpeed',
6682 'double',
6683 [param('ns3::Ptr< ns3::MobilityModel const >', 'other')],
6684 is_const=True)
6685 ## mobility-model.h (module 'mobility'): static ns3::TypeId ns3::MobilityModel::GetTypeId() [member function]
6686 cls.add_method('GetTypeId',
6687 'ns3::TypeId',
6688 [],
6689 is_static=True)
6690 ## mobility-model.h (module 'mobility'): ns3::Vector ns3::MobilityModel::GetVelocity() const [member function]
6691 cls.add_method('GetVelocity',
6692 'ns3::Vector',
6693 [],
6694 is_const=True)
6695 ## mobility-model.h (module 'mobility'): void ns3::MobilityModel::SetPosition(ns3::Vector const & position) [member function]
6696 cls.add_method('SetPosition',
6697 'void',
6698 [param('ns3::Vector const &', 'position')])
6699 ## mobility-model.h (module 'mobility'): void ns3::MobilityModel::NotifyCourseChange() const [member function]
6700 cls.add_method('NotifyCourseChange',
6701 'void',
6702 [],
6703 is_const=True, visibility='protected')
6704 ## mobility-model.h (module 'mobility'): ns3::Vector ns3::MobilityModel::DoGetPosition() const [member function]
6705 cls.add_method('DoGetPosition',
6706 'ns3::Vector',
6707 [],
6708 is_pure_virtual=True, is_const=True, visibility='private', is_virtual=True)
6709 ## mobility-model.h (module 'mobility'): ns3::Vector ns3::MobilityModel::DoGetVelocity() const [member function]
6710 cls.add_method('DoGetVelocity',
6711 'ns3::Vector',
6712 [],
6713 is_pure_virtual=True, is_const=True, visibility='private', is_virtual=True)
6714 ## mobility-model.h (module 'mobility'): void ns3::MobilityModel::DoSetPosition(ns3::Vector const & position) [member function]
6715 cls.add_method('DoSetPosition',
6716 'void',
6717 [param('ns3::Vector const &', 'position')],
6718 is_pure_virtual=True, visibility='private', is_virtual=True)
6719 return
6720
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08006721def register_Ns3NetDevice_methods(root_module, cls):
6722 ## net-device.h (module 'network'): ns3::NetDevice::NetDevice() [constructor]
6723 cls.add_constructor([])
6724 ## net-device.h (module 'network'): ns3::NetDevice::NetDevice(ns3::NetDevice const & arg0) [copy constructor]
6725 cls.add_constructor([param('ns3::NetDevice const &', 'arg0')])
6726 ## 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]
6727 cls.add_method('AddLinkChangeCallback',
6728 'void',
6729 [param('ns3::Callback< void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'callback')],
6730 is_pure_virtual=True, is_virtual=True)
6731 ## net-device.h (module 'network'): ns3::Address ns3::NetDevice::GetAddress() const [member function]
6732 cls.add_method('GetAddress',
6733 'ns3::Address',
6734 [],
6735 is_pure_virtual=True, is_const=True, is_virtual=True)
6736 ## net-device.h (module 'network'): ns3::Address ns3::NetDevice::GetBroadcast() const [member function]
6737 cls.add_method('GetBroadcast',
6738 'ns3::Address',
6739 [],
6740 is_pure_virtual=True, is_const=True, is_virtual=True)
6741 ## net-device.h (module 'network'): ns3::Ptr<ns3::Channel> ns3::NetDevice::GetChannel() const [member function]
6742 cls.add_method('GetChannel',
6743 'ns3::Ptr< ns3::Channel >',
6744 [],
6745 is_pure_virtual=True, is_const=True, is_virtual=True)
6746 ## net-device.h (module 'network'): uint32_t ns3::NetDevice::GetIfIndex() const [member function]
6747 cls.add_method('GetIfIndex',
6748 'uint32_t',
6749 [],
6750 is_pure_virtual=True, is_const=True, is_virtual=True)
6751 ## net-device.h (module 'network'): uint16_t ns3::NetDevice::GetMtu() const [member function]
6752 cls.add_method('GetMtu',
6753 'uint16_t',
6754 [],
6755 is_pure_virtual=True, is_const=True, is_virtual=True)
6756 ## net-device.h (module 'network'): ns3::Address ns3::NetDevice::GetMulticast(ns3::Ipv4Address multicastGroup) const [member function]
6757 cls.add_method('GetMulticast',
6758 'ns3::Address',
6759 [param('ns3::Ipv4Address', 'multicastGroup')],
6760 is_pure_virtual=True, is_const=True, is_virtual=True)
6761 ## net-device.h (module 'network'): ns3::Address ns3::NetDevice::GetMulticast(ns3::Ipv6Address addr) const [member function]
6762 cls.add_method('GetMulticast',
6763 'ns3::Address',
6764 [param('ns3::Ipv6Address', 'addr')],
6765 is_pure_virtual=True, is_const=True, is_virtual=True)
6766 ## net-device.h (module 'network'): ns3::Ptr<ns3::Node> ns3::NetDevice::GetNode() const [member function]
6767 cls.add_method('GetNode',
6768 'ns3::Ptr< ns3::Node >',
6769 [],
6770 is_pure_virtual=True, is_const=True, is_virtual=True)
6771 ## net-device.h (module 'network'): static ns3::TypeId ns3::NetDevice::GetTypeId() [member function]
6772 cls.add_method('GetTypeId',
6773 'ns3::TypeId',
6774 [],
6775 is_static=True)
6776 ## net-device.h (module 'network'): bool ns3::NetDevice::IsBridge() const [member function]
6777 cls.add_method('IsBridge',
6778 'bool',
6779 [],
6780 is_pure_virtual=True, is_const=True, is_virtual=True)
6781 ## net-device.h (module 'network'): bool ns3::NetDevice::IsBroadcast() const [member function]
6782 cls.add_method('IsBroadcast',
6783 'bool',
6784 [],
6785 is_pure_virtual=True, is_const=True, is_virtual=True)
6786 ## net-device.h (module 'network'): bool ns3::NetDevice::IsLinkUp() const [member function]
6787 cls.add_method('IsLinkUp',
6788 'bool',
6789 [],
6790 is_pure_virtual=True, is_const=True, is_virtual=True)
6791 ## net-device.h (module 'network'): bool ns3::NetDevice::IsMulticast() const [member function]
6792 cls.add_method('IsMulticast',
6793 'bool',
6794 [],
6795 is_pure_virtual=True, is_const=True, is_virtual=True)
6796 ## net-device.h (module 'network'): bool ns3::NetDevice::IsPointToPoint() const [member function]
6797 cls.add_method('IsPointToPoint',
6798 'bool',
6799 [],
6800 is_pure_virtual=True, is_const=True, is_virtual=True)
6801 ## net-device.h (module 'network'): bool ns3::NetDevice::NeedsArp() const [member function]
6802 cls.add_method('NeedsArp',
6803 'bool',
6804 [],
6805 is_pure_virtual=True, is_const=True, is_virtual=True)
6806 ## net-device.h (module 'network'): bool ns3::NetDevice::Send(ns3::Ptr<ns3::Packet> packet, ns3::Address const & dest, uint16_t protocolNumber) [member function]
6807 cls.add_method('Send',
6808 'bool',
6809 [param('ns3::Ptr< ns3::Packet >', 'packet'), param('ns3::Address const &', 'dest'), param('uint16_t', 'protocolNumber')],
6810 is_pure_virtual=True, is_virtual=True)
6811 ## 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]
6812 cls.add_method('SendFrom',
6813 'bool',
6814 [param('ns3::Ptr< ns3::Packet >', 'packet'), param('ns3::Address const &', 'source'), param('ns3::Address const &', 'dest'), param('uint16_t', 'protocolNumber')],
6815 is_pure_virtual=True, is_virtual=True)
6816 ## net-device.h (module 'network'): void ns3::NetDevice::SetAddress(ns3::Address address) [member function]
6817 cls.add_method('SetAddress',
6818 'void',
6819 [param('ns3::Address', 'address')],
6820 is_pure_virtual=True, is_virtual=True)
6821 ## net-device.h (module 'network'): void ns3::NetDevice::SetIfIndex(uint32_t const index) [member function]
6822 cls.add_method('SetIfIndex',
6823 'void',
6824 [param('uint32_t const', 'index')],
6825 is_pure_virtual=True, is_virtual=True)
6826 ## net-device.h (module 'network'): bool ns3::NetDevice::SetMtu(uint16_t const mtu) [member function]
6827 cls.add_method('SetMtu',
6828 'bool',
6829 [param('uint16_t const', 'mtu')],
6830 is_pure_virtual=True, is_virtual=True)
6831 ## net-device.h (module 'network'): void ns3::NetDevice::SetNode(ns3::Ptr<ns3::Node> node) [member function]
6832 cls.add_method('SetNode',
6833 'void',
6834 [param('ns3::Ptr< ns3::Node >', 'node')],
6835 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -08006836 ## 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 Afanasyevaa032ea2011-12-13 12:38:32 -08006837 cls.add_method('SetPromiscReceiveCallback',
6838 'void',
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -08006839 [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 Afanasyevaa032ea2011-12-13 12:38:32 -08006840 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -08006841 ## 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 Afanasyevaa032ea2011-12-13 12:38:32 -08006842 cls.add_method('SetReceiveCallback',
6843 'void',
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -08006844 [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 Afanasyevaa032ea2011-12-13 12:38:32 -08006845 is_pure_virtual=True, is_virtual=True)
6846 ## net-device.h (module 'network'): bool ns3::NetDevice::SupportsSendFrom() const [member function]
6847 cls.add_method('SupportsSendFrom',
6848 'bool',
6849 [],
6850 is_pure_virtual=True, is_const=True, is_virtual=True)
6851 return
6852
6853def register_Ns3NixVector_methods(root_module, cls):
6854 cls.add_output_stream_operator()
6855 ## nix-vector.h (module 'network'): ns3::NixVector::NixVector() [constructor]
6856 cls.add_constructor([])
6857 ## nix-vector.h (module 'network'): ns3::NixVector::NixVector(ns3::NixVector const & o) [copy constructor]
6858 cls.add_constructor([param('ns3::NixVector const &', 'o')])
6859 ## nix-vector.h (module 'network'): void ns3::NixVector::AddNeighborIndex(uint32_t newBits, uint32_t numberOfBits) [member function]
6860 cls.add_method('AddNeighborIndex',
6861 'void',
6862 [param('uint32_t', 'newBits'), param('uint32_t', 'numberOfBits')])
6863 ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::BitCount(uint32_t numberOfNeighbors) const [member function]
6864 cls.add_method('BitCount',
6865 'uint32_t',
6866 [param('uint32_t', 'numberOfNeighbors')],
6867 is_const=True)
6868 ## nix-vector.h (module 'network'): ns3::Ptr<ns3::NixVector> ns3::NixVector::Copy() const [member function]
6869 cls.add_method('Copy',
6870 'ns3::Ptr< ns3::NixVector >',
6871 [],
6872 is_const=True)
6873 ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::Deserialize(uint32_t const * buffer, uint32_t size) [member function]
6874 cls.add_method('Deserialize',
6875 'uint32_t',
6876 [param('uint32_t const *', 'buffer'), param('uint32_t', 'size')])
6877 ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::ExtractNeighborIndex(uint32_t numberOfBits) [member function]
6878 cls.add_method('ExtractNeighborIndex',
6879 'uint32_t',
6880 [param('uint32_t', 'numberOfBits')])
6881 ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::GetRemainingBits() [member function]
6882 cls.add_method('GetRemainingBits',
6883 'uint32_t',
6884 [])
6885 ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::GetSerializedSize() const [member function]
6886 cls.add_method('GetSerializedSize',
6887 'uint32_t',
6888 [],
6889 is_const=True)
6890 ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::Serialize(uint32_t * buffer, uint32_t maxSize) const [member function]
6891 cls.add_method('Serialize',
6892 'uint32_t',
6893 [param('uint32_t *', 'buffer'), param('uint32_t', 'maxSize')],
6894 is_const=True)
6895 return
6896
6897def register_Ns3Node_methods(root_module, cls):
6898 ## node.h (module 'network'): ns3::Node::Node(ns3::Node const & arg0) [copy constructor]
6899 cls.add_constructor([param('ns3::Node const &', 'arg0')])
6900 ## node.h (module 'network'): ns3::Node::Node() [constructor]
6901 cls.add_constructor([])
6902 ## node.h (module 'network'): ns3::Node::Node(uint32_t systemId) [constructor]
6903 cls.add_constructor([param('uint32_t', 'systemId')])
6904 ## node.h (module 'network'): uint32_t ns3::Node::AddApplication(ns3::Ptr<ns3::Application> application) [member function]
6905 cls.add_method('AddApplication',
6906 'uint32_t',
6907 [param('ns3::Ptr< ns3::Application >', 'application')])
6908 ## node.h (module 'network'): uint32_t ns3::Node::AddDevice(ns3::Ptr<ns3::NetDevice> device) [member function]
6909 cls.add_method('AddDevice',
6910 'uint32_t',
6911 [param('ns3::Ptr< ns3::NetDevice >', 'device')])
6912 ## node.h (module 'network'): static bool ns3::Node::ChecksumEnabled() [member function]
6913 cls.add_method('ChecksumEnabled',
6914 'bool',
6915 [],
6916 is_static=True)
6917 ## node.h (module 'network'): ns3::Ptr<ns3::Application> ns3::Node::GetApplication(uint32_t index) const [member function]
6918 cls.add_method('GetApplication',
6919 'ns3::Ptr< ns3::Application >',
6920 [param('uint32_t', 'index')],
6921 is_const=True)
6922 ## node.h (module 'network'): ns3::Ptr<ns3::NetDevice> ns3::Node::GetDevice(uint32_t index) const [member function]
6923 cls.add_method('GetDevice',
6924 'ns3::Ptr< ns3::NetDevice >',
6925 [param('uint32_t', 'index')],
6926 is_const=True)
6927 ## node.h (module 'network'): uint32_t ns3::Node::GetId() const [member function]
6928 cls.add_method('GetId',
6929 'uint32_t',
6930 [],
6931 is_const=True)
6932 ## node.h (module 'network'): uint32_t ns3::Node::GetNApplications() const [member function]
6933 cls.add_method('GetNApplications',
6934 'uint32_t',
6935 [],
6936 is_const=True)
6937 ## node.h (module 'network'): uint32_t ns3::Node::GetNDevices() const [member function]
6938 cls.add_method('GetNDevices',
6939 'uint32_t',
6940 [],
6941 is_const=True)
6942 ## node.h (module 'network'): uint32_t ns3::Node::GetSystemId() const [member function]
6943 cls.add_method('GetSystemId',
6944 'uint32_t',
6945 [],
6946 is_const=True)
6947 ## node.h (module 'network'): static ns3::TypeId ns3::Node::GetTypeId() [member function]
6948 cls.add_method('GetTypeId',
6949 'ns3::TypeId',
6950 [],
6951 is_static=True)
6952 ## 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]
6953 cls.add_method('RegisterDeviceAdditionListener',
6954 'void',
6955 [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')])
6956 ## 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]
6957 cls.add_method('RegisterProtocolHandler',
6958 'void',
6959 [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')])
6960 ## 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]
6961 cls.add_method('UnregisterDeviceAdditionListener',
6962 'void',
6963 [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')])
6964 ## 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]
6965 cls.add_method('UnregisterProtocolHandler',
6966 'void',
6967 [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')])
6968 ## node.h (module 'network'): void ns3::Node::DoDispose() [member function]
6969 cls.add_method('DoDispose',
6970 'void',
6971 [],
6972 visibility='protected', is_virtual=True)
6973 ## node.h (module 'network'): void ns3::Node::DoStart() [member function]
6974 cls.add_method('DoStart',
6975 'void',
6976 [],
6977 visibility='protected', is_virtual=True)
6978 return
6979
6980def register_Ns3ObjectFactoryChecker_methods(root_module, cls):
6981 ## object-factory.h (module 'core'): ns3::ObjectFactoryChecker::ObjectFactoryChecker() [constructor]
6982 cls.add_constructor([])
6983 ## object-factory.h (module 'core'): ns3::ObjectFactoryChecker::ObjectFactoryChecker(ns3::ObjectFactoryChecker const & arg0) [copy constructor]
6984 cls.add_constructor([param('ns3::ObjectFactoryChecker const &', 'arg0')])
6985 return
6986
6987def register_Ns3ObjectFactoryValue_methods(root_module, cls):
6988 ## object-factory.h (module 'core'): ns3::ObjectFactoryValue::ObjectFactoryValue() [constructor]
6989 cls.add_constructor([])
6990 ## object-factory.h (module 'core'): ns3::ObjectFactoryValue::ObjectFactoryValue(ns3::ObjectFactoryValue const & arg0) [copy constructor]
6991 cls.add_constructor([param('ns3::ObjectFactoryValue const &', 'arg0')])
6992 ## object-factory.h (module 'core'): ns3::ObjectFactoryValue::ObjectFactoryValue(ns3::ObjectFactory const & value) [constructor]
6993 cls.add_constructor([param('ns3::ObjectFactory const &', 'value')])
6994 ## object-factory.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::ObjectFactoryValue::Copy() const [member function]
6995 cls.add_method('Copy',
6996 'ns3::Ptr< ns3::AttributeValue >',
6997 [],
6998 is_const=True, is_virtual=True)
6999 ## object-factory.h (module 'core'): bool ns3::ObjectFactoryValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
7000 cls.add_method('DeserializeFromString',
7001 'bool',
7002 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
7003 is_virtual=True)
7004 ## object-factory.h (module 'core'): ns3::ObjectFactory ns3::ObjectFactoryValue::Get() const [member function]
7005 cls.add_method('Get',
7006 'ns3::ObjectFactory',
7007 [],
7008 is_const=True)
7009 ## object-factory.h (module 'core'): std::string ns3::ObjectFactoryValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
7010 cls.add_method('SerializeToString',
7011 'std::string',
7012 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
7013 is_const=True, is_virtual=True)
7014 ## object-factory.h (module 'core'): void ns3::ObjectFactoryValue::Set(ns3::ObjectFactory const & value) [member function]
7015 cls.add_method('Set',
7016 'void',
7017 [param('ns3::ObjectFactory const &', 'value')])
7018 return
7019
Alexander Afanasyev03d92e42012-02-01 21:06:53 -08007020def register_Ns3OutputStreamWrapper_methods(root_module, cls):
7021 ## output-stream-wrapper.h (module 'network'): ns3::OutputStreamWrapper::OutputStreamWrapper(ns3::OutputStreamWrapper const & arg0) [copy constructor]
7022 cls.add_constructor([param('ns3::OutputStreamWrapper const &', 'arg0')])
7023 ## output-stream-wrapper.h (module 'network'): ns3::OutputStreamWrapper::OutputStreamWrapper(std::string filename, std::_Ios_Openmode filemode) [constructor]
7024 cls.add_constructor([param('std::string', 'filename'), param('std::_Ios_Openmode', 'filemode')])
7025 ## output-stream-wrapper.h (module 'network'): ns3::OutputStreamWrapper::OutputStreamWrapper(std::ostream * os) [constructor]
7026 cls.add_constructor([param('std::ostream *', 'os')])
7027 ## output-stream-wrapper.h (module 'network'): std::ostream * ns3::OutputStreamWrapper::GetStream() [member function]
7028 cls.add_method('GetStream',
7029 'std::ostream *',
7030 [])
7031 return
7032
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08007033def register_Ns3Packet_methods(root_module, cls):
7034 cls.add_output_stream_operator()
7035 ## packet.h (module 'network'): ns3::Packet::Packet() [constructor]
7036 cls.add_constructor([])
7037 ## packet.h (module 'network'): ns3::Packet::Packet(ns3::Packet const & o) [copy constructor]
7038 cls.add_constructor([param('ns3::Packet const &', 'o')])
7039 ## packet.h (module 'network'): ns3::Packet::Packet(uint32_t size) [constructor]
7040 cls.add_constructor([param('uint32_t', 'size')])
7041 ## packet.h (module 'network'): ns3::Packet::Packet(uint8_t const * buffer, uint32_t size, bool magic) [constructor]
7042 cls.add_constructor([param('uint8_t const *', 'buffer'), param('uint32_t', 'size'), param('bool', 'magic')])
7043 ## packet.h (module 'network'): ns3::Packet::Packet(uint8_t const * buffer, uint32_t size) [constructor]
7044 cls.add_constructor([param('uint8_t const *', 'buffer'), param('uint32_t', 'size')])
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -08007045 ## packet.h (module 'network'): void ns3::Packet::AddAtEnd(ns3::Ptr<const ns3::Packet> packet) [member function]
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08007046 cls.add_method('AddAtEnd',
7047 'void',
7048 [param('ns3::Ptr< ns3::Packet const >', 'packet')])
7049 ## packet.h (module 'network'): void ns3::Packet::AddByteTag(ns3::Tag const & tag) const [member function]
7050 cls.add_method('AddByteTag',
7051 'void',
7052 [param('ns3::Tag const &', 'tag')],
7053 is_const=True)
7054 ## packet.h (module 'network'): void ns3::Packet::AddHeader(ns3::Header const & header) [member function]
7055 cls.add_method('AddHeader',
7056 'void',
7057 [param('ns3::Header const &', 'header')])
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08007058 ## packet.h (module 'network'): void ns3::Packet::AddPacketTag(ns3::Ptr<const ns3::Tag> tag) [member function]
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08007059 cls.add_method('AddPacketTag',
7060 'void',
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08007061 [param('ns3::Ptr< ns3::Tag const >', 'tag')])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08007062 ## packet.h (module 'network'): void ns3::Packet::AddPaddingAtEnd(uint32_t size) [member function]
7063 cls.add_method('AddPaddingAtEnd',
7064 'void',
7065 [param('uint32_t', 'size')])
7066 ## packet.h (module 'network'): void ns3::Packet::AddTrailer(ns3::Trailer const & trailer) [member function]
7067 cls.add_method('AddTrailer',
7068 'void',
7069 [param('ns3::Trailer const &', 'trailer')])
7070 ## packet.h (module 'network'): ns3::PacketMetadata::ItemIterator ns3::Packet::BeginItem() const [member function]
7071 cls.add_method('BeginItem',
7072 'ns3::PacketMetadata::ItemIterator',
7073 [],
7074 is_const=True)
7075 ## packet.h (module 'network'): ns3::Ptr<ns3::Packet> ns3::Packet::Copy() const [member function]
7076 cls.add_method('Copy',
7077 'ns3::Ptr< ns3::Packet >',
7078 [],
7079 is_const=True)
7080 ## packet.h (module 'network'): uint32_t ns3::Packet::CopyData(uint8_t * buffer, uint32_t size) const [member function]
7081 cls.add_method('CopyData',
7082 'uint32_t',
7083 [param('uint8_t *', 'buffer'), param('uint32_t', 'size')],
7084 is_const=True)
7085 ## packet.h (module 'network'): void ns3::Packet::CopyData(std::ostream * os, uint32_t size) const [member function]
7086 cls.add_method('CopyData',
7087 'void',
7088 [param('std::ostream *', 'os'), param('uint32_t', 'size')],
7089 is_const=True)
7090 ## packet.h (module 'network'): ns3::Ptr<ns3::Packet> ns3::Packet::CreateFragment(uint32_t start, uint32_t length) const [member function]
7091 cls.add_method('CreateFragment',
7092 'ns3::Ptr< ns3::Packet >',
7093 [param('uint32_t', 'start'), param('uint32_t', 'length')],
7094 is_const=True)
7095 ## packet.h (module 'network'): static void ns3::Packet::EnableChecking() [member function]
7096 cls.add_method('EnableChecking',
7097 'void',
7098 [],
7099 is_static=True)
7100 ## packet.h (module 'network'): static void ns3::Packet::EnablePrinting() [member function]
7101 cls.add_method('EnablePrinting',
7102 'void',
7103 [],
7104 is_static=True)
7105 ## packet.h (module 'network'): bool ns3::Packet::FindFirstMatchingByteTag(ns3::Tag & tag) const [member function]
7106 cls.add_method('FindFirstMatchingByteTag',
7107 'bool',
7108 [param('ns3::Tag &', 'tag')],
7109 is_const=True)
7110 ## packet.h (module 'network'): ns3::ByteTagIterator ns3::Packet::GetByteTagIterator() const [member function]
7111 cls.add_method('GetByteTagIterator',
7112 'ns3::ByteTagIterator',
7113 [],
7114 is_const=True)
7115 ## packet.h (module 'network'): ns3::Ptr<ns3::NixVector> ns3::Packet::GetNixVector() const [member function]
7116 cls.add_method('GetNixVector',
7117 'ns3::Ptr< ns3::NixVector >',
7118 [],
7119 is_const=True)
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08007120 ## packet.h (module 'network'): uint32_t ns3::Packet::GetSerializedSize() const [member function]
7121 cls.add_method('GetSerializedSize',
7122 'uint32_t',
7123 [],
7124 is_const=True)
7125 ## packet.h (module 'network'): uint32_t ns3::Packet::GetSize() const [member function]
7126 cls.add_method('GetSize',
7127 'uint32_t',
7128 [],
7129 is_const=True)
7130 ## packet.h (module 'network'): uint64_t ns3::Packet::GetUid() const [member function]
7131 cls.add_method('GetUid',
7132 'uint64_t',
7133 [],
7134 is_const=True)
7135 ## packet.h (module 'network'): uint8_t const * ns3::Packet::PeekData() const [member function]
7136 cls.add_method('PeekData',
7137 'uint8_t const *',
7138 [],
7139 deprecated=True, is_const=True)
7140 ## packet.h (module 'network'): uint32_t ns3::Packet::PeekHeader(ns3::Header & header) const [member function]
7141 cls.add_method('PeekHeader',
7142 'uint32_t',
7143 [param('ns3::Header &', 'header')],
7144 is_const=True)
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08007145 ## packet.h (module 'network'): ns3::Ptr<const ns3::Tag> ns3::Packet::PeekPacketTag(ns3::TypeId tagType) const [member function]
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08007146 cls.add_method('PeekPacketTag',
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08007147 'ns3::Ptr< ns3::Tag const >',
7148 [param('ns3::TypeId', 'tagType')],
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08007149 is_const=True)
7150 ## packet.h (module 'network'): uint32_t ns3::Packet::PeekTrailer(ns3::Trailer & trailer) [member function]
7151 cls.add_method('PeekTrailer',
7152 'uint32_t',
7153 [param('ns3::Trailer &', 'trailer')])
7154 ## packet.h (module 'network'): void ns3::Packet::Print(std::ostream & os) const [member function]
7155 cls.add_method('Print',
7156 'void',
7157 [param('std::ostream &', 'os')],
7158 is_const=True)
7159 ## packet.h (module 'network'): void ns3::Packet::PrintByteTags(std::ostream & os) const [member function]
7160 cls.add_method('PrintByteTags',
7161 'void',
7162 [param('std::ostream &', 'os')],
7163 is_const=True)
7164 ## packet.h (module 'network'): void ns3::Packet::PrintPacketTags(std::ostream & os) const [member function]
7165 cls.add_method('PrintPacketTags',
7166 'void',
7167 [param('std::ostream &', 'os')],
7168 is_const=True)
7169 ## packet.h (module 'network'): void ns3::Packet::RemoveAllByteTags() [member function]
7170 cls.add_method('RemoveAllByteTags',
7171 'void',
7172 [])
7173 ## packet.h (module 'network'): void ns3::Packet::RemoveAllPacketTags() [member function]
7174 cls.add_method('RemoveAllPacketTags',
7175 'void',
7176 [])
7177 ## packet.h (module 'network'): void ns3::Packet::RemoveAtEnd(uint32_t size) [member function]
7178 cls.add_method('RemoveAtEnd',
7179 'void',
7180 [param('uint32_t', 'size')])
7181 ## packet.h (module 'network'): void ns3::Packet::RemoveAtStart(uint32_t size) [member function]
7182 cls.add_method('RemoveAtStart',
7183 'void',
7184 [param('uint32_t', 'size')])
7185 ## packet.h (module 'network'): uint32_t ns3::Packet::RemoveHeader(ns3::Header & header) [member function]
7186 cls.add_method('RemoveHeader',
7187 'uint32_t',
7188 [param('ns3::Header &', 'header')])
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08007189 ## packet.h (module 'network'): ns3::Ptr<const ns3::Tag> ns3::Packet::RemovePacketTag(ns3::TypeId tagType) [member function]
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08007190 cls.add_method('RemovePacketTag',
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08007191 'ns3::Ptr< ns3::Tag const >',
7192 [param('ns3::TypeId', 'tagType')])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08007193 ## packet.h (module 'network'): uint32_t ns3::Packet::RemoveTrailer(ns3::Trailer & trailer) [member function]
7194 cls.add_method('RemoveTrailer',
7195 'uint32_t',
7196 [param('ns3::Trailer &', 'trailer')])
7197 ## packet.h (module 'network'): uint32_t ns3::Packet::Serialize(uint8_t * buffer, uint32_t maxSize) const [member function]
7198 cls.add_method('Serialize',
7199 'uint32_t',
7200 [param('uint8_t *', 'buffer'), param('uint32_t', 'maxSize')],
7201 is_const=True)
7202 ## packet.h (module 'network'): void ns3::Packet::SetNixVector(ns3::Ptr<ns3::NixVector> arg0) [member function]
7203 cls.add_method('SetNixVector',
7204 'void',
7205 [param('ns3::Ptr< ns3::NixVector >', 'arg0')])
7206 return
7207
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08007208def register_Ns3RandomVariableChecker_methods(root_module, cls):
7209 ## random-variable.h (module 'core'): ns3::RandomVariableChecker::RandomVariableChecker() [constructor]
7210 cls.add_constructor([])
7211 ## random-variable.h (module 'core'): ns3::RandomVariableChecker::RandomVariableChecker(ns3::RandomVariableChecker const & arg0) [copy constructor]
7212 cls.add_constructor([param('ns3::RandomVariableChecker const &', 'arg0')])
7213 return
7214
7215def register_Ns3RandomVariableValue_methods(root_module, cls):
7216 ## random-variable.h (module 'core'): ns3::RandomVariableValue::RandomVariableValue() [constructor]
7217 cls.add_constructor([])
7218 ## random-variable.h (module 'core'): ns3::RandomVariableValue::RandomVariableValue(ns3::RandomVariableValue const & arg0) [copy constructor]
7219 cls.add_constructor([param('ns3::RandomVariableValue const &', 'arg0')])
7220 ## random-variable.h (module 'core'): ns3::RandomVariableValue::RandomVariableValue(ns3::RandomVariable const & value) [constructor]
7221 cls.add_constructor([param('ns3::RandomVariable const &', 'value')])
7222 ## random-variable.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::RandomVariableValue::Copy() const [member function]
7223 cls.add_method('Copy',
7224 'ns3::Ptr< ns3::AttributeValue >',
7225 [],
7226 is_const=True, is_virtual=True)
7227 ## random-variable.h (module 'core'): bool ns3::RandomVariableValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
7228 cls.add_method('DeserializeFromString',
7229 'bool',
7230 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
7231 is_virtual=True)
7232 ## random-variable.h (module 'core'): ns3::RandomVariable ns3::RandomVariableValue::Get() const [member function]
7233 cls.add_method('Get',
7234 'ns3::RandomVariable',
7235 [],
7236 is_const=True)
7237 ## random-variable.h (module 'core'): std::string ns3::RandomVariableValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
7238 cls.add_method('SerializeToString',
7239 'std::string',
7240 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
7241 is_const=True, is_virtual=True)
7242 ## random-variable.h (module 'core'): void ns3::RandomVariableValue::Set(ns3::RandomVariable const & value) [member function]
7243 cls.add_method('Set',
7244 'void',
7245 [param('ns3::RandomVariable const &', 'value')])
7246 return
7247
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -08007248def register_Ns3RocketfuelWeightsReader_methods(root_module, cls):
Alexander Afanasyev53872ce2011-12-16 13:17:18 -08007249 ## rocketfuel-weights-reader.h (module 'NDNabstraction'): ns3::RocketfuelWeightsReader::RocketfuelWeightsReader(std::string const & path="") [constructor]
7250 cls.add_constructor([param('std::string const &', 'path', default_value='""')])
Alexander Afanasyevae3b7c32011-12-13 13:20:06 -08007251 ## rocketfuel-weights-reader.h (module 'NDNabstraction'): void ns3::RocketfuelWeightsReader::SetFileType(uint8_t inputType) [member function]
7252 cls.add_method('SetFileType',
7253 'void',
7254 [param('uint8_t', 'inputType')])
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -08007255 ## rocketfuel-weights-reader.h (module 'NDNabstraction'): ns3::NodeContainer ns3::RocketfuelWeightsReader::Read() [member function]
7256 cls.add_method('Read',
7257 'ns3::NodeContainer',
7258 [],
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08007259 is_virtual=True)
Alexander Afanasyev53872ce2011-12-16 13:17:18 -08007260 ## rocketfuel-weights-reader.h (module 'NDNabstraction'): void ns3::RocketfuelWeightsReader::Commit() [member function]
7261 cls.add_method('Commit',
7262 'void',
7263 [])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08007264 return
7265
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08007266def register_Ns3SocketAddressTag_methods(root_module, cls):
7267 ## socket.h (module 'network'): ns3::SocketAddressTag::SocketAddressTag(ns3::SocketAddressTag const & arg0) [copy constructor]
7268 cls.add_constructor([param('ns3::SocketAddressTag const &', 'arg0')])
7269 ## socket.h (module 'network'): ns3::SocketAddressTag::SocketAddressTag() [constructor]
7270 cls.add_constructor([])
7271 ## socket.h (module 'network'): void ns3::SocketAddressTag::Deserialize(ns3::TagBuffer i) [member function]
7272 cls.add_method('Deserialize',
7273 'void',
7274 [param('ns3::TagBuffer', 'i')],
7275 is_virtual=True)
7276 ## socket.h (module 'network'): ns3::Address ns3::SocketAddressTag::GetAddress() const [member function]
7277 cls.add_method('GetAddress',
7278 'ns3::Address',
7279 [],
7280 is_const=True)
7281 ## socket.h (module 'network'): ns3::TypeId ns3::SocketAddressTag::GetInstanceTypeId() const [member function]
7282 cls.add_method('GetInstanceTypeId',
7283 'ns3::TypeId',
7284 [],
7285 is_const=True, is_virtual=True)
7286 ## socket.h (module 'network'): uint32_t ns3::SocketAddressTag::GetSerializedSize() const [member function]
7287 cls.add_method('GetSerializedSize',
7288 'uint32_t',
7289 [],
7290 is_const=True, is_virtual=True)
7291 ## socket.h (module 'network'): static ns3::TypeId ns3::SocketAddressTag::GetTypeId() [member function]
7292 cls.add_method('GetTypeId',
7293 'ns3::TypeId',
7294 [],
7295 is_static=True)
7296 ## socket.h (module 'network'): void ns3::SocketAddressTag::Print(std::ostream & os) const [member function]
7297 cls.add_method('Print',
7298 'void',
7299 [param('std::ostream &', 'os')],
7300 is_const=True, is_virtual=True)
7301 ## socket.h (module 'network'): void ns3::SocketAddressTag::Serialize(ns3::TagBuffer i) const [member function]
7302 cls.add_method('Serialize',
7303 'void',
7304 [param('ns3::TagBuffer', 'i')],
7305 is_const=True, is_virtual=True)
7306 ## socket.h (module 'network'): void ns3::SocketAddressTag::SetAddress(ns3::Address addr) [member function]
7307 cls.add_method('SetAddress',
7308 'void',
7309 [param('ns3::Address', 'addr')])
7310 return
7311
7312def register_Ns3SocketIpTtlTag_methods(root_module, cls):
7313 ## socket.h (module 'network'): ns3::SocketIpTtlTag::SocketIpTtlTag(ns3::SocketIpTtlTag const & arg0) [copy constructor]
7314 cls.add_constructor([param('ns3::SocketIpTtlTag const &', 'arg0')])
7315 ## socket.h (module 'network'): ns3::SocketIpTtlTag::SocketIpTtlTag() [constructor]
7316 cls.add_constructor([])
7317 ## socket.h (module 'network'): void ns3::SocketIpTtlTag::Deserialize(ns3::TagBuffer i) [member function]
7318 cls.add_method('Deserialize',
7319 'void',
7320 [param('ns3::TagBuffer', 'i')],
7321 is_virtual=True)
7322 ## socket.h (module 'network'): ns3::TypeId ns3::SocketIpTtlTag::GetInstanceTypeId() const [member function]
7323 cls.add_method('GetInstanceTypeId',
7324 'ns3::TypeId',
7325 [],
7326 is_const=True, is_virtual=True)
7327 ## socket.h (module 'network'): uint32_t ns3::SocketIpTtlTag::GetSerializedSize() const [member function]
7328 cls.add_method('GetSerializedSize',
7329 'uint32_t',
7330 [],
7331 is_const=True, is_virtual=True)
7332 ## socket.h (module 'network'): uint8_t ns3::SocketIpTtlTag::GetTtl() const [member function]
7333 cls.add_method('GetTtl',
7334 'uint8_t',
7335 [],
7336 is_const=True)
7337 ## socket.h (module 'network'): static ns3::TypeId ns3::SocketIpTtlTag::GetTypeId() [member function]
7338 cls.add_method('GetTypeId',
7339 'ns3::TypeId',
7340 [],
7341 is_static=True)
7342 ## socket.h (module 'network'): void ns3::SocketIpTtlTag::Print(std::ostream & os) const [member function]
7343 cls.add_method('Print',
7344 'void',
7345 [param('std::ostream &', 'os')],
7346 is_const=True, is_virtual=True)
7347 ## socket.h (module 'network'): void ns3::SocketIpTtlTag::Serialize(ns3::TagBuffer i) const [member function]
7348 cls.add_method('Serialize',
7349 'void',
7350 [param('ns3::TagBuffer', 'i')],
7351 is_const=True, is_virtual=True)
7352 ## socket.h (module 'network'): void ns3::SocketIpTtlTag::SetTtl(uint8_t ttl) [member function]
7353 cls.add_method('SetTtl',
7354 'void',
7355 [param('uint8_t', 'ttl')])
7356 return
7357
7358def register_Ns3SocketSetDontFragmentTag_methods(root_module, cls):
7359 ## socket.h (module 'network'): ns3::SocketSetDontFragmentTag::SocketSetDontFragmentTag(ns3::SocketSetDontFragmentTag const & arg0) [copy constructor]
7360 cls.add_constructor([param('ns3::SocketSetDontFragmentTag const &', 'arg0')])
7361 ## socket.h (module 'network'): ns3::SocketSetDontFragmentTag::SocketSetDontFragmentTag() [constructor]
7362 cls.add_constructor([])
7363 ## socket.h (module 'network'): void ns3::SocketSetDontFragmentTag::Deserialize(ns3::TagBuffer i) [member function]
7364 cls.add_method('Deserialize',
7365 'void',
7366 [param('ns3::TagBuffer', 'i')],
7367 is_virtual=True)
7368 ## socket.h (module 'network'): void ns3::SocketSetDontFragmentTag::Disable() [member function]
7369 cls.add_method('Disable',
7370 'void',
7371 [])
7372 ## socket.h (module 'network'): void ns3::SocketSetDontFragmentTag::Enable() [member function]
7373 cls.add_method('Enable',
7374 'void',
7375 [])
7376 ## socket.h (module 'network'): ns3::TypeId ns3::SocketSetDontFragmentTag::GetInstanceTypeId() const [member function]
7377 cls.add_method('GetInstanceTypeId',
7378 'ns3::TypeId',
7379 [],
7380 is_const=True, is_virtual=True)
7381 ## socket.h (module 'network'): uint32_t ns3::SocketSetDontFragmentTag::GetSerializedSize() const [member function]
7382 cls.add_method('GetSerializedSize',
7383 'uint32_t',
7384 [],
7385 is_const=True, is_virtual=True)
7386 ## socket.h (module 'network'): static ns3::TypeId ns3::SocketSetDontFragmentTag::GetTypeId() [member function]
7387 cls.add_method('GetTypeId',
7388 'ns3::TypeId',
7389 [],
7390 is_static=True)
7391 ## socket.h (module 'network'): bool ns3::SocketSetDontFragmentTag::IsEnabled() const [member function]
7392 cls.add_method('IsEnabled',
7393 'bool',
7394 [],
7395 is_const=True)
7396 ## socket.h (module 'network'): void ns3::SocketSetDontFragmentTag::Print(std::ostream & os) const [member function]
7397 cls.add_method('Print',
7398 'void',
7399 [param('std::ostream &', 'os')],
7400 is_const=True, is_virtual=True)
7401 ## socket.h (module 'network'): void ns3::SocketSetDontFragmentTag::Serialize(ns3::TagBuffer i) const [member function]
7402 cls.add_method('Serialize',
7403 'void',
7404 [param('ns3::TagBuffer', 'i')],
7405 is_const=True, is_virtual=True)
7406 return
7407
Alexander Afanasyev4975f732011-12-20 17:52:19 -08007408def register_Ns3SpringMobilityModel_methods(root_module, cls):
7409 ## spring-mobility-model.h (module 'NDNabstraction'): ns3::SpringMobilityModel::SpringMobilityModel(ns3::SpringMobilityModel const & arg0) [copy constructor]
7410 cls.add_constructor([param('ns3::SpringMobilityModel const &', 'arg0')])
7411 ## spring-mobility-model.h (module 'NDNabstraction'): ns3::SpringMobilityModel::SpringMobilityModel() [constructor]
7412 cls.add_constructor([])
7413 ## spring-mobility-model.h (module 'NDNabstraction'): void ns3::SpringMobilityModel::AddSpring(ns3::Ptr<ns3::MobilityModel> node) [member function]
7414 cls.add_method('AddSpring',
7415 'void',
7416 [param('ns3::Ptr< ns3::MobilityModel >', 'node')])
7417 ## spring-mobility-model.h (module 'NDNabstraction'): static ns3::TypeId ns3::SpringMobilityModel::GetTypeId() [member function]
7418 cls.add_method('GetTypeId',
7419 'ns3::TypeId',
7420 [],
7421 is_static=True)
7422 ## spring-mobility-model.h (module 'NDNabstraction'): ns3::Vector ns3::SpringMobilityModel::DoGetPosition() const [member function]
7423 cls.add_method('DoGetPosition',
7424 'ns3::Vector',
7425 [],
7426 is_const=True, visibility='private', is_virtual=True)
7427 ## spring-mobility-model.h (module 'NDNabstraction'): ns3::Vector ns3::SpringMobilityModel::DoGetVelocity() const [member function]
7428 cls.add_method('DoGetVelocity',
7429 'ns3::Vector',
7430 [],
7431 is_const=True, visibility='private', is_virtual=True)
7432 ## spring-mobility-model.h (module 'NDNabstraction'): void ns3::SpringMobilityModel::DoSetPosition(ns3::Vector const & position) [member function]
7433 cls.add_method('DoSetPosition',
7434 'void',
7435 [param('ns3::Vector const &', 'position')],
7436 visibility='private', is_virtual=True)
7437 ## spring-mobility-model.h (module 'NDNabstraction'): void ns3::SpringMobilityModel::DoStart() [member function]
7438 cls.add_method('DoStart',
7439 'void',
7440 [],
7441 visibility='private', is_virtual=True)
7442 return
7443
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08007444def register_Ns3TcpCongestionWindowTracer_methods(root_module, cls):
7445 ## ccnx-consumer-window-tracer.h (module 'NDNabstraction'): ns3::TcpCongestionWindowTracer::TcpCongestionWindowTracer(ns3::TcpCongestionWindowTracer const & arg0) [copy constructor]
7446 cls.add_constructor([param('ns3::TcpCongestionWindowTracer const &', 'arg0')])
7447 ## ccnx-consumer-window-tracer.h (module 'NDNabstraction'): ns3::TcpCongestionWindowTracer::TcpCongestionWindowTracer(std::ostream & os, ns3::Ptr<ns3::Node> node, std::string const & appId="*") [constructor]
7448 cls.add_constructor([param('std::ostream &', 'os'), param('ns3::Ptr< ns3::Node >', 'node'), param('std::string const &', 'appId', default_value='"*"')])
7449 ## ccnx-consumer-window-tracer.h (module 'NDNabstraction'): void ns3::TcpCongestionWindowTracer::Connect() [member function]
7450 cls.add_method('Connect',
7451 'void',
7452 [])
7453 return
7454
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08007455def register_Ns3TimeChecker_methods(root_module, cls):
7456 ## nstime.h (module 'core'): ns3::TimeChecker::TimeChecker() [constructor]
7457 cls.add_constructor([])
7458 ## nstime.h (module 'core'): ns3::TimeChecker::TimeChecker(ns3::TimeChecker const & arg0) [copy constructor]
7459 cls.add_constructor([param('ns3::TimeChecker const &', 'arg0')])
7460 return
7461
7462def register_Ns3TimeValue_methods(root_module, cls):
7463 ## nstime.h (module 'core'): ns3::TimeValue::TimeValue() [constructor]
7464 cls.add_constructor([])
7465 ## nstime.h (module 'core'): ns3::TimeValue::TimeValue(ns3::TimeValue const & arg0) [copy constructor]
7466 cls.add_constructor([param('ns3::TimeValue const &', 'arg0')])
7467 ## nstime.h (module 'core'): ns3::TimeValue::TimeValue(ns3::Time const & value) [constructor]
7468 cls.add_constructor([param('ns3::Time const &', 'value')])
7469 ## nstime.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::TimeValue::Copy() const [member function]
7470 cls.add_method('Copy',
7471 'ns3::Ptr< ns3::AttributeValue >',
7472 [],
7473 is_const=True, is_virtual=True)
7474 ## nstime.h (module 'core'): bool ns3::TimeValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
7475 cls.add_method('DeserializeFromString',
7476 'bool',
7477 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
7478 is_virtual=True)
7479 ## nstime.h (module 'core'): ns3::Time ns3::TimeValue::Get() const [member function]
7480 cls.add_method('Get',
7481 'ns3::Time',
7482 [],
7483 is_const=True)
7484 ## nstime.h (module 'core'): std::string ns3::TimeValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
7485 cls.add_method('SerializeToString',
7486 'std::string',
7487 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
7488 is_const=True, is_virtual=True)
7489 ## nstime.h (module 'core'): void ns3::TimeValue::Set(ns3::Time const & value) [member function]
7490 cls.add_method('Set',
7491 'void',
7492 [param('ns3::Time const &', 'value')])
7493 return
7494
7495def register_Ns3TypeIdChecker_methods(root_module, cls):
7496 ## type-id.h (module 'core'): ns3::TypeIdChecker::TypeIdChecker() [constructor]
7497 cls.add_constructor([])
7498 ## type-id.h (module 'core'): ns3::TypeIdChecker::TypeIdChecker(ns3::TypeIdChecker const & arg0) [copy constructor]
7499 cls.add_constructor([param('ns3::TypeIdChecker const &', 'arg0')])
7500 return
7501
7502def register_Ns3TypeIdValue_methods(root_module, cls):
7503 ## type-id.h (module 'core'): ns3::TypeIdValue::TypeIdValue() [constructor]
7504 cls.add_constructor([])
7505 ## type-id.h (module 'core'): ns3::TypeIdValue::TypeIdValue(ns3::TypeIdValue const & arg0) [copy constructor]
7506 cls.add_constructor([param('ns3::TypeIdValue const &', 'arg0')])
7507 ## type-id.h (module 'core'): ns3::TypeIdValue::TypeIdValue(ns3::TypeId const & value) [constructor]
7508 cls.add_constructor([param('ns3::TypeId const &', 'value')])
7509 ## type-id.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::TypeIdValue::Copy() const [member function]
7510 cls.add_method('Copy',
7511 'ns3::Ptr< ns3::AttributeValue >',
7512 [],
7513 is_const=True, is_virtual=True)
7514 ## type-id.h (module 'core'): bool ns3::TypeIdValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
7515 cls.add_method('DeserializeFromString',
7516 'bool',
7517 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
7518 is_virtual=True)
7519 ## type-id.h (module 'core'): ns3::TypeId ns3::TypeIdValue::Get() const [member function]
7520 cls.add_method('Get',
7521 'ns3::TypeId',
7522 [],
7523 is_const=True)
7524 ## type-id.h (module 'core'): std::string ns3::TypeIdValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
7525 cls.add_method('SerializeToString',
7526 'std::string',
7527 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
7528 is_const=True, is_virtual=True)
7529 ## type-id.h (module 'core'): void ns3::TypeIdValue::Set(ns3::TypeId const & value) [member function]
7530 cls.add_method('Set',
7531 'void',
7532 [param('ns3::TypeId const &', 'value')])
7533 return
7534
Alexander Afanasyev4975f732011-12-20 17:52:19 -08007535def register_Ns3Vector2DChecker_methods(root_module, cls):
7536 ## vector.h (module 'core'): ns3::Vector2DChecker::Vector2DChecker() [constructor]
7537 cls.add_constructor([])
7538 ## vector.h (module 'core'): ns3::Vector2DChecker::Vector2DChecker(ns3::Vector2DChecker const & arg0) [copy constructor]
7539 cls.add_constructor([param('ns3::Vector2DChecker const &', 'arg0')])
7540 return
7541
7542def register_Ns3Vector2DValue_methods(root_module, cls):
7543 ## vector.h (module 'core'): ns3::Vector2DValue::Vector2DValue() [constructor]
7544 cls.add_constructor([])
7545 ## vector.h (module 'core'): ns3::Vector2DValue::Vector2DValue(ns3::Vector2DValue const & arg0) [copy constructor]
7546 cls.add_constructor([param('ns3::Vector2DValue const &', 'arg0')])
7547 ## vector.h (module 'core'): ns3::Vector2DValue::Vector2DValue(ns3::Vector2D const & value) [constructor]
7548 cls.add_constructor([param('ns3::Vector2D const &', 'value')])
7549 ## vector.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::Vector2DValue::Copy() const [member function]
7550 cls.add_method('Copy',
7551 'ns3::Ptr< ns3::AttributeValue >',
7552 [],
7553 is_const=True, is_virtual=True)
7554 ## vector.h (module 'core'): bool ns3::Vector2DValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
7555 cls.add_method('DeserializeFromString',
7556 'bool',
7557 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
7558 is_virtual=True)
7559 ## vector.h (module 'core'): ns3::Vector2D ns3::Vector2DValue::Get() const [member function]
7560 cls.add_method('Get',
7561 'ns3::Vector2D',
7562 [],
7563 is_const=True)
7564 ## vector.h (module 'core'): std::string ns3::Vector2DValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
7565 cls.add_method('SerializeToString',
7566 'std::string',
7567 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
7568 is_const=True, is_virtual=True)
7569 ## vector.h (module 'core'): void ns3::Vector2DValue::Set(ns3::Vector2D const & value) [member function]
7570 cls.add_method('Set',
7571 'void',
7572 [param('ns3::Vector2D const &', 'value')])
7573 return
7574
7575def register_Ns3Vector3DChecker_methods(root_module, cls):
7576 ## vector.h (module 'core'): ns3::Vector3DChecker::Vector3DChecker() [constructor]
7577 cls.add_constructor([])
7578 ## vector.h (module 'core'): ns3::Vector3DChecker::Vector3DChecker(ns3::Vector3DChecker const & arg0) [copy constructor]
7579 cls.add_constructor([param('ns3::Vector3DChecker const &', 'arg0')])
7580 return
7581
7582def register_Ns3Vector3DValue_methods(root_module, cls):
7583 ## vector.h (module 'core'): ns3::Vector3DValue::Vector3DValue() [constructor]
7584 cls.add_constructor([])
7585 ## vector.h (module 'core'): ns3::Vector3DValue::Vector3DValue(ns3::Vector3DValue const & arg0) [copy constructor]
7586 cls.add_constructor([param('ns3::Vector3DValue const &', 'arg0')])
7587 ## vector.h (module 'core'): ns3::Vector3DValue::Vector3DValue(ns3::Vector3D const & value) [constructor]
7588 cls.add_constructor([param('ns3::Vector3D const &', 'value')])
7589 ## vector.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::Vector3DValue::Copy() const [member function]
7590 cls.add_method('Copy',
7591 'ns3::Ptr< ns3::AttributeValue >',
7592 [],
7593 is_const=True, is_virtual=True)
7594 ## vector.h (module 'core'): bool ns3::Vector3DValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
7595 cls.add_method('DeserializeFromString',
7596 'bool',
7597 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
7598 is_virtual=True)
7599 ## vector.h (module 'core'): ns3::Vector3D ns3::Vector3DValue::Get() const [member function]
7600 cls.add_method('Get',
7601 'ns3::Vector3D',
7602 [],
7603 is_const=True)
7604 ## vector.h (module 'core'): std::string ns3::Vector3DValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
7605 cls.add_method('SerializeToString',
7606 'std::string',
7607 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
7608 is_const=True, is_virtual=True)
7609 ## vector.h (module 'core'): void ns3::Vector3DValue::Set(ns3::Vector3D const & value) [member function]
7610 cls.add_method('Set',
7611 'void',
7612 [param('ns3::Vector3D const &', 'value')])
7613 return
7614
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08007615def register_Ns3AddressChecker_methods(root_module, cls):
7616 ## address.h (module 'network'): ns3::AddressChecker::AddressChecker() [constructor]
7617 cls.add_constructor([])
7618 ## address.h (module 'network'): ns3::AddressChecker::AddressChecker(ns3::AddressChecker const & arg0) [copy constructor]
7619 cls.add_constructor([param('ns3::AddressChecker const &', 'arg0')])
7620 return
7621
7622def register_Ns3AddressValue_methods(root_module, cls):
7623 ## address.h (module 'network'): ns3::AddressValue::AddressValue() [constructor]
7624 cls.add_constructor([])
7625 ## address.h (module 'network'): ns3::AddressValue::AddressValue(ns3::AddressValue const & arg0) [copy constructor]
7626 cls.add_constructor([param('ns3::AddressValue const &', 'arg0')])
7627 ## address.h (module 'network'): ns3::AddressValue::AddressValue(ns3::Address const & value) [constructor]
7628 cls.add_constructor([param('ns3::Address const &', 'value')])
7629 ## address.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::AddressValue::Copy() const [member function]
7630 cls.add_method('Copy',
7631 'ns3::Ptr< ns3::AttributeValue >',
7632 [],
7633 is_const=True, is_virtual=True)
7634 ## address.h (module 'network'): bool ns3::AddressValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
7635 cls.add_method('DeserializeFromString',
7636 'bool',
7637 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
7638 is_virtual=True)
7639 ## address.h (module 'network'): ns3::Address ns3::AddressValue::Get() const [member function]
7640 cls.add_method('Get',
7641 'ns3::Address',
7642 [],
7643 is_const=True)
7644 ## address.h (module 'network'): std::string ns3::AddressValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
7645 cls.add_method('SerializeToString',
7646 'std::string',
7647 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
7648 is_const=True, is_virtual=True)
7649 ## address.h (module 'network'): void ns3::AddressValue::Set(ns3::Address const & value) [member function]
7650 cls.add_method('Set',
7651 'void',
7652 [param('ns3::Address const &', 'value')])
7653 return
7654
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08007655def register_functions(root_module):
7656 module = root_module
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08007657 ## batches.h (module 'NDNabstraction'): extern ns3::Ptr<ns3::AttributeChecker const> ns3::MakeBatchesChecker() [free function]
7658 module.add_function('MakeBatchesChecker',
7659 'ns3::Ptr< ns3::AttributeChecker const >',
7660 [])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08007661 ## ccnx-name-components.h (module 'NDNabstraction'): extern ns3::Ptr<ns3::AttributeChecker const> ns3::MakeCcnxNameComponentsChecker() [free function]
7662 module.add_function('MakeCcnxNameComponentsChecker',
7663 'ns3::Ptr< ns3::AttributeChecker const >',
7664 [])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08007665 register_functions_ns3_FatalImpl(module.get_submodule('FatalImpl'), root_module)
7666 register_functions_ns3_internal(module.get_submodule('internal'), root_module)
7667 return
7668
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08007669def register_functions_ns3_FatalImpl(module, root_module):
7670 return
7671
7672def register_functions_ns3_internal(module, root_module):
7673 return
7674
7675def main():
7676 out = FileCodeSink(sys.stdout)
7677 root_module = module_init()
7678 register_types(root_module)
7679 register_methods(root_module)
7680 register_functions(root_module)
7681 root_module.generate(out)
7682
7683if __name__ == '__main__':
7684 main()
7685