blob: 1b1c512826b667b9f285855f63950776ae05ec41 [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():
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -070017 root_module = Module('ns.ndnSIM', cpp_namespace='::ns3')
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -080018 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 Afanasyevaa032ea2011-12-13 12:38:32 -080049 ## event-id.h (module 'core'): ns3::EventId [class]
50 module.add_class('EventId', import_from_module='ns.core')
51 ## ipv4-address.h (module 'network'): ns3::Ipv4Address [class]
52 module.add_class('Ipv4Address', import_from_module='ns.network')
53 ## ipv4-address.h (module 'network'): ns3::Ipv4Address [class]
54 root_module['ns3::Ipv4Address'].implicitly_converts_to(root_module['ns3::Address'])
55 ## ipv4-address.h (module 'network'): ns3::Ipv4Mask [class]
56 module.add_class('Ipv4Mask', import_from_module='ns.network')
57 ## ipv6-address.h (module 'network'): ns3::Ipv6Address [class]
58 module.add_class('Ipv6Address', import_from_module='ns.network')
59 ## ipv6-address.h (module 'network'): ns3::Ipv6Address [class]
60 root_module['ns3::Ipv6Address'].implicitly_converts_to(root_module['ns3::Address'])
61 ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix [class]
62 module.add_class('Ipv6Prefix', import_from_module='ns.network')
Alexander Afanasyev29c19b92012-09-03 23:46:41 -070063 ## net-device-container.h (module 'network'): ns3::NetDeviceContainer [class]
64 module.add_class('NetDeviceContainer', import_from_module='ns.network')
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -080065 ## node-container.h (module 'network'): ns3::NodeContainer [class]
66 module.add_class('NodeContainer', import_from_module='ns.network')
67 ## object-base.h (module 'core'): ns3::ObjectBase [class]
68 module.add_class('ObjectBase', allow_subclassing=True, import_from_module='ns.core')
69 ## object.h (module 'core'): ns3::ObjectDeleter [struct]
70 module.add_class('ObjectDeleter', import_from_module='ns.core')
71 ## object-factory.h (module 'core'): ns3::ObjectFactory [class]
72 module.add_class('ObjectFactory', import_from_module='ns.core')
73 ## packet-metadata.h (module 'network'): ns3::PacketMetadata [class]
74 module.add_class('PacketMetadata', import_from_module='ns.network')
75 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item [struct]
76 module.add_class('Item', import_from_module='ns.network', outer_class=root_module['ns3::PacketMetadata'])
77 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item [enumeration]
78 module.add_enum('', ['PAYLOAD', 'HEADER', 'TRAILER'], outer_class=root_module['ns3::PacketMetadata::Item'], import_from_module='ns.network')
79 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::ItemIterator [class]
80 module.add_class('ItemIterator', import_from_module='ns.network', outer_class=root_module['ns3::PacketMetadata'])
Alexander Afanasyevad5acce2012-05-31 12:43:08 -070081 ## packet.h (module 'network'): ns3::PacketTagIterator [class]
82 module.add_class('PacketTagIterator', import_from_module='ns.network')
83 ## packet.h (module 'network'): ns3::PacketTagIterator::Item [class]
84 module.add_class('Item', import_from_module='ns.network', outer_class=root_module['ns3::PacketTagIterator'])
85 ## packet-tag-list.h (module 'network'): ns3::PacketTagList [class]
86 module.add_class('PacketTagList', import_from_module='ns.network')
87 ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData [struct]
88 module.add_class('TagData', import_from_module='ns.network', outer_class=root_module['ns3::PacketTagList'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -070089 ## random-variable.h (module 'core'): ns3::RandomVariable [class]
90 module.add_class('RandomVariable', import_from_module='ns.core')
91 ## rng-seed-manager.h (module 'core'): ns3::RngSeedManager [class]
92 module.add_class('RngSeedManager', import_from_module='ns.core')
93 ## random-variable.h (module 'core'): ns3::SequentialVariable [class]
94 module.add_class('SequentialVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -080095 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter> [class]
96 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 Afanasyev29c19b92012-09-03 23:46:41 -070097 ## spring-mobility-helper.h (module 'ndnSIM'): ns3::SpringMobilityHelper [class]
98 module.add_class('SpringMobilityHelper')
Alexander Afanasyevad5acce2012-05-31 12:43:08 -070099 ## tag.h (module 'network'): ns3::Tag [class]
100 module.add_class('Tag', import_from_module='ns.network', parent=root_module['ns3::ObjectBase'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800101 ## tag-buffer.h (module 'network'): ns3::TagBuffer [class]
102 module.add_class('TagBuffer', import_from_module='ns.network')
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700103 ## random-variable.h (module 'core'): ns3::TriangularVariable [class]
104 module.add_class('TriangularVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800105 ## type-id.h (module 'core'): ns3::TypeId [class]
106 module.add_class('TypeId', import_from_module='ns.core')
107 ## type-id.h (module 'core'): ns3::TypeId::AttributeFlag [enumeration]
108 module.add_enum('AttributeFlag', ['ATTR_GET', 'ATTR_SET', 'ATTR_CONSTRUCT', 'ATTR_SGC'], outer_class=root_module['ns3::TypeId'], import_from_module='ns.core')
109 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation [struct]
110 module.add_class('AttributeInformation', import_from_module='ns.core', outer_class=root_module['ns3::TypeId'])
111 ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation [struct]
112 module.add_class('TraceSourceInformation', import_from_module='ns.core', outer_class=root_module['ns3::TypeId'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700113 ## random-variable.h (module 'core'): ns3::UniformVariable [class]
114 module.add_class('UniformVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
115 ## vector.h (module 'core'): ns3::Vector2D [class]
116 module.add_class('Vector2D', import_from_module='ns.core')
117 ## vector.h (module 'core'): ns3::Vector3D [class]
118 module.add_class('Vector3D', import_from_module='ns.core')
119 ## random-variable.h (module 'core'): ns3::WeibullVariable [class]
120 module.add_class('WeibullVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
121 ## random-variable.h (module 'core'): ns3::ZetaVariable [class]
122 module.add_class('ZetaVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
123 ## random-variable.h (module 'core'): ns3::ZipfVariable [class]
124 module.add_class('ZipfVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800125 ## empty.h (module 'core'): ns3::empty [class]
126 module.add_class('empty', import_from_module='ns.core')
127 ## int64x64-double.h (module 'core'): ns3::int64x64_t [class]
128 module.add_class('int64x64_t', import_from_module='ns.core')
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800129 ## chunk.h (module 'network'): ns3::Chunk [class]
Alexander Afanasyev4756b892012-04-18 14:48:43 -0700130 module.add_class('Chunk', import_from_module='ns.network', parent=root_module['ns3::ObjectBase'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700131 ## random-variable.h (module 'core'): ns3::ConstantVariable [class]
132 module.add_class('ConstantVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
133 ## random-variable.h (module 'core'): ns3::DeterministicVariable [class]
134 module.add_class('DeterministicVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
135 ## random-variable.h (module 'core'): ns3::EmpiricalVariable [class]
136 module.add_class('EmpiricalVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
137 ## random-variable.h (module 'core'): ns3::ErlangVariable [class]
138 module.add_class('ErlangVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
139 ## random-variable.h (module 'core'): ns3::ExponentialVariable [class]
140 module.add_class('ExponentialVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
141 ## random-variable.h (module 'core'): ns3::GammaVariable [class]
142 module.add_class('GammaVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800143 ## header.h (module 'network'): ns3::Header [class]
144 module.add_class('Header', import_from_module='ns.network', parent=root_module['ns3::Chunk'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700145 ## random-variable.h (module 'core'): ns3::IntEmpiricalVariable [class]
146 module.add_class('IntEmpiricalVariable', import_from_module='ns.core', parent=root_module['ns3::EmpiricalVariable'])
147 ## random-variable.h (module 'core'): ns3::LogNormalVariable [class]
148 module.add_class('LogNormalVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
149 ## random-variable.h (module 'core'): ns3::NormalVariable [class]
150 module.add_class('NormalVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800151 ## object.h (module 'core'): ns3::Object [class]
152 module.add_class('Object', import_from_module='ns.core', parent=root_module['ns3::SimpleRefCount< ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter >'])
153 ## object.h (module 'core'): ns3::Object::AggregateIterator [class]
154 module.add_class('AggregateIterator', import_from_module='ns.core', outer_class=root_module['ns3::Object'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700155 ## random-variable.h (module 'core'): ns3::ParetoVariable [class]
156 module.add_class('ParetoVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800157 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> > [class]
158 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'))
159 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter<ns3::AttributeChecker> > [class]
160 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'))
161 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter<ns3::AttributeValue> > [class]
162 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'))
163 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> > [class]
164 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 Afanasyevaa032ea2011-12-13 12:38:32 -0800165 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::EventImpl, ns3::empty, ns3::DefaultDeleter<ns3::EventImpl> > [class]
166 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'))
167 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::NixVector, ns3::empty, ns3::DefaultDeleter<ns3::NixVector> > [class]
168 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 Afanasyevaa032ea2011-12-13 12:38:32 -0800169 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Packet, ns3::empty, ns3::DefaultDeleter<ns3::Packet> > [class]
170 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 Afanasyev29c19b92012-09-03 23:46:41 -0700171 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::TopologyReader, ns3::empty, ns3::DefaultDeleter<ns3::TopologyReader> > [class]
172 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 -0800173 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter<ns3::TraceSourceAccessor> > [class]
174 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 Afanasyevcf6dc922012-08-10 16:55:27 -0700175 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::ndn::ContentObjectHeader, ns3::Header, ns3::DefaultDeleter<ns3::ndn::ContentObjectHeader> > [class]
176 module.add_class('SimpleRefCount', automatic_type_narrowing=True, template_parameters=['ns3::ndn::ContentObjectHeader', 'ns3::Header', 'ns3::DefaultDeleter<ns3::ndn::ContentObjectHeader>'], parent=root_module['ns3::Header'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
177 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::ndn::FaceContainer, ns3::empty, ns3::DefaultDeleter<ns3::ndn::FaceContainer> > [class]
178 module.add_class('SimpleRefCount', automatic_type_narrowing=True, template_parameters=['ns3::ndn::FaceContainer', 'ns3::empty', 'ns3::DefaultDeleter<ns3::ndn::FaceContainer>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
179 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::ndn::InterestHeader, ns3::Header, ns3::DefaultDeleter<ns3::ndn::InterestHeader> > [class]
180 module.add_class('SimpleRefCount', automatic_type_narrowing=True, import_from_module='ns.core', template_parameters=['ns3::ndn::InterestHeader', 'ns3::Header', 'ns3::DefaultDeleter<ns3::ndn::InterestHeader>'], parent=root_module['ns3::Header'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
181 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::ndn::NameComponents, ns3::empty, ns3::DefaultDeleter<ns3::ndn::NameComponents> > [class]
182 module.add_class('SimpleRefCount', automatic_type_narrowing=True, template_parameters=['ns3::ndn::NameComponents', 'ns3::empty', 'ns3::DefaultDeleter<ns3::ndn::NameComponents>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
183 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::ndn::cs::Entry, ns3::empty, ns3::DefaultDeleter<ns3::ndn::cs::Entry> > [class]
184 module.add_class('SimpleRefCount', automatic_type_narrowing=True, template_parameters=['ns3::ndn::cs::Entry', 'ns3::empty', 'ns3::DefaultDeleter<ns3::ndn::cs::Entry>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700185 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::ndn::pit::Entry, ns3::empty, ns3::DefaultDeleter<ns3::ndn::pit::Entry> > [class]
186 module.add_class('SimpleRefCount', automatic_type_narrowing=True, template_parameters=['ns3::ndn::pit::Entry', 'ns3::empty', 'ns3::DefaultDeleter<ns3::ndn::pit::Entry>'], 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 -0800187 ## nstime.h (module 'core'): ns3::Time [class]
188 module.add_class('Time', import_from_module='ns.core')
189 ## nstime.h (module 'core'): ns3::Time::Unit [enumeration]
190 module.add_enum('Unit', ['S', 'MS', 'US', 'NS', 'PS', 'FS', 'LAST'], outer_class=root_module['ns3::Time'], import_from_module='ns.core')
191 ## nstime.h (module 'core'): ns3::Time [class]
192 root_module['ns3::Time'].implicitly_converts_to(root_module['ns3::int64x64_t'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700193 ## topology-reader.h (module 'topology-read'): ns3::TopologyReader [class]
194 module.add_class('TopologyReader', import_from_module='ns.topology_read', parent=root_module['ns3::SimpleRefCount< ns3::TopologyReader, ns3::empty, ns3::DefaultDeleter<ns3::TopologyReader> >'])
195 ## topology-reader.h (module 'topology-read'): ns3::TopologyReader::Link [class]
196 module.add_class('Link', import_from_module='ns.topology_read', outer_class=root_module['ns3::TopologyReader'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800197 ## trace-source-accessor.h (module 'core'): ns3::TraceSourceAccessor [class]
198 module.add_class('TraceSourceAccessor', import_from_module='ns.core', parent=root_module['ns3::SimpleRefCount< ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter<ns3::TraceSourceAccessor> >'])
199 ## trailer.h (module 'network'): ns3::Trailer [class]
200 module.add_class('Trailer', import_from_module='ns.network', parent=root_module['ns3::Chunk'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700201 ## annotated-topology-reader.h (module 'ndnSIM'): ns3::AnnotatedTopologyReader [class]
202 module.add_class('AnnotatedTopologyReader', parent=root_module['ns3::TopologyReader'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800203 ## application.h (module 'network'): ns3::Application [class]
204 module.add_class('Application', import_from_module='ns.network', parent=root_module['ns3::Object'])
205 ## attribute.h (module 'core'): ns3::AttributeAccessor [class]
206 module.add_class('AttributeAccessor', import_from_module='ns.core', parent=root_module['ns3::SimpleRefCount< ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> >'])
207 ## attribute.h (module 'core'): ns3::AttributeChecker [class]
208 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> >'])
209 ## attribute.h (module 'core'): ns3::AttributeValue [class]
210 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 Afanasyevca5f6d12012-09-04 00:05:12 -0700211 ## boolean.h (module 'core'): ns3::BooleanChecker [class]
212 module.add_class('BooleanChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker'])
213 ## boolean.h (module 'core'): ns3::BooleanValue [class]
214 module.add_class('BooleanValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800215 ## callback.h (module 'core'): ns3::CallbackChecker [class]
216 module.add_class('CallbackChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker'])
217 ## callback.h (module 'core'): ns3::CallbackImplBase [class]
218 module.add_class('CallbackImplBase', import_from_module='ns.core', parent=root_module['ns3::SimpleRefCount< ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> >'])
219 ## callback.h (module 'core'): ns3::CallbackValue [class]
220 module.add_class('CallbackValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -0700221 ## double.h (module 'core'): ns3::DoubleValue [class]
222 module.add_class('DoubleValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800223 ## attribute.h (module 'core'): ns3::EmptyAttributeValue [class]
224 module.add_class('EmptyAttributeValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -0700225 ## enum.h (module 'core'): ns3::EnumChecker [class]
226 module.add_class('EnumChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker'])
227 ## enum.h (module 'core'): ns3::EnumValue [class]
228 module.add_class('EnumValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800229 ## event-impl.h (module 'core'): ns3::EventImpl [class]
230 module.add_class('EventImpl', import_from_module='ns.core', parent=root_module['ns3::SimpleRefCount< ns3::EventImpl, ns3::empty, ns3::DefaultDeleter<ns3::EventImpl> >'])
231 ## integer.h (module 'core'): ns3::IntegerValue [class]
232 module.add_class('IntegerValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
233 ## ipv4-address.h (module 'network'): ns3::Ipv4AddressChecker [class]
234 module.add_class('Ipv4AddressChecker', import_from_module='ns.network', parent=root_module['ns3::AttributeChecker'])
235 ## ipv4-address.h (module 'network'): ns3::Ipv4AddressValue [class]
236 module.add_class('Ipv4AddressValue', import_from_module='ns.network', parent=root_module['ns3::AttributeValue'])
237 ## ipv4-address.h (module 'network'): ns3::Ipv4MaskChecker [class]
238 module.add_class('Ipv4MaskChecker', import_from_module='ns.network', parent=root_module['ns3::AttributeChecker'])
239 ## ipv4-address.h (module 'network'): ns3::Ipv4MaskValue [class]
240 module.add_class('Ipv4MaskValue', import_from_module='ns.network', parent=root_module['ns3::AttributeValue'])
241 ## ipv6-address.h (module 'network'): ns3::Ipv6AddressChecker [class]
242 module.add_class('Ipv6AddressChecker', import_from_module='ns.network', parent=root_module['ns3::AttributeChecker'])
243 ## ipv6-address.h (module 'network'): ns3::Ipv6AddressValue [class]
244 module.add_class('Ipv6AddressValue', import_from_module='ns.network', parent=root_module['ns3::AttributeValue'])
245 ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixChecker [class]
246 module.add_class('Ipv6PrefixChecker', import_from_module='ns.network', parent=root_module['ns3::AttributeChecker'])
247 ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixValue [class]
248 module.add_class('Ipv6PrefixValue', import_from_module='ns.network', parent=root_module['ns3::AttributeValue'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700249 ## mobility-model.h (module 'mobility'): ns3::MobilityModel [class]
250 module.add_class('MobilityModel', import_from_module='ns.mobility', parent=root_module['ns3::Object'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800251 ## net-device.h (module 'network'): ns3::NetDevice [class]
252 module.add_class('NetDevice', import_from_module='ns.network', parent=root_module['ns3::Object'])
253 ## net-device.h (module 'network'): ns3::NetDevice::PacketType [enumeration]
254 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')
255 ## nix-vector.h (module 'network'): ns3::NixVector [class]
256 module.add_class('NixVector', import_from_module='ns.network', parent=root_module['ns3::SimpleRefCount< ns3::NixVector, ns3::empty, ns3::DefaultDeleter<ns3::NixVector> >'])
257 ## node.h (module 'network'): ns3::Node [class]
258 module.add_class('Node', import_from_module='ns.network', parent=root_module['ns3::Object'])
259 ## object-factory.h (module 'core'): ns3::ObjectFactoryChecker [class]
260 module.add_class('ObjectFactoryChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker'])
261 ## object-factory.h (module 'core'): ns3::ObjectFactoryValue [class]
262 module.add_class('ObjectFactoryValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800263 ## packet.h (module 'network'): ns3::Packet [class]
264 module.add_class('Packet', import_from_module='ns.network', parent=root_module['ns3::SimpleRefCount< ns3::Packet, ns3::empty, ns3::DefaultDeleter<ns3::Packet> >'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700265 ## random-variable.h (module 'core'): ns3::RandomVariableChecker [class]
266 module.add_class('RandomVariableChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker'])
267 ## random-variable.h (module 'core'): ns3::RandomVariableValue [class]
268 module.add_class('RandomVariableValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
269 ## rocketfuel-weights-reader.h (module 'ndnSIM'): ns3::RocketfuelWeightsReader [class]
270 module.add_class('RocketfuelWeightsReader', parent=root_module['ns3::AnnotatedTopologyReader'])
271 ## rocketfuel-weights-reader.h (module 'ndnSIM'): ns3::RocketfuelWeightsReader [enumeration]
272 module.add_enum('', ['LINKS', 'WEIGHTS', 'LATENCIES', 'POSITIONS'], outer_class=root_module['ns3::RocketfuelWeightsReader'])
273 ## spring-mobility-model.h (module 'ndnSIM'): ns3::SpringMobilityModel [class]
274 module.add_class('SpringMobilityModel', parent=root_module['ns3::MobilityModel'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800275 ## nstime.h (module 'core'): ns3::TimeChecker [class]
276 module.add_class('TimeChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker'])
277 ## nstime.h (module 'core'): ns3::TimeValue [class]
278 module.add_class('TimeValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
279 ## type-id.h (module 'core'): ns3::TypeIdChecker [class]
280 module.add_class('TypeIdChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker'])
281 ## type-id.h (module 'core'): ns3::TypeIdValue [class]
282 module.add_class('TypeIdValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -0700283 ## uinteger.h (module 'core'): ns3::UintegerValue [class]
284 module.add_class('UintegerValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700285 ## vector.h (module 'core'): ns3::Vector2DChecker [class]
286 module.add_class('Vector2DChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker'])
287 ## vector.h (module 'core'): ns3::Vector2DValue [class]
288 module.add_class('Vector2DValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
289 ## vector.h (module 'core'): ns3::Vector3DChecker [class]
290 module.add_class('Vector3DChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker'])
291 ## vector.h (module 'core'): ns3::Vector3DValue [class]
292 module.add_class('Vector3DValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800293 ## address.h (module 'network'): ns3::AddressChecker [class]
294 module.add_class('AddressChecker', import_from_module='ns.network', parent=root_module['ns3::AttributeChecker'])
295 ## address.h (module 'network'): ns3::AddressValue [class]
296 module.add_class('AddressValue', import_from_module='ns.network', parent=root_module['ns3::AttributeValue'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700297 module.add_container('std::map< std::string, std::string >', ('std::string', 'std::string'), container_type='map')
298 module.add_container('std::list< ns3::TopologyReader::Link >', 'ns3::TopologyReader::Link', container_type='list')
299 typehandlers.add_type_alias('ns3::Vector3DChecker', 'ns3::VectorChecker')
300 typehandlers.add_type_alias('ns3::Vector3DChecker*', 'ns3::VectorChecker*')
301 typehandlers.add_type_alias('ns3::Vector3DChecker&', 'ns3::VectorChecker&')
302 module.add_typedef(root_module['ns3::Vector3DChecker'], 'VectorChecker')
303 typehandlers.add_type_alias('ns3::RngSeedManager', 'ns3::SeedManager')
304 typehandlers.add_type_alias('ns3::RngSeedManager*', 'ns3::SeedManager*')
305 typehandlers.add_type_alias('ns3::RngSeedManager&', 'ns3::SeedManager&')
306 module.add_typedef(root_module['ns3::RngSeedManager'], 'SeedManager')
307 typehandlers.add_type_alias('ns3::Vector3D', 'ns3::Vector')
308 typehandlers.add_type_alias('ns3::Vector3D*', 'ns3::Vector*')
309 typehandlers.add_type_alias('ns3::Vector3D&', 'ns3::Vector&')
310 module.add_typedef(root_module['ns3::Vector3D'], 'Vector')
311 typehandlers.add_type_alias('ns3::Vector3DValue', 'ns3::VectorValue')
312 typehandlers.add_type_alias('ns3::Vector3DValue*', 'ns3::VectorValue*')
313 typehandlers.add_type_alias('ns3::Vector3DValue&', 'ns3::VectorValue&')
314 module.add_typedef(root_module['ns3::Vector3DValue'], 'VectorValue')
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800315
316 ## Register a nested module for the namespace FatalImpl
317
318 nested_module = module.add_cpp_namespace('FatalImpl')
319 register_types_ns3_FatalImpl(nested_module)
320
321
322 ## Register a nested module for the namespace internal
323
324 nested_module = module.add_cpp_namespace('internal')
325 register_types_ns3_internal(nested_module)
326
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700327
328 ## Register a nested module for the namespace ndn
329
330 nested_module = module.add_cpp_namespace('ndn')
331 register_types_ns3_ndn(nested_module)
332
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800333
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800334def register_types_ns3_FatalImpl(module):
335 root_module = module.get_root()
336
337
338def register_types_ns3_internal(module):
339 root_module = module.get_root()
340
341
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700342def register_types_ns3_ndn(module):
343 root_module = module.get_root()
344
345 ## ndn-app.h (module 'ndnSIM'): ns3::ndn::App [class]
346 module.add_class('App', parent=root_module['ns3::Application'])
347 ## ndn-app-helper.h (module 'ndnSIM'): ns3::ndn::AppHelper [class]
348 module.add_class('AppHelper')
349 ## ndn-content-object-header.h (module 'ndnSIM'): ns3::ndn::ContentObjectHeader [class]
350 module.add_class('ContentObjectHeader', parent=root_module['ns3::SimpleRefCount< ns3::ndn::ContentObjectHeader, ns3::Header, ns3::DefaultDeleter<ns3::ndn::ContentObjectHeader> >'])
351 ## ndn-content-object-header.h (module 'ndnSIM'): ns3::ndn::ContentObjectHeader::ContentType [enumeration]
352 module.add_enum('ContentType', ['DATA', 'ENCR', 'GONE', 'KEY', 'LINK', 'NACK'], outer_class=root_module['ns3::ndn::ContentObjectHeader'])
353 ## ndn-content-object-header.h (module 'ndnSIM'): ns3::ndn::ContentObjectHeader::Signature [class]
354 module.add_class('Signature', outer_class=root_module['ns3::ndn::ContentObjectHeader'])
355 ## ndn-content-object-header.h (module 'ndnSIM'): ns3::ndn::ContentObjectHeader::SignedInfo [class]
356 module.add_class('SignedInfo', outer_class=root_module['ns3::ndn::ContentObjectHeader'])
357 ## ndn-content-object-header.h (module 'ndnSIM'): ns3::ndn::ContentObjectHeaderException [class]
358 module.add_class('ContentObjectHeaderException')
359 ## ndn-content-object-header.h (module 'ndnSIM'): ns3::ndn::ContentObjectTail [class]
360 module.add_class('ContentObjectTail', parent=root_module['ns3::Trailer'])
361 ## ndn-content-store.h (module 'ndnSIM'): ns3::ndn::ContentStore [class]
362 module.add_class('ContentStore', parent=root_module['ns3::Object'])
363 ## ndn-face.h (module 'ndnSIM'): ns3::ndn::Face [class]
364 module.add_class('Face', parent=root_module['ns3::Object'])
365 ## ndn-face-container.h (module 'ndnSIM'): ns3::ndn::FaceContainer [class]
366 module.add_class('FaceContainer', parent=root_module['ns3::SimpleRefCount< ns3::ndn::FaceContainer, ns3::empty, ns3::DefaultDeleter<ns3::ndn::FaceContainer> >'])
367 ## ndn-fib.h (module 'ndnSIM'): ns3::ndn::Fib [class]
368 module.add_class('Fib', parent=root_module['ns3::Object'])
369 ## ndn-forwarding-strategy.h (module 'ndnSIM'): ns3::ndn::ForwardingStrategy [class]
370 module.add_class('ForwardingStrategy', parent=root_module['ns3::Object'])
371 ## ndn-global-routing-helper.h (module 'ndnSIM'): ns3::ndn::GlobalRoutingHelper [class]
372 module.add_class('GlobalRoutingHelper')
373 ## ndn-header-helper.h (module 'ndnSIM'): ns3::ndn::HeaderHelper [class]
374 module.add_class('HeaderHelper')
375 ## ndn-header-helper.h (module 'ndnSIM'): ns3::ndn::HeaderHelper::Type [enumeration]
376 module.add_enum('Type', ['INTEREST', 'CONTENT_OBJECT'], outer_class=root_module['ns3::ndn::HeaderHelper'])
377 ## ndn-interest-header.h (module 'ndnSIM'): ns3::ndn::InterestHeader [class]
378 module.add_class('InterestHeader', parent=root_module['ns3::SimpleRefCount< ns3::ndn::InterestHeader, ns3::Header, ns3::DefaultDeleter<ns3::ndn::InterestHeader> >'])
379 ## ndn-interest-header.h (module 'ndnSIM'): ns3::ndn::InterestHeader [enumeration]
380 module.add_enum('', ['NORMAL_INTEREST', 'NACK_LOOP', 'NACK_CONGESTION', 'NACK_GIVEUP_PIT'], outer_class=root_module['ns3::ndn::InterestHeader'])
381 ## ndn-interest-header.h (module 'ndnSIM'): ns3::ndn::InterestHeaderException [class]
382 module.add_class('InterestHeaderException')
383 ## ndn-l3-protocol.h (module 'ndnSIM'): ns3::ndn::L3Protocol [class]
384 module.add_class('L3Protocol', parent=root_module['ns3::Object'])
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -0700385 ## ndn-limits.h (module 'ndnSIM'): ns3::ndn::Limits [class]
386 module.add_class('Limits', parent=root_module['ns3::Object'])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700387 ## ndn-name-components.h (module 'ndnSIM'): ns3::ndn::NameComponents [class]
388 module.add_class('NameComponents', parent=root_module['ns3::SimpleRefCount< ns3::ndn::NameComponents, ns3::empty, ns3::DefaultDeleter<ns3::ndn::NameComponents> >'])
389 ## ndn-name-components.h (module 'ndnSIM'): ns3::ndn::NameComponentsChecker [class]
390 module.add_class('NameComponentsChecker', parent=root_module['ns3::AttributeChecker'])
391 ## ndn-name-components.h (module 'ndnSIM'): ns3::ndn::NameComponentsValue [class]
392 module.add_class('NameComponentsValue', parent=root_module['ns3::AttributeValue'])
393 ## ndn-net-device-face.h (module 'ndnSIM'): ns3::ndn::NetDeviceFace [class]
394 module.add_class('NetDeviceFace', parent=root_module['ns3::ndn::Face'])
395 ## ndn-pit.h (module 'ndnSIM'): ns3::ndn::Pit [class]
396 module.add_class('Pit', parent=root_module['ns3::Object'])
397 ## ndn-stack-helper.h (module 'ndnSIM'): ns3::ndn::StackHelper [class]
398 module.add_class('StackHelper')
399 ## ndn-header-helper.h (module 'ndnSIM'): ns3::ndn::UnknownHeaderException [class]
400 module.add_class('UnknownHeaderException')
401 ## ndn-app-face.h (module 'ndnSIM'): ns3::ndn::AppFace [class]
402 module.add_class('AppFace', parent=root_module['ns3::ndn::Face'])
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -0700403 module.add_container('std::vector< ns3::Ptr< ns3::ndn::Face > >', 'ns3::Ptr< ns3::ndn::Face >', container_type='vector')
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700404 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')
405 module.add_container('std::list< std::string >', 'std::string', container_type='list')
406
407 ## Register a nested module for the namespace cs
408
409 nested_module = module.add_cpp_namespace('cs')
410 register_types_ns3_ndn_cs(nested_module)
411
412
413 ## Register a nested module for the namespace fib
414
415 nested_module = module.add_cpp_namespace('fib')
416 register_types_ns3_ndn_fib(nested_module)
417
418
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -0700419 ## Register a nested module for the namespace fw
420
421 nested_module = module.add_cpp_namespace('fw')
422 register_types_ns3_ndn_fw(nested_module)
423
424
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700425 ## Register a nested module for the namespace pit
426
427 nested_module = module.add_cpp_namespace('pit')
428 register_types_ns3_ndn_pit(nested_module)
429
430
431def register_types_ns3_ndn_cs(module):
432 root_module = module.get_root()
433
434 ## ndn-content-store.h (module 'ndnSIM'): ns3::ndn::cs::Entry [class]
435 module.add_class('Entry', parent=root_module['ns3::SimpleRefCount< ns3::ndn::cs::Entry, ns3::empty, ns3::DefaultDeleter<ns3::ndn::cs::Entry> >'])
436
437def register_types_ns3_ndn_fib(module):
438 root_module = module.get_root()
439
440 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::Entry [class]
Alexander Afanasyevf5c07742012-10-31 13:13:05 -0700441 module.add_class('Entry', parent=root_module['ns3::Object'])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700442 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::Entry::NoFaces [class]
443 module.add_class('NoFaces', outer_class=root_module['ns3::ndn::fib::Entry'])
444 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::FaceMetric [class]
445 module.add_class('FaceMetric')
446 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::FaceMetric::Status [enumeration]
447 module.add_enum('Status', ['NDN_FIB_GREEN', 'NDN_FIB_YELLOW', 'NDN_FIB_RED'], outer_class=root_module['ns3::ndn::fib::FaceMetric'])
448 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::FaceMetricContainer [struct]
449 module.add_class('FaceMetricContainer')
450 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::i_face [class]
451 module.add_class('i_face')
452 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::i_metric [class]
453 module.add_class('i_metric')
454 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::i_nth [class]
455 module.add_class('i_nth')
456
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -0700457def register_types_ns3_ndn_fw(module):
458 root_module = module.get_root()
459
460 ## ndn-fw-tag.h (module 'ndnSIM'): ns3::ndn::fw::Tag [class]
461 module.add_class('Tag')
462
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700463def register_types_ns3_ndn_pit(module):
464 root_module = module.get_root()
465
466 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::ndn::pit::Entry [class]
467 module.add_class('Entry', parent=root_module['ns3::SimpleRefCount< ns3::ndn::pit::Entry, ns3::empty, ns3::DefaultDeleter<ns3::ndn::pit::Entry> >'])
468 ## ndn-pit-entry-incoming-face.h (module 'ndnSIM'): ns3::ndn::pit::IncomingFace [struct]
469 module.add_class('IncomingFace')
470 ## ndn-pit-entry-outgoing-face.h (module 'ndnSIM'): ns3::ndn::pit::OutgoingFace [struct]
471 module.add_class('OutgoingFace')
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700472 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::ndn::pit::i_face [class]
473 module.add_class('i_face')
474 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::ndn::pit::i_retx [class]
475 module.add_class('i_retx')
476 module.add_container('std::set< ns3::ndn::pit::IncomingFace >', 'ns3::ndn::pit::IncomingFace', container_type='set')
Alexander Afanasyevc202fd92012-09-03 21:46:00 -0700477 module.add_container('std::set< ns3::ndn::pit::OutgoingFace >', 'ns3::ndn::pit::OutgoingFace', container_type='set')
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700478 module.add_container('std::set< unsigned int >', 'unsigned int', container_type='set')
479
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800480def register_methods(root_module):
481 register_Ns3Address_methods(root_module, root_module['ns3::Address'])
482 register_Ns3ApplicationContainer_methods(root_module, root_module['ns3::ApplicationContainer'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800483 register_Ns3AttributeConstructionList_methods(root_module, root_module['ns3::AttributeConstructionList'])
484 register_Ns3AttributeConstructionListItem_methods(root_module, root_module['ns3::AttributeConstructionList::Item'])
485 register_Ns3Buffer_methods(root_module, root_module['ns3::Buffer'])
486 register_Ns3BufferIterator_methods(root_module, root_module['ns3::Buffer::Iterator'])
487 register_Ns3ByteTagIterator_methods(root_module, root_module['ns3::ByteTagIterator'])
488 register_Ns3ByteTagIteratorItem_methods(root_module, root_module['ns3::ByteTagIterator::Item'])
489 register_Ns3ByteTagList_methods(root_module, root_module['ns3::ByteTagList'])
490 register_Ns3ByteTagListIterator_methods(root_module, root_module['ns3::ByteTagList::Iterator'])
491 register_Ns3ByteTagListIteratorItem_methods(root_module, root_module['ns3::ByteTagList::Iterator::Item'])
492 register_Ns3CallbackBase_methods(root_module, root_module['ns3::CallbackBase'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800493 register_Ns3EventId_methods(root_module, root_module['ns3::EventId'])
494 register_Ns3Ipv4Address_methods(root_module, root_module['ns3::Ipv4Address'])
495 register_Ns3Ipv4Mask_methods(root_module, root_module['ns3::Ipv4Mask'])
496 register_Ns3Ipv6Address_methods(root_module, root_module['ns3::Ipv6Address'])
497 register_Ns3Ipv6Prefix_methods(root_module, root_module['ns3::Ipv6Prefix'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700498 register_Ns3NetDeviceContainer_methods(root_module, root_module['ns3::NetDeviceContainer'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800499 register_Ns3NodeContainer_methods(root_module, root_module['ns3::NodeContainer'])
500 register_Ns3ObjectBase_methods(root_module, root_module['ns3::ObjectBase'])
501 register_Ns3ObjectDeleter_methods(root_module, root_module['ns3::ObjectDeleter'])
502 register_Ns3ObjectFactory_methods(root_module, root_module['ns3::ObjectFactory'])
503 register_Ns3PacketMetadata_methods(root_module, root_module['ns3::PacketMetadata'])
504 register_Ns3PacketMetadataItem_methods(root_module, root_module['ns3::PacketMetadata::Item'])
505 register_Ns3PacketMetadataItemIterator_methods(root_module, root_module['ns3::PacketMetadata::ItemIterator'])
Alexander Afanasyevad5acce2012-05-31 12:43:08 -0700506 register_Ns3PacketTagIterator_methods(root_module, root_module['ns3::PacketTagIterator'])
507 register_Ns3PacketTagIteratorItem_methods(root_module, root_module['ns3::PacketTagIterator::Item'])
508 register_Ns3PacketTagList_methods(root_module, root_module['ns3::PacketTagList'])
509 register_Ns3PacketTagListTagData_methods(root_module, root_module['ns3::PacketTagList::TagData'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700510 register_Ns3RandomVariable_methods(root_module, root_module['ns3::RandomVariable'])
511 register_Ns3RngSeedManager_methods(root_module, root_module['ns3::RngSeedManager'])
512 register_Ns3SequentialVariable_methods(root_module, root_module['ns3::SequentialVariable'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800513 register_Ns3SimpleRefCount__Ns3Object_Ns3ObjectBase_Ns3ObjectDeleter_methods(root_module, root_module['ns3::SimpleRefCount< ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter >'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700514 register_Ns3SpringMobilityHelper_methods(root_module, root_module['ns3::SpringMobilityHelper'])
Alexander Afanasyevad5acce2012-05-31 12:43:08 -0700515 register_Ns3Tag_methods(root_module, root_module['ns3::Tag'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800516 register_Ns3TagBuffer_methods(root_module, root_module['ns3::TagBuffer'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700517 register_Ns3TriangularVariable_methods(root_module, root_module['ns3::TriangularVariable'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800518 register_Ns3TypeId_methods(root_module, root_module['ns3::TypeId'])
519 register_Ns3TypeIdAttributeInformation_methods(root_module, root_module['ns3::TypeId::AttributeInformation'])
520 register_Ns3TypeIdTraceSourceInformation_methods(root_module, root_module['ns3::TypeId::TraceSourceInformation'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700521 register_Ns3UniformVariable_methods(root_module, root_module['ns3::UniformVariable'])
522 register_Ns3Vector2D_methods(root_module, root_module['ns3::Vector2D'])
523 register_Ns3Vector3D_methods(root_module, root_module['ns3::Vector3D'])
524 register_Ns3WeibullVariable_methods(root_module, root_module['ns3::WeibullVariable'])
525 register_Ns3ZetaVariable_methods(root_module, root_module['ns3::ZetaVariable'])
526 register_Ns3ZipfVariable_methods(root_module, root_module['ns3::ZipfVariable'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800527 register_Ns3Empty_methods(root_module, root_module['ns3::empty'])
528 register_Ns3Int64x64_t_methods(root_module, root_module['ns3::int64x64_t'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800529 register_Ns3Chunk_methods(root_module, root_module['ns3::Chunk'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700530 register_Ns3ConstantVariable_methods(root_module, root_module['ns3::ConstantVariable'])
531 register_Ns3DeterministicVariable_methods(root_module, root_module['ns3::DeterministicVariable'])
532 register_Ns3EmpiricalVariable_methods(root_module, root_module['ns3::EmpiricalVariable'])
533 register_Ns3ErlangVariable_methods(root_module, root_module['ns3::ErlangVariable'])
534 register_Ns3ExponentialVariable_methods(root_module, root_module['ns3::ExponentialVariable'])
535 register_Ns3GammaVariable_methods(root_module, root_module['ns3::GammaVariable'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800536 register_Ns3Header_methods(root_module, root_module['ns3::Header'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700537 register_Ns3IntEmpiricalVariable_methods(root_module, root_module['ns3::IntEmpiricalVariable'])
538 register_Ns3LogNormalVariable_methods(root_module, root_module['ns3::LogNormalVariable'])
539 register_Ns3NormalVariable_methods(root_module, root_module['ns3::NormalVariable'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800540 register_Ns3Object_methods(root_module, root_module['ns3::Object'])
541 register_Ns3ObjectAggregateIterator_methods(root_module, root_module['ns3::Object::AggregateIterator'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700542 register_Ns3ParetoVariable_methods(root_module, root_module['ns3::ParetoVariable'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800543 register_Ns3SimpleRefCount__Ns3AttributeAccessor_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeAccessor__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> >'])
544 register_Ns3SimpleRefCount__Ns3AttributeChecker_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeChecker__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter<ns3::AttributeChecker> >'])
545 register_Ns3SimpleRefCount__Ns3AttributeValue_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeValue__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter<ns3::AttributeValue> >'])
546 register_Ns3SimpleRefCount__Ns3CallbackImplBase_Ns3Empty_Ns3DefaultDeleter__lt__ns3CallbackImplBase__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> >'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800547 register_Ns3SimpleRefCount__Ns3EventImpl_Ns3Empty_Ns3DefaultDeleter__lt__ns3EventImpl__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::EventImpl, ns3::empty, ns3::DefaultDeleter<ns3::EventImpl> >'])
548 register_Ns3SimpleRefCount__Ns3NixVector_Ns3Empty_Ns3DefaultDeleter__lt__ns3NixVector__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::NixVector, ns3::empty, ns3::DefaultDeleter<ns3::NixVector> >'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800549 register_Ns3SimpleRefCount__Ns3Packet_Ns3Empty_Ns3DefaultDeleter__lt__ns3Packet__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::Packet, ns3::empty, ns3::DefaultDeleter<ns3::Packet> >'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700550 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 -0800551 register_Ns3SimpleRefCount__Ns3TraceSourceAccessor_Ns3Empty_Ns3DefaultDeleter__lt__ns3TraceSourceAccessor__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter<ns3::TraceSourceAccessor> >'])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700552 register_Ns3SimpleRefCount__Ns3NdnContentObjectHeader_Ns3Header_Ns3DefaultDeleter__lt__ns3NdnContentObjectHeader__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::ndn::ContentObjectHeader, ns3::Header, ns3::DefaultDeleter<ns3::ndn::ContentObjectHeader> >'])
553 register_Ns3SimpleRefCount__Ns3NdnFaceContainer_Ns3Empty_Ns3DefaultDeleter__lt__ns3NdnFaceContainer__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::ndn::FaceContainer, ns3::empty, ns3::DefaultDeleter<ns3::ndn::FaceContainer> >'])
554 register_Ns3SimpleRefCount__Ns3NdnInterestHeader_Ns3Header_Ns3DefaultDeleter__lt__ns3NdnInterestHeader__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::ndn::InterestHeader, ns3::Header, ns3::DefaultDeleter<ns3::ndn::InterestHeader> >'])
555 register_Ns3SimpleRefCount__Ns3NdnNameComponents_Ns3Empty_Ns3DefaultDeleter__lt__ns3NdnNameComponents__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::ndn::NameComponents, ns3::empty, ns3::DefaultDeleter<ns3::ndn::NameComponents> >'])
556 register_Ns3SimpleRefCount__Ns3NdnCsEntry_Ns3Empty_Ns3DefaultDeleter__lt__ns3NdnCsEntry__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::ndn::cs::Entry, ns3::empty, ns3::DefaultDeleter<ns3::ndn::cs::Entry> >'])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700557 register_Ns3SimpleRefCount__Ns3NdnPitEntry_Ns3Empty_Ns3DefaultDeleter__lt__ns3NdnPitEntry__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::ndn::pit::Entry, ns3::empty, ns3::DefaultDeleter<ns3::ndn::pit::Entry> >'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800558 register_Ns3Time_methods(root_module, root_module['ns3::Time'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700559 register_Ns3TopologyReader_methods(root_module, root_module['ns3::TopologyReader'])
560 register_Ns3TopologyReaderLink_methods(root_module, root_module['ns3::TopologyReader::Link'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800561 register_Ns3TraceSourceAccessor_methods(root_module, root_module['ns3::TraceSourceAccessor'])
562 register_Ns3Trailer_methods(root_module, root_module['ns3::Trailer'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700563 register_Ns3AnnotatedTopologyReader_methods(root_module, root_module['ns3::AnnotatedTopologyReader'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800564 register_Ns3Application_methods(root_module, root_module['ns3::Application'])
565 register_Ns3AttributeAccessor_methods(root_module, root_module['ns3::AttributeAccessor'])
566 register_Ns3AttributeChecker_methods(root_module, root_module['ns3::AttributeChecker'])
567 register_Ns3AttributeValue_methods(root_module, root_module['ns3::AttributeValue'])
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -0700568 register_Ns3BooleanChecker_methods(root_module, root_module['ns3::BooleanChecker'])
569 register_Ns3BooleanValue_methods(root_module, root_module['ns3::BooleanValue'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800570 register_Ns3CallbackChecker_methods(root_module, root_module['ns3::CallbackChecker'])
571 register_Ns3CallbackImplBase_methods(root_module, root_module['ns3::CallbackImplBase'])
572 register_Ns3CallbackValue_methods(root_module, root_module['ns3::CallbackValue'])
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -0700573 register_Ns3DoubleValue_methods(root_module, root_module['ns3::DoubleValue'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800574 register_Ns3EmptyAttributeValue_methods(root_module, root_module['ns3::EmptyAttributeValue'])
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -0700575 register_Ns3EnumChecker_methods(root_module, root_module['ns3::EnumChecker'])
576 register_Ns3EnumValue_methods(root_module, root_module['ns3::EnumValue'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800577 register_Ns3EventImpl_methods(root_module, root_module['ns3::EventImpl'])
578 register_Ns3IntegerValue_methods(root_module, root_module['ns3::IntegerValue'])
579 register_Ns3Ipv4AddressChecker_methods(root_module, root_module['ns3::Ipv4AddressChecker'])
580 register_Ns3Ipv4AddressValue_methods(root_module, root_module['ns3::Ipv4AddressValue'])
581 register_Ns3Ipv4MaskChecker_methods(root_module, root_module['ns3::Ipv4MaskChecker'])
582 register_Ns3Ipv4MaskValue_methods(root_module, root_module['ns3::Ipv4MaskValue'])
583 register_Ns3Ipv6AddressChecker_methods(root_module, root_module['ns3::Ipv6AddressChecker'])
584 register_Ns3Ipv6AddressValue_methods(root_module, root_module['ns3::Ipv6AddressValue'])
585 register_Ns3Ipv6PrefixChecker_methods(root_module, root_module['ns3::Ipv6PrefixChecker'])
586 register_Ns3Ipv6PrefixValue_methods(root_module, root_module['ns3::Ipv6PrefixValue'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700587 register_Ns3MobilityModel_methods(root_module, root_module['ns3::MobilityModel'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800588 register_Ns3NetDevice_methods(root_module, root_module['ns3::NetDevice'])
589 register_Ns3NixVector_methods(root_module, root_module['ns3::NixVector'])
590 register_Ns3Node_methods(root_module, root_module['ns3::Node'])
591 register_Ns3ObjectFactoryChecker_methods(root_module, root_module['ns3::ObjectFactoryChecker'])
592 register_Ns3ObjectFactoryValue_methods(root_module, root_module['ns3::ObjectFactoryValue'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800593 register_Ns3Packet_methods(root_module, root_module['ns3::Packet'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700594 register_Ns3RandomVariableChecker_methods(root_module, root_module['ns3::RandomVariableChecker'])
595 register_Ns3RandomVariableValue_methods(root_module, root_module['ns3::RandomVariableValue'])
596 register_Ns3RocketfuelWeightsReader_methods(root_module, root_module['ns3::RocketfuelWeightsReader'])
597 register_Ns3SpringMobilityModel_methods(root_module, root_module['ns3::SpringMobilityModel'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800598 register_Ns3TimeChecker_methods(root_module, root_module['ns3::TimeChecker'])
599 register_Ns3TimeValue_methods(root_module, root_module['ns3::TimeValue'])
600 register_Ns3TypeIdChecker_methods(root_module, root_module['ns3::TypeIdChecker'])
601 register_Ns3TypeIdValue_methods(root_module, root_module['ns3::TypeIdValue'])
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -0700602 register_Ns3UintegerValue_methods(root_module, root_module['ns3::UintegerValue'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700603 register_Ns3Vector2DChecker_methods(root_module, root_module['ns3::Vector2DChecker'])
604 register_Ns3Vector2DValue_methods(root_module, root_module['ns3::Vector2DValue'])
605 register_Ns3Vector3DChecker_methods(root_module, root_module['ns3::Vector3DChecker'])
606 register_Ns3Vector3DValue_methods(root_module, root_module['ns3::Vector3DValue'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800607 register_Ns3AddressChecker_methods(root_module, root_module['ns3::AddressChecker'])
608 register_Ns3AddressValue_methods(root_module, root_module['ns3::AddressValue'])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700609 register_Ns3NdnApp_methods(root_module, root_module['ns3::ndn::App'])
610 register_Ns3NdnAppHelper_methods(root_module, root_module['ns3::ndn::AppHelper'])
611 register_Ns3NdnContentObjectHeader_methods(root_module, root_module['ns3::ndn::ContentObjectHeader'])
612 register_Ns3NdnContentObjectHeaderSignature_methods(root_module, root_module['ns3::ndn::ContentObjectHeader::Signature'])
613 register_Ns3NdnContentObjectHeaderSignedInfo_methods(root_module, root_module['ns3::ndn::ContentObjectHeader::SignedInfo'])
614 register_Ns3NdnContentObjectHeaderException_methods(root_module, root_module['ns3::ndn::ContentObjectHeaderException'])
615 register_Ns3NdnContentObjectTail_methods(root_module, root_module['ns3::ndn::ContentObjectTail'])
616 register_Ns3NdnContentStore_methods(root_module, root_module['ns3::ndn::ContentStore'])
617 register_Ns3NdnFace_methods(root_module, root_module['ns3::ndn::Face'])
618 register_Ns3NdnFaceContainer_methods(root_module, root_module['ns3::ndn::FaceContainer'])
619 register_Ns3NdnFib_methods(root_module, root_module['ns3::ndn::Fib'])
620 register_Ns3NdnForwardingStrategy_methods(root_module, root_module['ns3::ndn::ForwardingStrategy'])
621 register_Ns3NdnGlobalRoutingHelper_methods(root_module, root_module['ns3::ndn::GlobalRoutingHelper'])
622 register_Ns3NdnHeaderHelper_methods(root_module, root_module['ns3::ndn::HeaderHelper'])
623 register_Ns3NdnInterestHeader_methods(root_module, root_module['ns3::ndn::InterestHeader'])
624 register_Ns3NdnInterestHeaderException_methods(root_module, root_module['ns3::ndn::InterestHeaderException'])
625 register_Ns3NdnL3Protocol_methods(root_module, root_module['ns3::ndn::L3Protocol'])
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -0700626 register_Ns3NdnLimits_methods(root_module, root_module['ns3::ndn::Limits'])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700627 register_Ns3NdnNameComponents_methods(root_module, root_module['ns3::ndn::NameComponents'])
628 register_Ns3NdnNameComponentsChecker_methods(root_module, root_module['ns3::ndn::NameComponentsChecker'])
629 register_Ns3NdnNameComponentsValue_methods(root_module, root_module['ns3::ndn::NameComponentsValue'])
630 register_Ns3NdnNetDeviceFace_methods(root_module, root_module['ns3::ndn::NetDeviceFace'])
631 register_Ns3NdnPit_methods(root_module, root_module['ns3::ndn::Pit'])
632 register_Ns3NdnStackHelper_methods(root_module, root_module['ns3::ndn::StackHelper'])
633 register_Ns3NdnUnknownHeaderException_methods(root_module, root_module['ns3::ndn::UnknownHeaderException'])
634 register_Ns3NdnAppFace_methods(root_module, root_module['ns3::ndn::AppFace'])
635 register_Ns3NdnCsEntry_methods(root_module, root_module['ns3::ndn::cs::Entry'])
636 register_Ns3NdnFibEntry_methods(root_module, root_module['ns3::ndn::fib::Entry'])
637 register_Ns3NdnFibEntryNoFaces_methods(root_module, root_module['ns3::ndn::fib::Entry::NoFaces'])
638 register_Ns3NdnFibFaceMetric_methods(root_module, root_module['ns3::ndn::fib::FaceMetric'])
639 register_Ns3NdnFibFaceMetricContainer_methods(root_module, root_module['ns3::ndn::fib::FaceMetricContainer'])
640 register_Ns3NdnFibI_face_methods(root_module, root_module['ns3::ndn::fib::i_face'])
641 register_Ns3NdnFibI_metric_methods(root_module, root_module['ns3::ndn::fib::i_metric'])
642 register_Ns3NdnFibI_nth_methods(root_module, root_module['ns3::ndn::fib::i_nth'])
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -0700643 register_Ns3NdnFwTag_methods(root_module, root_module['ns3::ndn::fw::Tag'])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700644 register_Ns3NdnPitEntry_methods(root_module, root_module['ns3::ndn::pit::Entry'])
645 register_Ns3NdnPitIncomingFace_methods(root_module, root_module['ns3::ndn::pit::IncomingFace'])
646 register_Ns3NdnPitOutgoingFace_methods(root_module, root_module['ns3::ndn::pit::OutgoingFace'])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700647 register_Ns3NdnPitI_face_methods(root_module, root_module['ns3::ndn::pit::i_face'])
648 register_Ns3NdnPitI_retx_methods(root_module, root_module['ns3::ndn::pit::i_retx'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800649 return
650
651def register_Ns3Address_methods(root_module, cls):
652 cls.add_binary_comparison_operator('!=')
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -0700653 cls.add_output_stream_operator()
Alexander Afanasyeva28ec562012-10-25 14:07:32 -0700654 cls.add_binary_comparison_operator('==')
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800655 cls.add_binary_comparison_operator('<')
656 ## address.h (module 'network'): ns3::Address::Address() [constructor]
657 cls.add_constructor([])
658 ## address.h (module 'network'): ns3::Address::Address(uint8_t type, uint8_t const * buffer, uint8_t len) [constructor]
659 cls.add_constructor([param('uint8_t', 'type'), param('uint8_t const *', 'buffer'), param('uint8_t', 'len')])
660 ## address.h (module 'network'): ns3::Address::Address(ns3::Address const & address) [copy constructor]
661 cls.add_constructor([param('ns3::Address const &', 'address')])
662 ## address.h (module 'network'): bool ns3::Address::CheckCompatible(uint8_t type, uint8_t len) const [member function]
663 cls.add_method('CheckCompatible',
664 'bool',
665 [param('uint8_t', 'type'), param('uint8_t', 'len')],
666 is_const=True)
667 ## address.h (module 'network'): uint32_t ns3::Address::CopyAllFrom(uint8_t const * buffer, uint8_t len) [member function]
668 cls.add_method('CopyAllFrom',
669 'uint32_t',
670 [param('uint8_t const *', 'buffer'), param('uint8_t', 'len')])
671 ## address.h (module 'network'): uint32_t ns3::Address::CopyAllTo(uint8_t * buffer, uint8_t len) const [member function]
672 cls.add_method('CopyAllTo',
673 'uint32_t',
674 [param('uint8_t *', 'buffer'), param('uint8_t', 'len')],
675 is_const=True)
676 ## address.h (module 'network'): uint32_t ns3::Address::CopyFrom(uint8_t const * buffer, uint8_t len) [member function]
677 cls.add_method('CopyFrom',
678 'uint32_t',
679 [param('uint8_t const *', 'buffer'), param('uint8_t', 'len')])
680 ## address.h (module 'network'): uint32_t ns3::Address::CopyTo(uint8_t * buffer) const [member function]
681 cls.add_method('CopyTo',
682 'uint32_t',
683 [param('uint8_t *', 'buffer')],
684 is_const=True)
685 ## address.h (module 'network'): void ns3::Address::Deserialize(ns3::TagBuffer buffer) [member function]
686 cls.add_method('Deserialize',
687 'void',
688 [param('ns3::TagBuffer', 'buffer')])
689 ## address.h (module 'network'): uint8_t ns3::Address::GetLength() const [member function]
690 cls.add_method('GetLength',
691 'uint8_t',
692 [],
693 is_const=True)
694 ## address.h (module 'network'): uint32_t ns3::Address::GetSerializedSize() const [member function]
695 cls.add_method('GetSerializedSize',
696 'uint32_t',
697 [],
698 is_const=True)
699 ## address.h (module 'network'): bool ns3::Address::IsInvalid() const [member function]
700 cls.add_method('IsInvalid',
701 'bool',
702 [],
703 is_const=True)
704 ## address.h (module 'network'): bool ns3::Address::IsMatchingType(uint8_t type) const [member function]
705 cls.add_method('IsMatchingType',
706 'bool',
707 [param('uint8_t', 'type')],
708 is_const=True)
709 ## address.h (module 'network'): static uint8_t ns3::Address::Register() [member function]
710 cls.add_method('Register',
711 'uint8_t',
712 [],
713 is_static=True)
714 ## address.h (module 'network'): void ns3::Address::Serialize(ns3::TagBuffer buffer) const [member function]
715 cls.add_method('Serialize',
716 'void',
717 [param('ns3::TagBuffer', 'buffer')],
718 is_const=True)
719 return
720
721def register_Ns3ApplicationContainer_methods(root_module, cls):
722 ## application-container.h (module 'network'): ns3::ApplicationContainer::ApplicationContainer(ns3::ApplicationContainer const & arg0) [copy constructor]
723 cls.add_constructor([param('ns3::ApplicationContainer const &', 'arg0')])
724 ## application-container.h (module 'network'): ns3::ApplicationContainer::ApplicationContainer() [constructor]
725 cls.add_constructor([])
726 ## application-container.h (module 'network'): ns3::ApplicationContainer::ApplicationContainer(ns3::Ptr<ns3::Application> application) [constructor]
727 cls.add_constructor([param('ns3::Ptr< ns3::Application >', 'application')])
728 ## application-container.h (module 'network'): ns3::ApplicationContainer::ApplicationContainer(std::string name) [constructor]
729 cls.add_constructor([param('std::string', 'name')])
730 ## application-container.h (module 'network'): void ns3::ApplicationContainer::Add(ns3::ApplicationContainer other) [member function]
731 cls.add_method('Add',
732 'void',
733 [param('ns3::ApplicationContainer', 'other')])
734 ## application-container.h (module 'network'): void ns3::ApplicationContainer::Add(ns3::Ptr<ns3::Application> application) [member function]
735 cls.add_method('Add',
736 'void',
737 [param('ns3::Ptr< ns3::Application >', 'application')])
738 ## application-container.h (module 'network'): void ns3::ApplicationContainer::Add(std::string name) [member function]
739 cls.add_method('Add',
740 'void',
741 [param('std::string', 'name')])
742 ## 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]
743 cls.add_method('Begin',
744 '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Application > const, std::vector< ns3::Ptr< ns3::Application > > >',
745 [],
746 is_const=True)
747 ## 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]
748 cls.add_method('End',
749 '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Application > const, std::vector< ns3::Ptr< ns3::Application > > >',
750 [],
751 is_const=True)
752 ## application-container.h (module 'network'): ns3::Ptr<ns3::Application> ns3::ApplicationContainer::Get(uint32_t i) const [member function]
753 cls.add_method('Get',
754 'ns3::Ptr< ns3::Application >',
755 [param('uint32_t', 'i')],
756 is_const=True)
757 ## application-container.h (module 'network'): uint32_t ns3::ApplicationContainer::GetN() const [member function]
758 cls.add_method('GetN',
759 'uint32_t',
760 [],
761 is_const=True)
762 ## application-container.h (module 'network'): void ns3::ApplicationContainer::Start(ns3::Time start) [member function]
763 cls.add_method('Start',
764 'void',
765 [param('ns3::Time', 'start')])
766 ## application-container.h (module 'network'): void ns3::ApplicationContainer::Stop(ns3::Time stop) [member function]
767 cls.add_method('Stop',
768 'void',
769 [param('ns3::Time', 'stop')])
770 return
771
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800772def register_Ns3AttributeConstructionList_methods(root_module, cls):
773 ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::AttributeConstructionList(ns3::AttributeConstructionList const & arg0) [copy constructor]
774 cls.add_constructor([param('ns3::AttributeConstructionList const &', 'arg0')])
775 ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::AttributeConstructionList() [constructor]
776 cls.add_constructor([])
777 ## 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]
778 cls.add_method('Add',
779 'void',
780 [param('std::string', 'name'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker'), param('ns3::Ptr< ns3::AttributeValue >', 'value')])
781 ## attribute-construction-list.h (module 'core'): std::_List_const_iterator<ns3::AttributeConstructionList::Item> ns3::AttributeConstructionList::Begin() const [member function]
782 cls.add_method('Begin',
783 'std::_List_const_iterator< ns3::AttributeConstructionList::Item >',
784 [],
785 is_const=True)
786 ## attribute-construction-list.h (module 'core'): std::_List_const_iterator<ns3::AttributeConstructionList::Item> ns3::AttributeConstructionList::End() const [member function]
787 cls.add_method('End',
788 'std::_List_const_iterator< ns3::AttributeConstructionList::Item >',
789 [],
790 is_const=True)
791 ## attribute-construction-list.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::AttributeConstructionList::Find(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
792 cls.add_method('Find',
793 'ns3::Ptr< ns3::AttributeValue >',
794 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
795 is_const=True)
796 return
797
798def register_Ns3AttributeConstructionListItem_methods(root_module, cls):
799 ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item::Item() [constructor]
800 cls.add_constructor([])
801 ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item::Item(ns3::AttributeConstructionList::Item const & arg0) [copy constructor]
802 cls.add_constructor([param('ns3::AttributeConstructionList::Item const &', 'arg0')])
803 ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item::checker [variable]
804 cls.add_instance_attribute('checker', 'ns3::Ptr< ns3::AttributeChecker const >', is_const=False)
805 ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item::name [variable]
806 cls.add_instance_attribute('name', 'std::string', is_const=False)
807 ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item::value [variable]
808 cls.add_instance_attribute('value', 'ns3::Ptr< ns3::AttributeValue >', is_const=False)
809 return
810
811def register_Ns3Buffer_methods(root_module, cls):
812 ## buffer.h (module 'network'): ns3::Buffer::Buffer() [constructor]
813 cls.add_constructor([])
814 ## buffer.h (module 'network'): ns3::Buffer::Buffer(uint32_t dataSize) [constructor]
815 cls.add_constructor([param('uint32_t', 'dataSize')])
816 ## buffer.h (module 'network'): ns3::Buffer::Buffer(uint32_t dataSize, bool initialize) [constructor]
817 cls.add_constructor([param('uint32_t', 'dataSize'), param('bool', 'initialize')])
818 ## buffer.h (module 'network'): ns3::Buffer::Buffer(ns3::Buffer const & o) [copy constructor]
819 cls.add_constructor([param('ns3::Buffer const &', 'o')])
820 ## buffer.h (module 'network'): bool ns3::Buffer::AddAtEnd(uint32_t end) [member function]
821 cls.add_method('AddAtEnd',
822 'bool',
823 [param('uint32_t', 'end')])
824 ## buffer.h (module 'network'): void ns3::Buffer::AddAtEnd(ns3::Buffer const & o) [member function]
825 cls.add_method('AddAtEnd',
826 'void',
827 [param('ns3::Buffer const &', 'o')])
828 ## buffer.h (module 'network'): bool ns3::Buffer::AddAtStart(uint32_t start) [member function]
829 cls.add_method('AddAtStart',
830 'bool',
831 [param('uint32_t', 'start')])
832 ## buffer.h (module 'network'): ns3::Buffer::Iterator ns3::Buffer::Begin() const [member function]
833 cls.add_method('Begin',
834 'ns3::Buffer::Iterator',
835 [],
836 is_const=True)
837 ## buffer.h (module 'network'): void ns3::Buffer::CopyData(std::ostream * os, uint32_t size) const [member function]
838 cls.add_method('CopyData',
839 'void',
840 [param('std::ostream *', 'os'), param('uint32_t', 'size')],
841 is_const=True)
842 ## buffer.h (module 'network'): uint32_t ns3::Buffer::CopyData(uint8_t * buffer, uint32_t size) const [member function]
843 cls.add_method('CopyData',
844 'uint32_t',
845 [param('uint8_t *', 'buffer'), param('uint32_t', 'size')],
846 is_const=True)
847 ## buffer.h (module 'network'): ns3::Buffer ns3::Buffer::CreateFragment(uint32_t start, uint32_t length) const [member function]
848 cls.add_method('CreateFragment',
849 'ns3::Buffer',
850 [param('uint32_t', 'start'), param('uint32_t', 'length')],
851 is_const=True)
852 ## buffer.h (module 'network'): ns3::Buffer ns3::Buffer::CreateFullCopy() const [member function]
853 cls.add_method('CreateFullCopy',
854 'ns3::Buffer',
855 [],
856 is_const=True)
857 ## buffer.h (module 'network'): uint32_t ns3::Buffer::Deserialize(uint8_t const * buffer, uint32_t size) [member function]
858 cls.add_method('Deserialize',
859 'uint32_t',
860 [param('uint8_t const *', 'buffer'), param('uint32_t', 'size')])
861 ## buffer.h (module 'network'): ns3::Buffer::Iterator ns3::Buffer::End() const [member function]
862 cls.add_method('End',
863 'ns3::Buffer::Iterator',
864 [],
865 is_const=True)
866 ## buffer.h (module 'network'): int32_t ns3::Buffer::GetCurrentEndOffset() const [member function]
867 cls.add_method('GetCurrentEndOffset',
868 'int32_t',
869 [],
870 is_const=True)
871 ## buffer.h (module 'network'): int32_t ns3::Buffer::GetCurrentStartOffset() const [member function]
872 cls.add_method('GetCurrentStartOffset',
873 'int32_t',
874 [],
875 is_const=True)
876 ## buffer.h (module 'network'): uint32_t ns3::Buffer::GetSerializedSize() const [member function]
877 cls.add_method('GetSerializedSize',
878 'uint32_t',
879 [],
880 is_const=True)
881 ## buffer.h (module 'network'): uint32_t ns3::Buffer::GetSize() const [member function]
882 cls.add_method('GetSize',
883 'uint32_t',
884 [],
885 is_const=True)
886 ## buffer.h (module 'network'): uint8_t const * ns3::Buffer::PeekData() const [member function]
887 cls.add_method('PeekData',
888 'uint8_t const *',
889 [],
890 is_const=True)
891 ## buffer.h (module 'network'): void ns3::Buffer::RemoveAtEnd(uint32_t end) [member function]
892 cls.add_method('RemoveAtEnd',
893 'void',
894 [param('uint32_t', 'end')])
895 ## buffer.h (module 'network'): void ns3::Buffer::RemoveAtStart(uint32_t start) [member function]
896 cls.add_method('RemoveAtStart',
897 'void',
898 [param('uint32_t', 'start')])
899 ## buffer.h (module 'network'): uint32_t ns3::Buffer::Serialize(uint8_t * buffer, uint32_t maxSize) const [member function]
900 cls.add_method('Serialize',
901 'uint32_t',
902 [param('uint8_t *', 'buffer'), param('uint32_t', 'maxSize')],
903 is_const=True)
904 return
905
906def register_Ns3BufferIterator_methods(root_module, cls):
907 ## buffer.h (module 'network'): ns3::Buffer::Iterator::Iterator(ns3::Buffer::Iterator const & arg0) [copy constructor]
908 cls.add_constructor([param('ns3::Buffer::Iterator const &', 'arg0')])
909 ## buffer.h (module 'network'): ns3::Buffer::Iterator::Iterator() [constructor]
910 cls.add_constructor([])
911 ## buffer.h (module 'network'): uint16_t ns3::Buffer::Iterator::CalculateIpChecksum(uint16_t size) [member function]
912 cls.add_method('CalculateIpChecksum',
913 'uint16_t',
914 [param('uint16_t', 'size')])
915 ## buffer.h (module 'network'): uint16_t ns3::Buffer::Iterator::CalculateIpChecksum(uint16_t size, uint32_t initialChecksum) [member function]
916 cls.add_method('CalculateIpChecksum',
917 'uint16_t',
918 [param('uint16_t', 'size'), param('uint32_t', 'initialChecksum')])
919 ## buffer.h (module 'network'): uint32_t ns3::Buffer::Iterator::GetDistanceFrom(ns3::Buffer::Iterator const & o) const [member function]
920 cls.add_method('GetDistanceFrom',
921 'uint32_t',
922 [param('ns3::Buffer::Iterator const &', 'o')],
923 is_const=True)
924 ## buffer.h (module 'network'): uint32_t ns3::Buffer::Iterator::GetSize() const [member function]
925 cls.add_method('GetSize',
926 'uint32_t',
927 [],
928 is_const=True)
929 ## buffer.h (module 'network'): bool ns3::Buffer::Iterator::IsEnd() const [member function]
930 cls.add_method('IsEnd',
931 'bool',
932 [],
933 is_const=True)
934 ## buffer.h (module 'network'): bool ns3::Buffer::Iterator::IsStart() const [member function]
935 cls.add_method('IsStart',
936 'bool',
937 [],
938 is_const=True)
939 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Next() [member function]
940 cls.add_method('Next',
941 'void',
942 [])
943 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Next(uint32_t delta) [member function]
944 cls.add_method('Next',
945 'void',
946 [param('uint32_t', 'delta')])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -0700947 ## buffer.h (module 'network'): uint8_t ns3::Buffer::Iterator::PeekU8() [member function]
948 cls.add_method('PeekU8',
949 'uint8_t',
950 [])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800951 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Prev() [member function]
952 cls.add_method('Prev',
953 'void',
954 [])
955 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Prev(uint32_t delta) [member function]
956 cls.add_method('Prev',
957 'void',
958 [param('uint32_t', 'delta')])
959 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Read(uint8_t * buffer, uint32_t size) [member function]
960 cls.add_method('Read',
961 'void',
962 [param('uint8_t *', 'buffer'), param('uint32_t', 'size')])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -0700963 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Read(ns3::Buffer::Iterator start, uint32_t size) [member function]
964 cls.add_method('Read',
965 'void',
966 [param('ns3::Buffer::Iterator', 'start'), param('uint32_t', 'size')])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800967 ## buffer.h (module 'network'): uint16_t ns3::Buffer::Iterator::ReadLsbtohU16() [member function]
968 cls.add_method('ReadLsbtohU16',
969 'uint16_t',
970 [])
971 ## buffer.h (module 'network'): uint32_t ns3::Buffer::Iterator::ReadLsbtohU32() [member function]
972 cls.add_method('ReadLsbtohU32',
973 'uint32_t',
974 [])
975 ## buffer.h (module 'network'): uint64_t ns3::Buffer::Iterator::ReadLsbtohU64() [member function]
976 cls.add_method('ReadLsbtohU64',
977 'uint64_t',
978 [])
979 ## buffer.h (module 'network'): uint16_t ns3::Buffer::Iterator::ReadNtohU16() [member function]
980 cls.add_method('ReadNtohU16',
981 'uint16_t',
982 [])
983 ## buffer.h (module 'network'): uint32_t ns3::Buffer::Iterator::ReadNtohU32() [member function]
984 cls.add_method('ReadNtohU32',
985 'uint32_t',
986 [])
987 ## buffer.h (module 'network'): uint64_t ns3::Buffer::Iterator::ReadNtohU64() [member function]
988 cls.add_method('ReadNtohU64',
989 'uint64_t',
990 [])
991 ## buffer.h (module 'network'): uint16_t ns3::Buffer::Iterator::ReadU16() [member function]
992 cls.add_method('ReadU16',
993 'uint16_t',
994 [])
995 ## buffer.h (module 'network'): uint32_t ns3::Buffer::Iterator::ReadU32() [member function]
996 cls.add_method('ReadU32',
997 'uint32_t',
998 [])
999 ## buffer.h (module 'network'): uint64_t ns3::Buffer::Iterator::ReadU64() [member function]
1000 cls.add_method('ReadU64',
1001 'uint64_t',
1002 [])
1003 ## buffer.h (module 'network'): uint8_t ns3::Buffer::Iterator::ReadU8() [member function]
1004 cls.add_method('ReadU8',
1005 'uint8_t',
1006 [])
1007 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Write(uint8_t const * buffer, uint32_t size) [member function]
1008 cls.add_method('Write',
1009 'void',
1010 [param('uint8_t const *', 'buffer'), param('uint32_t', 'size')])
1011 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Write(ns3::Buffer::Iterator start, ns3::Buffer::Iterator end) [member function]
1012 cls.add_method('Write',
1013 'void',
1014 [param('ns3::Buffer::Iterator', 'start'), param('ns3::Buffer::Iterator', 'end')])
1015 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteHtolsbU16(uint16_t data) [member function]
1016 cls.add_method('WriteHtolsbU16',
1017 'void',
1018 [param('uint16_t', 'data')])
1019 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteHtolsbU32(uint32_t data) [member function]
1020 cls.add_method('WriteHtolsbU32',
1021 'void',
1022 [param('uint32_t', 'data')])
1023 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteHtolsbU64(uint64_t data) [member function]
1024 cls.add_method('WriteHtolsbU64',
1025 'void',
1026 [param('uint64_t', 'data')])
1027 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteHtonU16(uint16_t data) [member function]
1028 cls.add_method('WriteHtonU16',
1029 'void',
1030 [param('uint16_t', 'data')])
1031 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteHtonU32(uint32_t data) [member function]
1032 cls.add_method('WriteHtonU32',
1033 'void',
1034 [param('uint32_t', 'data')])
1035 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteHtonU64(uint64_t data) [member function]
1036 cls.add_method('WriteHtonU64',
1037 'void',
1038 [param('uint64_t', 'data')])
1039 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteU16(uint16_t data) [member function]
1040 cls.add_method('WriteU16',
1041 'void',
1042 [param('uint16_t', 'data')])
1043 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteU32(uint32_t data) [member function]
1044 cls.add_method('WriteU32',
1045 'void',
1046 [param('uint32_t', 'data')])
1047 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteU64(uint64_t data) [member function]
1048 cls.add_method('WriteU64',
1049 'void',
1050 [param('uint64_t', 'data')])
1051 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteU8(uint8_t data) [member function]
1052 cls.add_method('WriteU8',
1053 'void',
1054 [param('uint8_t', 'data')])
1055 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteU8(uint8_t data, uint32_t len) [member function]
1056 cls.add_method('WriteU8',
1057 'void',
1058 [param('uint8_t', 'data'), param('uint32_t', 'len')])
1059 return
1060
1061def register_Ns3ByteTagIterator_methods(root_module, cls):
1062 ## packet.h (module 'network'): ns3::ByteTagIterator::ByteTagIterator(ns3::ByteTagIterator const & arg0) [copy constructor]
1063 cls.add_constructor([param('ns3::ByteTagIterator const &', 'arg0')])
1064 ## packet.h (module 'network'): bool ns3::ByteTagIterator::HasNext() const [member function]
1065 cls.add_method('HasNext',
1066 'bool',
1067 [],
1068 is_const=True)
1069 ## packet.h (module 'network'): ns3::ByteTagIterator::Item ns3::ByteTagIterator::Next() [member function]
1070 cls.add_method('Next',
1071 'ns3::ByteTagIterator::Item',
1072 [])
1073 return
1074
1075def register_Ns3ByteTagIteratorItem_methods(root_module, cls):
1076 ## packet.h (module 'network'): ns3::ByteTagIterator::Item::Item(ns3::ByteTagIterator::Item const & arg0) [copy constructor]
1077 cls.add_constructor([param('ns3::ByteTagIterator::Item const &', 'arg0')])
1078 ## packet.h (module 'network'): uint32_t ns3::ByteTagIterator::Item::GetEnd() const [member function]
1079 cls.add_method('GetEnd',
1080 'uint32_t',
1081 [],
1082 is_const=True)
1083 ## packet.h (module 'network'): uint32_t ns3::ByteTagIterator::Item::GetStart() const [member function]
1084 cls.add_method('GetStart',
1085 'uint32_t',
1086 [],
1087 is_const=True)
1088 ## packet.h (module 'network'): void ns3::ByteTagIterator::Item::GetTag(ns3::Tag & tag) const [member function]
1089 cls.add_method('GetTag',
1090 'void',
1091 [param('ns3::Tag &', 'tag')],
1092 is_const=True)
1093 ## packet.h (module 'network'): ns3::TypeId ns3::ByteTagIterator::Item::GetTypeId() const [member function]
1094 cls.add_method('GetTypeId',
1095 'ns3::TypeId',
1096 [],
1097 is_const=True)
1098 return
1099
1100def register_Ns3ByteTagList_methods(root_module, cls):
1101 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::ByteTagList() [constructor]
1102 cls.add_constructor([])
1103 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::ByteTagList(ns3::ByteTagList const & o) [copy constructor]
1104 cls.add_constructor([param('ns3::ByteTagList const &', 'o')])
1105 ## 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]
1106 cls.add_method('Add',
1107 'ns3::TagBuffer',
1108 [param('ns3::TypeId', 'tid'), param('uint32_t', 'bufferSize'), param('int32_t', 'start'), param('int32_t', 'end')])
1109 ## byte-tag-list.h (module 'network'): void ns3::ByteTagList::Add(ns3::ByteTagList const & o) [member function]
1110 cls.add_method('Add',
1111 'void',
1112 [param('ns3::ByteTagList const &', 'o')])
1113 ## byte-tag-list.h (module 'network'): void ns3::ByteTagList::AddAtEnd(int32_t adjustment, int32_t appendOffset) [member function]
1114 cls.add_method('AddAtEnd',
1115 'void',
1116 [param('int32_t', 'adjustment'), param('int32_t', 'appendOffset')])
1117 ## byte-tag-list.h (module 'network'): void ns3::ByteTagList::AddAtStart(int32_t adjustment, int32_t prependOffset) [member function]
1118 cls.add_method('AddAtStart',
1119 'void',
1120 [param('int32_t', 'adjustment'), param('int32_t', 'prependOffset')])
1121 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator ns3::ByteTagList::Begin(int32_t offsetStart, int32_t offsetEnd) const [member function]
1122 cls.add_method('Begin',
1123 'ns3::ByteTagList::Iterator',
1124 [param('int32_t', 'offsetStart'), param('int32_t', 'offsetEnd')],
1125 is_const=True)
1126 ## byte-tag-list.h (module 'network'): void ns3::ByteTagList::RemoveAll() [member function]
1127 cls.add_method('RemoveAll',
1128 'void',
1129 [])
1130 return
1131
1132def register_Ns3ByteTagListIterator_methods(root_module, cls):
1133 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Iterator(ns3::ByteTagList::Iterator const & arg0) [copy constructor]
1134 cls.add_constructor([param('ns3::ByteTagList::Iterator const &', 'arg0')])
1135 ## byte-tag-list.h (module 'network'): uint32_t ns3::ByteTagList::Iterator::GetOffsetStart() const [member function]
1136 cls.add_method('GetOffsetStart',
1137 'uint32_t',
1138 [],
1139 is_const=True)
1140 ## byte-tag-list.h (module 'network'): bool ns3::ByteTagList::Iterator::HasNext() const [member function]
1141 cls.add_method('HasNext',
1142 'bool',
1143 [],
1144 is_const=True)
1145 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item ns3::ByteTagList::Iterator::Next() [member function]
1146 cls.add_method('Next',
1147 'ns3::ByteTagList::Iterator::Item',
1148 [])
1149 return
1150
1151def register_Ns3ByteTagListIteratorItem_methods(root_module, cls):
1152 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::Item(ns3::ByteTagList::Iterator::Item const & arg0) [copy constructor]
1153 cls.add_constructor([param('ns3::ByteTagList::Iterator::Item const &', 'arg0')])
1154 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::Item(ns3::TagBuffer buf) [constructor]
1155 cls.add_constructor([param('ns3::TagBuffer', 'buf')])
1156 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::buf [variable]
1157 cls.add_instance_attribute('buf', 'ns3::TagBuffer', is_const=False)
1158 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::end [variable]
1159 cls.add_instance_attribute('end', 'int32_t', is_const=False)
1160 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::size [variable]
1161 cls.add_instance_attribute('size', 'uint32_t', is_const=False)
1162 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::start [variable]
1163 cls.add_instance_attribute('start', 'int32_t', is_const=False)
1164 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::tid [variable]
1165 cls.add_instance_attribute('tid', 'ns3::TypeId', is_const=False)
1166 return
1167
1168def register_Ns3CallbackBase_methods(root_module, cls):
1169 ## callback.h (module 'core'): ns3::CallbackBase::CallbackBase(ns3::CallbackBase const & arg0) [copy constructor]
1170 cls.add_constructor([param('ns3::CallbackBase const &', 'arg0')])
1171 ## callback.h (module 'core'): ns3::CallbackBase::CallbackBase() [constructor]
1172 cls.add_constructor([])
1173 ## callback.h (module 'core'): ns3::Ptr<ns3::CallbackImplBase> ns3::CallbackBase::GetImpl() const [member function]
1174 cls.add_method('GetImpl',
1175 'ns3::Ptr< ns3::CallbackImplBase >',
1176 [],
1177 is_const=True)
1178 ## callback.h (module 'core'): ns3::CallbackBase::CallbackBase(ns3::Ptr<ns3::CallbackImplBase> impl) [constructor]
1179 cls.add_constructor([param('ns3::Ptr< ns3::CallbackImplBase >', 'impl')],
1180 visibility='protected')
1181 ## callback.h (module 'core'): static std::string ns3::CallbackBase::Demangle(std::string const & mangled) [member function]
1182 cls.add_method('Demangle',
1183 'std::string',
1184 [param('std::string const &', 'mangled')],
1185 is_static=True, visibility='protected')
1186 return
1187
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001188def register_Ns3EventId_methods(root_module, cls):
1189 cls.add_binary_comparison_operator('!=')
1190 cls.add_binary_comparison_operator('==')
1191 ## event-id.h (module 'core'): ns3::EventId::EventId(ns3::EventId const & arg0) [copy constructor]
1192 cls.add_constructor([param('ns3::EventId const &', 'arg0')])
1193 ## event-id.h (module 'core'): ns3::EventId::EventId() [constructor]
1194 cls.add_constructor([])
1195 ## event-id.h (module 'core'): ns3::EventId::EventId(ns3::Ptr<ns3::EventImpl> const & impl, uint64_t ts, uint32_t context, uint32_t uid) [constructor]
1196 cls.add_constructor([param('ns3::Ptr< ns3::EventImpl > const &', 'impl'), param('uint64_t', 'ts'), param('uint32_t', 'context'), param('uint32_t', 'uid')])
1197 ## event-id.h (module 'core'): void ns3::EventId::Cancel() [member function]
1198 cls.add_method('Cancel',
1199 'void',
1200 [])
1201 ## event-id.h (module 'core'): uint32_t ns3::EventId::GetContext() const [member function]
1202 cls.add_method('GetContext',
1203 'uint32_t',
1204 [],
1205 is_const=True)
1206 ## event-id.h (module 'core'): uint64_t ns3::EventId::GetTs() const [member function]
1207 cls.add_method('GetTs',
1208 'uint64_t',
1209 [],
1210 is_const=True)
1211 ## event-id.h (module 'core'): uint32_t ns3::EventId::GetUid() const [member function]
1212 cls.add_method('GetUid',
1213 'uint32_t',
1214 [],
1215 is_const=True)
1216 ## event-id.h (module 'core'): bool ns3::EventId::IsExpired() const [member function]
1217 cls.add_method('IsExpired',
1218 'bool',
1219 [],
1220 is_const=True)
1221 ## event-id.h (module 'core'): bool ns3::EventId::IsRunning() const [member function]
1222 cls.add_method('IsRunning',
1223 'bool',
1224 [],
1225 is_const=True)
1226 ## event-id.h (module 'core'): ns3::EventImpl * ns3::EventId::PeekEventImpl() const [member function]
1227 cls.add_method('PeekEventImpl',
1228 'ns3::EventImpl *',
1229 [],
1230 is_const=True)
1231 return
1232
1233def register_Ns3Ipv4Address_methods(root_module, cls):
1234 cls.add_binary_comparison_operator('!=')
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07001235 cls.add_output_stream_operator()
Alexander Afanasyeva28ec562012-10-25 14:07:32 -07001236 cls.add_binary_comparison_operator('==')
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001237 cls.add_binary_comparison_operator('<')
1238 ## ipv4-address.h (module 'network'): ns3::Ipv4Address::Ipv4Address(ns3::Ipv4Address const & arg0) [copy constructor]
1239 cls.add_constructor([param('ns3::Ipv4Address const &', 'arg0')])
1240 ## ipv4-address.h (module 'network'): ns3::Ipv4Address::Ipv4Address() [constructor]
1241 cls.add_constructor([])
1242 ## ipv4-address.h (module 'network'): ns3::Ipv4Address::Ipv4Address(uint32_t address) [constructor]
1243 cls.add_constructor([param('uint32_t', 'address')])
1244 ## ipv4-address.h (module 'network'): ns3::Ipv4Address::Ipv4Address(char const * address) [constructor]
1245 cls.add_constructor([param('char const *', 'address')])
1246 ## ipv4-address.h (module 'network'): ns3::Ipv4Address ns3::Ipv4Address::CombineMask(ns3::Ipv4Mask const & mask) const [member function]
1247 cls.add_method('CombineMask',
1248 'ns3::Ipv4Address',
1249 [param('ns3::Ipv4Mask const &', 'mask')],
1250 is_const=True)
1251 ## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::ConvertFrom(ns3::Address const & address) [member function]
1252 cls.add_method('ConvertFrom',
1253 'ns3::Ipv4Address',
1254 [param('ns3::Address const &', 'address')],
1255 is_static=True)
1256 ## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::Deserialize(uint8_t const * buf) [member function]
1257 cls.add_method('Deserialize',
1258 'ns3::Ipv4Address',
1259 [param('uint8_t const *', 'buf')],
1260 is_static=True)
Alexander Afanasyev4052f952012-06-08 17:57:59 -07001261 ## ipv4-address.h (module 'network'): uint32_t ns3::Ipv4Address::Get() const [member function]
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001262 cls.add_method('Get',
Alexander Afanasyev4052f952012-06-08 17:57:59 -07001263 'uint32_t',
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001264 [],
1265 is_const=True)
1266 ## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::GetAny() [member function]
1267 cls.add_method('GetAny',
1268 'ns3::Ipv4Address',
1269 [],
1270 is_static=True)
1271 ## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::GetBroadcast() [member function]
1272 cls.add_method('GetBroadcast',
1273 'ns3::Ipv4Address',
1274 [],
1275 is_static=True)
1276 ## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::GetLoopback() [member function]
1277 cls.add_method('GetLoopback',
1278 'ns3::Ipv4Address',
1279 [],
1280 is_static=True)
1281 ## ipv4-address.h (module 'network'): ns3::Ipv4Address ns3::Ipv4Address::GetSubnetDirectedBroadcast(ns3::Ipv4Mask const & mask) const [member function]
1282 cls.add_method('GetSubnetDirectedBroadcast',
1283 'ns3::Ipv4Address',
1284 [param('ns3::Ipv4Mask const &', 'mask')],
1285 is_const=True)
1286 ## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::GetZero() [member function]
1287 cls.add_method('GetZero',
1288 'ns3::Ipv4Address',
1289 [],
1290 is_static=True)
1291 ## ipv4-address.h (module 'network'): bool ns3::Ipv4Address::IsBroadcast() const [member function]
1292 cls.add_method('IsBroadcast',
1293 'bool',
1294 [],
1295 is_const=True)
1296 ## ipv4-address.h (module 'network'): bool ns3::Ipv4Address::IsEqual(ns3::Ipv4Address const & other) const [member function]
1297 cls.add_method('IsEqual',
1298 'bool',
1299 [param('ns3::Ipv4Address const &', 'other')],
1300 is_const=True)
1301 ## ipv4-address.h (module 'network'): bool ns3::Ipv4Address::IsLocalMulticast() const [member function]
1302 cls.add_method('IsLocalMulticast',
1303 'bool',
1304 [],
1305 is_const=True)
1306 ## ipv4-address.h (module 'network'): static bool ns3::Ipv4Address::IsMatchingType(ns3::Address const & address) [member function]
1307 cls.add_method('IsMatchingType',
1308 'bool',
1309 [param('ns3::Address const &', 'address')],
1310 is_static=True)
1311 ## ipv4-address.h (module 'network'): bool ns3::Ipv4Address::IsMulticast() const [member function]
1312 cls.add_method('IsMulticast',
1313 'bool',
1314 [],
1315 is_const=True)
1316 ## ipv4-address.h (module 'network'): bool ns3::Ipv4Address::IsSubnetDirectedBroadcast(ns3::Ipv4Mask const & mask) const [member function]
1317 cls.add_method('IsSubnetDirectedBroadcast',
1318 'bool',
1319 [param('ns3::Ipv4Mask const &', 'mask')],
1320 is_const=True)
1321 ## ipv4-address.h (module 'network'): void ns3::Ipv4Address::Print(std::ostream & os) const [member function]
1322 cls.add_method('Print',
1323 'void',
1324 [param('std::ostream &', 'os')],
1325 is_const=True)
1326 ## ipv4-address.h (module 'network'): void ns3::Ipv4Address::Serialize(uint8_t * buf) const [member function]
1327 cls.add_method('Serialize',
1328 'void',
1329 [param('uint8_t *', 'buf')],
1330 is_const=True)
1331 ## ipv4-address.h (module 'network'): void ns3::Ipv4Address::Set(uint32_t address) [member function]
1332 cls.add_method('Set',
1333 'void',
1334 [param('uint32_t', 'address')])
1335 ## ipv4-address.h (module 'network'): void ns3::Ipv4Address::Set(char const * address) [member function]
1336 cls.add_method('Set',
1337 'void',
1338 [param('char const *', 'address')])
1339 return
1340
1341def register_Ns3Ipv4Mask_methods(root_module, cls):
1342 cls.add_binary_comparison_operator('!=')
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07001343 cls.add_output_stream_operator()
Alexander Afanasyeva28ec562012-10-25 14:07:32 -07001344 cls.add_binary_comparison_operator('==')
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001345 ## ipv4-address.h (module 'network'): ns3::Ipv4Mask::Ipv4Mask(ns3::Ipv4Mask const & arg0) [copy constructor]
1346 cls.add_constructor([param('ns3::Ipv4Mask const &', 'arg0')])
1347 ## ipv4-address.h (module 'network'): ns3::Ipv4Mask::Ipv4Mask() [constructor]
1348 cls.add_constructor([])
1349 ## ipv4-address.h (module 'network'): ns3::Ipv4Mask::Ipv4Mask(uint32_t mask) [constructor]
1350 cls.add_constructor([param('uint32_t', 'mask')])
1351 ## ipv4-address.h (module 'network'): ns3::Ipv4Mask::Ipv4Mask(char const * mask) [constructor]
1352 cls.add_constructor([param('char const *', 'mask')])
1353 ## ipv4-address.h (module 'network'): uint32_t ns3::Ipv4Mask::Get() const [member function]
1354 cls.add_method('Get',
1355 'uint32_t',
1356 [],
1357 is_const=True)
1358 ## ipv4-address.h (module 'network'): uint32_t ns3::Ipv4Mask::GetInverse() const [member function]
1359 cls.add_method('GetInverse',
1360 'uint32_t',
1361 [],
1362 is_const=True)
1363 ## ipv4-address.h (module 'network'): static ns3::Ipv4Mask ns3::Ipv4Mask::GetLoopback() [member function]
1364 cls.add_method('GetLoopback',
1365 'ns3::Ipv4Mask',
1366 [],
1367 is_static=True)
1368 ## ipv4-address.h (module 'network'): static ns3::Ipv4Mask ns3::Ipv4Mask::GetOnes() [member function]
1369 cls.add_method('GetOnes',
1370 'ns3::Ipv4Mask',
1371 [],
1372 is_static=True)
1373 ## ipv4-address.h (module 'network'): uint16_t ns3::Ipv4Mask::GetPrefixLength() const [member function]
1374 cls.add_method('GetPrefixLength',
1375 'uint16_t',
1376 [],
1377 is_const=True)
1378 ## ipv4-address.h (module 'network'): static ns3::Ipv4Mask ns3::Ipv4Mask::GetZero() [member function]
1379 cls.add_method('GetZero',
1380 'ns3::Ipv4Mask',
1381 [],
1382 is_static=True)
1383 ## ipv4-address.h (module 'network'): bool ns3::Ipv4Mask::IsEqual(ns3::Ipv4Mask other) const [member function]
1384 cls.add_method('IsEqual',
1385 'bool',
1386 [param('ns3::Ipv4Mask', 'other')],
1387 is_const=True)
1388 ## ipv4-address.h (module 'network'): bool ns3::Ipv4Mask::IsMatch(ns3::Ipv4Address a, ns3::Ipv4Address b) const [member function]
1389 cls.add_method('IsMatch',
1390 'bool',
1391 [param('ns3::Ipv4Address', 'a'), param('ns3::Ipv4Address', 'b')],
1392 is_const=True)
1393 ## ipv4-address.h (module 'network'): void ns3::Ipv4Mask::Print(std::ostream & os) const [member function]
1394 cls.add_method('Print',
1395 'void',
1396 [param('std::ostream &', 'os')],
1397 is_const=True)
1398 ## ipv4-address.h (module 'network'): void ns3::Ipv4Mask::Set(uint32_t mask) [member function]
1399 cls.add_method('Set',
1400 'void',
1401 [param('uint32_t', 'mask')])
1402 return
1403
1404def register_Ns3Ipv6Address_methods(root_module, cls):
1405 cls.add_binary_comparison_operator('!=')
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07001406 cls.add_output_stream_operator()
Alexander Afanasyeva28ec562012-10-25 14:07:32 -07001407 cls.add_binary_comparison_operator('==')
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001408 cls.add_binary_comparison_operator('<')
1409 ## ipv6-address.h (module 'network'): ns3::Ipv6Address::Ipv6Address() [constructor]
1410 cls.add_constructor([])
1411 ## ipv6-address.h (module 'network'): ns3::Ipv6Address::Ipv6Address(char const * address) [constructor]
1412 cls.add_constructor([param('char const *', 'address')])
1413 ## ipv6-address.h (module 'network'): ns3::Ipv6Address::Ipv6Address(uint8_t * address) [constructor]
1414 cls.add_constructor([param('uint8_t *', 'address')])
1415 ## ipv6-address.h (module 'network'): ns3::Ipv6Address::Ipv6Address(ns3::Ipv6Address const & addr) [copy constructor]
1416 cls.add_constructor([param('ns3::Ipv6Address const &', 'addr')])
1417 ## ipv6-address.h (module 'network'): ns3::Ipv6Address::Ipv6Address(ns3::Ipv6Address const * addr) [constructor]
1418 cls.add_constructor([param('ns3::Ipv6Address const *', 'addr')])
1419 ## ipv6-address.h (module 'network'): ns3::Ipv6Address ns3::Ipv6Address::CombinePrefix(ns3::Ipv6Prefix const & prefix) [member function]
1420 cls.add_method('CombinePrefix',
1421 'ns3::Ipv6Address',
1422 [param('ns3::Ipv6Prefix const &', 'prefix')])
1423 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::ConvertFrom(ns3::Address const & address) [member function]
1424 cls.add_method('ConvertFrom',
1425 'ns3::Ipv6Address',
1426 [param('ns3::Address const &', 'address')],
1427 is_static=True)
1428 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::Deserialize(uint8_t const * buf) [member function]
1429 cls.add_method('Deserialize',
1430 'ns3::Ipv6Address',
1431 [param('uint8_t const *', 'buf')],
1432 is_static=True)
1433 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetAllHostsMulticast() [member function]
1434 cls.add_method('GetAllHostsMulticast',
1435 'ns3::Ipv6Address',
1436 [],
1437 is_static=True)
1438 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetAllNodesMulticast() [member function]
1439 cls.add_method('GetAllNodesMulticast',
1440 'ns3::Ipv6Address',
1441 [],
1442 is_static=True)
1443 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetAllRoutersMulticast() [member function]
1444 cls.add_method('GetAllRoutersMulticast',
1445 'ns3::Ipv6Address',
1446 [],
1447 is_static=True)
1448 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetAny() [member function]
1449 cls.add_method('GetAny',
1450 'ns3::Ipv6Address',
1451 [],
1452 is_static=True)
1453 ## ipv6-address.h (module 'network'): void ns3::Ipv6Address::GetBytes(uint8_t * buf) const [member function]
1454 cls.add_method('GetBytes',
1455 'void',
1456 [param('uint8_t *', 'buf')],
1457 is_const=True)
Alexander Afanasyev6f933532012-02-29 13:30:37 -08001458 ## ipv6-address.h (module 'network'): ns3::Ipv4Address ns3::Ipv6Address::GetIpv4MappedAddress() const [member function]
1459 cls.add_method('GetIpv4MappedAddress',
1460 'ns3::Ipv4Address',
1461 [],
1462 is_const=True)
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001463 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetLoopback() [member function]
1464 cls.add_method('GetLoopback',
1465 'ns3::Ipv6Address',
1466 [],
1467 is_static=True)
1468 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetOnes() [member function]
1469 cls.add_method('GetOnes',
1470 'ns3::Ipv6Address',
1471 [],
1472 is_static=True)
1473 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetZero() [member function]
1474 cls.add_method('GetZero',
1475 'ns3::Ipv6Address',
1476 [],
1477 is_static=True)
1478 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsAllHostsMulticast() const [member function]
1479 cls.add_method('IsAllHostsMulticast',
1480 'bool',
1481 [],
1482 is_const=True)
1483 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsAllNodesMulticast() const [member function]
1484 cls.add_method('IsAllNodesMulticast',
1485 'bool',
1486 [],
1487 is_const=True)
1488 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsAllRoutersMulticast() const [member function]
1489 cls.add_method('IsAllRoutersMulticast',
1490 'bool',
1491 [],
1492 is_const=True)
1493 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsAny() const [member function]
1494 cls.add_method('IsAny',
1495 'bool',
1496 [],
1497 is_const=True)
1498 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsEqual(ns3::Ipv6Address const & other) const [member function]
1499 cls.add_method('IsEqual',
1500 'bool',
1501 [param('ns3::Ipv6Address const &', 'other')],
1502 is_const=True)
Alexander Afanasyev6f933532012-02-29 13:30:37 -08001503 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsIpv4MappedAddress() [member function]
1504 cls.add_method('IsIpv4MappedAddress',
1505 'bool',
1506 [])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001507 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsLinkLocal() const [member function]
1508 cls.add_method('IsLinkLocal',
1509 'bool',
1510 [],
1511 is_const=True)
Alexander Afanasyev6f933532012-02-29 13:30:37 -08001512 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsLinkLocalMulticast() const [member function]
1513 cls.add_method('IsLinkLocalMulticast',
1514 'bool',
1515 [],
1516 is_const=True)
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001517 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsLocalhost() const [member function]
1518 cls.add_method('IsLocalhost',
1519 'bool',
1520 [],
1521 is_const=True)
1522 ## ipv6-address.h (module 'network'): static bool ns3::Ipv6Address::IsMatchingType(ns3::Address const & address) [member function]
1523 cls.add_method('IsMatchingType',
1524 'bool',
1525 [param('ns3::Address const &', 'address')],
1526 is_static=True)
1527 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsMulticast() const [member function]
1528 cls.add_method('IsMulticast',
1529 'bool',
1530 [],
1531 is_const=True)
1532 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsSolicitedMulticast() const [member function]
1533 cls.add_method('IsSolicitedMulticast',
1534 'bool',
1535 [],
1536 is_const=True)
1537 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::MakeAutoconfiguredAddress(ns3::Mac48Address addr, ns3::Ipv6Address prefix) [member function]
1538 cls.add_method('MakeAutoconfiguredAddress',
1539 'ns3::Ipv6Address',
1540 [param('ns3::Mac48Address', 'addr'), param('ns3::Ipv6Address', 'prefix')],
1541 is_static=True)
1542 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::MakeAutoconfiguredLinkLocalAddress(ns3::Mac48Address mac) [member function]
1543 cls.add_method('MakeAutoconfiguredLinkLocalAddress',
1544 'ns3::Ipv6Address',
1545 [param('ns3::Mac48Address', 'mac')],
1546 is_static=True)
Alexander Afanasyev6f933532012-02-29 13:30:37 -08001547 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::MakeIpv4MappedAddress(ns3::Ipv4Address addr) [member function]
1548 cls.add_method('MakeIpv4MappedAddress',
1549 'ns3::Ipv6Address',
1550 [param('ns3::Ipv4Address', 'addr')],
1551 is_static=True)
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001552 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::MakeSolicitedAddress(ns3::Ipv6Address addr) [member function]
1553 cls.add_method('MakeSolicitedAddress',
1554 'ns3::Ipv6Address',
1555 [param('ns3::Ipv6Address', 'addr')],
1556 is_static=True)
1557 ## ipv6-address.h (module 'network'): void ns3::Ipv6Address::Print(std::ostream & os) const [member function]
1558 cls.add_method('Print',
1559 'void',
1560 [param('std::ostream &', 'os')],
1561 is_const=True)
1562 ## ipv6-address.h (module 'network'): void ns3::Ipv6Address::Serialize(uint8_t * buf) const [member function]
1563 cls.add_method('Serialize',
1564 'void',
1565 [param('uint8_t *', 'buf')],
1566 is_const=True)
1567 ## ipv6-address.h (module 'network'): void ns3::Ipv6Address::Set(char const * address) [member function]
1568 cls.add_method('Set',
1569 'void',
1570 [param('char const *', 'address')])
1571 ## ipv6-address.h (module 'network'): void ns3::Ipv6Address::Set(uint8_t * address) [member function]
1572 cls.add_method('Set',
1573 'void',
1574 [param('uint8_t *', 'address')])
1575 return
1576
1577def register_Ns3Ipv6Prefix_methods(root_module, cls):
1578 cls.add_binary_comparison_operator('!=')
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07001579 cls.add_output_stream_operator()
Alexander Afanasyeva28ec562012-10-25 14:07:32 -07001580 cls.add_binary_comparison_operator('==')
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001581 ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix() [constructor]
1582 cls.add_constructor([])
1583 ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix(uint8_t * prefix) [constructor]
1584 cls.add_constructor([param('uint8_t *', 'prefix')])
1585 ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix(char const * prefix) [constructor]
1586 cls.add_constructor([param('char const *', 'prefix')])
1587 ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix(uint8_t prefix) [constructor]
1588 cls.add_constructor([param('uint8_t', 'prefix')])
1589 ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix(ns3::Ipv6Prefix const & prefix) [copy constructor]
1590 cls.add_constructor([param('ns3::Ipv6Prefix const &', 'prefix')])
1591 ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix(ns3::Ipv6Prefix const * prefix) [constructor]
1592 cls.add_constructor([param('ns3::Ipv6Prefix const *', 'prefix')])
1593 ## ipv6-address.h (module 'network'): void ns3::Ipv6Prefix::GetBytes(uint8_t * buf) const [member function]
1594 cls.add_method('GetBytes',
1595 'void',
1596 [param('uint8_t *', 'buf')],
1597 is_const=True)
1598 ## ipv6-address.h (module 'network'): static ns3::Ipv6Prefix ns3::Ipv6Prefix::GetLoopback() [member function]
1599 cls.add_method('GetLoopback',
1600 'ns3::Ipv6Prefix',
1601 [],
1602 is_static=True)
1603 ## ipv6-address.h (module 'network'): static ns3::Ipv6Prefix ns3::Ipv6Prefix::GetOnes() [member function]
1604 cls.add_method('GetOnes',
1605 'ns3::Ipv6Prefix',
1606 [],
1607 is_static=True)
1608 ## ipv6-address.h (module 'network'): uint8_t ns3::Ipv6Prefix::GetPrefixLength() const [member function]
1609 cls.add_method('GetPrefixLength',
1610 'uint8_t',
1611 [],
1612 is_const=True)
1613 ## ipv6-address.h (module 'network'): static ns3::Ipv6Prefix ns3::Ipv6Prefix::GetZero() [member function]
1614 cls.add_method('GetZero',
1615 'ns3::Ipv6Prefix',
1616 [],
1617 is_static=True)
1618 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Prefix::IsEqual(ns3::Ipv6Prefix const & other) const [member function]
1619 cls.add_method('IsEqual',
1620 'bool',
1621 [param('ns3::Ipv6Prefix const &', 'other')],
1622 is_const=True)
1623 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Prefix::IsMatch(ns3::Ipv6Address a, ns3::Ipv6Address b) const [member function]
1624 cls.add_method('IsMatch',
1625 'bool',
1626 [param('ns3::Ipv6Address', 'a'), param('ns3::Ipv6Address', 'b')],
1627 is_const=True)
1628 ## ipv6-address.h (module 'network'): void ns3::Ipv6Prefix::Print(std::ostream & os) const [member function]
1629 cls.add_method('Print',
1630 'void',
1631 [param('std::ostream &', 'os')],
1632 is_const=True)
1633 return
1634
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07001635def register_Ns3NetDeviceContainer_methods(root_module, cls):
1636 ## net-device-container.h (module 'network'): ns3::NetDeviceContainer::NetDeviceContainer(ns3::NetDeviceContainer const & arg0) [copy constructor]
1637 cls.add_constructor([param('ns3::NetDeviceContainer const &', 'arg0')])
1638 ## net-device-container.h (module 'network'): ns3::NetDeviceContainer::NetDeviceContainer() [constructor]
1639 cls.add_constructor([])
1640 ## net-device-container.h (module 'network'): ns3::NetDeviceContainer::NetDeviceContainer(ns3::Ptr<ns3::NetDevice> dev) [constructor]
1641 cls.add_constructor([param('ns3::Ptr< ns3::NetDevice >', 'dev')])
1642 ## net-device-container.h (module 'network'): ns3::NetDeviceContainer::NetDeviceContainer(std::string devName) [constructor]
1643 cls.add_constructor([param('std::string', 'devName')])
1644 ## net-device-container.h (module 'network'): ns3::NetDeviceContainer::NetDeviceContainer(ns3::NetDeviceContainer const & a, ns3::NetDeviceContainer const & b) [constructor]
1645 cls.add_constructor([param('ns3::NetDeviceContainer const &', 'a'), param('ns3::NetDeviceContainer const &', 'b')])
1646 ## net-device-container.h (module 'network'): void ns3::NetDeviceContainer::Add(ns3::NetDeviceContainer other) [member function]
1647 cls.add_method('Add',
1648 'void',
1649 [param('ns3::NetDeviceContainer', 'other')])
1650 ## net-device-container.h (module 'network'): void ns3::NetDeviceContainer::Add(ns3::Ptr<ns3::NetDevice> device) [member function]
1651 cls.add_method('Add',
1652 'void',
1653 [param('ns3::Ptr< ns3::NetDevice >', 'device')])
1654 ## net-device-container.h (module 'network'): void ns3::NetDeviceContainer::Add(std::string deviceName) [member function]
1655 cls.add_method('Add',
1656 'void',
1657 [param('std::string', 'deviceName')])
1658 ## 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]
1659 cls.add_method('Begin',
1660 '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::NetDevice > const, std::vector< ns3::Ptr< ns3::NetDevice > > >',
1661 [],
1662 is_const=True)
1663 ## 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]
1664 cls.add_method('End',
1665 '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::NetDevice > const, std::vector< ns3::Ptr< ns3::NetDevice > > >',
1666 [],
1667 is_const=True)
1668 ## net-device-container.h (module 'network'): ns3::Ptr<ns3::NetDevice> ns3::NetDeviceContainer::Get(uint32_t i) const [member function]
1669 cls.add_method('Get',
1670 'ns3::Ptr< ns3::NetDevice >',
1671 [param('uint32_t', 'i')],
1672 is_const=True)
1673 ## net-device-container.h (module 'network'): uint32_t ns3::NetDeviceContainer::GetN() const [member function]
1674 cls.add_method('GetN',
1675 'uint32_t',
1676 [],
1677 is_const=True)
1678 return
1679
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001680def register_Ns3NodeContainer_methods(root_module, cls):
1681 ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer(ns3::NodeContainer const & arg0) [copy constructor]
1682 cls.add_constructor([param('ns3::NodeContainer const &', 'arg0')])
1683 ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer() [constructor]
1684 cls.add_constructor([])
1685 ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer(ns3::Ptr<ns3::Node> node) [constructor]
1686 cls.add_constructor([param('ns3::Ptr< ns3::Node >', 'node')])
1687 ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer(std::string nodeName) [constructor]
1688 cls.add_constructor([param('std::string', 'nodeName')])
1689 ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer(ns3::NodeContainer const & a, ns3::NodeContainer const & b) [constructor]
1690 cls.add_constructor([param('ns3::NodeContainer const &', 'a'), param('ns3::NodeContainer const &', 'b')])
1691 ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer(ns3::NodeContainer const & a, ns3::NodeContainer const & b, ns3::NodeContainer const & c) [constructor]
1692 cls.add_constructor([param('ns3::NodeContainer const &', 'a'), param('ns3::NodeContainer const &', 'b'), param('ns3::NodeContainer const &', 'c')])
1693 ## 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]
1694 cls.add_constructor([param('ns3::NodeContainer const &', 'a'), param('ns3::NodeContainer const &', 'b'), param('ns3::NodeContainer const &', 'c'), param('ns3::NodeContainer const &', 'd')])
1695 ## 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]
1696 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')])
1697 ## node-container.h (module 'network'): void ns3::NodeContainer::Add(ns3::NodeContainer other) [member function]
1698 cls.add_method('Add',
1699 'void',
1700 [param('ns3::NodeContainer', 'other')])
1701 ## node-container.h (module 'network'): void ns3::NodeContainer::Add(ns3::Ptr<ns3::Node> node) [member function]
1702 cls.add_method('Add',
1703 'void',
1704 [param('ns3::Ptr< ns3::Node >', 'node')])
1705 ## node-container.h (module 'network'): void ns3::NodeContainer::Add(std::string nodeName) [member function]
1706 cls.add_method('Add',
1707 'void',
1708 [param('std::string', 'nodeName')])
1709 ## 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]
1710 cls.add_method('Begin',
1711 '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Node > const, std::vector< ns3::Ptr< ns3::Node > > >',
1712 [],
1713 is_const=True)
1714 ## node-container.h (module 'network'): void ns3::NodeContainer::Create(uint32_t n) [member function]
1715 cls.add_method('Create',
1716 'void',
1717 [param('uint32_t', 'n')])
1718 ## node-container.h (module 'network'): void ns3::NodeContainer::Create(uint32_t n, uint32_t systemId) [member function]
1719 cls.add_method('Create',
1720 'void',
1721 [param('uint32_t', 'n'), param('uint32_t', 'systemId')])
1722 ## 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]
1723 cls.add_method('End',
1724 '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Node > const, std::vector< ns3::Ptr< ns3::Node > > >',
1725 [],
1726 is_const=True)
1727 ## node-container.h (module 'network'): ns3::Ptr<ns3::Node> ns3::NodeContainer::Get(uint32_t i) const [member function]
1728 cls.add_method('Get',
1729 'ns3::Ptr< ns3::Node >',
1730 [param('uint32_t', 'i')],
1731 is_const=True)
1732 ## node-container.h (module 'network'): static ns3::NodeContainer ns3::NodeContainer::GetGlobal() [member function]
1733 cls.add_method('GetGlobal',
1734 'ns3::NodeContainer',
1735 [],
1736 is_static=True)
1737 ## node-container.h (module 'network'): uint32_t ns3::NodeContainer::GetN() const [member function]
1738 cls.add_method('GetN',
1739 'uint32_t',
1740 [],
1741 is_const=True)
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001742 return
1743
1744def register_Ns3ObjectBase_methods(root_module, cls):
1745 ## object-base.h (module 'core'): ns3::ObjectBase::ObjectBase() [constructor]
1746 cls.add_constructor([])
1747 ## object-base.h (module 'core'): ns3::ObjectBase::ObjectBase(ns3::ObjectBase const & arg0) [copy constructor]
1748 cls.add_constructor([param('ns3::ObjectBase const &', 'arg0')])
1749 ## object-base.h (module 'core'): void ns3::ObjectBase::GetAttribute(std::string name, ns3::AttributeValue & value) const [member function]
1750 cls.add_method('GetAttribute',
1751 'void',
1752 [param('std::string', 'name'), param('ns3::AttributeValue &', 'value')],
1753 is_const=True)
1754 ## object-base.h (module 'core'): bool ns3::ObjectBase::GetAttributeFailSafe(std::string name, ns3::AttributeValue & attribute) const [member function]
1755 cls.add_method('GetAttributeFailSafe',
1756 'bool',
1757 [param('std::string', 'name'), param('ns3::AttributeValue &', 'attribute')],
1758 is_const=True)
1759 ## object-base.h (module 'core'): ns3::TypeId ns3::ObjectBase::GetInstanceTypeId() const [member function]
1760 cls.add_method('GetInstanceTypeId',
1761 'ns3::TypeId',
1762 [],
1763 is_pure_virtual=True, is_const=True, is_virtual=True)
1764 ## object-base.h (module 'core'): static ns3::TypeId ns3::ObjectBase::GetTypeId() [member function]
1765 cls.add_method('GetTypeId',
1766 'ns3::TypeId',
1767 [],
1768 is_static=True)
1769 ## object-base.h (module 'core'): void ns3::ObjectBase::SetAttribute(std::string name, ns3::AttributeValue const & value) [member function]
1770 cls.add_method('SetAttribute',
1771 'void',
1772 [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')])
1773 ## object-base.h (module 'core'): bool ns3::ObjectBase::SetAttributeFailSafe(std::string name, ns3::AttributeValue const & value) [member function]
1774 cls.add_method('SetAttributeFailSafe',
1775 'bool',
1776 [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')])
1777 ## object-base.h (module 'core'): bool ns3::ObjectBase::TraceConnect(std::string name, std::string context, ns3::CallbackBase const & cb) [member function]
1778 cls.add_method('TraceConnect',
1779 'bool',
1780 [param('std::string', 'name'), param('std::string', 'context'), param('ns3::CallbackBase const &', 'cb')])
1781 ## object-base.h (module 'core'): bool ns3::ObjectBase::TraceConnectWithoutContext(std::string name, ns3::CallbackBase const & cb) [member function]
1782 cls.add_method('TraceConnectWithoutContext',
1783 'bool',
1784 [param('std::string', 'name'), param('ns3::CallbackBase const &', 'cb')])
1785 ## object-base.h (module 'core'): bool ns3::ObjectBase::TraceDisconnect(std::string name, std::string context, ns3::CallbackBase const & cb) [member function]
1786 cls.add_method('TraceDisconnect',
1787 'bool',
1788 [param('std::string', 'name'), param('std::string', 'context'), param('ns3::CallbackBase const &', 'cb')])
1789 ## object-base.h (module 'core'): bool ns3::ObjectBase::TraceDisconnectWithoutContext(std::string name, ns3::CallbackBase const & cb) [member function]
1790 cls.add_method('TraceDisconnectWithoutContext',
1791 'bool',
1792 [param('std::string', 'name'), param('ns3::CallbackBase const &', 'cb')])
1793 ## object-base.h (module 'core'): void ns3::ObjectBase::ConstructSelf(ns3::AttributeConstructionList const & attributes) [member function]
1794 cls.add_method('ConstructSelf',
1795 'void',
1796 [param('ns3::AttributeConstructionList const &', 'attributes')],
1797 visibility='protected')
1798 ## object-base.h (module 'core'): void ns3::ObjectBase::NotifyConstructionCompleted() [member function]
1799 cls.add_method('NotifyConstructionCompleted',
1800 'void',
1801 [],
1802 visibility='protected', is_virtual=True)
1803 return
1804
1805def register_Ns3ObjectDeleter_methods(root_module, cls):
1806 ## object.h (module 'core'): ns3::ObjectDeleter::ObjectDeleter() [constructor]
1807 cls.add_constructor([])
1808 ## object.h (module 'core'): ns3::ObjectDeleter::ObjectDeleter(ns3::ObjectDeleter const & arg0) [copy constructor]
1809 cls.add_constructor([param('ns3::ObjectDeleter const &', 'arg0')])
1810 ## object.h (module 'core'): static void ns3::ObjectDeleter::Delete(ns3::Object * object) [member function]
1811 cls.add_method('Delete',
1812 'void',
1813 [param('ns3::Object *', 'object')],
1814 is_static=True)
1815 return
1816
1817def register_Ns3ObjectFactory_methods(root_module, cls):
1818 cls.add_output_stream_operator()
1819 ## object-factory.h (module 'core'): ns3::ObjectFactory::ObjectFactory(ns3::ObjectFactory const & arg0) [copy constructor]
1820 cls.add_constructor([param('ns3::ObjectFactory const &', 'arg0')])
1821 ## object-factory.h (module 'core'): ns3::ObjectFactory::ObjectFactory() [constructor]
1822 cls.add_constructor([])
1823 ## object-factory.h (module 'core'): ns3::ObjectFactory::ObjectFactory(std::string typeId) [constructor]
1824 cls.add_constructor([param('std::string', 'typeId')])
1825 ## object-factory.h (module 'core'): ns3::Ptr<ns3::Object> ns3::ObjectFactory::Create() const [member function]
1826 cls.add_method('Create',
1827 'ns3::Ptr< ns3::Object >',
1828 [],
1829 is_const=True)
1830 ## object-factory.h (module 'core'): ns3::TypeId ns3::ObjectFactory::GetTypeId() const [member function]
1831 cls.add_method('GetTypeId',
1832 'ns3::TypeId',
1833 [],
1834 is_const=True)
1835 ## object-factory.h (module 'core'): void ns3::ObjectFactory::Set(std::string name, ns3::AttributeValue const & value) [member function]
1836 cls.add_method('Set',
1837 'void',
1838 [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')])
1839 ## object-factory.h (module 'core'): void ns3::ObjectFactory::SetTypeId(ns3::TypeId tid) [member function]
1840 cls.add_method('SetTypeId',
1841 'void',
1842 [param('ns3::TypeId', 'tid')])
1843 ## object-factory.h (module 'core'): void ns3::ObjectFactory::SetTypeId(char const * tid) [member function]
1844 cls.add_method('SetTypeId',
1845 'void',
1846 [param('char const *', 'tid')])
1847 ## object-factory.h (module 'core'): void ns3::ObjectFactory::SetTypeId(std::string tid) [member function]
1848 cls.add_method('SetTypeId',
1849 'void',
1850 [param('std::string', 'tid')])
1851 return
1852
1853def register_Ns3PacketMetadata_methods(root_module, cls):
1854 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::PacketMetadata(uint64_t uid, uint32_t size) [constructor]
1855 cls.add_constructor([param('uint64_t', 'uid'), param('uint32_t', 'size')])
1856 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::PacketMetadata(ns3::PacketMetadata const & o) [copy constructor]
1857 cls.add_constructor([param('ns3::PacketMetadata const &', 'o')])
1858 ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::AddAtEnd(ns3::PacketMetadata const & o) [member function]
1859 cls.add_method('AddAtEnd',
1860 'void',
1861 [param('ns3::PacketMetadata const &', 'o')])
1862 ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::AddHeader(ns3::Header const & header, uint32_t size) [member function]
1863 cls.add_method('AddHeader',
1864 'void',
1865 [param('ns3::Header const &', 'header'), param('uint32_t', 'size')])
1866 ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::AddPaddingAtEnd(uint32_t end) [member function]
1867 cls.add_method('AddPaddingAtEnd',
1868 'void',
1869 [param('uint32_t', 'end')])
1870 ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::AddTrailer(ns3::Trailer const & trailer, uint32_t size) [member function]
1871 cls.add_method('AddTrailer',
1872 'void',
1873 [param('ns3::Trailer const &', 'trailer'), param('uint32_t', 'size')])
1874 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::ItemIterator ns3::PacketMetadata::BeginItem(ns3::Buffer buffer) const [member function]
1875 cls.add_method('BeginItem',
1876 'ns3::PacketMetadata::ItemIterator',
1877 [param('ns3::Buffer', 'buffer')],
1878 is_const=True)
1879 ## packet-metadata.h (module 'network'): ns3::PacketMetadata ns3::PacketMetadata::CreateFragment(uint32_t start, uint32_t end) const [member function]
1880 cls.add_method('CreateFragment',
1881 'ns3::PacketMetadata',
1882 [param('uint32_t', 'start'), param('uint32_t', 'end')],
1883 is_const=True)
1884 ## packet-metadata.h (module 'network'): uint32_t ns3::PacketMetadata::Deserialize(uint8_t const * buffer, uint32_t size) [member function]
1885 cls.add_method('Deserialize',
1886 'uint32_t',
1887 [param('uint8_t const *', 'buffer'), param('uint32_t', 'size')])
1888 ## packet-metadata.h (module 'network'): static void ns3::PacketMetadata::Enable() [member function]
1889 cls.add_method('Enable',
1890 'void',
1891 [],
1892 is_static=True)
1893 ## packet-metadata.h (module 'network'): static void ns3::PacketMetadata::EnableChecking() [member function]
1894 cls.add_method('EnableChecking',
1895 'void',
1896 [],
1897 is_static=True)
1898 ## packet-metadata.h (module 'network'): uint32_t ns3::PacketMetadata::GetSerializedSize() const [member function]
1899 cls.add_method('GetSerializedSize',
1900 'uint32_t',
1901 [],
1902 is_const=True)
1903 ## packet-metadata.h (module 'network'): uint64_t ns3::PacketMetadata::GetUid() const [member function]
1904 cls.add_method('GetUid',
1905 'uint64_t',
1906 [],
1907 is_const=True)
1908 ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::RemoveAtEnd(uint32_t end) [member function]
1909 cls.add_method('RemoveAtEnd',
1910 'void',
1911 [param('uint32_t', 'end')])
1912 ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::RemoveAtStart(uint32_t start) [member function]
1913 cls.add_method('RemoveAtStart',
1914 'void',
1915 [param('uint32_t', 'start')])
1916 ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::RemoveHeader(ns3::Header const & header, uint32_t size) [member function]
1917 cls.add_method('RemoveHeader',
1918 'void',
1919 [param('ns3::Header const &', 'header'), param('uint32_t', 'size')])
1920 ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::RemoveTrailer(ns3::Trailer const & trailer, uint32_t size) [member function]
1921 cls.add_method('RemoveTrailer',
1922 'void',
1923 [param('ns3::Trailer const &', 'trailer'), param('uint32_t', 'size')])
1924 ## packet-metadata.h (module 'network'): uint32_t ns3::PacketMetadata::Serialize(uint8_t * buffer, uint32_t maxSize) const [member function]
1925 cls.add_method('Serialize',
1926 'uint32_t',
1927 [param('uint8_t *', 'buffer'), param('uint32_t', 'maxSize')],
1928 is_const=True)
1929 return
1930
1931def register_Ns3PacketMetadataItem_methods(root_module, cls):
1932 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::Item() [constructor]
1933 cls.add_constructor([])
1934 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::Item(ns3::PacketMetadata::Item const & arg0) [copy constructor]
1935 cls.add_constructor([param('ns3::PacketMetadata::Item const &', 'arg0')])
1936 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::current [variable]
1937 cls.add_instance_attribute('current', 'ns3::Buffer::Iterator', is_const=False)
1938 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::currentSize [variable]
1939 cls.add_instance_attribute('currentSize', 'uint32_t', is_const=False)
1940 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::currentTrimedFromEnd [variable]
1941 cls.add_instance_attribute('currentTrimedFromEnd', 'uint32_t', is_const=False)
1942 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::currentTrimedFromStart [variable]
1943 cls.add_instance_attribute('currentTrimedFromStart', 'uint32_t', is_const=False)
1944 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::isFragment [variable]
1945 cls.add_instance_attribute('isFragment', 'bool', is_const=False)
1946 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::tid [variable]
1947 cls.add_instance_attribute('tid', 'ns3::TypeId', is_const=False)
1948 return
1949
1950def register_Ns3PacketMetadataItemIterator_methods(root_module, cls):
1951 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::ItemIterator::ItemIterator(ns3::PacketMetadata::ItemIterator const & arg0) [copy constructor]
1952 cls.add_constructor([param('ns3::PacketMetadata::ItemIterator const &', 'arg0')])
1953 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::ItemIterator::ItemIterator(ns3::PacketMetadata const * metadata, ns3::Buffer buffer) [constructor]
1954 cls.add_constructor([param('ns3::PacketMetadata const *', 'metadata'), param('ns3::Buffer', 'buffer')])
1955 ## packet-metadata.h (module 'network'): bool ns3::PacketMetadata::ItemIterator::HasNext() const [member function]
1956 cls.add_method('HasNext',
1957 'bool',
1958 [],
1959 is_const=True)
1960 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item ns3::PacketMetadata::ItemIterator::Next() [member function]
1961 cls.add_method('Next',
1962 'ns3::PacketMetadata::Item',
1963 [])
1964 return
1965
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07001966def register_Ns3PacketTagIterator_methods(root_module, cls):
1967 ## packet.h (module 'network'): ns3::PacketTagIterator::PacketTagIterator(ns3::PacketTagIterator const & arg0) [copy constructor]
1968 cls.add_constructor([param('ns3::PacketTagIterator const &', 'arg0')])
1969 ## packet.h (module 'network'): bool ns3::PacketTagIterator::HasNext() const [member function]
1970 cls.add_method('HasNext',
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001971 'bool',
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001972 [],
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07001973 is_const=True)
1974 ## packet.h (module 'network'): ns3::PacketTagIterator::Item ns3::PacketTagIterator::Next() [member function]
1975 cls.add_method('Next',
1976 'ns3::PacketTagIterator::Item',
1977 [])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001978 return
1979
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07001980def register_Ns3PacketTagIteratorItem_methods(root_module, cls):
1981 ## packet.h (module 'network'): ns3::PacketTagIterator::Item::Item(ns3::PacketTagIterator::Item const & arg0) [copy constructor]
1982 cls.add_constructor([param('ns3::PacketTagIterator::Item const &', 'arg0')])
1983 ## packet.h (module 'network'): void ns3::PacketTagIterator::Item::GetTag(ns3::Tag & tag) const [member function]
1984 cls.add_method('GetTag',
1985 'void',
1986 [param('ns3::Tag &', 'tag')],
1987 is_const=True)
1988 ## packet.h (module 'network'): ns3::TypeId ns3::PacketTagIterator::Item::GetTypeId() const [member function]
1989 cls.add_method('GetTypeId',
1990 'ns3::TypeId',
1991 [],
1992 is_const=True)
1993 return
1994
1995def register_Ns3PacketTagList_methods(root_module, cls):
1996 ## packet-tag-list.h (module 'network'): ns3::PacketTagList::PacketTagList() [constructor]
1997 cls.add_constructor([])
1998 ## packet-tag-list.h (module 'network'): ns3::PacketTagList::PacketTagList(ns3::PacketTagList const & o) [copy constructor]
1999 cls.add_constructor([param('ns3::PacketTagList const &', 'o')])
2000 ## packet-tag-list.h (module 'network'): void ns3::PacketTagList::Add(ns3::Tag const & tag) const [member function]
2001 cls.add_method('Add',
2002 'void',
2003 [param('ns3::Tag const &', 'tag')],
2004 is_const=True)
2005 ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData const * ns3::PacketTagList::Head() const [member function]
2006 cls.add_method('Head',
2007 'ns3::PacketTagList::TagData const *',
2008 [],
2009 is_const=True)
2010 ## packet-tag-list.h (module 'network'): bool ns3::PacketTagList::Peek(ns3::Tag & tag) const [member function]
2011 cls.add_method('Peek',
2012 'bool',
2013 [param('ns3::Tag &', 'tag')],
2014 is_const=True)
2015 ## packet-tag-list.h (module 'network'): bool ns3::PacketTagList::Remove(ns3::Tag & tag) [member function]
2016 cls.add_method('Remove',
2017 'bool',
2018 [param('ns3::Tag &', 'tag')])
2019 ## packet-tag-list.h (module 'network'): void ns3::PacketTagList::RemoveAll() [member function]
2020 cls.add_method('RemoveAll',
2021 'void',
2022 [])
2023 return
2024
2025def register_Ns3PacketTagListTagData_methods(root_module, cls):
2026 ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData::TagData() [constructor]
2027 cls.add_constructor([])
2028 ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData::TagData(ns3::PacketTagList::TagData const & arg0) [copy constructor]
2029 cls.add_constructor([param('ns3::PacketTagList::TagData const &', 'arg0')])
2030 ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData::count [variable]
2031 cls.add_instance_attribute('count', 'uint32_t', is_const=False)
2032 ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData::data [variable]
2033 cls.add_instance_attribute('data', 'uint8_t [ 20 ]', is_const=False)
2034 ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData::next [variable]
2035 cls.add_instance_attribute('next', 'ns3::PacketTagList::TagData *', is_const=False)
2036 ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData::tid [variable]
2037 cls.add_instance_attribute('tid', 'ns3::TypeId', is_const=False)
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002038 return
2039
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07002040def register_Ns3RandomVariable_methods(root_module, cls):
2041 cls.add_output_stream_operator()
2042 ## random-variable.h (module 'core'): ns3::RandomVariable::RandomVariable() [constructor]
2043 cls.add_constructor([])
2044 ## random-variable.h (module 'core'): ns3::RandomVariable::RandomVariable(ns3::RandomVariable const & o) [copy constructor]
2045 cls.add_constructor([param('ns3::RandomVariable const &', 'o')])
2046 ## random-variable.h (module 'core'): uint32_t ns3::RandomVariable::GetInteger() const [member function]
2047 cls.add_method('GetInteger',
2048 'uint32_t',
2049 [],
2050 is_const=True)
2051 ## random-variable.h (module 'core'): double ns3::RandomVariable::GetValue() const [member function]
2052 cls.add_method('GetValue',
2053 'double',
2054 [],
2055 is_const=True)
2056 return
2057
2058def register_Ns3RngSeedManager_methods(root_module, cls):
2059 ## rng-seed-manager.h (module 'core'): ns3::RngSeedManager::RngSeedManager() [constructor]
2060 cls.add_constructor([])
2061 ## rng-seed-manager.h (module 'core'): ns3::RngSeedManager::RngSeedManager(ns3::RngSeedManager const & arg0) [copy constructor]
2062 cls.add_constructor([param('ns3::RngSeedManager const &', 'arg0')])
2063 ## rng-seed-manager.h (module 'core'): static uint64_t ns3::RngSeedManager::GetNextStreamIndex() [member function]
2064 cls.add_method('GetNextStreamIndex',
2065 'uint64_t',
2066 [],
2067 is_static=True)
2068 ## rng-seed-manager.h (module 'core'): static uint64_t ns3::RngSeedManager::GetRun() [member function]
2069 cls.add_method('GetRun',
2070 'uint64_t',
2071 [],
2072 is_static=True)
2073 ## rng-seed-manager.h (module 'core'): static uint32_t ns3::RngSeedManager::GetSeed() [member function]
2074 cls.add_method('GetSeed',
2075 'uint32_t',
2076 [],
2077 is_static=True)
2078 ## rng-seed-manager.h (module 'core'): static void ns3::RngSeedManager::SetRun(uint64_t run) [member function]
2079 cls.add_method('SetRun',
2080 'void',
2081 [param('uint64_t', 'run')],
2082 is_static=True)
2083 ## rng-seed-manager.h (module 'core'): static void ns3::RngSeedManager::SetSeed(uint32_t seed) [member function]
2084 cls.add_method('SetSeed',
2085 'void',
2086 [param('uint32_t', 'seed')],
2087 is_static=True)
2088 return
2089
2090def register_Ns3SequentialVariable_methods(root_module, cls):
2091 ## random-variable.h (module 'core'): ns3::SequentialVariable::SequentialVariable(ns3::SequentialVariable const & arg0) [copy constructor]
2092 cls.add_constructor([param('ns3::SequentialVariable const &', 'arg0')])
2093 ## random-variable.h (module 'core'): ns3::SequentialVariable::SequentialVariable(double f, double l, double i=1, uint32_t c=1) [constructor]
2094 cls.add_constructor([param('double', 'f'), param('double', 'l'), param('double', 'i', default_value='1'), param('uint32_t', 'c', default_value='1')])
2095 ## random-variable.h (module 'core'): ns3::SequentialVariable::SequentialVariable(double f, double l, ns3::RandomVariable const & i, uint32_t c=1) [constructor]
2096 cls.add_constructor([param('double', 'f'), param('double', 'l'), param('ns3::RandomVariable const &', 'i'), param('uint32_t', 'c', default_value='1')])
2097 return
2098
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002099def register_Ns3SimpleRefCount__Ns3Object_Ns3ObjectBase_Ns3ObjectDeleter_methods(root_module, cls):
2100 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter>::SimpleRefCount() [constructor]
2101 cls.add_constructor([])
2102 ## 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]
2103 cls.add_constructor([param('ns3::SimpleRefCount< ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter > const &', 'o')])
2104 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter>::Cleanup() [member function]
2105 cls.add_method('Cleanup',
2106 'void',
2107 [],
2108 is_static=True)
2109 return
2110
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07002111def register_Ns3SpringMobilityHelper_methods(root_module, cls):
2112 ## spring-mobility-helper.h (module 'ndnSIM'): ns3::SpringMobilityHelper::SpringMobilityHelper() [constructor]
2113 cls.add_constructor([])
2114 ## spring-mobility-helper.h (module 'ndnSIM'): ns3::SpringMobilityHelper::SpringMobilityHelper(ns3::SpringMobilityHelper const & arg0) [copy constructor]
2115 cls.add_constructor([param('ns3::SpringMobilityHelper const &', 'arg0')])
2116 ## spring-mobility-helper.h (module 'ndnSIM'): static void ns3::SpringMobilityHelper::InstallSprings(ns3::Ptr<ns3::Node> node1, ns3::Ptr<ns3::Node> node2) [member function]
2117 cls.add_method('InstallSprings',
2118 'void',
2119 [param('ns3::Ptr< ns3::Node >', 'node1'), param('ns3::Ptr< ns3::Node >', 'node2')],
2120 is_static=True)
2121 ## spring-mobility-helper.h (module 'ndnSIM'): static void ns3::SpringMobilityHelper::InstallSprings(std::_List_const_iterator<ns3::TopologyReader::Link> first, std::_List_const_iterator<ns3::TopologyReader::Link> end) [member function]
2122 cls.add_method('InstallSprings',
2123 'void',
2124 [param('std::_List_const_iterator< ns3::TopologyReader::Link >', 'first'), param('std::_List_const_iterator< ns3::TopologyReader::Link >', 'end')],
2125 is_static=True)
2126 return
2127
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07002128def register_Ns3Tag_methods(root_module, cls):
2129 ## tag.h (module 'network'): ns3::Tag::Tag() [constructor]
Alexander Afanasyev4975f732011-12-20 17:52:19 -08002130 cls.add_constructor([])
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07002131 ## tag.h (module 'network'): ns3::Tag::Tag(ns3::Tag const & arg0) [copy constructor]
2132 cls.add_constructor([param('ns3::Tag const &', 'arg0')])
2133 ## tag.h (module 'network'): void ns3::Tag::Deserialize(ns3::TagBuffer i) [member function]
2134 cls.add_method('Deserialize',
Alexander Afanasyev4975f732011-12-20 17:52:19 -08002135 'void',
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07002136 [param('ns3::TagBuffer', 'i')],
2137 is_pure_virtual=True, is_virtual=True)
2138 ## tag.h (module 'network'): uint32_t ns3::Tag::GetSerializedSize() const [member function]
2139 cls.add_method('GetSerializedSize',
2140 'uint32_t',
2141 [],
2142 is_pure_virtual=True, is_const=True, is_virtual=True)
2143 ## tag.h (module 'network'): static ns3::TypeId ns3::Tag::GetTypeId() [member function]
2144 cls.add_method('GetTypeId',
2145 'ns3::TypeId',
2146 [],
Alexander Afanasyev4975f732011-12-20 17:52:19 -08002147 is_static=True)
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07002148 ## tag.h (module 'network'): void ns3::Tag::Print(std::ostream & os) const [member function]
2149 cls.add_method('Print',
Alexander Afanasyev4975f732011-12-20 17:52:19 -08002150 'void',
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07002151 [param('std::ostream &', 'os')],
2152 is_pure_virtual=True, is_const=True, is_virtual=True)
2153 ## tag.h (module 'network'): void ns3::Tag::Serialize(ns3::TagBuffer i) const [member function]
2154 cls.add_method('Serialize',
2155 'void',
2156 [param('ns3::TagBuffer', 'i')],
2157 is_pure_virtual=True, is_const=True, is_virtual=True)
Alexander Afanasyev4975f732011-12-20 17:52:19 -08002158 return
2159
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002160def register_Ns3TagBuffer_methods(root_module, cls):
2161 ## tag-buffer.h (module 'network'): ns3::TagBuffer::TagBuffer(ns3::TagBuffer const & arg0) [copy constructor]
2162 cls.add_constructor([param('ns3::TagBuffer const &', 'arg0')])
2163 ## tag-buffer.h (module 'network'): ns3::TagBuffer::TagBuffer(uint8_t * start, uint8_t * end) [constructor]
2164 cls.add_constructor([param('uint8_t *', 'start'), param('uint8_t *', 'end')])
2165 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::CopyFrom(ns3::TagBuffer o) [member function]
2166 cls.add_method('CopyFrom',
2167 'void',
2168 [param('ns3::TagBuffer', 'o')])
2169 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::Read(uint8_t * buffer, uint32_t size) [member function]
2170 cls.add_method('Read',
2171 'void',
2172 [param('uint8_t *', 'buffer'), param('uint32_t', 'size')])
2173 ## tag-buffer.h (module 'network'): double ns3::TagBuffer::ReadDouble() [member function]
2174 cls.add_method('ReadDouble',
2175 'double',
2176 [])
2177 ## tag-buffer.h (module 'network'): uint16_t ns3::TagBuffer::ReadU16() [member function]
2178 cls.add_method('ReadU16',
2179 'uint16_t',
2180 [])
2181 ## tag-buffer.h (module 'network'): uint32_t ns3::TagBuffer::ReadU32() [member function]
2182 cls.add_method('ReadU32',
2183 'uint32_t',
2184 [])
2185 ## tag-buffer.h (module 'network'): uint64_t ns3::TagBuffer::ReadU64() [member function]
2186 cls.add_method('ReadU64',
2187 'uint64_t',
2188 [])
2189 ## tag-buffer.h (module 'network'): uint8_t ns3::TagBuffer::ReadU8() [member function]
2190 cls.add_method('ReadU8',
2191 'uint8_t',
2192 [])
2193 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::TrimAtEnd(uint32_t trim) [member function]
2194 cls.add_method('TrimAtEnd',
2195 'void',
2196 [param('uint32_t', 'trim')])
2197 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::Write(uint8_t const * buffer, uint32_t size) [member function]
2198 cls.add_method('Write',
2199 'void',
2200 [param('uint8_t const *', 'buffer'), param('uint32_t', 'size')])
2201 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::WriteDouble(double v) [member function]
2202 cls.add_method('WriteDouble',
2203 'void',
2204 [param('double', 'v')])
2205 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::WriteU16(uint16_t data) [member function]
2206 cls.add_method('WriteU16',
2207 'void',
2208 [param('uint16_t', 'data')])
2209 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::WriteU32(uint32_t data) [member function]
2210 cls.add_method('WriteU32',
2211 'void',
2212 [param('uint32_t', 'data')])
2213 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::WriteU64(uint64_t v) [member function]
2214 cls.add_method('WriteU64',
2215 'void',
2216 [param('uint64_t', 'v')])
2217 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::WriteU8(uint8_t v) [member function]
2218 cls.add_method('WriteU8',
2219 'void',
2220 [param('uint8_t', 'v')])
2221 return
2222
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07002223def register_Ns3TriangularVariable_methods(root_module, cls):
2224 ## random-variable.h (module 'core'): ns3::TriangularVariable::TriangularVariable(ns3::TriangularVariable const & arg0) [copy constructor]
2225 cls.add_constructor([param('ns3::TriangularVariable const &', 'arg0')])
2226 ## random-variable.h (module 'core'): ns3::TriangularVariable::TriangularVariable() [constructor]
2227 cls.add_constructor([])
2228 ## random-variable.h (module 'core'): ns3::TriangularVariable::TriangularVariable(double s, double l, double mean) [constructor]
2229 cls.add_constructor([param('double', 's'), param('double', 'l'), param('double', 'mean')])
2230 return
2231
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002232def register_Ns3TypeId_methods(root_module, cls):
2233 cls.add_binary_comparison_operator('!=')
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07002234 cls.add_output_stream_operator()
Alexander Afanasyeva28ec562012-10-25 14:07:32 -07002235 cls.add_binary_comparison_operator('==')
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002236 cls.add_binary_comparison_operator('<')
2237 ## type-id.h (module 'core'): ns3::TypeId::TypeId(char const * name) [constructor]
2238 cls.add_constructor([param('char const *', 'name')])
2239 ## type-id.h (module 'core'): ns3::TypeId::TypeId() [constructor]
2240 cls.add_constructor([])
2241 ## type-id.h (module 'core'): ns3::TypeId::TypeId(ns3::TypeId const & o) [copy constructor]
2242 cls.add_constructor([param('ns3::TypeId const &', 'o')])
2243 ## 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]
2244 cls.add_method('AddAttribute',
2245 'ns3::TypeId',
2246 [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')])
2247 ## 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]
2248 cls.add_method('AddAttribute',
2249 'ns3::TypeId',
2250 [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')])
2251 ## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::AddTraceSource(std::string name, std::string help, ns3::Ptr<ns3::TraceSourceAccessor const> accessor) [member function]
2252 cls.add_method('AddTraceSource',
2253 'ns3::TypeId',
2254 [param('std::string', 'name'), param('std::string', 'help'), param('ns3::Ptr< ns3::TraceSourceAccessor const >', 'accessor')])
2255 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation ns3::TypeId::GetAttribute(uint32_t i) const [member function]
2256 cls.add_method('GetAttribute',
2257 'ns3::TypeId::AttributeInformation',
2258 [param('uint32_t', 'i')],
2259 is_const=True)
2260 ## type-id.h (module 'core'): std::string ns3::TypeId::GetAttributeFullName(uint32_t i) const [member function]
2261 cls.add_method('GetAttributeFullName',
2262 'std::string',
2263 [param('uint32_t', 'i')],
2264 is_const=True)
2265 ## type-id.h (module 'core'): uint32_t ns3::TypeId::GetAttributeN() const [member function]
2266 cls.add_method('GetAttributeN',
2267 'uint32_t',
2268 [],
2269 is_const=True)
2270 ## 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]
2271 cls.add_method('GetConstructor',
2272 'ns3::Callback< ns3::ObjectBase *, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >',
2273 [],
2274 is_const=True)
2275 ## type-id.h (module 'core'): std::string ns3::TypeId::GetGroupName() const [member function]
2276 cls.add_method('GetGroupName',
2277 'std::string',
2278 [],
2279 is_const=True)
2280 ## type-id.h (module 'core'): std::string ns3::TypeId::GetName() const [member function]
2281 cls.add_method('GetName',
2282 'std::string',
2283 [],
2284 is_const=True)
2285 ## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::GetParent() const [member function]
2286 cls.add_method('GetParent',
2287 'ns3::TypeId',
2288 [],
2289 is_const=True)
2290 ## type-id.h (module 'core'): static ns3::TypeId ns3::TypeId::GetRegistered(uint32_t i) [member function]
2291 cls.add_method('GetRegistered',
2292 'ns3::TypeId',
2293 [param('uint32_t', 'i')],
2294 is_static=True)
2295 ## type-id.h (module 'core'): static uint32_t ns3::TypeId::GetRegisteredN() [member function]
2296 cls.add_method('GetRegisteredN',
2297 'uint32_t',
2298 [],
2299 is_static=True)
2300 ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation ns3::TypeId::GetTraceSource(uint32_t i) const [member function]
2301 cls.add_method('GetTraceSource',
2302 'ns3::TypeId::TraceSourceInformation',
2303 [param('uint32_t', 'i')],
2304 is_const=True)
2305 ## type-id.h (module 'core'): uint32_t ns3::TypeId::GetTraceSourceN() const [member function]
2306 cls.add_method('GetTraceSourceN',
2307 'uint32_t',
2308 [],
2309 is_const=True)
2310 ## type-id.h (module 'core'): uint16_t ns3::TypeId::GetUid() const [member function]
2311 cls.add_method('GetUid',
2312 'uint16_t',
2313 [],
2314 is_const=True)
2315 ## type-id.h (module 'core'): bool ns3::TypeId::HasConstructor() const [member function]
2316 cls.add_method('HasConstructor',
2317 'bool',
2318 [],
2319 is_const=True)
2320 ## type-id.h (module 'core'): bool ns3::TypeId::HasParent() const [member function]
2321 cls.add_method('HasParent',
2322 'bool',
2323 [],
2324 is_const=True)
2325 ## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::HideFromDocumentation() [member function]
2326 cls.add_method('HideFromDocumentation',
2327 'ns3::TypeId',
2328 [])
2329 ## type-id.h (module 'core'): bool ns3::TypeId::IsChildOf(ns3::TypeId other) const [member function]
2330 cls.add_method('IsChildOf',
2331 'bool',
2332 [param('ns3::TypeId', 'other')],
2333 is_const=True)
2334 ## type-id.h (module 'core'): bool ns3::TypeId::LookupAttributeByName(std::string name, ns3::TypeId::AttributeInformation * info) const [member function]
2335 cls.add_method('LookupAttributeByName',
2336 'bool',
Alexander Afanasyev6f933532012-02-29 13:30:37 -08002337 [param('std::string', 'name'), param('ns3::TypeId::AttributeInformation *', 'info', transfer_ownership=False)],
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002338 is_const=True)
2339 ## type-id.h (module 'core'): static ns3::TypeId ns3::TypeId::LookupByName(std::string name) [member function]
2340 cls.add_method('LookupByName',
2341 'ns3::TypeId',
2342 [param('std::string', 'name')],
2343 is_static=True)
2344 ## type-id.h (module 'core'): ns3::Ptr<ns3::TraceSourceAccessor const> ns3::TypeId::LookupTraceSourceByName(std::string name) const [member function]
2345 cls.add_method('LookupTraceSourceByName',
2346 'ns3::Ptr< ns3::TraceSourceAccessor const >',
2347 [param('std::string', 'name')],
2348 is_const=True)
2349 ## type-id.h (module 'core'): bool ns3::TypeId::MustHideFromDocumentation() const [member function]
2350 cls.add_method('MustHideFromDocumentation',
2351 'bool',
2352 [],
2353 is_const=True)
2354 ## type-id.h (module 'core'): bool ns3::TypeId::SetAttributeInitialValue(uint32_t i, ns3::Ptr<ns3::AttributeValue const> initialValue) [member function]
2355 cls.add_method('SetAttributeInitialValue',
2356 'bool',
2357 [param('uint32_t', 'i'), param('ns3::Ptr< ns3::AttributeValue const >', 'initialValue')])
2358 ## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::SetGroupName(std::string groupName) [member function]
2359 cls.add_method('SetGroupName',
2360 'ns3::TypeId',
2361 [param('std::string', 'groupName')])
2362 ## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::SetParent(ns3::TypeId tid) [member function]
2363 cls.add_method('SetParent',
2364 'ns3::TypeId',
2365 [param('ns3::TypeId', 'tid')])
2366 ## type-id.h (module 'core'): void ns3::TypeId::SetUid(uint16_t tid) [member function]
2367 cls.add_method('SetUid',
2368 'void',
2369 [param('uint16_t', 'tid')])
2370 return
2371
2372def register_Ns3TypeIdAttributeInformation_methods(root_module, cls):
2373 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::AttributeInformation() [constructor]
2374 cls.add_constructor([])
2375 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::AttributeInformation(ns3::TypeId::AttributeInformation const & arg0) [copy constructor]
2376 cls.add_constructor([param('ns3::TypeId::AttributeInformation const &', 'arg0')])
2377 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::accessor [variable]
2378 cls.add_instance_attribute('accessor', 'ns3::Ptr< ns3::AttributeAccessor const >', is_const=False)
2379 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::checker [variable]
2380 cls.add_instance_attribute('checker', 'ns3::Ptr< ns3::AttributeChecker const >', is_const=False)
2381 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::flags [variable]
2382 cls.add_instance_attribute('flags', 'uint32_t', is_const=False)
2383 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::help [variable]
2384 cls.add_instance_attribute('help', 'std::string', is_const=False)
2385 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::initialValue [variable]
2386 cls.add_instance_attribute('initialValue', 'ns3::Ptr< ns3::AttributeValue const >', is_const=False)
2387 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::name [variable]
2388 cls.add_instance_attribute('name', 'std::string', is_const=False)
2389 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::originalInitialValue [variable]
2390 cls.add_instance_attribute('originalInitialValue', 'ns3::Ptr< ns3::AttributeValue const >', is_const=False)
2391 return
2392
2393def register_Ns3TypeIdTraceSourceInformation_methods(root_module, cls):
2394 ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation::TraceSourceInformation() [constructor]
2395 cls.add_constructor([])
2396 ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation::TraceSourceInformation(ns3::TypeId::TraceSourceInformation const & arg0) [copy constructor]
2397 cls.add_constructor([param('ns3::TypeId::TraceSourceInformation const &', 'arg0')])
2398 ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation::accessor [variable]
2399 cls.add_instance_attribute('accessor', 'ns3::Ptr< ns3::TraceSourceAccessor const >', is_const=False)
2400 ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation::help [variable]
2401 cls.add_instance_attribute('help', 'std::string', is_const=False)
2402 ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation::name [variable]
2403 cls.add_instance_attribute('name', 'std::string', is_const=False)
2404 return
2405
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07002406def register_Ns3UniformVariable_methods(root_module, cls):
2407 ## random-variable.h (module 'core'): ns3::UniformVariable::UniformVariable(ns3::UniformVariable const & arg0) [copy constructor]
2408 cls.add_constructor([param('ns3::UniformVariable const &', 'arg0')])
2409 ## random-variable.h (module 'core'): ns3::UniformVariable::UniformVariable() [constructor]
2410 cls.add_constructor([])
2411 ## random-variable.h (module 'core'): ns3::UniformVariable::UniformVariable(double s, double l) [constructor]
2412 cls.add_constructor([param('double', 's'), param('double', 'l')])
2413 ## random-variable.h (module 'core'): uint32_t ns3::UniformVariable::GetInteger(uint32_t s, uint32_t l) [member function]
2414 cls.add_method('GetInteger',
2415 'uint32_t',
2416 [param('uint32_t', 's'), param('uint32_t', 'l')])
2417 ## random-variable.h (module 'core'): double ns3::UniformVariable::GetValue() const [member function]
2418 cls.add_method('GetValue',
2419 'double',
2420 [],
2421 is_const=True)
2422 ## random-variable.h (module 'core'): double ns3::UniformVariable::GetValue(double s, double l) [member function]
2423 cls.add_method('GetValue',
2424 'double',
2425 [param('double', 's'), param('double', 'l')])
2426 return
2427
2428def register_Ns3Vector2D_methods(root_module, cls):
2429 cls.add_output_stream_operator()
2430 cls.add_binary_numeric_operator('*', root_module['ns3::Vector2D'], root_module['ns3::Vector2D'], param('ns3::Vector2D const &', 'right'))
2431 cls.add_binary_numeric_operator('*', root_module['ns3::Vector2D'], root_module['ns3::Vector2D'], param('double', 'right'))
2432 cls.add_binary_numeric_operator('+', root_module['ns3::Vector2D'], root_module['ns3::Vector2D'], param('ns3::Vector2D const &', 'right'))
2433 cls.add_binary_numeric_operator('+', root_module['ns3::Vector2D'], root_module['ns3::Vector2D'], param('double', 'right'))
2434 cls.add_inplace_numeric_operator('+=', param('ns3::Vector2D const &', 'right'))
2435 cls.add_inplace_numeric_operator('+=', param('double', 'right'))
2436 cls.add_binary_numeric_operator('-', root_module['ns3::Vector2D'], root_module['ns3::Vector2D'], param('ns3::Vector2D const &', 'right'))
2437 cls.add_binary_numeric_operator('/', root_module['ns3::Vector2D'], root_module['ns3::Vector2D'], param('double', 'right'))
2438 ## vector.h (module 'core'): ns3::Vector2D::Vector2D(ns3::Vector2D const & arg0) [copy constructor]
2439 cls.add_constructor([param('ns3::Vector2D const &', 'arg0')])
2440 ## vector.h (module 'core'): ns3::Vector2D::Vector2D(double _x, double _y) [constructor]
2441 cls.add_constructor([param('double', '_x'), param('double', '_y')])
2442 ## vector.h (module 'core'): ns3::Vector2D::Vector2D() [constructor]
2443 cls.add_constructor([])
2444 ## vector.h (module 'core'): double ns3::Vector2D::GetLength() const [member function]
2445 cls.add_method('GetLength',
2446 'double',
2447 [],
2448 is_const=True)
2449 ## vector.h (module 'core'): ns3::Vector2D::x [variable]
2450 cls.add_instance_attribute('x', 'double', is_const=False)
2451 ## vector.h (module 'core'): ns3::Vector2D::y [variable]
2452 cls.add_instance_attribute('y', 'double', is_const=False)
2453 return
2454
2455def register_Ns3Vector3D_methods(root_module, cls):
2456 cls.add_output_stream_operator()
2457 cls.add_binary_numeric_operator('*', root_module['ns3::Vector3D'], root_module['ns3::Vector3D'], param('ns3::Vector3D const &', 'right'))
2458 cls.add_binary_numeric_operator('*', root_module['ns3::Vector3D'], root_module['ns3::Vector3D'], param('double', 'right'))
2459 cls.add_binary_numeric_operator('+', root_module['ns3::Vector3D'], root_module['ns3::Vector3D'], param('ns3::Vector3D const &', 'right'))
2460 cls.add_binary_numeric_operator('+', root_module['ns3::Vector3D'], root_module['ns3::Vector3D'], param('double', 'right'))
2461 cls.add_inplace_numeric_operator('+=', param('ns3::Vector3D const &', 'right'))
2462 cls.add_inplace_numeric_operator('+=', param('double', 'right'))
2463 cls.add_binary_numeric_operator('-', root_module['ns3::Vector3D'], root_module['ns3::Vector3D'], param('ns3::Vector3D const &', 'right'))
2464 cls.add_binary_numeric_operator('/', root_module['ns3::Vector3D'], root_module['ns3::Vector3D'], param('double', 'right'))
2465 ## vector.h (module 'core'): ns3::Vector3D::Vector3D(ns3::Vector3D const & arg0) [copy constructor]
2466 cls.add_constructor([param('ns3::Vector3D const &', 'arg0')])
2467 ## vector.h (module 'core'): ns3::Vector3D::Vector3D(double _x, double _y, double _z) [constructor]
2468 cls.add_constructor([param('double', '_x'), param('double', '_y'), param('double', '_z')])
2469 ## vector.h (module 'core'): ns3::Vector3D::Vector3D() [constructor]
2470 cls.add_constructor([])
2471 ## vector.h (module 'core'): double ns3::Vector3D::GetLength() const [member function]
2472 cls.add_method('GetLength',
2473 'double',
2474 [],
2475 is_const=True)
2476 ## vector.h (module 'core'): ns3::Vector3D::x [variable]
2477 cls.add_instance_attribute('x', 'double', is_const=False)
2478 ## vector.h (module 'core'): ns3::Vector3D::y [variable]
2479 cls.add_instance_attribute('y', 'double', is_const=False)
2480 ## vector.h (module 'core'): ns3::Vector3D::z [variable]
2481 cls.add_instance_attribute('z', 'double', is_const=False)
2482 return
2483
2484def register_Ns3WeibullVariable_methods(root_module, cls):
2485 ## random-variable.h (module 'core'): ns3::WeibullVariable::WeibullVariable(ns3::WeibullVariable const & arg0) [copy constructor]
2486 cls.add_constructor([param('ns3::WeibullVariable const &', 'arg0')])
2487 ## random-variable.h (module 'core'): ns3::WeibullVariable::WeibullVariable() [constructor]
2488 cls.add_constructor([])
2489 ## random-variable.h (module 'core'): ns3::WeibullVariable::WeibullVariable(double m) [constructor]
2490 cls.add_constructor([param('double', 'm')])
2491 ## random-variable.h (module 'core'): ns3::WeibullVariable::WeibullVariable(double m, double s) [constructor]
2492 cls.add_constructor([param('double', 'm'), param('double', 's')])
2493 ## random-variable.h (module 'core'): ns3::WeibullVariable::WeibullVariable(double m, double s, double b) [constructor]
2494 cls.add_constructor([param('double', 'm'), param('double', 's'), param('double', 'b')])
2495 return
2496
2497def register_Ns3ZetaVariable_methods(root_module, cls):
2498 ## random-variable.h (module 'core'): ns3::ZetaVariable::ZetaVariable(ns3::ZetaVariable const & arg0) [copy constructor]
2499 cls.add_constructor([param('ns3::ZetaVariable const &', 'arg0')])
2500 ## random-variable.h (module 'core'): ns3::ZetaVariable::ZetaVariable(double alpha) [constructor]
2501 cls.add_constructor([param('double', 'alpha')])
2502 ## random-variable.h (module 'core'): ns3::ZetaVariable::ZetaVariable() [constructor]
2503 cls.add_constructor([])
2504 return
2505
2506def register_Ns3ZipfVariable_methods(root_module, cls):
2507 ## random-variable.h (module 'core'): ns3::ZipfVariable::ZipfVariable(ns3::ZipfVariable const & arg0) [copy constructor]
2508 cls.add_constructor([param('ns3::ZipfVariable const &', 'arg0')])
2509 ## random-variable.h (module 'core'): ns3::ZipfVariable::ZipfVariable(long int N, double alpha) [constructor]
2510 cls.add_constructor([param('long int', 'N'), param('double', 'alpha')])
2511 ## random-variable.h (module 'core'): ns3::ZipfVariable::ZipfVariable() [constructor]
2512 cls.add_constructor([])
2513 return
2514
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002515def register_Ns3Empty_methods(root_module, cls):
2516 ## empty.h (module 'core'): ns3::empty::empty() [constructor]
2517 cls.add_constructor([])
2518 ## empty.h (module 'core'): ns3::empty::empty(ns3::empty const & arg0) [copy constructor]
2519 cls.add_constructor([param('ns3::empty const &', 'arg0')])
2520 return
2521
2522def register_Ns3Int64x64_t_methods(root_module, cls):
Alexander Afanasyev1ba09b82012-07-09 09:16:14 -07002523 cls.add_binary_comparison_operator('<=')
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002524 cls.add_binary_comparison_operator('!=')
2525 cls.add_inplace_numeric_operator('*=', param('ns3::int64x64_t const &', 'right'))
2526 cls.add_inplace_numeric_operator('+=', param('ns3::int64x64_t const &', 'right'))
2527 cls.add_inplace_numeric_operator('-=', param('ns3::int64x64_t const &', 'right'))
Alexander Afanasyeva28ec562012-10-25 14:07:32 -07002528 cls.add_output_stream_operator()
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002529 cls.add_binary_comparison_operator('==')
2530 cls.add_binary_comparison_operator('>=')
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07002531 cls.add_inplace_numeric_operator('/=', param('ns3::int64x64_t const &', 'right'))
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002532 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long unsigned int const', 'right'))
2533 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long unsigned int const', 'right'))
2534 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned int const', 'right'))
2535 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short unsigned int const', 'right'))
2536 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned char const', 'right'))
2537 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long int const', 'right'))
2538 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long int const', 'right'))
2539 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('int const', 'right'))
2540 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short int const', 'right'))
2541 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('signed char const', 'right'))
2542 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('double const', 'right'))
2543 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('ns3::int64x64_t const &', 'right'))
2544 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long unsigned int const', 'right'))
2545 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long unsigned int const', 'right'))
2546 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned int const', 'right'))
2547 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short unsigned int const', 'right'))
2548 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned char const', 'right'))
2549 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long int const', 'right'))
2550 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long int const', 'right'))
2551 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('int const', 'right'))
2552 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short int const', 'right'))
2553 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('signed char const', 'right'))
2554 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('double const', 'right'))
2555 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('ns3::int64x64_t const &', 'right'))
2556 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long unsigned int const', 'right'))
2557 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long unsigned int const', 'right'))
2558 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned int const', 'right'))
2559 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short unsigned int const', 'right'))
2560 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned char const', 'right'))
2561 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long int const', 'right'))
2562 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long int const', 'right'))
2563 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('int const', 'right'))
2564 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short int const', 'right'))
2565 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('signed char const', 'right'))
2566 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('double const', 'right'))
2567 cls.add_unary_numeric_operator('-')
2568 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('ns3::int64x64_t const &', 'right'))
2569 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long unsigned int const', 'right'))
2570 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long unsigned int const', 'right'))
2571 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned int const', 'right'))
2572 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short unsigned int const', 'right'))
2573 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned char const', 'right'))
2574 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long int const', 'right'))
2575 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long int const', 'right'))
2576 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('int const', 'right'))
2577 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short int const', 'right'))
2578 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('signed char const', 'right'))
2579 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('double const', 'right'))
2580 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('ns3::int64x64_t const &', 'right'))
2581 cls.add_binary_comparison_operator('<')
2582 cls.add_binary_comparison_operator('>')
2583 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t() [constructor]
2584 cls.add_constructor([])
2585 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(double v) [constructor]
2586 cls.add_constructor([param('double', 'v')])
2587 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(int v) [constructor]
2588 cls.add_constructor([param('int', 'v')])
2589 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(long int v) [constructor]
2590 cls.add_constructor([param('long int', 'v')])
2591 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(long long int v) [constructor]
2592 cls.add_constructor([param('long long int', 'v')])
2593 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(unsigned int v) [constructor]
2594 cls.add_constructor([param('unsigned int', 'v')])
2595 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(long unsigned int v) [constructor]
2596 cls.add_constructor([param('long unsigned int', 'v')])
2597 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(long long unsigned int v) [constructor]
2598 cls.add_constructor([param('long long unsigned int', 'v')])
2599 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(int64_t hi, uint64_t lo) [constructor]
2600 cls.add_constructor([param('int64_t', 'hi'), param('uint64_t', 'lo')])
2601 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(ns3::int64x64_t const & o) [copy constructor]
2602 cls.add_constructor([param('ns3::int64x64_t const &', 'o')])
2603 ## int64x64-double.h (module 'core'): double ns3::int64x64_t::GetDouble() const [member function]
2604 cls.add_method('GetDouble',
2605 'double',
2606 [],
2607 is_const=True)
2608 ## int64x64-double.h (module 'core'): int64_t ns3::int64x64_t::GetHigh() const [member function]
2609 cls.add_method('GetHigh',
2610 'int64_t',
2611 [],
2612 is_const=True)
2613 ## int64x64-double.h (module 'core'): uint64_t ns3::int64x64_t::GetLow() const [member function]
2614 cls.add_method('GetLow',
2615 'uint64_t',
2616 [],
2617 is_const=True)
2618 ## int64x64-double.h (module 'core'): static ns3::int64x64_t ns3::int64x64_t::Invert(uint64_t v) [member function]
2619 cls.add_method('Invert',
2620 'ns3::int64x64_t',
2621 [param('uint64_t', 'v')],
2622 is_static=True)
2623 ## int64x64-double.h (module 'core'): void ns3::int64x64_t::MulByInvert(ns3::int64x64_t const & o) [member function]
2624 cls.add_method('MulByInvert',
2625 'void',
2626 [param('ns3::int64x64_t const &', 'o')])
2627 return
2628
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002629def register_Ns3Chunk_methods(root_module, cls):
2630 ## chunk.h (module 'network'): ns3::Chunk::Chunk() [constructor]
2631 cls.add_constructor([])
2632 ## chunk.h (module 'network'): ns3::Chunk::Chunk(ns3::Chunk const & arg0) [copy constructor]
2633 cls.add_constructor([param('ns3::Chunk const &', 'arg0')])
2634 ## chunk.h (module 'network'): uint32_t ns3::Chunk::Deserialize(ns3::Buffer::Iterator start) [member function]
2635 cls.add_method('Deserialize',
2636 'uint32_t',
2637 [param('ns3::Buffer::Iterator', 'start')],
2638 is_pure_virtual=True, is_virtual=True)
2639 ## chunk.h (module 'network'): static ns3::TypeId ns3::Chunk::GetTypeId() [member function]
2640 cls.add_method('GetTypeId',
2641 'ns3::TypeId',
2642 [],
2643 is_static=True)
2644 ## chunk.h (module 'network'): void ns3::Chunk::Print(std::ostream & os) const [member function]
2645 cls.add_method('Print',
2646 'void',
2647 [param('std::ostream &', 'os')],
2648 is_pure_virtual=True, is_const=True, is_virtual=True)
2649 return
2650
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07002651def register_Ns3ConstantVariable_methods(root_module, cls):
2652 ## random-variable.h (module 'core'): ns3::ConstantVariable::ConstantVariable(ns3::ConstantVariable const & arg0) [copy constructor]
2653 cls.add_constructor([param('ns3::ConstantVariable const &', 'arg0')])
2654 ## random-variable.h (module 'core'): ns3::ConstantVariable::ConstantVariable() [constructor]
2655 cls.add_constructor([])
2656 ## random-variable.h (module 'core'): ns3::ConstantVariable::ConstantVariable(double c) [constructor]
2657 cls.add_constructor([param('double', 'c')])
2658 ## random-variable.h (module 'core'): void ns3::ConstantVariable::SetConstant(double c) [member function]
2659 cls.add_method('SetConstant',
2660 'void',
2661 [param('double', 'c')])
2662 return
2663
2664def register_Ns3DeterministicVariable_methods(root_module, cls):
2665 ## random-variable.h (module 'core'): ns3::DeterministicVariable::DeterministicVariable(ns3::DeterministicVariable const & arg0) [copy constructor]
2666 cls.add_constructor([param('ns3::DeterministicVariable const &', 'arg0')])
2667 ## random-variable.h (module 'core'): ns3::DeterministicVariable::DeterministicVariable(double * d, uint32_t c) [constructor]
2668 cls.add_constructor([param('double *', 'd'), param('uint32_t', 'c')])
2669 return
2670
2671def register_Ns3EmpiricalVariable_methods(root_module, cls):
2672 ## random-variable.h (module 'core'): ns3::EmpiricalVariable::EmpiricalVariable(ns3::EmpiricalVariable const & arg0) [copy constructor]
2673 cls.add_constructor([param('ns3::EmpiricalVariable const &', 'arg0')])
2674 ## random-variable.h (module 'core'): ns3::EmpiricalVariable::EmpiricalVariable() [constructor]
2675 cls.add_constructor([])
2676 ## random-variable.h (module 'core'): void ns3::EmpiricalVariable::CDF(double v, double c) [member function]
2677 cls.add_method('CDF',
2678 'void',
2679 [param('double', 'v'), param('double', 'c')])
2680 return
2681
2682def register_Ns3ErlangVariable_methods(root_module, cls):
2683 ## random-variable.h (module 'core'): ns3::ErlangVariable::ErlangVariable(ns3::ErlangVariable const & arg0) [copy constructor]
2684 cls.add_constructor([param('ns3::ErlangVariable const &', 'arg0')])
2685 ## random-variable.h (module 'core'): ns3::ErlangVariable::ErlangVariable() [constructor]
2686 cls.add_constructor([])
2687 ## random-variable.h (module 'core'): ns3::ErlangVariable::ErlangVariable(unsigned int k, double lambda) [constructor]
2688 cls.add_constructor([param('unsigned int', 'k'), param('double', 'lambda')])
2689 ## random-variable.h (module 'core'): double ns3::ErlangVariable::GetValue() const [member function]
2690 cls.add_method('GetValue',
2691 'double',
2692 [],
2693 is_const=True)
2694 ## random-variable.h (module 'core'): double ns3::ErlangVariable::GetValue(unsigned int k, double lambda) const [member function]
2695 cls.add_method('GetValue',
2696 'double',
2697 [param('unsigned int', 'k'), param('double', 'lambda')],
2698 is_const=True)
2699 return
2700
2701def register_Ns3ExponentialVariable_methods(root_module, cls):
2702 ## random-variable.h (module 'core'): ns3::ExponentialVariable::ExponentialVariable(ns3::ExponentialVariable const & arg0) [copy constructor]
2703 cls.add_constructor([param('ns3::ExponentialVariable const &', 'arg0')])
2704 ## random-variable.h (module 'core'): ns3::ExponentialVariable::ExponentialVariable() [constructor]
2705 cls.add_constructor([])
2706 ## random-variable.h (module 'core'): ns3::ExponentialVariable::ExponentialVariable(double m) [constructor]
2707 cls.add_constructor([param('double', 'm')])
2708 ## random-variable.h (module 'core'): ns3::ExponentialVariable::ExponentialVariable(double m, double b) [constructor]
2709 cls.add_constructor([param('double', 'm'), param('double', 'b')])
2710 return
2711
2712def register_Ns3GammaVariable_methods(root_module, cls):
2713 ## random-variable.h (module 'core'): ns3::GammaVariable::GammaVariable(ns3::GammaVariable const & arg0) [copy constructor]
2714 cls.add_constructor([param('ns3::GammaVariable const &', 'arg0')])
2715 ## random-variable.h (module 'core'): ns3::GammaVariable::GammaVariable() [constructor]
2716 cls.add_constructor([])
2717 ## random-variable.h (module 'core'): ns3::GammaVariable::GammaVariable(double alpha, double beta) [constructor]
2718 cls.add_constructor([param('double', 'alpha'), param('double', 'beta')])
2719 ## random-variable.h (module 'core'): double ns3::GammaVariable::GetValue() const [member function]
2720 cls.add_method('GetValue',
2721 'double',
2722 [],
2723 is_const=True)
2724 ## random-variable.h (module 'core'): double ns3::GammaVariable::GetValue(double alpha, double beta) const [member function]
2725 cls.add_method('GetValue',
2726 'double',
2727 [param('double', 'alpha'), param('double', 'beta')],
2728 is_const=True)
2729 return
2730
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002731def register_Ns3Header_methods(root_module, cls):
2732 cls.add_output_stream_operator()
2733 ## header.h (module 'network'): ns3::Header::Header() [constructor]
2734 cls.add_constructor([])
2735 ## header.h (module 'network'): ns3::Header::Header(ns3::Header const & arg0) [copy constructor]
2736 cls.add_constructor([param('ns3::Header const &', 'arg0')])
2737 ## header.h (module 'network'): uint32_t ns3::Header::Deserialize(ns3::Buffer::Iterator start) [member function]
2738 cls.add_method('Deserialize',
2739 'uint32_t',
2740 [param('ns3::Buffer::Iterator', 'start')],
2741 is_pure_virtual=True, is_virtual=True)
2742 ## header.h (module 'network'): uint32_t ns3::Header::GetSerializedSize() const [member function]
2743 cls.add_method('GetSerializedSize',
2744 'uint32_t',
2745 [],
2746 is_pure_virtual=True, is_const=True, is_virtual=True)
2747 ## header.h (module 'network'): static ns3::TypeId ns3::Header::GetTypeId() [member function]
2748 cls.add_method('GetTypeId',
2749 'ns3::TypeId',
2750 [],
2751 is_static=True)
2752 ## header.h (module 'network'): void ns3::Header::Print(std::ostream & os) const [member function]
2753 cls.add_method('Print',
2754 'void',
2755 [param('std::ostream &', 'os')],
2756 is_pure_virtual=True, is_const=True, is_virtual=True)
2757 ## header.h (module 'network'): void ns3::Header::Serialize(ns3::Buffer::Iterator start) const [member function]
2758 cls.add_method('Serialize',
2759 'void',
2760 [param('ns3::Buffer::Iterator', 'start')],
2761 is_pure_virtual=True, is_const=True, is_virtual=True)
2762 return
2763
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07002764def register_Ns3IntEmpiricalVariable_methods(root_module, cls):
2765 ## random-variable.h (module 'core'): ns3::IntEmpiricalVariable::IntEmpiricalVariable(ns3::IntEmpiricalVariable const & arg0) [copy constructor]
2766 cls.add_constructor([param('ns3::IntEmpiricalVariable const &', 'arg0')])
2767 ## random-variable.h (module 'core'): ns3::IntEmpiricalVariable::IntEmpiricalVariable() [constructor]
2768 cls.add_constructor([])
2769 return
2770
2771def register_Ns3LogNormalVariable_methods(root_module, cls):
2772 ## random-variable.h (module 'core'): ns3::LogNormalVariable::LogNormalVariable(ns3::LogNormalVariable const & arg0) [copy constructor]
2773 cls.add_constructor([param('ns3::LogNormalVariable const &', 'arg0')])
2774 ## random-variable.h (module 'core'): ns3::LogNormalVariable::LogNormalVariable(double mu, double sigma) [constructor]
2775 cls.add_constructor([param('double', 'mu'), param('double', 'sigma')])
2776 return
2777
2778def register_Ns3NormalVariable_methods(root_module, cls):
2779 ## random-variable.h (module 'core'): ns3::NormalVariable::NormalVariable(ns3::NormalVariable const & arg0) [copy constructor]
2780 cls.add_constructor([param('ns3::NormalVariable const &', 'arg0')])
2781 ## random-variable.h (module 'core'): ns3::NormalVariable::NormalVariable() [constructor]
2782 cls.add_constructor([])
2783 ## random-variable.h (module 'core'): ns3::NormalVariable::NormalVariable(double m, double v) [constructor]
2784 cls.add_constructor([param('double', 'm'), param('double', 'v')])
2785 ## random-variable.h (module 'core'): ns3::NormalVariable::NormalVariable(double m, double v, double b) [constructor]
2786 cls.add_constructor([param('double', 'm'), param('double', 'v'), param('double', 'b')])
2787 return
2788
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002789def register_Ns3Object_methods(root_module, cls):
2790 ## object.h (module 'core'): ns3::Object::Object() [constructor]
2791 cls.add_constructor([])
2792 ## object.h (module 'core'): void ns3::Object::AggregateObject(ns3::Ptr<ns3::Object> other) [member function]
2793 cls.add_method('AggregateObject',
2794 'void',
2795 [param('ns3::Ptr< ns3::Object >', 'other')])
2796 ## object.h (module 'core'): void ns3::Object::Dispose() [member function]
2797 cls.add_method('Dispose',
2798 'void',
2799 [])
2800 ## object.h (module 'core'): ns3::Object::AggregateIterator ns3::Object::GetAggregateIterator() const [member function]
2801 cls.add_method('GetAggregateIterator',
2802 'ns3::Object::AggregateIterator',
2803 [],
2804 is_const=True)
2805 ## object.h (module 'core'): ns3::TypeId ns3::Object::GetInstanceTypeId() const [member function]
2806 cls.add_method('GetInstanceTypeId',
2807 'ns3::TypeId',
2808 [],
2809 is_const=True, is_virtual=True)
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07002810 ## object.h (module 'core'): ns3::Ptr<ns3::MobilityModel> ns3::Object::GetObject() const [member function]
2811 cls.add_method('GetObject',
2812 'ns3::Ptr< ns3::MobilityModel >',
2813 [],
2814 is_const=True, template_parameters=['ns3::MobilityModel'])
2815 ## object.h (module 'core'): ns3::Ptr<ns3::ndn::ContentStore> ns3::Object::GetObject() const [member function]
2816 cls.add_method('GetObject',
2817 'ns3::Ptr< ns3::ndn::ContentStore >',
2818 [],
2819 is_const=True, template_parameters=['ns3::ndn::ContentStore'])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07002820 ## object.h (module 'core'): ns3::Ptr<ns3::ndn::Fib> ns3::Object::GetObject() const [member function]
Alexander Afanasyev1c0248b2012-07-24 15:59:50 -07002821 cls.add_method('GetObject',
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07002822 'ns3::Ptr< ns3::ndn::Fib >',
Alexander Afanasyev1c0248b2012-07-24 15:59:50 -07002823 [],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07002824 is_const=True, template_parameters=['ns3::ndn::Fib'])
2825 ## object.h (module 'core'): ns3::Ptr<ns3::ndn::Pit> ns3::Object::GetObject() const [member function]
Alexander Afanasyev5feb38b2012-08-09 11:01:43 -07002826 cls.add_method('GetObject',
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07002827 'ns3::Ptr< ns3::ndn::Pit >',
Alexander Afanasyev5feb38b2012-08-09 11:01:43 -07002828 [],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07002829 is_const=True, template_parameters=['ns3::ndn::Pit'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002830 ## object.h (module 'core'): static ns3::TypeId ns3::Object::GetTypeId() [member function]
2831 cls.add_method('GetTypeId',
2832 'ns3::TypeId',
2833 [],
2834 is_static=True)
2835 ## object.h (module 'core'): void ns3::Object::Start() [member function]
2836 cls.add_method('Start',
2837 'void',
2838 [])
2839 ## object.h (module 'core'): ns3::Object::Object(ns3::Object const & o) [copy constructor]
2840 cls.add_constructor([param('ns3::Object const &', 'o')],
2841 visibility='protected')
2842 ## object.h (module 'core'): void ns3::Object::DoDispose() [member function]
2843 cls.add_method('DoDispose',
2844 'void',
2845 [],
2846 visibility='protected', is_virtual=True)
2847 ## object.h (module 'core'): void ns3::Object::DoStart() [member function]
2848 cls.add_method('DoStart',
2849 'void',
2850 [],
2851 visibility='protected', is_virtual=True)
2852 ## object.h (module 'core'): void ns3::Object::NotifyNewAggregate() [member function]
2853 cls.add_method('NotifyNewAggregate',
2854 'void',
2855 [],
2856 visibility='protected', is_virtual=True)
2857 return
2858
2859def register_Ns3ObjectAggregateIterator_methods(root_module, cls):
2860 ## object.h (module 'core'): ns3::Object::AggregateIterator::AggregateIterator(ns3::Object::AggregateIterator const & arg0) [copy constructor]
2861 cls.add_constructor([param('ns3::Object::AggregateIterator const &', 'arg0')])
2862 ## object.h (module 'core'): ns3::Object::AggregateIterator::AggregateIterator() [constructor]
2863 cls.add_constructor([])
2864 ## object.h (module 'core'): bool ns3::Object::AggregateIterator::HasNext() const [member function]
2865 cls.add_method('HasNext',
2866 'bool',
2867 [],
2868 is_const=True)
2869 ## object.h (module 'core'): ns3::Ptr<ns3::Object const> ns3::Object::AggregateIterator::Next() [member function]
2870 cls.add_method('Next',
2871 'ns3::Ptr< ns3::Object const >',
2872 [])
2873 return
2874
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07002875def register_Ns3ParetoVariable_methods(root_module, cls):
2876 ## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable(ns3::ParetoVariable const & arg0) [copy constructor]
2877 cls.add_constructor([param('ns3::ParetoVariable const &', 'arg0')])
2878 ## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable() [constructor]
2879 cls.add_constructor([])
2880 ## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable(double m) [constructor]
2881 cls.add_constructor([param('double', 'm')])
2882 ## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable(double m, double s) [constructor]
2883 cls.add_constructor([param('double', 'm'), param('double', 's')])
2884 ## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable(double m, double s, double b) [constructor]
2885 cls.add_constructor([param('double', 'm'), param('double', 's'), param('double', 'b')])
2886 ## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable(std::pair<double,double> params) [constructor]
2887 cls.add_constructor([param('std::pair< double, double >', 'params')])
2888 ## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable(std::pair<double,double> params, double b) [constructor]
2889 cls.add_constructor([param('std::pair< double, double >', 'params'), param('double', 'b')])
2890 return
2891
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002892def register_Ns3SimpleRefCount__Ns3AttributeAccessor_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeAccessor__gt___methods(root_module, cls):
2893 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> >::SimpleRefCount() [constructor]
2894 cls.add_constructor([])
2895 ## 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]
2896 cls.add_constructor([param('ns3::SimpleRefCount< ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter< ns3::AttributeAccessor > > const &', 'o')])
2897 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> >::Cleanup() [member function]
2898 cls.add_method('Cleanup',
2899 'void',
2900 [],
2901 is_static=True)
2902 return
2903
2904def register_Ns3SimpleRefCount__Ns3AttributeChecker_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeChecker__gt___methods(root_module, cls):
2905 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter<ns3::AttributeChecker> >::SimpleRefCount() [constructor]
2906 cls.add_constructor([])
2907 ## 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]
2908 cls.add_constructor([param('ns3::SimpleRefCount< ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter< ns3::AttributeChecker > > const &', 'o')])
2909 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter<ns3::AttributeChecker> >::Cleanup() [member function]
2910 cls.add_method('Cleanup',
2911 'void',
2912 [],
2913 is_static=True)
2914 return
2915
2916def register_Ns3SimpleRefCount__Ns3AttributeValue_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeValue__gt___methods(root_module, cls):
2917 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter<ns3::AttributeValue> >::SimpleRefCount() [constructor]
2918 cls.add_constructor([])
2919 ## 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]
2920 cls.add_constructor([param('ns3::SimpleRefCount< ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter< ns3::AttributeValue > > const &', 'o')])
2921 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter<ns3::AttributeValue> >::Cleanup() [member function]
2922 cls.add_method('Cleanup',
2923 'void',
2924 [],
2925 is_static=True)
2926 return
2927
2928def register_Ns3SimpleRefCount__Ns3CallbackImplBase_Ns3Empty_Ns3DefaultDeleter__lt__ns3CallbackImplBase__gt___methods(root_module, cls):
2929 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> >::SimpleRefCount() [constructor]
2930 cls.add_constructor([])
2931 ## 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]
2932 cls.add_constructor([param('ns3::SimpleRefCount< ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter< ns3::CallbackImplBase > > const &', 'o')])
2933 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> >::Cleanup() [member function]
2934 cls.add_method('Cleanup',
2935 'void',
2936 [],
2937 is_static=True)
2938 return
2939
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002940def register_Ns3SimpleRefCount__Ns3EventImpl_Ns3Empty_Ns3DefaultDeleter__lt__ns3EventImpl__gt___methods(root_module, cls):
2941 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::EventImpl, ns3::empty, ns3::DefaultDeleter<ns3::EventImpl> >::SimpleRefCount() [constructor]
2942 cls.add_constructor([])
2943 ## 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]
2944 cls.add_constructor([param('ns3::SimpleRefCount< ns3::EventImpl, ns3::empty, ns3::DefaultDeleter< ns3::EventImpl > > const &', 'o')])
2945 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::EventImpl, ns3::empty, ns3::DefaultDeleter<ns3::EventImpl> >::Cleanup() [member function]
2946 cls.add_method('Cleanup',
2947 'void',
2948 [],
2949 is_static=True)
2950 return
2951
2952def register_Ns3SimpleRefCount__Ns3NixVector_Ns3Empty_Ns3DefaultDeleter__lt__ns3NixVector__gt___methods(root_module, cls):
2953 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::NixVector, ns3::empty, ns3::DefaultDeleter<ns3::NixVector> >::SimpleRefCount() [constructor]
2954 cls.add_constructor([])
2955 ## 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]
2956 cls.add_constructor([param('ns3::SimpleRefCount< ns3::NixVector, ns3::empty, ns3::DefaultDeleter< ns3::NixVector > > const &', 'o')])
2957 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::NixVector, ns3::empty, ns3::DefaultDeleter<ns3::NixVector> >::Cleanup() [member function]
2958 cls.add_method('Cleanup',
2959 'void',
2960 [],
2961 is_static=True)
2962 return
2963
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002964def register_Ns3SimpleRefCount__Ns3Packet_Ns3Empty_Ns3DefaultDeleter__lt__ns3Packet__gt___methods(root_module, cls):
2965 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Packet, ns3::empty, ns3::DefaultDeleter<ns3::Packet> >::SimpleRefCount() [constructor]
2966 cls.add_constructor([])
2967 ## 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]
2968 cls.add_constructor([param('ns3::SimpleRefCount< ns3::Packet, ns3::empty, ns3::DefaultDeleter< ns3::Packet > > const &', 'o')])
2969 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::Packet, ns3::empty, ns3::DefaultDeleter<ns3::Packet> >::Cleanup() [member function]
2970 cls.add_method('Cleanup',
2971 'void',
2972 [],
2973 is_static=True)
2974 return
2975
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07002976def register_Ns3SimpleRefCount__Ns3TopologyReader_Ns3Empty_Ns3DefaultDeleter__lt__ns3TopologyReader__gt___methods(root_module, cls):
2977 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::TopologyReader, ns3::empty, ns3::DefaultDeleter<ns3::TopologyReader> >::SimpleRefCount() [constructor]
2978 cls.add_constructor([])
2979 ## 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]
2980 cls.add_constructor([param('ns3::SimpleRefCount< ns3::TopologyReader, ns3::empty, ns3::DefaultDeleter< ns3::TopologyReader > > const &', 'o')])
2981 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::TopologyReader, ns3::empty, ns3::DefaultDeleter<ns3::TopologyReader> >::Cleanup() [member function]
2982 cls.add_method('Cleanup',
2983 'void',
2984 [],
2985 is_static=True)
2986 return
2987
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002988def register_Ns3SimpleRefCount__Ns3TraceSourceAccessor_Ns3Empty_Ns3DefaultDeleter__lt__ns3TraceSourceAccessor__gt___methods(root_module, cls):
2989 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter<ns3::TraceSourceAccessor> >::SimpleRefCount() [constructor]
2990 cls.add_constructor([])
2991 ## 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]
2992 cls.add_constructor([param('ns3::SimpleRefCount< ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter< ns3::TraceSourceAccessor > > const &', 'o')])
2993 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter<ns3::TraceSourceAccessor> >::Cleanup() [member function]
2994 cls.add_method('Cleanup',
2995 'void',
2996 [],
2997 is_static=True)
2998 return
2999
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07003000def register_Ns3SimpleRefCount__Ns3NdnContentObjectHeader_Ns3Header_Ns3DefaultDeleter__lt__ns3NdnContentObjectHeader__gt___methods(root_module, cls):
3001 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::ndn::ContentObjectHeader, ns3::Header, ns3::DefaultDeleter<ns3::ndn::ContentObjectHeader> >::SimpleRefCount() [constructor]
3002 cls.add_constructor([])
3003 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::ndn::ContentObjectHeader, ns3::Header, ns3::DefaultDeleter<ns3::ndn::ContentObjectHeader> >::SimpleRefCount(ns3::SimpleRefCount<ns3::ndn::ContentObjectHeader, ns3::Header, ns3::DefaultDeleter<ns3::ndn::ContentObjectHeader> > const & o) [copy constructor]
3004 cls.add_constructor([param('ns3::SimpleRefCount< ns3::ndn::ContentObjectHeader, ns3::Header, ns3::DefaultDeleter< ns3::ndn::ContentObjectHeader > > const &', 'o')])
3005 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::ndn::ContentObjectHeader, ns3::Header, ns3::DefaultDeleter<ns3::ndn::ContentObjectHeader> >::Cleanup() [member function]
3006 cls.add_method('Cleanup',
3007 'void',
3008 [],
3009 is_static=True)
3010 return
3011
3012def register_Ns3SimpleRefCount__Ns3NdnFaceContainer_Ns3Empty_Ns3DefaultDeleter__lt__ns3NdnFaceContainer__gt___methods(root_module, cls):
3013 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::ndn::FaceContainer, ns3::empty, ns3::DefaultDeleter<ns3::ndn::FaceContainer> >::SimpleRefCount() [constructor]
3014 cls.add_constructor([])
3015 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::ndn::FaceContainer, ns3::empty, ns3::DefaultDeleter<ns3::ndn::FaceContainer> >::SimpleRefCount(ns3::SimpleRefCount<ns3::ndn::FaceContainer, ns3::empty, ns3::DefaultDeleter<ns3::ndn::FaceContainer> > const & o) [copy constructor]
3016 cls.add_constructor([param('ns3::SimpleRefCount< ns3::ndn::FaceContainer, ns3::empty, ns3::DefaultDeleter< ns3::ndn::FaceContainer > > const &', 'o')])
3017 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::ndn::FaceContainer, ns3::empty, ns3::DefaultDeleter<ns3::ndn::FaceContainer> >::Cleanup() [member function]
3018 cls.add_method('Cleanup',
3019 'void',
3020 [],
3021 is_static=True)
3022 return
3023
3024def register_Ns3SimpleRefCount__Ns3NdnInterestHeader_Ns3Header_Ns3DefaultDeleter__lt__ns3NdnInterestHeader__gt___methods(root_module, cls):
3025 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::ndn::InterestHeader, ns3::Header, ns3::DefaultDeleter<ns3::ndn::InterestHeader> >::SimpleRefCount() [constructor]
3026 cls.add_constructor([])
3027 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::ndn::InterestHeader, ns3::Header, ns3::DefaultDeleter<ns3::ndn::InterestHeader> >::SimpleRefCount(ns3::SimpleRefCount<ns3::ndn::InterestHeader, ns3::Header, ns3::DefaultDeleter<ns3::ndn::InterestHeader> > const & o) [copy constructor]
3028 cls.add_constructor([param('ns3::SimpleRefCount< ns3::ndn::InterestHeader, ns3::Header, ns3::DefaultDeleter< ns3::ndn::InterestHeader > > const &', 'o')])
3029 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::ndn::InterestHeader, ns3::Header, ns3::DefaultDeleter<ns3::ndn::InterestHeader> >::Cleanup() [member function]
3030 cls.add_method('Cleanup',
3031 'void',
3032 [],
3033 is_static=True)
3034 return
3035
3036def register_Ns3SimpleRefCount__Ns3NdnNameComponents_Ns3Empty_Ns3DefaultDeleter__lt__ns3NdnNameComponents__gt___methods(root_module, cls):
3037 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::ndn::NameComponents, ns3::empty, ns3::DefaultDeleter<ns3::ndn::NameComponents> >::SimpleRefCount() [constructor]
3038 cls.add_constructor([])
3039 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::ndn::NameComponents, ns3::empty, ns3::DefaultDeleter<ns3::ndn::NameComponents> >::SimpleRefCount(ns3::SimpleRefCount<ns3::ndn::NameComponents, ns3::empty, ns3::DefaultDeleter<ns3::ndn::NameComponents> > const & o) [copy constructor]
3040 cls.add_constructor([param('ns3::SimpleRefCount< ns3::ndn::NameComponents, ns3::empty, ns3::DefaultDeleter< ns3::ndn::NameComponents > > const &', 'o')])
3041 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::ndn::NameComponents, ns3::empty, ns3::DefaultDeleter<ns3::ndn::NameComponents> >::Cleanup() [member function]
3042 cls.add_method('Cleanup',
3043 'void',
3044 [],
3045 is_static=True)
3046 return
3047
3048def register_Ns3SimpleRefCount__Ns3NdnCsEntry_Ns3Empty_Ns3DefaultDeleter__lt__ns3NdnCsEntry__gt___methods(root_module, cls):
3049 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::ndn::cs::Entry, ns3::empty, ns3::DefaultDeleter<ns3::ndn::cs::Entry> >::SimpleRefCount() [constructor]
3050 cls.add_constructor([])
3051 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::ndn::cs::Entry, ns3::empty, ns3::DefaultDeleter<ns3::ndn::cs::Entry> >::SimpleRefCount(ns3::SimpleRefCount<ns3::ndn::cs::Entry, ns3::empty, ns3::DefaultDeleter<ns3::ndn::cs::Entry> > const & o) [copy constructor]
3052 cls.add_constructor([param('ns3::SimpleRefCount< ns3::ndn::cs::Entry, ns3::empty, ns3::DefaultDeleter< ns3::ndn::cs::Entry > > const &', 'o')])
3053 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::ndn::cs::Entry, ns3::empty, ns3::DefaultDeleter<ns3::ndn::cs::Entry> >::Cleanup() [member function]
3054 cls.add_method('Cleanup',
3055 'void',
3056 [],
3057 is_static=True)
3058 return
3059
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07003060def register_Ns3SimpleRefCount__Ns3NdnPitEntry_Ns3Empty_Ns3DefaultDeleter__lt__ns3NdnPitEntry__gt___methods(root_module, cls):
3061 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::ndn::pit::Entry, ns3::empty, ns3::DefaultDeleter<ns3::ndn::pit::Entry> >::SimpleRefCount() [constructor]
3062 cls.add_constructor([])
3063 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::ndn::pit::Entry, ns3::empty, ns3::DefaultDeleter<ns3::ndn::pit::Entry> >::SimpleRefCount(ns3::SimpleRefCount<ns3::ndn::pit::Entry, ns3::empty, ns3::DefaultDeleter<ns3::ndn::pit::Entry> > const & o) [copy constructor]
3064 cls.add_constructor([param('ns3::SimpleRefCount< ns3::ndn::pit::Entry, ns3::empty, ns3::DefaultDeleter< ns3::ndn::pit::Entry > > const &', 'o')])
3065 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::ndn::pit::Entry, ns3::empty, ns3::DefaultDeleter<ns3::ndn::pit::Entry> >::Cleanup() [member function]
3066 cls.add_method('Cleanup',
3067 'void',
3068 [],
3069 is_static=True)
3070 return
3071
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08003072def register_Ns3Time_methods(root_module, cls):
Alexander Afanasyev1ba09b82012-07-09 09:16:14 -07003073 cls.add_binary_comparison_operator('<=')
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08003074 cls.add_binary_comparison_operator('!=')
3075 cls.add_inplace_numeric_operator('+=', param('ns3::Time const &', 'right'))
3076 cls.add_inplace_numeric_operator('-=', param('ns3::Time const &', 'right'))
Alexander Afanasyeva28ec562012-10-25 14:07:32 -07003077 cls.add_output_stream_operator()
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08003078 cls.add_binary_comparison_operator('==')
3079 cls.add_binary_comparison_operator('>=')
3080 cls.add_binary_numeric_operator('+', root_module['ns3::Time'], root_module['ns3::Time'], param('ns3::Time const &', 'right'))
3081 cls.add_binary_numeric_operator('-', root_module['ns3::Time'], root_module['ns3::Time'], param('ns3::Time const &', 'right'))
3082 cls.add_binary_comparison_operator('<')
3083 cls.add_binary_comparison_operator('>')
3084 ## nstime.h (module 'core'): ns3::Time::Time() [constructor]
3085 cls.add_constructor([])
3086 ## nstime.h (module 'core'): ns3::Time::Time(ns3::Time const & o) [copy constructor]
3087 cls.add_constructor([param('ns3::Time const &', 'o')])
3088 ## nstime.h (module 'core'): ns3::Time::Time(double v) [constructor]
3089 cls.add_constructor([param('double', 'v')])
3090 ## nstime.h (module 'core'): ns3::Time::Time(int v) [constructor]
3091 cls.add_constructor([param('int', 'v')])
3092 ## nstime.h (module 'core'): ns3::Time::Time(long int v) [constructor]
3093 cls.add_constructor([param('long int', 'v')])
3094 ## nstime.h (module 'core'): ns3::Time::Time(long long int v) [constructor]
3095 cls.add_constructor([param('long long int', 'v')])
3096 ## nstime.h (module 'core'): ns3::Time::Time(unsigned int v) [constructor]
3097 cls.add_constructor([param('unsigned int', 'v')])
3098 ## nstime.h (module 'core'): ns3::Time::Time(long unsigned int v) [constructor]
3099 cls.add_constructor([param('long unsigned int', 'v')])
3100 ## nstime.h (module 'core'): ns3::Time::Time(long long unsigned int v) [constructor]
3101 cls.add_constructor([param('long long unsigned int', 'v')])
3102 ## nstime.h (module 'core'): ns3::Time::Time(std::string const & s) [constructor]
3103 cls.add_constructor([param('std::string const &', 's')])
3104 ## nstime.h (module 'core'): ns3::Time::Time(ns3::int64x64_t const & value) [constructor]
3105 cls.add_constructor([param('ns3::int64x64_t const &', 'value')])
3106 ## nstime.h (module 'core'): int ns3::Time::Compare(ns3::Time const & o) const [member function]
3107 cls.add_method('Compare',
3108 'int',
3109 [param('ns3::Time const &', 'o')],
3110 is_const=True)
3111 ## nstime.h (module 'core'): static ns3::Time ns3::Time::From(ns3::int64x64_t const & from, ns3::Time::Unit timeUnit) [member function]
3112 cls.add_method('From',
3113 'ns3::Time',
3114 [param('ns3::int64x64_t const &', 'from'), param('ns3::Time::Unit', 'timeUnit')],
3115 is_static=True)
3116 ## nstime.h (module 'core'): static ns3::Time ns3::Time::From(ns3::int64x64_t const & value) [member function]
3117 cls.add_method('From',
3118 'ns3::Time',
3119 [param('ns3::int64x64_t const &', 'value')],
3120 is_static=True)
3121 ## nstime.h (module 'core'): static ns3::Time ns3::Time::FromDouble(double value, ns3::Time::Unit timeUnit) [member function]
3122 cls.add_method('FromDouble',
3123 'ns3::Time',
3124 [param('double', 'value'), param('ns3::Time::Unit', 'timeUnit')],
3125 is_static=True)
3126 ## nstime.h (module 'core'): static ns3::Time ns3::Time::FromInteger(uint64_t value, ns3::Time::Unit timeUnit) [member function]
3127 cls.add_method('FromInteger',
3128 'ns3::Time',
3129 [param('uint64_t', 'value'), param('ns3::Time::Unit', 'timeUnit')],
3130 is_static=True)
3131 ## nstime.h (module 'core'): double ns3::Time::GetDouble() const [member function]
3132 cls.add_method('GetDouble',
3133 'double',
3134 [],
3135 is_const=True)
3136 ## nstime.h (module 'core'): int64_t ns3::Time::GetFemtoSeconds() const [member function]
3137 cls.add_method('GetFemtoSeconds',
3138 'int64_t',
3139 [],
3140 is_const=True)
3141 ## nstime.h (module 'core'): int64_t ns3::Time::GetInteger() const [member function]
3142 cls.add_method('GetInteger',
3143 'int64_t',
3144 [],
3145 is_const=True)
3146 ## nstime.h (module 'core'): int64_t ns3::Time::GetMicroSeconds() const [member function]
3147 cls.add_method('GetMicroSeconds',
3148 'int64_t',
3149 [],
3150 is_const=True)
3151 ## nstime.h (module 'core'): int64_t ns3::Time::GetMilliSeconds() const [member function]
3152 cls.add_method('GetMilliSeconds',
3153 'int64_t',
3154 [],
3155 is_const=True)
3156 ## nstime.h (module 'core'): int64_t ns3::Time::GetNanoSeconds() const [member function]
3157 cls.add_method('GetNanoSeconds',
3158 'int64_t',
3159 [],
3160 is_const=True)
3161 ## nstime.h (module 'core'): int64_t ns3::Time::GetPicoSeconds() const [member function]
3162 cls.add_method('GetPicoSeconds',
3163 'int64_t',
3164 [],
3165 is_const=True)
3166 ## nstime.h (module 'core'): static ns3::Time::Unit ns3::Time::GetResolution() [member function]
3167 cls.add_method('GetResolution',
3168 'ns3::Time::Unit',
3169 [],
3170 is_static=True)
3171 ## nstime.h (module 'core'): double ns3::Time::GetSeconds() const [member function]
3172 cls.add_method('GetSeconds',
3173 'double',
3174 [],
3175 is_const=True)
3176 ## nstime.h (module 'core'): int64_t ns3::Time::GetTimeStep() const [member function]
3177 cls.add_method('GetTimeStep',
3178 'int64_t',
3179 [],
3180 is_const=True)
3181 ## nstime.h (module 'core'): bool ns3::Time::IsNegative() const [member function]
3182 cls.add_method('IsNegative',
3183 'bool',
3184 [],
3185 is_const=True)
3186 ## nstime.h (module 'core'): bool ns3::Time::IsPositive() const [member function]
3187 cls.add_method('IsPositive',
3188 'bool',
3189 [],
3190 is_const=True)
3191 ## nstime.h (module 'core'): bool ns3::Time::IsStrictlyNegative() const [member function]
3192 cls.add_method('IsStrictlyNegative',
3193 'bool',
3194 [],
3195 is_const=True)
3196 ## nstime.h (module 'core'): bool ns3::Time::IsStrictlyPositive() const [member function]
3197 cls.add_method('IsStrictlyPositive',
3198 'bool',
3199 [],
3200 is_const=True)
3201 ## nstime.h (module 'core'): bool ns3::Time::IsZero() const [member function]
3202 cls.add_method('IsZero',
3203 'bool',
3204 [],
3205 is_const=True)
3206 ## nstime.h (module 'core'): static void ns3::Time::SetResolution(ns3::Time::Unit resolution) [member function]
3207 cls.add_method('SetResolution',
3208 'void',
3209 [param('ns3::Time::Unit', 'resolution')],
3210 is_static=True)
3211 ## nstime.h (module 'core'): ns3::int64x64_t ns3::Time::To(ns3::Time::Unit timeUnit) const [member function]
3212 cls.add_method('To',
3213 'ns3::int64x64_t',
3214 [param('ns3::Time::Unit', 'timeUnit')],
3215 is_const=True)
3216 ## nstime.h (module 'core'): double ns3::Time::ToDouble(ns3::Time::Unit timeUnit) const [member function]
3217 cls.add_method('ToDouble',
3218 'double',
3219 [param('ns3::Time::Unit', 'timeUnit')],
3220 is_const=True)
3221 ## nstime.h (module 'core'): int64_t ns3::Time::ToInteger(ns3::Time::Unit timeUnit) const [member function]
3222 cls.add_method('ToInteger',
3223 'int64_t',
3224 [param('ns3::Time::Unit', 'timeUnit')],
3225 is_const=True)
3226 return
3227
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07003228def register_Ns3TopologyReader_methods(root_module, cls):
3229 ## topology-reader.h (module 'topology-read'): ns3::TopologyReader::TopologyReader() [constructor]
3230 cls.add_constructor([])
3231 ## topology-reader.h (module 'topology-read'): void ns3::TopologyReader::AddLink(ns3::TopologyReader::Link link) [member function]
3232 cls.add_method('AddLink',
3233 'void',
3234 [param('ns3::TopologyReader::Link', 'link')])
3235 ## topology-reader.h (module 'topology-read'): std::string ns3::TopologyReader::GetFileName() const [member function]
3236 cls.add_method('GetFileName',
3237 'std::string',
3238 [],
3239 is_const=True)
3240 ## topology-reader.h (module 'topology-read'): std::_List_const_iterator<ns3::TopologyReader::Link> ns3::TopologyReader::LinksBegin() const [member function]
3241 cls.add_method('LinksBegin',
3242 'std::_List_const_iterator< ns3::TopologyReader::Link >',
3243 [],
3244 is_const=True)
3245 ## topology-reader.h (module 'topology-read'): bool ns3::TopologyReader::LinksEmpty() const [member function]
3246 cls.add_method('LinksEmpty',
3247 'bool',
3248 [],
3249 is_const=True)
3250 ## topology-reader.h (module 'topology-read'): std::_List_const_iterator<ns3::TopologyReader::Link> ns3::TopologyReader::LinksEnd() const [member function]
3251 cls.add_method('LinksEnd',
3252 'std::_List_const_iterator< ns3::TopologyReader::Link >',
3253 [],
3254 is_const=True)
3255 ## topology-reader.h (module 'topology-read'): int ns3::TopologyReader::LinksSize() const [member function]
3256 cls.add_method('LinksSize',
3257 'int',
3258 [],
3259 is_const=True)
3260 ## topology-reader.h (module 'topology-read'): ns3::NodeContainer ns3::TopologyReader::Read() [member function]
3261 cls.add_method('Read',
3262 'ns3::NodeContainer',
3263 [],
3264 is_pure_virtual=True, is_virtual=True)
3265 ## topology-reader.h (module 'topology-read'): void ns3::TopologyReader::SetFileName(std::string const & fileName) [member function]
3266 cls.add_method('SetFileName',
3267 'void',
3268 [param('std::string const &', 'fileName')])
3269 return
3270
3271def register_Ns3TopologyReaderLink_methods(root_module, cls):
3272 ## topology-reader.h (module 'topology-read'): ns3::TopologyReader::Link::Link(ns3::TopologyReader::Link const & arg0) [copy constructor]
3273 cls.add_constructor([param('ns3::TopologyReader::Link const &', 'arg0')])
3274 ## topology-reader.h (module 'topology-read'): ns3::TopologyReader::Link::Link() [constructor]
3275 cls.add_constructor([])
3276 ## 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]
3277 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')])
3278 ## 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]
3279 cls.add_method('AttributesBegin',
3280 '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 > > > >',
3281 [])
3282 ## 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]
3283 cls.add_method('AttributesEnd',
3284 '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 > > > >',
3285 [])
3286 ## topology-reader.h (module 'topology-read'): std::string ns3::TopologyReader::Link::GetAttribute(std::string const & name) const [member function]
3287 cls.add_method('GetAttribute',
3288 'std::string',
3289 [param('std::string const &', 'name')],
3290 is_const=True)
3291 ## topology-reader.h (module 'topology-read'): bool ns3::TopologyReader::Link::GetAttributeFailSafe(std::string const & name, std::string & value) const [member function]
3292 cls.add_method('GetAttributeFailSafe',
3293 'bool',
3294 [param('std::string const &', 'name'), param('std::string &', 'value')],
3295 is_const=True)
3296 ## topology-reader.h (module 'topology-read'): ns3::Ptr<ns3::NetDevice> ns3::TopologyReader::Link::GetFromNetDevice() const [member function]
3297 cls.add_method('GetFromNetDevice',
3298 'ns3::Ptr< ns3::NetDevice >',
3299 [],
3300 is_const=True)
3301 ## topology-reader.h (module 'topology-read'): ns3::Ptr<ns3::Node> ns3::TopologyReader::Link::GetFromNode() const [member function]
3302 cls.add_method('GetFromNode',
3303 'ns3::Ptr< ns3::Node >',
3304 [],
3305 is_const=True)
3306 ## topology-reader.h (module 'topology-read'): std::string ns3::TopologyReader::Link::GetFromNodeName() const [member function]
3307 cls.add_method('GetFromNodeName',
3308 'std::string',
3309 [],
3310 is_const=True)
3311 ## topology-reader.h (module 'topology-read'): ns3::Ptr<ns3::NetDevice> ns3::TopologyReader::Link::GetToNetDevice() const [member function]
3312 cls.add_method('GetToNetDevice',
3313 'ns3::Ptr< ns3::NetDevice >',
3314 [],
3315 is_const=True)
3316 ## topology-reader.h (module 'topology-read'): ns3::Ptr<ns3::Node> ns3::TopologyReader::Link::GetToNode() const [member function]
3317 cls.add_method('GetToNode',
3318 'ns3::Ptr< ns3::Node >',
3319 [],
3320 is_const=True)
3321 ## topology-reader.h (module 'topology-read'): std::string ns3::TopologyReader::Link::GetToNodeName() const [member function]
3322 cls.add_method('GetToNodeName',
3323 'std::string',
3324 [],
3325 is_const=True)
3326 ## topology-reader.h (module 'topology-read'): void ns3::TopologyReader::Link::SetAttribute(std::string const & name, std::string const & value) [member function]
3327 cls.add_method('SetAttribute',
3328 'void',
3329 [param('std::string const &', 'name'), param('std::string const &', 'value')])
3330 ## topology-reader.h (module 'topology-read'): void ns3::TopologyReader::Link::SetNetDevices(ns3::Ptr<ns3::NetDevice> from, ns3::Ptr<ns3::NetDevice> to) [member function]
3331 cls.add_method('SetNetDevices',
3332 'void',
3333 [param('ns3::Ptr< ns3::NetDevice >', 'from'), param('ns3::Ptr< ns3::NetDevice >', 'to')])
3334 return
3335
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08003336def register_Ns3TraceSourceAccessor_methods(root_module, cls):
3337 ## trace-source-accessor.h (module 'core'): ns3::TraceSourceAccessor::TraceSourceAccessor(ns3::TraceSourceAccessor const & arg0) [copy constructor]
3338 cls.add_constructor([param('ns3::TraceSourceAccessor const &', 'arg0')])
3339 ## trace-source-accessor.h (module 'core'): ns3::TraceSourceAccessor::TraceSourceAccessor() [constructor]
3340 cls.add_constructor([])
3341 ## trace-source-accessor.h (module 'core'): bool ns3::TraceSourceAccessor::Connect(ns3::ObjectBase * obj, std::string context, ns3::CallbackBase const & cb) const [member function]
3342 cls.add_method('Connect',
3343 'bool',
3344 [param('ns3::ObjectBase *', 'obj', transfer_ownership=False), param('std::string', 'context'), param('ns3::CallbackBase const &', 'cb')],
3345 is_pure_virtual=True, is_const=True, is_virtual=True)
3346 ## trace-source-accessor.h (module 'core'): bool ns3::TraceSourceAccessor::ConnectWithoutContext(ns3::ObjectBase * obj, ns3::CallbackBase const & cb) const [member function]
3347 cls.add_method('ConnectWithoutContext',
3348 'bool',
3349 [param('ns3::ObjectBase *', 'obj', transfer_ownership=False), param('ns3::CallbackBase const &', 'cb')],
3350 is_pure_virtual=True, is_const=True, is_virtual=True)
3351 ## trace-source-accessor.h (module 'core'): bool ns3::TraceSourceAccessor::Disconnect(ns3::ObjectBase * obj, std::string context, ns3::CallbackBase const & cb) const [member function]
3352 cls.add_method('Disconnect',
3353 'bool',
3354 [param('ns3::ObjectBase *', 'obj', transfer_ownership=False), param('std::string', 'context'), param('ns3::CallbackBase const &', 'cb')],
3355 is_pure_virtual=True, is_const=True, is_virtual=True)
3356 ## trace-source-accessor.h (module 'core'): bool ns3::TraceSourceAccessor::DisconnectWithoutContext(ns3::ObjectBase * obj, ns3::CallbackBase const & cb) const [member function]
3357 cls.add_method('DisconnectWithoutContext',
3358 'bool',
3359 [param('ns3::ObjectBase *', 'obj', transfer_ownership=False), param('ns3::CallbackBase const &', 'cb')],
3360 is_pure_virtual=True, is_const=True, is_virtual=True)
3361 return
3362
3363def register_Ns3Trailer_methods(root_module, cls):
3364 cls.add_output_stream_operator()
3365 ## trailer.h (module 'network'): ns3::Trailer::Trailer() [constructor]
3366 cls.add_constructor([])
3367 ## trailer.h (module 'network'): ns3::Trailer::Trailer(ns3::Trailer const & arg0) [copy constructor]
3368 cls.add_constructor([param('ns3::Trailer const &', 'arg0')])
3369 ## trailer.h (module 'network'): uint32_t ns3::Trailer::Deserialize(ns3::Buffer::Iterator end) [member function]
3370 cls.add_method('Deserialize',
3371 'uint32_t',
3372 [param('ns3::Buffer::Iterator', 'end')],
3373 is_pure_virtual=True, is_virtual=True)
3374 ## trailer.h (module 'network'): uint32_t ns3::Trailer::GetSerializedSize() const [member function]
3375 cls.add_method('GetSerializedSize',
3376 'uint32_t',
3377 [],
3378 is_pure_virtual=True, is_const=True, is_virtual=True)
3379 ## trailer.h (module 'network'): static ns3::TypeId ns3::Trailer::GetTypeId() [member function]
3380 cls.add_method('GetTypeId',
3381 'ns3::TypeId',
3382 [],
3383 is_static=True)
3384 ## trailer.h (module 'network'): void ns3::Trailer::Print(std::ostream & os) const [member function]
3385 cls.add_method('Print',
3386 'void',
3387 [param('std::ostream &', 'os')],
3388 is_pure_virtual=True, is_const=True, is_virtual=True)
3389 ## trailer.h (module 'network'): void ns3::Trailer::Serialize(ns3::Buffer::Iterator start) const [member function]
3390 cls.add_method('Serialize',
3391 'void',
3392 [param('ns3::Buffer::Iterator', 'start')],
3393 is_pure_virtual=True, is_const=True, is_virtual=True)
3394 return
3395
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07003396def register_Ns3AnnotatedTopologyReader_methods(root_module, cls):
3397 ## annotated-topology-reader.h (module 'ndnSIM'): ns3::AnnotatedTopologyReader::AnnotatedTopologyReader(std::string const & path="", double scale=1.0e+0) [constructor]
3398 cls.add_constructor([param('std::string const &', 'path', default_value='""'), param('double', 'scale', default_value='1.0e+0')])
3399 ## annotated-topology-reader.h (module 'ndnSIM'): ns3::NodeContainer ns3::AnnotatedTopologyReader::Read() [member function]
3400 cls.add_method('Read',
3401 'ns3::NodeContainer',
3402 [],
3403 is_virtual=True)
3404 ## annotated-topology-reader.h (module 'ndnSIM'): ns3::NodeContainer ns3::AnnotatedTopologyReader::GetNodes() const [member function]
3405 cls.add_method('GetNodes',
3406 'ns3::NodeContainer',
3407 [],
3408 is_const=True)
3409 ## annotated-topology-reader.h (module 'ndnSIM'): std::list<ns3::TopologyReader::Link, std::allocator<ns3::TopologyReader::Link> > const & ns3::AnnotatedTopologyReader::GetLinks() const [member function]
3410 cls.add_method('GetLinks',
3411 'std::list< ns3::TopologyReader::Link > const &',
3412 [],
3413 is_const=True)
3414 ## annotated-topology-reader.h (module 'ndnSIM'): void ns3::AnnotatedTopologyReader::AssignIpv4Addresses(ns3::Ipv4Address base) [member function]
3415 cls.add_method('AssignIpv4Addresses',
3416 'void',
3417 [param('ns3::Ipv4Address', 'base')])
3418 ## annotated-topology-reader.h (module 'ndnSIM'): void ns3::AnnotatedTopologyReader::SetBoundingBox(double ulx, double uly, double lrx, double lry) [member function]
3419 cls.add_method('SetBoundingBox',
3420 'void',
3421 [param('double', 'ulx'), param('double', 'uly'), param('double', 'lrx'), param('double', 'lry')])
3422 ## annotated-topology-reader.h (module 'ndnSIM'): void ns3::AnnotatedTopologyReader::SetMobilityModel(std::string const & model) [member function]
3423 cls.add_method('SetMobilityModel',
3424 'void',
3425 [param('std::string const &', 'model')])
3426 ## annotated-topology-reader.h (module 'ndnSIM'): void ns3::AnnotatedTopologyReader::ApplyOspfMetric() [member function]
3427 cls.add_method('ApplyOspfMetric',
3428 'void',
3429 [])
3430 ## annotated-topology-reader.h (module 'ndnSIM'): void ns3::AnnotatedTopologyReader::SavePositions(std::string const & file) const [member function]
3431 cls.add_method('SavePositions',
3432 'void',
3433 [param('std::string const &', 'file')],
3434 is_const=True)
3435 ## annotated-topology-reader.h (module 'ndnSIM'): ns3::Ptr<ns3::Node> ns3::AnnotatedTopologyReader::CreateNode(std::string const name, uint32_t systemId) [member function]
3436 cls.add_method('CreateNode',
3437 'ns3::Ptr< ns3::Node >',
3438 [param('std::string const', 'name'), param('uint32_t', 'systemId')],
3439 visibility='protected')
3440 ## annotated-topology-reader.h (module 'ndnSIM'): ns3::Ptr<ns3::Node> ns3::AnnotatedTopologyReader::CreateNode(std::string const name, double posX, double posY, uint32_t systemId) [member function]
3441 cls.add_method('CreateNode',
3442 'ns3::Ptr< ns3::Node >',
3443 [param('std::string const', 'name'), param('double', 'posX'), param('double', 'posY'), param('uint32_t', 'systemId')],
3444 visibility='protected')
3445 ## annotated-topology-reader.h (module 'ndnSIM'): void ns3::AnnotatedTopologyReader::ApplySettings() [member function]
3446 cls.add_method('ApplySettings',
3447 'void',
3448 [],
3449 visibility='protected')
3450 return
3451
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08003452def register_Ns3Application_methods(root_module, cls):
3453 ## application.h (module 'network'): ns3::Application::Application(ns3::Application const & arg0) [copy constructor]
3454 cls.add_constructor([param('ns3::Application const &', 'arg0')])
3455 ## application.h (module 'network'): ns3::Application::Application() [constructor]
3456 cls.add_constructor([])
3457 ## application.h (module 'network'): ns3::Ptr<ns3::Node> ns3::Application::GetNode() const [member function]
3458 cls.add_method('GetNode',
3459 'ns3::Ptr< ns3::Node >',
3460 [],
3461 is_const=True)
3462 ## application.h (module 'network'): static ns3::TypeId ns3::Application::GetTypeId() [member function]
3463 cls.add_method('GetTypeId',
3464 'ns3::TypeId',
3465 [],
3466 is_static=True)
3467 ## application.h (module 'network'): void ns3::Application::SetNode(ns3::Ptr<ns3::Node> node) [member function]
3468 cls.add_method('SetNode',
3469 'void',
3470 [param('ns3::Ptr< ns3::Node >', 'node')])
3471 ## application.h (module 'network'): void ns3::Application::SetStartTime(ns3::Time start) [member function]
3472 cls.add_method('SetStartTime',
3473 'void',
3474 [param('ns3::Time', 'start')])
3475 ## application.h (module 'network'): void ns3::Application::SetStopTime(ns3::Time stop) [member function]
3476 cls.add_method('SetStopTime',
3477 'void',
3478 [param('ns3::Time', 'stop')])
3479 ## application.h (module 'network'): void ns3::Application::DoDispose() [member function]
3480 cls.add_method('DoDispose',
3481 'void',
3482 [],
3483 visibility='protected', is_virtual=True)
3484 ## application.h (module 'network'): void ns3::Application::DoStart() [member function]
3485 cls.add_method('DoStart',
3486 'void',
3487 [],
3488 visibility='protected', is_virtual=True)
3489 ## application.h (module 'network'): void ns3::Application::StartApplication() [member function]
3490 cls.add_method('StartApplication',
3491 'void',
3492 [],
Alexander Afanasyev06d3a612012-04-17 22:25:40 -07003493 visibility='private', is_virtual=True)
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08003494 ## application.h (module 'network'): void ns3::Application::StopApplication() [member function]
3495 cls.add_method('StopApplication',
3496 'void',
3497 [],
Alexander Afanasyev06d3a612012-04-17 22:25:40 -07003498 visibility='private', is_virtual=True)
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08003499 return
3500
3501def register_Ns3AttributeAccessor_methods(root_module, cls):
3502 ## attribute.h (module 'core'): ns3::AttributeAccessor::AttributeAccessor(ns3::AttributeAccessor const & arg0) [copy constructor]
3503 cls.add_constructor([param('ns3::AttributeAccessor const &', 'arg0')])
3504 ## attribute.h (module 'core'): ns3::AttributeAccessor::AttributeAccessor() [constructor]
3505 cls.add_constructor([])
3506 ## attribute.h (module 'core'): bool ns3::AttributeAccessor::Get(ns3::ObjectBase const * object, ns3::AttributeValue & attribute) const [member function]
3507 cls.add_method('Get',
3508 'bool',
3509 [param('ns3::ObjectBase const *', 'object'), param('ns3::AttributeValue &', 'attribute')],
3510 is_pure_virtual=True, is_const=True, is_virtual=True)
3511 ## attribute.h (module 'core'): bool ns3::AttributeAccessor::HasGetter() const [member function]
3512 cls.add_method('HasGetter',
3513 'bool',
3514 [],
3515 is_pure_virtual=True, is_const=True, is_virtual=True)
3516 ## attribute.h (module 'core'): bool ns3::AttributeAccessor::HasSetter() const [member function]
3517 cls.add_method('HasSetter',
3518 'bool',
3519 [],
3520 is_pure_virtual=True, is_const=True, is_virtual=True)
3521 ## attribute.h (module 'core'): bool ns3::AttributeAccessor::Set(ns3::ObjectBase * object, ns3::AttributeValue const & value) const [member function]
3522 cls.add_method('Set',
3523 'bool',
3524 [param('ns3::ObjectBase *', 'object', transfer_ownership=False), param('ns3::AttributeValue const &', 'value')],
3525 is_pure_virtual=True, is_const=True, is_virtual=True)
3526 return
3527
3528def register_Ns3AttributeChecker_methods(root_module, cls):
3529 ## attribute.h (module 'core'): ns3::AttributeChecker::AttributeChecker(ns3::AttributeChecker const & arg0) [copy constructor]
3530 cls.add_constructor([param('ns3::AttributeChecker const &', 'arg0')])
3531 ## attribute.h (module 'core'): ns3::AttributeChecker::AttributeChecker() [constructor]
3532 cls.add_constructor([])
3533 ## attribute.h (module 'core'): bool ns3::AttributeChecker::Check(ns3::AttributeValue const & value) const [member function]
3534 cls.add_method('Check',
3535 'bool',
3536 [param('ns3::AttributeValue const &', 'value')],
3537 is_pure_virtual=True, is_const=True, is_virtual=True)
3538 ## attribute.h (module 'core'): bool ns3::AttributeChecker::Copy(ns3::AttributeValue const & source, ns3::AttributeValue & destination) const [member function]
3539 cls.add_method('Copy',
3540 'bool',
3541 [param('ns3::AttributeValue const &', 'source'), param('ns3::AttributeValue &', 'destination')],
3542 is_pure_virtual=True, is_const=True, is_virtual=True)
3543 ## attribute.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::AttributeChecker::Create() const [member function]
3544 cls.add_method('Create',
3545 'ns3::Ptr< ns3::AttributeValue >',
3546 [],
3547 is_pure_virtual=True, is_const=True, is_virtual=True)
3548 ## attribute.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::AttributeChecker::CreateValidValue(ns3::AttributeValue const & value) const [member function]
3549 cls.add_method('CreateValidValue',
3550 'ns3::Ptr< ns3::AttributeValue >',
3551 [param('ns3::AttributeValue const &', 'value')],
3552 is_const=True)
3553 ## attribute.h (module 'core'): std::string ns3::AttributeChecker::GetUnderlyingTypeInformation() const [member function]
3554 cls.add_method('GetUnderlyingTypeInformation',
3555 'std::string',
3556 [],
3557 is_pure_virtual=True, is_const=True, is_virtual=True)
3558 ## attribute.h (module 'core'): std::string ns3::AttributeChecker::GetValueTypeName() const [member function]
3559 cls.add_method('GetValueTypeName',
3560 'std::string',
3561 [],
3562 is_pure_virtual=True, is_const=True, is_virtual=True)
3563 ## attribute.h (module 'core'): bool ns3::AttributeChecker::HasUnderlyingTypeInformation() const [member function]
3564 cls.add_method('HasUnderlyingTypeInformation',
3565 'bool',
3566 [],
3567 is_pure_virtual=True, is_const=True, is_virtual=True)
3568 return
3569
3570def register_Ns3AttributeValue_methods(root_module, cls):
3571 ## attribute.h (module 'core'): ns3::AttributeValue::AttributeValue(ns3::AttributeValue const & arg0) [copy constructor]
3572 cls.add_constructor([param('ns3::AttributeValue const &', 'arg0')])
3573 ## attribute.h (module 'core'): ns3::AttributeValue::AttributeValue() [constructor]
3574 cls.add_constructor([])
3575 ## attribute.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::AttributeValue::Copy() const [member function]
3576 cls.add_method('Copy',
3577 'ns3::Ptr< ns3::AttributeValue >',
3578 [],
3579 is_pure_virtual=True, is_const=True, is_virtual=True)
3580 ## attribute.h (module 'core'): bool ns3::AttributeValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
3581 cls.add_method('DeserializeFromString',
3582 'bool',
3583 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3584 is_pure_virtual=True, is_virtual=True)
3585 ## attribute.h (module 'core'): std::string ns3::AttributeValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
3586 cls.add_method('SerializeToString',
3587 'std::string',
3588 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3589 is_pure_virtual=True, is_const=True, is_virtual=True)
3590 return
3591
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07003592def register_Ns3BooleanChecker_methods(root_module, cls):
3593 ## boolean.h (module 'core'): ns3::BooleanChecker::BooleanChecker() [constructor]
3594 cls.add_constructor([])
3595 ## boolean.h (module 'core'): ns3::BooleanChecker::BooleanChecker(ns3::BooleanChecker const & arg0) [copy constructor]
3596 cls.add_constructor([param('ns3::BooleanChecker const &', 'arg0')])
3597 return
3598
3599def register_Ns3BooleanValue_methods(root_module, cls):
3600 cls.add_output_stream_operator()
3601 ## boolean.h (module 'core'): ns3::BooleanValue::BooleanValue(ns3::BooleanValue const & arg0) [copy constructor]
3602 cls.add_constructor([param('ns3::BooleanValue const &', 'arg0')])
3603 ## boolean.h (module 'core'): ns3::BooleanValue::BooleanValue() [constructor]
3604 cls.add_constructor([])
3605 ## boolean.h (module 'core'): ns3::BooleanValue::BooleanValue(bool value) [constructor]
3606 cls.add_constructor([param('bool', 'value')])
3607 ## boolean.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::BooleanValue::Copy() const [member function]
3608 cls.add_method('Copy',
3609 'ns3::Ptr< ns3::AttributeValue >',
3610 [],
3611 is_const=True, is_virtual=True)
3612 ## boolean.h (module 'core'): bool ns3::BooleanValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
3613 cls.add_method('DeserializeFromString',
3614 'bool',
3615 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3616 is_virtual=True)
3617 ## boolean.h (module 'core'): bool ns3::BooleanValue::Get() const [member function]
3618 cls.add_method('Get',
3619 'bool',
3620 [],
3621 is_const=True)
3622 ## boolean.h (module 'core'): std::string ns3::BooleanValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
3623 cls.add_method('SerializeToString',
3624 'std::string',
3625 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3626 is_const=True, is_virtual=True)
3627 ## boolean.h (module 'core'): void ns3::BooleanValue::Set(bool value) [member function]
3628 cls.add_method('Set',
3629 'void',
3630 [param('bool', 'value')])
3631 return
3632
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08003633def register_Ns3CallbackChecker_methods(root_module, cls):
3634 ## callback.h (module 'core'): ns3::CallbackChecker::CallbackChecker() [constructor]
3635 cls.add_constructor([])
3636 ## callback.h (module 'core'): ns3::CallbackChecker::CallbackChecker(ns3::CallbackChecker const & arg0) [copy constructor]
3637 cls.add_constructor([param('ns3::CallbackChecker const &', 'arg0')])
3638 return
3639
3640def register_Ns3CallbackImplBase_methods(root_module, cls):
3641 ## callback.h (module 'core'): ns3::CallbackImplBase::CallbackImplBase() [constructor]
3642 cls.add_constructor([])
3643 ## callback.h (module 'core'): ns3::CallbackImplBase::CallbackImplBase(ns3::CallbackImplBase const & arg0) [copy constructor]
3644 cls.add_constructor([param('ns3::CallbackImplBase const &', 'arg0')])
3645 ## callback.h (module 'core'): bool ns3::CallbackImplBase::IsEqual(ns3::Ptr<ns3::CallbackImplBase const> other) const [member function]
3646 cls.add_method('IsEqual',
3647 'bool',
3648 [param('ns3::Ptr< ns3::CallbackImplBase const >', 'other')],
3649 is_pure_virtual=True, is_const=True, is_virtual=True)
3650 return
3651
3652def register_Ns3CallbackValue_methods(root_module, cls):
3653 ## callback.h (module 'core'): ns3::CallbackValue::CallbackValue(ns3::CallbackValue const & arg0) [copy constructor]
3654 cls.add_constructor([param('ns3::CallbackValue const &', 'arg0')])
3655 ## callback.h (module 'core'): ns3::CallbackValue::CallbackValue() [constructor]
3656 cls.add_constructor([])
3657 ## callback.h (module 'core'): ns3::CallbackValue::CallbackValue(ns3::CallbackBase const & base) [constructor]
3658 cls.add_constructor([param('ns3::CallbackBase const &', 'base')])
3659 ## callback.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::CallbackValue::Copy() const [member function]
3660 cls.add_method('Copy',
3661 'ns3::Ptr< ns3::AttributeValue >',
3662 [],
3663 is_const=True, is_virtual=True)
3664 ## callback.h (module 'core'): bool ns3::CallbackValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
3665 cls.add_method('DeserializeFromString',
3666 'bool',
3667 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3668 is_virtual=True)
3669 ## callback.h (module 'core'): std::string ns3::CallbackValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
3670 cls.add_method('SerializeToString',
3671 'std::string',
3672 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3673 is_const=True, is_virtual=True)
3674 ## callback.h (module 'core'): void ns3::CallbackValue::Set(ns3::CallbackBase base) [member function]
3675 cls.add_method('Set',
3676 'void',
3677 [param('ns3::CallbackBase', 'base')])
3678 return
3679
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07003680def register_Ns3DoubleValue_methods(root_module, cls):
3681 ## double.h (module 'core'): ns3::DoubleValue::DoubleValue() [constructor]
3682 cls.add_constructor([])
3683 ## double.h (module 'core'): ns3::DoubleValue::DoubleValue(ns3::DoubleValue const & arg0) [copy constructor]
3684 cls.add_constructor([param('ns3::DoubleValue const &', 'arg0')])
3685 ## double.h (module 'core'): ns3::DoubleValue::DoubleValue(double const & value) [constructor]
3686 cls.add_constructor([param('double const &', 'value')])
3687 ## double.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::DoubleValue::Copy() const [member function]
3688 cls.add_method('Copy',
3689 'ns3::Ptr< ns3::AttributeValue >',
3690 [],
3691 is_const=True, is_virtual=True)
3692 ## double.h (module 'core'): bool ns3::DoubleValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
3693 cls.add_method('DeserializeFromString',
3694 'bool',
3695 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3696 is_virtual=True)
3697 ## double.h (module 'core'): double ns3::DoubleValue::Get() const [member function]
3698 cls.add_method('Get',
3699 'double',
3700 [],
3701 is_const=True)
3702 ## double.h (module 'core'): std::string ns3::DoubleValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
3703 cls.add_method('SerializeToString',
3704 'std::string',
3705 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3706 is_const=True, is_virtual=True)
3707 ## double.h (module 'core'): void ns3::DoubleValue::Set(double const & value) [member function]
3708 cls.add_method('Set',
3709 'void',
3710 [param('double const &', 'value')])
3711 return
3712
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08003713def register_Ns3EmptyAttributeValue_methods(root_module, cls):
3714 ## attribute.h (module 'core'): ns3::EmptyAttributeValue::EmptyAttributeValue(ns3::EmptyAttributeValue const & arg0) [copy constructor]
3715 cls.add_constructor([param('ns3::EmptyAttributeValue const &', 'arg0')])
3716 ## attribute.h (module 'core'): ns3::EmptyAttributeValue::EmptyAttributeValue() [constructor]
3717 cls.add_constructor([])
3718 ## attribute.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::EmptyAttributeValue::Copy() const [member function]
3719 cls.add_method('Copy',
3720 'ns3::Ptr< ns3::AttributeValue >',
3721 [],
3722 is_const=True, visibility='private', is_virtual=True)
3723 ## attribute.h (module 'core'): bool ns3::EmptyAttributeValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
3724 cls.add_method('DeserializeFromString',
3725 'bool',
3726 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3727 visibility='private', is_virtual=True)
3728 ## attribute.h (module 'core'): std::string ns3::EmptyAttributeValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
3729 cls.add_method('SerializeToString',
3730 'std::string',
3731 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3732 is_const=True, visibility='private', is_virtual=True)
3733 return
3734
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07003735def register_Ns3EnumChecker_methods(root_module, cls):
3736 ## enum.h (module 'core'): ns3::EnumChecker::EnumChecker(ns3::EnumChecker const & arg0) [copy constructor]
3737 cls.add_constructor([param('ns3::EnumChecker const &', 'arg0')])
3738 ## enum.h (module 'core'): ns3::EnumChecker::EnumChecker() [constructor]
3739 cls.add_constructor([])
3740 ## enum.h (module 'core'): void ns3::EnumChecker::Add(int v, std::string name) [member function]
3741 cls.add_method('Add',
3742 'void',
3743 [param('int', 'v'), param('std::string', 'name')])
3744 ## enum.h (module 'core'): void ns3::EnumChecker::AddDefault(int v, std::string name) [member function]
3745 cls.add_method('AddDefault',
3746 'void',
3747 [param('int', 'v'), param('std::string', 'name')])
3748 ## enum.h (module 'core'): bool ns3::EnumChecker::Check(ns3::AttributeValue const & value) const [member function]
3749 cls.add_method('Check',
3750 'bool',
3751 [param('ns3::AttributeValue const &', 'value')],
3752 is_const=True, is_virtual=True)
3753 ## enum.h (module 'core'): bool ns3::EnumChecker::Copy(ns3::AttributeValue const & src, ns3::AttributeValue & dst) const [member function]
3754 cls.add_method('Copy',
3755 'bool',
3756 [param('ns3::AttributeValue const &', 'src'), param('ns3::AttributeValue &', 'dst')],
3757 is_const=True, is_virtual=True)
3758 ## enum.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::EnumChecker::Create() const [member function]
3759 cls.add_method('Create',
3760 'ns3::Ptr< ns3::AttributeValue >',
3761 [],
3762 is_const=True, is_virtual=True)
3763 ## enum.h (module 'core'): std::string ns3::EnumChecker::GetUnderlyingTypeInformation() const [member function]
3764 cls.add_method('GetUnderlyingTypeInformation',
3765 'std::string',
3766 [],
3767 is_const=True, is_virtual=True)
3768 ## enum.h (module 'core'): std::string ns3::EnumChecker::GetValueTypeName() const [member function]
3769 cls.add_method('GetValueTypeName',
3770 'std::string',
3771 [],
3772 is_const=True, is_virtual=True)
3773 ## enum.h (module 'core'): bool ns3::EnumChecker::HasUnderlyingTypeInformation() const [member function]
3774 cls.add_method('HasUnderlyingTypeInformation',
3775 'bool',
3776 [],
3777 is_const=True, is_virtual=True)
3778 return
3779
3780def register_Ns3EnumValue_methods(root_module, cls):
3781 ## enum.h (module 'core'): ns3::EnumValue::EnumValue(ns3::EnumValue const & arg0) [copy constructor]
3782 cls.add_constructor([param('ns3::EnumValue const &', 'arg0')])
3783 ## enum.h (module 'core'): ns3::EnumValue::EnumValue() [constructor]
3784 cls.add_constructor([])
3785 ## enum.h (module 'core'): ns3::EnumValue::EnumValue(int v) [constructor]
3786 cls.add_constructor([param('int', 'v')])
3787 ## enum.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::EnumValue::Copy() const [member function]
3788 cls.add_method('Copy',
3789 'ns3::Ptr< ns3::AttributeValue >',
3790 [],
3791 is_const=True, is_virtual=True)
3792 ## enum.h (module 'core'): bool ns3::EnumValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
3793 cls.add_method('DeserializeFromString',
3794 'bool',
3795 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3796 is_virtual=True)
3797 ## enum.h (module 'core'): int ns3::EnumValue::Get() const [member function]
3798 cls.add_method('Get',
3799 'int',
3800 [],
3801 is_const=True)
3802 ## enum.h (module 'core'): std::string ns3::EnumValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
3803 cls.add_method('SerializeToString',
3804 'std::string',
3805 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3806 is_const=True, is_virtual=True)
3807 ## enum.h (module 'core'): void ns3::EnumValue::Set(int v) [member function]
3808 cls.add_method('Set',
3809 'void',
3810 [param('int', 'v')])
3811 return
3812
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08003813def register_Ns3EventImpl_methods(root_module, cls):
3814 ## event-impl.h (module 'core'): ns3::EventImpl::EventImpl(ns3::EventImpl const & arg0) [copy constructor]
3815 cls.add_constructor([param('ns3::EventImpl const &', 'arg0')])
3816 ## event-impl.h (module 'core'): ns3::EventImpl::EventImpl() [constructor]
3817 cls.add_constructor([])
3818 ## event-impl.h (module 'core'): void ns3::EventImpl::Cancel() [member function]
3819 cls.add_method('Cancel',
3820 'void',
3821 [])
3822 ## event-impl.h (module 'core'): void ns3::EventImpl::Invoke() [member function]
3823 cls.add_method('Invoke',
3824 'void',
3825 [])
3826 ## event-impl.h (module 'core'): bool ns3::EventImpl::IsCancelled() [member function]
3827 cls.add_method('IsCancelled',
3828 'bool',
3829 [])
3830 ## event-impl.h (module 'core'): void ns3::EventImpl::Notify() [member function]
3831 cls.add_method('Notify',
3832 'void',
3833 [],
3834 is_pure_virtual=True, visibility='protected', is_virtual=True)
3835 return
3836
3837def register_Ns3IntegerValue_methods(root_module, cls):
3838 ## integer.h (module 'core'): ns3::IntegerValue::IntegerValue() [constructor]
3839 cls.add_constructor([])
3840 ## integer.h (module 'core'): ns3::IntegerValue::IntegerValue(ns3::IntegerValue const & arg0) [copy constructor]
3841 cls.add_constructor([param('ns3::IntegerValue const &', 'arg0')])
3842 ## integer.h (module 'core'): ns3::IntegerValue::IntegerValue(int64_t const & value) [constructor]
3843 cls.add_constructor([param('int64_t const &', 'value')])
3844 ## integer.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::IntegerValue::Copy() const [member function]
3845 cls.add_method('Copy',
3846 'ns3::Ptr< ns3::AttributeValue >',
3847 [],
3848 is_const=True, is_virtual=True)
3849 ## integer.h (module 'core'): bool ns3::IntegerValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
3850 cls.add_method('DeserializeFromString',
3851 'bool',
3852 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3853 is_virtual=True)
3854 ## integer.h (module 'core'): int64_t ns3::IntegerValue::Get() const [member function]
3855 cls.add_method('Get',
3856 'int64_t',
3857 [],
3858 is_const=True)
3859 ## integer.h (module 'core'): std::string ns3::IntegerValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
3860 cls.add_method('SerializeToString',
3861 'std::string',
3862 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3863 is_const=True, is_virtual=True)
3864 ## integer.h (module 'core'): void ns3::IntegerValue::Set(int64_t const & value) [member function]
3865 cls.add_method('Set',
3866 'void',
3867 [param('int64_t const &', 'value')])
3868 return
3869
3870def register_Ns3Ipv4AddressChecker_methods(root_module, cls):
3871 ## ipv4-address.h (module 'network'): ns3::Ipv4AddressChecker::Ipv4AddressChecker() [constructor]
3872 cls.add_constructor([])
3873 ## ipv4-address.h (module 'network'): ns3::Ipv4AddressChecker::Ipv4AddressChecker(ns3::Ipv4AddressChecker const & arg0) [copy constructor]
3874 cls.add_constructor([param('ns3::Ipv4AddressChecker const &', 'arg0')])
3875 return
3876
3877def register_Ns3Ipv4AddressValue_methods(root_module, cls):
3878 ## ipv4-address.h (module 'network'): ns3::Ipv4AddressValue::Ipv4AddressValue() [constructor]
3879 cls.add_constructor([])
3880 ## ipv4-address.h (module 'network'): ns3::Ipv4AddressValue::Ipv4AddressValue(ns3::Ipv4AddressValue const & arg0) [copy constructor]
3881 cls.add_constructor([param('ns3::Ipv4AddressValue const &', 'arg0')])
3882 ## ipv4-address.h (module 'network'): ns3::Ipv4AddressValue::Ipv4AddressValue(ns3::Ipv4Address const & value) [constructor]
3883 cls.add_constructor([param('ns3::Ipv4Address const &', 'value')])
3884 ## ipv4-address.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::Ipv4AddressValue::Copy() const [member function]
3885 cls.add_method('Copy',
3886 'ns3::Ptr< ns3::AttributeValue >',
3887 [],
3888 is_const=True, is_virtual=True)
3889 ## ipv4-address.h (module 'network'): bool ns3::Ipv4AddressValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
3890 cls.add_method('DeserializeFromString',
3891 'bool',
3892 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3893 is_virtual=True)
3894 ## ipv4-address.h (module 'network'): ns3::Ipv4Address ns3::Ipv4AddressValue::Get() const [member function]
3895 cls.add_method('Get',
3896 'ns3::Ipv4Address',
3897 [],
3898 is_const=True)
3899 ## ipv4-address.h (module 'network'): std::string ns3::Ipv4AddressValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
3900 cls.add_method('SerializeToString',
3901 'std::string',
3902 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3903 is_const=True, is_virtual=True)
3904 ## ipv4-address.h (module 'network'): void ns3::Ipv4AddressValue::Set(ns3::Ipv4Address const & value) [member function]
3905 cls.add_method('Set',
3906 'void',
3907 [param('ns3::Ipv4Address const &', 'value')])
3908 return
3909
3910def register_Ns3Ipv4MaskChecker_methods(root_module, cls):
3911 ## ipv4-address.h (module 'network'): ns3::Ipv4MaskChecker::Ipv4MaskChecker() [constructor]
3912 cls.add_constructor([])
3913 ## ipv4-address.h (module 'network'): ns3::Ipv4MaskChecker::Ipv4MaskChecker(ns3::Ipv4MaskChecker const & arg0) [copy constructor]
3914 cls.add_constructor([param('ns3::Ipv4MaskChecker const &', 'arg0')])
3915 return
3916
3917def register_Ns3Ipv4MaskValue_methods(root_module, cls):
3918 ## ipv4-address.h (module 'network'): ns3::Ipv4MaskValue::Ipv4MaskValue() [constructor]
3919 cls.add_constructor([])
3920 ## ipv4-address.h (module 'network'): ns3::Ipv4MaskValue::Ipv4MaskValue(ns3::Ipv4MaskValue const & arg0) [copy constructor]
3921 cls.add_constructor([param('ns3::Ipv4MaskValue const &', 'arg0')])
3922 ## ipv4-address.h (module 'network'): ns3::Ipv4MaskValue::Ipv4MaskValue(ns3::Ipv4Mask const & value) [constructor]
3923 cls.add_constructor([param('ns3::Ipv4Mask const &', 'value')])
3924 ## ipv4-address.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::Ipv4MaskValue::Copy() const [member function]
3925 cls.add_method('Copy',
3926 'ns3::Ptr< ns3::AttributeValue >',
3927 [],
3928 is_const=True, is_virtual=True)
3929 ## ipv4-address.h (module 'network'): bool ns3::Ipv4MaskValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
3930 cls.add_method('DeserializeFromString',
3931 'bool',
3932 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3933 is_virtual=True)
3934 ## ipv4-address.h (module 'network'): ns3::Ipv4Mask ns3::Ipv4MaskValue::Get() const [member function]
3935 cls.add_method('Get',
3936 'ns3::Ipv4Mask',
3937 [],
3938 is_const=True)
3939 ## ipv4-address.h (module 'network'): std::string ns3::Ipv4MaskValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
3940 cls.add_method('SerializeToString',
3941 'std::string',
3942 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3943 is_const=True, is_virtual=True)
3944 ## ipv4-address.h (module 'network'): void ns3::Ipv4MaskValue::Set(ns3::Ipv4Mask const & value) [member function]
3945 cls.add_method('Set',
3946 'void',
3947 [param('ns3::Ipv4Mask const &', 'value')])
3948 return
3949
3950def register_Ns3Ipv6AddressChecker_methods(root_module, cls):
3951 ## ipv6-address.h (module 'network'): ns3::Ipv6AddressChecker::Ipv6AddressChecker() [constructor]
3952 cls.add_constructor([])
3953 ## ipv6-address.h (module 'network'): ns3::Ipv6AddressChecker::Ipv6AddressChecker(ns3::Ipv6AddressChecker const & arg0) [copy constructor]
3954 cls.add_constructor([param('ns3::Ipv6AddressChecker const &', 'arg0')])
3955 return
3956
3957def register_Ns3Ipv6AddressValue_methods(root_module, cls):
3958 ## ipv6-address.h (module 'network'): ns3::Ipv6AddressValue::Ipv6AddressValue() [constructor]
3959 cls.add_constructor([])
3960 ## ipv6-address.h (module 'network'): ns3::Ipv6AddressValue::Ipv6AddressValue(ns3::Ipv6AddressValue const & arg0) [copy constructor]
3961 cls.add_constructor([param('ns3::Ipv6AddressValue const &', 'arg0')])
3962 ## ipv6-address.h (module 'network'): ns3::Ipv6AddressValue::Ipv6AddressValue(ns3::Ipv6Address const & value) [constructor]
3963 cls.add_constructor([param('ns3::Ipv6Address const &', 'value')])
3964 ## ipv6-address.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::Ipv6AddressValue::Copy() const [member function]
3965 cls.add_method('Copy',
3966 'ns3::Ptr< ns3::AttributeValue >',
3967 [],
3968 is_const=True, is_virtual=True)
3969 ## ipv6-address.h (module 'network'): bool ns3::Ipv6AddressValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
3970 cls.add_method('DeserializeFromString',
3971 'bool',
3972 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3973 is_virtual=True)
3974 ## ipv6-address.h (module 'network'): ns3::Ipv6Address ns3::Ipv6AddressValue::Get() const [member function]
3975 cls.add_method('Get',
3976 'ns3::Ipv6Address',
3977 [],
3978 is_const=True)
3979 ## ipv6-address.h (module 'network'): std::string ns3::Ipv6AddressValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
3980 cls.add_method('SerializeToString',
3981 'std::string',
3982 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3983 is_const=True, is_virtual=True)
3984 ## ipv6-address.h (module 'network'): void ns3::Ipv6AddressValue::Set(ns3::Ipv6Address const & value) [member function]
3985 cls.add_method('Set',
3986 'void',
3987 [param('ns3::Ipv6Address const &', 'value')])
3988 return
3989
3990def register_Ns3Ipv6PrefixChecker_methods(root_module, cls):
3991 ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixChecker::Ipv6PrefixChecker() [constructor]
3992 cls.add_constructor([])
3993 ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixChecker::Ipv6PrefixChecker(ns3::Ipv6PrefixChecker const & arg0) [copy constructor]
3994 cls.add_constructor([param('ns3::Ipv6PrefixChecker const &', 'arg0')])
3995 return
3996
3997def register_Ns3Ipv6PrefixValue_methods(root_module, cls):
3998 ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixValue::Ipv6PrefixValue() [constructor]
3999 cls.add_constructor([])
4000 ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixValue::Ipv6PrefixValue(ns3::Ipv6PrefixValue const & arg0) [copy constructor]
4001 cls.add_constructor([param('ns3::Ipv6PrefixValue const &', 'arg0')])
4002 ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixValue::Ipv6PrefixValue(ns3::Ipv6Prefix const & value) [constructor]
4003 cls.add_constructor([param('ns3::Ipv6Prefix const &', 'value')])
4004 ## ipv6-address.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::Ipv6PrefixValue::Copy() const [member function]
4005 cls.add_method('Copy',
4006 'ns3::Ptr< ns3::AttributeValue >',
4007 [],
4008 is_const=True, is_virtual=True)
4009 ## ipv6-address.h (module 'network'): bool ns3::Ipv6PrefixValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
4010 cls.add_method('DeserializeFromString',
4011 'bool',
4012 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4013 is_virtual=True)
4014 ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix ns3::Ipv6PrefixValue::Get() const [member function]
4015 cls.add_method('Get',
4016 'ns3::Ipv6Prefix',
4017 [],
4018 is_const=True)
4019 ## ipv6-address.h (module 'network'): std::string ns3::Ipv6PrefixValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
4020 cls.add_method('SerializeToString',
4021 'std::string',
4022 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4023 is_const=True, is_virtual=True)
4024 ## ipv6-address.h (module 'network'): void ns3::Ipv6PrefixValue::Set(ns3::Ipv6Prefix const & value) [member function]
4025 cls.add_method('Set',
4026 'void',
4027 [param('ns3::Ipv6Prefix const &', 'value')])
4028 return
4029
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07004030def register_Ns3MobilityModel_methods(root_module, cls):
4031 ## mobility-model.h (module 'mobility'): ns3::MobilityModel::MobilityModel(ns3::MobilityModel const & arg0) [copy constructor]
4032 cls.add_constructor([param('ns3::MobilityModel const &', 'arg0')])
4033 ## mobility-model.h (module 'mobility'): ns3::MobilityModel::MobilityModel() [constructor]
4034 cls.add_constructor([])
4035 ## mobility-model.h (module 'mobility'): double ns3::MobilityModel::GetDistanceFrom(ns3::Ptr<const ns3::MobilityModel> position) const [member function]
4036 cls.add_method('GetDistanceFrom',
4037 'double',
4038 [param('ns3::Ptr< ns3::MobilityModel const >', 'position')],
4039 is_const=True)
4040 ## mobility-model.h (module 'mobility'): static ns3::Ptr<ns3::MobilityModel> ns3::MobilityModel::GetMobilityModel(ns3::Ptr<ns3::Object> node) [member function]
4041 cls.add_method('GetMobilityModel',
4042 'ns3::Ptr< ns3::MobilityModel >',
4043 [param('ns3::Ptr< ns3::Object >', 'node')],
4044 is_static=True)
4045 ## mobility-model.h (module 'mobility'): ns3::Vector ns3::MobilityModel::GetPosition() const [member function]
4046 cls.add_method('GetPosition',
4047 'ns3::Vector',
4048 [],
4049 is_const=True)
4050 ## mobility-model.h (module 'mobility'): double ns3::MobilityModel::GetRelativeSpeed(ns3::Ptr<const ns3::MobilityModel> other) const [member function]
4051 cls.add_method('GetRelativeSpeed',
4052 'double',
4053 [param('ns3::Ptr< ns3::MobilityModel const >', 'other')],
4054 is_const=True)
4055 ## mobility-model.h (module 'mobility'): static ns3::TypeId ns3::MobilityModel::GetTypeId() [member function]
4056 cls.add_method('GetTypeId',
4057 'ns3::TypeId',
4058 [],
4059 is_static=True)
4060 ## mobility-model.h (module 'mobility'): ns3::Vector ns3::MobilityModel::GetVelocity() const [member function]
4061 cls.add_method('GetVelocity',
4062 'ns3::Vector',
4063 [],
4064 is_const=True)
4065 ## mobility-model.h (module 'mobility'): void ns3::MobilityModel::SetPosition(ns3::Vector const & position) [member function]
4066 cls.add_method('SetPosition',
4067 'void',
4068 [param('ns3::Vector const &', 'position')])
4069 ## mobility-model.h (module 'mobility'): void ns3::MobilityModel::NotifyCourseChange() const [member function]
4070 cls.add_method('NotifyCourseChange',
4071 'void',
4072 [],
4073 is_const=True, visibility='protected')
4074 ## mobility-model.h (module 'mobility'): ns3::Vector ns3::MobilityModel::DoGetPosition() const [member function]
4075 cls.add_method('DoGetPosition',
4076 'ns3::Vector',
4077 [],
4078 is_pure_virtual=True, is_const=True, visibility='private', is_virtual=True)
4079 ## mobility-model.h (module 'mobility'): ns3::Vector ns3::MobilityModel::DoGetVelocity() const [member function]
4080 cls.add_method('DoGetVelocity',
4081 'ns3::Vector',
4082 [],
4083 is_pure_virtual=True, is_const=True, visibility='private', is_virtual=True)
4084 ## mobility-model.h (module 'mobility'): void ns3::MobilityModel::DoSetPosition(ns3::Vector const & position) [member function]
4085 cls.add_method('DoSetPosition',
4086 'void',
4087 [param('ns3::Vector const &', 'position')],
4088 is_pure_virtual=True, visibility='private', is_virtual=True)
4089 return
4090
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004091def register_Ns3NetDevice_methods(root_module, cls):
4092 ## net-device.h (module 'network'): ns3::NetDevice::NetDevice() [constructor]
4093 cls.add_constructor([])
4094 ## net-device.h (module 'network'): ns3::NetDevice::NetDevice(ns3::NetDevice const & arg0) [copy constructor]
4095 cls.add_constructor([param('ns3::NetDevice const &', 'arg0')])
4096 ## 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]
4097 cls.add_method('AddLinkChangeCallback',
4098 'void',
4099 [param('ns3::Callback< void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'callback')],
4100 is_pure_virtual=True, is_virtual=True)
4101 ## net-device.h (module 'network'): ns3::Address ns3::NetDevice::GetAddress() const [member function]
4102 cls.add_method('GetAddress',
4103 'ns3::Address',
4104 [],
4105 is_pure_virtual=True, is_const=True, is_virtual=True)
4106 ## net-device.h (module 'network'): ns3::Address ns3::NetDevice::GetBroadcast() const [member function]
4107 cls.add_method('GetBroadcast',
4108 'ns3::Address',
4109 [],
4110 is_pure_virtual=True, is_const=True, is_virtual=True)
4111 ## net-device.h (module 'network'): ns3::Ptr<ns3::Channel> ns3::NetDevice::GetChannel() const [member function]
4112 cls.add_method('GetChannel',
4113 'ns3::Ptr< ns3::Channel >',
4114 [],
4115 is_pure_virtual=True, is_const=True, is_virtual=True)
4116 ## net-device.h (module 'network'): uint32_t ns3::NetDevice::GetIfIndex() const [member function]
4117 cls.add_method('GetIfIndex',
4118 'uint32_t',
4119 [],
4120 is_pure_virtual=True, is_const=True, is_virtual=True)
4121 ## net-device.h (module 'network'): uint16_t ns3::NetDevice::GetMtu() const [member function]
4122 cls.add_method('GetMtu',
4123 'uint16_t',
4124 [],
4125 is_pure_virtual=True, is_const=True, is_virtual=True)
4126 ## net-device.h (module 'network'): ns3::Address ns3::NetDevice::GetMulticast(ns3::Ipv4Address multicastGroup) const [member function]
4127 cls.add_method('GetMulticast',
4128 'ns3::Address',
4129 [param('ns3::Ipv4Address', 'multicastGroup')],
4130 is_pure_virtual=True, is_const=True, is_virtual=True)
4131 ## net-device.h (module 'network'): ns3::Address ns3::NetDevice::GetMulticast(ns3::Ipv6Address addr) const [member function]
4132 cls.add_method('GetMulticast',
4133 'ns3::Address',
4134 [param('ns3::Ipv6Address', 'addr')],
4135 is_pure_virtual=True, is_const=True, is_virtual=True)
4136 ## net-device.h (module 'network'): ns3::Ptr<ns3::Node> ns3::NetDevice::GetNode() const [member function]
4137 cls.add_method('GetNode',
4138 'ns3::Ptr< ns3::Node >',
4139 [],
4140 is_pure_virtual=True, is_const=True, is_virtual=True)
4141 ## net-device.h (module 'network'): static ns3::TypeId ns3::NetDevice::GetTypeId() [member function]
4142 cls.add_method('GetTypeId',
4143 'ns3::TypeId',
4144 [],
4145 is_static=True)
4146 ## net-device.h (module 'network'): bool ns3::NetDevice::IsBridge() const [member function]
4147 cls.add_method('IsBridge',
4148 'bool',
4149 [],
4150 is_pure_virtual=True, is_const=True, is_virtual=True)
4151 ## net-device.h (module 'network'): bool ns3::NetDevice::IsBroadcast() const [member function]
4152 cls.add_method('IsBroadcast',
4153 'bool',
4154 [],
4155 is_pure_virtual=True, is_const=True, is_virtual=True)
4156 ## net-device.h (module 'network'): bool ns3::NetDevice::IsLinkUp() const [member function]
4157 cls.add_method('IsLinkUp',
4158 'bool',
4159 [],
4160 is_pure_virtual=True, is_const=True, is_virtual=True)
4161 ## net-device.h (module 'network'): bool ns3::NetDevice::IsMulticast() const [member function]
4162 cls.add_method('IsMulticast',
4163 'bool',
4164 [],
4165 is_pure_virtual=True, is_const=True, is_virtual=True)
4166 ## net-device.h (module 'network'): bool ns3::NetDevice::IsPointToPoint() const [member function]
4167 cls.add_method('IsPointToPoint',
4168 'bool',
4169 [],
4170 is_pure_virtual=True, is_const=True, is_virtual=True)
4171 ## net-device.h (module 'network'): bool ns3::NetDevice::NeedsArp() const [member function]
4172 cls.add_method('NeedsArp',
4173 'bool',
4174 [],
4175 is_pure_virtual=True, is_const=True, is_virtual=True)
4176 ## net-device.h (module 'network'): bool ns3::NetDevice::Send(ns3::Ptr<ns3::Packet> packet, ns3::Address const & dest, uint16_t protocolNumber) [member function]
4177 cls.add_method('Send',
4178 'bool',
4179 [param('ns3::Ptr< ns3::Packet >', 'packet'), param('ns3::Address const &', 'dest'), param('uint16_t', 'protocolNumber')],
4180 is_pure_virtual=True, is_virtual=True)
4181 ## 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]
4182 cls.add_method('SendFrom',
4183 'bool',
4184 [param('ns3::Ptr< ns3::Packet >', 'packet'), param('ns3::Address const &', 'source'), param('ns3::Address const &', 'dest'), param('uint16_t', 'protocolNumber')],
4185 is_pure_virtual=True, is_virtual=True)
4186 ## net-device.h (module 'network'): void ns3::NetDevice::SetAddress(ns3::Address address) [member function]
4187 cls.add_method('SetAddress',
4188 'void',
4189 [param('ns3::Address', 'address')],
4190 is_pure_virtual=True, is_virtual=True)
4191 ## net-device.h (module 'network'): void ns3::NetDevice::SetIfIndex(uint32_t const index) [member function]
4192 cls.add_method('SetIfIndex',
4193 'void',
4194 [param('uint32_t const', 'index')],
4195 is_pure_virtual=True, is_virtual=True)
4196 ## net-device.h (module 'network'): bool ns3::NetDevice::SetMtu(uint16_t const mtu) [member function]
4197 cls.add_method('SetMtu',
4198 'bool',
4199 [param('uint16_t const', 'mtu')],
4200 is_pure_virtual=True, is_virtual=True)
4201 ## net-device.h (module 'network'): void ns3::NetDevice::SetNode(ns3::Ptr<ns3::Node> node) [member function]
4202 cls.add_method('SetNode',
4203 'void',
4204 [param('ns3::Ptr< ns3::Node >', 'node')],
4205 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -08004206 ## 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 -08004207 cls.add_method('SetPromiscReceiveCallback',
4208 'void',
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -08004209 [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 -08004210 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -08004211 ## 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 -08004212 cls.add_method('SetReceiveCallback',
4213 'void',
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -08004214 [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 -08004215 is_pure_virtual=True, is_virtual=True)
4216 ## net-device.h (module 'network'): bool ns3::NetDevice::SupportsSendFrom() const [member function]
4217 cls.add_method('SupportsSendFrom',
4218 'bool',
4219 [],
4220 is_pure_virtual=True, is_const=True, is_virtual=True)
4221 return
4222
4223def register_Ns3NixVector_methods(root_module, cls):
4224 cls.add_output_stream_operator()
4225 ## nix-vector.h (module 'network'): ns3::NixVector::NixVector() [constructor]
4226 cls.add_constructor([])
4227 ## nix-vector.h (module 'network'): ns3::NixVector::NixVector(ns3::NixVector const & o) [copy constructor]
4228 cls.add_constructor([param('ns3::NixVector const &', 'o')])
4229 ## nix-vector.h (module 'network'): void ns3::NixVector::AddNeighborIndex(uint32_t newBits, uint32_t numberOfBits) [member function]
4230 cls.add_method('AddNeighborIndex',
4231 'void',
4232 [param('uint32_t', 'newBits'), param('uint32_t', 'numberOfBits')])
4233 ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::BitCount(uint32_t numberOfNeighbors) const [member function]
4234 cls.add_method('BitCount',
4235 'uint32_t',
4236 [param('uint32_t', 'numberOfNeighbors')],
4237 is_const=True)
4238 ## nix-vector.h (module 'network'): ns3::Ptr<ns3::NixVector> ns3::NixVector::Copy() const [member function]
4239 cls.add_method('Copy',
4240 'ns3::Ptr< ns3::NixVector >',
4241 [],
4242 is_const=True)
4243 ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::Deserialize(uint32_t const * buffer, uint32_t size) [member function]
4244 cls.add_method('Deserialize',
4245 'uint32_t',
4246 [param('uint32_t const *', 'buffer'), param('uint32_t', 'size')])
4247 ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::ExtractNeighborIndex(uint32_t numberOfBits) [member function]
4248 cls.add_method('ExtractNeighborIndex',
4249 'uint32_t',
4250 [param('uint32_t', 'numberOfBits')])
4251 ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::GetRemainingBits() [member function]
4252 cls.add_method('GetRemainingBits',
4253 'uint32_t',
4254 [])
4255 ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::GetSerializedSize() const [member function]
4256 cls.add_method('GetSerializedSize',
4257 'uint32_t',
4258 [],
4259 is_const=True)
4260 ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::Serialize(uint32_t * buffer, uint32_t maxSize) const [member function]
4261 cls.add_method('Serialize',
4262 'uint32_t',
4263 [param('uint32_t *', 'buffer'), param('uint32_t', 'maxSize')],
4264 is_const=True)
4265 return
4266
4267def register_Ns3Node_methods(root_module, cls):
4268 ## node.h (module 'network'): ns3::Node::Node(ns3::Node const & arg0) [copy constructor]
4269 cls.add_constructor([param('ns3::Node const &', 'arg0')])
4270 ## node.h (module 'network'): ns3::Node::Node() [constructor]
4271 cls.add_constructor([])
4272 ## node.h (module 'network'): ns3::Node::Node(uint32_t systemId) [constructor]
4273 cls.add_constructor([param('uint32_t', 'systemId')])
4274 ## node.h (module 'network'): uint32_t ns3::Node::AddApplication(ns3::Ptr<ns3::Application> application) [member function]
4275 cls.add_method('AddApplication',
4276 'uint32_t',
4277 [param('ns3::Ptr< ns3::Application >', 'application')])
4278 ## node.h (module 'network'): uint32_t ns3::Node::AddDevice(ns3::Ptr<ns3::NetDevice> device) [member function]
4279 cls.add_method('AddDevice',
4280 'uint32_t',
4281 [param('ns3::Ptr< ns3::NetDevice >', 'device')])
4282 ## node.h (module 'network'): static bool ns3::Node::ChecksumEnabled() [member function]
4283 cls.add_method('ChecksumEnabled',
4284 'bool',
4285 [],
4286 is_static=True)
4287 ## node.h (module 'network'): ns3::Ptr<ns3::Application> ns3::Node::GetApplication(uint32_t index) const [member function]
4288 cls.add_method('GetApplication',
4289 'ns3::Ptr< ns3::Application >',
4290 [param('uint32_t', 'index')],
4291 is_const=True)
4292 ## node.h (module 'network'): ns3::Ptr<ns3::NetDevice> ns3::Node::GetDevice(uint32_t index) const [member function]
4293 cls.add_method('GetDevice',
4294 'ns3::Ptr< ns3::NetDevice >',
4295 [param('uint32_t', 'index')],
4296 is_const=True)
4297 ## node.h (module 'network'): uint32_t ns3::Node::GetId() const [member function]
4298 cls.add_method('GetId',
4299 'uint32_t',
4300 [],
4301 is_const=True)
4302 ## node.h (module 'network'): uint32_t ns3::Node::GetNApplications() const [member function]
4303 cls.add_method('GetNApplications',
4304 'uint32_t',
4305 [],
4306 is_const=True)
4307 ## node.h (module 'network'): uint32_t ns3::Node::GetNDevices() const [member function]
4308 cls.add_method('GetNDevices',
4309 'uint32_t',
4310 [],
4311 is_const=True)
4312 ## node.h (module 'network'): uint32_t ns3::Node::GetSystemId() const [member function]
4313 cls.add_method('GetSystemId',
4314 'uint32_t',
4315 [],
4316 is_const=True)
4317 ## node.h (module 'network'): static ns3::TypeId ns3::Node::GetTypeId() [member function]
4318 cls.add_method('GetTypeId',
4319 'ns3::TypeId',
4320 [],
4321 is_static=True)
4322 ## 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]
4323 cls.add_method('RegisterDeviceAdditionListener',
4324 'void',
4325 [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')])
4326 ## 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]
4327 cls.add_method('RegisterProtocolHandler',
4328 'void',
4329 [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')])
4330 ## 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]
4331 cls.add_method('UnregisterDeviceAdditionListener',
4332 'void',
4333 [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')])
4334 ## 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]
4335 cls.add_method('UnregisterProtocolHandler',
4336 'void',
4337 [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')])
4338 ## node.h (module 'network'): void ns3::Node::DoDispose() [member function]
4339 cls.add_method('DoDispose',
4340 'void',
4341 [],
4342 visibility='protected', is_virtual=True)
4343 ## node.h (module 'network'): void ns3::Node::DoStart() [member function]
4344 cls.add_method('DoStart',
4345 'void',
4346 [],
4347 visibility='protected', is_virtual=True)
4348 return
4349
4350def register_Ns3ObjectFactoryChecker_methods(root_module, cls):
4351 ## object-factory.h (module 'core'): ns3::ObjectFactoryChecker::ObjectFactoryChecker() [constructor]
4352 cls.add_constructor([])
4353 ## object-factory.h (module 'core'): ns3::ObjectFactoryChecker::ObjectFactoryChecker(ns3::ObjectFactoryChecker const & arg0) [copy constructor]
4354 cls.add_constructor([param('ns3::ObjectFactoryChecker const &', 'arg0')])
4355 return
4356
4357def register_Ns3ObjectFactoryValue_methods(root_module, cls):
4358 ## object-factory.h (module 'core'): ns3::ObjectFactoryValue::ObjectFactoryValue() [constructor]
4359 cls.add_constructor([])
4360 ## object-factory.h (module 'core'): ns3::ObjectFactoryValue::ObjectFactoryValue(ns3::ObjectFactoryValue const & arg0) [copy constructor]
4361 cls.add_constructor([param('ns3::ObjectFactoryValue const &', 'arg0')])
4362 ## object-factory.h (module 'core'): ns3::ObjectFactoryValue::ObjectFactoryValue(ns3::ObjectFactory const & value) [constructor]
4363 cls.add_constructor([param('ns3::ObjectFactory const &', 'value')])
4364 ## object-factory.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::ObjectFactoryValue::Copy() const [member function]
4365 cls.add_method('Copy',
4366 'ns3::Ptr< ns3::AttributeValue >',
4367 [],
4368 is_const=True, is_virtual=True)
4369 ## object-factory.h (module 'core'): bool ns3::ObjectFactoryValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
4370 cls.add_method('DeserializeFromString',
4371 'bool',
4372 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4373 is_virtual=True)
4374 ## object-factory.h (module 'core'): ns3::ObjectFactory ns3::ObjectFactoryValue::Get() const [member function]
4375 cls.add_method('Get',
4376 'ns3::ObjectFactory',
4377 [],
4378 is_const=True)
4379 ## object-factory.h (module 'core'): std::string ns3::ObjectFactoryValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
4380 cls.add_method('SerializeToString',
4381 'std::string',
4382 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4383 is_const=True, is_virtual=True)
4384 ## object-factory.h (module 'core'): void ns3::ObjectFactoryValue::Set(ns3::ObjectFactory const & value) [member function]
4385 cls.add_method('Set',
4386 'void',
4387 [param('ns3::ObjectFactory const &', 'value')])
4388 return
4389
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004390def register_Ns3Packet_methods(root_module, cls):
4391 cls.add_output_stream_operator()
4392 ## packet.h (module 'network'): ns3::Packet::Packet() [constructor]
4393 cls.add_constructor([])
4394 ## packet.h (module 'network'): ns3::Packet::Packet(ns3::Packet const & o) [copy constructor]
4395 cls.add_constructor([param('ns3::Packet const &', 'o')])
4396 ## packet.h (module 'network'): ns3::Packet::Packet(uint32_t size) [constructor]
4397 cls.add_constructor([param('uint32_t', 'size')])
4398 ## packet.h (module 'network'): ns3::Packet::Packet(uint8_t const * buffer, uint32_t size, bool magic) [constructor]
4399 cls.add_constructor([param('uint8_t const *', 'buffer'), param('uint32_t', 'size'), param('bool', 'magic')])
4400 ## packet.h (module 'network'): ns3::Packet::Packet(uint8_t const * buffer, uint32_t size) [constructor]
4401 cls.add_constructor([param('uint8_t const *', 'buffer'), param('uint32_t', 'size')])
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -08004402 ## packet.h (module 'network'): void ns3::Packet::AddAtEnd(ns3::Ptr<const ns3::Packet> packet) [member function]
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004403 cls.add_method('AddAtEnd',
4404 'void',
4405 [param('ns3::Ptr< ns3::Packet const >', 'packet')])
4406 ## packet.h (module 'network'): void ns3::Packet::AddByteTag(ns3::Tag const & tag) const [member function]
4407 cls.add_method('AddByteTag',
4408 'void',
4409 [param('ns3::Tag const &', 'tag')],
4410 is_const=True)
4411 ## packet.h (module 'network'): void ns3::Packet::AddHeader(ns3::Header const & header) [member function]
4412 cls.add_method('AddHeader',
4413 'void',
4414 [param('ns3::Header const &', 'header')])
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07004415 ## packet.h (module 'network'): void ns3::Packet::AddPacketTag(ns3::Tag const & tag) const [member function]
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004416 cls.add_method('AddPacketTag',
4417 'void',
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07004418 [param('ns3::Tag const &', 'tag')],
4419 is_const=True)
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004420 ## packet.h (module 'network'): void ns3::Packet::AddPaddingAtEnd(uint32_t size) [member function]
4421 cls.add_method('AddPaddingAtEnd',
4422 'void',
4423 [param('uint32_t', 'size')])
4424 ## packet.h (module 'network'): void ns3::Packet::AddTrailer(ns3::Trailer const & trailer) [member function]
4425 cls.add_method('AddTrailer',
4426 'void',
4427 [param('ns3::Trailer const &', 'trailer')])
4428 ## packet.h (module 'network'): ns3::PacketMetadata::ItemIterator ns3::Packet::BeginItem() const [member function]
4429 cls.add_method('BeginItem',
4430 'ns3::PacketMetadata::ItemIterator',
4431 [],
4432 is_const=True)
4433 ## packet.h (module 'network'): ns3::Ptr<ns3::Packet> ns3::Packet::Copy() const [member function]
4434 cls.add_method('Copy',
4435 'ns3::Ptr< ns3::Packet >',
4436 [],
4437 is_const=True)
4438 ## packet.h (module 'network'): uint32_t ns3::Packet::CopyData(uint8_t * buffer, uint32_t size) const [member function]
4439 cls.add_method('CopyData',
4440 'uint32_t',
4441 [param('uint8_t *', 'buffer'), param('uint32_t', 'size')],
4442 is_const=True)
4443 ## packet.h (module 'network'): void ns3::Packet::CopyData(std::ostream * os, uint32_t size) const [member function]
4444 cls.add_method('CopyData',
4445 'void',
4446 [param('std::ostream *', 'os'), param('uint32_t', 'size')],
4447 is_const=True)
4448 ## packet.h (module 'network'): ns3::Ptr<ns3::Packet> ns3::Packet::CreateFragment(uint32_t start, uint32_t length) const [member function]
4449 cls.add_method('CreateFragment',
4450 'ns3::Ptr< ns3::Packet >',
4451 [param('uint32_t', 'start'), param('uint32_t', 'length')],
4452 is_const=True)
4453 ## packet.h (module 'network'): static void ns3::Packet::EnableChecking() [member function]
4454 cls.add_method('EnableChecking',
4455 'void',
4456 [],
4457 is_static=True)
4458 ## packet.h (module 'network'): static void ns3::Packet::EnablePrinting() [member function]
4459 cls.add_method('EnablePrinting',
4460 'void',
4461 [],
4462 is_static=True)
4463 ## packet.h (module 'network'): bool ns3::Packet::FindFirstMatchingByteTag(ns3::Tag & tag) const [member function]
4464 cls.add_method('FindFirstMatchingByteTag',
4465 'bool',
4466 [param('ns3::Tag &', 'tag')],
4467 is_const=True)
4468 ## packet.h (module 'network'): ns3::ByteTagIterator ns3::Packet::GetByteTagIterator() const [member function]
4469 cls.add_method('GetByteTagIterator',
4470 'ns3::ByteTagIterator',
4471 [],
4472 is_const=True)
4473 ## packet.h (module 'network'): ns3::Ptr<ns3::NixVector> ns3::Packet::GetNixVector() const [member function]
4474 cls.add_method('GetNixVector',
4475 'ns3::Ptr< ns3::NixVector >',
4476 [],
4477 is_const=True)
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07004478 ## packet.h (module 'network'): ns3::PacketTagIterator ns3::Packet::GetPacketTagIterator() const [member function]
4479 cls.add_method('GetPacketTagIterator',
4480 'ns3::PacketTagIterator',
4481 [],
4482 is_const=True)
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004483 ## packet.h (module 'network'): uint32_t ns3::Packet::GetSerializedSize() const [member function]
4484 cls.add_method('GetSerializedSize',
4485 'uint32_t',
4486 [],
4487 is_const=True)
4488 ## packet.h (module 'network'): uint32_t ns3::Packet::GetSize() const [member function]
4489 cls.add_method('GetSize',
4490 'uint32_t',
4491 [],
4492 is_const=True)
4493 ## packet.h (module 'network'): uint64_t ns3::Packet::GetUid() const [member function]
4494 cls.add_method('GetUid',
4495 'uint64_t',
4496 [],
4497 is_const=True)
4498 ## packet.h (module 'network'): uint8_t const * ns3::Packet::PeekData() const [member function]
4499 cls.add_method('PeekData',
4500 'uint8_t const *',
4501 [],
4502 deprecated=True, is_const=True)
4503 ## packet.h (module 'network'): uint32_t ns3::Packet::PeekHeader(ns3::Header & header) const [member function]
4504 cls.add_method('PeekHeader',
4505 'uint32_t',
4506 [param('ns3::Header &', 'header')],
4507 is_const=True)
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07004508 ## packet.h (module 'network'): bool ns3::Packet::PeekPacketTag(ns3::Tag & tag) const [member function]
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004509 cls.add_method('PeekPacketTag',
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07004510 'bool',
4511 [param('ns3::Tag &', 'tag')],
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004512 is_const=True)
4513 ## packet.h (module 'network'): uint32_t ns3::Packet::PeekTrailer(ns3::Trailer & trailer) [member function]
4514 cls.add_method('PeekTrailer',
4515 'uint32_t',
4516 [param('ns3::Trailer &', 'trailer')])
4517 ## packet.h (module 'network'): void ns3::Packet::Print(std::ostream & os) const [member function]
4518 cls.add_method('Print',
4519 'void',
4520 [param('std::ostream &', 'os')],
4521 is_const=True)
4522 ## packet.h (module 'network'): void ns3::Packet::PrintByteTags(std::ostream & os) const [member function]
4523 cls.add_method('PrintByteTags',
4524 'void',
4525 [param('std::ostream &', 'os')],
4526 is_const=True)
4527 ## packet.h (module 'network'): void ns3::Packet::PrintPacketTags(std::ostream & os) const [member function]
4528 cls.add_method('PrintPacketTags',
4529 'void',
4530 [param('std::ostream &', 'os')],
4531 is_const=True)
4532 ## packet.h (module 'network'): void ns3::Packet::RemoveAllByteTags() [member function]
4533 cls.add_method('RemoveAllByteTags',
4534 'void',
4535 [])
4536 ## packet.h (module 'network'): void ns3::Packet::RemoveAllPacketTags() [member function]
4537 cls.add_method('RemoveAllPacketTags',
4538 'void',
4539 [])
4540 ## packet.h (module 'network'): void ns3::Packet::RemoveAtEnd(uint32_t size) [member function]
4541 cls.add_method('RemoveAtEnd',
4542 'void',
4543 [param('uint32_t', 'size')])
4544 ## packet.h (module 'network'): void ns3::Packet::RemoveAtStart(uint32_t size) [member function]
4545 cls.add_method('RemoveAtStart',
4546 'void',
4547 [param('uint32_t', 'size')])
4548 ## packet.h (module 'network'): uint32_t ns3::Packet::RemoveHeader(ns3::Header & header) [member function]
4549 cls.add_method('RemoveHeader',
4550 'uint32_t',
4551 [param('ns3::Header &', 'header')])
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07004552 ## packet.h (module 'network'): bool ns3::Packet::RemovePacketTag(ns3::Tag & tag) [member function]
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004553 cls.add_method('RemovePacketTag',
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07004554 'bool',
4555 [param('ns3::Tag &', 'tag')])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004556 ## packet.h (module 'network'): uint32_t ns3::Packet::RemoveTrailer(ns3::Trailer & trailer) [member function]
4557 cls.add_method('RemoveTrailer',
4558 'uint32_t',
4559 [param('ns3::Trailer &', 'trailer')])
4560 ## packet.h (module 'network'): uint32_t ns3::Packet::Serialize(uint8_t * buffer, uint32_t maxSize) const [member function]
4561 cls.add_method('Serialize',
4562 'uint32_t',
4563 [param('uint8_t *', 'buffer'), param('uint32_t', 'maxSize')],
4564 is_const=True)
4565 ## packet.h (module 'network'): void ns3::Packet::SetNixVector(ns3::Ptr<ns3::NixVector> arg0) [member function]
4566 cls.add_method('SetNixVector',
4567 'void',
4568 [param('ns3::Ptr< ns3::NixVector >', 'arg0')])
4569 return
4570
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07004571def register_Ns3RandomVariableChecker_methods(root_module, cls):
4572 ## random-variable.h (module 'core'): ns3::RandomVariableChecker::RandomVariableChecker() [constructor]
4573 cls.add_constructor([])
4574 ## random-variable.h (module 'core'): ns3::RandomVariableChecker::RandomVariableChecker(ns3::RandomVariableChecker const & arg0) [copy constructor]
4575 cls.add_constructor([param('ns3::RandomVariableChecker const &', 'arg0')])
4576 return
4577
4578def register_Ns3RandomVariableValue_methods(root_module, cls):
4579 ## random-variable.h (module 'core'): ns3::RandomVariableValue::RandomVariableValue() [constructor]
4580 cls.add_constructor([])
4581 ## random-variable.h (module 'core'): ns3::RandomVariableValue::RandomVariableValue(ns3::RandomVariableValue const & arg0) [copy constructor]
4582 cls.add_constructor([param('ns3::RandomVariableValue const &', 'arg0')])
4583 ## random-variable.h (module 'core'): ns3::RandomVariableValue::RandomVariableValue(ns3::RandomVariable const & value) [constructor]
4584 cls.add_constructor([param('ns3::RandomVariable const &', 'value')])
4585 ## random-variable.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::RandomVariableValue::Copy() const [member function]
4586 cls.add_method('Copy',
4587 'ns3::Ptr< ns3::AttributeValue >',
4588 [],
4589 is_const=True, is_virtual=True)
4590 ## random-variable.h (module 'core'): bool ns3::RandomVariableValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
4591 cls.add_method('DeserializeFromString',
4592 'bool',
4593 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4594 is_virtual=True)
4595 ## random-variable.h (module 'core'): ns3::RandomVariable ns3::RandomVariableValue::Get() const [member function]
4596 cls.add_method('Get',
4597 'ns3::RandomVariable',
4598 [],
4599 is_const=True)
4600 ## random-variable.h (module 'core'): std::string ns3::RandomVariableValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
4601 cls.add_method('SerializeToString',
4602 'std::string',
4603 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4604 is_const=True, is_virtual=True)
4605 ## random-variable.h (module 'core'): void ns3::RandomVariableValue::Set(ns3::RandomVariable const & value) [member function]
4606 cls.add_method('Set',
4607 'void',
4608 [param('ns3::RandomVariable const &', 'value')])
4609 return
4610
4611def register_Ns3RocketfuelWeightsReader_methods(root_module, cls):
4612 ## rocketfuel-weights-reader.h (module 'ndnSIM'): ns3::RocketfuelWeightsReader::RocketfuelWeightsReader(std::string const & path="", double scale=1.0e+0) [constructor]
4613 cls.add_constructor([param('std::string const &', 'path', default_value='""'), param('double', 'scale', default_value='1.0e+0')])
4614 ## rocketfuel-weights-reader.h (module 'ndnSIM'): void ns3::RocketfuelWeightsReader::SetFileType(uint8_t inputType) [member function]
4615 cls.add_method('SetFileType',
4616 'void',
4617 [param('uint8_t', 'inputType')])
4618 ## rocketfuel-weights-reader.h (module 'ndnSIM'): ns3::NodeContainer ns3::RocketfuelWeightsReader::Read() [member function]
4619 cls.add_method('Read',
4620 'ns3::NodeContainer',
4621 [],
4622 is_virtual=True)
4623 ## rocketfuel-weights-reader.h (module 'ndnSIM'): void ns3::RocketfuelWeightsReader::Commit() [member function]
4624 cls.add_method('Commit',
4625 'void',
4626 [])
4627 return
4628
4629def register_Ns3SpringMobilityModel_methods(root_module, cls):
4630 ## spring-mobility-model.h (module 'ndnSIM'): ns3::SpringMobilityModel::SpringMobilityModel(ns3::SpringMobilityModel const & arg0) [copy constructor]
4631 cls.add_constructor([param('ns3::SpringMobilityModel const &', 'arg0')])
4632 ## spring-mobility-model.h (module 'ndnSIM'): ns3::SpringMobilityModel::SpringMobilityModel() [constructor]
4633 cls.add_constructor([])
4634 ## spring-mobility-model.h (module 'ndnSIM'): void ns3::SpringMobilityModel::AddSpring(ns3::Ptr<ns3::MobilityModel> node) [member function]
4635 cls.add_method('AddSpring',
4636 'void',
4637 [param('ns3::Ptr< ns3::MobilityModel >', 'node')])
4638 ## spring-mobility-model.h (module 'ndnSIM'): static ns3::TypeId ns3::SpringMobilityModel::GetTypeId() [member function]
4639 cls.add_method('GetTypeId',
4640 'ns3::TypeId',
4641 [],
4642 is_static=True)
4643 ## spring-mobility-model.h (module 'ndnSIM'): ns3::Vector ns3::SpringMobilityModel::DoGetPosition() const [member function]
4644 cls.add_method('DoGetPosition',
4645 'ns3::Vector',
4646 [],
4647 is_const=True, visibility='private', is_virtual=True)
4648 ## spring-mobility-model.h (module 'ndnSIM'): ns3::Vector ns3::SpringMobilityModel::DoGetVelocity() const [member function]
4649 cls.add_method('DoGetVelocity',
4650 'ns3::Vector',
4651 [],
4652 is_const=True, visibility='private', is_virtual=True)
4653 ## spring-mobility-model.h (module 'ndnSIM'): void ns3::SpringMobilityModel::DoSetPosition(ns3::Vector const & position) [member function]
4654 cls.add_method('DoSetPosition',
4655 'void',
4656 [param('ns3::Vector const &', 'position')],
4657 visibility='private', is_virtual=True)
4658 ## spring-mobility-model.h (module 'ndnSIM'): void ns3::SpringMobilityModel::DoStart() [member function]
4659 cls.add_method('DoStart',
4660 'void',
4661 [],
4662 visibility='private', is_virtual=True)
4663 return
4664
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004665def register_Ns3TimeChecker_methods(root_module, cls):
4666 ## nstime.h (module 'core'): ns3::TimeChecker::TimeChecker() [constructor]
4667 cls.add_constructor([])
4668 ## nstime.h (module 'core'): ns3::TimeChecker::TimeChecker(ns3::TimeChecker const & arg0) [copy constructor]
4669 cls.add_constructor([param('ns3::TimeChecker const &', 'arg0')])
4670 return
4671
4672def register_Ns3TimeValue_methods(root_module, cls):
4673 ## nstime.h (module 'core'): ns3::TimeValue::TimeValue() [constructor]
4674 cls.add_constructor([])
4675 ## nstime.h (module 'core'): ns3::TimeValue::TimeValue(ns3::TimeValue const & arg0) [copy constructor]
4676 cls.add_constructor([param('ns3::TimeValue const &', 'arg0')])
4677 ## nstime.h (module 'core'): ns3::TimeValue::TimeValue(ns3::Time const & value) [constructor]
4678 cls.add_constructor([param('ns3::Time const &', 'value')])
4679 ## nstime.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::TimeValue::Copy() const [member function]
4680 cls.add_method('Copy',
4681 'ns3::Ptr< ns3::AttributeValue >',
4682 [],
4683 is_const=True, is_virtual=True)
4684 ## nstime.h (module 'core'): bool ns3::TimeValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
4685 cls.add_method('DeserializeFromString',
4686 'bool',
4687 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4688 is_virtual=True)
4689 ## nstime.h (module 'core'): ns3::Time ns3::TimeValue::Get() const [member function]
4690 cls.add_method('Get',
4691 'ns3::Time',
4692 [],
4693 is_const=True)
4694 ## nstime.h (module 'core'): std::string ns3::TimeValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
4695 cls.add_method('SerializeToString',
4696 'std::string',
4697 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4698 is_const=True, is_virtual=True)
4699 ## nstime.h (module 'core'): void ns3::TimeValue::Set(ns3::Time const & value) [member function]
4700 cls.add_method('Set',
4701 'void',
4702 [param('ns3::Time const &', 'value')])
4703 return
4704
4705def register_Ns3TypeIdChecker_methods(root_module, cls):
4706 ## type-id.h (module 'core'): ns3::TypeIdChecker::TypeIdChecker() [constructor]
4707 cls.add_constructor([])
4708 ## type-id.h (module 'core'): ns3::TypeIdChecker::TypeIdChecker(ns3::TypeIdChecker const & arg0) [copy constructor]
4709 cls.add_constructor([param('ns3::TypeIdChecker const &', 'arg0')])
4710 return
4711
4712def register_Ns3TypeIdValue_methods(root_module, cls):
4713 ## type-id.h (module 'core'): ns3::TypeIdValue::TypeIdValue() [constructor]
4714 cls.add_constructor([])
4715 ## type-id.h (module 'core'): ns3::TypeIdValue::TypeIdValue(ns3::TypeIdValue const & arg0) [copy constructor]
4716 cls.add_constructor([param('ns3::TypeIdValue const &', 'arg0')])
4717 ## type-id.h (module 'core'): ns3::TypeIdValue::TypeIdValue(ns3::TypeId const & value) [constructor]
4718 cls.add_constructor([param('ns3::TypeId const &', 'value')])
4719 ## type-id.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::TypeIdValue::Copy() const [member function]
4720 cls.add_method('Copy',
4721 'ns3::Ptr< ns3::AttributeValue >',
4722 [],
4723 is_const=True, is_virtual=True)
4724 ## type-id.h (module 'core'): bool ns3::TypeIdValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
4725 cls.add_method('DeserializeFromString',
4726 'bool',
4727 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4728 is_virtual=True)
4729 ## type-id.h (module 'core'): ns3::TypeId ns3::TypeIdValue::Get() const [member function]
4730 cls.add_method('Get',
4731 'ns3::TypeId',
4732 [],
4733 is_const=True)
4734 ## type-id.h (module 'core'): std::string ns3::TypeIdValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
4735 cls.add_method('SerializeToString',
4736 'std::string',
4737 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4738 is_const=True, is_virtual=True)
4739 ## type-id.h (module 'core'): void ns3::TypeIdValue::Set(ns3::TypeId const & value) [member function]
4740 cls.add_method('Set',
4741 'void',
4742 [param('ns3::TypeId const &', 'value')])
4743 return
4744
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07004745def register_Ns3UintegerValue_methods(root_module, cls):
4746 ## uinteger.h (module 'core'): ns3::UintegerValue::UintegerValue() [constructor]
4747 cls.add_constructor([])
4748 ## uinteger.h (module 'core'): ns3::UintegerValue::UintegerValue(ns3::UintegerValue const & arg0) [copy constructor]
4749 cls.add_constructor([param('ns3::UintegerValue const &', 'arg0')])
4750 ## uinteger.h (module 'core'): ns3::UintegerValue::UintegerValue(uint64_t const & value) [constructor]
4751 cls.add_constructor([param('uint64_t const &', 'value')])
4752 ## uinteger.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::UintegerValue::Copy() const [member function]
4753 cls.add_method('Copy',
4754 'ns3::Ptr< ns3::AttributeValue >',
4755 [],
4756 is_const=True, is_virtual=True)
4757 ## uinteger.h (module 'core'): bool ns3::UintegerValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
4758 cls.add_method('DeserializeFromString',
4759 'bool',
4760 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4761 is_virtual=True)
4762 ## uinteger.h (module 'core'): uint64_t ns3::UintegerValue::Get() const [member function]
4763 cls.add_method('Get',
4764 'uint64_t',
4765 [],
4766 is_const=True)
4767 ## uinteger.h (module 'core'): std::string ns3::UintegerValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
4768 cls.add_method('SerializeToString',
4769 'std::string',
4770 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4771 is_const=True, is_virtual=True)
4772 ## uinteger.h (module 'core'): void ns3::UintegerValue::Set(uint64_t const & value) [member function]
4773 cls.add_method('Set',
4774 'void',
4775 [param('uint64_t const &', 'value')])
4776 return
4777
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07004778def register_Ns3Vector2DChecker_methods(root_module, cls):
4779 ## vector.h (module 'core'): ns3::Vector2DChecker::Vector2DChecker() [constructor]
4780 cls.add_constructor([])
4781 ## vector.h (module 'core'): ns3::Vector2DChecker::Vector2DChecker(ns3::Vector2DChecker const & arg0) [copy constructor]
4782 cls.add_constructor([param('ns3::Vector2DChecker const &', 'arg0')])
4783 return
4784
4785def register_Ns3Vector2DValue_methods(root_module, cls):
4786 ## vector.h (module 'core'): ns3::Vector2DValue::Vector2DValue() [constructor]
4787 cls.add_constructor([])
4788 ## vector.h (module 'core'): ns3::Vector2DValue::Vector2DValue(ns3::Vector2DValue const & arg0) [copy constructor]
4789 cls.add_constructor([param('ns3::Vector2DValue const &', 'arg0')])
4790 ## vector.h (module 'core'): ns3::Vector2DValue::Vector2DValue(ns3::Vector2D const & value) [constructor]
4791 cls.add_constructor([param('ns3::Vector2D const &', 'value')])
4792 ## vector.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::Vector2DValue::Copy() const [member function]
4793 cls.add_method('Copy',
4794 'ns3::Ptr< ns3::AttributeValue >',
4795 [],
4796 is_const=True, is_virtual=True)
4797 ## vector.h (module 'core'): bool ns3::Vector2DValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
4798 cls.add_method('DeserializeFromString',
4799 'bool',
4800 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4801 is_virtual=True)
4802 ## vector.h (module 'core'): ns3::Vector2D ns3::Vector2DValue::Get() const [member function]
4803 cls.add_method('Get',
4804 'ns3::Vector2D',
4805 [],
4806 is_const=True)
4807 ## vector.h (module 'core'): std::string ns3::Vector2DValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
4808 cls.add_method('SerializeToString',
4809 'std::string',
4810 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4811 is_const=True, is_virtual=True)
4812 ## vector.h (module 'core'): void ns3::Vector2DValue::Set(ns3::Vector2D const & value) [member function]
4813 cls.add_method('Set',
4814 'void',
4815 [param('ns3::Vector2D const &', 'value')])
4816 return
4817
4818def register_Ns3Vector3DChecker_methods(root_module, cls):
4819 ## vector.h (module 'core'): ns3::Vector3DChecker::Vector3DChecker() [constructor]
4820 cls.add_constructor([])
4821 ## vector.h (module 'core'): ns3::Vector3DChecker::Vector3DChecker(ns3::Vector3DChecker const & arg0) [copy constructor]
4822 cls.add_constructor([param('ns3::Vector3DChecker const &', 'arg0')])
4823 return
4824
4825def register_Ns3Vector3DValue_methods(root_module, cls):
4826 ## vector.h (module 'core'): ns3::Vector3DValue::Vector3DValue() [constructor]
4827 cls.add_constructor([])
4828 ## vector.h (module 'core'): ns3::Vector3DValue::Vector3DValue(ns3::Vector3DValue const & arg0) [copy constructor]
4829 cls.add_constructor([param('ns3::Vector3DValue const &', 'arg0')])
4830 ## vector.h (module 'core'): ns3::Vector3DValue::Vector3DValue(ns3::Vector3D const & value) [constructor]
4831 cls.add_constructor([param('ns3::Vector3D const &', 'value')])
4832 ## vector.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::Vector3DValue::Copy() const [member function]
4833 cls.add_method('Copy',
4834 'ns3::Ptr< ns3::AttributeValue >',
4835 [],
4836 is_const=True, is_virtual=True)
4837 ## vector.h (module 'core'): bool ns3::Vector3DValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
4838 cls.add_method('DeserializeFromString',
4839 'bool',
4840 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4841 is_virtual=True)
4842 ## vector.h (module 'core'): ns3::Vector3D ns3::Vector3DValue::Get() const [member function]
4843 cls.add_method('Get',
4844 'ns3::Vector3D',
4845 [],
4846 is_const=True)
4847 ## vector.h (module 'core'): std::string ns3::Vector3DValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
4848 cls.add_method('SerializeToString',
4849 'std::string',
4850 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4851 is_const=True, is_virtual=True)
4852 ## vector.h (module 'core'): void ns3::Vector3DValue::Set(ns3::Vector3D const & value) [member function]
4853 cls.add_method('Set',
4854 'void',
4855 [param('ns3::Vector3D const &', 'value')])
4856 return
4857
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004858def register_Ns3AddressChecker_methods(root_module, cls):
4859 ## address.h (module 'network'): ns3::AddressChecker::AddressChecker() [constructor]
4860 cls.add_constructor([])
4861 ## address.h (module 'network'): ns3::AddressChecker::AddressChecker(ns3::AddressChecker const & arg0) [copy constructor]
4862 cls.add_constructor([param('ns3::AddressChecker const &', 'arg0')])
4863 return
4864
4865def register_Ns3AddressValue_methods(root_module, cls):
4866 ## address.h (module 'network'): ns3::AddressValue::AddressValue() [constructor]
4867 cls.add_constructor([])
4868 ## address.h (module 'network'): ns3::AddressValue::AddressValue(ns3::AddressValue const & arg0) [copy constructor]
4869 cls.add_constructor([param('ns3::AddressValue const &', 'arg0')])
4870 ## address.h (module 'network'): ns3::AddressValue::AddressValue(ns3::Address const & value) [constructor]
4871 cls.add_constructor([param('ns3::Address const &', 'value')])
4872 ## address.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::AddressValue::Copy() const [member function]
4873 cls.add_method('Copy',
4874 'ns3::Ptr< ns3::AttributeValue >',
4875 [],
4876 is_const=True, is_virtual=True)
4877 ## address.h (module 'network'): bool ns3::AddressValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
4878 cls.add_method('DeserializeFromString',
4879 'bool',
4880 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4881 is_virtual=True)
4882 ## address.h (module 'network'): ns3::Address ns3::AddressValue::Get() const [member function]
4883 cls.add_method('Get',
4884 'ns3::Address',
4885 [],
4886 is_const=True)
4887 ## address.h (module 'network'): std::string ns3::AddressValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
4888 cls.add_method('SerializeToString',
4889 'std::string',
4890 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4891 is_const=True, is_virtual=True)
4892 ## address.h (module 'network'): void ns3::AddressValue::Set(ns3::Address const & value) [member function]
4893 cls.add_method('Set',
4894 'void',
4895 [param('ns3::Address const &', 'value')])
4896 return
4897
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004898def register_Ns3NdnApp_methods(root_module, cls):
4899 ## ndn-app.h (module 'ndnSIM'): ns3::ndn::App::App(ns3::ndn::App const & arg0) [copy constructor]
4900 cls.add_constructor([param('ns3::ndn::App const &', 'arg0')])
4901 ## ndn-app.h (module 'ndnSIM'): ns3::ndn::App::App() [constructor]
4902 cls.add_constructor([])
4903 ## ndn-app.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::App::GetTypeId() [member function]
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07004904 cls.add_method('GetTypeId',
4905 'ns3::TypeId',
4906 [],
4907 is_static=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004908 ## ndn-app.h (module 'ndnSIM'): void ns3::ndn::App::OnContentObject(ns3::Ptr<ns3::ndn::ContentObjectHeader const> const & contentObject, ns3::Ptr<ns3::Packet> payload) [member function]
4909 cls.add_method('OnContentObject',
4910 'void',
4911 [param('ns3::Ptr< ns3::ndn::ContentObjectHeader const > const &', 'contentObject'), param('ns3::Ptr< ns3::Packet >', 'payload')],
4912 is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07004913 ## ndn-app.h (module 'ndnSIM'): void ns3::ndn::App::OnInterest(ns3::Ptr<ns3::ndn::InterestHeader const> const & interest, ns3::Ptr<ns3::Packet> packet) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004914 cls.add_method('OnInterest',
4915 'void',
4916 [param('ns3::Ptr< ns3::ndn::InterestHeader const > const &', 'interest'), param('ns3::Ptr< ns3::Packet >', 'packet')],
4917 is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07004918 ## ndn-app.h (module 'ndnSIM'): void ns3::ndn::App::OnNack(ns3::Ptr<ns3::ndn::InterestHeader const> const & interest, ns3::Ptr<ns3::Packet> packet) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004919 cls.add_method('OnNack',
4920 'void',
4921 [param('ns3::Ptr< ns3::ndn::InterestHeader const > const &', 'interest'), param('ns3::Ptr< ns3::Packet >', 'packet')],
4922 is_virtual=True)
4923 ## ndn-app.h (module 'ndnSIM'): void ns3::ndn::App::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]
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07004924 cls.add_method('RegisterProtocolHandler',
4925 'void',
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004926 [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')])
4927 ## ndn-app.h (module 'ndnSIM'): void ns3::ndn::App::DoDispose() [member function]
4928 cls.add_method('DoDispose',
4929 'void',
4930 [],
4931 visibility='protected', is_virtual=True)
4932 ## ndn-app.h (module 'ndnSIM'): void ns3::ndn::App::StartApplication() [member function]
4933 cls.add_method('StartApplication',
4934 'void',
4935 [],
4936 visibility='protected', is_virtual=True)
4937 ## ndn-app.h (module 'ndnSIM'): void ns3::ndn::App::StopApplication() [member function]
4938 cls.add_method('StopApplication',
4939 'void',
4940 [],
4941 visibility='protected', is_virtual=True)
4942 return
4943
4944def register_Ns3NdnAppHelper_methods(root_module, cls):
4945 ## ndn-app-helper.h (module 'ndnSIM'): ns3::ndn::AppHelper::AppHelper(ns3::ndn::AppHelper const & arg0) [copy constructor]
4946 cls.add_constructor([param('ns3::ndn::AppHelper const &', 'arg0')])
4947 ## ndn-app-helper.h (module 'ndnSIM'): ns3::ndn::AppHelper::AppHelper(std::string const & prefix) [constructor]
4948 cls.add_constructor([param('std::string const &', 'prefix')])
4949 ## ndn-app-helper.h (module 'ndnSIM'): ns3::ApplicationContainer ns3::ndn::AppHelper::Install(ns3::NodeContainer c) [member function]
4950 cls.add_method('Install',
4951 'ns3::ApplicationContainer',
4952 [param('ns3::NodeContainer', 'c')])
4953 ## ndn-app-helper.h (module 'ndnSIM'): ns3::ApplicationContainer ns3::ndn::AppHelper::Install(ns3::Ptr<ns3::Node> node) [member function]
4954 cls.add_method('Install',
4955 'ns3::ApplicationContainer',
4956 [param('ns3::Ptr< ns3::Node >', 'node')])
4957 ## ndn-app-helper.h (module 'ndnSIM'): ns3::ApplicationContainer ns3::ndn::AppHelper::Install(std::string nodeName) [member function]
4958 cls.add_method('Install',
4959 'ns3::ApplicationContainer',
4960 [param('std::string', 'nodeName')])
4961 ## ndn-app-helper.h (module 'ndnSIM'): void ns3::ndn::AppHelper::SetAttribute(std::string name, ns3::AttributeValue const & value) [member function]
4962 cls.add_method('SetAttribute',
4963 'void',
4964 [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')])
4965 ## ndn-app-helper.h (module 'ndnSIM'): void ns3::ndn::AppHelper::SetPrefix(std::string const & prefix) [member function]
4966 cls.add_method('SetPrefix',
4967 'void',
4968 [param('std::string const &', 'prefix')])
4969 return
4970
4971def register_Ns3NdnContentObjectHeader_methods(root_module, cls):
4972 ## ndn-content-object-header.h (module 'ndnSIM'): ns3::ndn::ContentObjectHeader::ContentObjectHeader(ns3::ndn::ContentObjectHeader const & arg0) [copy constructor]
4973 cls.add_constructor([param('ns3::ndn::ContentObjectHeader const &', 'arg0')])
4974 ## ndn-content-object-header.h (module 'ndnSIM'): ns3::ndn::ContentObjectHeader::ContentObjectHeader() [constructor]
4975 cls.add_constructor([])
4976 ## ndn-content-object-header.h (module 'ndnSIM'): uint32_t ns3::ndn::ContentObjectHeader::Deserialize(ns3::Buffer::Iterator start) [member function]
4977 cls.add_method('Deserialize',
4978 'uint32_t',
4979 [param('ns3::Buffer::Iterator', 'start')],
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07004980 is_virtual=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004981 ## ndn-content-object-header.h (module 'ndnSIM'): ns3::TypeId ns3::ndn::ContentObjectHeader::GetInstanceTypeId() const [member function]
4982 cls.add_method('GetInstanceTypeId',
4983 'ns3::TypeId',
4984 [],
4985 is_const=True, is_virtual=True)
4986 ## ndn-content-object-header.h (module 'ndnSIM'): ns3::ndn::NameComponents const & ns3::ndn::ContentObjectHeader::GetName() const [member function]
4987 cls.add_method('GetName',
4988 'ns3::ndn::NameComponents const &',
4989 [],
4990 is_const=True)
4991 ## ndn-content-object-header.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::NameComponents const> ns3::ndn::ContentObjectHeader::GetNamePtr() const [member function]
4992 cls.add_method('GetNamePtr',
4993 'ns3::Ptr< ns3::ndn::NameComponents const >',
4994 [],
4995 is_const=True)
4996 ## ndn-content-object-header.h (module 'ndnSIM'): uint32_t ns3::ndn::ContentObjectHeader::GetSerializedSize() const [member function]
4997 cls.add_method('GetSerializedSize',
4998 'uint32_t',
4999 [],
5000 is_const=True, is_virtual=True)
5001 ## ndn-content-object-header.h (module 'ndnSIM'): ns3::ndn::ContentObjectHeader::Signature & ns3::ndn::ContentObjectHeader::GetSignature() [member function]
5002 cls.add_method('GetSignature',
5003 'ns3::ndn::ContentObjectHeader::Signature &',
5004 [])
5005 ## ndn-content-object-header.h (module 'ndnSIM'): ns3::ndn::ContentObjectHeader::Signature const & ns3::ndn::ContentObjectHeader::GetSignature() const [member function]
5006 cls.add_method('GetSignature',
5007 'ns3::ndn::ContentObjectHeader::Signature const &',
5008 [],
5009 is_const=True)
5010 ## ndn-content-object-header.h (module 'ndnSIM'): ns3::ndn::ContentObjectHeader::SignedInfo & ns3::ndn::ContentObjectHeader::GetSignedInfo() [member function]
5011 cls.add_method('GetSignedInfo',
5012 'ns3::ndn::ContentObjectHeader::SignedInfo &',
5013 [])
5014 ## ndn-content-object-header.h (module 'ndnSIM'): ns3::ndn::ContentObjectHeader::SignedInfo const & ns3::ndn::ContentObjectHeader::GetSignedInfo() const [member function]
5015 cls.add_method('GetSignedInfo',
5016 'ns3::ndn::ContentObjectHeader::SignedInfo const &',
5017 [],
5018 is_const=True)
5019 ## ndn-content-object-header.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::ContentObjectHeader::GetTypeId() [member function]
5020 cls.add_method('GetTypeId',
5021 'ns3::TypeId',
5022 [],
5023 is_static=True)
5024 ## ndn-content-object-header.h (module 'ndnSIM'): void ns3::ndn::ContentObjectHeader::Print(std::ostream & os) const [member function]
5025 cls.add_method('Print',
5026 'void',
5027 [param('std::ostream &', 'os')],
5028 is_const=True, is_virtual=True)
5029 ## ndn-content-object-header.h (module 'ndnSIM'): void ns3::ndn::ContentObjectHeader::Serialize(ns3::Buffer::Iterator start) const [member function]
5030 cls.add_method('Serialize',
5031 'void',
5032 [param('ns3::Buffer::Iterator', 'start')],
5033 is_const=True, is_virtual=True)
5034 ## ndn-content-object-header.h (module 'ndnSIM'): void ns3::ndn::ContentObjectHeader::SetName(ns3::Ptr<ns3::ndn::NameComponents> const & name) [member function]
5035 cls.add_method('SetName',
5036 'void',
5037 [param('ns3::Ptr< ns3::ndn::NameComponents > const &', 'name')])
5038 return
5039
5040def register_Ns3NdnContentObjectHeaderSignature_methods(root_module, cls):
5041 ## ndn-content-object-header.h (module 'ndnSIM'): ns3::ndn::ContentObjectHeader::Signature::Signature(ns3::ndn::ContentObjectHeader::Signature const & arg0) [copy constructor]
5042 cls.add_constructor([param('ns3::ndn::ContentObjectHeader::Signature const &', 'arg0')])
5043 ## ndn-content-object-header.h (module 'ndnSIM'): ns3::ndn::ContentObjectHeader::Signature::Signature() [constructor]
5044 cls.add_constructor([])
5045 ## ndn-content-object-header.h (module 'ndnSIM'): std::string const & ns3::ndn::ContentObjectHeader::Signature::GetDigestAlgorithm() const [member function]
5046 cls.add_method('GetDigestAlgorithm',
5047 'std::string const &',
5048 [],
5049 is_const=True)
5050 ## ndn-content-object-header.h (module 'ndnSIM'): uint32_t ns3::ndn::ContentObjectHeader::Signature::GetSignatureBits() const [member function]
5051 cls.add_method('GetSignatureBits',
5052 'uint32_t',
5053 [],
5054 is_const=True)
5055 ## ndn-content-object-header.h (module 'ndnSIM'): void ns3::ndn::ContentObjectHeader::Signature::SetDigestAlgorithm(std::string const & digestAlgorithm) [member function]
5056 cls.add_method('SetDigestAlgorithm',
5057 'void',
5058 [param('std::string const &', 'digestAlgorithm')])
5059 ## ndn-content-object-header.h (module 'ndnSIM'): void ns3::ndn::ContentObjectHeader::Signature::SetSignatureBits(uint32_t signature) [member function]
5060 cls.add_method('SetSignatureBits',
5061 'void',
5062 [param('uint32_t', 'signature')])
5063 ## ndn-content-object-header.h (module 'ndnSIM'): ns3::ndn::ContentObjectHeader::Signature::DefaultDigestAlgorithm [variable]
5064 cls.add_static_attribute('DefaultDigestAlgorithm', 'std::string const', is_const=True)
5065 return
5066
5067def register_Ns3NdnContentObjectHeaderSignedInfo_methods(root_module, cls):
5068 ## ndn-content-object-header.h (module 'ndnSIM'): ns3::ndn::ContentObjectHeader::SignedInfo::SignedInfo(ns3::ndn::ContentObjectHeader::SignedInfo const & arg0) [copy constructor]
5069 cls.add_constructor([param('ns3::ndn::ContentObjectHeader::SignedInfo const &', 'arg0')])
5070 ## ndn-content-object-header.h (module 'ndnSIM'): ns3::ndn::ContentObjectHeader::SignedInfo::SignedInfo() [constructor]
5071 cls.add_constructor([])
5072 ## ndn-content-object-header.h (module 'ndnSIM'): ns3::ndn::ContentObjectHeader::ContentType ns3::ndn::ContentObjectHeader::SignedInfo::GetContentType() const [member function]
5073 cls.add_method('GetContentType',
5074 'ns3::ndn::ContentObjectHeader::ContentType',
5075 [],
5076 is_const=True)
5077 ## ndn-content-object-header.h (module 'ndnSIM'): ns3::Time ns3::ndn::ContentObjectHeader::SignedInfo::GetFreshness() const [member function]
5078 cls.add_method('GetFreshness',
5079 'ns3::Time',
5080 [],
5081 is_const=True)
5082 ## ndn-content-object-header.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::NameComponents const> ns3::ndn::ContentObjectHeader::SignedInfo::GetKeyLocator() const [member function]
5083 cls.add_method('GetKeyLocator',
5084 'ns3::Ptr< ns3::ndn::NameComponents const >',
5085 [],
5086 is_const=True)
5087 ## ndn-content-object-header.h (module 'ndnSIM'): uint32_t ns3::ndn::ContentObjectHeader::SignedInfo::GetPublisherPublicKeyDigest() const [member function]
5088 cls.add_method('GetPublisherPublicKeyDigest',
5089 'uint32_t',
5090 [],
5091 is_const=True)
5092 ## ndn-content-object-header.h (module 'ndnSIM'): ns3::Time ns3::ndn::ContentObjectHeader::SignedInfo::GetTimestamp() const [member function]
5093 cls.add_method('GetTimestamp',
5094 'ns3::Time',
5095 [],
5096 is_const=True)
5097 ## ndn-content-object-header.h (module 'ndnSIM'): void ns3::ndn::ContentObjectHeader::SignedInfo::SetContentType(ns3::ndn::ContentObjectHeader::ContentType type) [member function]
5098 cls.add_method('SetContentType',
5099 'void',
5100 [param('ns3::ndn::ContentObjectHeader::ContentType', 'type')])
5101 ## ndn-content-object-header.h (module 'ndnSIM'): void ns3::ndn::ContentObjectHeader::SignedInfo::SetFreshness(ns3::Time const & freshness) [member function]
5102 cls.add_method('SetFreshness',
5103 'void',
5104 [param('ns3::Time const &', 'freshness')])
5105 ## ndn-content-object-header.h (module 'ndnSIM'): void ns3::ndn::ContentObjectHeader::SignedInfo::SetKeyLocator(ns3::Ptr<ns3::ndn::NameComponents const> keyLocator) [member function]
5106 cls.add_method('SetKeyLocator',
5107 'void',
5108 [param('ns3::Ptr< ns3::ndn::NameComponents const >', 'keyLocator')])
5109 ## ndn-content-object-header.h (module 'ndnSIM'): void ns3::ndn::ContentObjectHeader::SignedInfo::SetPublisherPublicKeyDigest(uint32_t digest) [member function]
5110 cls.add_method('SetPublisherPublicKeyDigest',
5111 'void',
5112 [param('uint32_t', 'digest')])
5113 ## ndn-content-object-header.h (module 'ndnSIM'): void ns3::ndn::ContentObjectHeader::SignedInfo::SetTimestamp(ns3::Time const & timestamp) [member function]
5114 cls.add_method('SetTimestamp',
5115 'void',
5116 [param('ns3::Time const &', 'timestamp')])
5117 return
5118
5119def register_Ns3NdnContentObjectHeaderException_methods(root_module, cls):
5120 ## ndn-content-object-header.h (module 'ndnSIM'): ns3::ndn::ContentObjectHeaderException::ContentObjectHeaderException() [constructor]
5121 cls.add_constructor([])
5122 ## ndn-content-object-header.h (module 'ndnSIM'): ns3::ndn::ContentObjectHeaderException::ContentObjectHeaderException(ns3::ndn::ContentObjectHeaderException const & arg0) [copy constructor]
5123 cls.add_constructor([param('ns3::ndn::ContentObjectHeaderException const &', 'arg0')])
5124 return
5125
5126def register_Ns3NdnContentObjectTail_methods(root_module, cls):
5127 ## ndn-content-object-header.h (module 'ndnSIM'): ns3::ndn::ContentObjectTail::ContentObjectTail(ns3::ndn::ContentObjectTail const & arg0) [copy constructor]
5128 cls.add_constructor([param('ns3::ndn::ContentObjectTail const &', 'arg0')])
5129 ## ndn-content-object-header.h (module 'ndnSIM'): ns3::ndn::ContentObjectTail::ContentObjectTail() [constructor]
5130 cls.add_constructor([])
5131 ## ndn-content-object-header.h (module 'ndnSIM'): uint32_t ns3::ndn::ContentObjectTail::Deserialize(ns3::Buffer::Iterator start) [member function]
5132 cls.add_method('Deserialize',
5133 'uint32_t',
5134 [param('ns3::Buffer::Iterator', 'start')],
5135 is_virtual=True)
5136 ## ndn-content-object-header.h (module 'ndnSIM'): ns3::TypeId ns3::ndn::ContentObjectTail::GetInstanceTypeId() const [member function]
5137 cls.add_method('GetInstanceTypeId',
5138 'ns3::TypeId',
5139 [],
5140 is_const=True, is_virtual=True)
5141 ## ndn-content-object-header.h (module 'ndnSIM'): uint32_t ns3::ndn::ContentObjectTail::GetSerializedSize() const [member function]
5142 cls.add_method('GetSerializedSize',
5143 'uint32_t',
5144 [],
5145 is_const=True, is_virtual=True)
5146 ## ndn-content-object-header.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::ContentObjectTail::GetTypeId() [member function]
5147 cls.add_method('GetTypeId',
5148 'ns3::TypeId',
5149 [],
5150 is_static=True)
5151 ## ndn-content-object-header.h (module 'ndnSIM'): void ns3::ndn::ContentObjectTail::Print(std::ostream & os) const [member function]
5152 cls.add_method('Print',
5153 'void',
5154 [param('std::ostream &', 'os')],
5155 is_const=True, is_virtual=True)
5156 ## ndn-content-object-header.h (module 'ndnSIM'): void ns3::ndn::ContentObjectTail::Serialize(ns3::Buffer::Iterator start) const [member function]
5157 cls.add_method('Serialize',
5158 'void',
5159 [param('ns3::Buffer::Iterator', 'start')],
5160 is_const=True, is_virtual=True)
5161 return
5162
5163def register_Ns3NdnContentStore_methods(root_module, cls):
5164 cls.add_output_stream_operator()
5165 ## ndn-content-store.h (module 'ndnSIM'): ns3::ndn::ContentStore::ContentStore() [constructor]
5166 cls.add_constructor([])
5167 ## ndn-content-store.h (module 'ndnSIM'): ns3::ndn::ContentStore::ContentStore(ns3::ndn::ContentStore const & arg0) [copy constructor]
5168 cls.add_constructor([param('ns3::ndn::ContentStore const &', 'arg0')])
5169 ## ndn-content-store.h (module 'ndnSIM'): bool ns3::ndn::ContentStore::Add(ns3::Ptr<ns3::ndn::ContentObjectHeader const> header, ns3::Ptr<const ns3::Packet> packet) [member function]
5170 cls.add_method('Add',
5171 'bool',
5172 [param('ns3::Ptr< ns3::ndn::ContentObjectHeader const >', 'header'), param('ns3::Ptr< ns3::Packet const >', 'packet')],
5173 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07005174 ## ndn-content-store.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::cs::Entry> ns3::ndn::ContentStore::Begin() [member function]
5175 cls.add_method('Begin',
5176 'ns3::Ptr< ns3::ndn::cs::Entry >',
5177 [],
5178 is_pure_virtual=True, is_virtual=True)
5179 ## ndn-content-store.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::cs::Entry> ns3::ndn::ContentStore::End() [member function]
5180 cls.add_method('End',
5181 'ns3::Ptr< ns3::ndn::cs::Entry >',
5182 [],
5183 is_pure_virtual=True, is_virtual=True)
5184 ## ndn-content-store.h (module 'ndnSIM'): static ns3::Ptr<ns3::ndn::ContentStore> ns3::ndn::ContentStore::GetContentStore(ns3::Ptr<ns3::Object> node) [member function]
5185 cls.add_method('GetContentStore',
5186 'ns3::Ptr< ns3::ndn::ContentStore >',
5187 [param('ns3::Ptr< ns3::Object >', 'node')],
5188 is_static=True)
5189 ## ndn-content-store.h (module 'ndnSIM'): uint32_t ns3::ndn::ContentStore::GetSize() const [member function]
5190 cls.add_method('GetSize',
5191 'uint32_t',
5192 [],
5193 is_pure_virtual=True, is_const=True, is_virtual=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005194 ## ndn-content-store.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::ContentStore::GetTypeId() [member function]
5195 cls.add_method('GetTypeId',
5196 'ns3::TypeId',
5197 [],
5198 is_static=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005199 ## ndn-content-store.h (module 'ndnSIM'): boost::tuples::tuple<ns3::Ptr<ns3::Packet>,ns3::Ptr<const ns3::ndn::ContentObjectHeader>,ns3::Ptr<const ns3::Packet>,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> ns3::ndn::ContentStore::Lookup(ns3::Ptr<ns3::ndn::InterestHeader const> interest) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005200 cls.add_method('Lookup',
5201 'boost::tuples::tuple< ns3::Ptr< ns3::Packet >, ns3::Ptr< ns3::ndn::ContentObjectHeader const >, ns3::Ptr< ns3::Packet const >, 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 >',
5202 [param('ns3::Ptr< ns3::ndn::InterestHeader const >', 'interest')],
5203 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07005204 ## ndn-content-store.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::cs::Entry> ns3::ndn::ContentStore::Next(ns3::Ptr<ns3::ndn::cs::Entry> arg0) [member function]
5205 cls.add_method('Next',
5206 'ns3::Ptr< ns3::ndn::cs::Entry >',
5207 [param('ns3::Ptr< ns3::ndn::cs::Entry >', 'arg0')],
5208 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005209 ## ndn-content-store.h (module 'ndnSIM'): void ns3::ndn::ContentStore::Print(std::ostream & os) const [member function]
5210 cls.add_method('Print',
5211 'void',
5212 [param('std::ostream &', 'os')],
5213 is_pure_virtual=True, is_const=True, is_virtual=True)
5214 return
5215
5216def register_Ns3NdnFace_methods(root_module, cls):
5217 cls.add_output_stream_operator()
5218 cls.add_binary_comparison_operator('!=')
5219 cls.add_binary_comparison_operator('<')
5220 cls.add_binary_comparison_operator('==')
5221 ## ndn-face.h (module 'ndnSIM'): ns3::ndn::Face::Face(ns3::Ptr<ns3::Node> node) [constructor]
5222 cls.add_constructor([param('ns3::Ptr< ns3::Node >', 'node')])
5223 ## ndn-face.h (module 'ndnSIM'): uint32_t ns3::ndn::Face::GetId() const [member function]
5224 cls.add_method('GetId',
5225 'uint32_t',
5226 [],
5227 is_const=True)
5228 ## ndn-face.h (module 'ndnSIM'): uint16_t ns3::ndn::Face::GetMetric() const [member function]
5229 cls.add_method('GetMetric',
5230 'uint16_t',
5231 [],
5232 is_const=True, is_virtual=True)
5233 ## ndn-face.h (module 'ndnSIM'): ns3::Ptr<ns3::Node> ns3::ndn::Face::GetNode() const [member function]
5234 cls.add_method('GetNode',
5235 'ns3::Ptr< ns3::Node >',
5236 [],
5237 is_const=True)
5238 ## ndn-face.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::Face::GetTypeId() [member function]
5239 cls.add_method('GetTypeId',
5240 'ns3::TypeId',
5241 [],
5242 is_static=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005243 ## ndn-face.h (module 'ndnSIM'): bool ns3::ndn::Face::IsUp() const [member function]
5244 cls.add_method('IsUp',
5245 'bool',
5246 [],
5247 is_const=True, is_virtual=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005248 ## ndn-face.h (module 'ndnSIM'): std::ostream & ns3::ndn::Face::Print(std::ostream & os) const [member function]
Alexander Afanasyev3073da82012-06-19 14:57:43 -07005249 cls.add_method('Print',
5250 'std::ostream &',
5251 [param('std::ostream &', 'os')],
5252 is_const=True, is_virtual=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005253 ## ndn-face.h (module 'ndnSIM'): bool ns3::ndn::Face::Receive(ns3::Ptr<const ns3::Packet> const & p) [member function]
5254 cls.add_method('Receive',
5255 'bool',
5256 [param('ns3::Ptr< ns3::Packet const > const &', 'p')])
5257 ## ndn-face.h (module 'ndnSIM'): void ns3::ndn::Face::RegisterProtocolHandler(ns3::Callback<void, ns3::Ptr<ns3::ndn::Face> const&, ns3::Ptr<ns3::Packet const> const&, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> handler) [member function]
5258 cls.add_method('RegisterProtocolHandler',
5259 'void',
5260 [param('ns3::Callback< void, ns3::Ptr< ns3::ndn::Face >, ns3::Ptr< ns3::Packet const >, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'handler')],
5261 is_virtual=True)
5262 ## ndn-face.h (module 'ndnSIM'): bool ns3::ndn::Face::Send(ns3::Ptr<ns3::Packet> p) [member function]
5263 cls.add_method('Send',
5264 'bool',
5265 [param('ns3::Ptr< ns3::Packet >', 'p')])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005266 ## ndn-face.h (module 'ndnSIM'): void ns3::ndn::Face::SetId(uint32_t id) [member function]
5267 cls.add_method('SetId',
5268 'void',
5269 [param('uint32_t', 'id')])
5270 ## ndn-face.h (module 'ndnSIM'): void ns3::ndn::Face::SetMetric(uint16_t metric) [member function]
5271 cls.add_method('SetMetric',
5272 'void',
5273 [param('uint16_t', 'metric')],
5274 is_virtual=True)
5275 ## ndn-face.h (module 'ndnSIM'): void ns3::ndn::Face::SetUp(bool up=true) [member function]
5276 cls.add_method('SetUp',
5277 'void',
5278 [param('bool', 'up', default_value='true')],
5279 is_virtual=True)
5280 ## ndn-face.h (module 'ndnSIM'): bool ns3::ndn::Face::SendImpl(ns3::Ptr<ns3::Packet> p) [member function]
5281 cls.add_method('SendImpl',
5282 'bool',
5283 [param('ns3::Ptr< ns3::Packet >', 'p')],
5284 is_pure_virtual=True, visibility='protected', is_virtual=True)
5285 return
5286
5287def register_Ns3NdnFaceContainer_methods(root_module, cls):
5288 ## ndn-face-container.h (module 'ndnSIM'): ns3::ndn::FaceContainer::FaceContainer() [constructor]
5289 cls.add_constructor([])
5290 ## ndn-face-container.h (module 'ndnSIM'): ns3::ndn::FaceContainer::FaceContainer(ns3::ndn::FaceContainer const & other) [copy constructor]
5291 cls.add_constructor([param('ns3::ndn::FaceContainer const &', 'other')])
5292 ## ndn-face-container.h (module 'ndnSIM'): void ns3::ndn::FaceContainer::Add(ns3::Ptr<ns3::ndn::Face> const & face) [member function]
5293 cls.add_method('Add',
5294 'void',
5295 [param('ns3::Ptr< ns3::ndn::Face > const &', 'face')])
5296 ## ndn-face-container.h (module 'ndnSIM'): void ns3::ndn::FaceContainer::AddAll(ns3::Ptr<ns3::ndn::FaceContainer> other) [member function]
5297 cls.add_method('AddAll',
5298 'void',
5299 [param('ns3::Ptr< ns3::ndn::FaceContainer >', 'other')])
5300 ## ndn-face-container.h (module 'ndnSIM'): void ns3::ndn::FaceContainer::AddAll(ns3::ndn::FaceContainer const & other) [member function]
5301 cls.add_method('AddAll',
5302 'void',
5303 [param('ns3::ndn::FaceContainer const &', 'other')])
5304 ## ndn-face-container.h (module 'ndnSIM'): __gnu_cxx::__normal_iterator<const ns3::Ptr<ns3::ndn::Face>*,std::vector<ns3::Ptr<ns3::ndn::Face>, std::allocator<ns3::Ptr<ns3::ndn::Face> > > > ns3::ndn::FaceContainer::Begin() const [member function]
5305 cls.add_method('Begin',
5306 '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::ndn::Face > const, std::vector< ns3::Ptr< ns3::ndn::Face > > >',
5307 [],
5308 is_const=True)
5309 ## ndn-face-container.h (module 'ndnSIM'): __gnu_cxx::__normal_iterator<const ns3::Ptr<ns3::ndn::Face>*,std::vector<ns3::Ptr<ns3::ndn::Face>, std::allocator<ns3::Ptr<ns3::ndn::Face> > > > ns3::ndn::FaceContainer::End() const [member function]
5310 cls.add_method('End',
5311 '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::ndn::Face > const, std::vector< ns3::Ptr< ns3::ndn::Face > > >',
5312 [],
5313 is_const=True)
5314 ## ndn-face-container.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::Face> ns3::ndn::FaceContainer::Get(__gnu_cxx::__normal_iterator<const ns3::Ptr<ns3::ndn::Face>*,std::vector<ns3::Ptr<ns3::ndn::Face>, std::allocator<ns3::Ptr<ns3::ndn::Face> > > > i) const [member function]
5315 cls.add_method('Get',
5316 'ns3::Ptr< ns3::ndn::Face >',
5317 [param('__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::ndn::Face > const, std::vector< ns3::Ptr< ns3::ndn::Face > > >', 'i')],
5318 is_const=True)
5319 ## ndn-face-container.h (module 'ndnSIM'): uint32_t ns3::ndn::FaceContainer::GetN() const [member function]
5320 cls.add_method('GetN',
5321 'uint32_t',
5322 [],
5323 is_const=True)
5324 return
5325
5326def register_Ns3NdnFib_methods(root_module, cls):
5327 cls.add_output_stream_operator()
5328 ## ndn-fib.h (module 'ndnSIM'): ns3::ndn::Fib::Fib() [constructor]
5329 cls.add_constructor([])
5330 ## ndn-fib.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::fib::Entry> ns3::ndn::Fib::Add(ns3::ndn::NameComponents const & prefix, ns3::Ptr<ns3::ndn::Face> face, int32_t metric) [member function]
5331 cls.add_method('Add',
5332 'ns3::Ptr< ns3::ndn::fib::Entry >',
5333 [param('ns3::ndn::NameComponents const &', 'prefix'), param('ns3::Ptr< ns3::ndn::Face >', 'face'), param('int32_t', 'metric')],
5334 is_pure_virtual=True, is_virtual=True)
5335 ## ndn-fib.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::fib::Entry> ns3::ndn::Fib::Add(ns3::Ptr<ns3::ndn::NameComponents const> const & prefix, ns3::Ptr<ns3::ndn::Face> face, int32_t metric) [member function]
5336 cls.add_method('Add',
5337 'ns3::Ptr< ns3::ndn::fib::Entry >',
5338 [param('ns3::Ptr< ns3::ndn::NameComponents const > const &', 'prefix'), param('ns3::Ptr< ns3::ndn::Face >', 'face'), param('int32_t', 'metric')],
5339 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005340 ## ndn-fib.h (module 'ndnSIM'): ns3::Ptr<const ns3::ndn::fib::Entry> ns3::ndn::Fib::Begin() const [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005341 cls.add_method('Begin',
5342 'ns3::Ptr< ns3::ndn::fib::Entry const >',
5343 [],
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005344 is_pure_virtual=True, is_const=True, is_virtual=True)
5345 ## ndn-fib.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::fib::Entry> ns3::ndn::Fib::Begin() [member function]
5346 cls.add_method('Begin',
5347 'ns3::Ptr< ns3::ndn::fib::Entry >',
5348 [],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005349 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005350 ## ndn-fib.h (module 'ndnSIM'): ns3::Ptr<const ns3::ndn::fib::Entry> ns3::ndn::Fib::End() const [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005351 cls.add_method('End',
5352 'ns3::Ptr< ns3::ndn::fib::Entry const >',
5353 [],
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005354 is_pure_virtual=True, is_const=True, is_virtual=True)
5355 ## ndn-fib.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::fib::Entry> ns3::ndn::Fib::End() [member function]
5356 cls.add_method('End',
5357 'ns3::Ptr< ns3::ndn::fib::Entry >',
5358 [],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005359 is_pure_virtual=True, is_virtual=True)
5360 ## ndn-fib.h (module 'ndnSIM'): static ns3::Ptr<ns3::ndn::Fib> ns3::ndn::Fib::GetFib(ns3::Ptr<ns3::Object> node) [member function]
5361 cls.add_method('GetFib',
5362 'ns3::Ptr< ns3::ndn::Fib >',
5363 [param('ns3::Ptr< ns3::Object >', 'node')],
5364 is_static=True)
5365 ## ndn-fib.h (module 'ndnSIM'): uint32_t ns3::ndn::Fib::GetSize() const [member function]
5366 cls.add_method('GetSize',
5367 'uint32_t',
5368 [],
5369 is_pure_virtual=True, is_const=True, is_virtual=True)
5370 ## ndn-fib.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::Fib::GetTypeId() [member function]
5371 cls.add_method('GetTypeId',
5372 'ns3::TypeId',
5373 [],
5374 is_static=True)
5375 ## ndn-fib.h (module 'ndnSIM'): void ns3::ndn::Fib::InvalidateAll() [member function]
5376 cls.add_method('InvalidateAll',
5377 'void',
5378 [],
5379 is_pure_virtual=True, is_virtual=True)
5380 ## ndn-fib.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::fib::Entry> ns3::ndn::Fib::LongestPrefixMatch(ns3::ndn::InterestHeader const & interest) [member function]
5381 cls.add_method('LongestPrefixMatch',
5382 'ns3::Ptr< ns3::ndn::fib::Entry >',
5383 [param('ns3::ndn::InterestHeader const &', 'interest')],
5384 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005385 ## ndn-fib.h (module 'ndnSIM'): ns3::Ptr<const ns3::ndn::fib::Entry> ns3::ndn::Fib::Next(ns3::Ptr<const ns3::ndn::fib::Entry> arg0) const [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005386 cls.add_method('Next',
5387 'ns3::Ptr< ns3::ndn::fib::Entry const >',
5388 [param('ns3::Ptr< ns3::ndn::fib::Entry const >', 'arg0')],
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005389 is_pure_virtual=True, is_const=True, is_virtual=True)
5390 ## ndn-fib.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::fib::Entry> ns3::ndn::Fib::Next(ns3::Ptr<ns3::ndn::fib::Entry> arg0) [member function]
5391 cls.add_method('Next',
5392 'ns3::Ptr< ns3::ndn::fib::Entry >',
5393 [param('ns3::Ptr< ns3::ndn::fib::Entry >', 'arg0')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005394 is_pure_virtual=True, is_virtual=True)
5395 ## ndn-fib.h (module 'ndnSIM'): void ns3::ndn::Fib::Print(std::ostream & os) const [member function]
5396 cls.add_method('Print',
5397 'void',
5398 [param('std::ostream &', 'os')],
5399 is_pure_virtual=True, is_const=True, is_virtual=True)
5400 ## ndn-fib.h (module 'ndnSIM'): void ns3::ndn::Fib::Remove(ns3::Ptr<ns3::ndn::NameComponents const> const & prefix) [member function]
5401 cls.add_method('Remove',
5402 'void',
5403 [param('ns3::Ptr< ns3::ndn::NameComponents const > const &', 'prefix')],
5404 is_pure_virtual=True, is_virtual=True)
5405 ## ndn-fib.h (module 'ndnSIM'): void ns3::ndn::Fib::RemoveFromAll(ns3::Ptr<ns3::ndn::Face> face) [member function]
5406 cls.add_method('RemoveFromAll',
5407 'void',
5408 [param('ns3::Ptr< ns3::ndn::Face >', 'face')],
5409 is_pure_virtual=True, is_virtual=True)
5410 return
5411
5412def register_Ns3NdnForwardingStrategy_methods(root_module, cls):
5413 ## ndn-forwarding-strategy.h (module 'ndnSIM'): ns3::ndn::ForwardingStrategy::ForwardingStrategy(ns3::ndn::ForwardingStrategy const & arg0) [copy constructor]
5414 cls.add_constructor([param('ns3::ndn::ForwardingStrategy const &', 'arg0')])
5415 ## ndn-forwarding-strategy.h (module 'ndnSIM'): ns3::ndn::ForwardingStrategy::ForwardingStrategy() [constructor]
5416 cls.add_constructor([])
Alexander Afanasyevf5c07742012-10-31 13:13:05 -07005417 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::AddFace(ns3::Ptr<ns3::ndn::Face> face) [member function]
5418 cls.add_method('AddFace',
5419 'void',
5420 [param('ns3::Ptr< ns3::ndn::Face >', 'face')],
5421 is_virtual=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005422 ## ndn-forwarding-strategy.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::ForwardingStrategy::GetTypeId() [member function]
5423 cls.add_method('GetTypeId',
5424 'ns3::TypeId',
5425 [],
5426 is_static=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005427 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::OnData(ns3::Ptr<ns3::ndn::Face> face, ns3::Ptr<ns3::ndn::ContentObjectHeader const> header, ns3::Ptr<ns3::Packet> payload, ns3::Ptr<const ns3::Packet> origPacket) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005428 cls.add_method('OnData',
5429 'void',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005430 [param('ns3::Ptr< ns3::ndn::Face >', 'face'), param('ns3::Ptr< ns3::ndn::ContentObjectHeader const >', 'header'), param('ns3::Ptr< ns3::Packet >', 'payload'), param('ns3::Ptr< ns3::Packet const >', 'origPacket')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005431 is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005432 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::OnInterest(ns3::Ptr<ns3::ndn::Face> face, ns3::Ptr<ns3::ndn::InterestHeader const> header, ns3::Ptr<const ns3::Packet> origPacket) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005433 cls.add_method('OnInterest',
5434 'void',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005435 [param('ns3::Ptr< ns3::ndn::Face >', 'face'), param('ns3::Ptr< ns3::ndn::InterestHeader const >', 'header'), param('ns3::Ptr< ns3::Packet const >', 'origPacket')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005436 is_virtual=True)
5437 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::RemoveFace(ns3::Ptr<ns3::ndn::Face> face) [member function]
5438 cls.add_method('RemoveFace',
5439 'void',
5440 [param('ns3::Ptr< ns3::ndn::Face >', 'face')],
5441 is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005442 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::WillEraseTimedOutPendingInterest(ns3::Ptr<ns3::ndn::pit::Entry> pitEntry) [member function]
5443 cls.add_method('WillEraseTimedOutPendingInterest',
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005444 'void',
5445 [param('ns3::Ptr< ns3::ndn::pit::Entry >', 'pitEntry')],
5446 is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005447 ## ndn-forwarding-strategy.h (module 'ndnSIM'): bool ns3::ndn::ForwardingStrategy::DetectRetransmittedInterest(ns3::Ptr<ns3::ndn::Face> inFace, ns3::Ptr<ns3::ndn::InterestHeader const> header, ns3::Ptr<const ns3::Packet> origPacket, ns3::Ptr<ns3::ndn::pit::Entry> pitEntry) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005448 cls.add_method('DetectRetransmittedInterest',
5449 'bool',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005450 [param('ns3::Ptr< ns3::ndn::Face >', 'inFace'), param('ns3::Ptr< ns3::ndn::InterestHeader const >', 'header'), param('ns3::Ptr< ns3::Packet const >', 'origPacket'), param('ns3::Ptr< ns3::ndn::pit::Entry >', 'pitEntry')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005451 visibility='protected', is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005452 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::DidCreatePitEntry(ns3::Ptr<ns3::ndn::Face> inFace, ns3::Ptr<ns3::ndn::InterestHeader const> header, ns3::Ptr<const ns3::Packet> origPacket, ns3::Ptr<ns3::ndn::pit::Entry> pitEntry) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005453 cls.add_method('DidCreatePitEntry',
5454 'void',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005455 [param('ns3::Ptr< ns3::ndn::Face >', 'inFace'), param('ns3::Ptr< ns3::ndn::InterestHeader const >', 'header'), param('ns3::Ptr< ns3::Packet const >', 'origPacket'), param('ns3::Ptr< ns3::ndn::pit::Entry >', 'pitEntry')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005456 visibility='protected', is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005457 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::DidExhaustForwardingOptions(ns3::Ptr<ns3::ndn::Face> inFace, ns3::Ptr<ns3::ndn::InterestHeader const> header, ns3::Ptr<const ns3::Packet> origPacket, ns3::Ptr<ns3::ndn::pit::Entry> pitEntry) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005458 cls.add_method('DidExhaustForwardingOptions',
5459 'void',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005460 [param('ns3::Ptr< ns3::ndn::Face >', 'inFace'), param('ns3::Ptr< ns3::ndn::InterestHeader const >', 'header'), param('ns3::Ptr< ns3::Packet const >', 'origPacket'), param('ns3::Ptr< ns3::ndn::pit::Entry >', 'pitEntry')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005461 visibility='protected', is_virtual=True)
Alexander Afanasyeva28ec562012-10-25 14:07:32 -07005462 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::DidForwardSimilarInterest(ns3::Ptr<ns3::ndn::Face> inFace, ns3::Ptr<ns3::ndn::InterestHeader const> header, ns3::Ptr<const ns3::Packet> origPacket, ns3::Ptr<ns3::ndn::pit::Entry> pitEntry) [member function]
5463 cls.add_method('DidForwardSimilarInterest',
5464 'void',
5465 [param('ns3::Ptr< ns3::ndn::Face >', 'inFace'), param('ns3::Ptr< ns3::ndn::InterestHeader const >', 'header'), param('ns3::Ptr< ns3::Packet const >', 'origPacket'), param('ns3::Ptr< ns3::ndn::pit::Entry >', 'pitEntry')],
5466 visibility='protected', is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005467 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::DidReceiveDuplicateInterest(ns3::Ptr<ns3::ndn::Face> inFace, ns3::Ptr<ns3::ndn::InterestHeader const> header, ns3::Ptr<const ns3::Packet> origPacket, ns3::Ptr<ns3::ndn::pit::Entry> pitEntry) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005468 cls.add_method('DidReceiveDuplicateInterest',
5469 'void',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005470 [param('ns3::Ptr< ns3::ndn::Face >', 'inFace'), param('ns3::Ptr< ns3::ndn::InterestHeader const >', 'header'), param('ns3::Ptr< ns3::Packet const >', 'origPacket'), param('ns3::Ptr< ns3::ndn::pit::Entry >', 'pitEntry')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005471 visibility='protected', is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005472 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::DidReceiveUnsolicitedData(ns3::Ptr<ns3::ndn::Face> inFace, ns3::Ptr<ns3::ndn::ContentObjectHeader const> header, ns3::Ptr<const ns3::Packet> payload, ns3::Ptr<const ns3::Packet> origPacket) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005473 cls.add_method('DidReceiveUnsolicitedData',
5474 'void',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005475 [param('ns3::Ptr< ns3::ndn::Face >', 'inFace'), param('ns3::Ptr< ns3::ndn::ContentObjectHeader const >', 'header'), param('ns3::Ptr< ns3::Packet const >', 'payload'), param('ns3::Ptr< ns3::Packet const >', 'origPacket')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005476 visibility='protected', is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005477 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::DidSendOutData(ns3::Ptr<ns3::ndn::Face> inFace, ns3::Ptr<ns3::ndn::ContentObjectHeader const> header, ns3::Ptr<const ns3::Packet> payload, ns3::Ptr<const ns3::Packet> origPacket, ns3::Ptr<ns3::ndn::pit::Entry> pitEntry) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005478 cls.add_method('DidSendOutData',
5479 'void',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005480 [param('ns3::Ptr< ns3::ndn::Face >', 'inFace'), param('ns3::Ptr< ns3::ndn::ContentObjectHeader const >', 'header'), param('ns3::Ptr< ns3::Packet const >', 'payload'), param('ns3::Ptr< ns3::Packet const >', 'origPacket'), param('ns3::Ptr< ns3::ndn::pit::Entry >', 'pitEntry')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005481 visibility='protected', is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005482 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::DidSendOutInterest(ns3::Ptr<ns3::ndn::Face> outFace, ns3::Ptr<ns3::ndn::InterestHeader const> header, ns3::Ptr<const ns3::Packet> origPacket, ns3::Ptr<ns3::ndn::pit::Entry> pitEntry) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005483 cls.add_method('DidSendOutInterest',
5484 'void',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005485 [param('ns3::Ptr< ns3::ndn::Face >', 'outFace'), param('ns3::Ptr< ns3::ndn::InterestHeader const >', 'header'), param('ns3::Ptr< ns3::Packet const >', 'origPacket'), param('ns3::Ptr< ns3::ndn::pit::Entry >', 'pitEntry')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005486 visibility='protected', is_virtual=True)
Alexander Afanasyeva28ec562012-10-25 14:07:32 -07005487 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::DidSuppressSimilarInterest(ns3::Ptr<ns3::ndn::Face> inFace, ns3::Ptr<ns3::ndn::InterestHeader const> header, ns3::Ptr<const ns3::Packet> origPacket, ns3::Ptr<ns3::ndn::pit::Entry> pitEntry) [member function]
5488 cls.add_method('DidSuppressSimilarInterest',
5489 'void',
5490 [param('ns3::Ptr< ns3::ndn::Face >', 'inFace'), param('ns3::Ptr< ns3::ndn::InterestHeader const >', 'header'), param('ns3::Ptr< ns3::Packet const >', 'origPacket'), param('ns3::Ptr< ns3::ndn::pit::Entry >', 'pitEntry')],
5491 visibility='protected', is_virtual=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005492 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::DoDispose() [member function]
5493 cls.add_method('DoDispose',
5494 'void',
5495 [],
5496 visibility='protected', is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005497 ## ndn-forwarding-strategy.h (module 'ndnSIM'): bool ns3::ndn::ForwardingStrategy::DoPropagateInterest(ns3::Ptr<ns3::ndn::Face> inFace, ns3::Ptr<ns3::ndn::InterestHeader const> header, ns3::Ptr<const ns3::Packet> origPacket, ns3::Ptr<ns3::ndn::pit::Entry> pitEntry) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005498 cls.add_method('DoPropagateInterest',
5499 'bool',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005500 [param('ns3::Ptr< ns3::ndn::Face >', 'inFace'), param('ns3::Ptr< ns3::ndn::InterestHeader const >', 'header'), param('ns3::Ptr< ns3::Packet const >', 'origPacket'), param('ns3::Ptr< ns3::ndn::pit::Entry >', 'pitEntry')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005501 is_pure_virtual=True, visibility='protected', is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005502 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::FailedToCreatePitEntry(ns3::Ptr<ns3::ndn::Face> inFace, ns3::Ptr<ns3::ndn::InterestHeader const> header, ns3::Ptr<const ns3::Packet> origPacket) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005503 cls.add_method('FailedToCreatePitEntry',
5504 'void',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005505 [param('ns3::Ptr< ns3::ndn::Face >', 'inFace'), param('ns3::Ptr< ns3::ndn::InterestHeader const >', 'header'), param('ns3::Ptr< ns3::Packet const >', 'origPacket')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005506 visibility='protected', is_virtual=True)
5507 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::NotifyNewAggregate() [member function]
5508 cls.add_method('NotifyNewAggregate',
5509 'void',
5510 [],
5511 visibility='protected', is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005512 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::PropagateInterest(ns3::Ptr<ns3::ndn::Face> inFace, ns3::Ptr<ns3::ndn::InterestHeader const> header, ns3::Ptr<const ns3::Packet> origPacket, ns3::Ptr<ns3::ndn::pit::Entry> pitEntry) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005513 cls.add_method('PropagateInterest',
5514 'void',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005515 [param('ns3::Ptr< ns3::ndn::Face >', 'inFace'), param('ns3::Ptr< ns3::ndn::InterestHeader const >', 'header'), param('ns3::Ptr< ns3::Packet const >', 'origPacket'), param('ns3::Ptr< ns3::ndn::pit::Entry >', 'pitEntry')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005516 visibility='protected', is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005517 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::SatisfyPendingInterest(ns3::Ptr<ns3::ndn::Face> inFace, ns3::Ptr<ns3::ndn::ContentObjectHeader const> header, ns3::Ptr<const ns3::Packet> payload, ns3::Ptr<const ns3::Packet> origPacket, ns3::Ptr<ns3::ndn::pit::Entry> pitEntry) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005518 cls.add_method('SatisfyPendingInterest',
5519 'void',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005520 [param('ns3::Ptr< ns3::ndn::Face >', 'inFace'), param('ns3::Ptr< ns3::ndn::ContentObjectHeader const >', 'header'), param('ns3::Ptr< ns3::Packet const >', 'payload'), param('ns3::Ptr< ns3::Packet const >', 'origPacket'), param('ns3::Ptr< ns3::ndn::pit::Entry >', 'pitEntry')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005521 visibility='protected', is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005522 ## ndn-forwarding-strategy.h (module 'ndnSIM'): bool ns3::ndn::ForwardingStrategy::ShouldSuppressIncomingInterest(ns3::Ptr<ns3::ndn::Face> inFace, ns3::Ptr<ns3::ndn::InterestHeader const> header, ns3::Ptr<const ns3::Packet> origPacket, ns3::Ptr<ns3::ndn::pit::Entry> pitEntry) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005523 cls.add_method('ShouldSuppressIncomingInterest',
5524 'bool',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005525 [param('ns3::Ptr< ns3::ndn::Face >', 'inFace'), param('ns3::Ptr< ns3::ndn::InterestHeader const >', 'header'), param('ns3::Ptr< ns3::Packet const >', 'origPacket'), param('ns3::Ptr< ns3::ndn::pit::Entry >', 'pitEntry')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005526 visibility='protected', is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005527 ## ndn-forwarding-strategy.h (module 'ndnSIM'): bool ns3::ndn::ForwardingStrategy::TrySendOutInterest(ns3::Ptr<ns3::ndn::Face> inFace, ns3::Ptr<ns3::ndn::Face> outFace, ns3::Ptr<ns3::ndn::InterestHeader const> header, ns3::Ptr<const ns3::Packet> origPacket, ns3::Ptr<ns3::ndn::pit::Entry> pitEntry) [member function]
5528 cls.add_method('TrySendOutInterest',
5529 'bool',
5530 [param('ns3::Ptr< ns3::ndn::Face >', 'inFace'), param('ns3::Ptr< ns3::ndn::Face >', 'outFace'), param('ns3::Ptr< ns3::ndn::InterestHeader const >', 'header'), param('ns3::Ptr< ns3::Packet const >', 'origPacket'), param('ns3::Ptr< ns3::ndn::pit::Entry >', 'pitEntry')],
5531 visibility='protected', is_virtual=True)
5532 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::WillSatisfyPendingInterest(ns3::Ptr<ns3::ndn::Face> inFace, ns3::Ptr<ns3::ndn::pit::Entry> pitEntry) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005533 cls.add_method('WillSatisfyPendingInterest',
5534 'void',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005535 [param('ns3::Ptr< ns3::ndn::Face >', 'inFace'), param('ns3::Ptr< ns3::ndn::pit::Entry >', 'pitEntry')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005536 visibility='protected', is_virtual=True)
5537 return
5538
5539def register_Ns3NdnGlobalRoutingHelper_methods(root_module, cls):
5540 ## ndn-global-routing-helper.h (module 'ndnSIM'): ns3::ndn::GlobalRoutingHelper::GlobalRoutingHelper() [constructor]
5541 cls.add_constructor([])
5542 ## ndn-global-routing-helper.h (module 'ndnSIM'): ns3::ndn::GlobalRoutingHelper::GlobalRoutingHelper(ns3::ndn::GlobalRoutingHelper const & arg0) [copy constructor]
5543 cls.add_constructor([param('ns3::ndn::GlobalRoutingHelper const &', 'arg0')])
5544 ## ndn-global-routing-helper.h (module 'ndnSIM'): void ns3::ndn::GlobalRoutingHelper::AddOrigin(std::string const & prefix, ns3::Ptr<ns3::Node> node) [member function]
5545 cls.add_method('AddOrigin',
5546 'void',
5547 [param('std::string const &', 'prefix'), param('ns3::Ptr< ns3::Node >', 'node')])
5548 ## ndn-global-routing-helper.h (module 'ndnSIM'): void ns3::ndn::GlobalRoutingHelper::AddOrigin(std::string const & prefix, std::string const & nodeName) [member function]
5549 cls.add_method('AddOrigin',
5550 'void',
5551 [param('std::string const &', 'prefix'), param('std::string const &', 'nodeName')])
5552 ## ndn-global-routing-helper.h (module 'ndnSIM'): void ns3::ndn::GlobalRoutingHelper::AddOrigins(std::string const & prefix, ns3::NodeContainer const & nodes) [member function]
5553 cls.add_method('AddOrigins',
5554 'void',
5555 [param('std::string const &', 'prefix'), param('ns3::NodeContainer const &', 'nodes')])
5556 ## ndn-global-routing-helper.h (module 'ndnSIM'): void ns3::ndn::GlobalRoutingHelper::CalculateRoutes() [member function]
5557 cls.add_method('CalculateRoutes',
5558 'void',
5559 [])
5560 ## ndn-global-routing-helper.h (module 'ndnSIM'): void ns3::ndn::GlobalRoutingHelper::Install(ns3::Ptr<ns3::Node> node) [member function]
5561 cls.add_method('Install',
5562 'void',
5563 [param('ns3::Ptr< ns3::Node >', 'node')])
5564 ## ndn-global-routing-helper.h (module 'ndnSIM'): void ns3::ndn::GlobalRoutingHelper::Install(ns3::NodeContainer const & nodes) [member function]
5565 cls.add_method('Install',
5566 'void',
5567 [param('ns3::NodeContainer const &', 'nodes')])
5568 ## ndn-global-routing-helper.h (module 'ndnSIM'): void ns3::ndn::GlobalRoutingHelper::InstallAll() [member function]
5569 cls.add_method('InstallAll',
5570 'void',
5571 [])
5572 return
5573
5574def register_Ns3NdnHeaderHelper_methods(root_module, cls):
5575 ## ndn-header-helper.h (module 'ndnSIM'): ns3::ndn::HeaderHelper::HeaderHelper() [constructor]
5576 cls.add_constructor([])
5577 ## ndn-header-helper.h (module 'ndnSIM'): ns3::ndn::HeaderHelper::HeaderHelper(ns3::ndn::HeaderHelper const & arg0) [copy constructor]
5578 cls.add_constructor([param('ns3::ndn::HeaderHelper const &', 'arg0')])
5579 ## ndn-header-helper.h (module 'ndnSIM'): static ns3::ndn::HeaderHelper::Type ns3::ndn::HeaderHelper::GetNdnHeaderType(ns3::Ptr<const ns3::Packet> packet) [member function]
5580 cls.add_method('GetNdnHeaderType',
5581 'ns3::ndn::HeaderHelper::Type',
5582 [param('ns3::Ptr< ns3::Packet const >', 'packet')],
5583 is_static=True)
5584 return
5585
5586def register_Ns3NdnInterestHeader_methods(root_module, cls):
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005587 ## ndn-interest-header.h (module 'ndnSIM'): ns3::ndn::InterestHeader::InterestHeader() [constructor]
5588 cls.add_constructor([])
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005589 ## ndn-interest-header.h (module 'ndnSIM'): ns3::ndn::InterestHeader::InterestHeader(ns3::ndn::InterestHeader const & interest) [copy constructor]
5590 cls.add_constructor([param('ns3::ndn::InterestHeader const &', 'interest')])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005591 ## ndn-interest-header.h (module 'ndnSIM'): uint32_t ns3::ndn::InterestHeader::Deserialize(ns3::Buffer::Iterator start) [member function]
5592 cls.add_method('Deserialize',
5593 'uint32_t',
5594 [param('ns3::Buffer::Iterator', 'start')],
5595 is_virtual=True)
5596 ## ndn-interest-header.h (module 'ndnSIM'): ns3::ndn::NameComponents const & ns3::ndn::InterestHeader::GetExclude() const [member function]
5597 cls.add_method('GetExclude',
5598 'ns3::ndn::NameComponents const &',
5599 [],
5600 is_const=True)
5601 ## ndn-interest-header.h (module 'ndnSIM'): ns3::TypeId ns3::ndn::InterestHeader::GetInstanceTypeId() const [member function]
5602 cls.add_method('GetInstanceTypeId',
5603 'ns3::TypeId',
5604 [],
5605 is_const=True, is_virtual=True)
Alexander Afanasyev663d63f2012-09-09 11:55:36 -07005606 ## ndn-interest-header.h (module 'ndnSIM'): static ns3::Ptr<ns3::ndn::InterestHeader> ns3::ndn::InterestHeader::GetInterest(ns3::Ptr<ns3::Packet> packet) [member function]
5607 cls.add_method('GetInterest',
5608 'ns3::Ptr< ns3::ndn::InterestHeader >',
5609 [param('ns3::Ptr< ns3::Packet >', 'packet')],
5610 is_static=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005611 ## ndn-interest-header.h (module 'ndnSIM'): ns3::Time ns3::ndn::InterestHeader::GetInterestLifetime() const [member function]
5612 cls.add_method('GetInterestLifetime',
5613 'ns3::Time',
5614 [],
5615 is_const=True)
5616 ## ndn-interest-header.h (module 'ndnSIM'): int32_t ns3::ndn::InterestHeader::GetMaxSuffixComponents() const [member function]
5617 cls.add_method('GetMaxSuffixComponents',
5618 'int32_t',
5619 [],
5620 is_const=True)
5621 ## ndn-interest-header.h (module 'ndnSIM'): int32_t ns3::ndn::InterestHeader::GetMinSuffixComponents() const [member function]
5622 cls.add_method('GetMinSuffixComponents',
5623 'int32_t',
5624 [],
5625 is_const=True)
5626 ## ndn-interest-header.h (module 'ndnSIM'): uint32_t ns3::ndn::InterestHeader::GetNack() const [member function]
5627 cls.add_method('GetNack',
5628 'uint32_t',
5629 [],
5630 is_const=True)
5631 ## ndn-interest-header.h (module 'ndnSIM'): ns3::ndn::NameComponents const & ns3::ndn::InterestHeader::GetName() const [member function]
5632 cls.add_method('GetName',
5633 'ns3::ndn::NameComponents const &',
5634 [],
5635 is_const=True)
5636 ## ndn-interest-header.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::NameComponents const> ns3::ndn::InterestHeader::GetNamePtr() const [member function]
5637 cls.add_method('GetNamePtr',
5638 'ns3::Ptr< ns3::ndn::NameComponents const >',
5639 [],
5640 is_const=True)
5641 ## ndn-interest-header.h (module 'ndnSIM'): uint32_t ns3::ndn::InterestHeader::GetNonce() const [member function]
5642 cls.add_method('GetNonce',
5643 'uint32_t',
5644 [],
5645 is_const=True)
5646 ## ndn-interest-header.h (module 'ndnSIM'): int8_t ns3::ndn::InterestHeader::GetScope() const [member function]
5647 cls.add_method('GetScope',
5648 'int8_t',
5649 [],
5650 is_const=True)
5651 ## ndn-interest-header.h (module 'ndnSIM'): uint32_t ns3::ndn::InterestHeader::GetSerializedSize() const [member function]
5652 cls.add_method('GetSerializedSize',
5653 'uint32_t',
5654 [],
5655 is_const=True, is_virtual=True)
5656 ## ndn-interest-header.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::InterestHeader::GetTypeId() [member function]
5657 cls.add_method('GetTypeId',
5658 'ns3::TypeId',
5659 [],
5660 is_static=True)
5661 ## ndn-interest-header.h (module 'ndnSIM'): bool ns3::ndn::InterestHeader::IsEnabledAnswerOriginKind() const [member function]
5662 cls.add_method('IsEnabledAnswerOriginKind',
5663 'bool',
5664 [],
5665 is_const=True)
5666 ## ndn-interest-header.h (module 'ndnSIM'): bool ns3::ndn::InterestHeader::IsEnabledChildSelector() const [member function]
5667 cls.add_method('IsEnabledChildSelector',
5668 'bool',
5669 [],
5670 is_const=True)
5671 ## ndn-interest-header.h (module 'ndnSIM'): bool ns3::ndn::InterestHeader::IsEnabledExclude() const [member function]
5672 cls.add_method('IsEnabledExclude',
5673 'bool',
5674 [],
5675 is_const=True)
5676 ## ndn-interest-header.h (module 'ndnSIM'): void ns3::ndn::InterestHeader::Print(std::ostream & os) const [member function]
5677 cls.add_method('Print',
5678 'void',
5679 [param('std::ostream &', 'os')],
5680 is_const=True, is_virtual=True)
5681 ## ndn-interest-header.h (module 'ndnSIM'): void ns3::ndn::InterestHeader::Serialize(ns3::Buffer::Iterator start) const [member function]
5682 cls.add_method('Serialize',
5683 'void',
5684 [param('ns3::Buffer::Iterator', 'start')],
5685 is_const=True, is_virtual=True)
5686 ## ndn-interest-header.h (module 'ndnSIM'): void ns3::ndn::InterestHeader::SetAnswerOriginKind(bool value) [member function]
5687 cls.add_method('SetAnswerOriginKind',
5688 'void',
5689 [param('bool', 'value')])
5690 ## ndn-interest-header.h (module 'ndnSIM'): void ns3::ndn::InterestHeader::SetChildSelector(bool value) [member function]
5691 cls.add_method('SetChildSelector',
5692 'void',
5693 [param('bool', 'value')])
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005694 ## ndn-interest-header.h (module 'ndnSIM'): void ns3::ndn::InterestHeader::SetExclude(ns3::Ptr<ns3::ndn::NameComponents> exclude) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005695 cls.add_method('SetExclude',
5696 'void',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005697 [param('ns3::Ptr< ns3::ndn::NameComponents >', 'exclude')])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005698 ## ndn-interest-header.h (module 'ndnSIM'): void ns3::ndn::InterestHeader::SetInterestLifetime(ns3::Time time) [member function]
5699 cls.add_method('SetInterestLifetime',
5700 'void',
5701 [param('ns3::Time', 'time')])
5702 ## ndn-interest-header.h (module 'ndnSIM'): void ns3::ndn::InterestHeader::SetMaxSuffixComponents(int32_t value) [member function]
5703 cls.add_method('SetMaxSuffixComponents',
5704 'void',
5705 [param('int32_t', 'value')])
5706 ## ndn-interest-header.h (module 'ndnSIM'): void ns3::ndn::InterestHeader::SetMinSuffixComponents(int32_t value) [member function]
5707 cls.add_method('SetMinSuffixComponents',
5708 'void',
5709 [param('int32_t', 'value')])
5710 ## ndn-interest-header.h (module 'ndnSIM'): void ns3::ndn::InterestHeader::SetNack(uint32_t nackType) [member function]
5711 cls.add_method('SetNack',
5712 'void',
5713 [param('uint32_t', 'nackType')])
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005714 ## ndn-interest-header.h (module 'ndnSIM'): void ns3::ndn::InterestHeader::SetName(ns3::Ptr<ns3::ndn::NameComponents> name) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005715 cls.add_method('SetName',
5716 'void',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005717 [param('ns3::Ptr< ns3::ndn::NameComponents >', 'name')])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005718 ## ndn-interest-header.h (module 'ndnSIM'): void ns3::ndn::InterestHeader::SetNonce(uint32_t nonce) [member function]
5719 cls.add_method('SetNonce',
5720 'void',
5721 [param('uint32_t', 'nonce')])
5722 ## ndn-interest-header.h (module 'ndnSIM'): void ns3::ndn::InterestHeader::SetScope(int8_t scope) [member function]
5723 cls.add_method('SetScope',
5724 'void',
5725 [param('int8_t', 'scope')])
5726 return
5727
5728def register_Ns3NdnInterestHeaderException_methods(root_module, cls):
5729 ## ndn-interest-header.h (module 'ndnSIM'): ns3::ndn::InterestHeaderException::InterestHeaderException() [constructor]
5730 cls.add_constructor([])
5731 ## ndn-interest-header.h (module 'ndnSIM'): ns3::ndn::InterestHeaderException::InterestHeaderException(ns3::ndn::InterestHeaderException const & arg0) [copy constructor]
5732 cls.add_constructor([param('ns3::ndn::InterestHeaderException const &', 'arg0')])
5733 return
5734
5735def register_Ns3NdnL3Protocol_methods(root_module, cls):
5736 ## ndn-l3-protocol.h (module 'ndnSIM'): ns3::ndn::L3Protocol::ETHERNET_FRAME_TYPE [variable]
5737 cls.add_static_attribute('ETHERNET_FRAME_TYPE', 'uint16_t const', is_const=True)
5738 ## ndn-l3-protocol.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::L3Protocol::GetTypeId() [member function]
5739 cls.add_method('GetTypeId',
5740 'ns3::TypeId',
5741 [],
5742 is_static=True)
5743 ## ndn-l3-protocol.h (module 'ndnSIM'): ns3::ndn::L3Protocol::L3Protocol() [constructor]
5744 cls.add_constructor([])
5745 ## ndn-l3-protocol.h (module 'ndnSIM'): uint32_t ns3::ndn::L3Protocol::AddFace(ns3::Ptr<ns3::ndn::Face> const & face) [member function]
5746 cls.add_method('AddFace',
5747 'uint32_t',
5748 [param('ns3::Ptr< ns3::ndn::Face > const &', 'face')],
5749 is_virtual=True)
5750 ## ndn-l3-protocol.h (module 'ndnSIM'): uint32_t ns3::ndn::L3Protocol::GetNFaces() const [member function]
5751 cls.add_method('GetNFaces',
5752 'uint32_t',
5753 [],
5754 is_const=True, is_virtual=True)
5755 ## ndn-l3-protocol.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::Face> ns3::ndn::L3Protocol::GetFace(uint32_t face) const [member function]
5756 cls.add_method('GetFace',
5757 'ns3::Ptr< ns3::ndn::Face >',
5758 [param('uint32_t', 'face')],
5759 is_const=True, is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005760 ## ndn-l3-protocol.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::Face> ns3::ndn::L3Protocol::GetFaceById(uint32_t face) const [member function]
5761 cls.add_method('GetFaceById',
5762 'ns3::Ptr< ns3::ndn::Face >',
5763 [param('uint32_t', 'face')],
5764 is_const=True, is_virtual=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005765 ## ndn-l3-protocol.h (module 'ndnSIM'): void ns3::ndn::L3Protocol::RemoveFace(ns3::Ptr<ns3::ndn::Face> face) [member function]
5766 cls.add_method('RemoveFace',
5767 'void',
5768 [param('ns3::Ptr< ns3::ndn::Face >', 'face')],
5769 is_virtual=True)
5770 ## ndn-l3-protocol.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::Face> ns3::ndn::L3Protocol::GetFaceByNetDevice(ns3::Ptr<ns3::NetDevice> netDevice) const [member function]
5771 cls.add_method('GetFaceByNetDevice',
5772 'ns3::Ptr< ns3::ndn::Face >',
5773 [param('ns3::Ptr< ns3::NetDevice >', 'netDevice')],
5774 is_const=True, is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005775 ## ndn-l3-protocol.h (module 'ndnSIM'): static uint64_t ns3::ndn::L3Protocol::GetInterestCounter() [member function]
5776 cls.add_method('GetInterestCounter',
5777 'uint64_t',
5778 [],
5779 is_static=True)
5780 ## ndn-l3-protocol.h (module 'ndnSIM'): static uint64_t ns3::ndn::L3Protocol::GetDataCounter() [member function]
5781 cls.add_method('GetDataCounter',
5782 'uint64_t',
5783 [],
5784 is_static=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005785 ## ndn-l3-protocol.h (module 'ndnSIM'): void ns3::ndn::L3Protocol::DoDispose() [member function]
5786 cls.add_method('DoDispose',
5787 'void',
5788 [],
5789 visibility='protected', is_virtual=True)
5790 ## ndn-l3-protocol.h (module 'ndnSIM'): void ns3::ndn::L3Protocol::NotifyNewAggregate() [member function]
5791 cls.add_method('NotifyNewAggregate',
5792 'void',
5793 [],
5794 visibility='protected', is_virtual=True)
5795 return
5796
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005797def register_Ns3NdnLimits_methods(root_module, cls):
5798 ## ndn-limits.h (module 'ndnSIM'): ns3::ndn::Limits::Limits(ns3::ndn::Limits const & arg0) [copy constructor]
5799 cls.add_constructor([param('ns3::ndn::Limits const &', 'arg0')])
5800 ## ndn-limits.h (module 'ndnSIM'): ns3::ndn::Limits::Limits() [constructor]
5801 cls.add_constructor([])
Alexander Afanasyev7e4235a2012-10-31 16:58:44 -07005802 ## ndn-limits.h (module 'ndnSIM'): void ns3::ndn::Limits::BorrowLimit() [member function]
5803 cls.add_method('BorrowLimit',
5804 'void',
5805 [],
5806 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyevf5c07742012-10-31 13:13:05 -07005807 ## ndn-limits.h (module 'ndnSIM'): double ns3::ndn::Limits::GetCurrentLimit() const [member function]
5808 cls.add_method('GetCurrentLimit',
5809 'double',
5810 [],
Alexander Afanasyev7e4235a2012-10-31 16:58:44 -07005811 is_pure_virtual=True, is_const=True, is_virtual=True)
5812 ## ndn-limits.h (module 'ndnSIM'): double ns3::ndn::Limits::GetMaxDelay() const [member function]
5813 cls.add_method('GetMaxDelay',
5814 'double',
5815 [],
5816 is_const=True, is_virtual=True)
5817 ## ndn-limits.h (module 'ndnSIM'): double ns3::ndn::Limits::GetMaxRate() const [member function]
5818 cls.add_method('GetMaxRate',
Alexander Afanasyeva28ec562012-10-25 14:07:32 -07005819 'double',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005820 [],
Alexander Afanasyevf5c07742012-10-31 13:13:05 -07005821 is_const=True, is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005822 ## ndn-limits.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::Limits::GetTypeId() [member function]
5823 cls.add_method('GetTypeId',
5824 'ns3::TypeId',
5825 [],
5826 is_static=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005827 ## ndn-limits.h (module 'ndnSIM'): bool ns3::ndn::Limits::IsBelowLimit() [member function]
5828 cls.add_method('IsBelowLimit',
5829 'bool',
Alexander Afanasyevf5c07742012-10-31 13:13:05 -07005830 [],
5831 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005832 ## ndn-limits.h (module 'ndnSIM'): bool ns3::ndn::Limits::IsEnabled() const [member function]
5833 cls.add_method('IsEnabled',
5834 'bool',
5835 [],
Alexander Afanasyevf5c07742012-10-31 13:13:05 -07005836 is_const=True, is_virtual=True)
Alexander Afanasyev7e4235a2012-10-31 16:58:44 -07005837 ## ndn-limits.h (module 'ndnSIM'): void ns3::ndn::Limits::ReturnLimit() [member function]
5838 cls.add_method('ReturnLimit',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005839 'void',
Alexander Afanasyev7e4235a2012-10-31 16:58:44 -07005840 [],
5841 is_pure_virtual=True, is_virtual=True)
5842 ## ndn-limits.h (module 'ndnSIM'): void ns3::ndn::Limits::SetLimits(double rate, double delay) [member function]
5843 cls.add_method('SetLimits',
5844 'void',
5845 [param('double', 'rate'), param('double', 'delay')],
Alexander Afanasyevf5c07742012-10-31 13:13:05 -07005846 is_virtual=True)
Alexander Afanasyeva28ec562012-10-25 14:07:32 -07005847 ## ndn-limits.h (module 'ndnSIM'): void ns3::ndn::Limits::UpdateCurrentLimit(double limit) [member function]
5848 cls.add_method('UpdateCurrentLimit',
5849 'void',
Alexander Afanasyev7e4235a2012-10-31 16:58:44 -07005850 [param('double', 'limit')],
5851 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005852 return
5853
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005854def register_Ns3NdnNameComponents_methods(root_module, cls):
5855 cls.add_output_stream_operator()
5856 cls.add_binary_comparison_operator('<')
5857 cls.add_binary_comparison_operator('==')
5858 ## ndn-name-components.h (module 'ndnSIM'): ns3::ndn::NameComponents::NameComponents(ns3::ndn::NameComponents const & arg0) [copy constructor]
5859 cls.add_constructor([param('ns3::ndn::NameComponents const &', 'arg0')])
5860 ## ndn-name-components.h (module 'ndnSIM'): ns3::ndn::NameComponents::NameComponents() [constructor]
5861 cls.add_constructor([])
5862 ## ndn-name-components.h (module 'ndnSIM'): ns3::ndn::NameComponents::NameComponents(std::list<boost::reference_wrapper<const std::basic_string<char, std::char_traits<char>, std::allocator<char> > >,std::allocator<boost::reference_wrapper<const std::basic_string<char, std::char_traits<char>, std::allocator<char> > > > > const & components) [constructor]
5863 cls.add_constructor([param('std::list< boost::reference_wrapper< std::string const > > const &', 'components')])
5864 ## ndn-name-components.h (module 'ndnSIM'): ns3::ndn::NameComponents::NameComponents(std::string const & prefix) [constructor]
5865 cls.add_constructor([param('std::string const &', 'prefix')])
5866 ## ndn-name-components.h (module 'ndnSIM'): ns3::ndn::NameComponents::NameComponents(char const * prefix) [constructor]
5867 cls.add_constructor([param('char const *', 'prefix')])
5868 ## ndn-name-components.h (module 'ndnSIM'): std::list<std::string, std::allocator<std::string> > const & ns3::ndn::NameComponents::GetComponents() const [member function]
5869 cls.add_method('GetComponents',
5870 'std::list< std::string > const &',
5871 [],
5872 is_const=True)
5873 ## ndn-name-components.h (module 'ndnSIM'): std::string ns3::ndn::NameComponents::GetLastComponent() const [member function]
5874 cls.add_method('GetLastComponent',
5875 'std::string',
5876 [],
5877 is_const=True)
5878 ## ndn-name-components.h (module 'ndnSIM'): std::list<boost::reference_wrapper<const std::basic_string<char, std::char_traits<char>, std::allocator<char> > >,std::allocator<boost::reference_wrapper<const std::basic_string<char, std::char_traits<char>, std::allocator<char> > > > > ns3::ndn::NameComponents::GetSubComponents(size_t num) const [member function]
5879 cls.add_method('GetSubComponents',
5880 'std::list< boost::reference_wrapper< std::string const > >',
5881 [param('size_t', 'num')],
5882 is_const=True)
5883 ## ndn-name-components.h (module 'ndnSIM'): void ns3::ndn::NameComponents::Print(std::ostream & os) const [member function]
5884 cls.add_method('Print',
5885 'void',
5886 [param('std::ostream &', 'os')],
5887 is_const=True)
5888 ## ndn-name-components.h (module 'ndnSIM'): std::_List_iterator<std::string> ns3::ndn::NameComponents::begin() [member function]
5889 cls.add_method('begin',
5890 'std::_List_iterator< std::string >',
5891 [])
5892 ## ndn-name-components.h (module 'ndnSIM'): std::_List_const_iterator<std::string> ns3::ndn::NameComponents::begin() const [member function]
5893 cls.add_method('begin',
5894 'std::_List_const_iterator< std::string >',
5895 [],
5896 is_const=True)
5897 ## ndn-name-components.h (module 'ndnSIM'): ns3::ndn::NameComponents ns3::ndn::NameComponents::cut(size_t minusComponents) const [member function]
5898 cls.add_method('cut',
5899 'ns3::ndn::NameComponents',
5900 [param('size_t', 'minusComponents')],
5901 is_const=True)
5902 ## ndn-name-components.h (module 'ndnSIM'): std::_List_iterator<std::string> ns3::ndn::NameComponents::end() [member function]
5903 cls.add_method('end',
5904 'std::_List_iterator< std::string >',
5905 [])
5906 ## ndn-name-components.h (module 'ndnSIM'): std::_List_const_iterator<std::string> ns3::ndn::NameComponents::end() const [member function]
5907 cls.add_method('end',
5908 'std::_List_const_iterator< std::string >',
5909 [],
5910 is_const=True)
5911 ## ndn-name-components.h (module 'ndnSIM'): size_t ns3::ndn::NameComponents::size() const [member function]
5912 cls.add_method('size',
5913 'size_t',
5914 [],
5915 is_const=True)
5916 return
5917
5918def register_Ns3NdnNameComponentsChecker_methods(root_module, cls):
5919 ## ndn-name-components.h (module 'ndnSIM'): ns3::ndn::NameComponentsChecker::NameComponentsChecker() [constructor]
5920 cls.add_constructor([])
5921 ## ndn-name-components.h (module 'ndnSIM'): ns3::ndn::NameComponentsChecker::NameComponentsChecker(ns3::ndn::NameComponentsChecker const & arg0) [copy constructor]
5922 cls.add_constructor([param('ns3::ndn::NameComponentsChecker const &', 'arg0')])
5923 return
5924
5925def register_Ns3NdnNameComponentsValue_methods(root_module, cls):
5926 ## ndn-name-components.h (module 'ndnSIM'): ns3::ndn::NameComponentsValue::NameComponentsValue() [constructor]
5927 cls.add_constructor([])
5928 ## ndn-name-components.h (module 'ndnSIM'): ns3::ndn::NameComponentsValue::NameComponentsValue(ns3::ndn::NameComponentsValue const & arg0) [copy constructor]
5929 cls.add_constructor([param('ns3::ndn::NameComponentsValue const &', 'arg0')])
5930 ## ndn-name-components.h (module 'ndnSIM'): ns3::ndn::NameComponentsValue::NameComponentsValue(ns3::ndn::NameComponents const & value) [constructor]
5931 cls.add_constructor([param('ns3::ndn::NameComponents const &', 'value')])
5932 ## ndn-name-components.h (module 'ndnSIM'): ns3::Ptr<ns3::AttributeValue> ns3::ndn::NameComponentsValue::Copy() const [member function]
5933 cls.add_method('Copy',
5934 'ns3::Ptr< ns3::AttributeValue >',
5935 [],
5936 is_const=True, is_virtual=True)
5937 ## ndn-name-components.h (module 'ndnSIM'): bool ns3::ndn::NameComponentsValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
5938 cls.add_method('DeserializeFromString',
5939 'bool',
5940 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
5941 is_virtual=True)
5942 ## ndn-name-components.h (module 'ndnSIM'): ns3::ndn::NameComponents ns3::ndn::NameComponentsValue::Get() const [member function]
5943 cls.add_method('Get',
5944 'ns3::ndn::NameComponents',
5945 [],
5946 is_const=True)
5947 ## ndn-name-components.h (module 'ndnSIM'): std::string ns3::ndn::NameComponentsValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
5948 cls.add_method('SerializeToString',
5949 'std::string',
5950 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
5951 is_const=True, is_virtual=True)
5952 ## ndn-name-components.h (module 'ndnSIM'): void ns3::ndn::NameComponentsValue::Set(ns3::ndn::NameComponents const & value) [member function]
5953 cls.add_method('Set',
5954 'void',
5955 [param('ns3::ndn::NameComponents const &', 'value')])
5956 return
5957
5958def register_Ns3NdnNetDeviceFace_methods(root_module, cls):
5959 ## ndn-net-device-face.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::NetDeviceFace::GetTypeId() [member function]
5960 cls.add_method('GetTypeId',
5961 'ns3::TypeId',
5962 [],
5963 is_static=True)
5964 ## ndn-net-device-face.h (module 'ndnSIM'): ns3::ndn::NetDeviceFace::NetDeviceFace(ns3::Ptr<ns3::Node> node, ns3::Ptr<ns3::NetDevice> const & netDevice) [constructor]
5965 cls.add_constructor([param('ns3::Ptr< ns3::Node >', 'node'), param('ns3::Ptr< ns3::NetDevice > const &', 'netDevice')])
5966 ## ndn-net-device-face.h (module 'ndnSIM'): void ns3::ndn::NetDeviceFace::RegisterProtocolHandler(ns3::Callback<void, ns3::Ptr<ns3::ndn::Face> const&, ns3::Ptr<ns3::Packet const> const&, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> handler) [member function]
5967 cls.add_method('RegisterProtocolHandler',
5968 'void',
5969 [param('ns3::Callback< void, ns3::Ptr< ns3::ndn::Face >, ns3::Ptr< ns3::Packet const >, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'handler')],
5970 is_virtual=True)
5971 ## ndn-net-device-face.h (module 'ndnSIM'): std::ostream & ns3::ndn::NetDeviceFace::Print(std::ostream & os) const [member function]
5972 cls.add_method('Print',
5973 'std::ostream &',
5974 [param('std::ostream &', 'os')],
5975 is_const=True, is_virtual=True)
5976 ## ndn-net-device-face.h (module 'ndnSIM'): ns3::Ptr<ns3::NetDevice> ns3::ndn::NetDeviceFace::GetNetDevice() const [member function]
5977 cls.add_method('GetNetDevice',
5978 'ns3::Ptr< ns3::NetDevice >',
5979 [],
5980 is_const=True)
5981 ## ndn-net-device-face.h (module 'ndnSIM'): bool ns3::ndn::NetDeviceFace::SendImpl(ns3::Ptr<ns3::Packet> p) [member function]
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07005982 cls.add_method('SendImpl',
Alexander Afanasyev1c0248b2012-07-24 15:59:50 -07005983 'bool',
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07005984 [param('ns3::Ptr< ns3::Packet >', 'p')],
5985 visibility='protected', is_virtual=True)
5986 return
5987
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005988def register_Ns3NdnPit_methods(root_module, cls):
5989 cls.add_output_stream_operator()
5990 ## ndn-pit.h (module 'ndnSIM'): ns3::ndn::Pit::Pit(ns3::ndn::Pit const & arg0) [copy constructor]
5991 cls.add_constructor([param('ns3::ndn::Pit const &', 'arg0')])
5992 ## ndn-pit.h (module 'ndnSIM'): ns3::ndn::Pit::Pit() [constructor]
5993 cls.add_constructor([])
5994 ## ndn-pit.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::pit::Entry> ns3::ndn::Pit::Begin() [member function]
5995 cls.add_method('Begin',
5996 'ns3::Ptr< ns3::ndn::pit::Entry >',
5997 [],
5998 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005999 ## ndn-pit.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::pit::Entry> ns3::ndn::Pit::Create(ns3::Ptr<ns3::ndn::InterestHeader const> header) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006000 cls.add_method('Create',
6001 'ns3::Ptr< ns3::ndn::pit::Entry >',
6002 [param('ns3::Ptr< ns3::ndn::InterestHeader const >', 'header')],
6003 is_pure_virtual=True, is_virtual=True)
6004 ## ndn-pit.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::pit::Entry> ns3::ndn::Pit::End() [member function]
6005 cls.add_method('End',
6006 'ns3::Ptr< ns3::ndn::pit::Entry >',
6007 [],
6008 is_pure_virtual=True, is_virtual=True)
6009 ## ndn-pit.h (module 'ndnSIM'): static ns3::Ptr<ns3::ndn::Pit> ns3::ndn::Pit::GetPit(ns3::Ptr<ns3::Object> node) [member function]
6010 cls.add_method('GetPit',
6011 'ns3::Ptr< ns3::ndn::Pit >',
6012 [param('ns3::Ptr< ns3::Object >', 'node')],
6013 is_static=True)
6014 ## ndn-pit.h (module 'ndnSIM'): uint32_t ns3::ndn::Pit::GetSize() const [member function]
6015 cls.add_method('GetSize',
6016 'uint32_t',
6017 [],
6018 is_pure_virtual=True, is_const=True, is_virtual=True)
6019 ## ndn-pit.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::Pit::GetTypeId() [member function]
6020 cls.add_method('GetTypeId',
6021 'ns3::TypeId',
6022 [],
6023 is_static=True)
6024 ## ndn-pit.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::pit::Entry> ns3::ndn::Pit::Lookup(ns3::ndn::ContentObjectHeader const & header) [member function]
6025 cls.add_method('Lookup',
6026 'ns3::Ptr< ns3::ndn::pit::Entry >',
6027 [param('ns3::ndn::ContentObjectHeader const &', 'header')],
6028 is_pure_virtual=True, is_virtual=True)
6029 ## ndn-pit.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::pit::Entry> ns3::ndn::Pit::Lookup(ns3::ndn::InterestHeader const & header) [member function]
6030 cls.add_method('Lookup',
6031 'ns3::Ptr< ns3::ndn::pit::Entry >',
6032 [param('ns3::ndn::InterestHeader const &', 'header')],
6033 is_pure_virtual=True, is_virtual=True)
6034 ## ndn-pit.h (module 'ndnSIM'): void ns3::ndn::Pit::MarkErased(ns3::Ptr<ns3::ndn::pit::Entry> entry) [member function]
6035 cls.add_method('MarkErased',
6036 'void',
6037 [param('ns3::Ptr< ns3::ndn::pit::Entry >', 'entry')],
6038 is_pure_virtual=True, is_virtual=True)
6039 ## ndn-pit.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::pit::Entry> ns3::ndn::Pit::Next(ns3::Ptr<ns3::ndn::pit::Entry> arg0) [member function]
6040 cls.add_method('Next',
6041 'ns3::Ptr< ns3::ndn::pit::Entry >',
6042 [param('ns3::Ptr< ns3::ndn::pit::Entry >', 'arg0')],
6043 is_pure_virtual=True, is_virtual=True)
6044 ## ndn-pit.h (module 'ndnSIM'): void ns3::ndn::Pit::Print(std::ostream & os) const [member function]
6045 cls.add_method('Print',
6046 'void',
6047 [param('std::ostream &', 'os')],
6048 is_pure_virtual=True, is_const=True, is_virtual=True)
6049 return
6050
6051def register_Ns3NdnStackHelper_methods(root_module, cls):
6052 ## ndn-stack-helper.h (module 'ndnSIM'): ns3::ndn::StackHelper::StackHelper() [constructor]
6053 cls.add_constructor([])
6054 ## ndn-stack-helper.h (module 'ndnSIM'): void ns3::ndn::StackHelper::SetStackAttributes(std::string const & attr1="", std::string const & value1="", std::string const & attr2="", std::string const & value2="", std::string const & attr3="", std::string const & value3="", std::string const & attr4="", std::string const & value4="") [member function]
6055 cls.add_method('SetStackAttributes',
6056 'void',
6057 [param('std::string const &', 'attr1', default_value='""'), param('std::string const &', 'value1', default_value='""'), param('std::string const &', 'attr2', default_value='""'), param('std::string const &', 'value2', default_value='""'), param('std::string const &', 'attr3', default_value='""'), param('std::string const &', 'value3', default_value='""'), param('std::string const &', 'attr4', default_value='""'), param('std::string const &', 'value4', default_value='""')])
6058 ## ndn-stack-helper.h (module 'ndnSIM'): void ns3::ndn::StackHelper::SetForwardingStrategy(std::string const & forwardingStrategyClass, std::string const & attr1="", std::string const & value1="", std::string const & attr2="", std::string const & value2="", std::string const & attr3="", std::string const & value3="", std::string const & attr4="", std::string const & value4="") [member function]
6059 cls.add_method('SetForwardingStrategy',
6060 'void',
6061 [param('std::string const &', 'forwardingStrategyClass'), param('std::string const &', 'attr1', default_value='""'), param('std::string const &', 'value1', default_value='""'), param('std::string const &', 'attr2', default_value='""'), param('std::string const &', 'value2', default_value='""'), param('std::string const &', 'attr3', default_value='""'), param('std::string const &', 'value3', default_value='""'), param('std::string const &', 'attr4', default_value='""'), param('std::string const &', 'value4', default_value='""')])
6062 ## ndn-stack-helper.h (module 'ndnSIM'): void ns3::ndn::StackHelper::SetContentStore(std::string const & contentStoreClass, std::string const & attr1="", std::string const & value1="", std::string const & attr2="", std::string const & value2="", std::string const & attr3="", std::string const & value3="", std::string const & attr4="", std::string const & value4="") [member function]
6063 cls.add_method('SetContentStore',
6064 'void',
6065 [param('std::string const &', 'contentStoreClass'), param('std::string const &', 'attr1', default_value='""'), param('std::string const &', 'value1', default_value='""'), param('std::string const &', 'attr2', default_value='""'), param('std::string const &', 'value2', default_value='""'), param('std::string const &', 'attr3', default_value='""'), param('std::string const &', 'value3', default_value='""'), param('std::string const &', 'attr4', default_value='""'), param('std::string const &', 'value4', default_value='""')])
6066 ## ndn-stack-helper.h (module 'ndnSIM'): void ns3::ndn::StackHelper::SetPit(std::string const & pitClass, std::string const & attr1="", std::string const & value1="", std::string const & attr2="", std::string const & value2="", std::string const & attr3="", std::string const & value3="", std::string const & attr4="", std::string const & value4="") [member function]
6067 cls.add_method('SetPit',
6068 'void',
6069 [param('std::string const &', 'pitClass'), param('std::string const &', 'attr1', default_value='""'), param('std::string const &', 'value1', default_value='""'), param('std::string const &', 'attr2', default_value='""'), param('std::string const &', 'value2', default_value='""'), param('std::string const &', 'attr3', default_value='""'), param('std::string const &', 'value3', default_value='""'), param('std::string const &', 'attr4', default_value='""'), param('std::string const &', 'value4', default_value='""')])
6070 ## ndn-stack-helper.h (module 'ndnSIM'): void ns3::ndn::StackHelper::SetFib(std::string const & fibClass, std::string const & attr1="", std::string const & value1="", std::string const & attr2="", std::string const & value2="", std::string const & attr3="", std::string const & value3="", std::string const & attr4="", std::string const & value4="") [member function]
6071 cls.add_method('SetFib',
6072 'void',
6073 [param('std::string const &', 'fibClass'), param('std::string const &', 'attr1', default_value='""'), param('std::string const &', 'value1', default_value='""'), param('std::string const &', 'attr2', default_value='""'), param('std::string const &', 'value2', default_value='""'), param('std::string const &', 'attr3', default_value='""'), param('std::string const &', 'value3', default_value='""'), param('std::string const &', 'attr4', default_value='""'), param('std::string const &', 'value4', default_value='""')])
6074 ## ndn-stack-helper.h (module 'ndnSIM'): void ns3::ndn::StackHelper::EnableLimits(bool enable=true, ns3::Time avgRtt=ns3::Seconds( ), uint32_t avgContentObject=1100, uint32_t avgInterest=40) [member function]
6075 cls.add_method('EnableLimits',
6076 'void',
6077 [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')])
6078 ## ndn-stack-helper.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::FaceContainer> ns3::ndn::StackHelper::Install(std::string nodeName) const [member function]
6079 cls.add_method('Install',
6080 'ns3::Ptr< ns3::ndn::FaceContainer >',
6081 [param('std::string', 'nodeName')],
6082 is_const=True)
6083 ## ndn-stack-helper.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::FaceContainer> ns3::ndn::StackHelper::Install(ns3::Ptr<ns3::Node> node) const [member function]
6084 cls.add_method('Install',
6085 'ns3::Ptr< ns3::ndn::FaceContainer >',
6086 [param('ns3::Ptr< ns3::Node >', 'node')],
6087 is_const=True)
6088 ## ndn-stack-helper.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::FaceContainer> ns3::ndn::StackHelper::Install(ns3::NodeContainer c) const [member function]
6089 cls.add_method('Install',
6090 'ns3::Ptr< ns3::ndn::FaceContainer >',
6091 [param('ns3::NodeContainer', 'c')],
6092 is_const=True)
6093 ## ndn-stack-helper.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::FaceContainer> ns3::ndn::StackHelper::InstallAll() const [member function]
6094 cls.add_method('InstallAll',
6095 'ns3::Ptr< ns3::ndn::FaceContainer >',
6096 [],
6097 is_const=True)
6098 ## ndn-stack-helper.h (module 'ndnSIM'): static void ns3::ndn::StackHelper::AddRoute(std::string nodeName, std::string prefix, uint32_t faceId, int32_t metric) [member function]
6099 cls.add_method('AddRoute',
6100 'void',
6101 [param('std::string', 'nodeName'), param('std::string', 'prefix'), param('uint32_t', 'faceId'), param('int32_t', 'metric')],
6102 is_static=True)
6103 ## ndn-stack-helper.h (module 'ndnSIM'): static void ns3::ndn::StackHelper::AddRoute(ns3::Ptr<ns3::Node> node, std::string prefix, uint32_t faceId, int32_t metric) [member function]
6104 cls.add_method('AddRoute',
6105 'void',
6106 [param('ns3::Ptr< ns3::Node >', 'node'), param('std::string', 'prefix'), param('uint32_t', 'faceId'), param('int32_t', 'metric')],
6107 is_static=True)
6108 ## ndn-stack-helper.h (module 'ndnSIM'): static void ns3::ndn::StackHelper::AddRoute(ns3::Ptr<ns3::Node> node, std::string prefix, ns3::Ptr<ns3::ndn::Face> face, int32_t metric) [member function]
6109 cls.add_method('AddRoute',
6110 'void',
6111 [param('ns3::Ptr< ns3::Node >', 'node'), param('std::string', 'prefix'), param('ns3::Ptr< ns3::ndn::Face >', 'face'), param('int32_t', 'metric')],
6112 is_static=True)
6113 ## ndn-stack-helper.h (module 'ndnSIM'): void ns3::ndn::StackHelper::SetDefaultRoutes(bool needSet) [member function]
6114 cls.add_method('SetDefaultRoutes',
6115 'void',
6116 [param('bool', 'needSet')])
6117 return
6118
6119def register_Ns3NdnUnknownHeaderException_methods(root_module, cls):
6120 ## ndn-header-helper.h (module 'ndnSIM'): ns3::ndn::UnknownHeaderException::UnknownHeaderException() [constructor]
6121 cls.add_constructor([])
6122 ## ndn-header-helper.h (module 'ndnSIM'): ns3::ndn::UnknownHeaderException::UnknownHeaderException(ns3::ndn::UnknownHeaderException const & arg0) [copy constructor]
6123 cls.add_constructor([param('ns3::ndn::UnknownHeaderException const &', 'arg0')])
6124 return
6125
6126def register_Ns3NdnAppFace_methods(root_module, cls):
6127 ## ndn-app-face.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::AppFace::GetTypeId() [member function]
6128 cls.add_method('GetTypeId',
6129 'ns3::TypeId',
6130 [],
6131 is_static=True)
6132 ## ndn-app-face.h (module 'ndnSIM'): ns3::ndn::AppFace::AppFace(ns3::Ptr<ns3::ndn::App> app) [constructor]
6133 cls.add_constructor([param('ns3::Ptr< ns3::ndn::App >', 'app')])
6134 ## ndn-app-face.h (module 'ndnSIM'): void ns3::ndn::AppFace::RegisterProtocolHandler(ns3::Callback<void, ns3::Ptr<ns3::ndn::Face> const&, ns3::Ptr<ns3::Packet const> const&, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> handler) [member function]
6135 cls.add_method('RegisterProtocolHandler',
6136 'void',
6137 [param('ns3::Callback< void, ns3::Ptr< ns3::ndn::Face >, ns3::Ptr< ns3::Packet const >, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'handler')],
6138 is_virtual=True)
6139 ## ndn-app-face.h (module 'ndnSIM'): std::ostream & ns3::ndn::AppFace::Print(std::ostream & os) const [member function]
6140 cls.add_method('Print',
6141 'std::ostream &',
6142 [param('std::ostream &', 'os')],
6143 is_const=True, is_virtual=True)
6144 ## ndn-app-face.h (module 'ndnSIM'): bool ns3::ndn::AppFace::SendImpl(ns3::Ptr<ns3::Packet> p) [member function]
6145 cls.add_method('SendImpl',
6146 'bool',
6147 [param('ns3::Ptr< ns3::Packet >', 'p')],
6148 visibility='protected', is_virtual=True)
6149 return
6150
6151def register_Ns3NdnCsEntry_methods(root_module, cls):
6152 ## ndn-content-store.h (module 'ndnSIM'): ns3::ndn::cs::Entry::Entry(ns3::ndn::cs::Entry const & arg0) [copy constructor]
6153 cls.add_constructor([param('ns3::ndn::cs::Entry const &', 'arg0')])
6154 ## ndn-content-store.h (module 'ndnSIM'): ns3::ndn::cs::Entry::Entry(ns3::Ptr<ns3::ndn::ContentObjectHeader const> header, ns3::Ptr<const ns3::Packet> packet) [constructor]
6155 cls.add_constructor([param('ns3::Ptr< ns3::ndn::ContentObjectHeader const >', 'header'), param('ns3::Ptr< ns3::Packet const >', 'packet')])
6156 ## ndn-content-store.h (module 'ndnSIM'): ns3::Ptr<ns3::Packet> ns3::ndn::cs::Entry::GetFullyFormedNdnPacket() const [member function]
6157 cls.add_method('GetFullyFormedNdnPacket',
6158 'ns3::Ptr< ns3::Packet >',
6159 [],
6160 is_const=True)
6161 ## ndn-content-store.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::ContentObjectHeader const> ns3::ndn::cs::Entry::GetHeader() const [member function]
6162 cls.add_method('GetHeader',
6163 'ns3::Ptr< ns3::ndn::ContentObjectHeader const >',
6164 [],
6165 is_const=True)
6166 ## ndn-content-store.h (module 'ndnSIM'): ns3::ndn::NameComponents const & ns3::ndn::cs::Entry::GetName() const [member function]
6167 cls.add_method('GetName',
6168 'ns3::ndn::NameComponents const &',
6169 [],
6170 is_const=True)
6171 ## ndn-content-store.h (module 'ndnSIM'): ns3::Ptr<const ns3::Packet> ns3::ndn::cs::Entry::GetPacket() const [member function]
6172 cls.add_method('GetPacket',
6173 'ns3::Ptr< ns3::Packet const >',
6174 [],
6175 is_const=True)
6176 return
6177
6178def register_Ns3NdnFibEntry_methods(root_module, cls):
6179 cls.add_output_stream_operator()
6180 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::Entry::Entry(ns3::ndn::fib::Entry const & arg0) [copy constructor]
6181 cls.add_constructor([param('ns3::ndn::fib::Entry const &', 'arg0')])
6182 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::Entry::Entry(ns3::Ptr<ns3::ndn::NameComponents const> const & prefix) [constructor]
6183 cls.add_constructor([param('ns3::Ptr< ns3::ndn::NameComponents const > const &', 'prefix')])
6184 ## ndn-fib-entry.h (module 'ndnSIM'): void ns3::ndn::fib::Entry::AddOrUpdateRoutingMetric(ns3::Ptr<ns3::ndn::Face> face, int32_t metric) [member function]
6185 cls.add_method('AddOrUpdateRoutingMetric',
6186 'void',
6187 [param('ns3::Ptr< ns3::ndn::Face >', 'face'), param('int32_t', 'metric')])
6188 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::FaceMetric const & ns3::ndn::fib::Entry::FindBestCandidate(uint32_t skip=0) const [member function]
6189 cls.add_method('FindBestCandidate',
6190 'ns3::ndn::fib::FaceMetric const &',
6191 [param('uint32_t', 'skip', default_value='0')],
6192 is_const=True)
6193 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::NameComponents const & ns3::ndn::fib::Entry::GetPrefix() const [member function]
6194 cls.add_method('GetPrefix',
6195 'ns3::ndn::NameComponents const &',
6196 [],
6197 is_const=True)
6198 ## ndn-fib-entry.h (module 'ndnSIM'): void ns3::ndn::fib::Entry::Invalidate() [member function]
6199 cls.add_method('Invalidate',
6200 'void',
6201 [])
6202 ## ndn-fib-entry.h (module 'ndnSIM'): void ns3::ndn::fib::Entry::RemoveFace(ns3::Ptr<ns3::ndn::Face> const & face) [member function]
6203 cls.add_method('RemoveFace',
6204 'void',
6205 [param('ns3::Ptr< ns3::ndn::Face > const &', 'face')])
6206 ## ndn-fib-entry.h (module 'ndnSIM'): void ns3::ndn::fib::Entry::UpdateFaceRtt(ns3::Ptr<ns3::ndn::Face> face, ns3::Time const & sample) [member function]
6207 cls.add_method('UpdateFaceRtt',
6208 'void',
6209 [param('ns3::Ptr< ns3::ndn::Face >', 'face'), param('ns3::Time const &', 'sample')])
6210 ## ndn-fib-entry.h (module 'ndnSIM'): void ns3::ndn::fib::Entry::UpdateStatus(ns3::Ptr<ns3::ndn::Face> face, ns3::ndn::fib::FaceMetric::Status status) [member function]
6211 cls.add_method('UpdateStatus',
6212 'void',
6213 [param('ns3::Ptr< ns3::ndn::Face >', 'face'), param('ns3::ndn::fib::FaceMetric::Status', 'status')])
6214 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::Entry::m_faces [variable]
6215 cls.add_instance_attribute('m_faces', 'boost::multi_index::multi_index_container< ns3::ndn::fib::FaceMetric, boost::multi_index::indexed_by< boost::multi_index::ordered_unique< boost::multi_index::tag< ns3::ndn::fib::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::ndn::fib::FaceMetric, ns3::Ptr< ns3::ndn::Face >, & ( ns3::ndn::fib::FaceMetric::m_face ) >, mpl_::na >, boost::multi_index::ordered_non_unique< boost::multi_index::tag< ns3::ndn::fib::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::ndn::fib::FaceMetric, boost::multi_index::member< ns3::ndn::fib::FaceMetric, ns3::ndn::fib::FaceMetric::Status, & ( ns3::ndn::fib::FaceMetric::m_status ) >, boost::multi_index::member< ns3::ndn::fib::FaceMetric, int, & ( ns3::ndn::fib::FaceMetric::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::ndn::fib::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::ndn::fib::FaceMetric > >', is_const=False)
6216 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::Entry::m_needsProbing [variable]
6217 cls.add_instance_attribute('m_needsProbing', 'bool', is_const=False)
6218 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::Entry::m_prefix [variable]
6219 cls.add_instance_attribute('m_prefix', 'ns3::Ptr< ns3::ndn::NameComponents const >', is_const=False)
6220 return
6221
6222def register_Ns3NdnFibEntryNoFaces_methods(root_module, cls):
6223 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::Entry::NoFaces::NoFaces() [constructor]
6224 cls.add_constructor([])
6225 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::Entry::NoFaces::NoFaces(ns3::ndn::fib::Entry::NoFaces const & arg0) [copy constructor]
6226 cls.add_constructor([param('ns3::ndn::fib::Entry::NoFaces const &', 'arg0')])
6227 return
6228
6229def register_Ns3NdnFibFaceMetric_methods(root_module, cls):
6230 cls.add_output_stream_operator()
6231 cls.add_binary_comparison_operator('<')
6232 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::FaceMetric::FaceMetric(ns3::ndn::fib::FaceMetric const & arg0) [copy constructor]
6233 cls.add_constructor([param('ns3::ndn::fib::FaceMetric const &', 'arg0')])
6234 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::FaceMetric::FaceMetric(ns3::Ptr<ns3::ndn::Face> face, int32_t cost) [constructor]
6235 cls.add_constructor([param('ns3::Ptr< ns3::ndn::Face >', 'face'), param('int32_t', 'cost')])
6236 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::Face> ns3::ndn::fib::FaceMetric::GetFace() const [member function]
6237 cls.add_method('GetFace',
6238 'ns3::Ptr< ns3::ndn::Face >',
6239 [],
6240 is_const=True)
6241 ## ndn-fib-entry.h (module 'ndnSIM'): void ns3::ndn::fib::FaceMetric::UpdateRtt(ns3::Time const & rttSample) [member function]
6242 cls.add_method('UpdateRtt',
6243 'void',
6244 [param('ns3::Time const &', 'rttSample')])
6245 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::FaceMetric::m_face [variable]
6246 cls.add_instance_attribute('m_face', 'ns3::Ptr< ns3::ndn::Face >', is_const=False)
6247 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::FaceMetric::m_routingCost [variable]
6248 cls.add_instance_attribute('m_routingCost', 'int32_t', is_const=False)
6249 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::FaceMetric::m_rttVar [variable]
6250 cls.add_instance_attribute('m_rttVar', 'ns3::Time', is_const=False)
6251 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::FaceMetric::m_sRtt [variable]
6252 cls.add_instance_attribute('m_sRtt', 'ns3::Time', is_const=False)
6253 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::FaceMetric::m_status [variable]
6254 cls.add_instance_attribute('m_status', 'ns3::ndn::fib::FaceMetric::Status', is_const=False)
6255 return
6256
6257def register_Ns3NdnFibFaceMetricContainer_methods(root_module, cls):
6258 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::FaceMetricContainer::FaceMetricContainer() [constructor]
6259 cls.add_constructor([])
6260 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::FaceMetricContainer::FaceMetricContainer(ns3::ndn::fib::FaceMetricContainer const & arg0) [copy constructor]
6261 cls.add_constructor([param('ns3::ndn::fib::FaceMetricContainer const &', 'arg0')])
6262 return
6263
6264def register_Ns3NdnFibI_face_methods(root_module, cls):
6265 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::i_face::i_face() [constructor]
6266 cls.add_constructor([])
6267 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::i_face::i_face(ns3::ndn::fib::i_face const & arg0) [copy constructor]
6268 cls.add_constructor([param('ns3::ndn::fib::i_face const &', 'arg0')])
6269 return
6270
6271def register_Ns3NdnFibI_metric_methods(root_module, cls):
6272 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::i_metric::i_metric() [constructor]
6273 cls.add_constructor([])
6274 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::i_metric::i_metric(ns3::ndn::fib::i_metric const & arg0) [copy constructor]
6275 cls.add_constructor([param('ns3::ndn::fib::i_metric const &', 'arg0')])
6276 return
6277
6278def register_Ns3NdnFibI_nth_methods(root_module, cls):
6279 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::i_nth::i_nth() [constructor]
6280 cls.add_constructor([])
6281 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::i_nth::i_nth(ns3::ndn::fib::i_nth const & arg0) [copy constructor]
6282 cls.add_constructor([param('ns3::ndn::fib::i_nth const &', 'arg0')])
6283 return
6284
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07006285def register_Ns3NdnFwTag_methods(root_module, cls):
6286 ## ndn-fw-tag.h (module 'ndnSIM'): ns3::ndn::fw::Tag::Tag() [constructor]
6287 cls.add_constructor([])
6288 ## ndn-fw-tag.h (module 'ndnSIM'): ns3::ndn::fw::Tag::Tag(ns3::ndn::fw::Tag const & arg0) [copy constructor]
6289 cls.add_constructor([param('ns3::ndn::fw::Tag const &', 'arg0')])
6290 return
6291
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006292def register_Ns3NdnPitEntry_methods(root_module, cls):
6293 cls.add_output_stream_operator()
6294 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::ndn::pit::Entry::Entry(ns3::ndn::pit::Entry const & arg0) [copy constructor]
6295 cls.add_constructor([param('ns3::ndn::pit::Entry const &', 'arg0')])
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07006296 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::ndn::pit::Entry::Entry(ns3::ndn::Pit & container, ns3::Ptr<ns3::ndn::InterestHeader const> header, ns3::Ptr<ns3::ndn::fib::Entry> fibEntry) [constructor]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006297 cls.add_constructor([param('ns3::ndn::Pit &', 'container'), param('ns3::Ptr< ns3::ndn::InterestHeader const >', 'header'), param('ns3::Ptr< ns3::ndn::fib::Entry >', 'fibEntry')])
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07006298 ## ndn-pit-entry.h (module 'ndnSIM'): void ns3::ndn::pit::Entry::AddFwTag(boost::shared_ptr<ns3::ndn::fw::Tag> tag) [member function]
6299 cls.add_method('AddFwTag',
6300 'void',
6301 [param('boost::shared_ptr< ns3::ndn::fw::Tag >', 'tag')])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006302 ## ndn-pit-entry.h (module 'ndnSIM'): std::_Rb_tree_const_iterator<ns3::ndn::pit::IncomingFace> ns3::ndn::pit::Entry::AddIncoming(ns3::Ptr<ns3::ndn::Face> face) [member function]
6303 cls.add_method('AddIncoming',
6304 'std::_Rb_tree_const_iterator< ns3::ndn::pit::IncomingFace >',
6305 [param('ns3::Ptr< ns3::ndn::Face >', 'face')],
6306 is_virtual=True)
Alexander Afanasyevc202fd92012-09-03 21:46:00 -07006307 ## ndn-pit-entry.h (module 'ndnSIM'): std::_Rb_tree_const_iterator<ns3::ndn::pit::OutgoingFace> ns3::ndn::pit::Entry::AddOutgoing(ns3::Ptr<ns3::ndn::Face> face) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006308 cls.add_method('AddOutgoing',
Alexander Afanasyevc202fd92012-09-03 21:46:00 -07006309 'std::_Rb_tree_const_iterator< ns3::ndn::pit::OutgoingFace >',
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006310 [param('ns3::Ptr< ns3::ndn::Face >', 'face')],
6311 is_virtual=True)
6312 ## ndn-pit-entry.h (module 'ndnSIM'): void ns3::ndn::pit::Entry::AddSeenNonce(uint32_t nonce) [member function]
6313 cls.add_method('AddSeenNonce',
6314 'void',
6315 [param('uint32_t', 'nonce')],
6316 is_virtual=True)
6317 ## ndn-pit-entry.h (module 'ndnSIM'): bool ns3::ndn::pit::Entry::AreAllOutgoingInVain() const [member function]
6318 cls.add_method('AreAllOutgoingInVain',
6319 'bool',
6320 [],
6321 is_const=True)
6322 ## ndn-pit-entry.h (module 'ndnSIM'): bool ns3::ndn::pit::Entry::AreTherePromisingOutgoingFacesExcept(ns3::Ptr<ns3::ndn::Face> face) const [member function]
6323 cls.add_method('AreTherePromisingOutgoingFacesExcept',
6324 'bool',
6325 [param('ns3::Ptr< ns3::ndn::Face >', 'face')],
6326 is_const=True)
6327 ## ndn-pit-entry.h (module 'ndnSIM'): void ns3::ndn::pit::Entry::ClearIncoming() [member function]
6328 cls.add_method('ClearIncoming',
6329 'void',
6330 [],
6331 is_virtual=True)
6332 ## ndn-pit-entry.h (module 'ndnSIM'): void ns3::ndn::pit::Entry::ClearOutgoing() [member function]
6333 cls.add_method('ClearOutgoing',
6334 'void',
6335 [],
6336 is_virtual=True)
6337 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::Time const & ns3::ndn::pit::Entry::GetExpireTime() const [member function]
6338 cls.add_method('GetExpireTime',
6339 'ns3::Time const &',
6340 [],
6341 is_const=True)
6342 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::fib::Entry> ns3::ndn::pit::Entry::GetFibEntry() [member function]
6343 cls.add_method('GetFibEntry',
6344 'ns3::Ptr< ns3::ndn::fib::Entry >',
6345 [])
6346 ## ndn-pit-entry.h (module 'ndnSIM'): std::set<ns3::ndn::pit::IncomingFace, std::less<ns3::ndn::pit::IncomingFace>, std::allocator<ns3::ndn::pit::IncomingFace> > const & ns3::ndn::pit::Entry::GetIncoming() const [member function]
6347 cls.add_method('GetIncoming',
6348 'std::set< ns3::ndn::pit::IncomingFace > const &',
6349 [],
6350 is_const=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07006351 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::InterestHeader const> ns3::ndn::pit::Entry::GetInterest() const [member function]
6352 cls.add_method('GetInterest',
6353 'ns3::Ptr< ns3::ndn::InterestHeader const >',
6354 [],
6355 is_const=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006356 ## ndn-pit-entry.h (module 'ndnSIM'): uint32_t ns3::ndn::pit::Entry::GetMaxRetxCount() const [member function]
6357 cls.add_method('GetMaxRetxCount',
6358 'uint32_t',
6359 [],
6360 is_const=True)
Alexander Afanasyevc202fd92012-09-03 21:46:00 -07006361 ## ndn-pit-entry.h (module 'ndnSIM'): std::set<ns3::ndn::pit::OutgoingFace, std::less<ns3::ndn::pit::OutgoingFace>, std::allocator<ns3::ndn::pit::OutgoingFace> > const & ns3::ndn::pit::Entry::GetOutgoing() const [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006362 cls.add_method('GetOutgoing',
Alexander Afanasyevc202fd92012-09-03 21:46:00 -07006363 'std::set< ns3::ndn::pit::OutgoingFace > const &',
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006364 [],
6365 is_const=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07006366 ## ndn-pit-entry.h (module 'ndnSIM'): uint32_t ns3::ndn::pit::Entry::GetOutgoingCount() const [member function]
6367 cls.add_method('GetOutgoingCount',
6368 'uint32_t',
6369 [],
6370 is_const=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006371 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::ndn::NameComponents const & ns3::ndn::pit::Entry::GetPrefix() const [member function]
6372 cls.add_method('GetPrefix',
6373 'ns3::ndn::NameComponents const &',
6374 [],
6375 is_const=True)
6376 ## ndn-pit-entry.h (module 'ndnSIM'): void ns3::ndn::pit::Entry::IncreaseAllowedRetxCount() [member function]
6377 cls.add_method('IncreaseAllowedRetxCount',
6378 'void',
6379 [],
6380 is_virtual=True)
6381 ## ndn-pit-entry.h (module 'ndnSIM'): bool ns3::ndn::pit::Entry::IsNonceSeen(uint32_t nonce) const [member function]
6382 cls.add_method('IsNonceSeen',
6383 'bool',
6384 [param('uint32_t', 'nonce')],
6385 is_const=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07006386 ## ndn-pit-entry.h (module 'ndnSIM'): void ns3::ndn::pit::Entry::OffsetLifetime(ns3::Time const & offsetTime) [member function]
6387 cls.add_method('OffsetLifetime',
6388 'void',
6389 [param('ns3::Time const &', 'offsetTime')],
6390 is_virtual=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006391 ## ndn-pit-entry.h (module 'ndnSIM'): void ns3::ndn::pit::Entry::RemoveAllReferencesToFace(ns3::Ptr<ns3::ndn::Face> face) [member function]
6392 cls.add_method('RemoveAllReferencesToFace',
6393 'void',
6394 [param('ns3::Ptr< ns3::ndn::Face >', 'face')],
6395 is_virtual=True)
6396 ## ndn-pit-entry.h (module 'ndnSIM'): void ns3::ndn::pit::Entry::RemoveIncoming(ns3::Ptr<ns3::ndn::Face> face) [member function]
6397 cls.add_method('RemoveIncoming',
6398 'void',
6399 [param('ns3::Ptr< ns3::ndn::Face >', 'face')],
6400 is_virtual=True)
6401 ## ndn-pit-entry.h (module 'ndnSIM'): void ns3::ndn::pit::Entry::SetWaitingInVain(ns3::Ptr<ns3::ndn::Face> face) [member function]
6402 cls.add_method('SetWaitingInVain',
6403 'void',
6404 [param('ns3::Ptr< ns3::ndn::Face >', 'face')],
6405 is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07006406 ## ndn-pit-entry.h (module 'ndnSIM'): void ns3::ndn::pit::Entry::UpdateLifetime(ns3::Time const & lifetime) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006407 cls.add_method('UpdateLifetime',
6408 'void',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07006409 [param('ns3::Time const &', 'lifetime')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006410 is_virtual=True)
6411 return
6412
6413def register_Ns3NdnPitIncomingFace_methods(root_module, cls):
6414 cls.add_binary_comparison_operator('==')
6415 cls.add_binary_comparison_operator('<')
6416 ## ndn-pit-entry-incoming-face.h (module 'ndnSIM'): ns3::ndn::pit::IncomingFace::IncomingFace(ns3::ndn::pit::IncomingFace const & arg0) [copy constructor]
6417 cls.add_constructor([param('ns3::ndn::pit::IncomingFace const &', 'arg0')])
6418 ## ndn-pit-entry-incoming-face.h (module 'ndnSIM'): ns3::ndn::pit::IncomingFace::IncomingFace(ns3::Ptr<ns3::ndn::Face> face) [constructor]
6419 cls.add_constructor([param('ns3::Ptr< ns3::ndn::Face >', 'face')])
6420 ## ndn-pit-entry-incoming-face.h (module 'ndnSIM'): ns3::ndn::pit::IncomingFace::IncomingFace() [constructor]
6421 cls.add_constructor([])
6422 ## ndn-pit-entry-incoming-face.h (module 'ndnSIM'): ns3::ndn::pit::IncomingFace::m_arrivalTime [variable]
6423 cls.add_instance_attribute('m_arrivalTime', 'ns3::Time', is_const=False)
6424 ## ndn-pit-entry-incoming-face.h (module 'ndnSIM'): ns3::ndn::pit::IncomingFace::m_face [variable]
6425 cls.add_instance_attribute('m_face', 'ns3::Ptr< ns3::ndn::Face >', is_const=False)
6426 return
6427
6428def register_Ns3NdnPitOutgoingFace_methods(root_module, cls):
6429 cls.add_binary_comparison_operator('==')
6430 cls.add_binary_comparison_operator('<')
6431 ## ndn-pit-entry-outgoing-face.h (module 'ndnSIM'): ns3::ndn::pit::OutgoingFace::OutgoingFace(ns3::ndn::pit::OutgoingFace const & arg0) [copy constructor]
6432 cls.add_constructor([param('ns3::ndn::pit::OutgoingFace const &', 'arg0')])
6433 ## ndn-pit-entry-outgoing-face.h (module 'ndnSIM'): ns3::ndn::pit::OutgoingFace::OutgoingFace(ns3::Ptr<ns3::ndn::Face> face) [constructor]
6434 cls.add_constructor([param('ns3::Ptr< ns3::ndn::Face >', 'face')])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07006435 ## ndn-pit-entry-outgoing-face.h (module 'ndnSIM'): ns3::ndn::pit::OutgoingFace::OutgoingFace() [constructor]
6436 cls.add_constructor([])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006437 ## ndn-pit-entry-outgoing-face.h (module 'ndnSIM'): void ns3::ndn::pit::OutgoingFace::UpdateOnRetransmit() [member function]
6438 cls.add_method('UpdateOnRetransmit',
6439 'void',
6440 [])
6441 ## ndn-pit-entry-outgoing-face.h (module 'ndnSIM'): ns3::ndn::pit::OutgoingFace::m_face [variable]
6442 cls.add_instance_attribute('m_face', 'ns3::Ptr< ns3::ndn::Face >', is_const=False)
6443 ## ndn-pit-entry-outgoing-face.h (module 'ndnSIM'): ns3::ndn::pit::OutgoingFace::m_retxCount [variable]
6444 cls.add_instance_attribute('m_retxCount', 'uint32_t', is_const=False)
6445 ## ndn-pit-entry-outgoing-face.h (module 'ndnSIM'): ns3::ndn::pit::OutgoingFace::m_sendTime [variable]
6446 cls.add_instance_attribute('m_sendTime', 'ns3::Time', is_const=False)
6447 ## ndn-pit-entry-outgoing-face.h (module 'ndnSIM'): ns3::ndn::pit::OutgoingFace::m_waitingInVain [variable]
6448 cls.add_instance_attribute('m_waitingInVain', 'bool', is_const=False)
6449 return
6450
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006451def register_Ns3NdnPitI_face_methods(root_module, cls):
6452 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::ndn::pit::i_face::i_face() [constructor]
6453 cls.add_constructor([])
6454 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::ndn::pit::i_face::i_face(ns3::ndn::pit::i_face const & arg0) [copy constructor]
6455 cls.add_constructor([param('ns3::ndn::pit::i_face const &', 'arg0')])
6456 return
6457
6458def register_Ns3NdnPitI_retx_methods(root_module, cls):
6459 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::ndn::pit::i_retx::i_retx() [constructor]
6460 cls.add_constructor([])
6461 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::ndn::pit::i_retx::i_retx(ns3::ndn::pit::i_retx const & arg0) [copy constructor]
6462 cls.add_constructor([param('ns3::ndn::pit::i_retx const &', 'arg0')])
6463 return
6464
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08006465def register_functions(root_module):
6466 module = root_module
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08006467 register_functions_ns3_FatalImpl(module.get_submodule('FatalImpl'), root_module)
6468 register_functions_ns3_internal(module.get_submodule('internal'), root_module)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006469 register_functions_ns3_ndn(module.get_submodule('ndn'), root_module)
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08006470 return
6471
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08006472def register_functions_ns3_FatalImpl(module, root_module):
6473 return
6474
6475def register_functions_ns3_internal(module, root_module):
6476 return
6477
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006478def register_functions_ns3_ndn(module, root_module):
6479 ## ndn-name-components.h (module 'ndnSIM'): extern ns3::Ptr<ns3::AttributeChecker const> ns3::ndn::MakeNameComponentsChecker() [free function]
6480 module.add_function('MakeNameComponentsChecker',
6481 'ns3::Ptr< ns3::AttributeChecker const >',
6482 [])
6483 register_functions_ns3_ndn_cs(module.get_submodule('cs'), root_module)
6484 register_functions_ns3_ndn_fib(module.get_submodule('fib'), root_module)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07006485 register_functions_ns3_ndn_fw(module.get_submodule('fw'), root_module)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006486 register_functions_ns3_ndn_pit(module.get_submodule('pit'), root_module)
6487 return
6488
6489def register_functions_ns3_ndn_cs(module, root_module):
6490 return
6491
6492def register_functions_ns3_ndn_fib(module, root_module):
6493 return
6494
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07006495def register_functions_ns3_ndn_fw(module, root_module):
6496 return
6497
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006498def register_functions_ns3_ndn_pit(module, root_module):
6499 return
6500
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08006501def main():
6502 out = FileCodeSink(sys.stdout)
6503 root_module = module_init()
6504 register_types(root_module)
6505 register_methods(root_module)
6506 register_functions(root_module)
6507 root_module.generate(out)
6508
6509if __name__ == '__main__':
6510 main()
6511