blob: 591c8f40bb298215dc37bc3579389f2c174a8c13 [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):
2523 cls.add_binary_comparison_operator('!=')
2524 cls.add_inplace_numeric_operator('*=', param('ns3::int64x64_t const &', 'right'))
2525 cls.add_inplace_numeric_operator('+=', param('ns3::int64x64_t const &', 'right'))
2526 cls.add_inplace_numeric_operator('-=', param('ns3::int64x64_t const &', 'right'))
Alexander Afanasyeva28ec562012-10-25 14:07:32 -07002527 cls.add_output_stream_operator()
Alexander Afanasyeva8f5d882012-11-09 14:22:48 -08002528 cls.add_binary_comparison_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):
3073 cls.add_binary_comparison_operator('!=')
3074 cls.add_inplace_numeric_operator('+=', param('ns3::Time const &', 'right'))
3075 cls.add_inplace_numeric_operator('-=', param('ns3::Time const &', 'right'))
Alexander Afanasyeva28ec562012-10-25 14:07:32 -07003076 cls.add_output_stream_operator()
Alexander Afanasyeva8f5d882012-11-09 14:22:48 -08003077 cls.add_binary_comparison_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([])
Alexander Afanasyeva8f5d882012-11-09 14:22:48 -08004035 ## mobility-model.h (module 'mobility'): int64_t ns3::MobilityModel::AssignStreams(int64_t stream) [member function]
4036 cls.add_method('AssignStreams',
4037 'int64_t',
4038 [param('int64_t', 'stream')])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07004039 ## mobility-model.h (module 'mobility'): double ns3::MobilityModel::GetDistanceFrom(ns3::Ptr<const ns3::MobilityModel> position) const [member function]
4040 cls.add_method('GetDistanceFrom',
4041 'double',
4042 [param('ns3::Ptr< ns3::MobilityModel const >', 'position')],
4043 is_const=True)
4044 ## mobility-model.h (module 'mobility'): static ns3::Ptr<ns3::MobilityModel> ns3::MobilityModel::GetMobilityModel(ns3::Ptr<ns3::Object> node) [member function]
4045 cls.add_method('GetMobilityModel',
4046 'ns3::Ptr< ns3::MobilityModel >',
4047 [param('ns3::Ptr< ns3::Object >', 'node')],
4048 is_static=True)
4049 ## mobility-model.h (module 'mobility'): ns3::Vector ns3::MobilityModel::GetPosition() const [member function]
4050 cls.add_method('GetPosition',
4051 'ns3::Vector',
4052 [],
4053 is_const=True)
4054 ## mobility-model.h (module 'mobility'): double ns3::MobilityModel::GetRelativeSpeed(ns3::Ptr<const ns3::MobilityModel> other) const [member function]
4055 cls.add_method('GetRelativeSpeed',
4056 'double',
4057 [param('ns3::Ptr< ns3::MobilityModel const >', 'other')],
4058 is_const=True)
4059 ## mobility-model.h (module 'mobility'): static ns3::TypeId ns3::MobilityModel::GetTypeId() [member function]
4060 cls.add_method('GetTypeId',
4061 'ns3::TypeId',
4062 [],
4063 is_static=True)
4064 ## mobility-model.h (module 'mobility'): ns3::Vector ns3::MobilityModel::GetVelocity() const [member function]
4065 cls.add_method('GetVelocity',
4066 'ns3::Vector',
4067 [],
4068 is_const=True)
4069 ## mobility-model.h (module 'mobility'): void ns3::MobilityModel::SetPosition(ns3::Vector const & position) [member function]
4070 cls.add_method('SetPosition',
4071 'void',
4072 [param('ns3::Vector const &', 'position')])
4073 ## mobility-model.h (module 'mobility'): void ns3::MobilityModel::NotifyCourseChange() const [member function]
4074 cls.add_method('NotifyCourseChange',
4075 'void',
4076 [],
4077 is_const=True, visibility='protected')
Alexander Afanasyeva8f5d882012-11-09 14:22:48 -08004078 ## mobility-model.h (module 'mobility'): int64_t ns3::MobilityModel::DoAssignStreams(int64_t start) [member function]
4079 cls.add_method('DoAssignStreams',
4080 'int64_t',
4081 [param('int64_t', 'start')],
4082 visibility='private', is_virtual=True)
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07004083 ## mobility-model.h (module 'mobility'): ns3::Vector ns3::MobilityModel::DoGetPosition() const [member function]
4084 cls.add_method('DoGetPosition',
4085 'ns3::Vector',
4086 [],
4087 is_pure_virtual=True, is_const=True, visibility='private', is_virtual=True)
4088 ## mobility-model.h (module 'mobility'): ns3::Vector ns3::MobilityModel::DoGetVelocity() const [member function]
4089 cls.add_method('DoGetVelocity',
4090 'ns3::Vector',
4091 [],
4092 is_pure_virtual=True, is_const=True, visibility='private', is_virtual=True)
4093 ## mobility-model.h (module 'mobility'): void ns3::MobilityModel::DoSetPosition(ns3::Vector const & position) [member function]
4094 cls.add_method('DoSetPosition',
4095 'void',
4096 [param('ns3::Vector const &', 'position')],
4097 is_pure_virtual=True, visibility='private', is_virtual=True)
4098 return
4099
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004100def register_Ns3NetDevice_methods(root_module, cls):
4101 ## net-device.h (module 'network'): ns3::NetDevice::NetDevice() [constructor]
4102 cls.add_constructor([])
4103 ## net-device.h (module 'network'): ns3::NetDevice::NetDevice(ns3::NetDevice const & arg0) [copy constructor]
4104 cls.add_constructor([param('ns3::NetDevice const &', 'arg0')])
Alexander Afanasyeva8f5d882012-11-09 14:22:48 -08004105 ## 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]
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004106 cls.add_method('AddLinkChangeCallback',
4107 'void',
4108 [param('ns3::Callback< void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'callback')],
4109 is_pure_virtual=True, is_virtual=True)
4110 ## net-device.h (module 'network'): ns3::Address ns3::NetDevice::GetAddress() const [member function]
4111 cls.add_method('GetAddress',
4112 'ns3::Address',
4113 [],
4114 is_pure_virtual=True, is_const=True, is_virtual=True)
4115 ## net-device.h (module 'network'): ns3::Address ns3::NetDevice::GetBroadcast() const [member function]
4116 cls.add_method('GetBroadcast',
4117 'ns3::Address',
4118 [],
4119 is_pure_virtual=True, is_const=True, is_virtual=True)
4120 ## net-device.h (module 'network'): ns3::Ptr<ns3::Channel> ns3::NetDevice::GetChannel() const [member function]
4121 cls.add_method('GetChannel',
4122 'ns3::Ptr< ns3::Channel >',
4123 [],
4124 is_pure_virtual=True, is_const=True, is_virtual=True)
4125 ## net-device.h (module 'network'): uint32_t ns3::NetDevice::GetIfIndex() const [member function]
4126 cls.add_method('GetIfIndex',
4127 'uint32_t',
4128 [],
4129 is_pure_virtual=True, is_const=True, is_virtual=True)
4130 ## net-device.h (module 'network'): uint16_t ns3::NetDevice::GetMtu() const [member function]
4131 cls.add_method('GetMtu',
4132 'uint16_t',
4133 [],
4134 is_pure_virtual=True, is_const=True, is_virtual=True)
4135 ## net-device.h (module 'network'): ns3::Address ns3::NetDevice::GetMulticast(ns3::Ipv4Address multicastGroup) const [member function]
4136 cls.add_method('GetMulticast',
4137 'ns3::Address',
4138 [param('ns3::Ipv4Address', 'multicastGroup')],
4139 is_pure_virtual=True, is_const=True, is_virtual=True)
4140 ## net-device.h (module 'network'): ns3::Address ns3::NetDevice::GetMulticast(ns3::Ipv6Address addr) const [member function]
4141 cls.add_method('GetMulticast',
4142 'ns3::Address',
4143 [param('ns3::Ipv6Address', 'addr')],
4144 is_pure_virtual=True, is_const=True, is_virtual=True)
4145 ## net-device.h (module 'network'): ns3::Ptr<ns3::Node> ns3::NetDevice::GetNode() const [member function]
4146 cls.add_method('GetNode',
4147 'ns3::Ptr< ns3::Node >',
4148 [],
4149 is_pure_virtual=True, is_const=True, is_virtual=True)
4150 ## net-device.h (module 'network'): static ns3::TypeId ns3::NetDevice::GetTypeId() [member function]
4151 cls.add_method('GetTypeId',
4152 'ns3::TypeId',
4153 [],
4154 is_static=True)
4155 ## net-device.h (module 'network'): bool ns3::NetDevice::IsBridge() const [member function]
4156 cls.add_method('IsBridge',
4157 'bool',
4158 [],
4159 is_pure_virtual=True, is_const=True, is_virtual=True)
4160 ## net-device.h (module 'network'): bool ns3::NetDevice::IsBroadcast() const [member function]
4161 cls.add_method('IsBroadcast',
4162 'bool',
4163 [],
4164 is_pure_virtual=True, is_const=True, is_virtual=True)
4165 ## net-device.h (module 'network'): bool ns3::NetDevice::IsLinkUp() const [member function]
4166 cls.add_method('IsLinkUp',
4167 'bool',
4168 [],
4169 is_pure_virtual=True, is_const=True, is_virtual=True)
4170 ## net-device.h (module 'network'): bool ns3::NetDevice::IsMulticast() const [member function]
4171 cls.add_method('IsMulticast',
4172 'bool',
4173 [],
4174 is_pure_virtual=True, is_const=True, is_virtual=True)
4175 ## net-device.h (module 'network'): bool ns3::NetDevice::IsPointToPoint() const [member function]
4176 cls.add_method('IsPointToPoint',
4177 'bool',
4178 [],
4179 is_pure_virtual=True, is_const=True, is_virtual=True)
4180 ## net-device.h (module 'network'): bool ns3::NetDevice::NeedsArp() const [member function]
4181 cls.add_method('NeedsArp',
4182 'bool',
4183 [],
4184 is_pure_virtual=True, is_const=True, is_virtual=True)
4185 ## net-device.h (module 'network'): bool ns3::NetDevice::Send(ns3::Ptr<ns3::Packet> packet, ns3::Address const & dest, uint16_t protocolNumber) [member function]
4186 cls.add_method('Send',
4187 'bool',
4188 [param('ns3::Ptr< ns3::Packet >', 'packet'), param('ns3::Address const &', 'dest'), param('uint16_t', 'protocolNumber')],
4189 is_pure_virtual=True, is_virtual=True)
4190 ## 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]
4191 cls.add_method('SendFrom',
4192 'bool',
4193 [param('ns3::Ptr< ns3::Packet >', 'packet'), param('ns3::Address const &', 'source'), param('ns3::Address const &', 'dest'), param('uint16_t', 'protocolNumber')],
4194 is_pure_virtual=True, is_virtual=True)
4195 ## net-device.h (module 'network'): void ns3::NetDevice::SetAddress(ns3::Address address) [member function]
4196 cls.add_method('SetAddress',
4197 'void',
4198 [param('ns3::Address', 'address')],
4199 is_pure_virtual=True, is_virtual=True)
4200 ## net-device.h (module 'network'): void ns3::NetDevice::SetIfIndex(uint32_t const index) [member function]
4201 cls.add_method('SetIfIndex',
4202 'void',
4203 [param('uint32_t const', 'index')],
4204 is_pure_virtual=True, is_virtual=True)
4205 ## net-device.h (module 'network'): bool ns3::NetDevice::SetMtu(uint16_t const mtu) [member function]
4206 cls.add_method('SetMtu',
4207 'bool',
4208 [param('uint16_t const', 'mtu')],
4209 is_pure_virtual=True, is_virtual=True)
4210 ## net-device.h (module 'network'): void ns3::NetDevice::SetNode(ns3::Ptr<ns3::Node> node) [member function]
4211 cls.add_method('SetNode',
4212 'void',
4213 [param('ns3::Ptr< ns3::Node >', 'node')],
4214 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -08004215 ## 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 -08004216 cls.add_method('SetPromiscReceiveCallback',
4217 'void',
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -08004218 [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 -08004219 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -08004220 ## 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 -08004221 cls.add_method('SetReceiveCallback',
4222 'void',
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -08004223 [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 -08004224 is_pure_virtual=True, is_virtual=True)
4225 ## net-device.h (module 'network'): bool ns3::NetDevice::SupportsSendFrom() const [member function]
4226 cls.add_method('SupportsSendFrom',
4227 'bool',
4228 [],
4229 is_pure_virtual=True, is_const=True, is_virtual=True)
4230 return
4231
4232def register_Ns3NixVector_methods(root_module, cls):
4233 cls.add_output_stream_operator()
4234 ## nix-vector.h (module 'network'): ns3::NixVector::NixVector() [constructor]
4235 cls.add_constructor([])
4236 ## nix-vector.h (module 'network'): ns3::NixVector::NixVector(ns3::NixVector const & o) [copy constructor]
4237 cls.add_constructor([param('ns3::NixVector const &', 'o')])
4238 ## nix-vector.h (module 'network'): void ns3::NixVector::AddNeighborIndex(uint32_t newBits, uint32_t numberOfBits) [member function]
4239 cls.add_method('AddNeighborIndex',
4240 'void',
4241 [param('uint32_t', 'newBits'), param('uint32_t', 'numberOfBits')])
4242 ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::BitCount(uint32_t numberOfNeighbors) const [member function]
4243 cls.add_method('BitCount',
4244 'uint32_t',
4245 [param('uint32_t', 'numberOfNeighbors')],
4246 is_const=True)
4247 ## nix-vector.h (module 'network'): ns3::Ptr<ns3::NixVector> ns3::NixVector::Copy() const [member function]
4248 cls.add_method('Copy',
4249 'ns3::Ptr< ns3::NixVector >',
4250 [],
4251 is_const=True)
4252 ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::Deserialize(uint32_t const * buffer, uint32_t size) [member function]
4253 cls.add_method('Deserialize',
4254 'uint32_t',
4255 [param('uint32_t const *', 'buffer'), param('uint32_t', 'size')])
4256 ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::ExtractNeighborIndex(uint32_t numberOfBits) [member function]
4257 cls.add_method('ExtractNeighborIndex',
4258 'uint32_t',
4259 [param('uint32_t', 'numberOfBits')])
4260 ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::GetRemainingBits() [member function]
4261 cls.add_method('GetRemainingBits',
4262 'uint32_t',
4263 [])
4264 ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::GetSerializedSize() const [member function]
4265 cls.add_method('GetSerializedSize',
4266 'uint32_t',
4267 [],
4268 is_const=True)
4269 ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::Serialize(uint32_t * buffer, uint32_t maxSize) const [member function]
4270 cls.add_method('Serialize',
4271 'uint32_t',
4272 [param('uint32_t *', 'buffer'), param('uint32_t', 'maxSize')],
4273 is_const=True)
4274 return
4275
4276def register_Ns3Node_methods(root_module, cls):
4277 ## node.h (module 'network'): ns3::Node::Node(ns3::Node const & arg0) [copy constructor]
4278 cls.add_constructor([param('ns3::Node const &', 'arg0')])
4279 ## node.h (module 'network'): ns3::Node::Node() [constructor]
4280 cls.add_constructor([])
4281 ## node.h (module 'network'): ns3::Node::Node(uint32_t systemId) [constructor]
4282 cls.add_constructor([param('uint32_t', 'systemId')])
4283 ## node.h (module 'network'): uint32_t ns3::Node::AddApplication(ns3::Ptr<ns3::Application> application) [member function]
4284 cls.add_method('AddApplication',
4285 'uint32_t',
4286 [param('ns3::Ptr< ns3::Application >', 'application')])
4287 ## node.h (module 'network'): uint32_t ns3::Node::AddDevice(ns3::Ptr<ns3::NetDevice> device) [member function]
4288 cls.add_method('AddDevice',
4289 'uint32_t',
4290 [param('ns3::Ptr< ns3::NetDevice >', 'device')])
4291 ## node.h (module 'network'): static bool ns3::Node::ChecksumEnabled() [member function]
4292 cls.add_method('ChecksumEnabled',
4293 'bool',
4294 [],
4295 is_static=True)
4296 ## node.h (module 'network'): ns3::Ptr<ns3::Application> ns3::Node::GetApplication(uint32_t index) const [member function]
4297 cls.add_method('GetApplication',
4298 'ns3::Ptr< ns3::Application >',
4299 [param('uint32_t', 'index')],
4300 is_const=True)
4301 ## node.h (module 'network'): ns3::Ptr<ns3::NetDevice> ns3::Node::GetDevice(uint32_t index) const [member function]
4302 cls.add_method('GetDevice',
4303 'ns3::Ptr< ns3::NetDevice >',
4304 [param('uint32_t', 'index')],
4305 is_const=True)
4306 ## node.h (module 'network'): uint32_t ns3::Node::GetId() const [member function]
4307 cls.add_method('GetId',
4308 'uint32_t',
4309 [],
4310 is_const=True)
4311 ## node.h (module 'network'): uint32_t ns3::Node::GetNApplications() const [member function]
4312 cls.add_method('GetNApplications',
4313 'uint32_t',
4314 [],
4315 is_const=True)
4316 ## node.h (module 'network'): uint32_t ns3::Node::GetNDevices() const [member function]
4317 cls.add_method('GetNDevices',
4318 'uint32_t',
4319 [],
4320 is_const=True)
4321 ## node.h (module 'network'): uint32_t ns3::Node::GetSystemId() const [member function]
4322 cls.add_method('GetSystemId',
4323 'uint32_t',
4324 [],
4325 is_const=True)
4326 ## node.h (module 'network'): static ns3::TypeId ns3::Node::GetTypeId() [member function]
4327 cls.add_method('GetTypeId',
4328 'ns3::TypeId',
4329 [],
4330 is_static=True)
4331 ## 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]
4332 cls.add_method('RegisterDeviceAdditionListener',
4333 'void',
4334 [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')])
4335 ## 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]
4336 cls.add_method('RegisterProtocolHandler',
4337 'void',
4338 [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')])
4339 ## 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]
4340 cls.add_method('UnregisterDeviceAdditionListener',
4341 'void',
4342 [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')])
4343 ## 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]
4344 cls.add_method('UnregisterProtocolHandler',
4345 'void',
4346 [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')])
4347 ## node.h (module 'network'): void ns3::Node::DoDispose() [member function]
4348 cls.add_method('DoDispose',
4349 'void',
4350 [],
4351 visibility='protected', is_virtual=True)
4352 ## node.h (module 'network'): void ns3::Node::DoStart() [member function]
4353 cls.add_method('DoStart',
4354 'void',
4355 [],
4356 visibility='protected', is_virtual=True)
4357 return
4358
4359def register_Ns3ObjectFactoryChecker_methods(root_module, cls):
4360 ## object-factory.h (module 'core'): ns3::ObjectFactoryChecker::ObjectFactoryChecker() [constructor]
4361 cls.add_constructor([])
4362 ## object-factory.h (module 'core'): ns3::ObjectFactoryChecker::ObjectFactoryChecker(ns3::ObjectFactoryChecker const & arg0) [copy constructor]
4363 cls.add_constructor([param('ns3::ObjectFactoryChecker const &', 'arg0')])
4364 return
4365
4366def register_Ns3ObjectFactoryValue_methods(root_module, cls):
4367 ## object-factory.h (module 'core'): ns3::ObjectFactoryValue::ObjectFactoryValue() [constructor]
4368 cls.add_constructor([])
4369 ## object-factory.h (module 'core'): ns3::ObjectFactoryValue::ObjectFactoryValue(ns3::ObjectFactoryValue const & arg0) [copy constructor]
4370 cls.add_constructor([param('ns3::ObjectFactoryValue const &', 'arg0')])
4371 ## object-factory.h (module 'core'): ns3::ObjectFactoryValue::ObjectFactoryValue(ns3::ObjectFactory const & value) [constructor]
4372 cls.add_constructor([param('ns3::ObjectFactory const &', 'value')])
4373 ## object-factory.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::ObjectFactoryValue::Copy() const [member function]
4374 cls.add_method('Copy',
4375 'ns3::Ptr< ns3::AttributeValue >',
4376 [],
4377 is_const=True, is_virtual=True)
4378 ## object-factory.h (module 'core'): bool ns3::ObjectFactoryValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
4379 cls.add_method('DeserializeFromString',
4380 'bool',
4381 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4382 is_virtual=True)
4383 ## object-factory.h (module 'core'): ns3::ObjectFactory ns3::ObjectFactoryValue::Get() const [member function]
4384 cls.add_method('Get',
4385 'ns3::ObjectFactory',
4386 [],
4387 is_const=True)
4388 ## object-factory.h (module 'core'): std::string ns3::ObjectFactoryValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
4389 cls.add_method('SerializeToString',
4390 'std::string',
4391 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4392 is_const=True, is_virtual=True)
4393 ## object-factory.h (module 'core'): void ns3::ObjectFactoryValue::Set(ns3::ObjectFactory const & value) [member function]
4394 cls.add_method('Set',
4395 'void',
4396 [param('ns3::ObjectFactory const &', 'value')])
4397 return
4398
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004399def register_Ns3Packet_methods(root_module, cls):
4400 cls.add_output_stream_operator()
4401 ## packet.h (module 'network'): ns3::Packet::Packet() [constructor]
4402 cls.add_constructor([])
4403 ## packet.h (module 'network'): ns3::Packet::Packet(ns3::Packet const & o) [copy constructor]
4404 cls.add_constructor([param('ns3::Packet const &', 'o')])
4405 ## packet.h (module 'network'): ns3::Packet::Packet(uint32_t size) [constructor]
4406 cls.add_constructor([param('uint32_t', 'size')])
4407 ## packet.h (module 'network'): ns3::Packet::Packet(uint8_t const * buffer, uint32_t size, bool magic) [constructor]
4408 cls.add_constructor([param('uint8_t const *', 'buffer'), param('uint32_t', 'size'), param('bool', 'magic')])
4409 ## packet.h (module 'network'): ns3::Packet::Packet(uint8_t const * buffer, uint32_t size) [constructor]
4410 cls.add_constructor([param('uint8_t const *', 'buffer'), param('uint32_t', 'size')])
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -08004411 ## packet.h (module 'network'): void ns3::Packet::AddAtEnd(ns3::Ptr<const ns3::Packet> packet) [member function]
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004412 cls.add_method('AddAtEnd',
4413 'void',
4414 [param('ns3::Ptr< ns3::Packet const >', 'packet')])
4415 ## packet.h (module 'network'): void ns3::Packet::AddByteTag(ns3::Tag const & tag) const [member function]
4416 cls.add_method('AddByteTag',
4417 'void',
4418 [param('ns3::Tag const &', 'tag')],
4419 is_const=True)
4420 ## packet.h (module 'network'): void ns3::Packet::AddHeader(ns3::Header const & header) [member function]
4421 cls.add_method('AddHeader',
4422 'void',
4423 [param('ns3::Header const &', 'header')])
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07004424 ## packet.h (module 'network'): void ns3::Packet::AddPacketTag(ns3::Tag const & tag) const [member function]
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004425 cls.add_method('AddPacketTag',
4426 'void',
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07004427 [param('ns3::Tag const &', 'tag')],
4428 is_const=True)
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004429 ## packet.h (module 'network'): void ns3::Packet::AddPaddingAtEnd(uint32_t size) [member function]
4430 cls.add_method('AddPaddingAtEnd',
4431 'void',
4432 [param('uint32_t', 'size')])
4433 ## packet.h (module 'network'): void ns3::Packet::AddTrailer(ns3::Trailer const & trailer) [member function]
4434 cls.add_method('AddTrailer',
4435 'void',
4436 [param('ns3::Trailer const &', 'trailer')])
4437 ## packet.h (module 'network'): ns3::PacketMetadata::ItemIterator ns3::Packet::BeginItem() const [member function]
4438 cls.add_method('BeginItem',
4439 'ns3::PacketMetadata::ItemIterator',
4440 [],
4441 is_const=True)
4442 ## packet.h (module 'network'): ns3::Ptr<ns3::Packet> ns3::Packet::Copy() const [member function]
4443 cls.add_method('Copy',
4444 'ns3::Ptr< ns3::Packet >',
4445 [],
4446 is_const=True)
4447 ## packet.h (module 'network'): uint32_t ns3::Packet::CopyData(uint8_t * buffer, uint32_t size) const [member function]
4448 cls.add_method('CopyData',
4449 'uint32_t',
4450 [param('uint8_t *', 'buffer'), param('uint32_t', 'size')],
4451 is_const=True)
4452 ## packet.h (module 'network'): void ns3::Packet::CopyData(std::ostream * os, uint32_t size) const [member function]
4453 cls.add_method('CopyData',
4454 'void',
4455 [param('std::ostream *', 'os'), param('uint32_t', 'size')],
4456 is_const=True)
4457 ## packet.h (module 'network'): ns3::Ptr<ns3::Packet> ns3::Packet::CreateFragment(uint32_t start, uint32_t length) const [member function]
4458 cls.add_method('CreateFragment',
4459 'ns3::Ptr< ns3::Packet >',
4460 [param('uint32_t', 'start'), param('uint32_t', 'length')],
4461 is_const=True)
4462 ## packet.h (module 'network'): static void ns3::Packet::EnableChecking() [member function]
4463 cls.add_method('EnableChecking',
4464 'void',
4465 [],
4466 is_static=True)
4467 ## packet.h (module 'network'): static void ns3::Packet::EnablePrinting() [member function]
4468 cls.add_method('EnablePrinting',
4469 'void',
4470 [],
4471 is_static=True)
4472 ## packet.h (module 'network'): bool ns3::Packet::FindFirstMatchingByteTag(ns3::Tag & tag) const [member function]
4473 cls.add_method('FindFirstMatchingByteTag',
4474 'bool',
4475 [param('ns3::Tag &', 'tag')],
4476 is_const=True)
4477 ## packet.h (module 'network'): ns3::ByteTagIterator ns3::Packet::GetByteTagIterator() const [member function]
4478 cls.add_method('GetByteTagIterator',
4479 'ns3::ByteTagIterator',
4480 [],
4481 is_const=True)
4482 ## packet.h (module 'network'): ns3::Ptr<ns3::NixVector> ns3::Packet::GetNixVector() const [member function]
4483 cls.add_method('GetNixVector',
4484 'ns3::Ptr< ns3::NixVector >',
4485 [],
4486 is_const=True)
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07004487 ## packet.h (module 'network'): ns3::PacketTagIterator ns3::Packet::GetPacketTagIterator() const [member function]
4488 cls.add_method('GetPacketTagIterator',
4489 'ns3::PacketTagIterator',
4490 [],
4491 is_const=True)
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004492 ## packet.h (module 'network'): uint32_t ns3::Packet::GetSerializedSize() const [member function]
4493 cls.add_method('GetSerializedSize',
4494 'uint32_t',
4495 [],
4496 is_const=True)
4497 ## packet.h (module 'network'): uint32_t ns3::Packet::GetSize() const [member function]
4498 cls.add_method('GetSize',
4499 'uint32_t',
4500 [],
4501 is_const=True)
4502 ## packet.h (module 'network'): uint64_t ns3::Packet::GetUid() const [member function]
4503 cls.add_method('GetUid',
4504 'uint64_t',
4505 [],
4506 is_const=True)
4507 ## packet.h (module 'network'): uint8_t const * ns3::Packet::PeekData() const [member function]
4508 cls.add_method('PeekData',
4509 'uint8_t const *',
4510 [],
4511 deprecated=True, is_const=True)
4512 ## packet.h (module 'network'): uint32_t ns3::Packet::PeekHeader(ns3::Header & header) const [member function]
4513 cls.add_method('PeekHeader',
4514 'uint32_t',
4515 [param('ns3::Header &', 'header')],
4516 is_const=True)
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07004517 ## packet.h (module 'network'): bool ns3::Packet::PeekPacketTag(ns3::Tag & tag) const [member function]
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004518 cls.add_method('PeekPacketTag',
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07004519 'bool',
4520 [param('ns3::Tag &', 'tag')],
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004521 is_const=True)
4522 ## packet.h (module 'network'): uint32_t ns3::Packet::PeekTrailer(ns3::Trailer & trailer) [member function]
4523 cls.add_method('PeekTrailer',
4524 'uint32_t',
4525 [param('ns3::Trailer &', 'trailer')])
4526 ## packet.h (module 'network'): void ns3::Packet::Print(std::ostream & os) const [member function]
4527 cls.add_method('Print',
4528 'void',
4529 [param('std::ostream &', 'os')],
4530 is_const=True)
4531 ## packet.h (module 'network'): void ns3::Packet::PrintByteTags(std::ostream & os) const [member function]
4532 cls.add_method('PrintByteTags',
4533 'void',
4534 [param('std::ostream &', 'os')],
4535 is_const=True)
4536 ## packet.h (module 'network'): void ns3::Packet::PrintPacketTags(std::ostream & os) const [member function]
4537 cls.add_method('PrintPacketTags',
4538 'void',
4539 [param('std::ostream &', 'os')],
4540 is_const=True)
4541 ## packet.h (module 'network'): void ns3::Packet::RemoveAllByteTags() [member function]
4542 cls.add_method('RemoveAllByteTags',
4543 'void',
4544 [])
4545 ## packet.h (module 'network'): void ns3::Packet::RemoveAllPacketTags() [member function]
4546 cls.add_method('RemoveAllPacketTags',
4547 'void',
4548 [])
4549 ## packet.h (module 'network'): void ns3::Packet::RemoveAtEnd(uint32_t size) [member function]
4550 cls.add_method('RemoveAtEnd',
4551 'void',
4552 [param('uint32_t', 'size')])
4553 ## packet.h (module 'network'): void ns3::Packet::RemoveAtStart(uint32_t size) [member function]
4554 cls.add_method('RemoveAtStart',
4555 'void',
4556 [param('uint32_t', 'size')])
4557 ## packet.h (module 'network'): uint32_t ns3::Packet::RemoveHeader(ns3::Header & header) [member function]
4558 cls.add_method('RemoveHeader',
4559 'uint32_t',
4560 [param('ns3::Header &', 'header')])
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07004561 ## packet.h (module 'network'): bool ns3::Packet::RemovePacketTag(ns3::Tag & tag) [member function]
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004562 cls.add_method('RemovePacketTag',
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07004563 'bool',
4564 [param('ns3::Tag &', 'tag')])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004565 ## packet.h (module 'network'): uint32_t ns3::Packet::RemoveTrailer(ns3::Trailer & trailer) [member function]
4566 cls.add_method('RemoveTrailer',
4567 'uint32_t',
4568 [param('ns3::Trailer &', 'trailer')])
4569 ## packet.h (module 'network'): uint32_t ns3::Packet::Serialize(uint8_t * buffer, uint32_t maxSize) const [member function]
4570 cls.add_method('Serialize',
4571 'uint32_t',
4572 [param('uint8_t *', 'buffer'), param('uint32_t', 'maxSize')],
4573 is_const=True)
4574 ## packet.h (module 'network'): void ns3::Packet::SetNixVector(ns3::Ptr<ns3::NixVector> arg0) [member function]
4575 cls.add_method('SetNixVector',
4576 'void',
4577 [param('ns3::Ptr< ns3::NixVector >', 'arg0')])
4578 return
4579
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07004580def register_Ns3RandomVariableChecker_methods(root_module, cls):
4581 ## random-variable.h (module 'core'): ns3::RandomVariableChecker::RandomVariableChecker() [constructor]
4582 cls.add_constructor([])
4583 ## random-variable.h (module 'core'): ns3::RandomVariableChecker::RandomVariableChecker(ns3::RandomVariableChecker const & arg0) [copy constructor]
4584 cls.add_constructor([param('ns3::RandomVariableChecker const &', 'arg0')])
4585 return
4586
4587def register_Ns3RandomVariableValue_methods(root_module, cls):
4588 ## random-variable.h (module 'core'): ns3::RandomVariableValue::RandomVariableValue() [constructor]
4589 cls.add_constructor([])
4590 ## random-variable.h (module 'core'): ns3::RandomVariableValue::RandomVariableValue(ns3::RandomVariableValue const & arg0) [copy constructor]
4591 cls.add_constructor([param('ns3::RandomVariableValue const &', 'arg0')])
4592 ## random-variable.h (module 'core'): ns3::RandomVariableValue::RandomVariableValue(ns3::RandomVariable const & value) [constructor]
4593 cls.add_constructor([param('ns3::RandomVariable const &', 'value')])
4594 ## random-variable.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::RandomVariableValue::Copy() const [member function]
4595 cls.add_method('Copy',
4596 'ns3::Ptr< ns3::AttributeValue >',
4597 [],
4598 is_const=True, is_virtual=True)
4599 ## random-variable.h (module 'core'): bool ns3::RandomVariableValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
4600 cls.add_method('DeserializeFromString',
4601 'bool',
4602 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4603 is_virtual=True)
4604 ## random-variable.h (module 'core'): ns3::RandomVariable ns3::RandomVariableValue::Get() const [member function]
4605 cls.add_method('Get',
4606 'ns3::RandomVariable',
4607 [],
4608 is_const=True)
4609 ## random-variable.h (module 'core'): std::string ns3::RandomVariableValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
4610 cls.add_method('SerializeToString',
4611 'std::string',
4612 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4613 is_const=True, is_virtual=True)
4614 ## random-variable.h (module 'core'): void ns3::RandomVariableValue::Set(ns3::RandomVariable const & value) [member function]
4615 cls.add_method('Set',
4616 'void',
4617 [param('ns3::RandomVariable const &', 'value')])
4618 return
4619
4620def register_Ns3RocketfuelWeightsReader_methods(root_module, cls):
4621 ## rocketfuel-weights-reader.h (module 'ndnSIM'): ns3::RocketfuelWeightsReader::RocketfuelWeightsReader(std::string const & path="", double scale=1.0e+0) [constructor]
4622 cls.add_constructor([param('std::string const &', 'path', default_value='""'), param('double', 'scale', default_value='1.0e+0')])
4623 ## rocketfuel-weights-reader.h (module 'ndnSIM'): void ns3::RocketfuelWeightsReader::SetFileType(uint8_t inputType) [member function]
4624 cls.add_method('SetFileType',
4625 'void',
4626 [param('uint8_t', 'inputType')])
4627 ## rocketfuel-weights-reader.h (module 'ndnSIM'): ns3::NodeContainer ns3::RocketfuelWeightsReader::Read() [member function]
4628 cls.add_method('Read',
4629 'ns3::NodeContainer',
4630 [],
4631 is_virtual=True)
4632 ## rocketfuel-weights-reader.h (module 'ndnSIM'): void ns3::RocketfuelWeightsReader::Commit() [member function]
4633 cls.add_method('Commit',
4634 'void',
4635 [])
4636 return
4637
4638def register_Ns3SpringMobilityModel_methods(root_module, cls):
4639 ## spring-mobility-model.h (module 'ndnSIM'): ns3::SpringMobilityModel::SpringMobilityModel(ns3::SpringMobilityModel const & arg0) [copy constructor]
4640 cls.add_constructor([param('ns3::SpringMobilityModel const &', 'arg0')])
4641 ## spring-mobility-model.h (module 'ndnSIM'): ns3::SpringMobilityModel::SpringMobilityModel() [constructor]
4642 cls.add_constructor([])
4643 ## spring-mobility-model.h (module 'ndnSIM'): void ns3::SpringMobilityModel::AddSpring(ns3::Ptr<ns3::MobilityModel> node) [member function]
4644 cls.add_method('AddSpring',
4645 'void',
4646 [param('ns3::Ptr< ns3::MobilityModel >', 'node')])
4647 ## spring-mobility-model.h (module 'ndnSIM'): static ns3::TypeId ns3::SpringMobilityModel::GetTypeId() [member function]
4648 cls.add_method('GetTypeId',
4649 'ns3::TypeId',
4650 [],
4651 is_static=True)
4652 ## spring-mobility-model.h (module 'ndnSIM'): ns3::Vector ns3::SpringMobilityModel::DoGetPosition() const [member function]
4653 cls.add_method('DoGetPosition',
4654 'ns3::Vector',
4655 [],
4656 is_const=True, visibility='private', is_virtual=True)
4657 ## spring-mobility-model.h (module 'ndnSIM'): ns3::Vector ns3::SpringMobilityModel::DoGetVelocity() const [member function]
4658 cls.add_method('DoGetVelocity',
4659 'ns3::Vector',
4660 [],
4661 is_const=True, visibility='private', is_virtual=True)
4662 ## spring-mobility-model.h (module 'ndnSIM'): void ns3::SpringMobilityModel::DoSetPosition(ns3::Vector const & position) [member function]
4663 cls.add_method('DoSetPosition',
4664 'void',
4665 [param('ns3::Vector const &', 'position')],
4666 visibility='private', is_virtual=True)
4667 ## spring-mobility-model.h (module 'ndnSIM'): void ns3::SpringMobilityModel::DoStart() [member function]
4668 cls.add_method('DoStart',
4669 'void',
4670 [],
4671 visibility='private', is_virtual=True)
4672 return
4673
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004674def register_Ns3TimeChecker_methods(root_module, cls):
4675 ## nstime.h (module 'core'): ns3::TimeChecker::TimeChecker() [constructor]
4676 cls.add_constructor([])
4677 ## nstime.h (module 'core'): ns3::TimeChecker::TimeChecker(ns3::TimeChecker const & arg0) [copy constructor]
4678 cls.add_constructor([param('ns3::TimeChecker const &', 'arg0')])
4679 return
4680
4681def register_Ns3TimeValue_methods(root_module, cls):
4682 ## nstime.h (module 'core'): ns3::TimeValue::TimeValue() [constructor]
4683 cls.add_constructor([])
4684 ## nstime.h (module 'core'): ns3::TimeValue::TimeValue(ns3::TimeValue const & arg0) [copy constructor]
4685 cls.add_constructor([param('ns3::TimeValue const &', 'arg0')])
4686 ## nstime.h (module 'core'): ns3::TimeValue::TimeValue(ns3::Time const & value) [constructor]
4687 cls.add_constructor([param('ns3::Time const &', 'value')])
4688 ## nstime.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::TimeValue::Copy() const [member function]
4689 cls.add_method('Copy',
4690 'ns3::Ptr< ns3::AttributeValue >',
4691 [],
4692 is_const=True, is_virtual=True)
4693 ## nstime.h (module 'core'): bool ns3::TimeValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
4694 cls.add_method('DeserializeFromString',
4695 'bool',
4696 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4697 is_virtual=True)
4698 ## nstime.h (module 'core'): ns3::Time ns3::TimeValue::Get() const [member function]
4699 cls.add_method('Get',
4700 'ns3::Time',
4701 [],
4702 is_const=True)
4703 ## nstime.h (module 'core'): std::string ns3::TimeValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
4704 cls.add_method('SerializeToString',
4705 'std::string',
4706 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4707 is_const=True, is_virtual=True)
4708 ## nstime.h (module 'core'): void ns3::TimeValue::Set(ns3::Time const & value) [member function]
4709 cls.add_method('Set',
4710 'void',
4711 [param('ns3::Time const &', 'value')])
4712 return
4713
4714def register_Ns3TypeIdChecker_methods(root_module, cls):
4715 ## type-id.h (module 'core'): ns3::TypeIdChecker::TypeIdChecker() [constructor]
4716 cls.add_constructor([])
4717 ## type-id.h (module 'core'): ns3::TypeIdChecker::TypeIdChecker(ns3::TypeIdChecker const & arg0) [copy constructor]
4718 cls.add_constructor([param('ns3::TypeIdChecker const &', 'arg0')])
4719 return
4720
4721def register_Ns3TypeIdValue_methods(root_module, cls):
4722 ## type-id.h (module 'core'): ns3::TypeIdValue::TypeIdValue() [constructor]
4723 cls.add_constructor([])
4724 ## type-id.h (module 'core'): ns3::TypeIdValue::TypeIdValue(ns3::TypeIdValue const & arg0) [copy constructor]
4725 cls.add_constructor([param('ns3::TypeIdValue const &', 'arg0')])
4726 ## type-id.h (module 'core'): ns3::TypeIdValue::TypeIdValue(ns3::TypeId const & value) [constructor]
4727 cls.add_constructor([param('ns3::TypeId const &', 'value')])
4728 ## type-id.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::TypeIdValue::Copy() const [member function]
4729 cls.add_method('Copy',
4730 'ns3::Ptr< ns3::AttributeValue >',
4731 [],
4732 is_const=True, is_virtual=True)
4733 ## type-id.h (module 'core'): bool ns3::TypeIdValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
4734 cls.add_method('DeserializeFromString',
4735 'bool',
4736 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4737 is_virtual=True)
4738 ## type-id.h (module 'core'): ns3::TypeId ns3::TypeIdValue::Get() const [member function]
4739 cls.add_method('Get',
4740 'ns3::TypeId',
4741 [],
4742 is_const=True)
4743 ## type-id.h (module 'core'): std::string ns3::TypeIdValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
4744 cls.add_method('SerializeToString',
4745 'std::string',
4746 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4747 is_const=True, is_virtual=True)
4748 ## type-id.h (module 'core'): void ns3::TypeIdValue::Set(ns3::TypeId const & value) [member function]
4749 cls.add_method('Set',
4750 'void',
4751 [param('ns3::TypeId const &', 'value')])
4752 return
4753
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07004754def register_Ns3UintegerValue_methods(root_module, cls):
4755 ## uinteger.h (module 'core'): ns3::UintegerValue::UintegerValue() [constructor]
4756 cls.add_constructor([])
4757 ## uinteger.h (module 'core'): ns3::UintegerValue::UintegerValue(ns3::UintegerValue const & arg0) [copy constructor]
4758 cls.add_constructor([param('ns3::UintegerValue const &', 'arg0')])
4759 ## uinteger.h (module 'core'): ns3::UintegerValue::UintegerValue(uint64_t const & value) [constructor]
4760 cls.add_constructor([param('uint64_t const &', 'value')])
4761 ## uinteger.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::UintegerValue::Copy() const [member function]
4762 cls.add_method('Copy',
4763 'ns3::Ptr< ns3::AttributeValue >',
4764 [],
4765 is_const=True, is_virtual=True)
4766 ## uinteger.h (module 'core'): bool ns3::UintegerValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
4767 cls.add_method('DeserializeFromString',
4768 'bool',
4769 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4770 is_virtual=True)
4771 ## uinteger.h (module 'core'): uint64_t ns3::UintegerValue::Get() const [member function]
4772 cls.add_method('Get',
4773 'uint64_t',
4774 [],
4775 is_const=True)
4776 ## uinteger.h (module 'core'): std::string ns3::UintegerValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
4777 cls.add_method('SerializeToString',
4778 'std::string',
4779 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4780 is_const=True, is_virtual=True)
4781 ## uinteger.h (module 'core'): void ns3::UintegerValue::Set(uint64_t const & value) [member function]
4782 cls.add_method('Set',
4783 'void',
4784 [param('uint64_t const &', 'value')])
4785 return
4786
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07004787def register_Ns3Vector2DChecker_methods(root_module, cls):
4788 ## vector.h (module 'core'): ns3::Vector2DChecker::Vector2DChecker() [constructor]
4789 cls.add_constructor([])
4790 ## vector.h (module 'core'): ns3::Vector2DChecker::Vector2DChecker(ns3::Vector2DChecker const & arg0) [copy constructor]
4791 cls.add_constructor([param('ns3::Vector2DChecker const &', 'arg0')])
4792 return
4793
4794def register_Ns3Vector2DValue_methods(root_module, cls):
4795 ## vector.h (module 'core'): ns3::Vector2DValue::Vector2DValue() [constructor]
4796 cls.add_constructor([])
4797 ## vector.h (module 'core'): ns3::Vector2DValue::Vector2DValue(ns3::Vector2DValue const & arg0) [copy constructor]
4798 cls.add_constructor([param('ns3::Vector2DValue const &', 'arg0')])
4799 ## vector.h (module 'core'): ns3::Vector2DValue::Vector2DValue(ns3::Vector2D const & value) [constructor]
4800 cls.add_constructor([param('ns3::Vector2D const &', 'value')])
4801 ## vector.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::Vector2DValue::Copy() const [member function]
4802 cls.add_method('Copy',
4803 'ns3::Ptr< ns3::AttributeValue >',
4804 [],
4805 is_const=True, is_virtual=True)
4806 ## vector.h (module 'core'): bool ns3::Vector2DValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
4807 cls.add_method('DeserializeFromString',
4808 'bool',
4809 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4810 is_virtual=True)
4811 ## vector.h (module 'core'): ns3::Vector2D ns3::Vector2DValue::Get() const [member function]
4812 cls.add_method('Get',
4813 'ns3::Vector2D',
4814 [],
4815 is_const=True)
4816 ## vector.h (module 'core'): std::string ns3::Vector2DValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
4817 cls.add_method('SerializeToString',
4818 'std::string',
4819 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4820 is_const=True, is_virtual=True)
4821 ## vector.h (module 'core'): void ns3::Vector2DValue::Set(ns3::Vector2D const & value) [member function]
4822 cls.add_method('Set',
4823 'void',
4824 [param('ns3::Vector2D const &', 'value')])
4825 return
4826
4827def register_Ns3Vector3DChecker_methods(root_module, cls):
4828 ## vector.h (module 'core'): ns3::Vector3DChecker::Vector3DChecker() [constructor]
4829 cls.add_constructor([])
4830 ## vector.h (module 'core'): ns3::Vector3DChecker::Vector3DChecker(ns3::Vector3DChecker const & arg0) [copy constructor]
4831 cls.add_constructor([param('ns3::Vector3DChecker const &', 'arg0')])
4832 return
4833
4834def register_Ns3Vector3DValue_methods(root_module, cls):
4835 ## vector.h (module 'core'): ns3::Vector3DValue::Vector3DValue() [constructor]
4836 cls.add_constructor([])
4837 ## vector.h (module 'core'): ns3::Vector3DValue::Vector3DValue(ns3::Vector3DValue const & arg0) [copy constructor]
4838 cls.add_constructor([param('ns3::Vector3DValue const &', 'arg0')])
4839 ## vector.h (module 'core'): ns3::Vector3DValue::Vector3DValue(ns3::Vector3D const & value) [constructor]
4840 cls.add_constructor([param('ns3::Vector3D const &', 'value')])
4841 ## vector.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::Vector3DValue::Copy() const [member function]
4842 cls.add_method('Copy',
4843 'ns3::Ptr< ns3::AttributeValue >',
4844 [],
4845 is_const=True, is_virtual=True)
4846 ## vector.h (module 'core'): bool ns3::Vector3DValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
4847 cls.add_method('DeserializeFromString',
4848 'bool',
4849 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4850 is_virtual=True)
4851 ## vector.h (module 'core'): ns3::Vector3D ns3::Vector3DValue::Get() const [member function]
4852 cls.add_method('Get',
4853 'ns3::Vector3D',
4854 [],
4855 is_const=True)
4856 ## vector.h (module 'core'): std::string ns3::Vector3DValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
4857 cls.add_method('SerializeToString',
4858 'std::string',
4859 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4860 is_const=True, is_virtual=True)
4861 ## vector.h (module 'core'): void ns3::Vector3DValue::Set(ns3::Vector3D const & value) [member function]
4862 cls.add_method('Set',
4863 'void',
4864 [param('ns3::Vector3D const &', 'value')])
4865 return
4866
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004867def register_Ns3AddressChecker_methods(root_module, cls):
4868 ## address.h (module 'network'): ns3::AddressChecker::AddressChecker() [constructor]
4869 cls.add_constructor([])
4870 ## address.h (module 'network'): ns3::AddressChecker::AddressChecker(ns3::AddressChecker const & arg0) [copy constructor]
4871 cls.add_constructor([param('ns3::AddressChecker const &', 'arg0')])
4872 return
4873
4874def register_Ns3AddressValue_methods(root_module, cls):
4875 ## address.h (module 'network'): ns3::AddressValue::AddressValue() [constructor]
4876 cls.add_constructor([])
4877 ## address.h (module 'network'): ns3::AddressValue::AddressValue(ns3::AddressValue const & arg0) [copy constructor]
4878 cls.add_constructor([param('ns3::AddressValue const &', 'arg0')])
4879 ## address.h (module 'network'): ns3::AddressValue::AddressValue(ns3::Address const & value) [constructor]
4880 cls.add_constructor([param('ns3::Address const &', 'value')])
4881 ## address.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::AddressValue::Copy() const [member function]
4882 cls.add_method('Copy',
4883 'ns3::Ptr< ns3::AttributeValue >',
4884 [],
4885 is_const=True, is_virtual=True)
4886 ## address.h (module 'network'): bool ns3::AddressValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
4887 cls.add_method('DeserializeFromString',
4888 'bool',
4889 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4890 is_virtual=True)
4891 ## address.h (module 'network'): ns3::Address ns3::AddressValue::Get() const [member function]
4892 cls.add_method('Get',
4893 'ns3::Address',
4894 [],
4895 is_const=True)
4896 ## address.h (module 'network'): std::string ns3::AddressValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
4897 cls.add_method('SerializeToString',
4898 'std::string',
4899 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4900 is_const=True, is_virtual=True)
4901 ## address.h (module 'network'): void ns3::AddressValue::Set(ns3::Address const & value) [member function]
4902 cls.add_method('Set',
4903 'void',
4904 [param('ns3::Address const &', 'value')])
4905 return
4906
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004907def register_Ns3NdnApp_methods(root_module, cls):
4908 ## ndn-app.h (module 'ndnSIM'): ns3::ndn::App::App(ns3::ndn::App const & arg0) [copy constructor]
4909 cls.add_constructor([param('ns3::ndn::App const &', 'arg0')])
4910 ## ndn-app.h (module 'ndnSIM'): ns3::ndn::App::App() [constructor]
4911 cls.add_constructor([])
4912 ## ndn-app.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::App::GetTypeId() [member function]
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07004913 cls.add_method('GetTypeId',
4914 'ns3::TypeId',
4915 [],
4916 is_static=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004917 ## 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]
4918 cls.add_method('OnContentObject',
4919 'void',
4920 [param('ns3::Ptr< ns3::ndn::ContentObjectHeader const > const &', 'contentObject'), param('ns3::Ptr< ns3::Packet >', 'payload')],
4921 is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07004922 ## 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 -07004923 cls.add_method('OnInterest',
4924 'void',
4925 [param('ns3::Ptr< ns3::ndn::InterestHeader const > const &', 'interest'), param('ns3::Ptr< ns3::Packet >', 'packet')],
4926 is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07004927 ## 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 -07004928 cls.add_method('OnNack',
4929 'void',
4930 [param('ns3::Ptr< ns3::ndn::InterestHeader const > const &', 'interest'), param('ns3::Ptr< ns3::Packet >', 'packet')],
4931 is_virtual=True)
4932 ## 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 -07004933 cls.add_method('RegisterProtocolHandler',
4934 'void',
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004935 [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')])
4936 ## ndn-app.h (module 'ndnSIM'): void ns3::ndn::App::DoDispose() [member function]
4937 cls.add_method('DoDispose',
4938 'void',
4939 [],
4940 visibility='protected', is_virtual=True)
4941 ## ndn-app.h (module 'ndnSIM'): void ns3::ndn::App::StartApplication() [member function]
4942 cls.add_method('StartApplication',
4943 'void',
4944 [],
4945 visibility='protected', is_virtual=True)
4946 ## ndn-app.h (module 'ndnSIM'): void ns3::ndn::App::StopApplication() [member function]
4947 cls.add_method('StopApplication',
4948 'void',
4949 [],
4950 visibility='protected', is_virtual=True)
4951 return
4952
4953def register_Ns3NdnAppHelper_methods(root_module, cls):
4954 ## ndn-app-helper.h (module 'ndnSIM'): ns3::ndn::AppHelper::AppHelper(ns3::ndn::AppHelper const & arg0) [copy constructor]
4955 cls.add_constructor([param('ns3::ndn::AppHelper const &', 'arg0')])
4956 ## ndn-app-helper.h (module 'ndnSIM'): ns3::ndn::AppHelper::AppHelper(std::string const & prefix) [constructor]
4957 cls.add_constructor([param('std::string const &', 'prefix')])
4958 ## ndn-app-helper.h (module 'ndnSIM'): ns3::ApplicationContainer ns3::ndn::AppHelper::Install(ns3::NodeContainer c) [member function]
4959 cls.add_method('Install',
4960 'ns3::ApplicationContainer',
4961 [param('ns3::NodeContainer', 'c')])
4962 ## ndn-app-helper.h (module 'ndnSIM'): ns3::ApplicationContainer ns3::ndn::AppHelper::Install(ns3::Ptr<ns3::Node> node) [member function]
4963 cls.add_method('Install',
4964 'ns3::ApplicationContainer',
4965 [param('ns3::Ptr< ns3::Node >', 'node')])
4966 ## ndn-app-helper.h (module 'ndnSIM'): ns3::ApplicationContainer ns3::ndn::AppHelper::Install(std::string nodeName) [member function]
4967 cls.add_method('Install',
4968 'ns3::ApplicationContainer',
4969 [param('std::string', 'nodeName')])
4970 ## ndn-app-helper.h (module 'ndnSIM'): void ns3::ndn::AppHelper::SetAttribute(std::string name, ns3::AttributeValue const & value) [member function]
4971 cls.add_method('SetAttribute',
4972 'void',
4973 [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')])
4974 ## ndn-app-helper.h (module 'ndnSIM'): void ns3::ndn::AppHelper::SetPrefix(std::string const & prefix) [member function]
4975 cls.add_method('SetPrefix',
4976 'void',
4977 [param('std::string const &', 'prefix')])
4978 return
4979
4980def register_Ns3NdnContentObjectHeader_methods(root_module, cls):
4981 ## ndn-content-object-header.h (module 'ndnSIM'): ns3::ndn::ContentObjectHeader::ContentObjectHeader(ns3::ndn::ContentObjectHeader const & arg0) [copy constructor]
4982 cls.add_constructor([param('ns3::ndn::ContentObjectHeader const &', 'arg0')])
4983 ## ndn-content-object-header.h (module 'ndnSIM'): ns3::ndn::ContentObjectHeader::ContentObjectHeader() [constructor]
4984 cls.add_constructor([])
4985 ## ndn-content-object-header.h (module 'ndnSIM'): uint32_t ns3::ndn::ContentObjectHeader::Deserialize(ns3::Buffer::Iterator start) [member function]
4986 cls.add_method('Deserialize',
4987 'uint32_t',
4988 [param('ns3::Buffer::Iterator', 'start')],
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07004989 is_virtual=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004990 ## ndn-content-object-header.h (module 'ndnSIM'): ns3::TypeId ns3::ndn::ContentObjectHeader::GetInstanceTypeId() const [member function]
4991 cls.add_method('GetInstanceTypeId',
4992 'ns3::TypeId',
4993 [],
4994 is_const=True, is_virtual=True)
4995 ## ndn-content-object-header.h (module 'ndnSIM'): ns3::ndn::NameComponents const & ns3::ndn::ContentObjectHeader::GetName() const [member function]
4996 cls.add_method('GetName',
4997 'ns3::ndn::NameComponents const &',
4998 [],
4999 is_const=True)
5000 ## ndn-content-object-header.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::NameComponents const> ns3::ndn::ContentObjectHeader::GetNamePtr() const [member function]
5001 cls.add_method('GetNamePtr',
5002 'ns3::Ptr< ns3::ndn::NameComponents const >',
5003 [],
5004 is_const=True)
5005 ## ndn-content-object-header.h (module 'ndnSIM'): uint32_t ns3::ndn::ContentObjectHeader::GetSerializedSize() const [member function]
5006 cls.add_method('GetSerializedSize',
5007 'uint32_t',
5008 [],
5009 is_const=True, is_virtual=True)
5010 ## ndn-content-object-header.h (module 'ndnSIM'): ns3::ndn::ContentObjectHeader::Signature & ns3::ndn::ContentObjectHeader::GetSignature() [member function]
5011 cls.add_method('GetSignature',
5012 'ns3::ndn::ContentObjectHeader::Signature &',
5013 [])
5014 ## ndn-content-object-header.h (module 'ndnSIM'): ns3::ndn::ContentObjectHeader::Signature const & ns3::ndn::ContentObjectHeader::GetSignature() const [member function]
5015 cls.add_method('GetSignature',
5016 'ns3::ndn::ContentObjectHeader::Signature const &',
5017 [],
5018 is_const=True)
5019 ## ndn-content-object-header.h (module 'ndnSIM'): ns3::ndn::ContentObjectHeader::SignedInfo & ns3::ndn::ContentObjectHeader::GetSignedInfo() [member function]
5020 cls.add_method('GetSignedInfo',
5021 'ns3::ndn::ContentObjectHeader::SignedInfo &',
5022 [])
5023 ## ndn-content-object-header.h (module 'ndnSIM'): ns3::ndn::ContentObjectHeader::SignedInfo const & ns3::ndn::ContentObjectHeader::GetSignedInfo() const [member function]
5024 cls.add_method('GetSignedInfo',
5025 'ns3::ndn::ContentObjectHeader::SignedInfo const &',
5026 [],
5027 is_const=True)
5028 ## ndn-content-object-header.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::ContentObjectHeader::GetTypeId() [member function]
5029 cls.add_method('GetTypeId',
5030 'ns3::TypeId',
5031 [],
5032 is_static=True)
5033 ## ndn-content-object-header.h (module 'ndnSIM'): void ns3::ndn::ContentObjectHeader::Print(std::ostream & os) const [member function]
5034 cls.add_method('Print',
5035 'void',
5036 [param('std::ostream &', 'os')],
5037 is_const=True, is_virtual=True)
5038 ## ndn-content-object-header.h (module 'ndnSIM'): void ns3::ndn::ContentObjectHeader::Serialize(ns3::Buffer::Iterator start) const [member function]
5039 cls.add_method('Serialize',
5040 'void',
5041 [param('ns3::Buffer::Iterator', 'start')],
5042 is_const=True, is_virtual=True)
5043 ## ndn-content-object-header.h (module 'ndnSIM'): void ns3::ndn::ContentObjectHeader::SetName(ns3::Ptr<ns3::ndn::NameComponents> const & name) [member function]
5044 cls.add_method('SetName',
5045 'void',
5046 [param('ns3::Ptr< ns3::ndn::NameComponents > const &', 'name')])
5047 return
5048
5049def register_Ns3NdnContentObjectHeaderSignature_methods(root_module, cls):
5050 ## ndn-content-object-header.h (module 'ndnSIM'): ns3::ndn::ContentObjectHeader::Signature::Signature(ns3::ndn::ContentObjectHeader::Signature const & arg0) [copy constructor]
5051 cls.add_constructor([param('ns3::ndn::ContentObjectHeader::Signature const &', 'arg0')])
5052 ## ndn-content-object-header.h (module 'ndnSIM'): ns3::ndn::ContentObjectHeader::Signature::Signature() [constructor]
5053 cls.add_constructor([])
5054 ## ndn-content-object-header.h (module 'ndnSIM'): std::string const & ns3::ndn::ContentObjectHeader::Signature::GetDigestAlgorithm() const [member function]
5055 cls.add_method('GetDigestAlgorithm',
5056 'std::string const &',
5057 [],
5058 is_const=True)
5059 ## ndn-content-object-header.h (module 'ndnSIM'): uint32_t ns3::ndn::ContentObjectHeader::Signature::GetSignatureBits() const [member function]
5060 cls.add_method('GetSignatureBits',
5061 'uint32_t',
5062 [],
5063 is_const=True)
5064 ## ndn-content-object-header.h (module 'ndnSIM'): void ns3::ndn::ContentObjectHeader::Signature::SetDigestAlgorithm(std::string const & digestAlgorithm) [member function]
5065 cls.add_method('SetDigestAlgorithm',
5066 'void',
5067 [param('std::string const &', 'digestAlgorithm')])
5068 ## ndn-content-object-header.h (module 'ndnSIM'): void ns3::ndn::ContentObjectHeader::Signature::SetSignatureBits(uint32_t signature) [member function]
5069 cls.add_method('SetSignatureBits',
5070 'void',
5071 [param('uint32_t', 'signature')])
5072 ## ndn-content-object-header.h (module 'ndnSIM'): ns3::ndn::ContentObjectHeader::Signature::DefaultDigestAlgorithm [variable]
5073 cls.add_static_attribute('DefaultDigestAlgorithm', 'std::string const', is_const=True)
5074 return
5075
5076def register_Ns3NdnContentObjectHeaderSignedInfo_methods(root_module, cls):
5077 ## ndn-content-object-header.h (module 'ndnSIM'): ns3::ndn::ContentObjectHeader::SignedInfo::SignedInfo(ns3::ndn::ContentObjectHeader::SignedInfo const & arg0) [copy constructor]
5078 cls.add_constructor([param('ns3::ndn::ContentObjectHeader::SignedInfo const &', 'arg0')])
5079 ## ndn-content-object-header.h (module 'ndnSIM'): ns3::ndn::ContentObjectHeader::SignedInfo::SignedInfo() [constructor]
5080 cls.add_constructor([])
5081 ## ndn-content-object-header.h (module 'ndnSIM'): ns3::ndn::ContentObjectHeader::ContentType ns3::ndn::ContentObjectHeader::SignedInfo::GetContentType() const [member function]
5082 cls.add_method('GetContentType',
5083 'ns3::ndn::ContentObjectHeader::ContentType',
5084 [],
5085 is_const=True)
5086 ## ndn-content-object-header.h (module 'ndnSIM'): ns3::Time ns3::ndn::ContentObjectHeader::SignedInfo::GetFreshness() const [member function]
5087 cls.add_method('GetFreshness',
5088 'ns3::Time',
5089 [],
5090 is_const=True)
5091 ## ndn-content-object-header.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::NameComponents const> ns3::ndn::ContentObjectHeader::SignedInfo::GetKeyLocator() const [member function]
5092 cls.add_method('GetKeyLocator',
5093 'ns3::Ptr< ns3::ndn::NameComponents const >',
5094 [],
5095 is_const=True)
5096 ## ndn-content-object-header.h (module 'ndnSIM'): uint32_t ns3::ndn::ContentObjectHeader::SignedInfo::GetPublisherPublicKeyDigest() const [member function]
5097 cls.add_method('GetPublisherPublicKeyDigest',
5098 'uint32_t',
5099 [],
5100 is_const=True)
5101 ## ndn-content-object-header.h (module 'ndnSIM'): ns3::Time ns3::ndn::ContentObjectHeader::SignedInfo::GetTimestamp() const [member function]
5102 cls.add_method('GetTimestamp',
5103 'ns3::Time',
5104 [],
5105 is_const=True)
5106 ## ndn-content-object-header.h (module 'ndnSIM'): void ns3::ndn::ContentObjectHeader::SignedInfo::SetContentType(ns3::ndn::ContentObjectHeader::ContentType type) [member function]
5107 cls.add_method('SetContentType',
5108 'void',
5109 [param('ns3::ndn::ContentObjectHeader::ContentType', 'type')])
5110 ## ndn-content-object-header.h (module 'ndnSIM'): void ns3::ndn::ContentObjectHeader::SignedInfo::SetFreshness(ns3::Time const & freshness) [member function]
5111 cls.add_method('SetFreshness',
5112 'void',
5113 [param('ns3::Time const &', 'freshness')])
5114 ## ndn-content-object-header.h (module 'ndnSIM'): void ns3::ndn::ContentObjectHeader::SignedInfo::SetKeyLocator(ns3::Ptr<ns3::ndn::NameComponents const> keyLocator) [member function]
5115 cls.add_method('SetKeyLocator',
5116 'void',
5117 [param('ns3::Ptr< ns3::ndn::NameComponents const >', 'keyLocator')])
5118 ## ndn-content-object-header.h (module 'ndnSIM'): void ns3::ndn::ContentObjectHeader::SignedInfo::SetPublisherPublicKeyDigest(uint32_t digest) [member function]
5119 cls.add_method('SetPublisherPublicKeyDigest',
5120 'void',
5121 [param('uint32_t', 'digest')])
5122 ## ndn-content-object-header.h (module 'ndnSIM'): void ns3::ndn::ContentObjectHeader::SignedInfo::SetTimestamp(ns3::Time const & timestamp) [member function]
5123 cls.add_method('SetTimestamp',
5124 'void',
5125 [param('ns3::Time const &', 'timestamp')])
5126 return
5127
5128def register_Ns3NdnContentObjectHeaderException_methods(root_module, cls):
5129 ## ndn-content-object-header.h (module 'ndnSIM'): ns3::ndn::ContentObjectHeaderException::ContentObjectHeaderException() [constructor]
5130 cls.add_constructor([])
5131 ## ndn-content-object-header.h (module 'ndnSIM'): ns3::ndn::ContentObjectHeaderException::ContentObjectHeaderException(ns3::ndn::ContentObjectHeaderException const & arg0) [copy constructor]
5132 cls.add_constructor([param('ns3::ndn::ContentObjectHeaderException const &', 'arg0')])
5133 return
5134
5135def register_Ns3NdnContentObjectTail_methods(root_module, cls):
5136 ## ndn-content-object-header.h (module 'ndnSIM'): ns3::ndn::ContentObjectTail::ContentObjectTail(ns3::ndn::ContentObjectTail const & arg0) [copy constructor]
5137 cls.add_constructor([param('ns3::ndn::ContentObjectTail const &', 'arg0')])
5138 ## ndn-content-object-header.h (module 'ndnSIM'): ns3::ndn::ContentObjectTail::ContentObjectTail() [constructor]
5139 cls.add_constructor([])
5140 ## ndn-content-object-header.h (module 'ndnSIM'): uint32_t ns3::ndn::ContentObjectTail::Deserialize(ns3::Buffer::Iterator start) [member function]
5141 cls.add_method('Deserialize',
5142 'uint32_t',
5143 [param('ns3::Buffer::Iterator', 'start')],
5144 is_virtual=True)
5145 ## ndn-content-object-header.h (module 'ndnSIM'): ns3::TypeId ns3::ndn::ContentObjectTail::GetInstanceTypeId() const [member function]
5146 cls.add_method('GetInstanceTypeId',
5147 'ns3::TypeId',
5148 [],
5149 is_const=True, is_virtual=True)
5150 ## ndn-content-object-header.h (module 'ndnSIM'): uint32_t ns3::ndn::ContentObjectTail::GetSerializedSize() const [member function]
5151 cls.add_method('GetSerializedSize',
5152 'uint32_t',
5153 [],
5154 is_const=True, is_virtual=True)
5155 ## ndn-content-object-header.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::ContentObjectTail::GetTypeId() [member function]
5156 cls.add_method('GetTypeId',
5157 'ns3::TypeId',
5158 [],
5159 is_static=True)
5160 ## ndn-content-object-header.h (module 'ndnSIM'): void ns3::ndn::ContentObjectTail::Print(std::ostream & os) const [member function]
5161 cls.add_method('Print',
5162 'void',
5163 [param('std::ostream &', 'os')],
5164 is_const=True, is_virtual=True)
5165 ## ndn-content-object-header.h (module 'ndnSIM'): void ns3::ndn::ContentObjectTail::Serialize(ns3::Buffer::Iterator start) const [member function]
5166 cls.add_method('Serialize',
5167 'void',
5168 [param('ns3::Buffer::Iterator', 'start')],
5169 is_const=True, is_virtual=True)
5170 return
5171
5172def register_Ns3NdnContentStore_methods(root_module, cls):
5173 cls.add_output_stream_operator()
5174 ## ndn-content-store.h (module 'ndnSIM'): ns3::ndn::ContentStore::ContentStore() [constructor]
5175 cls.add_constructor([])
5176 ## ndn-content-store.h (module 'ndnSIM'): ns3::ndn::ContentStore::ContentStore(ns3::ndn::ContentStore const & arg0) [copy constructor]
5177 cls.add_constructor([param('ns3::ndn::ContentStore const &', 'arg0')])
5178 ## 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]
5179 cls.add_method('Add',
5180 'bool',
5181 [param('ns3::Ptr< ns3::ndn::ContentObjectHeader const >', 'header'), param('ns3::Ptr< ns3::Packet const >', 'packet')],
5182 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07005183 ## ndn-content-store.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::cs::Entry> ns3::ndn::ContentStore::Begin() [member function]
5184 cls.add_method('Begin',
5185 'ns3::Ptr< ns3::ndn::cs::Entry >',
5186 [],
5187 is_pure_virtual=True, is_virtual=True)
5188 ## ndn-content-store.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::cs::Entry> ns3::ndn::ContentStore::End() [member function]
5189 cls.add_method('End',
5190 'ns3::Ptr< ns3::ndn::cs::Entry >',
5191 [],
5192 is_pure_virtual=True, is_virtual=True)
5193 ## ndn-content-store.h (module 'ndnSIM'): static ns3::Ptr<ns3::ndn::ContentStore> ns3::ndn::ContentStore::GetContentStore(ns3::Ptr<ns3::Object> node) [member function]
5194 cls.add_method('GetContentStore',
5195 'ns3::Ptr< ns3::ndn::ContentStore >',
5196 [param('ns3::Ptr< ns3::Object >', 'node')],
5197 is_static=True)
5198 ## ndn-content-store.h (module 'ndnSIM'): uint32_t ns3::ndn::ContentStore::GetSize() const [member function]
5199 cls.add_method('GetSize',
5200 'uint32_t',
5201 [],
5202 is_pure_virtual=True, is_const=True, is_virtual=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005203 ## ndn-content-store.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::ContentStore::GetTypeId() [member function]
5204 cls.add_method('GetTypeId',
5205 'ns3::TypeId',
5206 [],
5207 is_static=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005208 ## 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 -07005209 cls.add_method('Lookup',
5210 '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 >',
5211 [param('ns3::Ptr< ns3::ndn::InterestHeader const >', 'interest')],
5212 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07005213 ## 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]
5214 cls.add_method('Next',
5215 'ns3::Ptr< ns3::ndn::cs::Entry >',
5216 [param('ns3::Ptr< ns3::ndn::cs::Entry >', 'arg0')],
5217 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005218 ## ndn-content-store.h (module 'ndnSIM'): void ns3::ndn::ContentStore::Print(std::ostream & os) const [member function]
5219 cls.add_method('Print',
5220 'void',
5221 [param('std::ostream &', 'os')],
5222 is_pure_virtual=True, is_const=True, is_virtual=True)
5223 return
5224
5225def register_Ns3NdnFace_methods(root_module, cls):
5226 cls.add_output_stream_operator()
5227 cls.add_binary_comparison_operator('!=')
5228 cls.add_binary_comparison_operator('<')
5229 cls.add_binary_comparison_operator('==')
5230 ## ndn-face.h (module 'ndnSIM'): ns3::ndn::Face::Face(ns3::Ptr<ns3::Node> node) [constructor]
5231 cls.add_constructor([param('ns3::Ptr< ns3::Node >', 'node')])
5232 ## ndn-face.h (module 'ndnSIM'): uint32_t ns3::ndn::Face::GetId() const [member function]
5233 cls.add_method('GetId',
5234 'uint32_t',
5235 [],
5236 is_const=True)
5237 ## ndn-face.h (module 'ndnSIM'): uint16_t ns3::ndn::Face::GetMetric() const [member function]
5238 cls.add_method('GetMetric',
5239 'uint16_t',
5240 [],
5241 is_const=True, is_virtual=True)
5242 ## ndn-face.h (module 'ndnSIM'): ns3::Ptr<ns3::Node> ns3::ndn::Face::GetNode() const [member function]
5243 cls.add_method('GetNode',
5244 'ns3::Ptr< ns3::Node >',
5245 [],
5246 is_const=True)
5247 ## ndn-face.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::Face::GetTypeId() [member function]
5248 cls.add_method('GetTypeId',
5249 'ns3::TypeId',
5250 [],
5251 is_static=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005252 ## ndn-face.h (module 'ndnSIM'): bool ns3::ndn::Face::IsUp() const [member function]
5253 cls.add_method('IsUp',
5254 'bool',
5255 [],
5256 is_const=True, is_virtual=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005257 ## ndn-face.h (module 'ndnSIM'): std::ostream & ns3::ndn::Face::Print(std::ostream & os) const [member function]
Alexander Afanasyev3073da82012-06-19 14:57:43 -07005258 cls.add_method('Print',
5259 'std::ostream &',
5260 [param('std::ostream &', 'os')],
5261 is_const=True, is_virtual=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005262 ## ndn-face.h (module 'ndnSIM'): bool ns3::ndn::Face::Receive(ns3::Ptr<const ns3::Packet> const & p) [member function]
5263 cls.add_method('Receive',
5264 'bool',
5265 [param('ns3::Ptr< ns3::Packet const > const &', 'p')])
5266 ## 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]
5267 cls.add_method('RegisterProtocolHandler',
5268 'void',
5269 [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')],
5270 is_virtual=True)
5271 ## ndn-face.h (module 'ndnSIM'): bool ns3::ndn::Face::Send(ns3::Ptr<ns3::Packet> p) [member function]
5272 cls.add_method('Send',
5273 'bool',
5274 [param('ns3::Ptr< ns3::Packet >', 'p')])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005275 ## ndn-face.h (module 'ndnSIM'): void ns3::ndn::Face::SetId(uint32_t id) [member function]
5276 cls.add_method('SetId',
5277 'void',
5278 [param('uint32_t', 'id')])
5279 ## ndn-face.h (module 'ndnSIM'): void ns3::ndn::Face::SetMetric(uint16_t metric) [member function]
5280 cls.add_method('SetMetric',
5281 'void',
5282 [param('uint16_t', 'metric')],
5283 is_virtual=True)
5284 ## ndn-face.h (module 'ndnSIM'): void ns3::ndn::Face::SetUp(bool up=true) [member function]
5285 cls.add_method('SetUp',
5286 'void',
5287 [param('bool', 'up', default_value='true')],
5288 is_virtual=True)
5289 ## ndn-face.h (module 'ndnSIM'): bool ns3::ndn::Face::SendImpl(ns3::Ptr<ns3::Packet> p) [member function]
5290 cls.add_method('SendImpl',
5291 'bool',
5292 [param('ns3::Ptr< ns3::Packet >', 'p')],
5293 is_pure_virtual=True, visibility='protected', is_virtual=True)
5294 return
5295
5296def register_Ns3NdnFaceContainer_methods(root_module, cls):
5297 ## ndn-face-container.h (module 'ndnSIM'): ns3::ndn::FaceContainer::FaceContainer() [constructor]
5298 cls.add_constructor([])
5299 ## ndn-face-container.h (module 'ndnSIM'): ns3::ndn::FaceContainer::FaceContainer(ns3::ndn::FaceContainer const & other) [copy constructor]
5300 cls.add_constructor([param('ns3::ndn::FaceContainer const &', 'other')])
5301 ## ndn-face-container.h (module 'ndnSIM'): void ns3::ndn::FaceContainer::Add(ns3::Ptr<ns3::ndn::Face> const & face) [member function]
5302 cls.add_method('Add',
5303 'void',
5304 [param('ns3::Ptr< ns3::ndn::Face > const &', 'face')])
5305 ## ndn-face-container.h (module 'ndnSIM'): void ns3::ndn::FaceContainer::AddAll(ns3::Ptr<ns3::ndn::FaceContainer> other) [member function]
5306 cls.add_method('AddAll',
5307 'void',
5308 [param('ns3::Ptr< ns3::ndn::FaceContainer >', 'other')])
5309 ## ndn-face-container.h (module 'ndnSIM'): void ns3::ndn::FaceContainer::AddAll(ns3::ndn::FaceContainer const & other) [member function]
5310 cls.add_method('AddAll',
5311 'void',
5312 [param('ns3::ndn::FaceContainer const &', 'other')])
5313 ## 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]
5314 cls.add_method('Begin',
5315 '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::ndn::Face > const, std::vector< ns3::Ptr< ns3::ndn::Face > > >',
5316 [],
5317 is_const=True)
5318 ## 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]
5319 cls.add_method('End',
5320 '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::ndn::Face > const, std::vector< ns3::Ptr< ns3::ndn::Face > > >',
5321 [],
5322 is_const=True)
5323 ## 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]
5324 cls.add_method('Get',
5325 'ns3::Ptr< ns3::ndn::Face >',
5326 [param('__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::ndn::Face > const, std::vector< ns3::Ptr< ns3::ndn::Face > > >', 'i')],
5327 is_const=True)
5328 ## ndn-face-container.h (module 'ndnSIM'): uint32_t ns3::ndn::FaceContainer::GetN() const [member function]
5329 cls.add_method('GetN',
5330 'uint32_t',
5331 [],
5332 is_const=True)
5333 return
5334
5335def register_Ns3NdnFib_methods(root_module, cls):
5336 cls.add_output_stream_operator()
5337 ## ndn-fib.h (module 'ndnSIM'): ns3::ndn::Fib::Fib() [constructor]
5338 cls.add_constructor([])
5339 ## 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]
5340 cls.add_method('Add',
5341 'ns3::Ptr< ns3::ndn::fib::Entry >',
5342 [param('ns3::ndn::NameComponents const &', 'prefix'), param('ns3::Ptr< ns3::ndn::Face >', 'face'), param('int32_t', 'metric')],
5343 is_pure_virtual=True, is_virtual=True)
5344 ## 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]
5345 cls.add_method('Add',
5346 'ns3::Ptr< ns3::ndn::fib::Entry >',
5347 [param('ns3::Ptr< ns3::ndn::NameComponents const > const &', 'prefix'), param('ns3::Ptr< ns3::ndn::Face >', 'face'), param('int32_t', 'metric')],
5348 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005349 ## 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 -07005350 cls.add_method('Begin',
5351 'ns3::Ptr< ns3::ndn::fib::Entry const >',
5352 [],
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005353 is_pure_virtual=True, is_const=True, is_virtual=True)
5354 ## ndn-fib.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::fib::Entry> ns3::ndn::Fib::Begin() [member function]
5355 cls.add_method('Begin',
5356 'ns3::Ptr< ns3::ndn::fib::Entry >',
5357 [],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005358 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005359 ## 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 -07005360 cls.add_method('End',
5361 'ns3::Ptr< ns3::ndn::fib::Entry const >',
5362 [],
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005363 is_pure_virtual=True, is_const=True, is_virtual=True)
5364 ## ndn-fib.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::fib::Entry> ns3::ndn::Fib::End() [member function]
5365 cls.add_method('End',
5366 'ns3::Ptr< ns3::ndn::fib::Entry >',
5367 [],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005368 is_pure_virtual=True, is_virtual=True)
5369 ## ndn-fib.h (module 'ndnSIM'): static ns3::Ptr<ns3::ndn::Fib> ns3::ndn::Fib::GetFib(ns3::Ptr<ns3::Object> node) [member function]
5370 cls.add_method('GetFib',
5371 'ns3::Ptr< ns3::ndn::Fib >',
5372 [param('ns3::Ptr< ns3::Object >', 'node')],
5373 is_static=True)
5374 ## ndn-fib.h (module 'ndnSIM'): uint32_t ns3::ndn::Fib::GetSize() const [member function]
5375 cls.add_method('GetSize',
5376 'uint32_t',
5377 [],
5378 is_pure_virtual=True, is_const=True, is_virtual=True)
5379 ## ndn-fib.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::Fib::GetTypeId() [member function]
5380 cls.add_method('GetTypeId',
5381 'ns3::TypeId',
5382 [],
5383 is_static=True)
5384 ## ndn-fib.h (module 'ndnSIM'): void ns3::ndn::Fib::InvalidateAll() [member function]
5385 cls.add_method('InvalidateAll',
5386 'void',
5387 [],
5388 is_pure_virtual=True, is_virtual=True)
5389 ## ndn-fib.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::fib::Entry> ns3::ndn::Fib::LongestPrefixMatch(ns3::ndn::InterestHeader const & interest) [member function]
5390 cls.add_method('LongestPrefixMatch',
5391 'ns3::Ptr< ns3::ndn::fib::Entry >',
5392 [param('ns3::ndn::InterestHeader const &', 'interest')],
5393 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005394 ## 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 -07005395 cls.add_method('Next',
5396 'ns3::Ptr< ns3::ndn::fib::Entry const >',
5397 [param('ns3::Ptr< ns3::ndn::fib::Entry const >', 'arg0')],
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005398 is_pure_virtual=True, is_const=True, is_virtual=True)
5399 ## ndn-fib.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::fib::Entry> ns3::ndn::Fib::Next(ns3::Ptr<ns3::ndn::fib::Entry> arg0) [member function]
5400 cls.add_method('Next',
5401 'ns3::Ptr< ns3::ndn::fib::Entry >',
5402 [param('ns3::Ptr< ns3::ndn::fib::Entry >', 'arg0')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005403 is_pure_virtual=True, is_virtual=True)
5404 ## ndn-fib.h (module 'ndnSIM'): void ns3::ndn::Fib::Print(std::ostream & os) const [member function]
5405 cls.add_method('Print',
5406 'void',
5407 [param('std::ostream &', 'os')],
5408 is_pure_virtual=True, is_const=True, is_virtual=True)
5409 ## ndn-fib.h (module 'ndnSIM'): void ns3::ndn::Fib::Remove(ns3::Ptr<ns3::ndn::NameComponents const> const & prefix) [member function]
5410 cls.add_method('Remove',
5411 'void',
5412 [param('ns3::Ptr< ns3::ndn::NameComponents const > const &', 'prefix')],
5413 is_pure_virtual=True, is_virtual=True)
5414 ## ndn-fib.h (module 'ndnSIM'): void ns3::ndn::Fib::RemoveFromAll(ns3::Ptr<ns3::ndn::Face> face) [member function]
5415 cls.add_method('RemoveFromAll',
5416 'void',
5417 [param('ns3::Ptr< ns3::ndn::Face >', 'face')],
5418 is_pure_virtual=True, is_virtual=True)
5419 return
5420
5421def register_Ns3NdnForwardingStrategy_methods(root_module, cls):
5422 ## ndn-forwarding-strategy.h (module 'ndnSIM'): ns3::ndn::ForwardingStrategy::ForwardingStrategy(ns3::ndn::ForwardingStrategy const & arg0) [copy constructor]
5423 cls.add_constructor([param('ns3::ndn::ForwardingStrategy const &', 'arg0')])
5424 ## ndn-forwarding-strategy.h (module 'ndnSIM'): ns3::ndn::ForwardingStrategy::ForwardingStrategy() [constructor]
5425 cls.add_constructor([])
Alexander Afanasyevf5c07742012-10-31 13:13:05 -07005426 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::AddFace(ns3::Ptr<ns3::ndn::Face> face) [member function]
5427 cls.add_method('AddFace',
5428 'void',
5429 [param('ns3::Ptr< ns3::ndn::Face >', 'face')],
5430 is_virtual=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005431 ## ndn-forwarding-strategy.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::ForwardingStrategy::GetTypeId() [member function]
5432 cls.add_method('GetTypeId',
5433 'ns3::TypeId',
5434 [],
5435 is_static=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005436 ## 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 -07005437 cls.add_method('OnData',
5438 'void',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005439 [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 -07005440 is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005441 ## 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 -07005442 cls.add_method('OnInterest',
5443 'void',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005444 [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 -07005445 is_virtual=True)
5446 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::RemoveFace(ns3::Ptr<ns3::ndn::Face> face) [member function]
5447 cls.add_method('RemoveFace',
5448 'void',
5449 [param('ns3::Ptr< ns3::ndn::Face >', 'face')],
5450 is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005451 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::WillEraseTimedOutPendingInterest(ns3::Ptr<ns3::ndn::pit::Entry> pitEntry) [member function]
5452 cls.add_method('WillEraseTimedOutPendingInterest',
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005453 'void',
5454 [param('ns3::Ptr< ns3::ndn::pit::Entry >', 'pitEntry')],
5455 is_virtual=True)
Alexander Afanasyeva8f5d882012-11-09 14:22:48 -08005456 ## ndn-forwarding-strategy.h (module 'ndnSIM'): bool ns3::ndn::ForwardingStrategy::CanSendOutInterest(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]
5457 cls.add_method('CanSendOutInterest',
5458 'bool',
5459 [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')],
5460 visibility='protected', is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005461 ## 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 -07005462 cls.add_method('DetectRetransmittedInterest',
5463 'bool',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005464 [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 -07005465 visibility='protected', is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005466 ## 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 -07005467 cls.add_method('DidCreatePitEntry',
5468 'void',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005469 [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 -07005470 visibility='protected', is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005471 ## 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 -07005472 cls.add_method('DidExhaustForwardingOptions',
5473 'void',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005474 [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 -07005475 visibility='protected', is_virtual=True)
Alexander Afanasyeva28ec562012-10-25 14:07:32 -07005476 ## 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]
5477 cls.add_method('DidForwardSimilarInterest',
5478 'void',
5479 [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')],
5480 visibility='protected', is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005481 ## 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 -07005482 cls.add_method('DidReceiveDuplicateInterest',
5483 'void',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005484 [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 -07005485 visibility='protected', is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005486 ## 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 -07005487 cls.add_method('DidReceiveUnsolicitedData',
5488 'void',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005489 [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 -07005490 visibility='protected', is_virtual=True)
Alexander Afanasyeva8f5d882012-11-09 14:22:48 -08005491 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::DidSendOutData(ns3::Ptr<ns3::ndn::Face> outFace, 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 -07005492 cls.add_method('DidSendOutData',
5493 'void',
Alexander Afanasyeva8f5d882012-11-09 14:22:48 -08005494 [param('ns3::Ptr< ns3::ndn::Face >', 'outFace'), 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 -07005495 visibility='protected', is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005496 ## 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 -07005497 cls.add_method('DidSendOutInterest',
5498 'void',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005499 [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 -07005500 visibility='protected', is_virtual=True)
Alexander Afanasyeva28ec562012-10-25 14:07:32 -07005501 ## 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]
5502 cls.add_method('DidSuppressSimilarInterest',
5503 'void',
5504 [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')],
5505 visibility='protected', is_virtual=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005506 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::DoDispose() [member function]
5507 cls.add_method('DoDispose',
5508 'void',
5509 [],
5510 visibility='protected', is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005511 ## 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 -07005512 cls.add_method('DoPropagateInterest',
5513 'bool',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005514 [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 -07005515 is_pure_virtual=True, visibility='protected', is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005516 ## 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 -07005517 cls.add_method('FailedToCreatePitEntry',
5518 'void',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005519 [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 -07005520 visibility='protected', is_virtual=True)
5521 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::NotifyNewAggregate() [member function]
5522 cls.add_method('NotifyNewAggregate',
5523 'void',
5524 [],
5525 visibility='protected', is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005526 ## 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 -07005527 cls.add_method('PropagateInterest',
5528 'void',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005529 [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 -07005530 visibility='protected', is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005531 ## 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 -07005532 cls.add_method('SatisfyPendingInterest',
5533 'void',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005534 [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 -07005535 visibility='protected', is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005536 ## 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 -07005537 cls.add_method('ShouldSuppressIncomingInterest',
5538 'bool',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005539 [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 -07005540 visibility='protected', is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005541 ## 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]
5542 cls.add_method('TrySendOutInterest',
5543 'bool',
5544 [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')],
5545 visibility='protected', is_virtual=True)
5546 ## 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 -07005547 cls.add_method('WillSatisfyPendingInterest',
5548 'void',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005549 [param('ns3::Ptr< ns3::ndn::Face >', 'inFace'), param('ns3::Ptr< ns3::ndn::pit::Entry >', 'pitEntry')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005550 visibility='protected', is_virtual=True)
5551 return
5552
5553def register_Ns3NdnGlobalRoutingHelper_methods(root_module, cls):
5554 ## ndn-global-routing-helper.h (module 'ndnSIM'): ns3::ndn::GlobalRoutingHelper::GlobalRoutingHelper() [constructor]
5555 cls.add_constructor([])
5556 ## ndn-global-routing-helper.h (module 'ndnSIM'): ns3::ndn::GlobalRoutingHelper::GlobalRoutingHelper(ns3::ndn::GlobalRoutingHelper const & arg0) [copy constructor]
5557 cls.add_constructor([param('ns3::ndn::GlobalRoutingHelper const &', 'arg0')])
5558 ## ndn-global-routing-helper.h (module 'ndnSIM'): void ns3::ndn::GlobalRoutingHelper::AddOrigin(std::string const & prefix, ns3::Ptr<ns3::Node> node) [member function]
5559 cls.add_method('AddOrigin',
5560 'void',
5561 [param('std::string const &', 'prefix'), param('ns3::Ptr< ns3::Node >', 'node')])
5562 ## ndn-global-routing-helper.h (module 'ndnSIM'): void ns3::ndn::GlobalRoutingHelper::AddOrigin(std::string const & prefix, std::string const & nodeName) [member function]
5563 cls.add_method('AddOrigin',
5564 'void',
5565 [param('std::string const &', 'prefix'), param('std::string const &', 'nodeName')])
5566 ## ndn-global-routing-helper.h (module 'ndnSIM'): void ns3::ndn::GlobalRoutingHelper::AddOrigins(std::string const & prefix, ns3::NodeContainer const & nodes) [member function]
5567 cls.add_method('AddOrigins',
5568 'void',
5569 [param('std::string const &', 'prefix'), param('ns3::NodeContainer const &', 'nodes')])
5570 ## ndn-global-routing-helper.h (module 'ndnSIM'): void ns3::ndn::GlobalRoutingHelper::CalculateRoutes() [member function]
5571 cls.add_method('CalculateRoutes',
5572 'void',
5573 [])
5574 ## ndn-global-routing-helper.h (module 'ndnSIM'): void ns3::ndn::GlobalRoutingHelper::Install(ns3::Ptr<ns3::Node> node) [member function]
5575 cls.add_method('Install',
5576 'void',
5577 [param('ns3::Ptr< ns3::Node >', 'node')])
5578 ## ndn-global-routing-helper.h (module 'ndnSIM'): void ns3::ndn::GlobalRoutingHelper::Install(ns3::NodeContainer const & nodes) [member function]
5579 cls.add_method('Install',
5580 'void',
5581 [param('ns3::NodeContainer const &', 'nodes')])
5582 ## ndn-global-routing-helper.h (module 'ndnSIM'): void ns3::ndn::GlobalRoutingHelper::InstallAll() [member function]
5583 cls.add_method('InstallAll',
5584 'void',
5585 [])
5586 return
5587
5588def register_Ns3NdnHeaderHelper_methods(root_module, cls):
5589 ## ndn-header-helper.h (module 'ndnSIM'): ns3::ndn::HeaderHelper::HeaderHelper() [constructor]
5590 cls.add_constructor([])
5591 ## ndn-header-helper.h (module 'ndnSIM'): ns3::ndn::HeaderHelper::HeaderHelper(ns3::ndn::HeaderHelper const & arg0) [copy constructor]
5592 cls.add_constructor([param('ns3::ndn::HeaderHelper const &', 'arg0')])
5593 ## ndn-header-helper.h (module 'ndnSIM'): static ns3::ndn::HeaderHelper::Type ns3::ndn::HeaderHelper::GetNdnHeaderType(ns3::Ptr<const ns3::Packet> packet) [member function]
5594 cls.add_method('GetNdnHeaderType',
5595 'ns3::ndn::HeaderHelper::Type',
5596 [param('ns3::Ptr< ns3::Packet const >', 'packet')],
5597 is_static=True)
5598 return
5599
5600def register_Ns3NdnInterestHeader_methods(root_module, cls):
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005601 ## ndn-interest-header.h (module 'ndnSIM'): ns3::ndn::InterestHeader::InterestHeader() [constructor]
5602 cls.add_constructor([])
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005603 ## ndn-interest-header.h (module 'ndnSIM'): ns3::ndn::InterestHeader::InterestHeader(ns3::ndn::InterestHeader const & interest) [copy constructor]
5604 cls.add_constructor([param('ns3::ndn::InterestHeader const &', 'interest')])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005605 ## ndn-interest-header.h (module 'ndnSIM'): uint32_t ns3::ndn::InterestHeader::Deserialize(ns3::Buffer::Iterator start) [member function]
5606 cls.add_method('Deserialize',
5607 'uint32_t',
5608 [param('ns3::Buffer::Iterator', 'start')],
5609 is_virtual=True)
5610 ## ndn-interest-header.h (module 'ndnSIM'): ns3::ndn::NameComponents const & ns3::ndn::InterestHeader::GetExclude() const [member function]
5611 cls.add_method('GetExclude',
5612 'ns3::ndn::NameComponents const &',
5613 [],
5614 is_const=True)
5615 ## ndn-interest-header.h (module 'ndnSIM'): ns3::TypeId ns3::ndn::InterestHeader::GetInstanceTypeId() const [member function]
5616 cls.add_method('GetInstanceTypeId',
5617 'ns3::TypeId',
5618 [],
5619 is_const=True, is_virtual=True)
Alexander Afanasyev663d63f2012-09-09 11:55:36 -07005620 ## ndn-interest-header.h (module 'ndnSIM'): static ns3::Ptr<ns3::ndn::InterestHeader> ns3::ndn::InterestHeader::GetInterest(ns3::Ptr<ns3::Packet> packet) [member function]
5621 cls.add_method('GetInterest',
5622 'ns3::Ptr< ns3::ndn::InterestHeader >',
5623 [param('ns3::Ptr< ns3::Packet >', 'packet')],
5624 is_static=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005625 ## ndn-interest-header.h (module 'ndnSIM'): ns3::Time ns3::ndn::InterestHeader::GetInterestLifetime() const [member function]
5626 cls.add_method('GetInterestLifetime',
5627 'ns3::Time',
5628 [],
5629 is_const=True)
5630 ## ndn-interest-header.h (module 'ndnSIM'): int32_t ns3::ndn::InterestHeader::GetMaxSuffixComponents() const [member function]
5631 cls.add_method('GetMaxSuffixComponents',
5632 'int32_t',
5633 [],
5634 is_const=True)
5635 ## ndn-interest-header.h (module 'ndnSIM'): int32_t ns3::ndn::InterestHeader::GetMinSuffixComponents() const [member function]
5636 cls.add_method('GetMinSuffixComponents',
5637 'int32_t',
5638 [],
5639 is_const=True)
5640 ## ndn-interest-header.h (module 'ndnSIM'): uint32_t ns3::ndn::InterestHeader::GetNack() const [member function]
5641 cls.add_method('GetNack',
5642 'uint32_t',
5643 [],
5644 is_const=True)
5645 ## ndn-interest-header.h (module 'ndnSIM'): ns3::ndn::NameComponents const & ns3::ndn::InterestHeader::GetName() const [member function]
5646 cls.add_method('GetName',
5647 'ns3::ndn::NameComponents const &',
5648 [],
5649 is_const=True)
5650 ## ndn-interest-header.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::NameComponents const> ns3::ndn::InterestHeader::GetNamePtr() const [member function]
5651 cls.add_method('GetNamePtr',
5652 'ns3::Ptr< ns3::ndn::NameComponents const >',
5653 [],
5654 is_const=True)
5655 ## ndn-interest-header.h (module 'ndnSIM'): uint32_t ns3::ndn::InterestHeader::GetNonce() const [member function]
5656 cls.add_method('GetNonce',
5657 'uint32_t',
5658 [],
5659 is_const=True)
5660 ## ndn-interest-header.h (module 'ndnSIM'): int8_t ns3::ndn::InterestHeader::GetScope() const [member function]
5661 cls.add_method('GetScope',
5662 'int8_t',
5663 [],
5664 is_const=True)
5665 ## ndn-interest-header.h (module 'ndnSIM'): uint32_t ns3::ndn::InterestHeader::GetSerializedSize() const [member function]
5666 cls.add_method('GetSerializedSize',
5667 'uint32_t',
5668 [],
5669 is_const=True, is_virtual=True)
5670 ## ndn-interest-header.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::InterestHeader::GetTypeId() [member function]
5671 cls.add_method('GetTypeId',
5672 'ns3::TypeId',
5673 [],
5674 is_static=True)
5675 ## ndn-interest-header.h (module 'ndnSIM'): bool ns3::ndn::InterestHeader::IsEnabledAnswerOriginKind() const [member function]
5676 cls.add_method('IsEnabledAnswerOriginKind',
5677 'bool',
5678 [],
5679 is_const=True)
5680 ## ndn-interest-header.h (module 'ndnSIM'): bool ns3::ndn::InterestHeader::IsEnabledChildSelector() const [member function]
5681 cls.add_method('IsEnabledChildSelector',
5682 'bool',
5683 [],
5684 is_const=True)
5685 ## ndn-interest-header.h (module 'ndnSIM'): bool ns3::ndn::InterestHeader::IsEnabledExclude() const [member function]
5686 cls.add_method('IsEnabledExclude',
5687 'bool',
5688 [],
5689 is_const=True)
5690 ## ndn-interest-header.h (module 'ndnSIM'): void ns3::ndn::InterestHeader::Print(std::ostream & os) const [member function]
5691 cls.add_method('Print',
5692 'void',
5693 [param('std::ostream &', 'os')],
5694 is_const=True, is_virtual=True)
5695 ## ndn-interest-header.h (module 'ndnSIM'): void ns3::ndn::InterestHeader::Serialize(ns3::Buffer::Iterator start) const [member function]
5696 cls.add_method('Serialize',
5697 'void',
5698 [param('ns3::Buffer::Iterator', 'start')],
5699 is_const=True, is_virtual=True)
5700 ## ndn-interest-header.h (module 'ndnSIM'): void ns3::ndn::InterestHeader::SetAnswerOriginKind(bool value) [member function]
5701 cls.add_method('SetAnswerOriginKind',
5702 'void',
5703 [param('bool', 'value')])
5704 ## ndn-interest-header.h (module 'ndnSIM'): void ns3::ndn::InterestHeader::SetChildSelector(bool value) [member function]
5705 cls.add_method('SetChildSelector',
5706 'void',
5707 [param('bool', 'value')])
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005708 ## 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 -07005709 cls.add_method('SetExclude',
5710 'void',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005711 [param('ns3::Ptr< ns3::ndn::NameComponents >', 'exclude')])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005712 ## ndn-interest-header.h (module 'ndnSIM'): void ns3::ndn::InterestHeader::SetInterestLifetime(ns3::Time time) [member function]
5713 cls.add_method('SetInterestLifetime',
5714 'void',
5715 [param('ns3::Time', 'time')])
5716 ## ndn-interest-header.h (module 'ndnSIM'): void ns3::ndn::InterestHeader::SetMaxSuffixComponents(int32_t value) [member function]
5717 cls.add_method('SetMaxSuffixComponents',
5718 'void',
5719 [param('int32_t', 'value')])
5720 ## ndn-interest-header.h (module 'ndnSIM'): void ns3::ndn::InterestHeader::SetMinSuffixComponents(int32_t value) [member function]
5721 cls.add_method('SetMinSuffixComponents',
5722 'void',
5723 [param('int32_t', 'value')])
5724 ## ndn-interest-header.h (module 'ndnSIM'): void ns3::ndn::InterestHeader::SetNack(uint32_t nackType) [member function]
5725 cls.add_method('SetNack',
5726 'void',
5727 [param('uint32_t', 'nackType')])
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005728 ## 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 -07005729 cls.add_method('SetName',
5730 'void',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005731 [param('ns3::Ptr< ns3::ndn::NameComponents >', 'name')])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005732 ## ndn-interest-header.h (module 'ndnSIM'): void ns3::ndn::InterestHeader::SetNonce(uint32_t nonce) [member function]
5733 cls.add_method('SetNonce',
5734 'void',
5735 [param('uint32_t', 'nonce')])
5736 ## ndn-interest-header.h (module 'ndnSIM'): void ns3::ndn::InterestHeader::SetScope(int8_t scope) [member function]
5737 cls.add_method('SetScope',
5738 'void',
5739 [param('int8_t', 'scope')])
5740 return
5741
5742def register_Ns3NdnInterestHeaderException_methods(root_module, cls):
5743 ## ndn-interest-header.h (module 'ndnSIM'): ns3::ndn::InterestHeaderException::InterestHeaderException() [constructor]
5744 cls.add_constructor([])
5745 ## ndn-interest-header.h (module 'ndnSIM'): ns3::ndn::InterestHeaderException::InterestHeaderException(ns3::ndn::InterestHeaderException const & arg0) [copy constructor]
5746 cls.add_constructor([param('ns3::ndn::InterestHeaderException const &', 'arg0')])
5747 return
5748
5749def register_Ns3NdnL3Protocol_methods(root_module, cls):
5750 ## ndn-l3-protocol.h (module 'ndnSIM'): ns3::ndn::L3Protocol::ETHERNET_FRAME_TYPE [variable]
5751 cls.add_static_attribute('ETHERNET_FRAME_TYPE', 'uint16_t const', is_const=True)
5752 ## ndn-l3-protocol.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::L3Protocol::GetTypeId() [member function]
5753 cls.add_method('GetTypeId',
5754 'ns3::TypeId',
5755 [],
5756 is_static=True)
5757 ## ndn-l3-protocol.h (module 'ndnSIM'): ns3::ndn::L3Protocol::L3Protocol() [constructor]
5758 cls.add_constructor([])
5759 ## ndn-l3-protocol.h (module 'ndnSIM'): uint32_t ns3::ndn::L3Protocol::AddFace(ns3::Ptr<ns3::ndn::Face> const & face) [member function]
5760 cls.add_method('AddFace',
5761 'uint32_t',
5762 [param('ns3::Ptr< ns3::ndn::Face > const &', 'face')],
5763 is_virtual=True)
5764 ## ndn-l3-protocol.h (module 'ndnSIM'): uint32_t ns3::ndn::L3Protocol::GetNFaces() const [member function]
5765 cls.add_method('GetNFaces',
5766 'uint32_t',
5767 [],
5768 is_const=True, is_virtual=True)
5769 ## ndn-l3-protocol.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::Face> ns3::ndn::L3Protocol::GetFace(uint32_t face) const [member function]
5770 cls.add_method('GetFace',
5771 'ns3::Ptr< ns3::ndn::Face >',
5772 [param('uint32_t', 'face')],
5773 is_const=True, is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005774 ## ndn-l3-protocol.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::Face> ns3::ndn::L3Protocol::GetFaceById(uint32_t face) const [member function]
5775 cls.add_method('GetFaceById',
5776 'ns3::Ptr< ns3::ndn::Face >',
5777 [param('uint32_t', 'face')],
5778 is_const=True, is_virtual=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005779 ## ndn-l3-protocol.h (module 'ndnSIM'): void ns3::ndn::L3Protocol::RemoveFace(ns3::Ptr<ns3::ndn::Face> face) [member function]
5780 cls.add_method('RemoveFace',
5781 'void',
5782 [param('ns3::Ptr< ns3::ndn::Face >', 'face')],
5783 is_virtual=True)
5784 ## ndn-l3-protocol.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::Face> ns3::ndn::L3Protocol::GetFaceByNetDevice(ns3::Ptr<ns3::NetDevice> netDevice) const [member function]
5785 cls.add_method('GetFaceByNetDevice',
5786 'ns3::Ptr< ns3::ndn::Face >',
5787 [param('ns3::Ptr< ns3::NetDevice >', 'netDevice')],
5788 is_const=True, is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005789 ## ndn-l3-protocol.h (module 'ndnSIM'): static uint64_t ns3::ndn::L3Protocol::GetInterestCounter() [member function]
5790 cls.add_method('GetInterestCounter',
5791 'uint64_t',
5792 [],
5793 is_static=True)
5794 ## ndn-l3-protocol.h (module 'ndnSIM'): static uint64_t ns3::ndn::L3Protocol::GetDataCounter() [member function]
5795 cls.add_method('GetDataCounter',
5796 'uint64_t',
5797 [],
5798 is_static=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005799 ## ndn-l3-protocol.h (module 'ndnSIM'): void ns3::ndn::L3Protocol::DoDispose() [member function]
5800 cls.add_method('DoDispose',
5801 'void',
5802 [],
5803 visibility='protected', is_virtual=True)
5804 ## ndn-l3-protocol.h (module 'ndnSIM'): void ns3::ndn::L3Protocol::NotifyNewAggregate() [member function]
5805 cls.add_method('NotifyNewAggregate',
5806 'void',
5807 [],
5808 visibility='protected', is_virtual=True)
5809 return
5810
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005811def register_Ns3NdnLimits_methods(root_module, cls):
5812 ## ndn-limits.h (module 'ndnSIM'): ns3::ndn::Limits::Limits(ns3::ndn::Limits const & arg0) [copy constructor]
5813 cls.add_constructor([param('ns3::ndn::Limits const &', 'arg0')])
5814 ## ndn-limits.h (module 'ndnSIM'): ns3::ndn::Limits::Limits() [constructor]
5815 cls.add_constructor([])
Alexander Afanasyev7e4235a2012-10-31 16:58:44 -07005816 ## ndn-limits.h (module 'ndnSIM'): void ns3::ndn::Limits::BorrowLimit() [member function]
5817 cls.add_method('BorrowLimit',
5818 'void',
5819 [],
5820 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyevf5c07742012-10-31 13:13:05 -07005821 ## ndn-limits.h (module 'ndnSIM'): double ns3::ndn::Limits::GetCurrentLimit() const [member function]
5822 cls.add_method('GetCurrentLimit',
5823 'double',
5824 [],
Alexander Afanasyev7e4235a2012-10-31 16:58:44 -07005825 is_pure_virtual=True, is_const=True, is_virtual=True)
Alexander Afanasyeva8f5d882012-11-09 14:22:48 -08005826 ## ndn-limits.h (module 'ndnSIM'): double ns3::ndn::Limits::GetCurrentLimitRate() const [member function]
5827 cls.add_method('GetCurrentLimitRate',
5828 'double',
5829 [],
5830 is_pure_virtual=True, is_const=True, is_virtual=True)
5831 ## ndn-limits.h (module 'ndnSIM'): double ns3::ndn::Limits::GetLinkDelay() const [member function]
5832 cls.add_method('GetLinkDelay',
5833 'double',
5834 [],
5835 is_const=True, is_virtual=True)
Alexander Afanasyev7e4235a2012-10-31 16:58:44 -07005836 ## ndn-limits.h (module 'ndnSIM'): double ns3::ndn::Limits::GetMaxDelay() const [member function]
5837 cls.add_method('GetMaxDelay',
5838 'double',
5839 [],
5840 is_const=True, is_virtual=True)
Alexander Afanasyeva8f5d882012-11-09 14:22:48 -08005841 ## ndn-limits.h (module 'ndnSIM'): double ns3::ndn::Limits::GetMaxLimit() const [member function]
5842 cls.add_method('GetMaxLimit',
5843 'double',
5844 [],
5845 is_pure_virtual=True, is_const=True, is_virtual=True)
Alexander Afanasyev7e4235a2012-10-31 16:58:44 -07005846 ## ndn-limits.h (module 'ndnSIM'): double ns3::ndn::Limits::GetMaxRate() const [member function]
5847 cls.add_method('GetMaxRate',
Alexander Afanasyeva28ec562012-10-25 14:07:32 -07005848 'double',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005849 [],
Alexander Afanasyevf5c07742012-10-31 13:13:05 -07005850 is_const=True, is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005851 ## ndn-limits.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::Limits::GetTypeId() [member function]
5852 cls.add_method('GetTypeId',
5853 'ns3::TypeId',
5854 [],
5855 is_static=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005856 ## ndn-limits.h (module 'ndnSIM'): bool ns3::ndn::Limits::IsBelowLimit() [member function]
5857 cls.add_method('IsBelowLimit',
5858 'bool',
Alexander Afanasyevf5c07742012-10-31 13:13:05 -07005859 [],
5860 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005861 ## ndn-limits.h (module 'ndnSIM'): bool ns3::ndn::Limits::IsEnabled() const [member function]
5862 cls.add_method('IsEnabled',
5863 'bool',
5864 [],
Alexander Afanasyevf5c07742012-10-31 13:13:05 -07005865 is_const=True, is_virtual=True)
Alexander Afanasyeva8f5d882012-11-09 14:22:48 -08005866 ## ndn-limits.h (module 'ndnSIM'): void ns3::ndn::Limits::RegisterAvailableSlotCallback(ns3::Callback<void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> handler) [member function]
5867 cls.add_method('RegisterAvailableSlotCallback',
5868 'void',
5869 [param('ns3::Callback< void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'handler')])
Alexander Afanasyev7e4235a2012-10-31 16:58:44 -07005870 ## ndn-limits.h (module 'ndnSIM'): void ns3::ndn::Limits::ReturnLimit() [member function]
5871 cls.add_method('ReturnLimit',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005872 'void',
Alexander Afanasyev7e4235a2012-10-31 16:58:44 -07005873 [],
5874 is_pure_virtual=True, is_virtual=True)
5875 ## ndn-limits.h (module 'ndnSIM'): void ns3::ndn::Limits::SetLimits(double rate, double delay) [member function]
5876 cls.add_method('SetLimits',
5877 'void',
5878 [param('double', 'rate'), param('double', 'delay')],
Alexander Afanasyevf5c07742012-10-31 13:13:05 -07005879 is_virtual=True)
Alexander Afanasyeva8f5d882012-11-09 14:22:48 -08005880 ## ndn-limits.h (module 'ndnSIM'): void ns3::ndn::Limits::SetLinkDelay(double delay) [member function]
5881 cls.add_method('SetLinkDelay',
5882 'void',
5883 [param('double', 'delay')],
5884 is_virtual=True)
Alexander Afanasyeva28ec562012-10-25 14:07:32 -07005885 ## ndn-limits.h (module 'ndnSIM'): void ns3::ndn::Limits::UpdateCurrentLimit(double limit) [member function]
5886 cls.add_method('UpdateCurrentLimit',
5887 'void',
Alexander Afanasyev7e4235a2012-10-31 16:58:44 -07005888 [param('double', 'limit')],
5889 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyeva8f5d882012-11-09 14:22:48 -08005890 ## ndn-limits.h (module 'ndnSIM'): void ns3::ndn::Limits::FireAvailableSlotCallback() [member function]
5891 cls.add_method('FireAvailableSlotCallback',
5892 'void',
5893 [],
5894 visibility='protected')
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005895 return
5896
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005897def register_Ns3NdnNameComponents_methods(root_module, cls):
5898 cls.add_output_stream_operator()
5899 cls.add_binary_comparison_operator('<')
5900 cls.add_binary_comparison_operator('==')
5901 ## ndn-name-components.h (module 'ndnSIM'): ns3::ndn::NameComponents::NameComponents(ns3::ndn::NameComponents const & arg0) [copy constructor]
5902 cls.add_constructor([param('ns3::ndn::NameComponents const &', 'arg0')])
5903 ## ndn-name-components.h (module 'ndnSIM'): ns3::ndn::NameComponents::NameComponents() [constructor]
5904 cls.add_constructor([])
5905 ## 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]
5906 cls.add_constructor([param('std::list< boost::reference_wrapper< std::string const > > const &', 'components')])
5907 ## ndn-name-components.h (module 'ndnSIM'): ns3::ndn::NameComponents::NameComponents(std::string const & prefix) [constructor]
5908 cls.add_constructor([param('std::string const &', 'prefix')])
5909 ## ndn-name-components.h (module 'ndnSIM'): ns3::ndn::NameComponents::NameComponents(char const * prefix) [constructor]
5910 cls.add_constructor([param('char const *', 'prefix')])
5911 ## ndn-name-components.h (module 'ndnSIM'): std::list<std::string, std::allocator<std::string> > const & ns3::ndn::NameComponents::GetComponents() const [member function]
5912 cls.add_method('GetComponents',
5913 'std::list< std::string > const &',
5914 [],
5915 is_const=True)
5916 ## ndn-name-components.h (module 'ndnSIM'): std::string ns3::ndn::NameComponents::GetLastComponent() const [member function]
5917 cls.add_method('GetLastComponent',
5918 'std::string',
5919 [],
5920 is_const=True)
5921 ## 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]
5922 cls.add_method('GetSubComponents',
5923 'std::list< boost::reference_wrapper< std::string const > >',
5924 [param('size_t', 'num')],
5925 is_const=True)
5926 ## ndn-name-components.h (module 'ndnSIM'): void ns3::ndn::NameComponents::Print(std::ostream & os) const [member function]
5927 cls.add_method('Print',
5928 'void',
5929 [param('std::ostream &', 'os')],
5930 is_const=True)
5931 ## ndn-name-components.h (module 'ndnSIM'): std::_List_iterator<std::string> ns3::ndn::NameComponents::begin() [member function]
5932 cls.add_method('begin',
5933 'std::_List_iterator< std::string >',
5934 [])
5935 ## ndn-name-components.h (module 'ndnSIM'): std::_List_const_iterator<std::string> ns3::ndn::NameComponents::begin() const [member function]
5936 cls.add_method('begin',
5937 'std::_List_const_iterator< std::string >',
5938 [],
5939 is_const=True)
5940 ## ndn-name-components.h (module 'ndnSIM'): ns3::ndn::NameComponents ns3::ndn::NameComponents::cut(size_t minusComponents) const [member function]
5941 cls.add_method('cut',
5942 'ns3::ndn::NameComponents',
5943 [param('size_t', 'minusComponents')],
5944 is_const=True)
5945 ## ndn-name-components.h (module 'ndnSIM'): std::_List_iterator<std::string> ns3::ndn::NameComponents::end() [member function]
5946 cls.add_method('end',
5947 'std::_List_iterator< std::string >',
5948 [])
5949 ## ndn-name-components.h (module 'ndnSIM'): std::_List_const_iterator<std::string> ns3::ndn::NameComponents::end() const [member function]
5950 cls.add_method('end',
5951 'std::_List_const_iterator< std::string >',
5952 [],
5953 is_const=True)
5954 ## ndn-name-components.h (module 'ndnSIM'): size_t ns3::ndn::NameComponents::size() const [member function]
5955 cls.add_method('size',
5956 'size_t',
5957 [],
5958 is_const=True)
5959 return
5960
5961def register_Ns3NdnNameComponentsChecker_methods(root_module, cls):
5962 ## ndn-name-components.h (module 'ndnSIM'): ns3::ndn::NameComponentsChecker::NameComponentsChecker() [constructor]
5963 cls.add_constructor([])
5964 ## ndn-name-components.h (module 'ndnSIM'): ns3::ndn::NameComponentsChecker::NameComponentsChecker(ns3::ndn::NameComponentsChecker const & arg0) [copy constructor]
5965 cls.add_constructor([param('ns3::ndn::NameComponentsChecker const &', 'arg0')])
5966 return
5967
5968def register_Ns3NdnNameComponentsValue_methods(root_module, cls):
5969 ## ndn-name-components.h (module 'ndnSIM'): ns3::ndn::NameComponentsValue::NameComponentsValue() [constructor]
5970 cls.add_constructor([])
5971 ## ndn-name-components.h (module 'ndnSIM'): ns3::ndn::NameComponentsValue::NameComponentsValue(ns3::ndn::NameComponentsValue const & arg0) [copy constructor]
5972 cls.add_constructor([param('ns3::ndn::NameComponentsValue const &', 'arg0')])
5973 ## ndn-name-components.h (module 'ndnSIM'): ns3::ndn::NameComponentsValue::NameComponentsValue(ns3::ndn::NameComponents const & value) [constructor]
5974 cls.add_constructor([param('ns3::ndn::NameComponents const &', 'value')])
5975 ## ndn-name-components.h (module 'ndnSIM'): ns3::Ptr<ns3::AttributeValue> ns3::ndn::NameComponentsValue::Copy() const [member function]
5976 cls.add_method('Copy',
5977 'ns3::Ptr< ns3::AttributeValue >',
5978 [],
5979 is_const=True, is_virtual=True)
5980 ## ndn-name-components.h (module 'ndnSIM'): bool ns3::ndn::NameComponentsValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
5981 cls.add_method('DeserializeFromString',
5982 'bool',
5983 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
5984 is_virtual=True)
5985 ## ndn-name-components.h (module 'ndnSIM'): ns3::ndn::NameComponents ns3::ndn::NameComponentsValue::Get() const [member function]
5986 cls.add_method('Get',
5987 'ns3::ndn::NameComponents',
5988 [],
5989 is_const=True)
5990 ## ndn-name-components.h (module 'ndnSIM'): std::string ns3::ndn::NameComponentsValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
5991 cls.add_method('SerializeToString',
5992 'std::string',
5993 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
5994 is_const=True, is_virtual=True)
5995 ## ndn-name-components.h (module 'ndnSIM'): void ns3::ndn::NameComponentsValue::Set(ns3::ndn::NameComponents const & value) [member function]
5996 cls.add_method('Set',
5997 'void',
5998 [param('ns3::ndn::NameComponents const &', 'value')])
5999 return
6000
6001def register_Ns3NdnNetDeviceFace_methods(root_module, cls):
6002 ## ndn-net-device-face.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::NetDeviceFace::GetTypeId() [member function]
6003 cls.add_method('GetTypeId',
6004 'ns3::TypeId',
6005 [],
6006 is_static=True)
6007 ## ndn-net-device-face.h (module 'ndnSIM'): ns3::ndn::NetDeviceFace::NetDeviceFace(ns3::Ptr<ns3::Node> node, ns3::Ptr<ns3::NetDevice> const & netDevice) [constructor]
6008 cls.add_constructor([param('ns3::Ptr< ns3::Node >', 'node'), param('ns3::Ptr< ns3::NetDevice > const &', 'netDevice')])
6009 ## 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]
6010 cls.add_method('RegisterProtocolHandler',
6011 'void',
6012 [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')],
6013 is_virtual=True)
6014 ## ndn-net-device-face.h (module 'ndnSIM'): std::ostream & ns3::ndn::NetDeviceFace::Print(std::ostream & os) const [member function]
6015 cls.add_method('Print',
6016 'std::ostream &',
6017 [param('std::ostream &', 'os')],
6018 is_const=True, is_virtual=True)
6019 ## ndn-net-device-face.h (module 'ndnSIM'): ns3::Ptr<ns3::NetDevice> ns3::ndn::NetDeviceFace::GetNetDevice() const [member function]
6020 cls.add_method('GetNetDevice',
6021 'ns3::Ptr< ns3::NetDevice >',
6022 [],
6023 is_const=True)
6024 ## 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 -07006025 cls.add_method('SendImpl',
Alexander Afanasyev1c0248b2012-07-24 15:59:50 -07006026 'bool',
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07006027 [param('ns3::Ptr< ns3::Packet >', 'p')],
6028 visibility='protected', is_virtual=True)
6029 return
6030
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006031def register_Ns3NdnPit_methods(root_module, cls):
6032 cls.add_output_stream_operator()
6033 ## ndn-pit.h (module 'ndnSIM'): ns3::ndn::Pit::Pit(ns3::ndn::Pit const & arg0) [copy constructor]
6034 cls.add_constructor([param('ns3::ndn::Pit const &', 'arg0')])
6035 ## ndn-pit.h (module 'ndnSIM'): ns3::ndn::Pit::Pit() [constructor]
6036 cls.add_constructor([])
6037 ## ndn-pit.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::pit::Entry> ns3::ndn::Pit::Begin() [member function]
6038 cls.add_method('Begin',
6039 'ns3::Ptr< ns3::ndn::pit::Entry >',
6040 [],
6041 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07006042 ## 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 -07006043 cls.add_method('Create',
6044 'ns3::Ptr< ns3::ndn::pit::Entry >',
6045 [param('ns3::Ptr< ns3::ndn::InterestHeader const >', 'header')],
6046 is_pure_virtual=True, is_virtual=True)
6047 ## ndn-pit.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::pit::Entry> ns3::ndn::Pit::End() [member function]
6048 cls.add_method('End',
6049 'ns3::Ptr< ns3::ndn::pit::Entry >',
6050 [],
6051 is_pure_virtual=True, is_virtual=True)
6052 ## ndn-pit.h (module 'ndnSIM'): static ns3::Ptr<ns3::ndn::Pit> ns3::ndn::Pit::GetPit(ns3::Ptr<ns3::Object> node) [member function]
6053 cls.add_method('GetPit',
6054 'ns3::Ptr< ns3::ndn::Pit >',
6055 [param('ns3::Ptr< ns3::Object >', 'node')],
6056 is_static=True)
6057 ## ndn-pit.h (module 'ndnSIM'): uint32_t ns3::ndn::Pit::GetSize() const [member function]
6058 cls.add_method('GetSize',
6059 'uint32_t',
6060 [],
6061 is_pure_virtual=True, is_const=True, is_virtual=True)
6062 ## ndn-pit.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::Pit::GetTypeId() [member function]
6063 cls.add_method('GetTypeId',
6064 'ns3::TypeId',
6065 [],
6066 is_static=True)
6067 ## ndn-pit.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::pit::Entry> ns3::ndn::Pit::Lookup(ns3::ndn::ContentObjectHeader const & header) [member function]
6068 cls.add_method('Lookup',
6069 'ns3::Ptr< ns3::ndn::pit::Entry >',
6070 [param('ns3::ndn::ContentObjectHeader const &', 'header')],
6071 is_pure_virtual=True, is_virtual=True)
6072 ## ndn-pit.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::pit::Entry> ns3::ndn::Pit::Lookup(ns3::ndn::InterestHeader const & header) [member function]
6073 cls.add_method('Lookup',
6074 'ns3::Ptr< ns3::ndn::pit::Entry >',
6075 [param('ns3::ndn::InterestHeader const &', 'header')],
6076 is_pure_virtual=True, is_virtual=True)
6077 ## ndn-pit.h (module 'ndnSIM'): void ns3::ndn::Pit::MarkErased(ns3::Ptr<ns3::ndn::pit::Entry> entry) [member function]
6078 cls.add_method('MarkErased',
6079 'void',
6080 [param('ns3::Ptr< ns3::ndn::pit::Entry >', 'entry')],
6081 is_pure_virtual=True, is_virtual=True)
6082 ## ndn-pit.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::pit::Entry> ns3::ndn::Pit::Next(ns3::Ptr<ns3::ndn::pit::Entry> arg0) [member function]
6083 cls.add_method('Next',
6084 'ns3::Ptr< ns3::ndn::pit::Entry >',
6085 [param('ns3::Ptr< ns3::ndn::pit::Entry >', 'arg0')],
6086 is_pure_virtual=True, is_virtual=True)
6087 ## ndn-pit.h (module 'ndnSIM'): void ns3::ndn::Pit::Print(std::ostream & os) const [member function]
6088 cls.add_method('Print',
6089 'void',
6090 [param('std::ostream &', 'os')],
6091 is_pure_virtual=True, is_const=True, is_virtual=True)
6092 return
6093
6094def register_Ns3NdnStackHelper_methods(root_module, cls):
6095 ## ndn-stack-helper.h (module 'ndnSIM'): ns3::ndn::StackHelper::StackHelper() [constructor]
6096 cls.add_constructor([])
6097 ## 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]
6098 cls.add_method('SetStackAttributes',
6099 'void',
6100 [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='""')])
6101 ## 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]
6102 cls.add_method('SetForwardingStrategy',
6103 'void',
6104 [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='""')])
6105 ## 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]
6106 cls.add_method('SetContentStore',
6107 'void',
6108 [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='""')])
6109 ## 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]
6110 cls.add_method('SetPit',
6111 'void',
6112 [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='""')])
6113 ## 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]
6114 cls.add_method('SetFib',
6115 'void',
6116 [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='""')])
6117 ## 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]
6118 cls.add_method('EnableLimits',
6119 'void',
6120 [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')])
6121 ## ndn-stack-helper.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::FaceContainer> ns3::ndn::StackHelper::Install(std::string nodeName) const [member function]
6122 cls.add_method('Install',
6123 'ns3::Ptr< ns3::ndn::FaceContainer >',
6124 [param('std::string', 'nodeName')],
6125 is_const=True)
6126 ## ndn-stack-helper.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::FaceContainer> ns3::ndn::StackHelper::Install(ns3::Ptr<ns3::Node> node) const [member function]
6127 cls.add_method('Install',
6128 'ns3::Ptr< ns3::ndn::FaceContainer >',
6129 [param('ns3::Ptr< ns3::Node >', 'node')],
6130 is_const=True)
6131 ## ndn-stack-helper.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::FaceContainer> ns3::ndn::StackHelper::Install(ns3::NodeContainer c) const [member function]
6132 cls.add_method('Install',
6133 'ns3::Ptr< ns3::ndn::FaceContainer >',
6134 [param('ns3::NodeContainer', 'c')],
6135 is_const=True)
6136 ## ndn-stack-helper.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::FaceContainer> ns3::ndn::StackHelper::InstallAll() const [member function]
6137 cls.add_method('InstallAll',
6138 'ns3::Ptr< ns3::ndn::FaceContainer >',
6139 [],
6140 is_const=True)
6141 ## 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]
6142 cls.add_method('AddRoute',
6143 'void',
6144 [param('std::string', 'nodeName'), param('std::string', 'prefix'), param('uint32_t', 'faceId'), param('int32_t', 'metric')],
6145 is_static=True)
6146 ## 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]
6147 cls.add_method('AddRoute',
6148 'void',
6149 [param('ns3::Ptr< ns3::Node >', 'node'), param('std::string', 'prefix'), param('uint32_t', 'faceId'), param('int32_t', 'metric')],
6150 is_static=True)
6151 ## 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]
6152 cls.add_method('AddRoute',
6153 'void',
6154 [param('ns3::Ptr< ns3::Node >', 'node'), param('std::string', 'prefix'), param('ns3::Ptr< ns3::ndn::Face >', 'face'), param('int32_t', 'metric')],
6155 is_static=True)
6156 ## ndn-stack-helper.h (module 'ndnSIM'): void ns3::ndn::StackHelper::SetDefaultRoutes(bool needSet) [member function]
6157 cls.add_method('SetDefaultRoutes',
6158 'void',
6159 [param('bool', 'needSet')])
6160 return
6161
6162def register_Ns3NdnUnknownHeaderException_methods(root_module, cls):
6163 ## ndn-header-helper.h (module 'ndnSIM'): ns3::ndn::UnknownHeaderException::UnknownHeaderException() [constructor]
6164 cls.add_constructor([])
6165 ## ndn-header-helper.h (module 'ndnSIM'): ns3::ndn::UnknownHeaderException::UnknownHeaderException(ns3::ndn::UnknownHeaderException const & arg0) [copy constructor]
6166 cls.add_constructor([param('ns3::ndn::UnknownHeaderException const &', 'arg0')])
6167 return
6168
6169def register_Ns3NdnAppFace_methods(root_module, cls):
6170 ## ndn-app-face.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::AppFace::GetTypeId() [member function]
6171 cls.add_method('GetTypeId',
6172 'ns3::TypeId',
6173 [],
6174 is_static=True)
6175 ## ndn-app-face.h (module 'ndnSIM'): ns3::ndn::AppFace::AppFace(ns3::Ptr<ns3::ndn::App> app) [constructor]
6176 cls.add_constructor([param('ns3::Ptr< ns3::ndn::App >', 'app')])
6177 ## 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]
6178 cls.add_method('RegisterProtocolHandler',
6179 'void',
6180 [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')],
6181 is_virtual=True)
6182 ## ndn-app-face.h (module 'ndnSIM'): std::ostream & ns3::ndn::AppFace::Print(std::ostream & os) const [member function]
6183 cls.add_method('Print',
6184 'std::ostream &',
6185 [param('std::ostream &', 'os')],
6186 is_const=True, is_virtual=True)
6187 ## ndn-app-face.h (module 'ndnSIM'): bool ns3::ndn::AppFace::SendImpl(ns3::Ptr<ns3::Packet> p) [member function]
6188 cls.add_method('SendImpl',
6189 'bool',
6190 [param('ns3::Ptr< ns3::Packet >', 'p')],
6191 visibility='protected', is_virtual=True)
6192 return
6193
6194def register_Ns3NdnCsEntry_methods(root_module, cls):
6195 ## ndn-content-store.h (module 'ndnSIM'): ns3::ndn::cs::Entry::Entry(ns3::ndn::cs::Entry const & arg0) [copy constructor]
6196 cls.add_constructor([param('ns3::ndn::cs::Entry const &', 'arg0')])
6197 ## 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]
6198 cls.add_constructor([param('ns3::Ptr< ns3::ndn::ContentObjectHeader const >', 'header'), param('ns3::Ptr< ns3::Packet const >', 'packet')])
6199 ## ndn-content-store.h (module 'ndnSIM'): ns3::Ptr<ns3::Packet> ns3::ndn::cs::Entry::GetFullyFormedNdnPacket() const [member function]
6200 cls.add_method('GetFullyFormedNdnPacket',
6201 'ns3::Ptr< ns3::Packet >',
6202 [],
6203 is_const=True)
6204 ## ndn-content-store.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::ContentObjectHeader const> ns3::ndn::cs::Entry::GetHeader() const [member function]
6205 cls.add_method('GetHeader',
6206 'ns3::Ptr< ns3::ndn::ContentObjectHeader const >',
6207 [],
6208 is_const=True)
6209 ## ndn-content-store.h (module 'ndnSIM'): ns3::ndn::NameComponents const & ns3::ndn::cs::Entry::GetName() const [member function]
6210 cls.add_method('GetName',
6211 'ns3::ndn::NameComponents const &',
6212 [],
6213 is_const=True)
6214 ## ndn-content-store.h (module 'ndnSIM'): ns3::Ptr<const ns3::Packet> ns3::ndn::cs::Entry::GetPacket() const [member function]
6215 cls.add_method('GetPacket',
6216 'ns3::Ptr< ns3::Packet const >',
6217 [],
6218 is_const=True)
6219 return
6220
6221def register_Ns3NdnFibEntry_methods(root_module, cls):
6222 cls.add_output_stream_operator()
6223 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::Entry::Entry(ns3::ndn::fib::Entry const & arg0) [copy constructor]
6224 cls.add_constructor([param('ns3::ndn::fib::Entry const &', 'arg0')])
6225 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::Entry::Entry(ns3::Ptr<ns3::ndn::NameComponents const> const & prefix) [constructor]
6226 cls.add_constructor([param('ns3::Ptr< ns3::ndn::NameComponents const > const &', 'prefix')])
6227 ## ndn-fib-entry.h (module 'ndnSIM'): void ns3::ndn::fib::Entry::AddOrUpdateRoutingMetric(ns3::Ptr<ns3::ndn::Face> face, int32_t metric) [member function]
6228 cls.add_method('AddOrUpdateRoutingMetric',
6229 'void',
6230 [param('ns3::Ptr< ns3::ndn::Face >', 'face'), param('int32_t', 'metric')])
6231 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::FaceMetric const & ns3::ndn::fib::Entry::FindBestCandidate(uint32_t skip=0) const [member function]
6232 cls.add_method('FindBestCandidate',
6233 'ns3::ndn::fib::FaceMetric const &',
6234 [param('uint32_t', 'skip', default_value='0')],
6235 is_const=True)
6236 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::NameComponents const & ns3::ndn::fib::Entry::GetPrefix() const [member function]
6237 cls.add_method('GetPrefix',
6238 'ns3::ndn::NameComponents const &',
6239 [],
6240 is_const=True)
6241 ## ndn-fib-entry.h (module 'ndnSIM'): void ns3::ndn::fib::Entry::Invalidate() [member function]
6242 cls.add_method('Invalidate',
6243 'void',
6244 [])
6245 ## ndn-fib-entry.h (module 'ndnSIM'): void ns3::ndn::fib::Entry::RemoveFace(ns3::Ptr<ns3::ndn::Face> const & face) [member function]
6246 cls.add_method('RemoveFace',
6247 'void',
6248 [param('ns3::Ptr< ns3::ndn::Face > const &', 'face')])
6249 ## ndn-fib-entry.h (module 'ndnSIM'): void ns3::ndn::fib::Entry::UpdateFaceRtt(ns3::Ptr<ns3::ndn::Face> face, ns3::Time const & sample) [member function]
6250 cls.add_method('UpdateFaceRtt',
6251 'void',
6252 [param('ns3::Ptr< ns3::ndn::Face >', 'face'), param('ns3::Time const &', 'sample')])
6253 ## 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]
6254 cls.add_method('UpdateStatus',
6255 'void',
6256 [param('ns3::Ptr< ns3::ndn::Face >', 'face'), param('ns3::ndn::fib::FaceMetric::Status', 'status')])
6257 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::Entry::m_faces [variable]
6258 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)
6259 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::Entry::m_needsProbing [variable]
6260 cls.add_instance_attribute('m_needsProbing', 'bool', is_const=False)
6261 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::Entry::m_prefix [variable]
6262 cls.add_instance_attribute('m_prefix', 'ns3::Ptr< ns3::ndn::NameComponents const >', is_const=False)
6263 return
6264
6265def register_Ns3NdnFibEntryNoFaces_methods(root_module, cls):
6266 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::Entry::NoFaces::NoFaces() [constructor]
6267 cls.add_constructor([])
6268 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::Entry::NoFaces::NoFaces(ns3::ndn::fib::Entry::NoFaces const & arg0) [copy constructor]
6269 cls.add_constructor([param('ns3::ndn::fib::Entry::NoFaces const &', 'arg0')])
6270 return
6271
6272def register_Ns3NdnFibFaceMetric_methods(root_module, cls):
6273 cls.add_output_stream_operator()
6274 cls.add_binary_comparison_operator('<')
6275 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::FaceMetric::FaceMetric(ns3::ndn::fib::FaceMetric const & arg0) [copy constructor]
6276 cls.add_constructor([param('ns3::ndn::fib::FaceMetric const &', 'arg0')])
6277 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::FaceMetric::FaceMetric(ns3::Ptr<ns3::ndn::Face> face, int32_t cost) [constructor]
6278 cls.add_constructor([param('ns3::Ptr< ns3::ndn::Face >', 'face'), param('int32_t', 'cost')])
6279 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::Face> ns3::ndn::fib::FaceMetric::GetFace() const [member function]
6280 cls.add_method('GetFace',
6281 'ns3::Ptr< ns3::ndn::Face >',
6282 [],
6283 is_const=True)
6284 ## ndn-fib-entry.h (module 'ndnSIM'): void ns3::ndn::fib::FaceMetric::UpdateRtt(ns3::Time const & rttSample) [member function]
6285 cls.add_method('UpdateRtt',
6286 'void',
6287 [param('ns3::Time const &', 'rttSample')])
6288 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::FaceMetric::m_face [variable]
6289 cls.add_instance_attribute('m_face', 'ns3::Ptr< ns3::ndn::Face >', is_const=False)
6290 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::FaceMetric::m_routingCost [variable]
6291 cls.add_instance_attribute('m_routingCost', 'int32_t', is_const=False)
6292 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::FaceMetric::m_rttVar [variable]
6293 cls.add_instance_attribute('m_rttVar', 'ns3::Time', is_const=False)
6294 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::FaceMetric::m_sRtt [variable]
6295 cls.add_instance_attribute('m_sRtt', 'ns3::Time', is_const=False)
6296 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::FaceMetric::m_status [variable]
6297 cls.add_instance_attribute('m_status', 'ns3::ndn::fib::FaceMetric::Status', is_const=False)
6298 return
6299
6300def register_Ns3NdnFibFaceMetricContainer_methods(root_module, cls):
6301 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::FaceMetricContainer::FaceMetricContainer() [constructor]
6302 cls.add_constructor([])
6303 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::FaceMetricContainer::FaceMetricContainer(ns3::ndn::fib::FaceMetricContainer const & arg0) [copy constructor]
6304 cls.add_constructor([param('ns3::ndn::fib::FaceMetricContainer const &', 'arg0')])
6305 return
6306
6307def register_Ns3NdnFibI_face_methods(root_module, cls):
6308 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::i_face::i_face() [constructor]
6309 cls.add_constructor([])
6310 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::i_face::i_face(ns3::ndn::fib::i_face const & arg0) [copy constructor]
6311 cls.add_constructor([param('ns3::ndn::fib::i_face const &', 'arg0')])
6312 return
6313
6314def register_Ns3NdnFibI_metric_methods(root_module, cls):
6315 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::i_metric::i_metric() [constructor]
6316 cls.add_constructor([])
6317 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::i_metric::i_metric(ns3::ndn::fib::i_metric const & arg0) [copy constructor]
6318 cls.add_constructor([param('ns3::ndn::fib::i_metric const &', 'arg0')])
6319 return
6320
6321def register_Ns3NdnFibI_nth_methods(root_module, cls):
6322 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::i_nth::i_nth() [constructor]
6323 cls.add_constructor([])
6324 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::i_nth::i_nth(ns3::ndn::fib::i_nth const & arg0) [copy constructor]
6325 cls.add_constructor([param('ns3::ndn::fib::i_nth const &', 'arg0')])
6326 return
6327
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07006328def register_Ns3NdnFwTag_methods(root_module, cls):
6329 ## ndn-fw-tag.h (module 'ndnSIM'): ns3::ndn::fw::Tag::Tag() [constructor]
6330 cls.add_constructor([])
6331 ## ndn-fw-tag.h (module 'ndnSIM'): ns3::ndn::fw::Tag::Tag(ns3::ndn::fw::Tag const & arg0) [copy constructor]
6332 cls.add_constructor([param('ns3::ndn::fw::Tag const &', 'arg0')])
6333 return
6334
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006335def register_Ns3NdnPitEntry_methods(root_module, cls):
6336 cls.add_output_stream_operator()
6337 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::ndn::pit::Entry::Entry(ns3::ndn::pit::Entry const & arg0) [copy constructor]
6338 cls.add_constructor([param('ns3::ndn::pit::Entry const &', 'arg0')])
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07006339 ## 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 -07006340 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 -07006341 ## ndn-pit-entry.h (module 'ndnSIM'): void ns3::ndn::pit::Entry::AddFwTag(boost::shared_ptr<ns3::ndn::fw::Tag> tag) [member function]
6342 cls.add_method('AddFwTag',
6343 'void',
6344 [param('boost::shared_ptr< ns3::ndn::fw::Tag >', 'tag')])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006345 ## 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]
6346 cls.add_method('AddIncoming',
6347 'std::_Rb_tree_const_iterator< ns3::ndn::pit::IncomingFace >',
6348 [param('ns3::Ptr< ns3::ndn::Face >', 'face')],
6349 is_virtual=True)
Alexander Afanasyevc202fd92012-09-03 21:46:00 -07006350 ## 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 -07006351 cls.add_method('AddOutgoing',
Alexander Afanasyevc202fd92012-09-03 21:46:00 -07006352 'std::_Rb_tree_const_iterator< ns3::ndn::pit::OutgoingFace >',
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006353 [param('ns3::Ptr< ns3::ndn::Face >', 'face')],
6354 is_virtual=True)
6355 ## ndn-pit-entry.h (module 'ndnSIM'): void ns3::ndn::pit::Entry::AddSeenNonce(uint32_t nonce) [member function]
6356 cls.add_method('AddSeenNonce',
6357 'void',
6358 [param('uint32_t', 'nonce')],
6359 is_virtual=True)
6360 ## ndn-pit-entry.h (module 'ndnSIM'): bool ns3::ndn::pit::Entry::AreAllOutgoingInVain() const [member function]
6361 cls.add_method('AreAllOutgoingInVain',
6362 'bool',
6363 [],
6364 is_const=True)
6365 ## ndn-pit-entry.h (module 'ndnSIM'): bool ns3::ndn::pit::Entry::AreTherePromisingOutgoingFacesExcept(ns3::Ptr<ns3::ndn::Face> face) const [member function]
6366 cls.add_method('AreTherePromisingOutgoingFacesExcept',
6367 'bool',
6368 [param('ns3::Ptr< ns3::ndn::Face >', 'face')],
6369 is_const=True)
6370 ## ndn-pit-entry.h (module 'ndnSIM'): void ns3::ndn::pit::Entry::ClearIncoming() [member function]
6371 cls.add_method('ClearIncoming',
6372 'void',
6373 [],
6374 is_virtual=True)
6375 ## ndn-pit-entry.h (module 'ndnSIM'): void ns3::ndn::pit::Entry::ClearOutgoing() [member function]
6376 cls.add_method('ClearOutgoing',
6377 'void',
6378 [],
6379 is_virtual=True)
6380 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::Time const & ns3::ndn::pit::Entry::GetExpireTime() const [member function]
6381 cls.add_method('GetExpireTime',
6382 'ns3::Time const &',
6383 [],
6384 is_const=True)
6385 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::fib::Entry> ns3::ndn::pit::Entry::GetFibEntry() [member function]
6386 cls.add_method('GetFibEntry',
6387 'ns3::Ptr< ns3::ndn::fib::Entry >',
6388 [])
6389 ## 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]
6390 cls.add_method('GetIncoming',
6391 'std::set< ns3::ndn::pit::IncomingFace > const &',
6392 [],
6393 is_const=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07006394 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::InterestHeader const> ns3::ndn::pit::Entry::GetInterest() const [member function]
6395 cls.add_method('GetInterest',
6396 'ns3::Ptr< ns3::ndn::InterestHeader const >',
6397 [],
6398 is_const=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006399 ## ndn-pit-entry.h (module 'ndnSIM'): uint32_t ns3::ndn::pit::Entry::GetMaxRetxCount() const [member function]
6400 cls.add_method('GetMaxRetxCount',
6401 'uint32_t',
6402 [],
6403 is_const=True)
Alexander Afanasyevc202fd92012-09-03 21:46:00 -07006404 ## 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 -07006405 cls.add_method('GetOutgoing',
Alexander Afanasyevc202fd92012-09-03 21:46:00 -07006406 'std::set< ns3::ndn::pit::OutgoingFace > const &',
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006407 [],
6408 is_const=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07006409 ## ndn-pit-entry.h (module 'ndnSIM'): uint32_t ns3::ndn::pit::Entry::GetOutgoingCount() const [member function]
6410 cls.add_method('GetOutgoingCount',
6411 'uint32_t',
6412 [],
6413 is_const=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006414 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::ndn::NameComponents const & ns3::ndn::pit::Entry::GetPrefix() const [member function]
6415 cls.add_method('GetPrefix',
6416 'ns3::ndn::NameComponents const &',
6417 [],
6418 is_const=True)
6419 ## ndn-pit-entry.h (module 'ndnSIM'): void ns3::ndn::pit::Entry::IncreaseAllowedRetxCount() [member function]
6420 cls.add_method('IncreaseAllowedRetxCount',
6421 'void',
6422 [],
6423 is_virtual=True)
6424 ## ndn-pit-entry.h (module 'ndnSIM'): bool ns3::ndn::pit::Entry::IsNonceSeen(uint32_t nonce) const [member function]
6425 cls.add_method('IsNonceSeen',
6426 'bool',
6427 [param('uint32_t', 'nonce')],
6428 is_const=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07006429 ## ndn-pit-entry.h (module 'ndnSIM'): void ns3::ndn::pit::Entry::OffsetLifetime(ns3::Time const & offsetTime) [member function]
6430 cls.add_method('OffsetLifetime',
6431 'void',
6432 [param('ns3::Time const &', 'offsetTime')],
6433 is_virtual=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006434 ## ndn-pit-entry.h (module 'ndnSIM'): void ns3::ndn::pit::Entry::RemoveAllReferencesToFace(ns3::Ptr<ns3::ndn::Face> face) [member function]
6435 cls.add_method('RemoveAllReferencesToFace',
6436 'void',
6437 [param('ns3::Ptr< ns3::ndn::Face >', 'face')],
6438 is_virtual=True)
6439 ## ndn-pit-entry.h (module 'ndnSIM'): void ns3::ndn::pit::Entry::RemoveIncoming(ns3::Ptr<ns3::ndn::Face> face) [member function]
6440 cls.add_method('RemoveIncoming',
6441 'void',
6442 [param('ns3::Ptr< ns3::ndn::Face >', 'face')],
6443 is_virtual=True)
6444 ## ndn-pit-entry.h (module 'ndnSIM'): void ns3::ndn::pit::Entry::SetWaitingInVain(ns3::Ptr<ns3::ndn::Face> face) [member function]
6445 cls.add_method('SetWaitingInVain',
6446 'void',
6447 [param('ns3::Ptr< ns3::ndn::Face >', 'face')],
6448 is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07006449 ## 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 -07006450 cls.add_method('UpdateLifetime',
6451 'void',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07006452 [param('ns3::Time const &', 'lifetime')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006453 is_virtual=True)
6454 return
6455
6456def register_Ns3NdnPitIncomingFace_methods(root_module, cls):
6457 cls.add_binary_comparison_operator('==')
6458 cls.add_binary_comparison_operator('<')
6459 ## ndn-pit-entry-incoming-face.h (module 'ndnSIM'): ns3::ndn::pit::IncomingFace::IncomingFace(ns3::ndn::pit::IncomingFace const & arg0) [copy constructor]
6460 cls.add_constructor([param('ns3::ndn::pit::IncomingFace const &', 'arg0')])
6461 ## ndn-pit-entry-incoming-face.h (module 'ndnSIM'): ns3::ndn::pit::IncomingFace::IncomingFace(ns3::Ptr<ns3::ndn::Face> face) [constructor]
6462 cls.add_constructor([param('ns3::Ptr< ns3::ndn::Face >', 'face')])
6463 ## ndn-pit-entry-incoming-face.h (module 'ndnSIM'): ns3::ndn::pit::IncomingFace::IncomingFace() [constructor]
6464 cls.add_constructor([])
6465 ## ndn-pit-entry-incoming-face.h (module 'ndnSIM'): ns3::ndn::pit::IncomingFace::m_arrivalTime [variable]
6466 cls.add_instance_attribute('m_arrivalTime', 'ns3::Time', is_const=False)
6467 ## ndn-pit-entry-incoming-face.h (module 'ndnSIM'): ns3::ndn::pit::IncomingFace::m_face [variable]
6468 cls.add_instance_attribute('m_face', 'ns3::Ptr< ns3::ndn::Face >', is_const=False)
6469 return
6470
6471def register_Ns3NdnPitOutgoingFace_methods(root_module, cls):
6472 cls.add_binary_comparison_operator('==')
6473 cls.add_binary_comparison_operator('<')
6474 ## ndn-pit-entry-outgoing-face.h (module 'ndnSIM'): ns3::ndn::pit::OutgoingFace::OutgoingFace(ns3::ndn::pit::OutgoingFace const & arg0) [copy constructor]
6475 cls.add_constructor([param('ns3::ndn::pit::OutgoingFace const &', 'arg0')])
6476 ## ndn-pit-entry-outgoing-face.h (module 'ndnSIM'): ns3::ndn::pit::OutgoingFace::OutgoingFace(ns3::Ptr<ns3::ndn::Face> face) [constructor]
6477 cls.add_constructor([param('ns3::Ptr< ns3::ndn::Face >', 'face')])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07006478 ## ndn-pit-entry-outgoing-face.h (module 'ndnSIM'): ns3::ndn::pit::OutgoingFace::OutgoingFace() [constructor]
6479 cls.add_constructor([])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006480 ## ndn-pit-entry-outgoing-face.h (module 'ndnSIM'): void ns3::ndn::pit::OutgoingFace::UpdateOnRetransmit() [member function]
6481 cls.add_method('UpdateOnRetransmit',
6482 'void',
6483 [])
6484 ## ndn-pit-entry-outgoing-face.h (module 'ndnSIM'): ns3::ndn::pit::OutgoingFace::m_face [variable]
6485 cls.add_instance_attribute('m_face', 'ns3::Ptr< ns3::ndn::Face >', is_const=False)
6486 ## ndn-pit-entry-outgoing-face.h (module 'ndnSIM'): ns3::ndn::pit::OutgoingFace::m_retxCount [variable]
6487 cls.add_instance_attribute('m_retxCount', 'uint32_t', is_const=False)
6488 ## ndn-pit-entry-outgoing-face.h (module 'ndnSIM'): ns3::ndn::pit::OutgoingFace::m_sendTime [variable]
6489 cls.add_instance_attribute('m_sendTime', 'ns3::Time', is_const=False)
6490 ## ndn-pit-entry-outgoing-face.h (module 'ndnSIM'): ns3::ndn::pit::OutgoingFace::m_waitingInVain [variable]
6491 cls.add_instance_attribute('m_waitingInVain', 'bool', is_const=False)
6492 return
6493
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006494def register_Ns3NdnPitI_face_methods(root_module, cls):
6495 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::ndn::pit::i_face::i_face() [constructor]
6496 cls.add_constructor([])
6497 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::ndn::pit::i_face::i_face(ns3::ndn::pit::i_face const & arg0) [copy constructor]
6498 cls.add_constructor([param('ns3::ndn::pit::i_face const &', 'arg0')])
6499 return
6500
6501def register_Ns3NdnPitI_retx_methods(root_module, cls):
6502 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::ndn::pit::i_retx::i_retx() [constructor]
6503 cls.add_constructor([])
6504 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::ndn::pit::i_retx::i_retx(ns3::ndn::pit::i_retx const & arg0) [copy constructor]
6505 cls.add_constructor([param('ns3::ndn::pit::i_retx const &', 'arg0')])
6506 return
6507
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08006508def register_functions(root_module):
6509 module = root_module
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08006510 register_functions_ns3_FatalImpl(module.get_submodule('FatalImpl'), root_module)
6511 register_functions_ns3_internal(module.get_submodule('internal'), root_module)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006512 register_functions_ns3_ndn(module.get_submodule('ndn'), root_module)
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08006513 return
6514
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08006515def register_functions_ns3_FatalImpl(module, root_module):
6516 return
6517
6518def register_functions_ns3_internal(module, root_module):
6519 return
6520
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006521def register_functions_ns3_ndn(module, root_module):
6522 ## ndn-name-components.h (module 'ndnSIM'): extern ns3::Ptr<ns3::AttributeChecker const> ns3::ndn::MakeNameComponentsChecker() [free function]
6523 module.add_function('MakeNameComponentsChecker',
6524 'ns3::Ptr< ns3::AttributeChecker const >',
6525 [])
6526 register_functions_ns3_ndn_cs(module.get_submodule('cs'), root_module)
6527 register_functions_ns3_ndn_fib(module.get_submodule('fib'), root_module)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07006528 register_functions_ns3_ndn_fw(module.get_submodule('fw'), root_module)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006529 register_functions_ns3_ndn_pit(module.get_submodule('pit'), root_module)
6530 return
6531
6532def register_functions_ns3_ndn_cs(module, root_module):
6533 return
6534
6535def register_functions_ns3_ndn_fib(module, root_module):
6536 return
6537
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07006538def register_functions_ns3_ndn_fw(module, root_module):
6539 return
6540
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006541def register_functions_ns3_ndn_pit(module, root_module):
6542 return
6543
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08006544def main():
6545 out = FileCodeSink(sys.stdout)
6546 root_module = module_init()
6547 register_types(root_module)
6548 register_methods(root_module)
6549 register_functions(root_module)
6550 root_module.generate(out)
6551
6552if __name__ == '__main__':
6553 main()
6554