blob: d9133f432c135f9ba2fbf0eaef1c4ab8d5ed0d6e [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')
Alexander Afanasyev0e4ae8e2013-03-12 15:59:18 -070093 ## sequence-number.h (module 'network'): ns3::SequenceNumber<unsigned int, int> [class]
94 module.add_class('SequenceNumber32', import_from_module='ns.network')
Alexander Afanasyev29c19b92012-09-03 23:46:41 -070095 ## random-variable.h (module 'core'): ns3::SequentialVariable [class]
96 module.add_class('SequentialVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -080097 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter> [class]
98 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 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 Afanasyev0e4ae8e2013-03-12 15:59:18 -0700103 ## traced-value.h (module 'core'): ns3::TracedValue<ns3::ndn::fib::FaceMetric::Status> [class]
104 module.add_class('TracedValue', template_parameters=['ns3::ndn::fib::FaceMetric::Status'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700105 ## random-variable.h (module 'core'): ns3::TriangularVariable [class]
106 module.add_class('TriangularVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800107 ## type-id.h (module 'core'): ns3::TypeId [class]
108 module.add_class('TypeId', import_from_module='ns.core')
109 ## type-id.h (module 'core'): ns3::TypeId::AttributeFlag [enumeration]
110 module.add_enum('AttributeFlag', ['ATTR_GET', 'ATTR_SET', 'ATTR_CONSTRUCT', 'ATTR_SGC'], outer_class=root_module['ns3::TypeId'], import_from_module='ns.core')
111 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation [struct]
112 module.add_class('AttributeInformation', import_from_module='ns.core', outer_class=root_module['ns3::TypeId'])
113 ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation [struct]
114 module.add_class('TraceSourceInformation', import_from_module='ns.core', outer_class=root_module['ns3::TypeId'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700115 ## random-variable.h (module 'core'): ns3::UniformVariable [class]
116 module.add_class('UniformVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700117 ## random-variable.h (module 'core'): ns3::WeibullVariable [class]
118 module.add_class('WeibullVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
119 ## random-variable.h (module 'core'): ns3::ZetaVariable [class]
120 module.add_class('ZetaVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
121 ## random-variable.h (module 'core'): ns3::ZipfVariable [class]
122 module.add_class('ZipfVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800123 ## empty.h (module 'core'): ns3::empty [class]
124 module.add_class('empty', import_from_module='ns.core')
125 ## int64x64-double.h (module 'core'): ns3::int64x64_t [class]
126 module.add_class('int64x64_t', import_from_module='ns.core')
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800127 ## chunk.h (module 'network'): ns3::Chunk [class]
Alexander Afanasyev4756b892012-04-18 14:48:43 -0700128 module.add_class('Chunk', import_from_module='ns.network', parent=root_module['ns3::ObjectBase'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700129 ## random-variable.h (module 'core'): ns3::ConstantVariable [class]
130 module.add_class('ConstantVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
131 ## random-variable.h (module 'core'): ns3::DeterministicVariable [class]
132 module.add_class('DeterministicVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
133 ## random-variable.h (module 'core'): ns3::EmpiricalVariable [class]
134 module.add_class('EmpiricalVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
135 ## random-variable.h (module 'core'): ns3::ErlangVariable [class]
136 module.add_class('ErlangVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
137 ## random-variable.h (module 'core'): ns3::ExponentialVariable [class]
138 module.add_class('ExponentialVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
139 ## random-variable.h (module 'core'): ns3::GammaVariable [class]
140 module.add_class('GammaVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800141 ## header.h (module 'network'): ns3::Header [class]
142 module.add_class('Header', import_from_module='ns.network', parent=root_module['ns3::Chunk'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700143 ## random-variable.h (module 'core'): ns3::IntEmpiricalVariable [class]
144 module.add_class('IntEmpiricalVariable', import_from_module='ns.core', parent=root_module['ns3::EmpiricalVariable'])
145 ## random-variable.h (module 'core'): ns3::LogNormalVariable [class]
146 module.add_class('LogNormalVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
147 ## random-variable.h (module 'core'): ns3::NormalVariable [class]
148 module.add_class('NormalVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800149 ## object.h (module 'core'): ns3::Object [class]
150 module.add_class('Object', import_from_module='ns.core', parent=root_module['ns3::SimpleRefCount< ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter >'])
151 ## object.h (module 'core'): ns3::Object::AggregateIterator [class]
152 module.add_class('AggregateIterator', import_from_module='ns.core', outer_class=root_module['ns3::Object'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700153 ## random-variable.h (module 'core'): ns3::ParetoVariable [class]
154 module.add_class('ParetoVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800155 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> > [class]
156 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'))
157 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter<ns3::AttributeChecker> > [class]
158 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'))
159 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter<ns3::AttributeValue> > [class]
160 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'))
161 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> > [class]
162 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 -0800163 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::EventImpl, ns3::empty, ns3::DefaultDeleter<ns3::EventImpl> > [class]
164 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'))
165 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::NixVector, ns3::empty, ns3::DefaultDeleter<ns3::NixVector> > [class]
166 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 -0800167 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Packet, ns3::empty, ns3::DefaultDeleter<ns3::Packet> > [class]
168 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 -0700169 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::TopologyReader, ns3::empty, ns3::DefaultDeleter<ns3::TopologyReader> > [class]
170 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 -0800171 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter<ns3::TraceSourceAccessor> > [class]
172 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 Afanasyev858d5312013-07-10 18:50:18 -0700173 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::ndn::ContentObject, ns3::empty, ns3::DefaultDeleter<ns3::ndn::ContentObject> > [class]
174 module.add_class('SimpleRefCount', automatic_type_narrowing=True, template_parameters=['ns3::ndn::ContentObject', 'ns3::empty', 'ns3::DefaultDeleter<ns3::ndn::ContentObject>'], 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::FaceContainer, ns3::empty, ns3::DefaultDeleter<ns3::ndn::FaceContainer> > [class]
176 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'))
Alexander Afanasyev858d5312013-07-10 18:50:18 -0700177 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::ndn::Interest, ns3::empty, ns3::DefaultDeleter<ns3::ndn::Interest> > [class]
178 module.add_class('SimpleRefCount', automatic_type_narrowing=True, import_from_module='ns.core', template_parameters=['ns3::ndn::Interest', 'ns3::empty', 'ns3::DefaultDeleter<ns3::ndn::Interest>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
Alexander Afanasyev32c07562013-02-01 12:58:43 -0800179 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::ndn::Name, ns3::empty, ns3::DefaultDeleter<ns3::ndn::Name> > [class]
180 module.add_class('SimpleRefCount', automatic_type_narrowing=True, template_parameters=['ns3::ndn::Name', 'ns3::empty', 'ns3::DefaultDeleter<ns3::ndn::Name>'], 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 -0700181 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::ndn::cs::Entry, ns3::empty, ns3::DefaultDeleter<ns3::ndn::cs::Entry> > [class]
182 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 -0700183 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::ndn::pit::Entry, ns3::empty, ns3::DefaultDeleter<ns3::ndn::pit::Entry> > [class]
184 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 -0800185 ## nstime.h (module 'core'): ns3::Time [class]
186 module.add_class('Time', import_from_module='ns.core')
187 ## nstime.h (module 'core'): ns3::Time::Unit [enumeration]
188 module.add_enum('Unit', ['S', 'MS', 'US', 'NS', 'PS', 'FS', 'LAST'], outer_class=root_module['ns3::Time'], import_from_module='ns.core')
189 ## nstime.h (module 'core'): ns3::Time [class]
190 root_module['ns3::Time'].implicitly_converts_to(root_module['ns3::int64x64_t'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700191 ## topology-reader.h (module 'topology-read'): ns3::TopologyReader [class]
192 module.add_class('TopologyReader', import_from_module='ns.topology_read', parent=root_module['ns3::SimpleRefCount< ns3::TopologyReader, ns3::empty, ns3::DefaultDeleter<ns3::TopologyReader> >'])
193 ## topology-reader.h (module 'topology-read'): ns3::TopologyReader::Link [class]
194 module.add_class('Link', import_from_module='ns.topology_read', outer_class=root_module['ns3::TopologyReader'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800195 ## trace-source-accessor.h (module 'core'): ns3::TraceSourceAccessor [class]
196 module.add_class('TraceSourceAccessor', import_from_module='ns.core', parent=root_module['ns3::SimpleRefCount< ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter<ns3::TraceSourceAccessor> >'])
197 ## trailer.h (module 'network'): ns3::Trailer [class]
198 module.add_class('Trailer', import_from_module='ns.network', parent=root_module['ns3::Chunk'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700199 ## annotated-topology-reader.h (module 'ndnSIM'): ns3::AnnotatedTopologyReader [class]
200 module.add_class('AnnotatedTopologyReader', parent=root_module['ns3::TopologyReader'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800201 ## application.h (module 'network'): ns3::Application [class]
202 module.add_class('Application', import_from_module='ns.network', parent=root_module['ns3::Object'])
203 ## attribute.h (module 'core'): ns3::AttributeAccessor [class]
204 module.add_class('AttributeAccessor', import_from_module='ns.core', parent=root_module['ns3::SimpleRefCount< ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> >'])
205 ## attribute.h (module 'core'): ns3::AttributeChecker [class]
206 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> >'])
207 ## attribute.h (module 'core'): ns3::AttributeValue [class]
208 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 -0700209 ## boolean.h (module 'core'): ns3::BooleanChecker [class]
210 module.add_class('BooleanChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker'])
211 ## boolean.h (module 'core'): ns3::BooleanValue [class]
212 module.add_class('BooleanValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
Alexander Afanasyeve4795ae2013-07-11 20:01:31 -0700213 ## callback-based-app.h (module 'ndnSIM'): ns3::CallbackBasedApp [class]
214 module.add_class('CallbackBasedApp', parent=root_module['ns3::Application'])
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 Afanasyevaa032ea2011-12-13 12:38:32 -0800249 ## net-device.h (module 'network'): ns3::NetDevice [class]
250 module.add_class('NetDevice', import_from_module='ns.network', parent=root_module['ns3::Object'])
251 ## net-device.h (module 'network'): ns3::NetDevice::PacketType [enumeration]
252 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')
253 ## nix-vector.h (module 'network'): ns3::NixVector [class]
254 module.add_class('NixVector', import_from_module='ns.network', parent=root_module['ns3::SimpleRefCount< ns3::NixVector, ns3::empty, ns3::DefaultDeleter<ns3::NixVector> >'])
255 ## node.h (module 'network'): ns3::Node [class]
256 module.add_class('Node', import_from_module='ns.network', parent=root_module['ns3::Object'])
257 ## object-factory.h (module 'core'): ns3::ObjectFactoryChecker [class]
258 module.add_class('ObjectFactoryChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker'])
259 ## object-factory.h (module 'core'): ns3::ObjectFactoryValue [class]
260 module.add_class('ObjectFactoryValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800261 ## packet.h (module 'network'): ns3::Packet [class]
262 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 -0700263 ## random-variable.h (module 'core'): ns3::RandomVariableChecker [class]
264 module.add_class('RandomVariableChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker'])
265 ## random-variable.h (module 'core'): ns3::RandomVariableValue [class]
266 module.add_class('RandomVariableValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
267 ## rocketfuel-weights-reader.h (module 'ndnSIM'): ns3::RocketfuelWeightsReader [class]
268 module.add_class('RocketfuelWeightsReader', parent=root_module['ns3::AnnotatedTopologyReader'])
269 ## rocketfuel-weights-reader.h (module 'ndnSIM'): ns3::RocketfuelWeightsReader [enumeration]
270 module.add_enum('', ['LINKS', 'WEIGHTS', 'LATENCIES', 'POSITIONS'], outer_class=root_module['ns3::RocketfuelWeightsReader'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800271 ## nstime.h (module 'core'): ns3::TimeChecker [class]
272 module.add_class('TimeChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker'])
273 ## nstime.h (module 'core'): ns3::TimeValue [class]
274 module.add_class('TimeValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
275 ## type-id.h (module 'core'): ns3::TypeIdChecker [class]
276 module.add_class('TypeIdChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker'])
277 ## type-id.h (module 'core'): ns3::TypeIdValue [class]
278 module.add_class('TypeIdValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -0700279 ## uinteger.h (module 'core'): ns3::UintegerValue [class]
280 module.add_class('UintegerValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800281 ## address.h (module 'network'): ns3::AddressChecker [class]
282 module.add_class('AddressChecker', import_from_module='ns.network', parent=root_module['ns3::AttributeChecker'])
283 ## address.h (module 'network'): ns3::AddressValue [class]
284 module.add_class('AddressValue', import_from_module='ns.network', parent=root_module['ns3::AttributeValue'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700285 module.add_container('std::map< std::string, std::string >', ('std::string', 'std::string'), container_type='map')
286 module.add_container('std::list< ns3::TopologyReader::Link >', 'ns3::TopologyReader::Link', container_type='list')
Alexander Afanasyev0e4ae8e2013-03-12 15:59:18 -0700287 typehandlers.add_type_alias('ns3::SequenceNumber< short unsigned int, short int >', 'ns3::SequenceNumber16')
288 typehandlers.add_type_alias('ns3::SequenceNumber< short unsigned int, short int >*', 'ns3::SequenceNumber16*')
289 typehandlers.add_type_alias('ns3::SequenceNumber< short unsigned int, short int >&', 'ns3::SequenceNumber16&')
290 typehandlers.add_type_alias('ns3::SequenceNumber< unsigned int, int >', 'ns3::SequenceNumber32')
291 typehandlers.add_type_alias('ns3::SequenceNumber< unsigned int, int >*', 'ns3::SequenceNumber32*')
292 typehandlers.add_type_alias('ns3::SequenceNumber< unsigned int, int >&', 'ns3::SequenceNumber32&')
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700293 typehandlers.add_type_alias('ns3::RngSeedManager', 'ns3::SeedManager')
294 typehandlers.add_type_alias('ns3::RngSeedManager*', 'ns3::SeedManager*')
295 typehandlers.add_type_alias('ns3::RngSeedManager&', 'ns3::SeedManager&')
296 module.add_typedef(root_module['ns3::RngSeedManager'], 'SeedManager')
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800297
298 ## Register a nested module for the namespace FatalImpl
299
300 nested_module = module.add_cpp_namespace('FatalImpl')
301 register_types_ns3_FatalImpl(nested_module)
302
303
304 ## Register a nested module for the namespace internal
305
306 nested_module = module.add_cpp_namespace('internal')
307 register_types_ns3_internal(nested_module)
308
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700309
310 ## Register a nested module for the namespace ndn
311
312 nested_module = module.add_cpp_namespace('ndn')
313 register_types_ns3_ndn(nested_module)
314
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800315
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800316def register_types_ns3_FatalImpl(module):
317 root_module = module.get_root()
318
319
320def register_types_ns3_internal(module):
321 root_module = module.get_root()
322
323
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700324def register_types_ns3_ndn(module):
325 root_module = module.get_root()
326
327 ## ndn-app.h (module 'ndnSIM'): ns3::ndn::App [class]
328 module.add_class('App', parent=root_module['ns3::Application'])
329 ## ndn-app-helper.h (module 'ndnSIM'): ns3::ndn::AppHelper [class]
330 module.add_class('AppHelper')
Alexander Afanasyeveae83ee2013-03-15 15:01:10 -0700331 ## ndn-content-object.h (module 'ndnSIM'): ns3::ndn::ContentObject [class]
Alexander Afanasyev858d5312013-07-10 18:50:18 -0700332 module.add_class('ContentObject', parent=root_module['ns3::SimpleRefCount< ns3::ndn::ContentObject, ns3::empty, ns3::DefaultDeleter<ns3::ndn::ContentObject> >'])
Alexander Afanasyeveae83ee2013-03-15 15:01:10 -0700333 ## ndn-content-object.h (module 'ndnSIM'): ns3::ndn::ContentObjectException [class]
334 module.add_class('ContentObjectException')
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700335 ## ndn-content-store.h (module 'ndnSIM'): ns3::ndn::ContentStore [class]
336 module.add_class('ContentStore', parent=root_module['ns3::Object'])
337 ## ndn-face.h (module 'ndnSIM'): ns3::ndn::Face [class]
338 module.add_class('Face', parent=root_module['ns3::Object'])
Alexander Afanasyeva6cc9102013-07-15 18:44:24 -0700339 ## ndn-face.h (module 'ndnSIM'): ns3::ndn::Face [enumeration]
340 module.add_enum('', ['WIRE_FORMAT_NDNSIM', 'WIRE_FORMAT_CCNB'], outer_class=root_module['ns3::ndn::Face'])
Alexander Afanasyev858d5312013-07-10 18:50:18 -0700341 ## ndn-face.h (module 'ndnSIM'): ns3::ndn::Face::Flags [enumeration]
342 module.add_enum('Flags', ['APPLICATION'], outer_class=root_module['ns3::ndn::Face'])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700343 ## ndn-face-container.h (module 'ndnSIM'): ns3::ndn::FaceContainer [class]
344 module.add_class('FaceContainer', parent=root_module['ns3::SimpleRefCount< ns3::ndn::FaceContainer, ns3::empty, ns3::DefaultDeleter<ns3::ndn::FaceContainer> >'])
345 ## ndn-fib.h (module 'ndnSIM'): ns3::ndn::Fib [class]
346 module.add_class('Fib', parent=root_module['ns3::Object'])
347 ## ndn-forwarding-strategy.h (module 'ndnSIM'): ns3::ndn::ForwardingStrategy [class]
348 module.add_class('ForwardingStrategy', parent=root_module['ns3::Object'])
349 ## ndn-global-routing-helper.h (module 'ndnSIM'): ns3::ndn::GlobalRoutingHelper [class]
350 module.add_class('GlobalRoutingHelper')
351 ## ndn-header-helper.h (module 'ndnSIM'): ns3::ndn::HeaderHelper [class]
352 module.add_class('HeaderHelper')
353 ## ndn-header-helper.h (module 'ndnSIM'): ns3::ndn::HeaderHelper::Type [enumeration]
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -0800354 module.add_enum('Type', ['INTEREST_CCNB', 'CONTENT_OBJECT_CCNB', 'INTEREST_NDNSIM', 'CONTENT_OBJECT_NDNSIM'], outer_class=root_module['ns3::ndn::HeaderHelper'])
Alexander Afanasyeveae83ee2013-03-15 15:01:10 -0700355 ## ndn-interest.h (module 'ndnSIM'): ns3::ndn::Interest [class]
Alexander Afanasyev858d5312013-07-10 18:50:18 -0700356 module.add_class('Interest', parent=root_module['ns3::SimpleRefCount< ns3::ndn::Interest, ns3::empty, ns3::DefaultDeleter<ns3::ndn::Interest> >'])
Alexander Afanasyeveae83ee2013-03-15 15:01:10 -0700357 ## ndn-interest.h (module 'ndnSIM'): ns3::ndn::Interest [enumeration]
358 module.add_enum('', ['NORMAL_INTEREST', 'NACK_LOOP', 'NACK_CONGESTION', 'NACK_GIVEUP_PIT'], outer_class=root_module['ns3::ndn::Interest'])
359 ## ndn-interest.h (module 'ndnSIM'): ns3::ndn::InterestException [class]
360 module.add_class('InterestException')
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700361 ## ndn-l3-protocol.h (module 'ndnSIM'): ns3::ndn::L3Protocol [class]
362 module.add_class('L3Protocol', parent=root_module['ns3::Object'])
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -0700363 ## ndn-limits.h (module 'ndnSIM'): ns3::ndn::Limits [class]
364 module.add_class('Limits', parent=root_module['ns3::Object'])
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -0800365 ## ndn-name.h (module 'ndnSIM'): ns3::ndn::Name [class]
Alexander Afanasyev32c07562013-02-01 12:58:43 -0800366 module.add_class('Name', parent=root_module['ns3::SimpleRefCount< ns3::ndn::Name, ns3::empty, ns3::DefaultDeleter<ns3::ndn::Name> >'])
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -0800367 ## ndn-name.h (module 'ndnSIM'): ns3::ndn::NameChecker [class]
Alexander Afanasyev32c07562013-02-01 12:58:43 -0800368 module.add_class('NameChecker', parent=root_module['ns3::AttributeChecker'])
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -0800369 ## ndn-name.h (module 'ndnSIM'): ns3::ndn::NameValue [class]
Alexander Afanasyev32c07562013-02-01 12:58:43 -0800370 module.add_class('NameValue', parent=root_module['ns3::AttributeValue'])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700371 ## ndn-net-device-face.h (module 'ndnSIM'): ns3::ndn::NetDeviceFace [class]
372 module.add_class('NetDeviceFace', parent=root_module['ns3::ndn::Face'])
373 ## ndn-pit.h (module 'ndnSIM'): ns3::ndn::Pit [class]
374 module.add_class('Pit', parent=root_module['ns3::Object'])
Alexander Afanasyev0e4ae8e2013-03-12 15:59:18 -0700375 ## ndn-rtt-estimator.h (module 'ndnSIM'): ns3::ndn::RttEstimator [class]
376 module.add_class('RttEstimator', parent=root_module['ns3::Object'])
377 ## ndn-rtt-estimator.h (module 'ndnSIM'): ns3::ndn::RttHistory [class]
378 module.add_class('RttHistory')
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700379 ## ndn-stack-helper.h (module 'ndnSIM'): ns3::ndn::StackHelper [class]
380 module.add_class('StackHelper')
381 ## ndn-header-helper.h (module 'ndnSIM'): ns3::ndn::UnknownHeaderException [class]
382 module.add_class('UnknownHeaderException')
Alexander Afanasyeva4e74282013-07-11 15:23:20 -0700383 ## ndn-api-face.h (module 'ndnSIM'): ns3::ndn::ApiFace [class]
384 module.add_class('ApiFace', parent=root_module['ns3::ndn::Face'])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700385 ## ndn-app-face.h (module 'ndnSIM'): ns3::ndn::AppFace [class]
386 module.add_class('AppFace', parent=root_module['ns3::ndn::Face'])
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -0700387 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 -0700388 module.add_container('std::list< std::string >', 'std::string', container_type='list')
Alexander Afanasyeve4795ae2013-07-11 20:01:31 -0700389 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')
Alexander Afanasyev298c8442013-04-14 15:18:45 -0700390 typehandlers.add_type_alias('ns3::ndn::ContentObject', 'ns3::ndn::ContentObjectHeader')
391 typehandlers.add_type_alias('ns3::ndn::ContentObject*', 'ns3::ndn::ContentObjectHeader*')
392 typehandlers.add_type_alias('ns3::ndn::ContentObject&', 'ns3::ndn::ContentObjectHeader&')
393 module.add_typedef(root_module['ns3::ndn::ContentObject'], 'ContentObjectHeader')
394 typehandlers.add_type_alias('ns3::ndn::Interest', 'ns3::ndn::InterestHeader')
395 typehandlers.add_type_alias('ns3::ndn::Interest*', 'ns3::ndn::InterestHeader*')
396 typehandlers.add_type_alias('ns3::ndn::Interest&', 'ns3::ndn::InterestHeader&')
397 module.add_typedef(root_module['ns3::ndn::Interest'], 'InterestHeader')
Alexander Afanasyev0e4ae8e2013-03-12 15:59:18 -0700398 typehandlers.add_type_alias('std::deque< ns3::ndn::RttHistory, std::allocator< ns3::ndn::RttHistory > >', 'ns3::ndn::RttHistory_t')
399 typehandlers.add_type_alias('std::deque< ns3::ndn::RttHistory, std::allocator< ns3::ndn::RttHistory > >*', 'ns3::ndn::RttHistory_t*')
400 typehandlers.add_type_alias('std::deque< ns3::ndn::RttHistory, std::allocator< ns3::ndn::RttHistory > >&', 'ns3::ndn::RttHistory_t&')
Alexander Afanasyeve5a8b5a2013-03-15 15:15:26 -0700401 typehandlers.add_type_alias('ns3::ndn::Name', 'ns3::ndn::NameComponents')
402 typehandlers.add_type_alias('ns3::ndn::Name*', 'ns3::ndn::NameComponents*')
403 typehandlers.add_type_alias('ns3::ndn::Name&', 'ns3::ndn::NameComponents&')
404 module.add_typedef(root_module['ns3::ndn::Name'], 'NameComponents')
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700405
406 ## Register a nested module for the namespace cs
407
408 nested_module = module.add_cpp_namespace('cs')
409 register_types_ns3_ndn_cs(nested_module)
410
411
412 ## Register a nested module for the namespace fib
413
414 nested_module = module.add_cpp_namespace('fib')
415 register_types_ns3_ndn_fib(nested_module)
416
417
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -0700418 ## Register a nested module for the namespace fw
419
420 nested_module = module.add_cpp_namespace('fw')
421 register_types_ns3_ndn_fw(nested_module)
422
423
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700424 ## Register a nested module for the namespace pit
425
426 nested_module = module.add_cpp_namespace('pit')
427 register_types_ns3_ndn_pit(nested_module)
428
Alexander Afanasyeva6cc9102013-07-15 18:44:24 -0700429
430 ## Register a nested module for the namespace wire
431
432 nested_module = module.add_cpp_namespace('wire')
433 register_types_ns3_ndn_wire(nested_module)
434
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700435
436def register_types_ns3_ndn_cs(module):
437 root_module = module.get_root()
438
439 ## ndn-content-store.h (module 'ndnSIM'): ns3::ndn::cs::Entry [class]
440 module.add_class('Entry', parent=root_module['ns3::SimpleRefCount< ns3::ndn::cs::Entry, ns3::empty, ns3::DefaultDeleter<ns3::ndn::cs::Entry> >'])
441
442def register_types_ns3_ndn_fib(module):
443 root_module = module.get_root()
444
445 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::Entry [class]
Alexander Afanasyevf5c07742012-10-31 13:13:05 -0700446 module.add_class('Entry', parent=root_module['ns3::Object'])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700447 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::Entry::NoFaces [class]
448 module.add_class('NoFaces', outer_class=root_module['ns3::ndn::fib::Entry'])
449 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::FaceMetric [class]
450 module.add_class('FaceMetric')
451 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::FaceMetric::Status [enumeration]
452 module.add_enum('Status', ['NDN_FIB_GREEN', 'NDN_FIB_YELLOW', 'NDN_FIB_RED'], outer_class=root_module['ns3::ndn::fib::FaceMetric'])
453 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::FaceMetricContainer [struct]
454 module.add_class('FaceMetricContainer')
455 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::i_face [class]
456 module.add_class('i_face')
457 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::i_metric [class]
458 module.add_class('i_metric')
459 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::i_nth [class]
460 module.add_class('i_nth')
461
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -0700462def register_types_ns3_ndn_fw(module):
463 root_module = module.get_root()
464
465 ## ndn-fw-tag.h (module 'ndnSIM'): ns3::ndn::fw::Tag [class]
466 module.add_class('Tag')
467
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700468def register_types_ns3_ndn_pit(module):
469 root_module = module.get_root()
470
471 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::ndn::pit::Entry [class]
472 module.add_class('Entry', parent=root_module['ns3::SimpleRefCount< ns3::ndn::pit::Entry, ns3::empty, ns3::DefaultDeleter<ns3::ndn::pit::Entry> >'])
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -0800473 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::ndn::pit::EntryIsNotEmpty [struct]
474 module.add_class('EntryIsNotEmpty')
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700475 ## ndn-pit-entry-incoming-face.h (module 'ndnSIM'): ns3::ndn::pit::IncomingFace [struct]
476 module.add_class('IncomingFace')
477 ## ndn-pit-entry-outgoing-face.h (module 'ndnSIM'): ns3::ndn::pit::OutgoingFace [struct]
478 module.add_class('OutgoingFace')
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700479 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::ndn::pit::i_face [class]
480 module.add_class('i_face')
481 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::ndn::pit::i_retx [class]
482 module.add_class('i_retx')
483 module.add_container('std::set< ns3::ndn::pit::IncomingFace >', 'ns3::ndn::pit::IncomingFace', container_type='set')
Alexander Afanasyevc202fd92012-09-03 21:46:00 -0700484 module.add_container('std::set< ns3::ndn::pit::OutgoingFace >', 'ns3::ndn::pit::OutgoingFace', container_type='set')
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700485 module.add_container('std::set< unsigned int >', 'unsigned int', container_type='set')
486
Alexander Afanasyeva6cc9102013-07-15 18:44:24 -0700487def register_types_ns3_ndn_wire(module):
488 root_module = module.get_root()
489
490
491 ## Register a nested module for the namespace ccnb
492
493 nested_module = module.add_cpp_namespace('ccnb')
494 register_types_ns3_ndn_wire_ccnb(nested_module)
495
496
497 ## Register a nested module for the namespace ndnSIM
498
499 nested_module = module.add_cpp_namespace('ndnSIM')
500 register_types_ns3_ndn_wire_ndnSIM(nested_module)
501
502
503def register_types_ns3_ndn_wire_ccnb(module):
504 root_module = module.get_root()
505
506 ## ccnb.h (module 'ndnSIM'): ns3::ndn::wire::ccnb::Data [class]
507 module.add_class('Data', parent=root_module['ns3::Header'])
508 ## ccnb.h (module 'ndnSIM'): ns3::ndn::wire::ccnb::Interest [class]
509 module.add_class('Interest', parent=root_module['ns3::Header'])
510
511def register_types_ns3_ndn_wire_ndnSIM(module):
512 root_module = module.get_root()
513
514 ## ndnsim.h (module 'ndnSIM'): ns3::ndn::wire::ndnSIM::Data [class]
515 module.add_class('Data', parent=root_module['ns3::Header'])
516 ## ndnsim.h (module 'ndnSIM'): ns3::ndn::wire::ndnSIM::Interest [class]
517 module.add_class('Interest', parent=root_module['ns3::Header'])
518
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800519def register_methods(root_module):
520 register_Ns3Address_methods(root_module, root_module['ns3::Address'])
521 register_Ns3ApplicationContainer_methods(root_module, root_module['ns3::ApplicationContainer'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800522 register_Ns3AttributeConstructionList_methods(root_module, root_module['ns3::AttributeConstructionList'])
523 register_Ns3AttributeConstructionListItem_methods(root_module, root_module['ns3::AttributeConstructionList::Item'])
524 register_Ns3Buffer_methods(root_module, root_module['ns3::Buffer'])
525 register_Ns3BufferIterator_methods(root_module, root_module['ns3::Buffer::Iterator'])
526 register_Ns3ByteTagIterator_methods(root_module, root_module['ns3::ByteTagIterator'])
527 register_Ns3ByteTagIteratorItem_methods(root_module, root_module['ns3::ByteTagIterator::Item'])
528 register_Ns3ByteTagList_methods(root_module, root_module['ns3::ByteTagList'])
529 register_Ns3ByteTagListIterator_methods(root_module, root_module['ns3::ByteTagList::Iterator'])
530 register_Ns3ByteTagListIteratorItem_methods(root_module, root_module['ns3::ByteTagList::Iterator::Item'])
531 register_Ns3CallbackBase_methods(root_module, root_module['ns3::CallbackBase'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800532 register_Ns3EventId_methods(root_module, root_module['ns3::EventId'])
533 register_Ns3Ipv4Address_methods(root_module, root_module['ns3::Ipv4Address'])
534 register_Ns3Ipv4Mask_methods(root_module, root_module['ns3::Ipv4Mask'])
535 register_Ns3Ipv6Address_methods(root_module, root_module['ns3::Ipv6Address'])
536 register_Ns3Ipv6Prefix_methods(root_module, root_module['ns3::Ipv6Prefix'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700537 register_Ns3NetDeviceContainer_methods(root_module, root_module['ns3::NetDeviceContainer'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800538 register_Ns3NodeContainer_methods(root_module, root_module['ns3::NodeContainer'])
539 register_Ns3ObjectBase_methods(root_module, root_module['ns3::ObjectBase'])
540 register_Ns3ObjectDeleter_methods(root_module, root_module['ns3::ObjectDeleter'])
541 register_Ns3ObjectFactory_methods(root_module, root_module['ns3::ObjectFactory'])
542 register_Ns3PacketMetadata_methods(root_module, root_module['ns3::PacketMetadata'])
543 register_Ns3PacketMetadataItem_methods(root_module, root_module['ns3::PacketMetadata::Item'])
544 register_Ns3PacketMetadataItemIterator_methods(root_module, root_module['ns3::PacketMetadata::ItemIterator'])
Alexander Afanasyevad5acce2012-05-31 12:43:08 -0700545 register_Ns3PacketTagIterator_methods(root_module, root_module['ns3::PacketTagIterator'])
546 register_Ns3PacketTagIteratorItem_methods(root_module, root_module['ns3::PacketTagIterator::Item'])
547 register_Ns3PacketTagList_methods(root_module, root_module['ns3::PacketTagList'])
548 register_Ns3PacketTagListTagData_methods(root_module, root_module['ns3::PacketTagList::TagData'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700549 register_Ns3RandomVariable_methods(root_module, root_module['ns3::RandomVariable'])
550 register_Ns3RngSeedManager_methods(root_module, root_module['ns3::RngSeedManager'])
Alexander Afanasyev0e4ae8e2013-03-12 15:59:18 -0700551 register_Ns3SequenceNumber32_methods(root_module, root_module['ns3::SequenceNumber32'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700552 register_Ns3SequentialVariable_methods(root_module, root_module['ns3::SequentialVariable'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800553 register_Ns3SimpleRefCount__Ns3Object_Ns3ObjectBase_Ns3ObjectDeleter_methods(root_module, root_module['ns3::SimpleRefCount< ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter >'])
Alexander Afanasyevad5acce2012-05-31 12:43:08 -0700554 register_Ns3Tag_methods(root_module, root_module['ns3::Tag'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800555 register_Ns3TagBuffer_methods(root_module, root_module['ns3::TagBuffer'])
Alexander Afanasyev0e4ae8e2013-03-12 15:59:18 -0700556 register_Ns3TracedValue__Ns3NdnFibFaceMetricStatus_methods(root_module, root_module['ns3::TracedValue< ns3::ndn::fib::FaceMetric::Status >'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700557 register_Ns3TriangularVariable_methods(root_module, root_module['ns3::TriangularVariable'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800558 register_Ns3TypeId_methods(root_module, root_module['ns3::TypeId'])
559 register_Ns3TypeIdAttributeInformation_methods(root_module, root_module['ns3::TypeId::AttributeInformation'])
560 register_Ns3TypeIdTraceSourceInformation_methods(root_module, root_module['ns3::TypeId::TraceSourceInformation'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700561 register_Ns3UniformVariable_methods(root_module, root_module['ns3::UniformVariable'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700562 register_Ns3WeibullVariable_methods(root_module, root_module['ns3::WeibullVariable'])
563 register_Ns3ZetaVariable_methods(root_module, root_module['ns3::ZetaVariable'])
564 register_Ns3ZipfVariable_methods(root_module, root_module['ns3::ZipfVariable'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800565 register_Ns3Empty_methods(root_module, root_module['ns3::empty'])
566 register_Ns3Int64x64_t_methods(root_module, root_module['ns3::int64x64_t'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800567 register_Ns3Chunk_methods(root_module, root_module['ns3::Chunk'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700568 register_Ns3ConstantVariable_methods(root_module, root_module['ns3::ConstantVariable'])
569 register_Ns3DeterministicVariable_methods(root_module, root_module['ns3::DeterministicVariable'])
570 register_Ns3EmpiricalVariable_methods(root_module, root_module['ns3::EmpiricalVariable'])
571 register_Ns3ErlangVariable_methods(root_module, root_module['ns3::ErlangVariable'])
572 register_Ns3ExponentialVariable_methods(root_module, root_module['ns3::ExponentialVariable'])
573 register_Ns3GammaVariable_methods(root_module, root_module['ns3::GammaVariable'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800574 register_Ns3Header_methods(root_module, root_module['ns3::Header'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700575 register_Ns3IntEmpiricalVariable_methods(root_module, root_module['ns3::IntEmpiricalVariable'])
576 register_Ns3LogNormalVariable_methods(root_module, root_module['ns3::LogNormalVariable'])
577 register_Ns3NormalVariable_methods(root_module, root_module['ns3::NormalVariable'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800578 register_Ns3Object_methods(root_module, root_module['ns3::Object'])
579 register_Ns3ObjectAggregateIterator_methods(root_module, root_module['ns3::Object::AggregateIterator'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700580 register_Ns3ParetoVariable_methods(root_module, root_module['ns3::ParetoVariable'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800581 register_Ns3SimpleRefCount__Ns3AttributeAccessor_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeAccessor__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> >'])
582 register_Ns3SimpleRefCount__Ns3AttributeChecker_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeChecker__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter<ns3::AttributeChecker> >'])
583 register_Ns3SimpleRefCount__Ns3AttributeValue_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeValue__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter<ns3::AttributeValue> >'])
584 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 -0800585 register_Ns3SimpleRefCount__Ns3EventImpl_Ns3Empty_Ns3DefaultDeleter__lt__ns3EventImpl__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::EventImpl, ns3::empty, ns3::DefaultDeleter<ns3::EventImpl> >'])
586 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 -0800587 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 -0700588 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 -0800589 register_Ns3SimpleRefCount__Ns3TraceSourceAccessor_Ns3Empty_Ns3DefaultDeleter__lt__ns3TraceSourceAccessor__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter<ns3::TraceSourceAccessor> >'])
Alexander Afanasyev858d5312013-07-10 18:50:18 -0700590 register_Ns3SimpleRefCount__Ns3NdnContentObject_Ns3Empty_Ns3DefaultDeleter__lt__ns3NdnContentObject__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::ndn::ContentObject, ns3::empty, ns3::DefaultDeleter<ns3::ndn::ContentObject> >'])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700591 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> >'])
Alexander Afanasyev858d5312013-07-10 18:50:18 -0700592 register_Ns3SimpleRefCount__Ns3NdnInterest_Ns3Empty_Ns3DefaultDeleter__lt__ns3NdnInterest__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::ndn::Interest, ns3::empty, ns3::DefaultDeleter<ns3::ndn::Interest> >'])
Alexander Afanasyev32c07562013-02-01 12:58:43 -0800593 register_Ns3SimpleRefCount__Ns3NdnName_Ns3Empty_Ns3DefaultDeleter__lt__ns3NdnName__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::ndn::Name, ns3::empty, ns3::DefaultDeleter<ns3::ndn::Name> >'])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700594 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 -0700595 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 -0800596 register_Ns3Time_methods(root_module, root_module['ns3::Time'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700597 register_Ns3TopologyReader_methods(root_module, root_module['ns3::TopologyReader'])
598 register_Ns3TopologyReaderLink_methods(root_module, root_module['ns3::TopologyReader::Link'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800599 register_Ns3TraceSourceAccessor_methods(root_module, root_module['ns3::TraceSourceAccessor'])
600 register_Ns3Trailer_methods(root_module, root_module['ns3::Trailer'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700601 register_Ns3AnnotatedTopologyReader_methods(root_module, root_module['ns3::AnnotatedTopologyReader'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800602 register_Ns3Application_methods(root_module, root_module['ns3::Application'])
603 register_Ns3AttributeAccessor_methods(root_module, root_module['ns3::AttributeAccessor'])
604 register_Ns3AttributeChecker_methods(root_module, root_module['ns3::AttributeChecker'])
605 register_Ns3AttributeValue_methods(root_module, root_module['ns3::AttributeValue'])
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -0700606 register_Ns3BooleanChecker_methods(root_module, root_module['ns3::BooleanChecker'])
607 register_Ns3BooleanValue_methods(root_module, root_module['ns3::BooleanValue'])
Alexander Afanasyeve4795ae2013-07-11 20:01:31 -0700608 register_Ns3CallbackBasedApp_methods(root_module, root_module['ns3::CallbackBasedApp'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800609 register_Ns3CallbackChecker_methods(root_module, root_module['ns3::CallbackChecker'])
610 register_Ns3CallbackImplBase_methods(root_module, root_module['ns3::CallbackImplBase'])
611 register_Ns3CallbackValue_methods(root_module, root_module['ns3::CallbackValue'])
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -0700612 register_Ns3DoubleValue_methods(root_module, root_module['ns3::DoubleValue'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800613 register_Ns3EmptyAttributeValue_methods(root_module, root_module['ns3::EmptyAttributeValue'])
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -0700614 register_Ns3EnumChecker_methods(root_module, root_module['ns3::EnumChecker'])
615 register_Ns3EnumValue_methods(root_module, root_module['ns3::EnumValue'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800616 register_Ns3EventImpl_methods(root_module, root_module['ns3::EventImpl'])
617 register_Ns3IntegerValue_methods(root_module, root_module['ns3::IntegerValue'])
618 register_Ns3Ipv4AddressChecker_methods(root_module, root_module['ns3::Ipv4AddressChecker'])
619 register_Ns3Ipv4AddressValue_methods(root_module, root_module['ns3::Ipv4AddressValue'])
620 register_Ns3Ipv4MaskChecker_methods(root_module, root_module['ns3::Ipv4MaskChecker'])
621 register_Ns3Ipv4MaskValue_methods(root_module, root_module['ns3::Ipv4MaskValue'])
622 register_Ns3Ipv6AddressChecker_methods(root_module, root_module['ns3::Ipv6AddressChecker'])
623 register_Ns3Ipv6AddressValue_methods(root_module, root_module['ns3::Ipv6AddressValue'])
624 register_Ns3Ipv6PrefixChecker_methods(root_module, root_module['ns3::Ipv6PrefixChecker'])
625 register_Ns3Ipv6PrefixValue_methods(root_module, root_module['ns3::Ipv6PrefixValue'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800626 register_Ns3NetDevice_methods(root_module, root_module['ns3::NetDevice'])
627 register_Ns3NixVector_methods(root_module, root_module['ns3::NixVector'])
628 register_Ns3Node_methods(root_module, root_module['ns3::Node'])
629 register_Ns3ObjectFactoryChecker_methods(root_module, root_module['ns3::ObjectFactoryChecker'])
630 register_Ns3ObjectFactoryValue_methods(root_module, root_module['ns3::ObjectFactoryValue'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800631 register_Ns3Packet_methods(root_module, root_module['ns3::Packet'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700632 register_Ns3RandomVariableChecker_methods(root_module, root_module['ns3::RandomVariableChecker'])
633 register_Ns3RandomVariableValue_methods(root_module, root_module['ns3::RandomVariableValue'])
634 register_Ns3RocketfuelWeightsReader_methods(root_module, root_module['ns3::RocketfuelWeightsReader'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800635 register_Ns3TimeChecker_methods(root_module, root_module['ns3::TimeChecker'])
636 register_Ns3TimeValue_methods(root_module, root_module['ns3::TimeValue'])
637 register_Ns3TypeIdChecker_methods(root_module, root_module['ns3::TypeIdChecker'])
638 register_Ns3TypeIdValue_methods(root_module, root_module['ns3::TypeIdValue'])
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -0700639 register_Ns3UintegerValue_methods(root_module, root_module['ns3::UintegerValue'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800640 register_Ns3AddressChecker_methods(root_module, root_module['ns3::AddressChecker'])
641 register_Ns3AddressValue_methods(root_module, root_module['ns3::AddressValue'])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700642 register_Ns3NdnApp_methods(root_module, root_module['ns3::ndn::App'])
643 register_Ns3NdnAppHelper_methods(root_module, root_module['ns3::ndn::AppHelper'])
Alexander Afanasyeveae83ee2013-03-15 15:01:10 -0700644 register_Ns3NdnContentObject_methods(root_module, root_module['ns3::ndn::ContentObject'])
645 register_Ns3NdnContentObjectException_methods(root_module, root_module['ns3::ndn::ContentObjectException'])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700646 register_Ns3NdnContentStore_methods(root_module, root_module['ns3::ndn::ContentStore'])
647 register_Ns3NdnFace_methods(root_module, root_module['ns3::ndn::Face'])
648 register_Ns3NdnFaceContainer_methods(root_module, root_module['ns3::ndn::FaceContainer'])
649 register_Ns3NdnFib_methods(root_module, root_module['ns3::ndn::Fib'])
650 register_Ns3NdnForwardingStrategy_methods(root_module, root_module['ns3::ndn::ForwardingStrategy'])
651 register_Ns3NdnGlobalRoutingHelper_methods(root_module, root_module['ns3::ndn::GlobalRoutingHelper'])
652 register_Ns3NdnHeaderHelper_methods(root_module, root_module['ns3::ndn::HeaderHelper'])
Alexander Afanasyeveae83ee2013-03-15 15:01:10 -0700653 register_Ns3NdnInterest_methods(root_module, root_module['ns3::ndn::Interest'])
654 register_Ns3NdnInterestException_methods(root_module, root_module['ns3::ndn::InterestException'])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700655 register_Ns3NdnL3Protocol_methods(root_module, root_module['ns3::ndn::L3Protocol'])
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -0700656 register_Ns3NdnLimits_methods(root_module, root_module['ns3::ndn::Limits'])
Alexander Afanasyev32c07562013-02-01 12:58:43 -0800657 register_Ns3NdnName_methods(root_module, root_module['ns3::ndn::Name'])
658 register_Ns3NdnNameChecker_methods(root_module, root_module['ns3::ndn::NameChecker'])
Alexander Afanasyev32c07562013-02-01 12:58:43 -0800659 register_Ns3NdnNameValue_methods(root_module, root_module['ns3::ndn::NameValue'])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700660 register_Ns3NdnNetDeviceFace_methods(root_module, root_module['ns3::ndn::NetDeviceFace'])
661 register_Ns3NdnPit_methods(root_module, root_module['ns3::ndn::Pit'])
Alexander Afanasyev0e4ae8e2013-03-12 15:59:18 -0700662 register_Ns3NdnRttEstimator_methods(root_module, root_module['ns3::ndn::RttEstimator'])
663 register_Ns3NdnRttHistory_methods(root_module, root_module['ns3::ndn::RttHistory'])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700664 register_Ns3NdnStackHelper_methods(root_module, root_module['ns3::ndn::StackHelper'])
665 register_Ns3NdnUnknownHeaderException_methods(root_module, root_module['ns3::ndn::UnknownHeaderException'])
Alexander Afanasyeva4e74282013-07-11 15:23:20 -0700666 register_Ns3NdnApiFace_methods(root_module, root_module['ns3::ndn::ApiFace'])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700667 register_Ns3NdnAppFace_methods(root_module, root_module['ns3::ndn::AppFace'])
668 register_Ns3NdnCsEntry_methods(root_module, root_module['ns3::ndn::cs::Entry'])
669 register_Ns3NdnFibEntry_methods(root_module, root_module['ns3::ndn::fib::Entry'])
670 register_Ns3NdnFibEntryNoFaces_methods(root_module, root_module['ns3::ndn::fib::Entry::NoFaces'])
671 register_Ns3NdnFibFaceMetric_methods(root_module, root_module['ns3::ndn::fib::FaceMetric'])
672 register_Ns3NdnFibFaceMetricContainer_methods(root_module, root_module['ns3::ndn::fib::FaceMetricContainer'])
673 register_Ns3NdnFibI_face_methods(root_module, root_module['ns3::ndn::fib::i_face'])
674 register_Ns3NdnFibI_metric_methods(root_module, root_module['ns3::ndn::fib::i_metric'])
675 register_Ns3NdnFibI_nth_methods(root_module, root_module['ns3::ndn::fib::i_nth'])
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -0700676 register_Ns3NdnFwTag_methods(root_module, root_module['ns3::ndn::fw::Tag'])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700677 register_Ns3NdnPitEntry_methods(root_module, root_module['ns3::ndn::pit::Entry'])
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -0800678 register_Ns3NdnPitEntryIsNotEmpty_methods(root_module, root_module['ns3::ndn::pit::EntryIsNotEmpty'])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700679 register_Ns3NdnPitIncomingFace_methods(root_module, root_module['ns3::ndn::pit::IncomingFace'])
680 register_Ns3NdnPitOutgoingFace_methods(root_module, root_module['ns3::ndn::pit::OutgoingFace'])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700681 register_Ns3NdnPitI_face_methods(root_module, root_module['ns3::ndn::pit::i_face'])
682 register_Ns3NdnPitI_retx_methods(root_module, root_module['ns3::ndn::pit::i_retx'])
Alexander Afanasyeva6cc9102013-07-15 18:44:24 -0700683 register_Ns3NdnWireCcnbData_methods(root_module, root_module['ns3::ndn::wire::ccnb::Data'])
684 register_Ns3NdnWireCcnbInterest_methods(root_module, root_module['ns3::ndn::wire::ccnb::Interest'])
685 register_Ns3NdnWireNdnSIMData_methods(root_module, root_module['ns3::ndn::wire::ndnSIM::Data'])
686 register_Ns3NdnWireNdnSIMInterest_methods(root_module, root_module['ns3::ndn::wire::ndnSIM::Interest'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800687 return
688
689def register_Ns3Address_methods(root_module, cls):
690 cls.add_binary_comparison_operator('!=')
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -0700691 cls.add_output_stream_operator()
Alexander Afanasyeva28ec562012-10-25 14:07:32 -0700692 cls.add_binary_comparison_operator('==')
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800693 cls.add_binary_comparison_operator('<')
694 ## address.h (module 'network'): ns3::Address::Address() [constructor]
695 cls.add_constructor([])
696 ## address.h (module 'network'): ns3::Address::Address(uint8_t type, uint8_t const * buffer, uint8_t len) [constructor]
697 cls.add_constructor([param('uint8_t', 'type'), param('uint8_t const *', 'buffer'), param('uint8_t', 'len')])
698 ## address.h (module 'network'): ns3::Address::Address(ns3::Address const & address) [copy constructor]
699 cls.add_constructor([param('ns3::Address const &', 'address')])
700 ## address.h (module 'network'): bool ns3::Address::CheckCompatible(uint8_t type, uint8_t len) const [member function]
701 cls.add_method('CheckCompatible',
702 'bool',
703 [param('uint8_t', 'type'), param('uint8_t', 'len')],
704 is_const=True)
705 ## address.h (module 'network'): uint32_t ns3::Address::CopyAllFrom(uint8_t const * buffer, uint8_t len) [member function]
706 cls.add_method('CopyAllFrom',
707 'uint32_t',
708 [param('uint8_t const *', 'buffer'), param('uint8_t', 'len')])
709 ## address.h (module 'network'): uint32_t ns3::Address::CopyAllTo(uint8_t * buffer, uint8_t len) const [member function]
710 cls.add_method('CopyAllTo',
711 'uint32_t',
712 [param('uint8_t *', 'buffer'), param('uint8_t', 'len')],
713 is_const=True)
714 ## address.h (module 'network'): uint32_t ns3::Address::CopyFrom(uint8_t const * buffer, uint8_t len) [member function]
715 cls.add_method('CopyFrom',
716 'uint32_t',
717 [param('uint8_t const *', 'buffer'), param('uint8_t', 'len')])
718 ## address.h (module 'network'): uint32_t ns3::Address::CopyTo(uint8_t * buffer) const [member function]
719 cls.add_method('CopyTo',
720 'uint32_t',
721 [param('uint8_t *', 'buffer')],
722 is_const=True)
723 ## address.h (module 'network'): void ns3::Address::Deserialize(ns3::TagBuffer buffer) [member function]
724 cls.add_method('Deserialize',
725 'void',
726 [param('ns3::TagBuffer', 'buffer')])
727 ## address.h (module 'network'): uint8_t ns3::Address::GetLength() const [member function]
728 cls.add_method('GetLength',
729 'uint8_t',
730 [],
731 is_const=True)
732 ## address.h (module 'network'): uint32_t ns3::Address::GetSerializedSize() const [member function]
733 cls.add_method('GetSerializedSize',
734 'uint32_t',
735 [],
736 is_const=True)
737 ## address.h (module 'network'): bool ns3::Address::IsInvalid() const [member function]
738 cls.add_method('IsInvalid',
739 'bool',
740 [],
741 is_const=True)
742 ## address.h (module 'network'): bool ns3::Address::IsMatchingType(uint8_t type) const [member function]
743 cls.add_method('IsMatchingType',
744 'bool',
745 [param('uint8_t', 'type')],
746 is_const=True)
747 ## address.h (module 'network'): static uint8_t ns3::Address::Register() [member function]
748 cls.add_method('Register',
749 'uint8_t',
750 [],
751 is_static=True)
752 ## address.h (module 'network'): void ns3::Address::Serialize(ns3::TagBuffer buffer) const [member function]
753 cls.add_method('Serialize',
754 'void',
755 [param('ns3::TagBuffer', 'buffer')],
756 is_const=True)
757 return
758
759def register_Ns3ApplicationContainer_methods(root_module, cls):
760 ## application-container.h (module 'network'): ns3::ApplicationContainer::ApplicationContainer(ns3::ApplicationContainer const & arg0) [copy constructor]
761 cls.add_constructor([param('ns3::ApplicationContainer const &', 'arg0')])
762 ## application-container.h (module 'network'): ns3::ApplicationContainer::ApplicationContainer() [constructor]
763 cls.add_constructor([])
764 ## application-container.h (module 'network'): ns3::ApplicationContainer::ApplicationContainer(ns3::Ptr<ns3::Application> application) [constructor]
765 cls.add_constructor([param('ns3::Ptr< ns3::Application >', 'application')])
766 ## application-container.h (module 'network'): ns3::ApplicationContainer::ApplicationContainer(std::string name) [constructor]
767 cls.add_constructor([param('std::string', 'name')])
768 ## application-container.h (module 'network'): void ns3::ApplicationContainer::Add(ns3::ApplicationContainer other) [member function]
769 cls.add_method('Add',
770 'void',
771 [param('ns3::ApplicationContainer', 'other')])
772 ## application-container.h (module 'network'): void ns3::ApplicationContainer::Add(ns3::Ptr<ns3::Application> application) [member function]
773 cls.add_method('Add',
774 'void',
775 [param('ns3::Ptr< ns3::Application >', 'application')])
776 ## application-container.h (module 'network'): void ns3::ApplicationContainer::Add(std::string name) [member function]
777 cls.add_method('Add',
778 'void',
779 [param('std::string', 'name')])
780 ## 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]
781 cls.add_method('Begin',
782 '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Application > const, std::vector< ns3::Ptr< ns3::Application > > >',
783 [],
784 is_const=True)
785 ## 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]
786 cls.add_method('End',
787 '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Application > const, std::vector< ns3::Ptr< ns3::Application > > >',
788 [],
789 is_const=True)
790 ## application-container.h (module 'network'): ns3::Ptr<ns3::Application> ns3::ApplicationContainer::Get(uint32_t i) const [member function]
791 cls.add_method('Get',
792 'ns3::Ptr< ns3::Application >',
793 [param('uint32_t', 'i')],
794 is_const=True)
795 ## application-container.h (module 'network'): uint32_t ns3::ApplicationContainer::GetN() const [member function]
796 cls.add_method('GetN',
797 'uint32_t',
798 [],
799 is_const=True)
800 ## application-container.h (module 'network'): void ns3::ApplicationContainer::Start(ns3::Time start) [member function]
801 cls.add_method('Start',
802 'void',
803 [param('ns3::Time', 'start')])
804 ## application-container.h (module 'network'): void ns3::ApplicationContainer::Stop(ns3::Time stop) [member function]
805 cls.add_method('Stop',
806 'void',
807 [param('ns3::Time', 'stop')])
808 return
809
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800810def register_Ns3AttributeConstructionList_methods(root_module, cls):
811 ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::AttributeConstructionList(ns3::AttributeConstructionList const & arg0) [copy constructor]
812 cls.add_constructor([param('ns3::AttributeConstructionList const &', 'arg0')])
813 ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::AttributeConstructionList() [constructor]
814 cls.add_constructor([])
815 ## 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]
816 cls.add_method('Add',
817 'void',
818 [param('std::string', 'name'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker'), param('ns3::Ptr< ns3::AttributeValue >', 'value')])
819 ## attribute-construction-list.h (module 'core'): std::_List_const_iterator<ns3::AttributeConstructionList::Item> ns3::AttributeConstructionList::Begin() const [member function]
820 cls.add_method('Begin',
821 'std::_List_const_iterator< ns3::AttributeConstructionList::Item >',
822 [],
823 is_const=True)
824 ## attribute-construction-list.h (module 'core'): std::_List_const_iterator<ns3::AttributeConstructionList::Item> ns3::AttributeConstructionList::End() const [member function]
825 cls.add_method('End',
826 'std::_List_const_iterator< ns3::AttributeConstructionList::Item >',
827 [],
828 is_const=True)
829 ## attribute-construction-list.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::AttributeConstructionList::Find(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
830 cls.add_method('Find',
831 'ns3::Ptr< ns3::AttributeValue >',
832 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
833 is_const=True)
834 return
835
836def register_Ns3AttributeConstructionListItem_methods(root_module, cls):
837 ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item::Item() [constructor]
838 cls.add_constructor([])
839 ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item::Item(ns3::AttributeConstructionList::Item const & arg0) [copy constructor]
840 cls.add_constructor([param('ns3::AttributeConstructionList::Item const &', 'arg0')])
841 ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item::checker [variable]
842 cls.add_instance_attribute('checker', 'ns3::Ptr< ns3::AttributeChecker const >', is_const=False)
843 ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item::name [variable]
844 cls.add_instance_attribute('name', 'std::string', is_const=False)
845 ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item::value [variable]
846 cls.add_instance_attribute('value', 'ns3::Ptr< ns3::AttributeValue >', is_const=False)
847 return
848
849def register_Ns3Buffer_methods(root_module, cls):
850 ## buffer.h (module 'network'): ns3::Buffer::Buffer() [constructor]
851 cls.add_constructor([])
852 ## buffer.h (module 'network'): ns3::Buffer::Buffer(uint32_t dataSize) [constructor]
853 cls.add_constructor([param('uint32_t', 'dataSize')])
854 ## buffer.h (module 'network'): ns3::Buffer::Buffer(uint32_t dataSize, bool initialize) [constructor]
855 cls.add_constructor([param('uint32_t', 'dataSize'), param('bool', 'initialize')])
856 ## buffer.h (module 'network'): ns3::Buffer::Buffer(ns3::Buffer const & o) [copy constructor]
857 cls.add_constructor([param('ns3::Buffer const &', 'o')])
858 ## buffer.h (module 'network'): bool ns3::Buffer::AddAtEnd(uint32_t end) [member function]
859 cls.add_method('AddAtEnd',
860 'bool',
861 [param('uint32_t', 'end')])
862 ## buffer.h (module 'network'): void ns3::Buffer::AddAtEnd(ns3::Buffer const & o) [member function]
863 cls.add_method('AddAtEnd',
864 'void',
865 [param('ns3::Buffer const &', 'o')])
866 ## buffer.h (module 'network'): bool ns3::Buffer::AddAtStart(uint32_t start) [member function]
867 cls.add_method('AddAtStart',
868 'bool',
869 [param('uint32_t', 'start')])
870 ## buffer.h (module 'network'): ns3::Buffer::Iterator ns3::Buffer::Begin() const [member function]
871 cls.add_method('Begin',
872 'ns3::Buffer::Iterator',
873 [],
874 is_const=True)
875 ## buffer.h (module 'network'): void ns3::Buffer::CopyData(std::ostream * os, uint32_t size) const [member function]
876 cls.add_method('CopyData',
877 'void',
878 [param('std::ostream *', 'os'), param('uint32_t', 'size')],
879 is_const=True)
880 ## buffer.h (module 'network'): uint32_t ns3::Buffer::CopyData(uint8_t * buffer, uint32_t size) const [member function]
881 cls.add_method('CopyData',
882 'uint32_t',
883 [param('uint8_t *', 'buffer'), param('uint32_t', 'size')],
884 is_const=True)
885 ## buffer.h (module 'network'): ns3::Buffer ns3::Buffer::CreateFragment(uint32_t start, uint32_t length) const [member function]
886 cls.add_method('CreateFragment',
887 'ns3::Buffer',
888 [param('uint32_t', 'start'), param('uint32_t', 'length')],
889 is_const=True)
890 ## buffer.h (module 'network'): ns3::Buffer ns3::Buffer::CreateFullCopy() const [member function]
891 cls.add_method('CreateFullCopy',
892 'ns3::Buffer',
893 [],
894 is_const=True)
895 ## buffer.h (module 'network'): uint32_t ns3::Buffer::Deserialize(uint8_t const * buffer, uint32_t size) [member function]
896 cls.add_method('Deserialize',
897 'uint32_t',
898 [param('uint8_t const *', 'buffer'), param('uint32_t', 'size')])
899 ## buffer.h (module 'network'): ns3::Buffer::Iterator ns3::Buffer::End() const [member function]
900 cls.add_method('End',
901 'ns3::Buffer::Iterator',
902 [],
903 is_const=True)
904 ## buffer.h (module 'network'): int32_t ns3::Buffer::GetCurrentEndOffset() const [member function]
905 cls.add_method('GetCurrentEndOffset',
906 'int32_t',
907 [],
908 is_const=True)
909 ## buffer.h (module 'network'): int32_t ns3::Buffer::GetCurrentStartOffset() const [member function]
910 cls.add_method('GetCurrentStartOffset',
911 'int32_t',
912 [],
913 is_const=True)
914 ## buffer.h (module 'network'): uint32_t ns3::Buffer::GetSerializedSize() const [member function]
915 cls.add_method('GetSerializedSize',
916 'uint32_t',
917 [],
918 is_const=True)
919 ## buffer.h (module 'network'): uint32_t ns3::Buffer::GetSize() const [member function]
920 cls.add_method('GetSize',
921 'uint32_t',
922 [],
923 is_const=True)
924 ## buffer.h (module 'network'): uint8_t const * ns3::Buffer::PeekData() const [member function]
925 cls.add_method('PeekData',
926 'uint8_t const *',
927 [],
928 is_const=True)
929 ## buffer.h (module 'network'): void ns3::Buffer::RemoveAtEnd(uint32_t end) [member function]
930 cls.add_method('RemoveAtEnd',
931 'void',
932 [param('uint32_t', 'end')])
933 ## buffer.h (module 'network'): void ns3::Buffer::RemoveAtStart(uint32_t start) [member function]
934 cls.add_method('RemoveAtStart',
935 'void',
936 [param('uint32_t', 'start')])
937 ## buffer.h (module 'network'): uint32_t ns3::Buffer::Serialize(uint8_t * buffer, uint32_t maxSize) const [member function]
938 cls.add_method('Serialize',
939 'uint32_t',
940 [param('uint8_t *', 'buffer'), param('uint32_t', 'maxSize')],
941 is_const=True)
942 return
943
944def register_Ns3BufferIterator_methods(root_module, cls):
945 ## buffer.h (module 'network'): ns3::Buffer::Iterator::Iterator(ns3::Buffer::Iterator const & arg0) [copy constructor]
946 cls.add_constructor([param('ns3::Buffer::Iterator const &', 'arg0')])
947 ## buffer.h (module 'network'): ns3::Buffer::Iterator::Iterator() [constructor]
948 cls.add_constructor([])
949 ## buffer.h (module 'network'): uint16_t ns3::Buffer::Iterator::CalculateIpChecksum(uint16_t size) [member function]
950 cls.add_method('CalculateIpChecksum',
951 'uint16_t',
952 [param('uint16_t', 'size')])
953 ## buffer.h (module 'network'): uint16_t ns3::Buffer::Iterator::CalculateIpChecksum(uint16_t size, uint32_t initialChecksum) [member function]
954 cls.add_method('CalculateIpChecksum',
955 'uint16_t',
956 [param('uint16_t', 'size'), param('uint32_t', 'initialChecksum')])
957 ## buffer.h (module 'network'): uint32_t ns3::Buffer::Iterator::GetDistanceFrom(ns3::Buffer::Iterator const & o) const [member function]
958 cls.add_method('GetDistanceFrom',
959 'uint32_t',
960 [param('ns3::Buffer::Iterator const &', 'o')],
961 is_const=True)
962 ## buffer.h (module 'network'): uint32_t ns3::Buffer::Iterator::GetSize() const [member function]
963 cls.add_method('GetSize',
964 'uint32_t',
965 [],
966 is_const=True)
967 ## buffer.h (module 'network'): bool ns3::Buffer::Iterator::IsEnd() const [member function]
968 cls.add_method('IsEnd',
969 'bool',
970 [],
971 is_const=True)
972 ## buffer.h (module 'network'): bool ns3::Buffer::Iterator::IsStart() const [member function]
973 cls.add_method('IsStart',
974 'bool',
975 [],
976 is_const=True)
977 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Next() [member function]
978 cls.add_method('Next',
979 'void',
980 [])
981 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Next(uint32_t delta) [member function]
982 cls.add_method('Next',
983 'void',
984 [param('uint32_t', 'delta')])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -0700985 ## buffer.h (module 'network'): uint8_t ns3::Buffer::Iterator::PeekU8() [member function]
986 cls.add_method('PeekU8',
987 'uint8_t',
988 [])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800989 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Prev() [member function]
990 cls.add_method('Prev',
991 'void',
992 [])
993 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Prev(uint32_t delta) [member function]
994 cls.add_method('Prev',
995 'void',
996 [param('uint32_t', 'delta')])
997 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Read(uint8_t * buffer, uint32_t size) [member function]
998 cls.add_method('Read',
999 'void',
1000 [param('uint8_t *', 'buffer'), param('uint32_t', 'size')])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001001 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Read(ns3::Buffer::Iterator start, uint32_t size) [member function]
1002 cls.add_method('Read',
1003 'void',
1004 [param('ns3::Buffer::Iterator', 'start'), param('uint32_t', 'size')])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001005 ## buffer.h (module 'network'): uint16_t ns3::Buffer::Iterator::ReadLsbtohU16() [member function]
1006 cls.add_method('ReadLsbtohU16',
1007 'uint16_t',
1008 [])
1009 ## buffer.h (module 'network'): uint32_t ns3::Buffer::Iterator::ReadLsbtohU32() [member function]
1010 cls.add_method('ReadLsbtohU32',
1011 'uint32_t',
1012 [])
1013 ## buffer.h (module 'network'): uint64_t ns3::Buffer::Iterator::ReadLsbtohU64() [member function]
1014 cls.add_method('ReadLsbtohU64',
1015 'uint64_t',
1016 [])
1017 ## buffer.h (module 'network'): uint16_t ns3::Buffer::Iterator::ReadNtohU16() [member function]
1018 cls.add_method('ReadNtohU16',
1019 'uint16_t',
1020 [])
1021 ## buffer.h (module 'network'): uint32_t ns3::Buffer::Iterator::ReadNtohU32() [member function]
1022 cls.add_method('ReadNtohU32',
1023 'uint32_t',
1024 [])
1025 ## buffer.h (module 'network'): uint64_t ns3::Buffer::Iterator::ReadNtohU64() [member function]
1026 cls.add_method('ReadNtohU64',
1027 'uint64_t',
1028 [])
1029 ## buffer.h (module 'network'): uint16_t ns3::Buffer::Iterator::ReadU16() [member function]
1030 cls.add_method('ReadU16',
1031 'uint16_t',
1032 [])
1033 ## buffer.h (module 'network'): uint32_t ns3::Buffer::Iterator::ReadU32() [member function]
1034 cls.add_method('ReadU32',
1035 'uint32_t',
1036 [])
1037 ## buffer.h (module 'network'): uint64_t ns3::Buffer::Iterator::ReadU64() [member function]
1038 cls.add_method('ReadU64',
1039 'uint64_t',
1040 [])
1041 ## buffer.h (module 'network'): uint8_t ns3::Buffer::Iterator::ReadU8() [member function]
1042 cls.add_method('ReadU8',
1043 'uint8_t',
1044 [])
1045 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Write(uint8_t const * buffer, uint32_t size) [member function]
1046 cls.add_method('Write',
1047 'void',
1048 [param('uint8_t const *', 'buffer'), param('uint32_t', 'size')])
1049 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Write(ns3::Buffer::Iterator start, ns3::Buffer::Iterator end) [member function]
1050 cls.add_method('Write',
1051 'void',
1052 [param('ns3::Buffer::Iterator', 'start'), param('ns3::Buffer::Iterator', 'end')])
1053 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteHtolsbU16(uint16_t data) [member function]
1054 cls.add_method('WriteHtolsbU16',
1055 'void',
1056 [param('uint16_t', 'data')])
1057 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteHtolsbU32(uint32_t data) [member function]
1058 cls.add_method('WriteHtolsbU32',
1059 'void',
1060 [param('uint32_t', 'data')])
1061 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteHtolsbU64(uint64_t data) [member function]
1062 cls.add_method('WriteHtolsbU64',
1063 'void',
1064 [param('uint64_t', 'data')])
1065 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteHtonU16(uint16_t data) [member function]
1066 cls.add_method('WriteHtonU16',
1067 'void',
1068 [param('uint16_t', 'data')])
1069 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteHtonU32(uint32_t data) [member function]
1070 cls.add_method('WriteHtonU32',
1071 'void',
1072 [param('uint32_t', 'data')])
1073 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteHtonU64(uint64_t data) [member function]
1074 cls.add_method('WriteHtonU64',
1075 'void',
1076 [param('uint64_t', 'data')])
1077 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteU16(uint16_t data) [member function]
1078 cls.add_method('WriteU16',
1079 'void',
1080 [param('uint16_t', 'data')])
1081 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteU32(uint32_t data) [member function]
1082 cls.add_method('WriteU32',
1083 'void',
1084 [param('uint32_t', 'data')])
1085 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteU64(uint64_t data) [member function]
1086 cls.add_method('WriteU64',
1087 'void',
1088 [param('uint64_t', 'data')])
1089 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteU8(uint8_t data) [member function]
1090 cls.add_method('WriteU8',
1091 'void',
1092 [param('uint8_t', 'data')])
1093 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteU8(uint8_t data, uint32_t len) [member function]
1094 cls.add_method('WriteU8',
1095 'void',
1096 [param('uint8_t', 'data'), param('uint32_t', 'len')])
1097 return
1098
1099def register_Ns3ByteTagIterator_methods(root_module, cls):
1100 ## packet.h (module 'network'): ns3::ByteTagIterator::ByteTagIterator(ns3::ByteTagIterator const & arg0) [copy constructor]
1101 cls.add_constructor([param('ns3::ByteTagIterator const &', 'arg0')])
1102 ## packet.h (module 'network'): bool ns3::ByteTagIterator::HasNext() const [member function]
1103 cls.add_method('HasNext',
1104 'bool',
1105 [],
1106 is_const=True)
1107 ## packet.h (module 'network'): ns3::ByteTagIterator::Item ns3::ByteTagIterator::Next() [member function]
1108 cls.add_method('Next',
1109 'ns3::ByteTagIterator::Item',
1110 [])
1111 return
1112
1113def register_Ns3ByteTagIteratorItem_methods(root_module, cls):
1114 ## packet.h (module 'network'): ns3::ByteTagIterator::Item::Item(ns3::ByteTagIterator::Item const & arg0) [copy constructor]
1115 cls.add_constructor([param('ns3::ByteTagIterator::Item const &', 'arg0')])
1116 ## packet.h (module 'network'): uint32_t ns3::ByteTagIterator::Item::GetEnd() const [member function]
1117 cls.add_method('GetEnd',
1118 'uint32_t',
1119 [],
1120 is_const=True)
1121 ## packet.h (module 'network'): uint32_t ns3::ByteTagIterator::Item::GetStart() const [member function]
1122 cls.add_method('GetStart',
1123 'uint32_t',
1124 [],
1125 is_const=True)
1126 ## packet.h (module 'network'): void ns3::ByteTagIterator::Item::GetTag(ns3::Tag & tag) const [member function]
1127 cls.add_method('GetTag',
1128 'void',
1129 [param('ns3::Tag &', 'tag')],
1130 is_const=True)
1131 ## packet.h (module 'network'): ns3::TypeId ns3::ByteTagIterator::Item::GetTypeId() const [member function]
1132 cls.add_method('GetTypeId',
1133 'ns3::TypeId',
1134 [],
1135 is_const=True)
1136 return
1137
1138def register_Ns3ByteTagList_methods(root_module, cls):
1139 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::ByteTagList() [constructor]
1140 cls.add_constructor([])
1141 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::ByteTagList(ns3::ByteTagList const & o) [copy constructor]
1142 cls.add_constructor([param('ns3::ByteTagList const &', 'o')])
1143 ## 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]
1144 cls.add_method('Add',
1145 'ns3::TagBuffer',
1146 [param('ns3::TypeId', 'tid'), param('uint32_t', 'bufferSize'), param('int32_t', 'start'), param('int32_t', 'end')])
1147 ## byte-tag-list.h (module 'network'): void ns3::ByteTagList::Add(ns3::ByteTagList const & o) [member function]
1148 cls.add_method('Add',
1149 'void',
1150 [param('ns3::ByteTagList const &', 'o')])
1151 ## byte-tag-list.h (module 'network'): void ns3::ByteTagList::AddAtEnd(int32_t adjustment, int32_t appendOffset) [member function]
1152 cls.add_method('AddAtEnd',
1153 'void',
1154 [param('int32_t', 'adjustment'), param('int32_t', 'appendOffset')])
1155 ## byte-tag-list.h (module 'network'): void ns3::ByteTagList::AddAtStart(int32_t adjustment, int32_t prependOffset) [member function]
1156 cls.add_method('AddAtStart',
1157 'void',
1158 [param('int32_t', 'adjustment'), param('int32_t', 'prependOffset')])
1159 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator ns3::ByteTagList::Begin(int32_t offsetStart, int32_t offsetEnd) const [member function]
1160 cls.add_method('Begin',
1161 'ns3::ByteTagList::Iterator',
1162 [param('int32_t', 'offsetStart'), param('int32_t', 'offsetEnd')],
1163 is_const=True)
1164 ## byte-tag-list.h (module 'network'): void ns3::ByteTagList::RemoveAll() [member function]
1165 cls.add_method('RemoveAll',
1166 'void',
1167 [])
1168 return
1169
1170def register_Ns3ByteTagListIterator_methods(root_module, cls):
1171 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Iterator(ns3::ByteTagList::Iterator const & arg0) [copy constructor]
1172 cls.add_constructor([param('ns3::ByteTagList::Iterator const &', 'arg0')])
1173 ## byte-tag-list.h (module 'network'): uint32_t ns3::ByteTagList::Iterator::GetOffsetStart() const [member function]
1174 cls.add_method('GetOffsetStart',
1175 'uint32_t',
1176 [],
1177 is_const=True)
1178 ## byte-tag-list.h (module 'network'): bool ns3::ByteTagList::Iterator::HasNext() const [member function]
1179 cls.add_method('HasNext',
1180 'bool',
1181 [],
1182 is_const=True)
1183 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item ns3::ByteTagList::Iterator::Next() [member function]
1184 cls.add_method('Next',
1185 'ns3::ByteTagList::Iterator::Item',
1186 [])
1187 return
1188
1189def register_Ns3ByteTagListIteratorItem_methods(root_module, cls):
1190 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::Item(ns3::ByteTagList::Iterator::Item const & arg0) [copy constructor]
1191 cls.add_constructor([param('ns3::ByteTagList::Iterator::Item const &', 'arg0')])
1192 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::Item(ns3::TagBuffer buf) [constructor]
1193 cls.add_constructor([param('ns3::TagBuffer', 'buf')])
1194 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::buf [variable]
1195 cls.add_instance_attribute('buf', 'ns3::TagBuffer', is_const=False)
1196 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::end [variable]
1197 cls.add_instance_attribute('end', 'int32_t', is_const=False)
1198 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::size [variable]
1199 cls.add_instance_attribute('size', 'uint32_t', is_const=False)
1200 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::start [variable]
1201 cls.add_instance_attribute('start', 'int32_t', is_const=False)
1202 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::tid [variable]
1203 cls.add_instance_attribute('tid', 'ns3::TypeId', is_const=False)
1204 return
1205
1206def register_Ns3CallbackBase_methods(root_module, cls):
1207 ## callback.h (module 'core'): ns3::CallbackBase::CallbackBase(ns3::CallbackBase const & arg0) [copy constructor]
1208 cls.add_constructor([param('ns3::CallbackBase const &', 'arg0')])
1209 ## callback.h (module 'core'): ns3::CallbackBase::CallbackBase() [constructor]
1210 cls.add_constructor([])
1211 ## callback.h (module 'core'): ns3::Ptr<ns3::CallbackImplBase> ns3::CallbackBase::GetImpl() const [member function]
1212 cls.add_method('GetImpl',
1213 'ns3::Ptr< ns3::CallbackImplBase >',
1214 [],
1215 is_const=True)
1216 ## callback.h (module 'core'): ns3::CallbackBase::CallbackBase(ns3::Ptr<ns3::CallbackImplBase> impl) [constructor]
1217 cls.add_constructor([param('ns3::Ptr< ns3::CallbackImplBase >', 'impl')],
1218 visibility='protected')
1219 ## callback.h (module 'core'): static std::string ns3::CallbackBase::Demangle(std::string const & mangled) [member function]
1220 cls.add_method('Demangle',
1221 'std::string',
1222 [param('std::string const &', 'mangled')],
1223 is_static=True, visibility='protected')
1224 return
1225
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001226def register_Ns3EventId_methods(root_module, cls):
1227 cls.add_binary_comparison_operator('!=')
1228 cls.add_binary_comparison_operator('==')
1229 ## event-id.h (module 'core'): ns3::EventId::EventId(ns3::EventId const & arg0) [copy constructor]
1230 cls.add_constructor([param('ns3::EventId const &', 'arg0')])
1231 ## event-id.h (module 'core'): ns3::EventId::EventId() [constructor]
1232 cls.add_constructor([])
1233 ## event-id.h (module 'core'): ns3::EventId::EventId(ns3::Ptr<ns3::EventImpl> const & impl, uint64_t ts, uint32_t context, uint32_t uid) [constructor]
1234 cls.add_constructor([param('ns3::Ptr< ns3::EventImpl > const &', 'impl'), param('uint64_t', 'ts'), param('uint32_t', 'context'), param('uint32_t', 'uid')])
1235 ## event-id.h (module 'core'): void ns3::EventId::Cancel() [member function]
1236 cls.add_method('Cancel',
1237 'void',
1238 [])
1239 ## event-id.h (module 'core'): uint32_t ns3::EventId::GetContext() const [member function]
1240 cls.add_method('GetContext',
1241 'uint32_t',
1242 [],
1243 is_const=True)
1244 ## event-id.h (module 'core'): uint64_t ns3::EventId::GetTs() const [member function]
1245 cls.add_method('GetTs',
1246 'uint64_t',
1247 [],
1248 is_const=True)
1249 ## event-id.h (module 'core'): uint32_t ns3::EventId::GetUid() const [member function]
1250 cls.add_method('GetUid',
1251 'uint32_t',
1252 [],
1253 is_const=True)
1254 ## event-id.h (module 'core'): bool ns3::EventId::IsExpired() const [member function]
1255 cls.add_method('IsExpired',
1256 'bool',
1257 [],
1258 is_const=True)
1259 ## event-id.h (module 'core'): bool ns3::EventId::IsRunning() const [member function]
1260 cls.add_method('IsRunning',
1261 'bool',
1262 [],
1263 is_const=True)
1264 ## event-id.h (module 'core'): ns3::EventImpl * ns3::EventId::PeekEventImpl() const [member function]
1265 cls.add_method('PeekEventImpl',
1266 'ns3::EventImpl *',
1267 [],
1268 is_const=True)
1269 return
1270
1271def register_Ns3Ipv4Address_methods(root_module, cls):
1272 cls.add_binary_comparison_operator('!=')
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07001273 cls.add_output_stream_operator()
Alexander Afanasyeva28ec562012-10-25 14:07:32 -07001274 cls.add_binary_comparison_operator('==')
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001275 cls.add_binary_comparison_operator('<')
1276 ## ipv4-address.h (module 'network'): ns3::Ipv4Address::Ipv4Address(ns3::Ipv4Address const & arg0) [copy constructor]
1277 cls.add_constructor([param('ns3::Ipv4Address const &', 'arg0')])
1278 ## ipv4-address.h (module 'network'): ns3::Ipv4Address::Ipv4Address() [constructor]
1279 cls.add_constructor([])
1280 ## ipv4-address.h (module 'network'): ns3::Ipv4Address::Ipv4Address(uint32_t address) [constructor]
1281 cls.add_constructor([param('uint32_t', 'address')])
1282 ## ipv4-address.h (module 'network'): ns3::Ipv4Address::Ipv4Address(char const * address) [constructor]
1283 cls.add_constructor([param('char const *', 'address')])
1284 ## ipv4-address.h (module 'network'): ns3::Ipv4Address ns3::Ipv4Address::CombineMask(ns3::Ipv4Mask const & mask) const [member function]
1285 cls.add_method('CombineMask',
1286 'ns3::Ipv4Address',
1287 [param('ns3::Ipv4Mask const &', 'mask')],
1288 is_const=True)
1289 ## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::ConvertFrom(ns3::Address const & address) [member function]
1290 cls.add_method('ConvertFrom',
1291 'ns3::Ipv4Address',
1292 [param('ns3::Address const &', 'address')],
1293 is_static=True)
1294 ## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::Deserialize(uint8_t const * buf) [member function]
1295 cls.add_method('Deserialize',
1296 'ns3::Ipv4Address',
1297 [param('uint8_t const *', 'buf')],
1298 is_static=True)
Alexander Afanasyev4052f952012-06-08 17:57:59 -07001299 ## ipv4-address.h (module 'network'): uint32_t ns3::Ipv4Address::Get() const [member function]
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001300 cls.add_method('Get',
Alexander Afanasyev4052f952012-06-08 17:57:59 -07001301 'uint32_t',
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001302 [],
1303 is_const=True)
1304 ## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::GetAny() [member function]
1305 cls.add_method('GetAny',
1306 'ns3::Ipv4Address',
1307 [],
1308 is_static=True)
1309 ## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::GetBroadcast() [member function]
1310 cls.add_method('GetBroadcast',
1311 'ns3::Ipv4Address',
1312 [],
1313 is_static=True)
1314 ## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::GetLoopback() [member function]
1315 cls.add_method('GetLoopback',
1316 'ns3::Ipv4Address',
1317 [],
1318 is_static=True)
1319 ## ipv4-address.h (module 'network'): ns3::Ipv4Address ns3::Ipv4Address::GetSubnetDirectedBroadcast(ns3::Ipv4Mask const & mask) const [member function]
1320 cls.add_method('GetSubnetDirectedBroadcast',
1321 'ns3::Ipv4Address',
1322 [param('ns3::Ipv4Mask const &', 'mask')],
1323 is_const=True)
1324 ## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::GetZero() [member function]
1325 cls.add_method('GetZero',
1326 'ns3::Ipv4Address',
1327 [],
1328 is_static=True)
1329 ## ipv4-address.h (module 'network'): bool ns3::Ipv4Address::IsBroadcast() const [member function]
1330 cls.add_method('IsBroadcast',
1331 'bool',
1332 [],
1333 is_const=True)
1334 ## ipv4-address.h (module 'network'): bool ns3::Ipv4Address::IsEqual(ns3::Ipv4Address const & other) const [member function]
1335 cls.add_method('IsEqual',
1336 'bool',
1337 [param('ns3::Ipv4Address const &', 'other')],
1338 is_const=True)
1339 ## ipv4-address.h (module 'network'): bool ns3::Ipv4Address::IsLocalMulticast() const [member function]
1340 cls.add_method('IsLocalMulticast',
1341 'bool',
1342 [],
1343 is_const=True)
1344 ## ipv4-address.h (module 'network'): static bool ns3::Ipv4Address::IsMatchingType(ns3::Address const & address) [member function]
1345 cls.add_method('IsMatchingType',
1346 'bool',
1347 [param('ns3::Address const &', 'address')],
1348 is_static=True)
1349 ## ipv4-address.h (module 'network'): bool ns3::Ipv4Address::IsMulticast() const [member function]
1350 cls.add_method('IsMulticast',
1351 'bool',
1352 [],
1353 is_const=True)
1354 ## ipv4-address.h (module 'network'): bool ns3::Ipv4Address::IsSubnetDirectedBroadcast(ns3::Ipv4Mask const & mask) const [member function]
1355 cls.add_method('IsSubnetDirectedBroadcast',
1356 'bool',
1357 [param('ns3::Ipv4Mask const &', 'mask')],
1358 is_const=True)
1359 ## ipv4-address.h (module 'network'): void ns3::Ipv4Address::Print(std::ostream & os) const [member function]
1360 cls.add_method('Print',
1361 'void',
1362 [param('std::ostream &', 'os')],
1363 is_const=True)
1364 ## ipv4-address.h (module 'network'): void ns3::Ipv4Address::Serialize(uint8_t * buf) const [member function]
1365 cls.add_method('Serialize',
1366 'void',
1367 [param('uint8_t *', 'buf')],
1368 is_const=True)
1369 ## ipv4-address.h (module 'network'): void ns3::Ipv4Address::Set(uint32_t address) [member function]
1370 cls.add_method('Set',
1371 'void',
1372 [param('uint32_t', 'address')])
1373 ## ipv4-address.h (module 'network'): void ns3::Ipv4Address::Set(char const * address) [member function]
1374 cls.add_method('Set',
1375 'void',
1376 [param('char const *', 'address')])
1377 return
1378
1379def register_Ns3Ipv4Mask_methods(root_module, cls):
1380 cls.add_binary_comparison_operator('!=')
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07001381 cls.add_output_stream_operator()
Alexander Afanasyeva28ec562012-10-25 14:07:32 -07001382 cls.add_binary_comparison_operator('==')
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001383 ## ipv4-address.h (module 'network'): ns3::Ipv4Mask::Ipv4Mask(ns3::Ipv4Mask const & arg0) [copy constructor]
1384 cls.add_constructor([param('ns3::Ipv4Mask const &', 'arg0')])
1385 ## ipv4-address.h (module 'network'): ns3::Ipv4Mask::Ipv4Mask() [constructor]
1386 cls.add_constructor([])
1387 ## ipv4-address.h (module 'network'): ns3::Ipv4Mask::Ipv4Mask(uint32_t mask) [constructor]
1388 cls.add_constructor([param('uint32_t', 'mask')])
1389 ## ipv4-address.h (module 'network'): ns3::Ipv4Mask::Ipv4Mask(char const * mask) [constructor]
1390 cls.add_constructor([param('char const *', 'mask')])
1391 ## ipv4-address.h (module 'network'): uint32_t ns3::Ipv4Mask::Get() const [member function]
1392 cls.add_method('Get',
1393 'uint32_t',
1394 [],
1395 is_const=True)
1396 ## ipv4-address.h (module 'network'): uint32_t ns3::Ipv4Mask::GetInverse() const [member function]
1397 cls.add_method('GetInverse',
1398 'uint32_t',
1399 [],
1400 is_const=True)
1401 ## ipv4-address.h (module 'network'): static ns3::Ipv4Mask ns3::Ipv4Mask::GetLoopback() [member function]
1402 cls.add_method('GetLoopback',
1403 'ns3::Ipv4Mask',
1404 [],
1405 is_static=True)
1406 ## ipv4-address.h (module 'network'): static ns3::Ipv4Mask ns3::Ipv4Mask::GetOnes() [member function]
1407 cls.add_method('GetOnes',
1408 'ns3::Ipv4Mask',
1409 [],
1410 is_static=True)
1411 ## ipv4-address.h (module 'network'): uint16_t ns3::Ipv4Mask::GetPrefixLength() const [member function]
1412 cls.add_method('GetPrefixLength',
1413 'uint16_t',
1414 [],
1415 is_const=True)
1416 ## ipv4-address.h (module 'network'): static ns3::Ipv4Mask ns3::Ipv4Mask::GetZero() [member function]
1417 cls.add_method('GetZero',
1418 'ns3::Ipv4Mask',
1419 [],
1420 is_static=True)
1421 ## ipv4-address.h (module 'network'): bool ns3::Ipv4Mask::IsEqual(ns3::Ipv4Mask other) const [member function]
1422 cls.add_method('IsEqual',
1423 'bool',
1424 [param('ns3::Ipv4Mask', 'other')],
1425 is_const=True)
1426 ## ipv4-address.h (module 'network'): bool ns3::Ipv4Mask::IsMatch(ns3::Ipv4Address a, ns3::Ipv4Address b) const [member function]
1427 cls.add_method('IsMatch',
1428 'bool',
1429 [param('ns3::Ipv4Address', 'a'), param('ns3::Ipv4Address', 'b')],
1430 is_const=True)
1431 ## ipv4-address.h (module 'network'): void ns3::Ipv4Mask::Print(std::ostream & os) const [member function]
1432 cls.add_method('Print',
1433 'void',
1434 [param('std::ostream &', 'os')],
1435 is_const=True)
1436 ## ipv4-address.h (module 'network'): void ns3::Ipv4Mask::Set(uint32_t mask) [member function]
1437 cls.add_method('Set',
1438 'void',
1439 [param('uint32_t', 'mask')])
1440 return
1441
1442def register_Ns3Ipv6Address_methods(root_module, cls):
1443 cls.add_binary_comparison_operator('!=')
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07001444 cls.add_output_stream_operator()
Alexander Afanasyeva28ec562012-10-25 14:07:32 -07001445 cls.add_binary_comparison_operator('==')
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001446 cls.add_binary_comparison_operator('<')
1447 ## ipv6-address.h (module 'network'): ns3::Ipv6Address::Ipv6Address() [constructor]
1448 cls.add_constructor([])
1449 ## ipv6-address.h (module 'network'): ns3::Ipv6Address::Ipv6Address(char const * address) [constructor]
1450 cls.add_constructor([param('char const *', 'address')])
1451 ## ipv6-address.h (module 'network'): ns3::Ipv6Address::Ipv6Address(uint8_t * address) [constructor]
1452 cls.add_constructor([param('uint8_t *', 'address')])
1453 ## ipv6-address.h (module 'network'): ns3::Ipv6Address::Ipv6Address(ns3::Ipv6Address const & addr) [copy constructor]
1454 cls.add_constructor([param('ns3::Ipv6Address const &', 'addr')])
1455 ## ipv6-address.h (module 'network'): ns3::Ipv6Address::Ipv6Address(ns3::Ipv6Address const * addr) [constructor]
1456 cls.add_constructor([param('ns3::Ipv6Address const *', 'addr')])
1457 ## ipv6-address.h (module 'network'): ns3::Ipv6Address ns3::Ipv6Address::CombinePrefix(ns3::Ipv6Prefix const & prefix) [member function]
1458 cls.add_method('CombinePrefix',
1459 'ns3::Ipv6Address',
1460 [param('ns3::Ipv6Prefix const &', 'prefix')])
1461 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::ConvertFrom(ns3::Address const & address) [member function]
1462 cls.add_method('ConvertFrom',
1463 'ns3::Ipv6Address',
1464 [param('ns3::Address const &', 'address')],
1465 is_static=True)
1466 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::Deserialize(uint8_t const * buf) [member function]
1467 cls.add_method('Deserialize',
1468 'ns3::Ipv6Address',
1469 [param('uint8_t const *', 'buf')],
1470 is_static=True)
1471 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetAllHostsMulticast() [member function]
1472 cls.add_method('GetAllHostsMulticast',
1473 'ns3::Ipv6Address',
1474 [],
1475 is_static=True)
1476 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetAllNodesMulticast() [member function]
1477 cls.add_method('GetAllNodesMulticast',
1478 'ns3::Ipv6Address',
1479 [],
1480 is_static=True)
1481 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetAllRoutersMulticast() [member function]
1482 cls.add_method('GetAllRoutersMulticast',
1483 'ns3::Ipv6Address',
1484 [],
1485 is_static=True)
1486 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetAny() [member function]
1487 cls.add_method('GetAny',
1488 'ns3::Ipv6Address',
1489 [],
1490 is_static=True)
1491 ## ipv6-address.h (module 'network'): void ns3::Ipv6Address::GetBytes(uint8_t * buf) const [member function]
1492 cls.add_method('GetBytes',
1493 'void',
1494 [param('uint8_t *', 'buf')],
1495 is_const=True)
Alexander Afanasyev6f933532012-02-29 13:30:37 -08001496 ## ipv6-address.h (module 'network'): ns3::Ipv4Address ns3::Ipv6Address::GetIpv4MappedAddress() const [member function]
1497 cls.add_method('GetIpv4MappedAddress',
1498 'ns3::Ipv4Address',
1499 [],
1500 is_const=True)
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001501 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetLoopback() [member function]
1502 cls.add_method('GetLoopback',
1503 'ns3::Ipv6Address',
1504 [],
1505 is_static=True)
1506 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetOnes() [member function]
1507 cls.add_method('GetOnes',
1508 'ns3::Ipv6Address',
1509 [],
1510 is_static=True)
1511 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetZero() [member function]
1512 cls.add_method('GetZero',
1513 'ns3::Ipv6Address',
1514 [],
1515 is_static=True)
1516 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsAllHostsMulticast() const [member function]
1517 cls.add_method('IsAllHostsMulticast',
1518 'bool',
1519 [],
1520 is_const=True)
1521 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsAllNodesMulticast() const [member function]
1522 cls.add_method('IsAllNodesMulticast',
1523 'bool',
1524 [],
1525 is_const=True)
1526 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsAllRoutersMulticast() const [member function]
1527 cls.add_method('IsAllRoutersMulticast',
1528 'bool',
1529 [],
1530 is_const=True)
1531 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsAny() const [member function]
1532 cls.add_method('IsAny',
1533 'bool',
1534 [],
1535 is_const=True)
1536 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsEqual(ns3::Ipv6Address const & other) const [member function]
1537 cls.add_method('IsEqual',
1538 'bool',
1539 [param('ns3::Ipv6Address const &', 'other')],
1540 is_const=True)
Alexander Afanasyev6f933532012-02-29 13:30:37 -08001541 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsIpv4MappedAddress() [member function]
1542 cls.add_method('IsIpv4MappedAddress',
1543 'bool',
1544 [])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001545 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsLinkLocal() const [member function]
1546 cls.add_method('IsLinkLocal',
1547 'bool',
1548 [],
1549 is_const=True)
Alexander Afanasyev6f933532012-02-29 13:30:37 -08001550 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsLinkLocalMulticast() const [member function]
1551 cls.add_method('IsLinkLocalMulticast',
1552 'bool',
1553 [],
1554 is_const=True)
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001555 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsLocalhost() const [member function]
1556 cls.add_method('IsLocalhost',
1557 'bool',
1558 [],
1559 is_const=True)
1560 ## ipv6-address.h (module 'network'): static bool ns3::Ipv6Address::IsMatchingType(ns3::Address const & address) [member function]
1561 cls.add_method('IsMatchingType',
1562 'bool',
1563 [param('ns3::Address const &', 'address')],
1564 is_static=True)
1565 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsMulticast() const [member function]
1566 cls.add_method('IsMulticast',
1567 'bool',
1568 [],
1569 is_const=True)
1570 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsSolicitedMulticast() const [member function]
1571 cls.add_method('IsSolicitedMulticast',
1572 'bool',
1573 [],
1574 is_const=True)
1575 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::MakeAutoconfiguredAddress(ns3::Mac48Address addr, ns3::Ipv6Address prefix) [member function]
1576 cls.add_method('MakeAutoconfiguredAddress',
1577 'ns3::Ipv6Address',
1578 [param('ns3::Mac48Address', 'addr'), param('ns3::Ipv6Address', 'prefix')],
1579 is_static=True)
1580 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::MakeAutoconfiguredLinkLocalAddress(ns3::Mac48Address mac) [member function]
1581 cls.add_method('MakeAutoconfiguredLinkLocalAddress',
1582 'ns3::Ipv6Address',
1583 [param('ns3::Mac48Address', 'mac')],
1584 is_static=True)
Alexander Afanasyev6f933532012-02-29 13:30:37 -08001585 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::MakeIpv4MappedAddress(ns3::Ipv4Address addr) [member function]
1586 cls.add_method('MakeIpv4MappedAddress',
1587 'ns3::Ipv6Address',
1588 [param('ns3::Ipv4Address', 'addr')],
1589 is_static=True)
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001590 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::MakeSolicitedAddress(ns3::Ipv6Address addr) [member function]
1591 cls.add_method('MakeSolicitedAddress',
1592 'ns3::Ipv6Address',
1593 [param('ns3::Ipv6Address', 'addr')],
1594 is_static=True)
1595 ## ipv6-address.h (module 'network'): void ns3::Ipv6Address::Print(std::ostream & os) const [member function]
1596 cls.add_method('Print',
1597 'void',
1598 [param('std::ostream &', 'os')],
1599 is_const=True)
1600 ## ipv6-address.h (module 'network'): void ns3::Ipv6Address::Serialize(uint8_t * buf) const [member function]
1601 cls.add_method('Serialize',
1602 'void',
1603 [param('uint8_t *', 'buf')],
1604 is_const=True)
1605 ## ipv6-address.h (module 'network'): void ns3::Ipv6Address::Set(char const * address) [member function]
1606 cls.add_method('Set',
1607 'void',
1608 [param('char const *', 'address')])
1609 ## ipv6-address.h (module 'network'): void ns3::Ipv6Address::Set(uint8_t * address) [member function]
1610 cls.add_method('Set',
1611 'void',
1612 [param('uint8_t *', 'address')])
1613 return
1614
1615def register_Ns3Ipv6Prefix_methods(root_module, cls):
1616 cls.add_binary_comparison_operator('!=')
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07001617 cls.add_output_stream_operator()
Alexander Afanasyeva28ec562012-10-25 14:07:32 -07001618 cls.add_binary_comparison_operator('==')
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001619 ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix() [constructor]
1620 cls.add_constructor([])
1621 ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix(uint8_t * prefix) [constructor]
1622 cls.add_constructor([param('uint8_t *', 'prefix')])
1623 ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix(char const * prefix) [constructor]
1624 cls.add_constructor([param('char const *', 'prefix')])
1625 ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix(uint8_t prefix) [constructor]
1626 cls.add_constructor([param('uint8_t', 'prefix')])
1627 ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix(ns3::Ipv6Prefix const & prefix) [copy constructor]
1628 cls.add_constructor([param('ns3::Ipv6Prefix const &', 'prefix')])
1629 ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix(ns3::Ipv6Prefix const * prefix) [constructor]
1630 cls.add_constructor([param('ns3::Ipv6Prefix const *', 'prefix')])
1631 ## ipv6-address.h (module 'network'): void ns3::Ipv6Prefix::GetBytes(uint8_t * buf) const [member function]
1632 cls.add_method('GetBytes',
1633 'void',
1634 [param('uint8_t *', 'buf')],
1635 is_const=True)
1636 ## ipv6-address.h (module 'network'): static ns3::Ipv6Prefix ns3::Ipv6Prefix::GetLoopback() [member function]
1637 cls.add_method('GetLoopback',
1638 'ns3::Ipv6Prefix',
1639 [],
1640 is_static=True)
1641 ## ipv6-address.h (module 'network'): static ns3::Ipv6Prefix ns3::Ipv6Prefix::GetOnes() [member function]
1642 cls.add_method('GetOnes',
1643 'ns3::Ipv6Prefix',
1644 [],
1645 is_static=True)
1646 ## ipv6-address.h (module 'network'): uint8_t ns3::Ipv6Prefix::GetPrefixLength() const [member function]
1647 cls.add_method('GetPrefixLength',
1648 'uint8_t',
1649 [],
1650 is_const=True)
1651 ## ipv6-address.h (module 'network'): static ns3::Ipv6Prefix ns3::Ipv6Prefix::GetZero() [member function]
1652 cls.add_method('GetZero',
1653 'ns3::Ipv6Prefix',
1654 [],
1655 is_static=True)
1656 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Prefix::IsEqual(ns3::Ipv6Prefix const & other) const [member function]
1657 cls.add_method('IsEqual',
1658 'bool',
1659 [param('ns3::Ipv6Prefix const &', 'other')],
1660 is_const=True)
1661 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Prefix::IsMatch(ns3::Ipv6Address a, ns3::Ipv6Address b) const [member function]
1662 cls.add_method('IsMatch',
1663 'bool',
1664 [param('ns3::Ipv6Address', 'a'), param('ns3::Ipv6Address', 'b')],
1665 is_const=True)
1666 ## ipv6-address.h (module 'network'): void ns3::Ipv6Prefix::Print(std::ostream & os) const [member function]
1667 cls.add_method('Print',
1668 'void',
1669 [param('std::ostream &', 'os')],
1670 is_const=True)
1671 return
1672
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07001673def register_Ns3NetDeviceContainer_methods(root_module, cls):
1674 ## net-device-container.h (module 'network'): ns3::NetDeviceContainer::NetDeviceContainer(ns3::NetDeviceContainer const & arg0) [copy constructor]
1675 cls.add_constructor([param('ns3::NetDeviceContainer const &', 'arg0')])
1676 ## net-device-container.h (module 'network'): ns3::NetDeviceContainer::NetDeviceContainer() [constructor]
1677 cls.add_constructor([])
1678 ## net-device-container.h (module 'network'): ns3::NetDeviceContainer::NetDeviceContainer(ns3::Ptr<ns3::NetDevice> dev) [constructor]
1679 cls.add_constructor([param('ns3::Ptr< ns3::NetDevice >', 'dev')])
1680 ## net-device-container.h (module 'network'): ns3::NetDeviceContainer::NetDeviceContainer(std::string devName) [constructor]
1681 cls.add_constructor([param('std::string', 'devName')])
1682 ## net-device-container.h (module 'network'): ns3::NetDeviceContainer::NetDeviceContainer(ns3::NetDeviceContainer const & a, ns3::NetDeviceContainer const & b) [constructor]
1683 cls.add_constructor([param('ns3::NetDeviceContainer const &', 'a'), param('ns3::NetDeviceContainer const &', 'b')])
1684 ## net-device-container.h (module 'network'): void ns3::NetDeviceContainer::Add(ns3::NetDeviceContainer other) [member function]
1685 cls.add_method('Add',
1686 'void',
1687 [param('ns3::NetDeviceContainer', 'other')])
1688 ## net-device-container.h (module 'network'): void ns3::NetDeviceContainer::Add(ns3::Ptr<ns3::NetDevice> device) [member function]
1689 cls.add_method('Add',
1690 'void',
1691 [param('ns3::Ptr< ns3::NetDevice >', 'device')])
1692 ## net-device-container.h (module 'network'): void ns3::NetDeviceContainer::Add(std::string deviceName) [member function]
1693 cls.add_method('Add',
1694 'void',
1695 [param('std::string', 'deviceName')])
1696 ## 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]
1697 cls.add_method('Begin',
1698 '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::NetDevice > const, std::vector< ns3::Ptr< ns3::NetDevice > > >',
1699 [],
1700 is_const=True)
1701 ## 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]
1702 cls.add_method('End',
1703 '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::NetDevice > const, std::vector< ns3::Ptr< ns3::NetDevice > > >',
1704 [],
1705 is_const=True)
1706 ## net-device-container.h (module 'network'): ns3::Ptr<ns3::NetDevice> ns3::NetDeviceContainer::Get(uint32_t i) const [member function]
1707 cls.add_method('Get',
1708 'ns3::Ptr< ns3::NetDevice >',
1709 [param('uint32_t', 'i')],
1710 is_const=True)
1711 ## net-device-container.h (module 'network'): uint32_t ns3::NetDeviceContainer::GetN() const [member function]
1712 cls.add_method('GetN',
1713 'uint32_t',
1714 [],
1715 is_const=True)
1716 return
1717
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001718def register_Ns3NodeContainer_methods(root_module, cls):
1719 ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer(ns3::NodeContainer const & arg0) [copy constructor]
1720 cls.add_constructor([param('ns3::NodeContainer const &', 'arg0')])
1721 ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer() [constructor]
1722 cls.add_constructor([])
1723 ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer(ns3::Ptr<ns3::Node> node) [constructor]
1724 cls.add_constructor([param('ns3::Ptr< ns3::Node >', 'node')])
1725 ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer(std::string nodeName) [constructor]
1726 cls.add_constructor([param('std::string', 'nodeName')])
1727 ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer(ns3::NodeContainer const & a, ns3::NodeContainer const & b) [constructor]
1728 cls.add_constructor([param('ns3::NodeContainer const &', 'a'), param('ns3::NodeContainer const &', 'b')])
1729 ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer(ns3::NodeContainer const & a, ns3::NodeContainer const & b, ns3::NodeContainer const & c) [constructor]
1730 cls.add_constructor([param('ns3::NodeContainer const &', 'a'), param('ns3::NodeContainer const &', 'b'), param('ns3::NodeContainer const &', 'c')])
1731 ## 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]
1732 cls.add_constructor([param('ns3::NodeContainer const &', 'a'), param('ns3::NodeContainer const &', 'b'), param('ns3::NodeContainer const &', 'c'), param('ns3::NodeContainer const &', 'd')])
1733 ## 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]
1734 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')])
1735 ## node-container.h (module 'network'): void ns3::NodeContainer::Add(ns3::NodeContainer other) [member function]
1736 cls.add_method('Add',
1737 'void',
1738 [param('ns3::NodeContainer', 'other')])
1739 ## node-container.h (module 'network'): void ns3::NodeContainer::Add(ns3::Ptr<ns3::Node> node) [member function]
1740 cls.add_method('Add',
1741 'void',
1742 [param('ns3::Ptr< ns3::Node >', 'node')])
1743 ## node-container.h (module 'network'): void ns3::NodeContainer::Add(std::string nodeName) [member function]
1744 cls.add_method('Add',
1745 'void',
1746 [param('std::string', 'nodeName')])
1747 ## 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]
1748 cls.add_method('Begin',
1749 '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Node > const, std::vector< ns3::Ptr< ns3::Node > > >',
1750 [],
1751 is_const=True)
1752 ## node-container.h (module 'network'): void ns3::NodeContainer::Create(uint32_t n) [member function]
1753 cls.add_method('Create',
1754 'void',
1755 [param('uint32_t', 'n')])
1756 ## node-container.h (module 'network'): void ns3::NodeContainer::Create(uint32_t n, uint32_t systemId) [member function]
1757 cls.add_method('Create',
1758 'void',
1759 [param('uint32_t', 'n'), param('uint32_t', 'systemId')])
1760 ## 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]
1761 cls.add_method('End',
1762 '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Node > const, std::vector< ns3::Ptr< ns3::Node > > >',
1763 [],
1764 is_const=True)
1765 ## node-container.h (module 'network'): ns3::Ptr<ns3::Node> ns3::NodeContainer::Get(uint32_t i) const [member function]
1766 cls.add_method('Get',
1767 'ns3::Ptr< ns3::Node >',
1768 [param('uint32_t', 'i')],
1769 is_const=True)
1770 ## node-container.h (module 'network'): static ns3::NodeContainer ns3::NodeContainer::GetGlobal() [member function]
1771 cls.add_method('GetGlobal',
1772 'ns3::NodeContainer',
1773 [],
1774 is_static=True)
1775 ## node-container.h (module 'network'): uint32_t ns3::NodeContainer::GetN() const [member function]
1776 cls.add_method('GetN',
1777 'uint32_t',
1778 [],
1779 is_const=True)
Alexander Afanasyev858d5312013-07-10 18:50:18 -07001780 ## 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]
1781 cls.add_method('begin',
1782 '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Node > const, std::vector< ns3::Ptr< ns3::Node > > >',
1783 [],
1784 is_const=True)
1785 ## node-container.h (module 'network'): __gnu_cxx::__normal_iterator<ns3::Ptr<ns3::Node>*,std::vector<ns3::Ptr<ns3::Node>, std::allocator<ns3::Ptr<ns3::Node> > > > ns3::NodeContainer::begin() [member function]
1786 cls.add_method('begin',
1787 '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Node >, std::vector< ns3::Ptr< ns3::Node > > >',
1788 [])
1789 ## 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]
1790 cls.add_method('end',
1791 '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Node > const, std::vector< ns3::Ptr< ns3::Node > > >',
1792 [],
1793 is_const=True)
1794 ## node-container.h (module 'network'): __gnu_cxx::__normal_iterator<ns3::Ptr<ns3::Node>*,std::vector<ns3::Ptr<ns3::Node>, std::allocator<ns3::Ptr<ns3::Node> > > > ns3::NodeContainer::end() [member function]
1795 cls.add_method('end',
1796 '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Node >, std::vector< ns3::Ptr< ns3::Node > > >',
1797 [])
1798 ## node-container.h (module 'network'): uint32_t ns3::NodeContainer::size() const [member function]
1799 cls.add_method('size',
1800 'uint32_t',
1801 [],
1802 is_const=True)
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001803 return
1804
1805def register_Ns3ObjectBase_methods(root_module, cls):
1806 ## object-base.h (module 'core'): ns3::ObjectBase::ObjectBase() [constructor]
1807 cls.add_constructor([])
1808 ## object-base.h (module 'core'): ns3::ObjectBase::ObjectBase(ns3::ObjectBase const & arg0) [copy constructor]
1809 cls.add_constructor([param('ns3::ObjectBase const &', 'arg0')])
1810 ## object-base.h (module 'core'): void ns3::ObjectBase::GetAttribute(std::string name, ns3::AttributeValue & value) const [member function]
1811 cls.add_method('GetAttribute',
1812 'void',
1813 [param('std::string', 'name'), param('ns3::AttributeValue &', 'value')],
1814 is_const=True)
1815 ## object-base.h (module 'core'): bool ns3::ObjectBase::GetAttributeFailSafe(std::string name, ns3::AttributeValue & attribute) const [member function]
1816 cls.add_method('GetAttributeFailSafe',
1817 'bool',
1818 [param('std::string', 'name'), param('ns3::AttributeValue &', 'attribute')],
1819 is_const=True)
1820 ## object-base.h (module 'core'): ns3::TypeId ns3::ObjectBase::GetInstanceTypeId() const [member function]
1821 cls.add_method('GetInstanceTypeId',
1822 'ns3::TypeId',
1823 [],
1824 is_pure_virtual=True, is_const=True, is_virtual=True)
1825 ## object-base.h (module 'core'): static ns3::TypeId ns3::ObjectBase::GetTypeId() [member function]
1826 cls.add_method('GetTypeId',
1827 'ns3::TypeId',
1828 [],
1829 is_static=True)
1830 ## object-base.h (module 'core'): void ns3::ObjectBase::SetAttribute(std::string name, ns3::AttributeValue const & value) [member function]
1831 cls.add_method('SetAttribute',
1832 'void',
1833 [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')])
1834 ## object-base.h (module 'core'): bool ns3::ObjectBase::SetAttributeFailSafe(std::string name, ns3::AttributeValue const & value) [member function]
1835 cls.add_method('SetAttributeFailSafe',
1836 'bool',
1837 [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')])
1838 ## object-base.h (module 'core'): bool ns3::ObjectBase::TraceConnect(std::string name, std::string context, ns3::CallbackBase const & cb) [member function]
1839 cls.add_method('TraceConnect',
1840 'bool',
1841 [param('std::string', 'name'), param('std::string', 'context'), param('ns3::CallbackBase const &', 'cb')])
1842 ## object-base.h (module 'core'): bool ns3::ObjectBase::TraceConnectWithoutContext(std::string name, ns3::CallbackBase const & cb) [member function]
1843 cls.add_method('TraceConnectWithoutContext',
1844 'bool',
1845 [param('std::string', 'name'), param('ns3::CallbackBase const &', 'cb')])
1846 ## object-base.h (module 'core'): bool ns3::ObjectBase::TraceDisconnect(std::string name, std::string context, ns3::CallbackBase const & cb) [member function]
1847 cls.add_method('TraceDisconnect',
1848 'bool',
1849 [param('std::string', 'name'), param('std::string', 'context'), param('ns3::CallbackBase const &', 'cb')])
1850 ## object-base.h (module 'core'): bool ns3::ObjectBase::TraceDisconnectWithoutContext(std::string name, ns3::CallbackBase const & cb) [member function]
1851 cls.add_method('TraceDisconnectWithoutContext',
1852 'bool',
1853 [param('std::string', 'name'), param('ns3::CallbackBase const &', 'cb')])
1854 ## object-base.h (module 'core'): void ns3::ObjectBase::ConstructSelf(ns3::AttributeConstructionList const & attributes) [member function]
1855 cls.add_method('ConstructSelf',
1856 'void',
1857 [param('ns3::AttributeConstructionList const &', 'attributes')],
1858 visibility='protected')
1859 ## object-base.h (module 'core'): void ns3::ObjectBase::NotifyConstructionCompleted() [member function]
1860 cls.add_method('NotifyConstructionCompleted',
1861 'void',
1862 [],
1863 visibility='protected', is_virtual=True)
1864 return
1865
1866def register_Ns3ObjectDeleter_methods(root_module, cls):
1867 ## object.h (module 'core'): ns3::ObjectDeleter::ObjectDeleter() [constructor]
1868 cls.add_constructor([])
1869 ## object.h (module 'core'): ns3::ObjectDeleter::ObjectDeleter(ns3::ObjectDeleter const & arg0) [copy constructor]
1870 cls.add_constructor([param('ns3::ObjectDeleter const &', 'arg0')])
1871 ## object.h (module 'core'): static void ns3::ObjectDeleter::Delete(ns3::Object * object) [member function]
1872 cls.add_method('Delete',
1873 'void',
1874 [param('ns3::Object *', 'object')],
1875 is_static=True)
1876 return
1877
1878def register_Ns3ObjectFactory_methods(root_module, cls):
1879 cls.add_output_stream_operator()
1880 ## object-factory.h (module 'core'): ns3::ObjectFactory::ObjectFactory(ns3::ObjectFactory const & arg0) [copy constructor]
1881 cls.add_constructor([param('ns3::ObjectFactory const &', 'arg0')])
1882 ## object-factory.h (module 'core'): ns3::ObjectFactory::ObjectFactory() [constructor]
1883 cls.add_constructor([])
1884 ## object-factory.h (module 'core'): ns3::ObjectFactory::ObjectFactory(std::string typeId) [constructor]
1885 cls.add_constructor([param('std::string', 'typeId')])
1886 ## object-factory.h (module 'core'): ns3::Ptr<ns3::Object> ns3::ObjectFactory::Create() const [member function]
1887 cls.add_method('Create',
1888 'ns3::Ptr< ns3::Object >',
1889 [],
1890 is_const=True)
1891 ## object-factory.h (module 'core'): ns3::TypeId ns3::ObjectFactory::GetTypeId() const [member function]
1892 cls.add_method('GetTypeId',
1893 'ns3::TypeId',
1894 [],
1895 is_const=True)
1896 ## object-factory.h (module 'core'): void ns3::ObjectFactory::Set(std::string name, ns3::AttributeValue const & value) [member function]
1897 cls.add_method('Set',
1898 'void',
1899 [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')])
1900 ## object-factory.h (module 'core'): void ns3::ObjectFactory::SetTypeId(ns3::TypeId tid) [member function]
1901 cls.add_method('SetTypeId',
1902 'void',
1903 [param('ns3::TypeId', 'tid')])
1904 ## object-factory.h (module 'core'): void ns3::ObjectFactory::SetTypeId(char const * tid) [member function]
1905 cls.add_method('SetTypeId',
1906 'void',
1907 [param('char const *', 'tid')])
1908 ## object-factory.h (module 'core'): void ns3::ObjectFactory::SetTypeId(std::string tid) [member function]
1909 cls.add_method('SetTypeId',
1910 'void',
1911 [param('std::string', 'tid')])
1912 return
1913
1914def register_Ns3PacketMetadata_methods(root_module, cls):
1915 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::PacketMetadata(uint64_t uid, uint32_t size) [constructor]
1916 cls.add_constructor([param('uint64_t', 'uid'), param('uint32_t', 'size')])
1917 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::PacketMetadata(ns3::PacketMetadata const & o) [copy constructor]
1918 cls.add_constructor([param('ns3::PacketMetadata const &', 'o')])
1919 ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::AddAtEnd(ns3::PacketMetadata const & o) [member function]
1920 cls.add_method('AddAtEnd',
1921 'void',
1922 [param('ns3::PacketMetadata const &', 'o')])
1923 ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::AddHeader(ns3::Header const & header, uint32_t size) [member function]
1924 cls.add_method('AddHeader',
1925 'void',
1926 [param('ns3::Header const &', 'header'), param('uint32_t', 'size')])
1927 ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::AddPaddingAtEnd(uint32_t end) [member function]
1928 cls.add_method('AddPaddingAtEnd',
1929 'void',
1930 [param('uint32_t', 'end')])
1931 ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::AddTrailer(ns3::Trailer const & trailer, uint32_t size) [member function]
1932 cls.add_method('AddTrailer',
1933 'void',
1934 [param('ns3::Trailer const &', 'trailer'), param('uint32_t', 'size')])
1935 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::ItemIterator ns3::PacketMetadata::BeginItem(ns3::Buffer buffer) const [member function]
1936 cls.add_method('BeginItem',
1937 'ns3::PacketMetadata::ItemIterator',
1938 [param('ns3::Buffer', 'buffer')],
1939 is_const=True)
1940 ## packet-metadata.h (module 'network'): ns3::PacketMetadata ns3::PacketMetadata::CreateFragment(uint32_t start, uint32_t end) const [member function]
1941 cls.add_method('CreateFragment',
1942 'ns3::PacketMetadata',
1943 [param('uint32_t', 'start'), param('uint32_t', 'end')],
1944 is_const=True)
1945 ## packet-metadata.h (module 'network'): uint32_t ns3::PacketMetadata::Deserialize(uint8_t const * buffer, uint32_t size) [member function]
1946 cls.add_method('Deserialize',
1947 'uint32_t',
1948 [param('uint8_t const *', 'buffer'), param('uint32_t', 'size')])
1949 ## packet-metadata.h (module 'network'): static void ns3::PacketMetadata::Enable() [member function]
1950 cls.add_method('Enable',
1951 'void',
1952 [],
1953 is_static=True)
1954 ## packet-metadata.h (module 'network'): static void ns3::PacketMetadata::EnableChecking() [member function]
1955 cls.add_method('EnableChecking',
1956 'void',
1957 [],
1958 is_static=True)
1959 ## packet-metadata.h (module 'network'): uint32_t ns3::PacketMetadata::GetSerializedSize() const [member function]
1960 cls.add_method('GetSerializedSize',
1961 'uint32_t',
1962 [],
1963 is_const=True)
1964 ## packet-metadata.h (module 'network'): uint64_t ns3::PacketMetadata::GetUid() const [member function]
1965 cls.add_method('GetUid',
1966 'uint64_t',
1967 [],
1968 is_const=True)
1969 ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::RemoveAtEnd(uint32_t end) [member function]
1970 cls.add_method('RemoveAtEnd',
1971 'void',
1972 [param('uint32_t', 'end')])
1973 ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::RemoveAtStart(uint32_t start) [member function]
1974 cls.add_method('RemoveAtStart',
1975 'void',
1976 [param('uint32_t', 'start')])
1977 ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::RemoveHeader(ns3::Header const & header, uint32_t size) [member function]
1978 cls.add_method('RemoveHeader',
1979 'void',
1980 [param('ns3::Header const &', 'header'), param('uint32_t', 'size')])
1981 ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::RemoveTrailer(ns3::Trailer const & trailer, uint32_t size) [member function]
1982 cls.add_method('RemoveTrailer',
1983 'void',
1984 [param('ns3::Trailer const &', 'trailer'), param('uint32_t', 'size')])
1985 ## packet-metadata.h (module 'network'): uint32_t ns3::PacketMetadata::Serialize(uint8_t * buffer, uint32_t maxSize) const [member function]
1986 cls.add_method('Serialize',
1987 'uint32_t',
1988 [param('uint8_t *', 'buffer'), param('uint32_t', 'maxSize')],
1989 is_const=True)
1990 return
1991
1992def register_Ns3PacketMetadataItem_methods(root_module, cls):
1993 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::Item() [constructor]
1994 cls.add_constructor([])
1995 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::Item(ns3::PacketMetadata::Item const & arg0) [copy constructor]
1996 cls.add_constructor([param('ns3::PacketMetadata::Item const &', 'arg0')])
1997 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::current [variable]
1998 cls.add_instance_attribute('current', 'ns3::Buffer::Iterator', is_const=False)
1999 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::currentSize [variable]
2000 cls.add_instance_attribute('currentSize', 'uint32_t', is_const=False)
2001 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::currentTrimedFromEnd [variable]
2002 cls.add_instance_attribute('currentTrimedFromEnd', 'uint32_t', is_const=False)
2003 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::currentTrimedFromStart [variable]
2004 cls.add_instance_attribute('currentTrimedFromStart', 'uint32_t', is_const=False)
2005 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::isFragment [variable]
2006 cls.add_instance_attribute('isFragment', 'bool', is_const=False)
2007 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::tid [variable]
2008 cls.add_instance_attribute('tid', 'ns3::TypeId', is_const=False)
2009 return
2010
2011def register_Ns3PacketMetadataItemIterator_methods(root_module, cls):
2012 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::ItemIterator::ItemIterator(ns3::PacketMetadata::ItemIterator const & arg0) [copy constructor]
2013 cls.add_constructor([param('ns3::PacketMetadata::ItemIterator const &', 'arg0')])
2014 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::ItemIterator::ItemIterator(ns3::PacketMetadata const * metadata, ns3::Buffer buffer) [constructor]
2015 cls.add_constructor([param('ns3::PacketMetadata const *', 'metadata'), param('ns3::Buffer', 'buffer')])
2016 ## packet-metadata.h (module 'network'): bool ns3::PacketMetadata::ItemIterator::HasNext() const [member function]
2017 cls.add_method('HasNext',
2018 'bool',
2019 [],
2020 is_const=True)
2021 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item ns3::PacketMetadata::ItemIterator::Next() [member function]
2022 cls.add_method('Next',
2023 'ns3::PacketMetadata::Item',
2024 [])
2025 return
2026
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07002027def register_Ns3PacketTagIterator_methods(root_module, cls):
2028 ## packet.h (module 'network'): ns3::PacketTagIterator::PacketTagIterator(ns3::PacketTagIterator const & arg0) [copy constructor]
2029 cls.add_constructor([param('ns3::PacketTagIterator const &', 'arg0')])
2030 ## packet.h (module 'network'): bool ns3::PacketTagIterator::HasNext() const [member function]
2031 cls.add_method('HasNext',
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002032 'bool',
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002033 [],
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07002034 is_const=True)
2035 ## packet.h (module 'network'): ns3::PacketTagIterator::Item ns3::PacketTagIterator::Next() [member function]
2036 cls.add_method('Next',
2037 'ns3::PacketTagIterator::Item',
2038 [])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002039 return
2040
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07002041def register_Ns3PacketTagIteratorItem_methods(root_module, cls):
2042 ## packet.h (module 'network'): ns3::PacketTagIterator::Item::Item(ns3::PacketTagIterator::Item const & arg0) [copy constructor]
2043 cls.add_constructor([param('ns3::PacketTagIterator::Item const &', 'arg0')])
2044 ## packet.h (module 'network'): void ns3::PacketTagIterator::Item::GetTag(ns3::Tag & tag) const [member function]
2045 cls.add_method('GetTag',
2046 'void',
2047 [param('ns3::Tag &', 'tag')],
2048 is_const=True)
2049 ## packet.h (module 'network'): ns3::TypeId ns3::PacketTagIterator::Item::GetTypeId() const [member function]
2050 cls.add_method('GetTypeId',
2051 'ns3::TypeId',
2052 [],
2053 is_const=True)
2054 return
2055
2056def register_Ns3PacketTagList_methods(root_module, cls):
2057 ## packet-tag-list.h (module 'network'): ns3::PacketTagList::PacketTagList() [constructor]
2058 cls.add_constructor([])
2059 ## packet-tag-list.h (module 'network'): ns3::PacketTagList::PacketTagList(ns3::PacketTagList const & o) [copy constructor]
2060 cls.add_constructor([param('ns3::PacketTagList const &', 'o')])
2061 ## packet-tag-list.h (module 'network'): void ns3::PacketTagList::Add(ns3::Tag const & tag) const [member function]
2062 cls.add_method('Add',
2063 'void',
2064 [param('ns3::Tag const &', 'tag')],
2065 is_const=True)
2066 ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData const * ns3::PacketTagList::Head() const [member function]
2067 cls.add_method('Head',
2068 'ns3::PacketTagList::TagData const *',
2069 [],
2070 is_const=True)
2071 ## packet-tag-list.h (module 'network'): bool ns3::PacketTagList::Peek(ns3::Tag & tag) const [member function]
2072 cls.add_method('Peek',
2073 'bool',
2074 [param('ns3::Tag &', 'tag')],
2075 is_const=True)
2076 ## packet-tag-list.h (module 'network'): bool ns3::PacketTagList::Remove(ns3::Tag & tag) [member function]
2077 cls.add_method('Remove',
2078 'bool',
2079 [param('ns3::Tag &', 'tag')])
2080 ## packet-tag-list.h (module 'network'): void ns3::PacketTagList::RemoveAll() [member function]
2081 cls.add_method('RemoveAll',
2082 'void',
2083 [])
2084 return
2085
2086def register_Ns3PacketTagListTagData_methods(root_module, cls):
2087 ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData::TagData() [constructor]
2088 cls.add_constructor([])
2089 ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData::TagData(ns3::PacketTagList::TagData const & arg0) [copy constructor]
2090 cls.add_constructor([param('ns3::PacketTagList::TagData const &', 'arg0')])
2091 ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData::count [variable]
2092 cls.add_instance_attribute('count', 'uint32_t', is_const=False)
2093 ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData::data [variable]
2094 cls.add_instance_attribute('data', 'uint8_t [ 20 ]', is_const=False)
2095 ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData::next [variable]
2096 cls.add_instance_attribute('next', 'ns3::PacketTagList::TagData *', is_const=False)
2097 ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData::tid [variable]
2098 cls.add_instance_attribute('tid', 'ns3::TypeId', is_const=False)
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002099 return
2100
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07002101def register_Ns3RandomVariable_methods(root_module, cls):
2102 cls.add_output_stream_operator()
2103 ## random-variable.h (module 'core'): ns3::RandomVariable::RandomVariable() [constructor]
2104 cls.add_constructor([])
2105 ## random-variable.h (module 'core'): ns3::RandomVariable::RandomVariable(ns3::RandomVariable const & o) [copy constructor]
2106 cls.add_constructor([param('ns3::RandomVariable const &', 'o')])
2107 ## random-variable.h (module 'core'): uint32_t ns3::RandomVariable::GetInteger() const [member function]
2108 cls.add_method('GetInteger',
2109 'uint32_t',
2110 [],
2111 is_const=True)
2112 ## random-variable.h (module 'core'): double ns3::RandomVariable::GetValue() const [member function]
2113 cls.add_method('GetValue',
2114 'double',
2115 [],
2116 is_const=True)
2117 return
2118
2119def register_Ns3RngSeedManager_methods(root_module, cls):
2120 ## rng-seed-manager.h (module 'core'): ns3::RngSeedManager::RngSeedManager() [constructor]
2121 cls.add_constructor([])
2122 ## rng-seed-manager.h (module 'core'): ns3::RngSeedManager::RngSeedManager(ns3::RngSeedManager const & arg0) [copy constructor]
2123 cls.add_constructor([param('ns3::RngSeedManager const &', 'arg0')])
2124 ## rng-seed-manager.h (module 'core'): static uint64_t ns3::RngSeedManager::GetNextStreamIndex() [member function]
2125 cls.add_method('GetNextStreamIndex',
2126 'uint64_t',
2127 [],
2128 is_static=True)
2129 ## rng-seed-manager.h (module 'core'): static uint64_t ns3::RngSeedManager::GetRun() [member function]
2130 cls.add_method('GetRun',
2131 'uint64_t',
2132 [],
2133 is_static=True)
2134 ## rng-seed-manager.h (module 'core'): static uint32_t ns3::RngSeedManager::GetSeed() [member function]
2135 cls.add_method('GetSeed',
2136 'uint32_t',
2137 [],
2138 is_static=True)
2139 ## rng-seed-manager.h (module 'core'): static void ns3::RngSeedManager::SetRun(uint64_t run) [member function]
2140 cls.add_method('SetRun',
2141 'void',
2142 [param('uint64_t', 'run')],
2143 is_static=True)
2144 ## rng-seed-manager.h (module 'core'): static void ns3::RngSeedManager::SetSeed(uint32_t seed) [member function]
2145 cls.add_method('SetSeed',
2146 'void',
2147 [param('uint32_t', 'seed')],
2148 is_static=True)
2149 return
2150
Alexander Afanasyev0e4ae8e2013-03-12 15:59:18 -07002151def register_Ns3SequenceNumber32_methods(root_module, cls):
2152 cls.add_binary_comparison_operator('!=')
2153 cls.add_binary_numeric_operator('+', root_module['ns3::SequenceNumber32'], root_module['ns3::SequenceNumber32'], param('ns3::SequenceNumber< unsigned int, int > const &', 'right'))
2154 cls.add_binary_numeric_operator('+', root_module['ns3::SequenceNumber32'], root_module['ns3::SequenceNumber32'], param('int', 'right'))
2155 cls.add_inplace_numeric_operator('+=', param('int', 'right'))
2156 cls.add_binary_numeric_operator('-', root_module['ns3::SequenceNumber32'], root_module['ns3::SequenceNumber32'], param('int', 'right'))
2157 cls.add_inplace_numeric_operator('-=', param('int', 'right'))
2158 cls.add_binary_comparison_operator('<')
2159 cls.add_binary_comparison_operator('<=')
2160 cls.add_binary_comparison_operator('==')
2161 cls.add_binary_comparison_operator('>')
2162 cls.add_binary_comparison_operator('>=')
2163 ## sequence-number.h (module 'network'): ns3::SequenceNumber<unsigned int, int>::SequenceNumber() [constructor]
2164 cls.add_constructor([])
2165 ## sequence-number.h (module 'network'): ns3::SequenceNumber<unsigned int, int>::SequenceNumber(unsigned int value) [constructor]
2166 cls.add_constructor([param('unsigned int', 'value')])
2167 ## sequence-number.h (module 'network'): ns3::SequenceNumber<unsigned int, int>::SequenceNumber(ns3::SequenceNumber<unsigned int, int> const & value) [copy constructor]
2168 cls.add_constructor([param('ns3::SequenceNumber< unsigned int, int > const &', 'value')])
2169 ## sequence-number.h (module 'network'): unsigned int ns3::SequenceNumber<unsigned int, int>::GetValue() const [member function]
2170 cls.add_method('GetValue',
2171 'unsigned int',
2172 [],
2173 is_const=True)
2174 return
2175
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07002176def register_Ns3SequentialVariable_methods(root_module, cls):
2177 ## random-variable.h (module 'core'): ns3::SequentialVariable::SequentialVariable(ns3::SequentialVariable const & arg0) [copy constructor]
2178 cls.add_constructor([param('ns3::SequentialVariable const &', 'arg0')])
2179 ## random-variable.h (module 'core'): ns3::SequentialVariable::SequentialVariable(double f, double l, double i=1, uint32_t c=1) [constructor]
2180 cls.add_constructor([param('double', 'f'), param('double', 'l'), param('double', 'i', default_value='1'), param('uint32_t', 'c', default_value='1')])
2181 ## random-variable.h (module 'core'): ns3::SequentialVariable::SequentialVariable(double f, double l, ns3::RandomVariable const & i, uint32_t c=1) [constructor]
2182 cls.add_constructor([param('double', 'f'), param('double', 'l'), param('ns3::RandomVariable const &', 'i'), param('uint32_t', 'c', default_value='1')])
2183 return
2184
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002185def register_Ns3SimpleRefCount__Ns3Object_Ns3ObjectBase_Ns3ObjectDeleter_methods(root_module, cls):
2186 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter>::SimpleRefCount() [constructor]
2187 cls.add_constructor([])
2188 ## 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]
2189 cls.add_constructor([param('ns3::SimpleRefCount< ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter > const &', 'o')])
2190 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter>::Cleanup() [member function]
2191 cls.add_method('Cleanup',
2192 'void',
2193 [],
2194 is_static=True)
2195 return
2196
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07002197def register_Ns3Tag_methods(root_module, cls):
2198 ## tag.h (module 'network'): ns3::Tag::Tag() [constructor]
Alexander Afanasyev4975f732011-12-20 17:52:19 -08002199 cls.add_constructor([])
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07002200 ## tag.h (module 'network'): ns3::Tag::Tag(ns3::Tag const & arg0) [copy constructor]
2201 cls.add_constructor([param('ns3::Tag const &', 'arg0')])
2202 ## tag.h (module 'network'): void ns3::Tag::Deserialize(ns3::TagBuffer i) [member function]
2203 cls.add_method('Deserialize',
Alexander Afanasyev4975f732011-12-20 17:52:19 -08002204 'void',
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07002205 [param('ns3::TagBuffer', 'i')],
2206 is_pure_virtual=True, is_virtual=True)
2207 ## tag.h (module 'network'): uint32_t ns3::Tag::GetSerializedSize() const [member function]
2208 cls.add_method('GetSerializedSize',
2209 'uint32_t',
2210 [],
2211 is_pure_virtual=True, is_const=True, is_virtual=True)
2212 ## tag.h (module 'network'): static ns3::TypeId ns3::Tag::GetTypeId() [member function]
2213 cls.add_method('GetTypeId',
2214 'ns3::TypeId',
2215 [],
Alexander Afanasyev4975f732011-12-20 17:52:19 -08002216 is_static=True)
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07002217 ## tag.h (module 'network'): void ns3::Tag::Print(std::ostream & os) const [member function]
2218 cls.add_method('Print',
Alexander Afanasyev4975f732011-12-20 17:52:19 -08002219 'void',
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07002220 [param('std::ostream &', 'os')],
2221 is_pure_virtual=True, is_const=True, is_virtual=True)
2222 ## tag.h (module 'network'): void ns3::Tag::Serialize(ns3::TagBuffer i) const [member function]
2223 cls.add_method('Serialize',
2224 'void',
2225 [param('ns3::TagBuffer', 'i')],
2226 is_pure_virtual=True, is_const=True, is_virtual=True)
Alexander Afanasyev4975f732011-12-20 17:52:19 -08002227 return
2228
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002229def register_Ns3TagBuffer_methods(root_module, cls):
2230 ## tag-buffer.h (module 'network'): ns3::TagBuffer::TagBuffer(ns3::TagBuffer const & arg0) [copy constructor]
2231 cls.add_constructor([param('ns3::TagBuffer const &', 'arg0')])
2232 ## tag-buffer.h (module 'network'): ns3::TagBuffer::TagBuffer(uint8_t * start, uint8_t * end) [constructor]
2233 cls.add_constructor([param('uint8_t *', 'start'), param('uint8_t *', 'end')])
2234 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::CopyFrom(ns3::TagBuffer o) [member function]
2235 cls.add_method('CopyFrom',
2236 'void',
2237 [param('ns3::TagBuffer', 'o')])
2238 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::Read(uint8_t * buffer, uint32_t size) [member function]
2239 cls.add_method('Read',
2240 'void',
2241 [param('uint8_t *', 'buffer'), param('uint32_t', 'size')])
2242 ## tag-buffer.h (module 'network'): double ns3::TagBuffer::ReadDouble() [member function]
2243 cls.add_method('ReadDouble',
2244 'double',
2245 [])
2246 ## tag-buffer.h (module 'network'): uint16_t ns3::TagBuffer::ReadU16() [member function]
2247 cls.add_method('ReadU16',
2248 'uint16_t',
2249 [])
2250 ## tag-buffer.h (module 'network'): uint32_t ns3::TagBuffer::ReadU32() [member function]
2251 cls.add_method('ReadU32',
2252 'uint32_t',
2253 [])
2254 ## tag-buffer.h (module 'network'): uint64_t ns3::TagBuffer::ReadU64() [member function]
2255 cls.add_method('ReadU64',
2256 'uint64_t',
2257 [])
2258 ## tag-buffer.h (module 'network'): uint8_t ns3::TagBuffer::ReadU8() [member function]
2259 cls.add_method('ReadU8',
2260 'uint8_t',
2261 [])
2262 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::TrimAtEnd(uint32_t trim) [member function]
2263 cls.add_method('TrimAtEnd',
2264 'void',
2265 [param('uint32_t', 'trim')])
2266 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::Write(uint8_t const * buffer, uint32_t size) [member function]
2267 cls.add_method('Write',
2268 'void',
2269 [param('uint8_t const *', 'buffer'), param('uint32_t', 'size')])
2270 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::WriteDouble(double v) [member function]
2271 cls.add_method('WriteDouble',
2272 'void',
2273 [param('double', 'v')])
2274 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::WriteU16(uint16_t data) [member function]
2275 cls.add_method('WriteU16',
2276 'void',
2277 [param('uint16_t', 'data')])
2278 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::WriteU32(uint32_t data) [member function]
2279 cls.add_method('WriteU32',
2280 'void',
2281 [param('uint32_t', 'data')])
2282 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::WriteU64(uint64_t v) [member function]
2283 cls.add_method('WriteU64',
2284 'void',
2285 [param('uint64_t', 'v')])
2286 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::WriteU8(uint8_t v) [member function]
2287 cls.add_method('WriteU8',
2288 'void',
2289 [param('uint8_t', 'v')])
2290 return
2291
Alexander Afanasyev0e4ae8e2013-03-12 15:59:18 -07002292def register_Ns3TracedValue__Ns3NdnFibFaceMetricStatus_methods(root_module, cls):
2293 ## traced-value.h (module 'core'): ns3::TracedValue<ns3::ndn::fib::FaceMetric::Status>::TracedValue() [constructor]
2294 cls.add_constructor([])
2295 ## traced-value.h (module 'core'): ns3::TracedValue<ns3::ndn::fib::FaceMetric::Status>::TracedValue(ns3::TracedValue<ns3::ndn::fib::FaceMetric::Status> const & o) [copy constructor]
2296 cls.add_constructor([param('ns3::TracedValue< ns3::ndn::fib::FaceMetric::Status > const &', 'o')])
2297 ## traced-value.h (module 'core'): ns3::TracedValue<ns3::ndn::fib::FaceMetric::Status>::TracedValue(ns3::ndn::fib::FaceMetric::Status const & v) [constructor]
2298 cls.add_constructor([param('ns3::ndn::fib::FaceMetric::Status const &', 'v')])
2299 ## traced-value.h (module 'core'): void ns3::TracedValue<ns3::ndn::fib::FaceMetric::Status>::Connect(ns3::CallbackBase const & cb, std::basic_string<char,std::char_traits<char>,std::allocator<char> > path) [member function]
2300 cls.add_method('Connect',
2301 'void',
2302 [param('ns3::CallbackBase const &', 'cb'), param('std::string', 'path')])
2303 ## traced-value.h (module 'core'): void ns3::TracedValue<ns3::ndn::fib::FaceMetric::Status>::ConnectWithoutContext(ns3::CallbackBase const & cb) [member function]
2304 cls.add_method('ConnectWithoutContext',
2305 'void',
2306 [param('ns3::CallbackBase const &', 'cb')])
2307 ## traced-value.h (module 'core'): void ns3::TracedValue<ns3::ndn::fib::FaceMetric::Status>::Disconnect(ns3::CallbackBase const & cb, std::basic_string<char,std::char_traits<char>,std::allocator<char> > path) [member function]
2308 cls.add_method('Disconnect',
2309 'void',
2310 [param('ns3::CallbackBase const &', 'cb'), param('std::string', 'path')])
2311 ## traced-value.h (module 'core'): void ns3::TracedValue<ns3::ndn::fib::FaceMetric::Status>::DisconnectWithoutContext(ns3::CallbackBase const & cb) [member function]
2312 cls.add_method('DisconnectWithoutContext',
2313 'void',
2314 [param('ns3::CallbackBase const &', 'cb')])
2315 ## traced-value.h (module 'core'): ns3::ndn::fib::FaceMetric::Status ns3::TracedValue<ns3::ndn::fib::FaceMetric::Status>::Get() const [member function]
2316 cls.add_method('Get',
2317 'ns3::ndn::fib::FaceMetric::Status',
2318 [],
2319 is_const=True)
2320 ## traced-value.h (module 'core'): void ns3::TracedValue<ns3::ndn::fib::FaceMetric::Status>::Set(ns3::ndn::fib::FaceMetric::Status const & v) [member function]
2321 cls.add_method('Set',
2322 'void',
2323 [param('ns3::ndn::fib::FaceMetric::Status const &', 'v')])
2324 return
2325
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07002326def register_Ns3TriangularVariable_methods(root_module, cls):
2327 ## random-variable.h (module 'core'): ns3::TriangularVariable::TriangularVariable(ns3::TriangularVariable const & arg0) [copy constructor]
2328 cls.add_constructor([param('ns3::TriangularVariable const &', 'arg0')])
2329 ## random-variable.h (module 'core'): ns3::TriangularVariable::TriangularVariable() [constructor]
2330 cls.add_constructor([])
2331 ## random-variable.h (module 'core'): ns3::TriangularVariable::TriangularVariable(double s, double l, double mean) [constructor]
2332 cls.add_constructor([param('double', 's'), param('double', 'l'), param('double', 'mean')])
2333 return
2334
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002335def register_Ns3TypeId_methods(root_module, cls):
2336 cls.add_binary_comparison_operator('!=')
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07002337 cls.add_output_stream_operator()
Alexander Afanasyeva28ec562012-10-25 14:07:32 -07002338 cls.add_binary_comparison_operator('==')
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002339 cls.add_binary_comparison_operator('<')
2340 ## type-id.h (module 'core'): ns3::TypeId::TypeId(char const * name) [constructor]
2341 cls.add_constructor([param('char const *', 'name')])
2342 ## type-id.h (module 'core'): ns3::TypeId::TypeId() [constructor]
2343 cls.add_constructor([])
2344 ## type-id.h (module 'core'): ns3::TypeId::TypeId(ns3::TypeId const & o) [copy constructor]
2345 cls.add_constructor([param('ns3::TypeId const &', 'o')])
2346 ## 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]
2347 cls.add_method('AddAttribute',
2348 'ns3::TypeId',
2349 [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')])
2350 ## 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]
2351 cls.add_method('AddAttribute',
2352 'ns3::TypeId',
2353 [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')])
2354 ## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::AddTraceSource(std::string name, std::string help, ns3::Ptr<ns3::TraceSourceAccessor const> accessor) [member function]
2355 cls.add_method('AddTraceSource',
2356 'ns3::TypeId',
2357 [param('std::string', 'name'), param('std::string', 'help'), param('ns3::Ptr< ns3::TraceSourceAccessor const >', 'accessor')])
2358 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation ns3::TypeId::GetAttribute(uint32_t i) const [member function]
2359 cls.add_method('GetAttribute',
2360 'ns3::TypeId::AttributeInformation',
2361 [param('uint32_t', 'i')],
2362 is_const=True)
2363 ## type-id.h (module 'core'): std::string ns3::TypeId::GetAttributeFullName(uint32_t i) const [member function]
2364 cls.add_method('GetAttributeFullName',
2365 'std::string',
2366 [param('uint32_t', 'i')],
2367 is_const=True)
2368 ## type-id.h (module 'core'): uint32_t ns3::TypeId::GetAttributeN() const [member function]
2369 cls.add_method('GetAttributeN',
2370 'uint32_t',
2371 [],
2372 is_const=True)
2373 ## 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]
2374 cls.add_method('GetConstructor',
2375 'ns3::Callback< ns3::ObjectBase *, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >',
2376 [],
2377 is_const=True)
2378 ## type-id.h (module 'core'): std::string ns3::TypeId::GetGroupName() const [member function]
2379 cls.add_method('GetGroupName',
2380 'std::string',
2381 [],
2382 is_const=True)
2383 ## type-id.h (module 'core'): std::string ns3::TypeId::GetName() const [member function]
2384 cls.add_method('GetName',
2385 'std::string',
2386 [],
2387 is_const=True)
2388 ## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::GetParent() const [member function]
2389 cls.add_method('GetParent',
2390 'ns3::TypeId',
2391 [],
2392 is_const=True)
2393 ## type-id.h (module 'core'): static ns3::TypeId ns3::TypeId::GetRegistered(uint32_t i) [member function]
2394 cls.add_method('GetRegistered',
2395 'ns3::TypeId',
2396 [param('uint32_t', 'i')],
2397 is_static=True)
2398 ## type-id.h (module 'core'): static uint32_t ns3::TypeId::GetRegisteredN() [member function]
2399 cls.add_method('GetRegisteredN',
2400 'uint32_t',
2401 [],
2402 is_static=True)
2403 ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation ns3::TypeId::GetTraceSource(uint32_t i) const [member function]
2404 cls.add_method('GetTraceSource',
2405 'ns3::TypeId::TraceSourceInformation',
2406 [param('uint32_t', 'i')],
2407 is_const=True)
2408 ## type-id.h (module 'core'): uint32_t ns3::TypeId::GetTraceSourceN() const [member function]
2409 cls.add_method('GetTraceSourceN',
2410 'uint32_t',
2411 [],
2412 is_const=True)
2413 ## type-id.h (module 'core'): uint16_t ns3::TypeId::GetUid() const [member function]
2414 cls.add_method('GetUid',
2415 'uint16_t',
2416 [],
2417 is_const=True)
2418 ## type-id.h (module 'core'): bool ns3::TypeId::HasConstructor() const [member function]
2419 cls.add_method('HasConstructor',
2420 'bool',
2421 [],
2422 is_const=True)
2423 ## type-id.h (module 'core'): bool ns3::TypeId::HasParent() const [member function]
2424 cls.add_method('HasParent',
2425 'bool',
2426 [],
2427 is_const=True)
2428 ## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::HideFromDocumentation() [member function]
2429 cls.add_method('HideFromDocumentation',
2430 'ns3::TypeId',
2431 [])
2432 ## type-id.h (module 'core'): bool ns3::TypeId::IsChildOf(ns3::TypeId other) const [member function]
2433 cls.add_method('IsChildOf',
2434 'bool',
2435 [param('ns3::TypeId', 'other')],
2436 is_const=True)
2437 ## type-id.h (module 'core'): bool ns3::TypeId::LookupAttributeByName(std::string name, ns3::TypeId::AttributeInformation * info) const [member function]
2438 cls.add_method('LookupAttributeByName',
2439 'bool',
Alexander Afanasyev6f933532012-02-29 13:30:37 -08002440 [param('std::string', 'name'), param('ns3::TypeId::AttributeInformation *', 'info', transfer_ownership=False)],
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002441 is_const=True)
2442 ## type-id.h (module 'core'): static ns3::TypeId ns3::TypeId::LookupByName(std::string name) [member function]
2443 cls.add_method('LookupByName',
2444 'ns3::TypeId',
2445 [param('std::string', 'name')],
2446 is_static=True)
2447 ## type-id.h (module 'core'): ns3::Ptr<ns3::TraceSourceAccessor const> ns3::TypeId::LookupTraceSourceByName(std::string name) const [member function]
2448 cls.add_method('LookupTraceSourceByName',
2449 'ns3::Ptr< ns3::TraceSourceAccessor const >',
2450 [param('std::string', 'name')],
2451 is_const=True)
2452 ## type-id.h (module 'core'): bool ns3::TypeId::MustHideFromDocumentation() const [member function]
2453 cls.add_method('MustHideFromDocumentation',
2454 'bool',
2455 [],
2456 is_const=True)
2457 ## type-id.h (module 'core'): bool ns3::TypeId::SetAttributeInitialValue(uint32_t i, ns3::Ptr<ns3::AttributeValue const> initialValue) [member function]
2458 cls.add_method('SetAttributeInitialValue',
2459 'bool',
2460 [param('uint32_t', 'i'), param('ns3::Ptr< ns3::AttributeValue const >', 'initialValue')])
2461 ## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::SetGroupName(std::string groupName) [member function]
2462 cls.add_method('SetGroupName',
2463 'ns3::TypeId',
2464 [param('std::string', 'groupName')])
2465 ## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::SetParent(ns3::TypeId tid) [member function]
2466 cls.add_method('SetParent',
2467 'ns3::TypeId',
2468 [param('ns3::TypeId', 'tid')])
2469 ## type-id.h (module 'core'): void ns3::TypeId::SetUid(uint16_t tid) [member function]
2470 cls.add_method('SetUid',
2471 'void',
2472 [param('uint16_t', 'tid')])
2473 return
2474
2475def register_Ns3TypeIdAttributeInformation_methods(root_module, cls):
2476 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::AttributeInformation() [constructor]
2477 cls.add_constructor([])
2478 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::AttributeInformation(ns3::TypeId::AttributeInformation const & arg0) [copy constructor]
2479 cls.add_constructor([param('ns3::TypeId::AttributeInformation const &', 'arg0')])
2480 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::accessor [variable]
2481 cls.add_instance_attribute('accessor', 'ns3::Ptr< ns3::AttributeAccessor const >', is_const=False)
2482 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::checker [variable]
2483 cls.add_instance_attribute('checker', 'ns3::Ptr< ns3::AttributeChecker const >', is_const=False)
2484 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::flags [variable]
2485 cls.add_instance_attribute('flags', 'uint32_t', is_const=False)
2486 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::help [variable]
2487 cls.add_instance_attribute('help', 'std::string', is_const=False)
2488 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::initialValue [variable]
2489 cls.add_instance_attribute('initialValue', 'ns3::Ptr< ns3::AttributeValue const >', is_const=False)
2490 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::name [variable]
2491 cls.add_instance_attribute('name', 'std::string', is_const=False)
2492 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::originalInitialValue [variable]
2493 cls.add_instance_attribute('originalInitialValue', 'ns3::Ptr< ns3::AttributeValue const >', is_const=False)
2494 return
2495
2496def register_Ns3TypeIdTraceSourceInformation_methods(root_module, cls):
2497 ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation::TraceSourceInformation() [constructor]
2498 cls.add_constructor([])
2499 ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation::TraceSourceInformation(ns3::TypeId::TraceSourceInformation const & arg0) [copy constructor]
2500 cls.add_constructor([param('ns3::TypeId::TraceSourceInformation const &', 'arg0')])
2501 ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation::accessor [variable]
2502 cls.add_instance_attribute('accessor', 'ns3::Ptr< ns3::TraceSourceAccessor const >', is_const=False)
2503 ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation::help [variable]
2504 cls.add_instance_attribute('help', 'std::string', is_const=False)
2505 ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation::name [variable]
2506 cls.add_instance_attribute('name', 'std::string', is_const=False)
2507 return
2508
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07002509def register_Ns3UniformVariable_methods(root_module, cls):
2510 ## random-variable.h (module 'core'): ns3::UniformVariable::UniformVariable(ns3::UniformVariable const & arg0) [copy constructor]
2511 cls.add_constructor([param('ns3::UniformVariable const &', 'arg0')])
2512 ## random-variable.h (module 'core'): ns3::UniformVariable::UniformVariable() [constructor]
2513 cls.add_constructor([])
2514 ## random-variable.h (module 'core'): ns3::UniformVariable::UniformVariable(double s, double l) [constructor]
2515 cls.add_constructor([param('double', 's'), param('double', 'l')])
2516 ## random-variable.h (module 'core'): uint32_t ns3::UniformVariable::GetInteger(uint32_t s, uint32_t l) [member function]
2517 cls.add_method('GetInteger',
2518 'uint32_t',
2519 [param('uint32_t', 's'), param('uint32_t', 'l')])
2520 ## random-variable.h (module 'core'): double ns3::UniformVariable::GetValue() const [member function]
2521 cls.add_method('GetValue',
2522 'double',
2523 [],
2524 is_const=True)
2525 ## random-variable.h (module 'core'): double ns3::UniformVariable::GetValue(double s, double l) [member function]
2526 cls.add_method('GetValue',
2527 'double',
2528 [param('double', 's'), param('double', 'l')])
2529 return
2530
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07002531def register_Ns3WeibullVariable_methods(root_module, cls):
2532 ## random-variable.h (module 'core'): ns3::WeibullVariable::WeibullVariable(ns3::WeibullVariable const & arg0) [copy constructor]
2533 cls.add_constructor([param('ns3::WeibullVariable const &', 'arg0')])
2534 ## random-variable.h (module 'core'): ns3::WeibullVariable::WeibullVariable() [constructor]
2535 cls.add_constructor([])
2536 ## random-variable.h (module 'core'): ns3::WeibullVariable::WeibullVariable(double m) [constructor]
2537 cls.add_constructor([param('double', 'm')])
2538 ## random-variable.h (module 'core'): ns3::WeibullVariable::WeibullVariable(double m, double s) [constructor]
2539 cls.add_constructor([param('double', 'm'), param('double', 's')])
2540 ## random-variable.h (module 'core'): ns3::WeibullVariable::WeibullVariable(double m, double s, double b) [constructor]
2541 cls.add_constructor([param('double', 'm'), param('double', 's'), param('double', 'b')])
2542 return
2543
2544def register_Ns3ZetaVariable_methods(root_module, cls):
2545 ## random-variable.h (module 'core'): ns3::ZetaVariable::ZetaVariable(ns3::ZetaVariable const & arg0) [copy constructor]
2546 cls.add_constructor([param('ns3::ZetaVariable const &', 'arg0')])
2547 ## random-variable.h (module 'core'): ns3::ZetaVariable::ZetaVariable(double alpha) [constructor]
2548 cls.add_constructor([param('double', 'alpha')])
2549 ## random-variable.h (module 'core'): ns3::ZetaVariable::ZetaVariable() [constructor]
2550 cls.add_constructor([])
2551 return
2552
2553def register_Ns3ZipfVariable_methods(root_module, cls):
2554 ## random-variable.h (module 'core'): ns3::ZipfVariable::ZipfVariable(ns3::ZipfVariable const & arg0) [copy constructor]
2555 cls.add_constructor([param('ns3::ZipfVariable const &', 'arg0')])
2556 ## random-variable.h (module 'core'): ns3::ZipfVariable::ZipfVariable(long int N, double alpha) [constructor]
2557 cls.add_constructor([param('long int', 'N'), param('double', 'alpha')])
2558 ## random-variable.h (module 'core'): ns3::ZipfVariable::ZipfVariable() [constructor]
2559 cls.add_constructor([])
2560 return
2561
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002562def register_Ns3Empty_methods(root_module, cls):
2563 ## empty.h (module 'core'): ns3::empty::empty() [constructor]
2564 cls.add_constructor([])
2565 ## empty.h (module 'core'): ns3::empty::empty(ns3::empty const & arg0) [copy constructor]
2566 cls.add_constructor([param('ns3::empty const &', 'arg0')])
2567 return
2568
2569def register_Ns3Int64x64_t_methods(root_module, cls):
2570 cls.add_binary_comparison_operator('!=')
2571 cls.add_inplace_numeric_operator('*=', param('ns3::int64x64_t const &', 'right'))
2572 cls.add_inplace_numeric_operator('+=', param('ns3::int64x64_t const &', 'right'))
2573 cls.add_inplace_numeric_operator('-=', param('ns3::int64x64_t const &', 'right'))
Alexander Afanasyeva28ec562012-10-25 14:07:32 -07002574 cls.add_output_stream_operator()
Alexander Afanasyeva8f5d882012-11-09 14:22:48 -08002575 cls.add_binary_comparison_operator('<=')
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002576 cls.add_binary_comparison_operator('==')
2577 cls.add_binary_comparison_operator('>=')
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07002578 cls.add_inplace_numeric_operator('/=', param('ns3::int64x64_t const &', 'right'))
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002579 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long unsigned int const', 'right'))
2580 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long unsigned int const', 'right'))
2581 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned int const', 'right'))
2582 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short unsigned int const', 'right'))
2583 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned char const', 'right'))
2584 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long int const', 'right'))
2585 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long int const', 'right'))
2586 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('int const', 'right'))
2587 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short int const', 'right'))
2588 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('signed char const', 'right'))
2589 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('double const', 'right'))
2590 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('ns3::int64x64_t const &', 'right'))
2591 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long unsigned int const', 'right'))
2592 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long unsigned int const', 'right'))
2593 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned int const', 'right'))
2594 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short unsigned int const', 'right'))
2595 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned char const', 'right'))
2596 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long int const', 'right'))
2597 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long int const', 'right'))
2598 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('int const', 'right'))
2599 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short int const', 'right'))
2600 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('signed char const', 'right'))
2601 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('double const', 'right'))
2602 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('ns3::int64x64_t const &', 'right'))
2603 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long unsigned int const', 'right'))
2604 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long unsigned int const', 'right'))
2605 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned int const', 'right'))
2606 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short unsigned int const', 'right'))
2607 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned char const', 'right'))
2608 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long int const', 'right'))
2609 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long int const', 'right'))
2610 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('int const', 'right'))
2611 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short int const', 'right'))
2612 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('signed char const', 'right'))
2613 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('double const', 'right'))
2614 cls.add_unary_numeric_operator('-')
2615 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('ns3::int64x64_t const &', 'right'))
2616 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long unsigned int const', 'right'))
2617 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long unsigned int const', 'right'))
2618 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned int const', 'right'))
2619 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short unsigned int const', 'right'))
2620 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned char const', 'right'))
2621 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long int const', 'right'))
2622 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long int const', 'right'))
2623 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('int const', 'right'))
2624 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short int const', 'right'))
2625 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('signed char const', 'right'))
2626 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('double const', 'right'))
2627 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('ns3::int64x64_t const &', 'right'))
2628 cls.add_binary_comparison_operator('<')
2629 cls.add_binary_comparison_operator('>')
2630 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t() [constructor]
2631 cls.add_constructor([])
2632 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(double v) [constructor]
2633 cls.add_constructor([param('double', 'v')])
2634 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(int v) [constructor]
2635 cls.add_constructor([param('int', 'v')])
2636 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(long int v) [constructor]
2637 cls.add_constructor([param('long int', 'v')])
2638 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(long long int v) [constructor]
2639 cls.add_constructor([param('long long int', 'v')])
2640 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(unsigned int v) [constructor]
2641 cls.add_constructor([param('unsigned int', 'v')])
2642 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(long unsigned int v) [constructor]
2643 cls.add_constructor([param('long unsigned int', 'v')])
2644 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(long long unsigned int v) [constructor]
2645 cls.add_constructor([param('long long unsigned int', 'v')])
2646 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(int64_t hi, uint64_t lo) [constructor]
2647 cls.add_constructor([param('int64_t', 'hi'), param('uint64_t', 'lo')])
2648 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(ns3::int64x64_t const & o) [copy constructor]
2649 cls.add_constructor([param('ns3::int64x64_t const &', 'o')])
2650 ## int64x64-double.h (module 'core'): double ns3::int64x64_t::GetDouble() const [member function]
2651 cls.add_method('GetDouble',
2652 'double',
2653 [],
2654 is_const=True)
2655 ## int64x64-double.h (module 'core'): int64_t ns3::int64x64_t::GetHigh() const [member function]
2656 cls.add_method('GetHigh',
2657 'int64_t',
2658 [],
2659 is_const=True)
2660 ## int64x64-double.h (module 'core'): uint64_t ns3::int64x64_t::GetLow() const [member function]
2661 cls.add_method('GetLow',
2662 'uint64_t',
2663 [],
2664 is_const=True)
2665 ## int64x64-double.h (module 'core'): static ns3::int64x64_t ns3::int64x64_t::Invert(uint64_t v) [member function]
2666 cls.add_method('Invert',
2667 'ns3::int64x64_t',
2668 [param('uint64_t', 'v')],
2669 is_static=True)
2670 ## int64x64-double.h (module 'core'): void ns3::int64x64_t::MulByInvert(ns3::int64x64_t const & o) [member function]
2671 cls.add_method('MulByInvert',
2672 'void',
2673 [param('ns3::int64x64_t const &', 'o')])
2674 return
2675
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002676def register_Ns3Chunk_methods(root_module, cls):
2677 ## chunk.h (module 'network'): ns3::Chunk::Chunk() [constructor]
2678 cls.add_constructor([])
2679 ## chunk.h (module 'network'): ns3::Chunk::Chunk(ns3::Chunk const & arg0) [copy constructor]
2680 cls.add_constructor([param('ns3::Chunk const &', 'arg0')])
2681 ## chunk.h (module 'network'): uint32_t ns3::Chunk::Deserialize(ns3::Buffer::Iterator start) [member function]
2682 cls.add_method('Deserialize',
2683 'uint32_t',
2684 [param('ns3::Buffer::Iterator', 'start')],
2685 is_pure_virtual=True, is_virtual=True)
2686 ## chunk.h (module 'network'): static ns3::TypeId ns3::Chunk::GetTypeId() [member function]
2687 cls.add_method('GetTypeId',
2688 'ns3::TypeId',
2689 [],
2690 is_static=True)
2691 ## chunk.h (module 'network'): void ns3::Chunk::Print(std::ostream & os) const [member function]
2692 cls.add_method('Print',
2693 'void',
2694 [param('std::ostream &', 'os')],
2695 is_pure_virtual=True, is_const=True, is_virtual=True)
2696 return
2697
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07002698def register_Ns3ConstantVariable_methods(root_module, cls):
2699 ## random-variable.h (module 'core'): ns3::ConstantVariable::ConstantVariable(ns3::ConstantVariable const & arg0) [copy constructor]
2700 cls.add_constructor([param('ns3::ConstantVariable const &', 'arg0')])
2701 ## random-variable.h (module 'core'): ns3::ConstantVariable::ConstantVariable() [constructor]
2702 cls.add_constructor([])
2703 ## random-variable.h (module 'core'): ns3::ConstantVariable::ConstantVariable(double c) [constructor]
2704 cls.add_constructor([param('double', 'c')])
2705 ## random-variable.h (module 'core'): void ns3::ConstantVariable::SetConstant(double c) [member function]
2706 cls.add_method('SetConstant',
2707 'void',
2708 [param('double', 'c')])
2709 return
2710
2711def register_Ns3DeterministicVariable_methods(root_module, cls):
2712 ## random-variable.h (module 'core'): ns3::DeterministicVariable::DeterministicVariable(ns3::DeterministicVariable const & arg0) [copy constructor]
2713 cls.add_constructor([param('ns3::DeterministicVariable const &', 'arg0')])
2714 ## random-variable.h (module 'core'): ns3::DeterministicVariable::DeterministicVariable(double * d, uint32_t c) [constructor]
2715 cls.add_constructor([param('double *', 'd'), param('uint32_t', 'c')])
2716 return
2717
2718def register_Ns3EmpiricalVariable_methods(root_module, cls):
2719 ## random-variable.h (module 'core'): ns3::EmpiricalVariable::EmpiricalVariable(ns3::EmpiricalVariable const & arg0) [copy constructor]
2720 cls.add_constructor([param('ns3::EmpiricalVariable const &', 'arg0')])
2721 ## random-variable.h (module 'core'): ns3::EmpiricalVariable::EmpiricalVariable() [constructor]
2722 cls.add_constructor([])
2723 ## random-variable.h (module 'core'): void ns3::EmpiricalVariable::CDF(double v, double c) [member function]
2724 cls.add_method('CDF',
2725 'void',
2726 [param('double', 'v'), param('double', 'c')])
2727 return
2728
2729def register_Ns3ErlangVariable_methods(root_module, cls):
2730 ## random-variable.h (module 'core'): ns3::ErlangVariable::ErlangVariable(ns3::ErlangVariable const & arg0) [copy constructor]
2731 cls.add_constructor([param('ns3::ErlangVariable const &', 'arg0')])
2732 ## random-variable.h (module 'core'): ns3::ErlangVariable::ErlangVariable() [constructor]
2733 cls.add_constructor([])
2734 ## random-variable.h (module 'core'): ns3::ErlangVariable::ErlangVariable(unsigned int k, double lambda) [constructor]
2735 cls.add_constructor([param('unsigned int', 'k'), param('double', 'lambda')])
2736 ## random-variable.h (module 'core'): double ns3::ErlangVariable::GetValue() const [member function]
2737 cls.add_method('GetValue',
2738 'double',
2739 [],
2740 is_const=True)
2741 ## random-variable.h (module 'core'): double ns3::ErlangVariable::GetValue(unsigned int k, double lambda) const [member function]
2742 cls.add_method('GetValue',
2743 'double',
2744 [param('unsigned int', 'k'), param('double', 'lambda')],
2745 is_const=True)
2746 return
2747
2748def register_Ns3ExponentialVariable_methods(root_module, cls):
2749 ## random-variable.h (module 'core'): ns3::ExponentialVariable::ExponentialVariable(ns3::ExponentialVariable const & arg0) [copy constructor]
2750 cls.add_constructor([param('ns3::ExponentialVariable const &', 'arg0')])
2751 ## random-variable.h (module 'core'): ns3::ExponentialVariable::ExponentialVariable() [constructor]
2752 cls.add_constructor([])
2753 ## random-variable.h (module 'core'): ns3::ExponentialVariable::ExponentialVariable(double m) [constructor]
2754 cls.add_constructor([param('double', 'm')])
2755 ## random-variable.h (module 'core'): ns3::ExponentialVariable::ExponentialVariable(double m, double b) [constructor]
2756 cls.add_constructor([param('double', 'm'), param('double', 'b')])
2757 return
2758
2759def register_Ns3GammaVariable_methods(root_module, cls):
2760 ## random-variable.h (module 'core'): ns3::GammaVariable::GammaVariable(ns3::GammaVariable const & arg0) [copy constructor]
2761 cls.add_constructor([param('ns3::GammaVariable const &', 'arg0')])
2762 ## random-variable.h (module 'core'): ns3::GammaVariable::GammaVariable() [constructor]
2763 cls.add_constructor([])
2764 ## random-variable.h (module 'core'): ns3::GammaVariable::GammaVariable(double alpha, double beta) [constructor]
2765 cls.add_constructor([param('double', 'alpha'), param('double', 'beta')])
2766 ## random-variable.h (module 'core'): double ns3::GammaVariable::GetValue() const [member function]
2767 cls.add_method('GetValue',
2768 'double',
2769 [],
2770 is_const=True)
2771 ## random-variable.h (module 'core'): double ns3::GammaVariable::GetValue(double alpha, double beta) const [member function]
2772 cls.add_method('GetValue',
2773 'double',
2774 [param('double', 'alpha'), param('double', 'beta')],
2775 is_const=True)
2776 return
2777
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002778def register_Ns3Header_methods(root_module, cls):
2779 cls.add_output_stream_operator()
2780 ## header.h (module 'network'): ns3::Header::Header() [constructor]
2781 cls.add_constructor([])
2782 ## header.h (module 'network'): ns3::Header::Header(ns3::Header const & arg0) [copy constructor]
2783 cls.add_constructor([param('ns3::Header const &', 'arg0')])
2784 ## header.h (module 'network'): uint32_t ns3::Header::Deserialize(ns3::Buffer::Iterator start) [member function]
2785 cls.add_method('Deserialize',
2786 'uint32_t',
2787 [param('ns3::Buffer::Iterator', 'start')],
2788 is_pure_virtual=True, is_virtual=True)
2789 ## header.h (module 'network'): uint32_t ns3::Header::GetSerializedSize() const [member function]
2790 cls.add_method('GetSerializedSize',
2791 'uint32_t',
2792 [],
2793 is_pure_virtual=True, is_const=True, is_virtual=True)
2794 ## header.h (module 'network'): static ns3::TypeId ns3::Header::GetTypeId() [member function]
2795 cls.add_method('GetTypeId',
2796 'ns3::TypeId',
2797 [],
2798 is_static=True)
2799 ## header.h (module 'network'): void ns3::Header::Print(std::ostream & os) const [member function]
2800 cls.add_method('Print',
2801 'void',
2802 [param('std::ostream &', 'os')],
2803 is_pure_virtual=True, is_const=True, is_virtual=True)
2804 ## header.h (module 'network'): void ns3::Header::Serialize(ns3::Buffer::Iterator start) const [member function]
2805 cls.add_method('Serialize',
2806 'void',
2807 [param('ns3::Buffer::Iterator', 'start')],
2808 is_pure_virtual=True, is_const=True, is_virtual=True)
2809 return
2810
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07002811def register_Ns3IntEmpiricalVariable_methods(root_module, cls):
2812 ## random-variable.h (module 'core'): ns3::IntEmpiricalVariable::IntEmpiricalVariable(ns3::IntEmpiricalVariable const & arg0) [copy constructor]
2813 cls.add_constructor([param('ns3::IntEmpiricalVariable const &', 'arg0')])
2814 ## random-variable.h (module 'core'): ns3::IntEmpiricalVariable::IntEmpiricalVariable() [constructor]
2815 cls.add_constructor([])
2816 return
2817
2818def register_Ns3LogNormalVariable_methods(root_module, cls):
2819 ## random-variable.h (module 'core'): ns3::LogNormalVariable::LogNormalVariable(ns3::LogNormalVariable const & arg0) [copy constructor]
2820 cls.add_constructor([param('ns3::LogNormalVariable const &', 'arg0')])
2821 ## random-variable.h (module 'core'): ns3::LogNormalVariable::LogNormalVariable(double mu, double sigma) [constructor]
2822 cls.add_constructor([param('double', 'mu'), param('double', 'sigma')])
2823 return
2824
2825def register_Ns3NormalVariable_methods(root_module, cls):
2826 ## random-variable.h (module 'core'): ns3::NormalVariable::NormalVariable(ns3::NormalVariable const & arg0) [copy constructor]
2827 cls.add_constructor([param('ns3::NormalVariable const &', 'arg0')])
2828 ## random-variable.h (module 'core'): ns3::NormalVariable::NormalVariable() [constructor]
2829 cls.add_constructor([])
2830 ## random-variable.h (module 'core'): ns3::NormalVariable::NormalVariable(double m, double v) [constructor]
2831 cls.add_constructor([param('double', 'm'), param('double', 'v')])
2832 ## random-variable.h (module 'core'): ns3::NormalVariable::NormalVariable(double m, double v, double b) [constructor]
2833 cls.add_constructor([param('double', 'm'), param('double', 'v'), param('double', 'b')])
2834 return
2835
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002836def register_Ns3Object_methods(root_module, cls):
2837 ## object.h (module 'core'): ns3::Object::Object() [constructor]
2838 cls.add_constructor([])
2839 ## object.h (module 'core'): void ns3::Object::AggregateObject(ns3::Ptr<ns3::Object> other) [member function]
2840 cls.add_method('AggregateObject',
2841 'void',
2842 [param('ns3::Ptr< ns3::Object >', 'other')])
2843 ## object.h (module 'core'): void ns3::Object::Dispose() [member function]
2844 cls.add_method('Dispose',
2845 'void',
2846 [])
2847 ## object.h (module 'core'): ns3::Object::AggregateIterator ns3::Object::GetAggregateIterator() const [member function]
2848 cls.add_method('GetAggregateIterator',
2849 'ns3::Object::AggregateIterator',
2850 [],
2851 is_const=True)
2852 ## object.h (module 'core'): ns3::TypeId ns3::Object::GetInstanceTypeId() const [member function]
2853 cls.add_method('GetInstanceTypeId',
2854 'ns3::TypeId',
2855 [],
2856 is_const=True, is_virtual=True)
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07002857 ## object.h (module 'core'): ns3::Ptr<ns3::ndn::ContentStore> ns3::Object::GetObject() const [member function]
2858 cls.add_method('GetObject',
2859 'ns3::Ptr< ns3::ndn::ContentStore >',
2860 [],
2861 is_const=True, template_parameters=['ns3::ndn::ContentStore'])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07002862 ## object.h (module 'core'): ns3::Ptr<ns3::ndn::Fib> ns3::Object::GetObject() const [member function]
Alexander Afanasyev1c0248b2012-07-24 15:59:50 -07002863 cls.add_method('GetObject',
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07002864 'ns3::Ptr< ns3::ndn::Fib >',
Alexander Afanasyev1c0248b2012-07-24 15:59:50 -07002865 [],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07002866 is_const=True, template_parameters=['ns3::ndn::Fib'])
2867 ## object.h (module 'core'): ns3::Ptr<ns3::ndn::Pit> ns3::Object::GetObject() const [member function]
Alexander Afanasyev5feb38b2012-08-09 11:01:43 -07002868 cls.add_method('GetObject',
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07002869 'ns3::Ptr< ns3::ndn::Pit >',
Alexander Afanasyev5feb38b2012-08-09 11:01:43 -07002870 [],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07002871 is_const=True, template_parameters=['ns3::ndn::Pit'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002872 ## object.h (module 'core'): static ns3::TypeId ns3::Object::GetTypeId() [member function]
2873 cls.add_method('GetTypeId',
2874 'ns3::TypeId',
2875 [],
2876 is_static=True)
Alexander Afanasyev5b8d61b2013-05-03 10:23:21 -07002877 ## object.h (module 'core'): void ns3::Object::Initialize() [member function]
2878 cls.add_method('Initialize',
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002879 'void',
2880 [])
2881 ## object.h (module 'core'): ns3::Object::Object(ns3::Object const & o) [copy constructor]
2882 cls.add_constructor([param('ns3::Object const &', 'o')],
2883 visibility='protected')
2884 ## object.h (module 'core'): void ns3::Object::DoDispose() [member function]
2885 cls.add_method('DoDispose',
2886 'void',
2887 [],
2888 visibility='protected', is_virtual=True)
Alexander Afanasyev5b8d61b2013-05-03 10:23:21 -07002889 ## object.h (module 'core'): void ns3::Object::DoInitialize() [member function]
2890 cls.add_method('DoInitialize',
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002891 'void',
2892 [],
2893 visibility='protected', is_virtual=True)
2894 ## object.h (module 'core'): void ns3::Object::NotifyNewAggregate() [member function]
2895 cls.add_method('NotifyNewAggregate',
2896 'void',
2897 [],
2898 visibility='protected', is_virtual=True)
2899 return
2900
2901def register_Ns3ObjectAggregateIterator_methods(root_module, cls):
2902 ## object.h (module 'core'): ns3::Object::AggregateIterator::AggregateIterator(ns3::Object::AggregateIterator const & arg0) [copy constructor]
2903 cls.add_constructor([param('ns3::Object::AggregateIterator const &', 'arg0')])
2904 ## object.h (module 'core'): ns3::Object::AggregateIterator::AggregateIterator() [constructor]
2905 cls.add_constructor([])
2906 ## object.h (module 'core'): bool ns3::Object::AggregateIterator::HasNext() const [member function]
2907 cls.add_method('HasNext',
2908 'bool',
2909 [],
2910 is_const=True)
2911 ## object.h (module 'core'): ns3::Ptr<ns3::Object const> ns3::Object::AggregateIterator::Next() [member function]
2912 cls.add_method('Next',
2913 'ns3::Ptr< ns3::Object const >',
2914 [])
2915 return
2916
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07002917def register_Ns3ParetoVariable_methods(root_module, cls):
2918 ## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable(ns3::ParetoVariable const & arg0) [copy constructor]
2919 cls.add_constructor([param('ns3::ParetoVariable const &', 'arg0')])
2920 ## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable() [constructor]
2921 cls.add_constructor([])
2922 ## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable(double m) [constructor]
2923 cls.add_constructor([param('double', 'm')])
2924 ## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable(double m, double s) [constructor]
2925 cls.add_constructor([param('double', 'm'), param('double', 's')])
2926 ## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable(double m, double s, double b) [constructor]
2927 cls.add_constructor([param('double', 'm'), param('double', 's'), param('double', 'b')])
2928 ## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable(std::pair<double,double> params) [constructor]
2929 cls.add_constructor([param('std::pair< double, double >', 'params')])
2930 ## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable(std::pair<double,double> params, double b) [constructor]
2931 cls.add_constructor([param('std::pair< double, double >', 'params'), param('double', 'b')])
2932 return
2933
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002934def register_Ns3SimpleRefCount__Ns3AttributeAccessor_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeAccessor__gt___methods(root_module, cls):
2935 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> >::SimpleRefCount() [constructor]
2936 cls.add_constructor([])
2937 ## 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]
2938 cls.add_constructor([param('ns3::SimpleRefCount< ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter< ns3::AttributeAccessor > > const &', 'o')])
2939 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> >::Cleanup() [member function]
2940 cls.add_method('Cleanup',
2941 'void',
2942 [],
2943 is_static=True)
2944 return
2945
2946def register_Ns3SimpleRefCount__Ns3AttributeChecker_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeChecker__gt___methods(root_module, cls):
2947 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter<ns3::AttributeChecker> >::SimpleRefCount() [constructor]
2948 cls.add_constructor([])
2949 ## 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]
2950 cls.add_constructor([param('ns3::SimpleRefCount< ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter< ns3::AttributeChecker > > const &', 'o')])
2951 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter<ns3::AttributeChecker> >::Cleanup() [member function]
2952 cls.add_method('Cleanup',
2953 'void',
2954 [],
2955 is_static=True)
2956 return
2957
2958def register_Ns3SimpleRefCount__Ns3AttributeValue_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeValue__gt___methods(root_module, cls):
2959 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter<ns3::AttributeValue> >::SimpleRefCount() [constructor]
2960 cls.add_constructor([])
2961 ## 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]
2962 cls.add_constructor([param('ns3::SimpleRefCount< ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter< ns3::AttributeValue > > const &', 'o')])
2963 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter<ns3::AttributeValue> >::Cleanup() [member function]
2964 cls.add_method('Cleanup',
2965 'void',
2966 [],
2967 is_static=True)
2968 return
2969
2970def register_Ns3SimpleRefCount__Ns3CallbackImplBase_Ns3Empty_Ns3DefaultDeleter__lt__ns3CallbackImplBase__gt___methods(root_module, cls):
2971 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> >::SimpleRefCount() [constructor]
2972 cls.add_constructor([])
2973 ## 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]
2974 cls.add_constructor([param('ns3::SimpleRefCount< ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter< ns3::CallbackImplBase > > const &', 'o')])
2975 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> >::Cleanup() [member function]
2976 cls.add_method('Cleanup',
2977 'void',
2978 [],
2979 is_static=True)
2980 return
2981
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002982def register_Ns3SimpleRefCount__Ns3EventImpl_Ns3Empty_Ns3DefaultDeleter__lt__ns3EventImpl__gt___methods(root_module, cls):
2983 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::EventImpl, ns3::empty, ns3::DefaultDeleter<ns3::EventImpl> >::SimpleRefCount() [constructor]
2984 cls.add_constructor([])
2985 ## 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]
2986 cls.add_constructor([param('ns3::SimpleRefCount< ns3::EventImpl, ns3::empty, ns3::DefaultDeleter< ns3::EventImpl > > const &', 'o')])
2987 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::EventImpl, ns3::empty, ns3::DefaultDeleter<ns3::EventImpl> >::Cleanup() [member function]
2988 cls.add_method('Cleanup',
2989 'void',
2990 [],
2991 is_static=True)
2992 return
2993
2994def register_Ns3SimpleRefCount__Ns3NixVector_Ns3Empty_Ns3DefaultDeleter__lt__ns3NixVector__gt___methods(root_module, cls):
2995 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::NixVector, ns3::empty, ns3::DefaultDeleter<ns3::NixVector> >::SimpleRefCount() [constructor]
2996 cls.add_constructor([])
2997 ## 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]
2998 cls.add_constructor([param('ns3::SimpleRefCount< ns3::NixVector, ns3::empty, ns3::DefaultDeleter< ns3::NixVector > > const &', 'o')])
2999 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::NixVector, ns3::empty, ns3::DefaultDeleter<ns3::NixVector> >::Cleanup() [member function]
3000 cls.add_method('Cleanup',
3001 'void',
3002 [],
3003 is_static=True)
3004 return
3005
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08003006def register_Ns3SimpleRefCount__Ns3Packet_Ns3Empty_Ns3DefaultDeleter__lt__ns3Packet__gt___methods(root_module, cls):
3007 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Packet, ns3::empty, ns3::DefaultDeleter<ns3::Packet> >::SimpleRefCount() [constructor]
3008 cls.add_constructor([])
3009 ## 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]
3010 cls.add_constructor([param('ns3::SimpleRefCount< ns3::Packet, ns3::empty, ns3::DefaultDeleter< ns3::Packet > > const &', 'o')])
3011 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::Packet, ns3::empty, ns3::DefaultDeleter<ns3::Packet> >::Cleanup() [member function]
3012 cls.add_method('Cleanup',
3013 'void',
3014 [],
3015 is_static=True)
3016 return
3017
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07003018def register_Ns3SimpleRefCount__Ns3TopologyReader_Ns3Empty_Ns3DefaultDeleter__lt__ns3TopologyReader__gt___methods(root_module, cls):
3019 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::TopologyReader, ns3::empty, ns3::DefaultDeleter<ns3::TopologyReader> >::SimpleRefCount() [constructor]
3020 cls.add_constructor([])
3021 ## 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]
3022 cls.add_constructor([param('ns3::SimpleRefCount< ns3::TopologyReader, ns3::empty, ns3::DefaultDeleter< ns3::TopologyReader > > const &', 'o')])
3023 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::TopologyReader, ns3::empty, ns3::DefaultDeleter<ns3::TopologyReader> >::Cleanup() [member function]
3024 cls.add_method('Cleanup',
3025 'void',
3026 [],
3027 is_static=True)
3028 return
3029
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08003030def register_Ns3SimpleRefCount__Ns3TraceSourceAccessor_Ns3Empty_Ns3DefaultDeleter__lt__ns3TraceSourceAccessor__gt___methods(root_module, cls):
3031 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter<ns3::TraceSourceAccessor> >::SimpleRefCount() [constructor]
3032 cls.add_constructor([])
3033 ## 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]
3034 cls.add_constructor([param('ns3::SimpleRefCount< ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter< ns3::TraceSourceAccessor > > const &', 'o')])
3035 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter<ns3::TraceSourceAccessor> >::Cleanup() [member function]
3036 cls.add_method('Cleanup',
3037 'void',
3038 [],
3039 is_static=True)
3040 return
3041
Alexander Afanasyev858d5312013-07-10 18:50:18 -07003042def register_Ns3SimpleRefCount__Ns3NdnContentObject_Ns3Empty_Ns3DefaultDeleter__lt__ns3NdnContentObject__gt___methods(root_module, cls):
3043 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::ndn::ContentObject, ns3::empty, ns3::DefaultDeleter<ns3::ndn::ContentObject> >::SimpleRefCount() [constructor]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07003044 cls.add_constructor([])
Alexander Afanasyev858d5312013-07-10 18:50:18 -07003045 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::ndn::ContentObject, ns3::empty, ns3::DefaultDeleter<ns3::ndn::ContentObject> >::SimpleRefCount(ns3::SimpleRefCount<ns3::ndn::ContentObject, ns3::empty, ns3::DefaultDeleter<ns3::ndn::ContentObject> > const & o) [copy constructor]
3046 cls.add_constructor([param('ns3::SimpleRefCount< ns3::ndn::ContentObject, ns3::empty, ns3::DefaultDeleter< ns3::ndn::ContentObject > > const &', 'o')])
3047 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::ndn::ContentObject, ns3::empty, ns3::DefaultDeleter<ns3::ndn::ContentObject> >::Cleanup() [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07003048 cls.add_method('Cleanup',
3049 'void',
3050 [],
3051 is_static=True)
3052 return
3053
3054def register_Ns3SimpleRefCount__Ns3NdnFaceContainer_Ns3Empty_Ns3DefaultDeleter__lt__ns3NdnFaceContainer__gt___methods(root_module, cls):
3055 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::ndn::FaceContainer, ns3::empty, ns3::DefaultDeleter<ns3::ndn::FaceContainer> >::SimpleRefCount() [constructor]
3056 cls.add_constructor([])
3057 ## 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]
3058 cls.add_constructor([param('ns3::SimpleRefCount< ns3::ndn::FaceContainer, ns3::empty, ns3::DefaultDeleter< ns3::ndn::FaceContainer > > const &', 'o')])
3059 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::ndn::FaceContainer, ns3::empty, ns3::DefaultDeleter<ns3::ndn::FaceContainer> >::Cleanup() [member function]
3060 cls.add_method('Cleanup',
3061 'void',
3062 [],
3063 is_static=True)
3064 return
3065
Alexander Afanasyev858d5312013-07-10 18:50:18 -07003066def register_Ns3SimpleRefCount__Ns3NdnInterest_Ns3Empty_Ns3DefaultDeleter__lt__ns3NdnInterest__gt___methods(root_module, cls):
3067 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::ndn::Interest, ns3::empty, ns3::DefaultDeleter<ns3::ndn::Interest> >::SimpleRefCount() [constructor]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07003068 cls.add_constructor([])
Alexander Afanasyev858d5312013-07-10 18:50:18 -07003069 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::ndn::Interest, ns3::empty, ns3::DefaultDeleter<ns3::ndn::Interest> >::SimpleRefCount(ns3::SimpleRefCount<ns3::ndn::Interest, ns3::empty, ns3::DefaultDeleter<ns3::ndn::Interest> > const & o) [copy constructor]
3070 cls.add_constructor([param('ns3::SimpleRefCount< ns3::ndn::Interest, ns3::empty, ns3::DefaultDeleter< ns3::ndn::Interest > > const &', 'o')])
3071 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::ndn::Interest, ns3::empty, ns3::DefaultDeleter<ns3::ndn::Interest> >::Cleanup() [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07003072 cls.add_method('Cleanup',
3073 'void',
3074 [],
3075 is_static=True)
3076 return
3077
Alexander Afanasyev32c07562013-02-01 12:58:43 -08003078def register_Ns3SimpleRefCount__Ns3NdnName_Ns3Empty_Ns3DefaultDeleter__lt__ns3NdnName__gt___methods(root_module, cls):
3079 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::ndn::Name, ns3::empty, ns3::DefaultDeleter<ns3::ndn::Name> >::SimpleRefCount() [constructor]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07003080 cls.add_constructor([])
Alexander Afanasyev32c07562013-02-01 12:58:43 -08003081 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::ndn::Name, ns3::empty, ns3::DefaultDeleter<ns3::ndn::Name> >::SimpleRefCount(ns3::SimpleRefCount<ns3::ndn::Name, ns3::empty, ns3::DefaultDeleter<ns3::ndn::Name> > const & o) [copy constructor]
3082 cls.add_constructor([param('ns3::SimpleRefCount< ns3::ndn::Name, ns3::empty, ns3::DefaultDeleter< ns3::ndn::Name > > const &', 'o')])
3083 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::ndn::Name, ns3::empty, ns3::DefaultDeleter<ns3::ndn::Name> >::Cleanup() [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07003084 cls.add_method('Cleanup',
3085 'void',
3086 [],
3087 is_static=True)
3088 return
3089
3090def register_Ns3SimpleRefCount__Ns3NdnCsEntry_Ns3Empty_Ns3DefaultDeleter__lt__ns3NdnCsEntry__gt___methods(root_module, cls):
3091 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::ndn::cs::Entry, ns3::empty, ns3::DefaultDeleter<ns3::ndn::cs::Entry> >::SimpleRefCount() [constructor]
3092 cls.add_constructor([])
3093 ## 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]
3094 cls.add_constructor([param('ns3::SimpleRefCount< ns3::ndn::cs::Entry, ns3::empty, ns3::DefaultDeleter< ns3::ndn::cs::Entry > > const &', 'o')])
3095 ## 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]
3096 cls.add_method('Cleanup',
3097 'void',
3098 [],
3099 is_static=True)
3100 return
3101
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07003102def register_Ns3SimpleRefCount__Ns3NdnPitEntry_Ns3Empty_Ns3DefaultDeleter__lt__ns3NdnPitEntry__gt___methods(root_module, cls):
3103 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::ndn::pit::Entry, ns3::empty, ns3::DefaultDeleter<ns3::ndn::pit::Entry> >::SimpleRefCount() [constructor]
3104 cls.add_constructor([])
3105 ## 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]
3106 cls.add_constructor([param('ns3::SimpleRefCount< ns3::ndn::pit::Entry, ns3::empty, ns3::DefaultDeleter< ns3::ndn::pit::Entry > > const &', 'o')])
3107 ## 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]
3108 cls.add_method('Cleanup',
3109 'void',
3110 [],
3111 is_static=True)
3112 return
3113
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08003114def register_Ns3Time_methods(root_module, cls):
3115 cls.add_binary_comparison_operator('!=')
3116 cls.add_inplace_numeric_operator('+=', param('ns3::Time const &', 'right'))
3117 cls.add_inplace_numeric_operator('-=', param('ns3::Time const &', 'right'))
Alexander Afanasyeva28ec562012-10-25 14:07:32 -07003118 cls.add_output_stream_operator()
Alexander Afanasyeva8f5d882012-11-09 14:22:48 -08003119 cls.add_binary_comparison_operator('<=')
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08003120 cls.add_binary_comparison_operator('==')
3121 cls.add_binary_comparison_operator('>=')
3122 cls.add_binary_numeric_operator('+', root_module['ns3::Time'], root_module['ns3::Time'], param('ns3::Time const &', 'right'))
3123 cls.add_binary_numeric_operator('-', root_module['ns3::Time'], root_module['ns3::Time'], param('ns3::Time const &', 'right'))
3124 cls.add_binary_comparison_operator('<')
3125 cls.add_binary_comparison_operator('>')
3126 ## nstime.h (module 'core'): ns3::Time::Time() [constructor]
3127 cls.add_constructor([])
3128 ## nstime.h (module 'core'): ns3::Time::Time(ns3::Time const & o) [copy constructor]
3129 cls.add_constructor([param('ns3::Time const &', 'o')])
3130 ## nstime.h (module 'core'): ns3::Time::Time(double v) [constructor]
3131 cls.add_constructor([param('double', 'v')])
3132 ## nstime.h (module 'core'): ns3::Time::Time(int v) [constructor]
3133 cls.add_constructor([param('int', 'v')])
3134 ## nstime.h (module 'core'): ns3::Time::Time(long int v) [constructor]
3135 cls.add_constructor([param('long int', 'v')])
3136 ## nstime.h (module 'core'): ns3::Time::Time(long long int v) [constructor]
3137 cls.add_constructor([param('long long int', 'v')])
3138 ## nstime.h (module 'core'): ns3::Time::Time(unsigned int v) [constructor]
3139 cls.add_constructor([param('unsigned int', 'v')])
3140 ## nstime.h (module 'core'): ns3::Time::Time(long unsigned int v) [constructor]
3141 cls.add_constructor([param('long unsigned int', 'v')])
3142 ## nstime.h (module 'core'): ns3::Time::Time(long long unsigned int v) [constructor]
3143 cls.add_constructor([param('long long unsigned int', 'v')])
3144 ## nstime.h (module 'core'): ns3::Time::Time(std::string const & s) [constructor]
3145 cls.add_constructor([param('std::string const &', 's')])
3146 ## nstime.h (module 'core'): ns3::Time::Time(ns3::int64x64_t const & value) [constructor]
3147 cls.add_constructor([param('ns3::int64x64_t const &', 'value')])
3148 ## nstime.h (module 'core'): int ns3::Time::Compare(ns3::Time const & o) const [member function]
3149 cls.add_method('Compare',
3150 'int',
3151 [param('ns3::Time const &', 'o')],
3152 is_const=True)
3153 ## nstime.h (module 'core'): static ns3::Time ns3::Time::From(ns3::int64x64_t const & from, ns3::Time::Unit timeUnit) [member function]
3154 cls.add_method('From',
3155 'ns3::Time',
3156 [param('ns3::int64x64_t const &', 'from'), param('ns3::Time::Unit', 'timeUnit')],
3157 is_static=True)
3158 ## nstime.h (module 'core'): static ns3::Time ns3::Time::From(ns3::int64x64_t const & value) [member function]
3159 cls.add_method('From',
3160 'ns3::Time',
3161 [param('ns3::int64x64_t const &', 'value')],
3162 is_static=True)
3163 ## nstime.h (module 'core'): static ns3::Time ns3::Time::FromDouble(double value, ns3::Time::Unit timeUnit) [member function]
3164 cls.add_method('FromDouble',
3165 'ns3::Time',
3166 [param('double', 'value'), param('ns3::Time::Unit', 'timeUnit')],
3167 is_static=True)
3168 ## nstime.h (module 'core'): static ns3::Time ns3::Time::FromInteger(uint64_t value, ns3::Time::Unit timeUnit) [member function]
3169 cls.add_method('FromInteger',
3170 'ns3::Time',
3171 [param('uint64_t', 'value'), param('ns3::Time::Unit', 'timeUnit')],
3172 is_static=True)
3173 ## nstime.h (module 'core'): double ns3::Time::GetDouble() const [member function]
3174 cls.add_method('GetDouble',
3175 'double',
3176 [],
3177 is_const=True)
3178 ## nstime.h (module 'core'): int64_t ns3::Time::GetFemtoSeconds() const [member function]
3179 cls.add_method('GetFemtoSeconds',
3180 'int64_t',
3181 [],
3182 is_const=True)
3183 ## nstime.h (module 'core'): int64_t ns3::Time::GetInteger() const [member function]
3184 cls.add_method('GetInteger',
3185 'int64_t',
3186 [],
3187 is_const=True)
3188 ## nstime.h (module 'core'): int64_t ns3::Time::GetMicroSeconds() const [member function]
3189 cls.add_method('GetMicroSeconds',
3190 'int64_t',
3191 [],
3192 is_const=True)
3193 ## nstime.h (module 'core'): int64_t ns3::Time::GetMilliSeconds() const [member function]
3194 cls.add_method('GetMilliSeconds',
3195 'int64_t',
3196 [],
3197 is_const=True)
3198 ## nstime.h (module 'core'): int64_t ns3::Time::GetNanoSeconds() const [member function]
3199 cls.add_method('GetNanoSeconds',
3200 'int64_t',
3201 [],
3202 is_const=True)
3203 ## nstime.h (module 'core'): int64_t ns3::Time::GetPicoSeconds() const [member function]
3204 cls.add_method('GetPicoSeconds',
3205 'int64_t',
3206 [],
3207 is_const=True)
3208 ## nstime.h (module 'core'): static ns3::Time::Unit ns3::Time::GetResolution() [member function]
3209 cls.add_method('GetResolution',
3210 'ns3::Time::Unit',
3211 [],
3212 is_static=True)
3213 ## nstime.h (module 'core'): double ns3::Time::GetSeconds() const [member function]
3214 cls.add_method('GetSeconds',
3215 'double',
3216 [],
3217 is_const=True)
3218 ## nstime.h (module 'core'): int64_t ns3::Time::GetTimeStep() const [member function]
3219 cls.add_method('GetTimeStep',
3220 'int64_t',
3221 [],
3222 is_const=True)
3223 ## nstime.h (module 'core'): bool ns3::Time::IsNegative() const [member function]
3224 cls.add_method('IsNegative',
3225 'bool',
3226 [],
3227 is_const=True)
3228 ## nstime.h (module 'core'): bool ns3::Time::IsPositive() const [member function]
3229 cls.add_method('IsPositive',
3230 'bool',
3231 [],
3232 is_const=True)
3233 ## nstime.h (module 'core'): bool ns3::Time::IsStrictlyNegative() const [member function]
3234 cls.add_method('IsStrictlyNegative',
3235 'bool',
3236 [],
3237 is_const=True)
3238 ## nstime.h (module 'core'): bool ns3::Time::IsStrictlyPositive() const [member function]
3239 cls.add_method('IsStrictlyPositive',
3240 'bool',
3241 [],
3242 is_const=True)
3243 ## nstime.h (module 'core'): bool ns3::Time::IsZero() const [member function]
3244 cls.add_method('IsZero',
3245 'bool',
3246 [],
3247 is_const=True)
3248 ## nstime.h (module 'core'): static void ns3::Time::SetResolution(ns3::Time::Unit resolution) [member function]
3249 cls.add_method('SetResolution',
3250 'void',
3251 [param('ns3::Time::Unit', 'resolution')],
3252 is_static=True)
3253 ## nstime.h (module 'core'): ns3::int64x64_t ns3::Time::To(ns3::Time::Unit timeUnit) const [member function]
3254 cls.add_method('To',
3255 'ns3::int64x64_t',
3256 [param('ns3::Time::Unit', 'timeUnit')],
3257 is_const=True)
3258 ## nstime.h (module 'core'): double ns3::Time::ToDouble(ns3::Time::Unit timeUnit) const [member function]
3259 cls.add_method('ToDouble',
3260 'double',
3261 [param('ns3::Time::Unit', 'timeUnit')],
3262 is_const=True)
3263 ## nstime.h (module 'core'): int64_t ns3::Time::ToInteger(ns3::Time::Unit timeUnit) const [member function]
3264 cls.add_method('ToInteger',
3265 'int64_t',
3266 [param('ns3::Time::Unit', 'timeUnit')],
3267 is_const=True)
3268 return
3269
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07003270def register_Ns3TopologyReader_methods(root_module, cls):
3271 ## topology-reader.h (module 'topology-read'): ns3::TopologyReader::TopologyReader() [constructor]
3272 cls.add_constructor([])
3273 ## topology-reader.h (module 'topology-read'): void ns3::TopologyReader::AddLink(ns3::TopologyReader::Link link) [member function]
3274 cls.add_method('AddLink',
3275 'void',
3276 [param('ns3::TopologyReader::Link', 'link')])
3277 ## topology-reader.h (module 'topology-read'): std::string ns3::TopologyReader::GetFileName() const [member function]
3278 cls.add_method('GetFileName',
3279 'std::string',
3280 [],
3281 is_const=True)
3282 ## topology-reader.h (module 'topology-read'): std::_List_const_iterator<ns3::TopologyReader::Link> ns3::TopologyReader::LinksBegin() const [member function]
3283 cls.add_method('LinksBegin',
3284 'std::_List_const_iterator< ns3::TopologyReader::Link >',
3285 [],
3286 is_const=True)
3287 ## topology-reader.h (module 'topology-read'): bool ns3::TopologyReader::LinksEmpty() const [member function]
3288 cls.add_method('LinksEmpty',
3289 'bool',
3290 [],
3291 is_const=True)
3292 ## topology-reader.h (module 'topology-read'): std::_List_const_iterator<ns3::TopologyReader::Link> ns3::TopologyReader::LinksEnd() const [member function]
3293 cls.add_method('LinksEnd',
3294 'std::_List_const_iterator< ns3::TopologyReader::Link >',
3295 [],
3296 is_const=True)
3297 ## topology-reader.h (module 'topology-read'): int ns3::TopologyReader::LinksSize() const [member function]
3298 cls.add_method('LinksSize',
3299 'int',
3300 [],
3301 is_const=True)
3302 ## topology-reader.h (module 'topology-read'): ns3::NodeContainer ns3::TopologyReader::Read() [member function]
3303 cls.add_method('Read',
3304 'ns3::NodeContainer',
3305 [],
3306 is_pure_virtual=True, is_virtual=True)
3307 ## topology-reader.h (module 'topology-read'): void ns3::TopologyReader::SetFileName(std::string const & fileName) [member function]
3308 cls.add_method('SetFileName',
3309 'void',
3310 [param('std::string const &', 'fileName')])
3311 return
3312
3313def register_Ns3TopologyReaderLink_methods(root_module, cls):
3314 ## topology-reader.h (module 'topology-read'): ns3::TopologyReader::Link::Link(ns3::TopologyReader::Link const & arg0) [copy constructor]
3315 cls.add_constructor([param('ns3::TopologyReader::Link const &', 'arg0')])
3316 ## topology-reader.h (module 'topology-read'): ns3::TopologyReader::Link::Link() [constructor]
3317 cls.add_constructor([])
3318 ## 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]
3319 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')])
3320 ## 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]
3321 cls.add_method('AttributesBegin',
3322 '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 > > > >',
3323 [])
3324 ## 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]
3325 cls.add_method('AttributesEnd',
3326 '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 > > > >',
3327 [])
3328 ## topology-reader.h (module 'topology-read'): std::string ns3::TopologyReader::Link::GetAttribute(std::string const & name) const [member function]
3329 cls.add_method('GetAttribute',
3330 'std::string',
3331 [param('std::string const &', 'name')],
3332 is_const=True)
3333 ## topology-reader.h (module 'topology-read'): bool ns3::TopologyReader::Link::GetAttributeFailSafe(std::string const & name, std::string & value) const [member function]
3334 cls.add_method('GetAttributeFailSafe',
3335 'bool',
3336 [param('std::string const &', 'name'), param('std::string &', 'value')],
3337 is_const=True)
3338 ## topology-reader.h (module 'topology-read'): ns3::Ptr<ns3::NetDevice> ns3::TopologyReader::Link::GetFromNetDevice() const [member function]
3339 cls.add_method('GetFromNetDevice',
3340 'ns3::Ptr< ns3::NetDevice >',
3341 [],
3342 is_const=True)
3343 ## topology-reader.h (module 'topology-read'): ns3::Ptr<ns3::Node> ns3::TopologyReader::Link::GetFromNode() const [member function]
3344 cls.add_method('GetFromNode',
3345 'ns3::Ptr< ns3::Node >',
3346 [],
3347 is_const=True)
3348 ## topology-reader.h (module 'topology-read'): std::string ns3::TopologyReader::Link::GetFromNodeName() const [member function]
3349 cls.add_method('GetFromNodeName',
3350 'std::string',
3351 [],
3352 is_const=True)
3353 ## topology-reader.h (module 'topology-read'): ns3::Ptr<ns3::NetDevice> ns3::TopologyReader::Link::GetToNetDevice() const [member function]
3354 cls.add_method('GetToNetDevice',
3355 'ns3::Ptr< ns3::NetDevice >',
3356 [],
3357 is_const=True)
3358 ## topology-reader.h (module 'topology-read'): ns3::Ptr<ns3::Node> ns3::TopologyReader::Link::GetToNode() const [member function]
3359 cls.add_method('GetToNode',
3360 'ns3::Ptr< ns3::Node >',
3361 [],
3362 is_const=True)
3363 ## topology-reader.h (module 'topology-read'): std::string ns3::TopologyReader::Link::GetToNodeName() const [member function]
3364 cls.add_method('GetToNodeName',
3365 'std::string',
3366 [],
3367 is_const=True)
3368 ## topology-reader.h (module 'topology-read'): void ns3::TopologyReader::Link::SetAttribute(std::string const & name, std::string const & value) [member function]
3369 cls.add_method('SetAttribute',
3370 'void',
3371 [param('std::string const &', 'name'), param('std::string const &', 'value')])
3372 ## topology-reader.h (module 'topology-read'): void ns3::TopologyReader::Link::SetNetDevices(ns3::Ptr<ns3::NetDevice> from, ns3::Ptr<ns3::NetDevice> to) [member function]
3373 cls.add_method('SetNetDevices',
3374 'void',
3375 [param('ns3::Ptr< ns3::NetDevice >', 'from'), param('ns3::Ptr< ns3::NetDevice >', 'to')])
3376 return
3377
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08003378def register_Ns3TraceSourceAccessor_methods(root_module, cls):
3379 ## trace-source-accessor.h (module 'core'): ns3::TraceSourceAccessor::TraceSourceAccessor(ns3::TraceSourceAccessor const & arg0) [copy constructor]
3380 cls.add_constructor([param('ns3::TraceSourceAccessor const &', 'arg0')])
3381 ## trace-source-accessor.h (module 'core'): ns3::TraceSourceAccessor::TraceSourceAccessor() [constructor]
3382 cls.add_constructor([])
3383 ## trace-source-accessor.h (module 'core'): bool ns3::TraceSourceAccessor::Connect(ns3::ObjectBase * obj, std::string context, ns3::CallbackBase const & cb) const [member function]
3384 cls.add_method('Connect',
3385 'bool',
3386 [param('ns3::ObjectBase *', 'obj', transfer_ownership=False), param('std::string', 'context'), param('ns3::CallbackBase const &', 'cb')],
3387 is_pure_virtual=True, is_const=True, is_virtual=True)
3388 ## trace-source-accessor.h (module 'core'): bool ns3::TraceSourceAccessor::ConnectWithoutContext(ns3::ObjectBase * obj, ns3::CallbackBase const & cb) const [member function]
3389 cls.add_method('ConnectWithoutContext',
3390 'bool',
3391 [param('ns3::ObjectBase *', 'obj', transfer_ownership=False), param('ns3::CallbackBase const &', 'cb')],
3392 is_pure_virtual=True, is_const=True, is_virtual=True)
3393 ## trace-source-accessor.h (module 'core'): bool ns3::TraceSourceAccessor::Disconnect(ns3::ObjectBase * obj, std::string context, ns3::CallbackBase const & cb) const [member function]
3394 cls.add_method('Disconnect',
3395 'bool',
3396 [param('ns3::ObjectBase *', 'obj', transfer_ownership=False), param('std::string', 'context'), param('ns3::CallbackBase const &', 'cb')],
3397 is_pure_virtual=True, is_const=True, is_virtual=True)
3398 ## trace-source-accessor.h (module 'core'): bool ns3::TraceSourceAccessor::DisconnectWithoutContext(ns3::ObjectBase * obj, ns3::CallbackBase const & cb) const [member function]
3399 cls.add_method('DisconnectWithoutContext',
3400 'bool',
3401 [param('ns3::ObjectBase *', 'obj', transfer_ownership=False), param('ns3::CallbackBase const &', 'cb')],
3402 is_pure_virtual=True, is_const=True, is_virtual=True)
3403 return
3404
3405def register_Ns3Trailer_methods(root_module, cls):
3406 cls.add_output_stream_operator()
3407 ## trailer.h (module 'network'): ns3::Trailer::Trailer() [constructor]
3408 cls.add_constructor([])
3409 ## trailer.h (module 'network'): ns3::Trailer::Trailer(ns3::Trailer const & arg0) [copy constructor]
3410 cls.add_constructor([param('ns3::Trailer const &', 'arg0')])
3411 ## trailer.h (module 'network'): uint32_t ns3::Trailer::Deserialize(ns3::Buffer::Iterator end) [member function]
3412 cls.add_method('Deserialize',
3413 'uint32_t',
3414 [param('ns3::Buffer::Iterator', 'end')],
3415 is_pure_virtual=True, is_virtual=True)
3416 ## trailer.h (module 'network'): uint32_t ns3::Trailer::GetSerializedSize() const [member function]
3417 cls.add_method('GetSerializedSize',
3418 'uint32_t',
3419 [],
3420 is_pure_virtual=True, is_const=True, is_virtual=True)
3421 ## trailer.h (module 'network'): static ns3::TypeId ns3::Trailer::GetTypeId() [member function]
3422 cls.add_method('GetTypeId',
3423 'ns3::TypeId',
3424 [],
3425 is_static=True)
3426 ## trailer.h (module 'network'): void ns3::Trailer::Print(std::ostream & os) const [member function]
3427 cls.add_method('Print',
3428 'void',
3429 [param('std::ostream &', 'os')],
3430 is_pure_virtual=True, is_const=True, is_virtual=True)
3431 ## trailer.h (module 'network'): void ns3::Trailer::Serialize(ns3::Buffer::Iterator start) const [member function]
3432 cls.add_method('Serialize',
3433 'void',
3434 [param('ns3::Buffer::Iterator', 'start')],
3435 is_pure_virtual=True, is_const=True, is_virtual=True)
3436 return
3437
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07003438def register_Ns3AnnotatedTopologyReader_methods(root_module, cls):
3439 ## annotated-topology-reader.h (module 'ndnSIM'): ns3::AnnotatedTopologyReader::AnnotatedTopologyReader(std::string const & path="", double scale=1.0e+0) [constructor]
3440 cls.add_constructor([param('std::string const &', 'path', default_value='""'), param('double', 'scale', default_value='1.0e+0')])
3441 ## annotated-topology-reader.h (module 'ndnSIM'): ns3::NodeContainer ns3::AnnotatedTopologyReader::Read() [member function]
3442 cls.add_method('Read',
3443 'ns3::NodeContainer',
3444 [],
3445 is_virtual=True)
3446 ## annotated-topology-reader.h (module 'ndnSIM'): ns3::NodeContainer ns3::AnnotatedTopologyReader::GetNodes() const [member function]
3447 cls.add_method('GetNodes',
3448 'ns3::NodeContainer',
3449 [],
Alexander Afanasyev858d5312013-07-10 18:50:18 -07003450 is_const=True, is_virtual=True)
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07003451 ## annotated-topology-reader.h (module 'ndnSIM'): std::list<ns3::TopologyReader::Link, std::allocator<ns3::TopologyReader::Link> > const & ns3::AnnotatedTopologyReader::GetLinks() const [member function]
3452 cls.add_method('GetLinks',
3453 'std::list< ns3::TopologyReader::Link > const &',
3454 [],
Alexander Afanasyev858d5312013-07-10 18:50:18 -07003455 is_const=True, is_virtual=True)
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07003456 ## annotated-topology-reader.h (module 'ndnSIM'): void ns3::AnnotatedTopologyReader::AssignIpv4Addresses(ns3::Ipv4Address base) [member function]
3457 cls.add_method('AssignIpv4Addresses',
3458 'void',
Alexander Afanasyev858d5312013-07-10 18:50:18 -07003459 [param('ns3::Ipv4Address', 'base')],
3460 is_virtual=True)
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07003461 ## annotated-topology-reader.h (module 'ndnSIM'): void ns3::AnnotatedTopologyReader::SetBoundingBox(double ulx, double uly, double lrx, double lry) [member function]
3462 cls.add_method('SetBoundingBox',
3463 'void',
Alexander Afanasyev858d5312013-07-10 18:50:18 -07003464 [param('double', 'ulx'), param('double', 'uly'), param('double', 'lrx'), param('double', 'lry')],
3465 is_virtual=True)
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07003466 ## annotated-topology-reader.h (module 'ndnSIM'): void ns3::AnnotatedTopologyReader::SetMobilityModel(std::string const & model) [member function]
3467 cls.add_method('SetMobilityModel',
3468 'void',
Alexander Afanasyev858d5312013-07-10 18:50:18 -07003469 [param('std::string const &', 'model')],
3470 is_virtual=True)
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07003471 ## annotated-topology-reader.h (module 'ndnSIM'): void ns3::AnnotatedTopologyReader::ApplyOspfMetric() [member function]
3472 cls.add_method('ApplyOspfMetric',
3473 'void',
Alexander Afanasyev858d5312013-07-10 18:50:18 -07003474 [],
3475 is_virtual=True)
3476 ## annotated-topology-reader.h (module 'ndnSIM'): void ns3::AnnotatedTopologyReader::SaveTopology(std::string const & file) [member function]
Alexander Afanasyev71029732012-11-19 23:50:52 -08003477 cls.add_method('SaveTopology',
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07003478 'void',
3479 [param('std::string const &', 'file')],
Alexander Afanasyev858d5312013-07-10 18:50:18 -07003480 is_virtual=True)
3481 ## annotated-topology-reader.h (module 'ndnSIM'): void ns3::AnnotatedTopologyReader::SaveGraphviz(std::string const & file) [member function]
3482 cls.add_method('SaveGraphviz',
3483 'void',
3484 [param('std::string const &', 'file')],
3485 is_virtual=True)
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07003486 ## annotated-topology-reader.h (module 'ndnSIM'): ns3::Ptr<ns3::Node> ns3::AnnotatedTopologyReader::CreateNode(std::string const name, uint32_t systemId) [member function]
3487 cls.add_method('CreateNode',
3488 'ns3::Ptr< ns3::Node >',
3489 [param('std::string const', 'name'), param('uint32_t', 'systemId')],
3490 visibility='protected')
3491 ## 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]
3492 cls.add_method('CreateNode',
3493 'ns3::Ptr< ns3::Node >',
3494 [param('std::string const', 'name'), param('double', 'posX'), param('double', 'posY'), param('uint32_t', 'systemId')],
3495 visibility='protected')
3496 ## annotated-topology-reader.h (module 'ndnSIM'): void ns3::AnnotatedTopologyReader::ApplySettings() [member function]
3497 cls.add_method('ApplySettings',
3498 'void',
3499 [],
3500 visibility='protected')
3501 return
3502
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08003503def register_Ns3Application_methods(root_module, cls):
3504 ## application.h (module 'network'): ns3::Application::Application(ns3::Application const & arg0) [copy constructor]
3505 cls.add_constructor([param('ns3::Application const &', 'arg0')])
3506 ## application.h (module 'network'): ns3::Application::Application() [constructor]
3507 cls.add_constructor([])
3508 ## application.h (module 'network'): ns3::Ptr<ns3::Node> ns3::Application::GetNode() const [member function]
3509 cls.add_method('GetNode',
3510 'ns3::Ptr< ns3::Node >',
3511 [],
3512 is_const=True)
3513 ## application.h (module 'network'): static ns3::TypeId ns3::Application::GetTypeId() [member function]
3514 cls.add_method('GetTypeId',
3515 'ns3::TypeId',
3516 [],
3517 is_static=True)
3518 ## application.h (module 'network'): void ns3::Application::SetNode(ns3::Ptr<ns3::Node> node) [member function]
3519 cls.add_method('SetNode',
3520 'void',
3521 [param('ns3::Ptr< ns3::Node >', 'node')])
3522 ## application.h (module 'network'): void ns3::Application::SetStartTime(ns3::Time start) [member function]
3523 cls.add_method('SetStartTime',
3524 'void',
3525 [param('ns3::Time', 'start')])
3526 ## application.h (module 'network'): void ns3::Application::SetStopTime(ns3::Time stop) [member function]
3527 cls.add_method('SetStopTime',
3528 'void',
3529 [param('ns3::Time', 'stop')])
3530 ## application.h (module 'network'): void ns3::Application::DoDispose() [member function]
3531 cls.add_method('DoDispose',
3532 'void',
3533 [],
3534 visibility='protected', is_virtual=True)
Alexander Afanasyev5b8d61b2013-05-03 10:23:21 -07003535 ## application.h (module 'network'): void ns3::Application::DoInitialize() [member function]
3536 cls.add_method('DoInitialize',
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08003537 'void',
3538 [],
3539 visibility='protected', is_virtual=True)
3540 ## application.h (module 'network'): void ns3::Application::StartApplication() [member function]
3541 cls.add_method('StartApplication',
3542 'void',
3543 [],
Alexander Afanasyev06d3a612012-04-17 22:25:40 -07003544 visibility='private', is_virtual=True)
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08003545 ## application.h (module 'network'): void ns3::Application::StopApplication() [member function]
3546 cls.add_method('StopApplication',
3547 'void',
3548 [],
Alexander Afanasyev06d3a612012-04-17 22:25:40 -07003549 visibility='private', is_virtual=True)
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08003550 return
3551
3552def register_Ns3AttributeAccessor_methods(root_module, cls):
3553 ## attribute.h (module 'core'): ns3::AttributeAccessor::AttributeAccessor(ns3::AttributeAccessor const & arg0) [copy constructor]
3554 cls.add_constructor([param('ns3::AttributeAccessor const &', 'arg0')])
3555 ## attribute.h (module 'core'): ns3::AttributeAccessor::AttributeAccessor() [constructor]
3556 cls.add_constructor([])
3557 ## attribute.h (module 'core'): bool ns3::AttributeAccessor::Get(ns3::ObjectBase const * object, ns3::AttributeValue & attribute) const [member function]
3558 cls.add_method('Get',
3559 'bool',
3560 [param('ns3::ObjectBase const *', 'object'), param('ns3::AttributeValue &', 'attribute')],
3561 is_pure_virtual=True, is_const=True, is_virtual=True)
3562 ## attribute.h (module 'core'): bool ns3::AttributeAccessor::HasGetter() const [member function]
3563 cls.add_method('HasGetter',
3564 'bool',
3565 [],
3566 is_pure_virtual=True, is_const=True, is_virtual=True)
3567 ## attribute.h (module 'core'): bool ns3::AttributeAccessor::HasSetter() const [member function]
3568 cls.add_method('HasSetter',
3569 'bool',
3570 [],
3571 is_pure_virtual=True, is_const=True, is_virtual=True)
3572 ## attribute.h (module 'core'): bool ns3::AttributeAccessor::Set(ns3::ObjectBase * object, ns3::AttributeValue const & value) const [member function]
3573 cls.add_method('Set',
3574 'bool',
3575 [param('ns3::ObjectBase *', 'object', transfer_ownership=False), param('ns3::AttributeValue const &', 'value')],
3576 is_pure_virtual=True, is_const=True, is_virtual=True)
3577 return
3578
3579def register_Ns3AttributeChecker_methods(root_module, cls):
3580 ## attribute.h (module 'core'): ns3::AttributeChecker::AttributeChecker(ns3::AttributeChecker const & arg0) [copy constructor]
3581 cls.add_constructor([param('ns3::AttributeChecker const &', 'arg0')])
3582 ## attribute.h (module 'core'): ns3::AttributeChecker::AttributeChecker() [constructor]
3583 cls.add_constructor([])
3584 ## attribute.h (module 'core'): bool ns3::AttributeChecker::Check(ns3::AttributeValue const & value) const [member function]
3585 cls.add_method('Check',
3586 'bool',
3587 [param('ns3::AttributeValue const &', 'value')],
3588 is_pure_virtual=True, is_const=True, is_virtual=True)
3589 ## attribute.h (module 'core'): bool ns3::AttributeChecker::Copy(ns3::AttributeValue const & source, ns3::AttributeValue & destination) const [member function]
3590 cls.add_method('Copy',
3591 'bool',
3592 [param('ns3::AttributeValue const &', 'source'), param('ns3::AttributeValue &', 'destination')],
3593 is_pure_virtual=True, is_const=True, is_virtual=True)
3594 ## attribute.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::AttributeChecker::Create() const [member function]
3595 cls.add_method('Create',
3596 'ns3::Ptr< ns3::AttributeValue >',
3597 [],
3598 is_pure_virtual=True, is_const=True, is_virtual=True)
3599 ## attribute.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::AttributeChecker::CreateValidValue(ns3::AttributeValue const & value) const [member function]
3600 cls.add_method('CreateValidValue',
3601 'ns3::Ptr< ns3::AttributeValue >',
3602 [param('ns3::AttributeValue const &', 'value')],
3603 is_const=True)
3604 ## attribute.h (module 'core'): std::string ns3::AttributeChecker::GetUnderlyingTypeInformation() const [member function]
3605 cls.add_method('GetUnderlyingTypeInformation',
3606 'std::string',
3607 [],
3608 is_pure_virtual=True, is_const=True, is_virtual=True)
3609 ## attribute.h (module 'core'): std::string ns3::AttributeChecker::GetValueTypeName() const [member function]
3610 cls.add_method('GetValueTypeName',
3611 'std::string',
3612 [],
3613 is_pure_virtual=True, is_const=True, is_virtual=True)
3614 ## attribute.h (module 'core'): bool ns3::AttributeChecker::HasUnderlyingTypeInformation() const [member function]
3615 cls.add_method('HasUnderlyingTypeInformation',
3616 'bool',
3617 [],
3618 is_pure_virtual=True, is_const=True, is_virtual=True)
3619 return
3620
3621def register_Ns3AttributeValue_methods(root_module, cls):
3622 ## attribute.h (module 'core'): ns3::AttributeValue::AttributeValue(ns3::AttributeValue const & arg0) [copy constructor]
3623 cls.add_constructor([param('ns3::AttributeValue const &', 'arg0')])
3624 ## attribute.h (module 'core'): ns3::AttributeValue::AttributeValue() [constructor]
3625 cls.add_constructor([])
3626 ## attribute.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::AttributeValue::Copy() const [member function]
3627 cls.add_method('Copy',
3628 'ns3::Ptr< ns3::AttributeValue >',
3629 [],
3630 is_pure_virtual=True, is_const=True, is_virtual=True)
3631 ## attribute.h (module 'core'): bool ns3::AttributeValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
3632 cls.add_method('DeserializeFromString',
3633 'bool',
3634 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3635 is_pure_virtual=True, is_virtual=True)
3636 ## attribute.h (module 'core'): std::string ns3::AttributeValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
3637 cls.add_method('SerializeToString',
3638 'std::string',
3639 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3640 is_pure_virtual=True, is_const=True, is_virtual=True)
3641 return
3642
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07003643def register_Ns3BooleanChecker_methods(root_module, cls):
3644 ## boolean.h (module 'core'): ns3::BooleanChecker::BooleanChecker() [constructor]
3645 cls.add_constructor([])
3646 ## boolean.h (module 'core'): ns3::BooleanChecker::BooleanChecker(ns3::BooleanChecker const & arg0) [copy constructor]
3647 cls.add_constructor([param('ns3::BooleanChecker const &', 'arg0')])
3648 return
3649
3650def register_Ns3BooleanValue_methods(root_module, cls):
3651 cls.add_output_stream_operator()
3652 ## boolean.h (module 'core'): ns3::BooleanValue::BooleanValue(ns3::BooleanValue const & arg0) [copy constructor]
3653 cls.add_constructor([param('ns3::BooleanValue const &', 'arg0')])
3654 ## boolean.h (module 'core'): ns3::BooleanValue::BooleanValue() [constructor]
3655 cls.add_constructor([])
3656 ## boolean.h (module 'core'): ns3::BooleanValue::BooleanValue(bool value) [constructor]
3657 cls.add_constructor([param('bool', 'value')])
3658 ## boolean.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::BooleanValue::Copy() const [member function]
3659 cls.add_method('Copy',
3660 'ns3::Ptr< ns3::AttributeValue >',
3661 [],
3662 is_const=True, is_virtual=True)
3663 ## boolean.h (module 'core'): bool ns3::BooleanValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
3664 cls.add_method('DeserializeFromString',
3665 'bool',
3666 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3667 is_virtual=True)
3668 ## boolean.h (module 'core'): bool ns3::BooleanValue::Get() const [member function]
3669 cls.add_method('Get',
3670 'bool',
3671 [],
3672 is_const=True)
3673 ## boolean.h (module 'core'): std::string ns3::BooleanValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
3674 cls.add_method('SerializeToString',
3675 'std::string',
3676 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3677 is_const=True, is_virtual=True)
3678 ## boolean.h (module 'core'): void ns3::BooleanValue::Set(bool value) [member function]
3679 cls.add_method('Set',
3680 'void',
3681 [param('bool', 'value')])
3682 return
3683
Alexander Afanasyeve4795ae2013-07-11 20:01:31 -07003684def register_Ns3CallbackBasedApp_methods(root_module, cls):
3685 ## callback-based-app.h (module 'ndnSIM'): ns3::CallbackBasedApp::CallbackBasedApp(ns3::CallbackBasedApp const & arg0) [copy constructor]
3686 cls.add_constructor([param('ns3::CallbackBasedApp const &', 'arg0')])
3687 ## callback-based-app.h (module 'ndnSIM'): ns3::CallbackBasedApp::CallbackBasedApp() [constructor]
3688 cls.add_constructor([])
3689 ## callback-based-app.h (module 'ndnSIM'): static ns3::TypeId ns3::CallbackBasedApp::GetTypeId() [member function]
3690 cls.add_method('GetTypeId',
3691 'ns3::TypeId',
3692 [],
3693 is_static=True)
3694 ## callback-based-app.h (module 'ndnSIM'): void ns3::CallbackBasedApp::SetOnStartCallback(ns3::Callback<void, ns3::Ptr<ns3::Application>, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> onStart) [member function]
3695 cls.add_method('SetOnStartCallback',
3696 'void',
3697 [param('ns3::Callback< void, ns3::Ptr< ns3::Application >, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'onStart')])
3698 ## callback-based-app.h (module 'ndnSIM'): void ns3::CallbackBasedApp::SetOnStopCallback(ns3::Callback<void, ns3::Ptr<ns3::Application>, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> onStart) [member function]
3699 cls.add_method('SetOnStopCallback',
3700 'void',
3701 [param('ns3::Callback< void, ns3::Ptr< ns3::Application >, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'onStart')])
3702 ## callback-based-app.h (module 'ndnSIM'): void ns3::CallbackBasedApp::StartApplication() [member function]
3703 cls.add_method('StartApplication',
3704 'void',
3705 [],
3706 visibility='protected', is_virtual=True)
3707 ## callback-based-app.h (module 'ndnSIM'): void ns3::CallbackBasedApp::StopApplication() [member function]
3708 cls.add_method('StopApplication',
3709 'void',
3710 [],
3711 visibility='protected', is_virtual=True)
3712 return
3713
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08003714def register_Ns3CallbackChecker_methods(root_module, cls):
3715 ## callback.h (module 'core'): ns3::CallbackChecker::CallbackChecker() [constructor]
3716 cls.add_constructor([])
3717 ## callback.h (module 'core'): ns3::CallbackChecker::CallbackChecker(ns3::CallbackChecker const & arg0) [copy constructor]
3718 cls.add_constructor([param('ns3::CallbackChecker const &', 'arg0')])
3719 return
3720
3721def register_Ns3CallbackImplBase_methods(root_module, cls):
3722 ## callback.h (module 'core'): ns3::CallbackImplBase::CallbackImplBase() [constructor]
3723 cls.add_constructor([])
3724 ## callback.h (module 'core'): ns3::CallbackImplBase::CallbackImplBase(ns3::CallbackImplBase const & arg0) [copy constructor]
3725 cls.add_constructor([param('ns3::CallbackImplBase const &', 'arg0')])
3726 ## callback.h (module 'core'): bool ns3::CallbackImplBase::IsEqual(ns3::Ptr<ns3::CallbackImplBase const> other) const [member function]
3727 cls.add_method('IsEqual',
3728 'bool',
3729 [param('ns3::Ptr< ns3::CallbackImplBase const >', 'other')],
3730 is_pure_virtual=True, is_const=True, is_virtual=True)
3731 return
3732
3733def register_Ns3CallbackValue_methods(root_module, cls):
3734 ## callback.h (module 'core'): ns3::CallbackValue::CallbackValue(ns3::CallbackValue const & arg0) [copy constructor]
3735 cls.add_constructor([param('ns3::CallbackValue const &', 'arg0')])
3736 ## callback.h (module 'core'): ns3::CallbackValue::CallbackValue() [constructor]
3737 cls.add_constructor([])
3738 ## callback.h (module 'core'): ns3::CallbackValue::CallbackValue(ns3::CallbackBase const & base) [constructor]
3739 cls.add_constructor([param('ns3::CallbackBase const &', 'base')])
3740 ## callback.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::CallbackValue::Copy() const [member function]
3741 cls.add_method('Copy',
3742 'ns3::Ptr< ns3::AttributeValue >',
3743 [],
3744 is_const=True, is_virtual=True)
3745 ## callback.h (module 'core'): bool ns3::CallbackValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
3746 cls.add_method('DeserializeFromString',
3747 'bool',
3748 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3749 is_virtual=True)
3750 ## callback.h (module 'core'): std::string ns3::CallbackValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
3751 cls.add_method('SerializeToString',
3752 'std::string',
3753 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3754 is_const=True, is_virtual=True)
3755 ## callback.h (module 'core'): void ns3::CallbackValue::Set(ns3::CallbackBase base) [member function]
3756 cls.add_method('Set',
3757 'void',
3758 [param('ns3::CallbackBase', 'base')])
3759 return
3760
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07003761def register_Ns3DoubleValue_methods(root_module, cls):
3762 ## double.h (module 'core'): ns3::DoubleValue::DoubleValue() [constructor]
3763 cls.add_constructor([])
3764 ## double.h (module 'core'): ns3::DoubleValue::DoubleValue(ns3::DoubleValue const & arg0) [copy constructor]
3765 cls.add_constructor([param('ns3::DoubleValue const &', 'arg0')])
3766 ## double.h (module 'core'): ns3::DoubleValue::DoubleValue(double const & value) [constructor]
3767 cls.add_constructor([param('double const &', 'value')])
3768 ## double.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::DoubleValue::Copy() const [member function]
3769 cls.add_method('Copy',
3770 'ns3::Ptr< ns3::AttributeValue >',
3771 [],
3772 is_const=True, is_virtual=True)
3773 ## double.h (module 'core'): bool ns3::DoubleValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
3774 cls.add_method('DeserializeFromString',
3775 'bool',
3776 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3777 is_virtual=True)
3778 ## double.h (module 'core'): double ns3::DoubleValue::Get() const [member function]
3779 cls.add_method('Get',
3780 'double',
3781 [],
3782 is_const=True)
3783 ## double.h (module 'core'): std::string ns3::DoubleValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
3784 cls.add_method('SerializeToString',
3785 'std::string',
3786 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3787 is_const=True, is_virtual=True)
3788 ## double.h (module 'core'): void ns3::DoubleValue::Set(double const & value) [member function]
3789 cls.add_method('Set',
3790 'void',
3791 [param('double const &', 'value')])
3792 return
3793
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08003794def register_Ns3EmptyAttributeValue_methods(root_module, cls):
3795 ## attribute.h (module 'core'): ns3::EmptyAttributeValue::EmptyAttributeValue(ns3::EmptyAttributeValue const & arg0) [copy constructor]
3796 cls.add_constructor([param('ns3::EmptyAttributeValue const &', 'arg0')])
3797 ## attribute.h (module 'core'): ns3::EmptyAttributeValue::EmptyAttributeValue() [constructor]
3798 cls.add_constructor([])
3799 ## attribute.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::EmptyAttributeValue::Copy() const [member function]
3800 cls.add_method('Copy',
3801 'ns3::Ptr< ns3::AttributeValue >',
3802 [],
3803 is_const=True, visibility='private', is_virtual=True)
3804 ## attribute.h (module 'core'): bool ns3::EmptyAttributeValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
3805 cls.add_method('DeserializeFromString',
3806 'bool',
3807 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3808 visibility='private', is_virtual=True)
3809 ## attribute.h (module 'core'): std::string ns3::EmptyAttributeValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
3810 cls.add_method('SerializeToString',
3811 'std::string',
3812 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3813 is_const=True, visibility='private', is_virtual=True)
3814 return
3815
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07003816def register_Ns3EnumChecker_methods(root_module, cls):
3817 ## enum.h (module 'core'): ns3::EnumChecker::EnumChecker(ns3::EnumChecker const & arg0) [copy constructor]
3818 cls.add_constructor([param('ns3::EnumChecker const &', 'arg0')])
3819 ## enum.h (module 'core'): ns3::EnumChecker::EnumChecker() [constructor]
3820 cls.add_constructor([])
3821 ## enum.h (module 'core'): void ns3::EnumChecker::Add(int v, std::string name) [member function]
3822 cls.add_method('Add',
3823 'void',
3824 [param('int', 'v'), param('std::string', 'name')])
3825 ## enum.h (module 'core'): void ns3::EnumChecker::AddDefault(int v, std::string name) [member function]
3826 cls.add_method('AddDefault',
3827 'void',
3828 [param('int', 'v'), param('std::string', 'name')])
3829 ## enum.h (module 'core'): bool ns3::EnumChecker::Check(ns3::AttributeValue const & value) const [member function]
3830 cls.add_method('Check',
3831 'bool',
3832 [param('ns3::AttributeValue const &', 'value')],
3833 is_const=True, is_virtual=True)
3834 ## enum.h (module 'core'): bool ns3::EnumChecker::Copy(ns3::AttributeValue const & src, ns3::AttributeValue & dst) const [member function]
3835 cls.add_method('Copy',
3836 'bool',
3837 [param('ns3::AttributeValue const &', 'src'), param('ns3::AttributeValue &', 'dst')],
3838 is_const=True, is_virtual=True)
3839 ## enum.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::EnumChecker::Create() const [member function]
3840 cls.add_method('Create',
3841 'ns3::Ptr< ns3::AttributeValue >',
3842 [],
3843 is_const=True, is_virtual=True)
3844 ## enum.h (module 'core'): std::string ns3::EnumChecker::GetUnderlyingTypeInformation() const [member function]
3845 cls.add_method('GetUnderlyingTypeInformation',
3846 'std::string',
3847 [],
3848 is_const=True, is_virtual=True)
3849 ## enum.h (module 'core'): std::string ns3::EnumChecker::GetValueTypeName() const [member function]
3850 cls.add_method('GetValueTypeName',
3851 'std::string',
3852 [],
3853 is_const=True, is_virtual=True)
3854 ## enum.h (module 'core'): bool ns3::EnumChecker::HasUnderlyingTypeInformation() const [member function]
3855 cls.add_method('HasUnderlyingTypeInformation',
3856 'bool',
3857 [],
3858 is_const=True, is_virtual=True)
3859 return
3860
3861def register_Ns3EnumValue_methods(root_module, cls):
3862 ## enum.h (module 'core'): ns3::EnumValue::EnumValue(ns3::EnumValue const & arg0) [copy constructor]
3863 cls.add_constructor([param('ns3::EnumValue const &', 'arg0')])
3864 ## enum.h (module 'core'): ns3::EnumValue::EnumValue() [constructor]
3865 cls.add_constructor([])
3866 ## enum.h (module 'core'): ns3::EnumValue::EnumValue(int v) [constructor]
3867 cls.add_constructor([param('int', 'v')])
3868 ## enum.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::EnumValue::Copy() const [member function]
3869 cls.add_method('Copy',
3870 'ns3::Ptr< ns3::AttributeValue >',
3871 [],
3872 is_const=True, is_virtual=True)
3873 ## enum.h (module 'core'): bool ns3::EnumValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
3874 cls.add_method('DeserializeFromString',
3875 'bool',
3876 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3877 is_virtual=True)
3878 ## enum.h (module 'core'): int ns3::EnumValue::Get() const [member function]
3879 cls.add_method('Get',
3880 'int',
3881 [],
3882 is_const=True)
3883 ## enum.h (module 'core'): std::string ns3::EnumValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
3884 cls.add_method('SerializeToString',
3885 'std::string',
3886 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3887 is_const=True, is_virtual=True)
3888 ## enum.h (module 'core'): void ns3::EnumValue::Set(int v) [member function]
3889 cls.add_method('Set',
3890 'void',
3891 [param('int', 'v')])
3892 return
3893
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08003894def register_Ns3EventImpl_methods(root_module, cls):
3895 ## event-impl.h (module 'core'): ns3::EventImpl::EventImpl(ns3::EventImpl const & arg0) [copy constructor]
3896 cls.add_constructor([param('ns3::EventImpl const &', 'arg0')])
3897 ## event-impl.h (module 'core'): ns3::EventImpl::EventImpl() [constructor]
3898 cls.add_constructor([])
3899 ## event-impl.h (module 'core'): void ns3::EventImpl::Cancel() [member function]
3900 cls.add_method('Cancel',
3901 'void',
3902 [])
3903 ## event-impl.h (module 'core'): void ns3::EventImpl::Invoke() [member function]
3904 cls.add_method('Invoke',
3905 'void',
3906 [])
3907 ## event-impl.h (module 'core'): bool ns3::EventImpl::IsCancelled() [member function]
3908 cls.add_method('IsCancelled',
3909 'bool',
3910 [])
3911 ## event-impl.h (module 'core'): void ns3::EventImpl::Notify() [member function]
3912 cls.add_method('Notify',
3913 'void',
3914 [],
3915 is_pure_virtual=True, visibility='protected', is_virtual=True)
3916 return
3917
3918def register_Ns3IntegerValue_methods(root_module, cls):
3919 ## integer.h (module 'core'): ns3::IntegerValue::IntegerValue() [constructor]
3920 cls.add_constructor([])
3921 ## integer.h (module 'core'): ns3::IntegerValue::IntegerValue(ns3::IntegerValue const & arg0) [copy constructor]
3922 cls.add_constructor([param('ns3::IntegerValue const &', 'arg0')])
3923 ## integer.h (module 'core'): ns3::IntegerValue::IntegerValue(int64_t const & value) [constructor]
3924 cls.add_constructor([param('int64_t const &', 'value')])
3925 ## integer.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::IntegerValue::Copy() const [member function]
3926 cls.add_method('Copy',
3927 'ns3::Ptr< ns3::AttributeValue >',
3928 [],
3929 is_const=True, is_virtual=True)
3930 ## integer.h (module 'core'): bool ns3::IntegerValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
3931 cls.add_method('DeserializeFromString',
3932 'bool',
3933 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3934 is_virtual=True)
3935 ## integer.h (module 'core'): int64_t ns3::IntegerValue::Get() const [member function]
3936 cls.add_method('Get',
3937 'int64_t',
3938 [],
3939 is_const=True)
3940 ## integer.h (module 'core'): std::string ns3::IntegerValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
3941 cls.add_method('SerializeToString',
3942 'std::string',
3943 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3944 is_const=True, is_virtual=True)
3945 ## integer.h (module 'core'): void ns3::IntegerValue::Set(int64_t const & value) [member function]
3946 cls.add_method('Set',
3947 'void',
3948 [param('int64_t const &', 'value')])
3949 return
3950
3951def register_Ns3Ipv4AddressChecker_methods(root_module, cls):
3952 ## ipv4-address.h (module 'network'): ns3::Ipv4AddressChecker::Ipv4AddressChecker() [constructor]
3953 cls.add_constructor([])
3954 ## ipv4-address.h (module 'network'): ns3::Ipv4AddressChecker::Ipv4AddressChecker(ns3::Ipv4AddressChecker const & arg0) [copy constructor]
3955 cls.add_constructor([param('ns3::Ipv4AddressChecker const &', 'arg0')])
3956 return
3957
3958def register_Ns3Ipv4AddressValue_methods(root_module, cls):
3959 ## ipv4-address.h (module 'network'): ns3::Ipv4AddressValue::Ipv4AddressValue() [constructor]
3960 cls.add_constructor([])
3961 ## ipv4-address.h (module 'network'): ns3::Ipv4AddressValue::Ipv4AddressValue(ns3::Ipv4AddressValue const & arg0) [copy constructor]
3962 cls.add_constructor([param('ns3::Ipv4AddressValue const &', 'arg0')])
3963 ## ipv4-address.h (module 'network'): ns3::Ipv4AddressValue::Ipv4AddressValue(ns3::Ipv4Address const & value) [constructor]
3964 cls.add_constructor([param('ns3::Ipv4Address const &', 'value')])
3965 ## ipv4-address.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::Ipv4AddressValue::Copy() const [member function]
3966 cls.add_method('Copy',
3967 'ns3::Ptr< ns3::AttributeValue >',
3968 [],
3969 is_const=True, is_virtual=True)
3970 ## ipv4-address.h (module 'network'): bool ns3::Ipv4AddressValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
3971 cls.add_method('DeserializeFromString',
3972 'bool',
3973 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3974 is_virtual=True)
3975 ## ipv4-address.h (module 'network'): ns3::Ipv4Address ns3::Ipv4AddressValue::Get() const [member function]
3976 cls.add_method('Get',
3977 'ns3::Ipv4Address',
3978 [],
3979 is_const=True)
3980 ## ipv4-address.h (module 'network'): std::string ns3::Ipv4AddressValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
3981 cls.add_method('SerializeToString',
3982 'std::string',
3983 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3984 is_const=True, is_virtual=True)
3985 ## ipv4-address.h (module 'network'): void ns3::Ipv4AddressValue::Set(ns3::Ipv4Address const & value) [member function]
3986 cls.add_method('Set',
3987 'void',
3988 [param('ns3::Ipv4Address const &', 'value')])
3989 return
3990
3991def register_Ns3Ipv4MaskChecker_methods(root_module, cls):
3992 ## ipv4-address.h (module 'network'): ns3::Ipv4MaskChecker::Ipv4MaskChecker() [constructor]
3993 cls.add_constructor([])
3994 ## ipv4-address.h (module 'network'): ns3::Ipv4MaskChecker::Ipv4MaskChecker(ns3::Ipv4MaskChecker const & arg0) [copy constructor]
3995 cls.add_constructor([param('ns3::Ipv4MaskChecker const &', 'arg0')])
3996 return
3997
3998def register_Ns3Ipv4MaskValue_methods(root_module, cls):
3999 ## ipv4-address.h (module 'network'): ns3::Ipv4MaskValue::Ipv4MaskValue() [constructor]
4000 cls.add_constructor([])
4001 ## ipv4-address.h (module 'network'): ns3::Ipv4MaskValue::Ipv4MaskValue(ns3::Ipv4MaskValue const & arg0) [copy constructor]
4002 cls.add_constructor([param('ns3::Ipv4MaskValue const &', 'arg0')])
4003 ## ipv4-address.h (module 'network'): ns3::Ipv4MaskValue::Ipv4MaskValue(ns3::Ipv4Mask const & value) [constructor]
4004 cls.add_constructor([param('ns3::Ipv4Mask const &', 'value')])
4005 ## ipv4-address.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::Ipv4MaskValue::Copy() const [member function]
4006 cls.add_method('Copy',
4007 'ns3::Ptr< ns3::AttributeValue >',
4008 [],
4009 is_const=True, is_virtual=True)
4010 ## ipv4-address.h (module 'network'): bool ns3::Ipv4MaskValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
4011 cls.add_method('DeserializeFromString',
4012 'bool',
4013 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4014 is_virtual=True)
4015 ## ipv4-address.h (module 'network'): ns3::Ipv4Mask ns3::Ipv4MaskValue::Get() const [member function]
4016 cls.add_method('Get',
4017 'ns3::Ipv4Mask',
4018 [],
4019 is_const=True)
4020 ## ipv4-address.h (module 'network'): std::string ns3::Ipv4MaskValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
4021 cls.add_method('SerializeToString',
4022 'std::string',
4023 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4024 is_const=True, is_virtual=True)
4025 ## ipv4-address.h (module 'network'): void ns3::Ipv4MaskValue::Set(ns3::Ipv4Mask const & value) [member function]
4026 cls.add_method('Set',
4027 'void',
4028 [param('ns3::Ipv4Mask const &', 'value')])
4029 return
4030
4031def register_Ns3Ipv6AddressChecker_methods(root_module, cls):
4032 ## ipv6-address.h (module 'network'): ns3::Ipv6AddressChecker::Ipv6AddressChecker() [constructor]
4033 cls.add_constructor([])
4034 ## ipv6-address.h (module 'network'): ns3::Ipv6AddressChecker::Ipv6AddressChecker(ns3::Ipv6AddressChecker const & arg0) [copy constructor]
4035 cls.add_constructor([param('ns3::Ipv6AddressChecker const &', 'arg0')])
4036 return
4037
4038def register_Ns3Ipv6AddressValue_methods(root_module, cls):
4039 ## ipv6-address.h (module 'network'): ns3::Ipv6AddressValue::Ipv6AddressValue() [constructor]
4040 cls.add_constructor([])
4041 ## ipv6-address.h (module 'network'): ns3::Ipv6AddressValue::Ipv6AddressValue(ns3::Ipv6AddressValue const & arg0) [copy constructor]
4042 cls.add_constructor([param('ns3::Ipv6AddressValue const &', 'arg0')])
4043 ## ipv6-address.h (module 'network'): ns3::Ipv6AddressValue::Ipv6AddressValue(ns3::Ipv6Address const & value) [constructor]
4044 cls.add_constructor([param('ns3::Ipv6Address const &', 'value')])
4045 ## ipv6-address.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::Ipv6AddressValue::Copy() const [member function]
4046 cls.add_method('Copy',
4047 'ns3::Ptr< ns3::AttributeValue >',
4048 [],
4049 is_const=True, is_virtual=True)
4050 ## ipv6-address.h (module 'network'): bool ns3::Ipv6AddressValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
4051 cls.add_method('DeserializeFromString',
4052 'bool',
4053 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4054 is_virtual=True)
4055 ## ipv6-address.h (module 'network'): ns3::Ipv6Address ns3::Ipv6AddressValue::Get() const [member function]
4056 cls.add_method('Get',
4057 'ns3::Ipv6Address',
4058 [],
4059 is_const=True)
4060 ## ipv6-address.h (module 'network'): std::string ns3::Ipv6AddressValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
4061 cls.add_method('SerializeToString',
4062 'std::string',
4063 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4064 is_const=True, is_virtual=True)
4065 ## ipv6-address.h (module 'network'): void ns3::Ipv6AddressValue::Set(ns3::Ipv6Address const & value) [member function]
4066 cls.add_method('Set',
4067 'void',
4068 [param('ns3::Ipv6Address const &', 'value')])
4069 return
4070
4071def register_Ns3Ipv6PrefixChecker_methods(root_module, cls):
4072 ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixChecker::Ipv6PrefixChecker() [constructor]
4073 cls.add_constructor([])
4074 ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixChecker::Ipv6PrefixChecker(ns3::Ipv6PrefixChecker const & arg0) [copy constructor]
4075 cls.add_constructor([param('ns3::Ipv6PrefixChecker const &', 'arg0')])
4076 return
4077
4078def register_Ns3Ipv6PrefixValue_methods(root_module, cls):
4079 ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixValue::Ipv6PrefixValue() [constructor]
4080 cls.add_constructor([])
4081 ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixValue::Ipv6PrefixValue(ns3::Ipv6PrefixValue const & arg0) [copy constructor]
4082 cls.add_constructor([param('ns3::Ipv6PrefixValue const &', 'arg0')])
4083 ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixValue::Ipv6PrefixValue(ns3::Ipv6Prefix const & value) [constructor]
4084 cls.add_constructor([param('ns3::Ipv6Prefix const &', 'value')])
4085 ## ipv6-address.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::Ipv6PrefixValue::Copy() const [member function]
4086 cls.add_method('Copy',
4087 'ns3::Ptr< ns3::AttributeValue >',
4088 [],
4089 is_const=True, is_virtual=True)
4090 ## ipv6-address.h (module 'network'): bool ns3::Ipv6PrefixValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
4091 cls.add_method('DeserializeFromString',
4092 'bool',
4093 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4094 is_virtual=True)
4095 ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix ns3::Ipv6PrefixValue::Get() const [member function]
4096 cls.add_method('Get',
4097 'ns3::Ipv6Prefix',
4098 [],
4099 is_const=True)
4100 ## ipv6-address.h (module 'network'): std::string ns3::Ipv6PrefixValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
4101 cls.add_method('SerializeToString',
4102 'std::string',
4103 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4104 is_const=True, is_virtual=True)
4105 ## ipv6-address.h (module 'network'): void ns3::Ipv6PrefixValue::Set(ns3::Ipv6Prefix const & value) [member function]
4106 cls.add_method('Set',
4107 'void',
4108 [param('ns3::Ipv6Prefix const &', 'value')])
4109 return
4110
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004111def register_Ns3NetDevice_methods(root_module, cls):
4112 ## net-device.h (module 'network'): ns3::NetDevice::NetDevice() [constructor]
4113 cls.add_constructor([])
4114 ## net-device.h (module 'network'): ns3::NetDevice::NetDevice(ns3::NetDevice const & arg0) [copy constructor]
4115 cls.add_constructor([param('ns3::NetDevice const &', 'arg0')])
Alexander Afanasyeva8f5d882012-11-09 14:22:48 -08004116 ## 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 -08004117 cls.add_method('AddLinkChangeCallback',
4118 'void',
4119 [param('ns3::Callback< void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'callback')],
4120 is_pure_virtual=True, is_virtual=True)
4121 ## net-device.h (module 'network'): ns3::Address ns3::NetDevice::GetAddress() const [member function]
4122 cls.add_method('GetAddress',
4123 'ns3::Address',
4124 [],
4125 is_pure_virtual=True, is_const=True, is_virtual=True)
4126 ## net-device.h (module 'network'): ns3::Address ns3::NetDevice::GetBroadcast() const [member function]
4127 cls.add_method('GetBroadcast',
4128 'ns3::Address',
4129 [],
4130 is_pure_virtual=True, is_const=True, is_virtual=True)
4131 ## net-device.h (module 'network'): ns3::Ptr<ns3::Channel> ns3::NetDevice::GetChannel() const [member function]
4132 cls.add_method('GetChannel',
4133 'ns3::Ptr< ns3::Channel >',
4134 [],
4135 is_pure_virtual=True, is_const=True, is_virtual=True)
4136 ## net-device.h (module 'network'): uint32_t ns3::NetDevice::GetIfIndex() const [member function]
4137 cls.add_method('GetIfIndex',
4138 'uint32_t',
4139 [],
4140 is_pure_virtual=True, is_const=True, is_virtual=True)
4141 ## net-device.h (module 'network'): uint16_t ns3::NetDevice::GetMtu() const [member function]
4142 cls.add_method('GetMtu',
4143 'uint16_t',
4144 [],
4145 is_pure_virtual=True, is_const=True, is_virtual=True)
4146 ## net-device.h (module 'network'): ns3::Address ns3::NetDevice::GetMulticast(ns3::Ipv4Address multicastGroup) const [member function]
4147 cls.add_method('GetMulticast',
4148 'ns3::Address',
4149 [param('ns3::Ipv4Address', 'multicastGroup')],
4150 is_pure_virtual=True, is_const=True, is_virtual=True)
4151 ## net-device.h (module 'network'): ns3::Address ns3::NetDevice::GetMulticast(ns3::Ipv6Address addr) const [member function]
4152 cls.add_method('GetMulticast',
4153 'ns3::Address',
4154 [param('ns3::Ipv6Address', 'addr')],
4155 is_pure_virtual=True, is_const=True, is_virtual=True)
4156 ## net-device.h (module 'network'): ns3::Ptr<ns3::Node> ns3::NetDevice::GetNode() const [member function]
4157 cls.add_method('GetNode',
4158 'ns3::Ptr< ns3::Node >',
4159 [],
4160 is_pure_virtual=True, is_const=True, is_virtual=True)
4161 ## net-device.h (module 'network'): static ns3::TypeId ns3::NetDevice::GetTypeId() [member function]
4162 cls.add_method('GetTypeId',
4163 'ns3::TypeId',
4164 [],
4165 is_static=True)
4166 ## net-device.h (module 'network'): bool ns3::NetDevice::IsBridge() const [member function]
4167 cls.add_method('IsBridge',
4168 'bool',
4169 [],
4170 is_pure_virtual=True, is_const=True, is_virtual=True)
4171 ## net-device.h (module 'network'): bool ns3::NetDevice::IsBroadcast() const [member function]
4172 cls.add_method('IsBroadcast',
4173 'bool',
4174 [],
4175 is_pure_virtual=True, is_const=True, is_virtual=True)
4176 ## net-device.h (module 'network'): bool ns3::NetDevice::IsLinkUp() const [member function]
4177 cls.add_method('IsLinkUp',
4178 'bool',
4179 [],
4180 is_pure_virtual=True, is_const=True, is_virtual=True)
4181 ## net-device.h (module 'network'): bool ns3::NetDevice::IsMulticast() const [member function]
4182 cls.add_method('IsMulticast',
4183 'bool',
4184 [],
4185 is_pure_virtual=True, is_const=True, is_virtual=True)
4186 ## net-device.h (module 'network'): bool ns3::NetDevice::IsPointToPoint() const [member function]
4187 cls.add_method('IsPointToPoint',
4188 'bool',
4189 [],
4190 is_pure_virtual=True, is_const=True, is_virtual=True)
4191 ## net-device.h (module 'network'): bool ns3::NetDevice::NeedsArp() const [member function]
4192 cls.add_method('NeedsArp',
4193 'bool',
4194 [],
4195 is_pure_virtual=True, is_const=True, is_virtual=True)
4196 ## net-device.h (module 'network'): bool ns3::NetDevice::Send(ns3::Ptr<ns3::Packet> packet, ns3::Address const & dest, uint16_t protocolNumber) [member function]
4197 cls.add_method('Send',
4198 'bool',
4199 [param('ns3::Ptr< ns3::Packet >', 'packet'), param('ns3::Address const &', 'dest'), param('uint16_t', 'protocolNumber')],
4200 is_pure_virtual=True, is_virtual=True)
4201 ## 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]
4202 cls.add_method('SendFrom',
4203 'bool',
4204 [param('ns3::Ptr< ns3::Packet >', 'packet'), param('ns3::Address const &', 'source'), param('ns3::Address const &', 'dest'), param('uint16_t', 'protocolNumber')],
4205 is_pure_virtual=True, is_virtual=True)
4206 ## net-device.h (module 'network'): void ns3::NetDevice::SetAddress(ns3::Address address) [member function]
4207 cls.add_method('SetAddress',
4208 'void',
4209 [param('ns3::Address', 'address')],
4210 is_pure_virtual=True, is_virtual=True)
4211 ## net-device.h (module 'network'): void ns3::NetDevice::SetIfIndex(uint32_t const index) [member function]
4212 cls.add_method('SetIfIndex',
4213 'void',
4214 [param('uint32_t const', 'index')],
4215 is_pure_virtual=True, is_virtual=True)
4216 ## net-device.h (module 'network'): bool ns3::NetDevice::SetMtu(uint16_t const mtu) [member function]
4217 cls.add_method('SetMtu',
4218 'bool',
4219 [param('uint16_t const', 'mtu')],
4220 is_pure_virtual=True, is_virtual=True)
4221 ## net-device.h (module 'network'): void ns3::NetDevice::SetNode(ns3::Ptr<ns3::Node> node) [member function]
4222 cls.add_method('SetNode',
4223 'void',
4224 [param('ns3::Ptr< ns3::Node >', 'node')],
4225 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -08004226 ## 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 -08004227 cls.add_method('SetPromiscReceiveCallback',
4228 'void',
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -08004229 [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 -08004230 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -08004231 ## 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 -08004232 cls.add_method('SetReceiveCallback',
4233 'void',
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -08004234 [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 -08004235 is_pure_virtual=True, is_virtual=True)
4236 ## net-device.h (module 'network'): bool ns3::NetDevice::SupportsSendFrom() const [member function]
4237 cls.add_method('SupportsSendFrom',
4238 'bool',
4239 [],
4240 is_pure_virtual=True, is_const=True, is_virtual=True)
4241 return
4242
4243def register_Ns3NixVector_methods(root_module, cls):
4244 cls.add_output_stream_operator()
4245 ## nix-vector.h (module 'network'): ns3::NixVector::NixVector() [constructor]
4246 cls.add_constructor([])
4247 ## nix-vector.h (module 'network'): ns3::NixVector::NixVector(ns3::NixVector const & o) [copy constructor]
4248 cls.add_constructor([param('ns3::NixVector const &', 'o')])
4249 ## nix-vector.h (module 'network'): void ns3::NixVector::AddNeighborIndex(uint32_t newBits, uint32_t numberOfBits) [member function]
4250 cls.add_method('AddNeighborIndex',
4251 'void',
4252 [param('uint32_t', 'newBits'), param('uint32_t', 'numberOfBits')])
4253 ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::BitCount(uint32_t numberOfNeighbors) const [member function]
4254 cls.add_method('BitCount',
4255 'uint32_t',
4256 [param('uint32_t', 'numberOfNeighbors')],
4257 is_const=True)
4258 ## nix-vector.h (module 'network'): ns3::Ptr<ns3::NixVector> ns3::NixVector::Copy() const [member function]
4259 cls.add_method('Copy',
4260 'ns3::Ptr< ns3::NixVector >',
4261 [],
4262 is_const=True)
4263 ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::Deserialize(uint32_t const * buffer, uint32_t size) [member function]
4264 cls.add_method('Deserialize',
4265 'uint32_t',
4266 [param('uint32_t const *', 'buffer'), param('uint32_t', 'size')])
4267 ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::ExtractNeighborIndex(uint32_t numberOfBits) [member function]
4268 cls.add_method('ExtractNeighborIndex',
4269 'uint32_t',
4270 [param('uint32_t', 'numberOfBits')])
4271 ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::GetRemainingBits() [member function]
4272 cls.add_method('GetRemainingBits',
4273 'uint32_t',
4274 [])
4275 ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::GetSerializedSize() const [member function]
4276 cls.add_method('GetSerializedSize',
4277 'uint32_t',
4278 [],
4279 is_const=True)
4280 ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::Serialize(uint32_t * buffer, uint32_t maxSize) const [member function]
4281 cls.add_method('Serialize',
4282 'uint32_t',
4283 [param('uint32_t *', 'buffer'), param('uint32_t', 'maxSize')],
4284 is_const=True)
4285 return
4286
4287def register_Ns3Node_methods(root_module, cls):
4288 ## node.h (module 'network'): ns3::Node::Node(ns3::Node const & arg0) [copy constructor]
4289 cls.add_constructor([param('ns3::Node const &', 'arg0')])
4290 ## node.h (module 'network'): ns3::Node::Node() [constructor]
4291 cls.add_constructor([])
4292 ## node.h (module 'network'): ns3::Node::Node(uint32_t systemId) [constructor]
4293 cls.add_constructor([param('uint32_t', 'systemId')])
4294 ## node.h (module 'network'): uint32_t ns3::Node::AddApplication(ns3::Ptr<ns3::Application> application) [member function]
4295 cls.add_method('AddApplication',
4296 'uint32_t',
4297 [param('ns3::Ptr< ns3::Application >', 'application')])
4298 ## node.h (module 'network'): uint32_t ns3::Node::AddDevice(ns3::Ptr<ns3::NetDevice> device) [member function]
4299 cls.add_method('AddDevice',
4300 'uint32_t',
4301 [param('ns3::Ptr< ns3::NetDevice >', 'device')])
4302 ## node.h (module 'network'): static bool ns3::Node::ChecksumEnabled() [member function]
4303 cls.add_method('ChecksumEnabled',
4304 'bool',
4305 [],
4306 is_static=True)
4307 ## node.h (module 'network'): ns3::Ptr<ns3::Application> ns3::Node::GetApplication(uint32_t index) const [member function]
4308 cls.add_method('GetApplication',
4309 'ns3::Ptr< ns3::Application >',
4310 [param('uint32_t', 'index')],
4311 is_const=True)
4312 ## node.h (module 'network'): ns3::Ptr<ns3::NetDevice> ns3::Node::GetDevice(uint32_t index) const [member function]
4313 cls.add_method('GetDevice',
4314 'ns3::Ptr< ns3::NetDevice >',
4315 [param('uint32_t', 'index')],
4316 is_const=True)
4317 ## node.h (module 'network'): uint32_t ns3::Node::GetId() const [member function]
4318 cls.add_method('GetId',
4319 'uint32_t',
4320 [],
4321 is_const=True)
4322 ## node.h (module 'network'): uint32_t ns3::Node::GetNApplications() const [member function]
4323 cls.add_method('GetNApplications',
4324 'uint32_t',
4325 [],
4326 is_const=True)
4327 ## node.h (module 'network'): uint32_t ns3::Node::GetNDevices() const [member function]
4328 cls.add_method('GetNDevices',
4329 'uint32_t',
4330 [],
4331 is_const=True)
4332 ## node.h (module 'network'): uint32_t ns3::Node::GetSystemId() const [member function]
4333 cls.add_method('GetSystemId',
4334 'uint32_t',
4335 [],
4336 is_const=True)
4337 ## node.h (module 'network'): static ns3::TypeId ns3::Node::GetTypeId() [member function]
4338 cls.add_method('GetTypeId',
4339 'ns3::TypeId',
4340 [],
4341 is_static=True)
4342 ## 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]
4343 cls.add_method('RegisterDeviceAdditionListener',
4344 'void',
4345 [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')])
4346 ## 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]
4347 cls.add_method('RegisterProtocolHandler',
4348 'void',
4349 [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')])
4350 ## 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]
4351 cls.add_method('UnregisterDeviceAdditionListener',
4352 'void',
4353 [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')])
4354 ## 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]
4355 cls.add_method('UnregisterProtocolHandler',
4356 'void',
4357 [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')])
4358 ## node.h (module 'network'): void ns3::Node::DoDispose() [member function]
4359 cls.add_method('DoDispose',
4360 'void',
4361 [],
4362 visibility='protected', is_virtual=True)
Alexander Afanasyev5b8d61b2013-05-03 10:23:21 -07004363 ## node.h (module 'network'): void ns3::Node::DoInitialize() [member function]
4364 cls.add_method('DoInitialize',
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004365 'void',
4366 [],
4367 visibility='protected', is_virtual=True)
4368 return
4369
4370def register_Ns3ObjectFactoryChecker_methods(root_module, cls):
4371 ## object-factory.h (module 'core'): ns3::ObjectFactoryChecker::ObjectFactoryChecker() [constructor]
4372 cls.add_constructor([])
4373 ## object-factory.h (module 'core'): ns3::ObjectFactoryChecker::ObjectFactoryChecker(ns3::ObjectFactoryChecker const & arg0) [copy constructor]
4374 cls.add_constructor([param('ns3::ObjectFactoryChecker const &', 'arg0')])
4375 return
4376
4377def register_Ns3ObjectFactoryValue_methods(root_module, cls):
4378 ## object-factory.h (module 'core'): ns3::ObjectFactoryValue::ObjectFactoryValue() [constructor]
4379 cls.add_constructor([])
4380 ## object-factory.h (module 'core'): ns3::ObjectFactoryValue::ObjectFactoryValue(ns3::ObjectFactoryValue const & arg0) [copy constructor]
4381 cls.add_constructor([param('ns3::ObjectFactoryValue const &', 'arg0')])
4382 ## object-factory.h (module 'core'): ns3::ObjectFactoryValue::ObjectFactoryValue(ns3::ObjectFactory const & value) [constructor]
4383 cls.add_constructor([param('ns3::ObjectFactory const &', 'value')])
4384 ## object-factory.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::ObjectFactoryValue::Copy() const [member function]
4385 cls.add_method('Copy',
4386 'ns3::Ptr< ns3::AttributeValue >',
4387 [],
4388 is_const=True, is_virtual=True)
4389 ## object-factory.h (module 'core'): bool ns3::ObjectFactoryValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
4390 cls.add_method('DeserializeFromString',
4391 'bool',
4392 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4393 is_virtual=True)
4394 ## object-factory.h (module 'core'): ns3::ObjectFactory ns3::ObjectFactoryValue::Get() const [member function]
4395 cls.add_method('Get',
4396 'ns3::ObjectFactory',
4397 [],
4398 is_const=True)
4399 ## object-factory.h (module 'core'): std::string ns3::ObjectFactoryValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
4400 cls.add_method('SerializeToString',
4401 'std::string',
4402 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4403 is_const=True, is_virtual=True)
4404 ## object-factory.h (module 'core'): void ns3::ObjectFactoryValue::Set(ns3::ObjectFactory const & value) [member function]
4405 cls.add_method('Set',
4406 'void',
4407 [param('ns3::ObjectFactory const &', 'value')])
4408 return
4409
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004410def register_Ns3Packet_methods(root_module, cls):
4411 cls.add_output_stream_operator()
4412 ## packet.h (module 'network'): ns3::Packet::Packet() [constructor]
4413 cls.add_constructor([])
4414 ## packet.h (module 'network'): ns3::Packet::Packet(ns3::Packet const & o) [copy constructor]
4415 cls.add_constructor([param('ns3::Packet const &', 'o')])
4416 ## packet.h (module 'network'): ns3::Packet::Packet(uint32_t size) [constructor]
4417 cls.add_constructor([param('uint32_t', 'size')])
4418 ## packet.h (module 'network'): ns3::Packet::Packet(uint8_t const * buffer, uint32_t size, bool magic) [constructor]
4419 cls.add_constructor([param('uint8_t const *', 'buffer'), param('uint32_t', 'size'), param('bool', 'magic')])
4420 ## packet.h (module 'network'): ns3::Packet::Packet(uint8_t const * buffer, uint32_t size) [constructor]
4421 cls.add_constructor([param('uint8_t const *', 'buffer'), param('uint32_t', 'size')])
Alexander Afanasyev858d5312013-07-10 18:50:18 -07004422 ## packet.h (module 'network'): void ns3::Packet::AddAtEnd(ns3::Ptr<ns3::Packet const> packet) [member function]
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004423 cls.add_method('AddAtEnd',
4424 'void',
4425 [param('ns3::Ptr< ns3::Packet const >', 'packet')])
4426 ## packet.h (module 'network'): void ns3::Packet::AddByteTag(ns3::Tag const & tag) const [member function]
4427 cls.add_method('AddByteTag',
4428 'void',
4429 [param('ns3::Tag const &', 'tag')],
4430 is_const=True)
4431 ## packet.h (module 'network'): void ns3::Packet::AddHeader(ns3::Header const & header) [member function]
4432 cls.add_method('AddHeader',
4433 'void',
4434 [param('ns3::Header const &', 'header')])
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07004435 ## packet.h (module 'network'): void ns3::Packet::AddPacketTag(ns3::Tag const & tag) const [member function]
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004436 cls.add_method('AddPacketTag',
4437 'void',
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07004438 [param('ns3::Tag const &', 'tag')],
4439 is_const=True)
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004440 ## packet.h (module 'network'): void ns3::Packet::AddPaddingAtEnd(uint32_t size) [member function]
4441 cls.add_method('AddPaddingAtEnd',
4442 'void',
4443 [param('uint32_t', 'size')])
4444 ## packet.h (module 'network'): void ns3::Packet::AddTrailer(ns3::Trailer const & trailer) [member function]
4445 cls.add_method('AddTrailer',
4446 'void',
4447 [param('ns3::Trailer const &', 'trailer')])
4448 ## packet.h (module 'network'): ns3::PacketMetadata::ItemIterator ns3::Packet::BeginItem() const [member function]
4449 cls.add_method('BeginItem',
4450 'ns3::PacketMetadata::ItemIterator',
4451 [],
4452 is_const=True)
4453 ## packet.h (module 'network'): ns3::Ptr<ns3::Packet> ns3::Packet::Copy() const [member function]
4454 cls.add_method('Copy',
4455 'ns3::Ptr< ns3::Packet >',
4456 [],
4457 is_const=True)
4458 ## packet.h (module 'network'): uint32_t ns3::Packet::CopyData(uint8_t * buffer, uint32_t size) const [member function]
4459 cls.add_method('CopyData',
4460 'uint32_t',
4461 [param('uint8_t *', 'buffer'), param('uint32_t', 'size')],
4462 is_const=True)
4463 ## packet.h (module 'network'): void ns3::Packet::CopyData(std::ostream * os, uint32_t size) const [member function]
4464 cls.add_method('CopyData',
4465 'void',
4466 [param('std::ostream *', 'os'), param('uint32_t', 'size')],
4467 is_const=True)
4468 ## packet.h (module 'network'): ns3::Ptr<ns3::Packet> ns3::Packet::CreateFragment(uint32_t start, uint32_t length) const [member function]
4469 cls.add_method('CreateFragment',
4470 'ns3::Ptr< ns3::Packet >',
4471 [param('uint32_t', 'start'), param('uint32_t', 'length')],
4472 is_const=True)
4473 ## packet.h (module 'network'): static void ns3::Packet::EnableChecking() [member function]
4474 cls.add_method('EnableChecking',
4475 'void',
4476 [],
4477 is_static=True)
4478 ## packet.h (module 'network'): static void ns3::Packet::EnablePrinting() [member function]
4479 cls.add_method('EnablePrinting',
4480 'void',
4481 [],
4482 is_static=True)
4483 ## packet.h (module 'network'): bool ns3::Packet::FindFirstMatchingByteTag(ns3::Tag & tag) const [member function]
4484 cls.add_method('FindFirstMatchingByteTag',
4485 'bool',
4486 [param('ns3::Tag &', 'tag')],
4487 is_const=True)
4488 ## packet.h (module 'network'): ns3::ByteTagIterator ns3::Packet::GetByteTagIterator() const [member function]
4489 cls.add_method('GetByteTagIterator',
4490 'ns3::ByteTagIterator',
4491 [],
4492 is_const=True)
4493 ## packet.h (module 'network'): ns3::Ptr<ns3::NixVector> ns3::Packet::GetNixVector() const [member function]
4494 cls.add_method('GetNixVector',
4495 'ns3::Ptr< ns3::NixVector >',
4496 [],
4497 is_const=True)
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07004498 ## packet.h (module 'network'): ns3::PacketTagIterator ns3::Packet::GetPacketTagIterator() const [member function]
4499 cls.add_method('GetPacketTagIterator',
4500 'ns3::PacketTagIterator',
4501 [],
4502 is_const=True)
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004503 ## packet.h (module 'network'): uint32_t ns3::Packet::GetSerializedSize() const [member function]
4504 cls.add_method('GetSerializedSize',
4505 'uint32_t',
4506 [],
4507 is_const=True)
4508 ## packet.h (module 'network'): uint32_t ns3::Packet::GetSize() const [member function]
4509 cls.add_method('GetSize',
4510 'uint32_t',
4511 [],
4512 is_const=True)
4513 ## packet.h (module 'network'): uint64_t ns3::Packet::GetUid() const [member function]
4514 cls.add_method('GetUid',
4515 'uint64_t',
4516 [],
4517 is_const=True)
4518 ## packet.h (module 'network'): uint8_t const * ns3::Packet::PeekData() const [member function]
4519 cls.add_method('PeekData',
4520 'uint8_t const *',
4521 [],
4522 deprecated=True, is_const=True)
4523 ## packet.h (module 'network'): uint32_t ns3::Packet::PeekHeader(ns3::Header & header) const [member function]
4524 cls.add_method('PeekHeader',
4525 'uint32_t',
4526 [param('ns3::Header &', 'header')],
4527 is_const=True)
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07004528 ## packet.h (module 'network'): bool ns3::Packet::PeekPacketTag(ns3::Tag & tag) const [member function]
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004529 cls.add_method('PeekPacketTag',
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07004530 'bool',
4531 [param('ns3::Tag &', 'tag')],
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004532 is_const=True)
4533 ## packet.h (module 'network'): uint32_t ns3::Packet::PeekTrailer(ns3::Trailer & trailer) [member function]
4534 cls.add_method('PeekTrailer',
4535 'uint32_t',
4536 [param('ns3::Trailer &', 'trailer')])
4537 ## packet.h (module 'network'): void ns3::Packet::Print(std::ostream & os) const [member function]
4538 cls.add_method('Print',
4539 'void',
4540 [param('std::ostream &', 'os')],
4541 is_const=True)
4542 ## packet.h (module 'network'): void ns3::Packet::PrintByteTags(std::ostream & os) const [member function]
4543 cls.add_method('PrintByteTags',
4544 'void',
4545 [param('std::ostream &', 'os')],
4546 is_const=True)
4547 ## packet.h (module 'network'): void ns3::Packet::PrintPacketTags(std::ostream & os) const [member function]
4548 cls.add_method('PrintPacketTags',
4549 'void',
4550 [param('std::ostream &', 'os')],
4551 is_const=True)
4552 ## packet.h (module 'network'): void ns3::Packet::RemoveAllByteTags() [member function]
4553 cls.add_method('RemoveAllByteTags',
4554 'void',
4555 [])
4556 ## packet.h (module 'network'): void ns3::Packet::RemoveAllPacketTags() [member function]
4557 cls.add_method('RemoveAllPacketTags',
4558 'void',
4559 [])
4560 ## packet.h (module 'network'): void ns3::Packet::RemoveAtEnd(uint32_t size) [member function]
4561 cls.add_method('RemoveAtEnd',
4562 'void',
4563 [param('uint32_t', 'size')])
4564 ## packet.h (module 'network'): void ns3::Packet::RemoveAtStart(uint32_t size) [member function]
4565 cls.add_method('RemoveAtStart',
4566 'void',
4567 [param('uint32_t', 'size')])
4568 ## packet.h (module 'network'): uint32_t ns3::Packet::RemoveHeader(ns3::Header & header) [member function]
4569 cls.add_method('RemoveHeader',
4570 'uint32_t',
4571 [param('ns3::Header &', 'header')])
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07004572 ## packet.h (module 'network'): bool ns3::Packet::RemovePacketTag(ns3::Tag & tag) [member function]
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004573 cls.add_method('RemovePacketTag',
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07004574 'bool',
4575 [param('ns3::Tag &', 'tag')])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004576 ## packet.h (module 'network'): uint32_t ns3::Packet::RemoveTrailer(ns3::Trailer & trailer) [member function]
4577 cls.add_method('RemoveTrailer',
4578 'uint32_t',
4579 [param('ns3::Trailer &', 'trailer')])
4580 ## packet.h (module 'network'): uint32_t ns3::Packet::Serialize(uint8_t * buffer, uint32_t maxSize) const [member function]
4581 cls.add_method('Serialize',
4582 'uint32_t',
4583 [param('uint8_t *', 'buffer'), param('uint32_t', 'maxSize')],
4584 is_const=True)
4585 ## packet.h (module 'network'): void ns3::Packet::SetNixVector(ns3::Ptr<ns3::NixVector> arg0) [member function]
4586 cls.add_method('SetNixVector',
4587 'void',
4588 [param('ns3::Ptr< ns3::NixVector >', 'arg0')])
4589 return
4590
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07004591def register_Ns3RandomVariableChecker_methods(root_module, cls):
4592 ## random-variable.h (module 'core'): ns3::RandomVariableChecker::RandomVariableChecker() [constructor]
4593 cls.add_constructor([])
4594 ## random-variable.h (module 'core'): ns3::RandomVariableChecker::RandomVariableChecker(ns3::RandomVariableChecker const & arg0) [copy constructor]
4595 cls.add_constructor([param('ns3::RandomVariableChecker const &', 'arg0')])
4596 return
4597
4598def register_Ns3RandomVariableValue_methods(root_module, cls):
4599 ## random-variable.h (module 'core'): ns3::RandomVariableValue::RandomVariableValue() [constructor]
4600 cls.add_constructor([])
4601 ## random-variable.h (module 'core'): ns3::RandomVariableValue::RandomVariableValue(ns3::RandomVariableValue const & arg0) [copy constructor]
4602 cls.add_constructor([param('ns3::RandomVariableValue const &', 'arg0')])
4603 ## random-variable.h (module 'core'): ns3::RandomVariableValue::RandomVariableValue(ns3::RandomVariable const & value) [constructor]
4604 cls.add_constructor([param('ns3::RandomVariable const &', 'value')])
4605 ## random-variable.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::RandomVariableValue::Copy() const [member function]
4606 cls.add_method('Copy',
4607 'ns3::Ptr< ns3::AttributeValue >',
4608 [],
4609 is_const=True, is_virtual=True)
4610 ## random-variable.h (module 'core'): bool ns3::RandomVariableValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
4611 cls.add_method('DeserializeFromString',
4612 'bool',
4613 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4614 is_virtual=True)
4615 ## random-variable.h (module 'core'): ns3::RandomVariable ns3::RandomVariableValue::Get() const [member function]
4616 cls.add_method('Get',
4617 'ns3::RandomVariable',
4618 [],
4619 is_const=True)
4620 ## random-variable.h (module 'core'): std::string ns3::RandomVariableValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
4621 cls.add_method('SerializeToString',
4622 'std::string',
4623 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4624 is_const=True, is_virtual=True)
4625 ## random-variable.h (module 'core'): void ns3::RandomVariableValue::Set(ns3::RandomVariable const & value) [member function]
4626 cls.add_method('Set',
4627 'void',
4628 [param('ns3::RandomVariable const &', 'value')])
4629 return
4630
4631def register_Ns3RocketfuelWeightsReader_methods(root_module, cls):
4632 ## rocketfuel-weights-reader.h (module 'ndnSIM'): ns3::RocketfuelWeightsReader::RocketfuelWeightsReader(std::string const & path="", double scale=1.0e+0) [constructor]
4633 cls.add_constructor([param('std::string const &', 'path', default_value='""'), param('double', 'scale', default_value='1.0e+0')])
4634 ## rocketfuel-weights-reader.h (module 'ndnSIM'): void ns3::RocketfuelWeightsReader::SetFileType(uint8_t inputType) [member function]
4635 cls.add_method('SetFileType',
4636 'void',
4637 [param('uint8_t', 'inputType')])
4638 ## rocketfuel-weights-reader.h (module 'ndnSIM'): ns3::NodeContainer ns3::RocketfuelWeightsReader::Read() [member function]
4639 cls.add_method('Read',
4640 'ns3::NodeContainer',
4641 [],
4642 is_virtual=True)
4643 ## rocketfuel-weights-reader.h (module 'ndnSIM'): void ns3::RocketfuelWeightsReader::Commit() [member function]
4644 cls.add_method('Commit',
4645 'void',
4646 [])
Alexander Afanasyev858d5312013-07-10 18:50:18 -07004647 ## rocketfuel-weights-reader.h (module 'ndnSIM'): void ns3::RocketfuelWeightsReader::SetDefaultBandwidth(std::string const & bw) [member function]
4648 cls.add_method('SetDefaultBandwidth',
4649 'void',
4650 [param('std::string const &', 'bw')])
4651 ## rocketfuel-weights-reader.h (module 'ndnSIM'): std::string ns3::RocketfuelWeightsReader::GetDefaultBandwidth() const [member function]
4652 cls.add_method('GetDefaultBandwidth',
4653 'std::string',
4654 [],
4655 is_const=True)
4656 ## rocketfuel-weights-reader.h (module 'ndnSIM'): void ns3::RocketfuelWeightsReader::SetDefaultQueue(std::string const & queue) [member function]
4657 cls.add_method('SetDefaultQueue',
4658 'void',
4659 [param('std::string const &', 'queue')])
4660 ## rocketfuel-weights-reader.h (module 'ndnSIM'): std::string ns3::RocketfuelWeightsReader::GetDefaultQueue() const [member function]
4661 cls.add_method('GetDefaultQueue',
4662 'std::string',
4663 [],
4664 is_const=True)
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07004665 return
4666
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004667def register_Ns3TimeChecker_methods(root_module, cls):
4668 ## nstime.h (module 'core'): ns3::TimeChecker::TimeChecker() [constructor]
4669 cls.add_constructor([])
4670 ## nstime.h (module 'core'): ns3::TimeChecker::TimeChecker(ns3::TimeChecker const & arg0) [copy constructor]
4671 cls.add_constructor([param('ns3::TimeChecker const &', 'arg0')])
4672 return
4673
4674def register_Ns3TimeValue_methods(root_module, cls):
4675 ## nstime.h (module 'core'): ns3::TimeValue::TimeValue() [constructor]
4676 cls.add_constructor([])
4677 ## nstime.h (module 'core'): ns3::TimeValue::TimeValue(ns3::TimeValue const & arg0) [copy constructor]
4678 cls.add_constructor([param('ns3::TimeValue const &', 'arg0')])
4679 ## nstime.h (module 'core'): ns3::TimeValue::TimeValue(ns3::Time const & value) [constructor]
4680 cls.add_constructor([param('ns3::Time const &', 'value')])
4681 ## nstime.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::TimeValue::Copy() const [member function]
4682 cls.add_method('Copy',
4683 'ns3::Ptr< ns3::AttributeValue >',
4684 [],
4685 is_const=True, is_virtual=True)
4686 ## nstime.h (module 'core'): bool ns3::TimeValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
4687 cls.add_method('DeserializeFromString',
4688 'bool',
4689 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4690 is_virtual=True)
4691 ## nstime.h (module 'core'): ns3::Time ns3::TimeValue::Get() const [member function]
4692 cls.add_method('Get',
4693 'ns3::Time',
4694 [],
4695 is_const=True)
4696 ## nstime.h (module 'core'): std::string ns3::TimeValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
4697 cls.add_method('SerializeToString',
4698 'std::string',
4699 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4700 is_const=True, is_virtual=True)
4701 ## nstime.h (module 'core'): void ns3::TimeValue::Set(ns3::Time const & value) [member function]
4702 cls.add_method('Set',
4703 'void',
4704 [param('ns3::Time const &', 'value')])
4705 return
4706
4707def register_Ns3TypeIdChecker_methods(root_module, cls):
4708 ## type-id.h (module 'core'): ns3::TypeIdChecker::TypeIdChecker() [constructor]
4709 cls.add_constructor([])
4710 ## type-id.h (module 'core'): ns3::TypeIdChecker::TypeIdChecker(ns3::TypeIdChecker const & arg0) [copy constructor]
4711 cls.add_constructor([param('ns3::TypeIdChecker const &', 'arg0')])
4712 return
4713
4714def register_Ns3TypeIdValue_methods(root_module, cls):
4715 ## type-id.h (module 'core'): ns3::TypeIdValue::TypeIdValue() [constructor]
4716 cls.add_constructor([])
4717 ## type-id.h (module 'core'): ns3::TypeIdValue::TypeIdValue(ns3::TypeIdValue const & arg0) [copy constructor]
4718 cls.add_constructor([param('ns3::TypeIdValue const &', 'arg0')])
4719 ## type-id.h (module 'core'): ns3::TypeIdValue::TypeIdValue(ns3::TypeId const & value) [constructor]
4720 cls.add_constructor([param('ns3::TypeId const &', 'value')])
4721 ## type-id.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::TypeIdValue::Copy() const [member function]
4722 cls.add_method('Copy',
4723 'ns3::Ptr< ns3::AttributeValue >',
4724 [],
4725 is_const=True, is_virtual=True)
4726 ## type-id.h (module 'core'): bool ns3::TypeIdValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
4727 cls.add_method('DeserializeFromString',
4728 'bool',
4729 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4730 is_virtual=True)
4731 ## type-id.h (module 'core'): ns3::TypeId ns3::TypeIdValue::Get() const [member function]
4732 cls.add_method('Get',
4733 'ns3::TypeId',
4734 [],
4735 is_const=True)
4736 ## type-id.h (module 'core'): std::string ns3::TypeIdValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
4737 cls.add_method('SerializeToString',
4738 'std::string',
4739 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4740 is_const=True, is_virtual=True)
4741 ## type-id.h (module 'core'): void ns3::TypeIdValue::Set(ns3::TypeId const & value) [member function]
4742 cls.add_method('Set',
4743 'void',
4744 [param('ns3::TypeId const &', 'value')])
4745 return
4746
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07004747def register_Ns3UintegerValue_methods(root_module, cls):
4748 ## uinteger.h (module 'core'): ns3::UintegerValue::UintegerValue() [constructor]
4749 cls.add_constructor([])
4750 ## uinteger.h (module 'core'): ns3::UintegerValue::UintegerValue(ns3::UintegerValue const & arg0) [copy constructor]
4751 cls.add_constructor([param('ns3::UintegerValue const &', 'arg0')])
4752 ## uinteger.h (module 'core'): ns3::UintegerValue::UintegerValue(uint64_t const & value) [constructor]
4753 cls.add_constructor([param('uint64_t const &', 'value')])
4754 ## uinteger.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::UintegerValue::Copy() const [member function]
4755 cls.add_method('Copy',
4756 'ns3::Ptr< ns3::AttributeValue >',
4757 [],
4758 is_const=True, is_virtual=True)
4759 ## uinteger.h (module 'core'): bool ns3::UintegerValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
4760 cls.add_method('DeserializeFromString',
4761 'bool',
4762 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4763 is_virtual=True)
4764 ## uinteger.h (module 'core'): uint64_t ns3::UintegerValue::Get() const [member function]
4765 cls.add_method('Get',
4766 'uint64_t',
4767 [],
4768 is_const=True)
4769 ## uinteger.h (module 'core'): std::string ns3::UintegerValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
4770 cls.add_method('SerializeToString',
4771 'std::string',
4772 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4773 is_const=True, is_virtual=True)
4774 ## uinteger.h (module 'core'): void ns3::UintegerValue::Set(uint64_t const & value) [member function]
4775 cls.add_method('Set',
4776 'void',
4777 [param('uint64_t const &', 'value')])
4778 return
4779
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004780def register_Ns3AddressChecker_methods(root_module, cls):
4781 ## address.h (module 'network'): ns3::AddressChecker::AddressChecker() [constructor]
4782 cls.add_constructor([])
4783 ## address.h (module 'network'): ns3::AddressChecker::AddressChecker(ns3::AddressChecker const & arg0) [copy constructor]
4784 cls.add_constructor([param('ns3::AddressChecker const &', 'arg0')])
4785 return
4786
4787def register_Ns3AddressValue_methods(root_module, cls):
4788 ## address.h (module 'network'): ns3::AddressValue::AddressValue() [constructor]
4789 cls.add_constructor([])
4790 ## address.h (module 'network'): ns3::AddressValue::AddressValue(ns3::AddressValue const & arg0) [copy constructor]
4791 cls.add_constructor([param('ns3::AddressValue const &', 'arg0')])
4792 ## address.h (module 'network'): ns3::AddressValue::AddressValue(ns3::Address const & value) [constructor]
4793 cls.add_constructor([param('ns3::Address const &', 'value')])
4794 ## address.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::AddressValue::Copy() const [member function]
4795 cls.add_method('Copy',
4796 'ns3::Ptr< ns3::AttributeValue >',
4797 [],
4798 is_const=True, is_virtual=True)
4799 ## address.h (module 'network'): bool ns3::AddressValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
4800 cls.add_method('DeserializeFromString',
4801 'bool',
4802 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4803 is_virtual=True)
4804 ## address.h (module 'network'): ns3::Address ns3::AddressValue::Get() const [member function]
4805 cls.add_method('Get',
4806 'ns3::Address',
4807 [],
4808 is_const=True)
4809 ## address.h (module 'network'): std::string ns3::AddressValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
4810 cls.add_method('SerializeToString',
4811 'std::string',
4812 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4813 is_const=True, is_virtual=True)
4814 ## address.h (module 'network'): void ns3::AddressValue::Set(ns3::Address const & value) [member function]
4815 cls.add_method('Set',
4816 'void',
4817 [param('ns3::Address const &', 'value')])
4818 return
4819
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004820def register_Ns3NdnApp_methods(root_module, cls):
4821 ## ndn-app.h (module 'ndnSIM'): ns3::ndn::App::App(ns3::ndn::App const & arg0) [copy constructor]
4822 cls.add_constructor([param('ns3::ndn::App const &', 'arg0')])
4823 ## ndn-app.h (module 'ndnSIM'): ns3::ndn::App::App() [constructor]
4824 cls.add_constructor([])
Alexander Afanasyev32c07562013-02-01 12:58:43 -08004825 ## ndn-app.h (module 'ndnSIM'): uint32_t ns3::ndn::App::GetId() const [member function]
4826 cls.add_method('GetId',
4827 'uint32_t',
4828 [],
4829 is_const=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004830 ## ndn-app.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::App::GetTypeId() [member function]
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07004831 cls.add_method('GetTypeId',
4832 'ns3::TypeId',
4833 [],
4834 is_static=True)
Alexander Afanasyev858d5312013-07-10 18:50:18 -07004835 ## ndn-app.h (module 'ndnSIM'): void ns3::ndn::App::OnContentObject(ns3::Ptr<ns3::ndn::ContentObject const> contentObject) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004836 cls.add_method('OnContentObject',
4837 'void',
Alexander Afanasyev858d5312013-07-10 18:50:18 -07004838 [param('ns3::Ptr< ns3::ndn::ContentObject const >', 'contentObject')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004839 is_virtual=True)
Alexander Afanasyev858d5312013-07-10 18:50:18 -07004840 ## ndn-app.h (module 'ndnSIM'): void ns3::ndn::App::OnInterest(ns3::Ptr<ns3::ndn::Interest const> interest) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004841 cls.add_method('OnInterest',
4842 'void',
Alexander Afanasyev858d5312013-07-10 18:50:18 -07004843 [param('ns3::Ptr< ns3::ndn::Interest const >', 'interest')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004844 is_virtual=True)
Alexander Afanasyev858d5312013-07-10 18:50:18 -07004845 ## ndn-app.h (module 'ndnSIM'): void ns3::ndn::App::OnNack(ns3::Ptr<ns3::ndn::Interest const> interest) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004846 cls.add_method('OnNack',
4847 'void',
Alexander Afanasyev858d5312013-07-10 18:50:18 -07004848 [param('ns3::Ptr< ns3::ndn::Interest const >', 'interest')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004849 is_virtual=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004850 ## ndn-app.h (module 'ndnSIM'): void ns3::ndn::App::DoDispose() [member function]
4851 cls.add_method('DoDispose',
4852 'void',
4853 [],
4854 visibility='protected', is_virtual=True)
4855 ## ndn-app.h (module 'ndnSIM'): void ns3::ndn::App::StartApplication() [member function]
4856 cls.add_method('StartApplication',
4857 'void',
4858 [],
4859 visibility='protected', is_virtual=True)
4860 ## ndn-app.h (module 'ndnSIM'): void ns3::ndn::App::StopApplication() [member function]
4861 cls.add_method('StopApplication',
4862 'void',
4863 [],
4864 visibility='protected', is_virtual=True)
4865 return
4866
4867def register_Ns3NdnAppHelper_methods(root_module, cls):
4868 ## ndn-app-helper.h (module 'ndnSIM'): ns3::ndn::AppHelper::AppHelper(ns3::ndn::AppHelper const & arg0) [copy constructor]
4869 cls.add_constructor([param('ns3::ndn::AppHelper const &', 'arg0')])
4870 ## ndn-app-helper.h (module 'ndnSIM'): ns3::ndn::AppHelper::AppHelper(std::string const & prefix) [constructor]
4871 cls.add_constructor([param('std::string const &', 'prefix')])
4872 ## ndn-app-helper.h (module 'ndnSIM'): ns3::ApplicationContainer ns3::ndn::AppHelper::Install(ns3::NodeContainer c) [member function]
4873 cls.add_method('Install',
4874 'ns3::ApplicationContainer',
4875 [param('ns3::NodeContainer', 'c')])
4876 ## ndn-app-helper.h (module 'ndnSIM'): ns3::ApplicationContainer ns3::ndn::AppHelper::Install(ns3::Ptr<ns3::Node> node) [member function]
4877 cls.add_method('Install',
4878 'ns3::ApplicationContainer',
4879 [param('ns3::Ptr< ns3::Node >', 'node')])
4880 ## ndn-app-helper.h (module 'ndnSIM'): ns3::ApplicationContainer ns3::ndn::AppHelper::Install(std::string nodeName) [member function]
4881 cls.add_method('Install',
4882 'ns3::ApplicationContainer',
4883 [param('std::string', 'nodeName')])
4884 ## ndn-app-helper.h (module 'ndnSIM'): void ns3::ndn::AppHelper::SetAttribute(std::string name, ns3::AttributeValue const & value) [member function]
4885 cls.add_method('SetAttribute',
4886 'void',
4887 [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')])
4888 ## ndn-app-helper.h (module 'ndnSIM'): void ns3::ndn::AppHelper::SetPrefix(std::string const & prefix) [member function]
4889 cls.add_method('SetPrefix',
4890 'void',
4891 [param('std::string const &', 'prefix')])
4892 return
4893
Alexander Afanasyeveae83ee2013-03-15 15:01:10 -07004894def register_Ns3NdnContentObject_methods(root_module, cls):
Alexander Afanasyev858d5312013-07-10 18:50:18 -07004895 ## ndn-content-object.h (module 'ndnSIM'): ns3::ndn::ContentObject::ContentObject(ns3::Ptr<ns3::Packet> payload=ns3::Create( )) [constructor]
4896 cls.add_constructor([param('ns3::Ptr< ns3::Packet >', 'payload', default_value='ns3::Create( )')])
4897 ## ndn-content-object.h (module 'ndnSIM'): ns3::ndn::ContentObject::ContentObject(ns3::ndn::ContentObject const & other) [copy constructor]
4898 cls.add_constructor([param('ns3::ndn::ContentObject const &', 'other')])
4899 ## ndn-content-object.h (module 'ndnSIM'): void ns3::ndn::ContentObject::SetName(ns3::Ptr<ns3::ndn::Name> name) [member function]
4900 cls.add_method('SetName',
4901 'void',
4902 [param('ns3::Ptr< ns3::ndn::Name >', 'name')])
4903 ## ndn-content-object.h (module 'ndnSIM'): void ns3::ndn::ContentObject::SetName(ns3::ndn::Name const & name) [member function]
4904 cls.add_method('SetName',
4905 'void',
4906 [param('ns3::ndn::Name const &', 'name')])
Alexander Afanasyeveae83ee2013-03-15 15:01:10 -07004907 ## ndn-content-object.h (module 'ndnSIM'): ns3::ndn::Name const & ns3::ndn::ContentObject::GetName() const [member function]
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08004908 cls.add_method('GetName',
Alexander Afanasyevcfdc14f2013-03-15 14:38:44 -07004909 'ns3::ndn::Name const &',
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08004910 [],
4911 is_const=True)
Alexander Afanasyeveae83ee2013-03-15 15:01:10 -07004912 ## ndn-content-object.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::Name const> ns3::ndn::ContentObject::GetNamePtr() const [member function]
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08004913 cls.add_method('GetNamePtr',
Alexander Afanasyevcfdc14f2013-03-15 14:38:44 -07004914 'ns3::Ptr< ns3::ndn::Name const >',
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004915 [],
4916 is_const=True)
Alexander Afanasyev858d5312013-07-10 18:50:18 -07004917 ## ndn-content-object.h (module 'ndnSIM'): void ns3::ndn::ContentObject::SetTimestamp(ns3::Time const & timestamp) [member function]
4918 cls.add_method('SetTimestamp',
4919 'void',
4920 [param('ns3::Time const &', 'timestamp')])
Alexander Afanasyeveae83ee2013-03-15 15:01:10 -07004921 ## ndn-content-object.h (module 'ndnSIM'): ns3::Time ns3::ndn::ContentObject::GetTimestamp() const [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004922 cls.add_method('GetTimestamp',
4923 'ns3::Time',
4924 [],
4925 is_const=True)
Alexander Afanasyeveae83ee2013-03-15 15:01:10 -07004926 ## ndn-content-object.h (module 'ndnSIM'): void ns3::ndn::ContentObject::SetFreshness(ns3::Time const & freshness) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004927 cls.add_method('SetFreshness',
4928 'void',
4929 [param('ns3::Time const &', 'freshness')])
Alexander Afanasyev858d5312013-07-10 18:50:18 -07004930 ## ndn-content-object.h (module 'ndnSIM'): ns3::Time ns3::ndn::ContentObject::GetFreshness() const [member function]
4931 cls.add_method('GetFreshness',
4932 'ns3::Time',
4933 [],
4934 is_const=True)
Alexander Afanasyev298c8442013-04-14 15:18:45 -07004935 ## ndn-content-object.h (module 'ndnSIM'): void ns3::ndn::ContentObject::SetSignature(uint32_t signature) [member function]
4936 cls.add_method('SetSignature',
4937 'void',
4938 [param('uint32_t', 'signature')])
Alexander Afanasyev858d5312013-07-10 18:50:18 -07004939 ## ndn-content-object.h (module 'ndnSIM'): uint32_t ns3::ndn::ContentObject::GetSignature() const [member function]
4940 cls.add_method('GetSignature',
4941 'uint32_t',
4942 [],
4943 is_const=True)
Alexander Afanasyeva6cc9102013-07-15 18:44:24 -07004944 ## ndn-content-object.h (module 'ndnSIM'): void ns3::ndn::ContentObject::SetKeyLocator(ns3::Ptr<ns3::ndn::Name> keyLocator) [member function]
4945 cls.add_method('SetKeyLocator',
4946 'void',
4947 [param('ns3::Ptr< ns3::ndn::Name >', 'keyLocator')])
4948 ## ndn-content-object.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::Name const> ns3::ndn::ContentObject::GetKeyLocator() const [member function]
4949 cls.add_method('GetKeyLocator',
4950 'ns3::Ptr< ns3::ndn::Name const >',
4951 [],
4952 is_const=True)
Alexander Afanasyev858d5312013-07-10 18:50:18 -07004953 ## ndn-content-object.h (module 'ndnSIM'): void ns3::ndn::ContentObject::SetPayload(ns3::Ptr<ns3::Packet> payload) [member function]
4954 cls.add_method('SetPayload',
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004955 'void',
Alexander Afanasyev858d5312013-07-10 18:50:18 -07004956 [param('ns3::Ptr< ns3::Packet >', 'payload')])
4957 ## ndn-content-object.h (module 'ndnSIM'): ns3::Ptr<ns3::Packet const> ns3::ndn::ContentObject::GetPayload() const [member function]
4958 cls.add_method('GetPayload',
4959 'ns3::Ptr< ns3::Packet const >',
4960 [],
4961 is_const=True)
4962 ## ndn-content-object.h (module 'ndnSIM'): ns3::Ptr<ns3::Packet const> ns3::ndn::ContentObject::GetWire() const [member function]
4963 cls.add_method('GetWire',
4964 'ns3::Ptr< ns3::Packet const >',
4965 [],
4966 is_const=True)
4967 ## ndn-content-object.h (module 'ndnSIM'): void ns3::ndn::ContentObject::SetWire(ns3::Ptr<ns3::Packet const> packet) const [member function]
4968 cls.add_method('SetWire',
4969 'void',
4970 [param('ns3::Ptr< ns3::Packet const >', 'packet')],
4971 is_const=True)
4972 ## ndn-content-object.h (module 'ndnSIM'): void ns3::ndn::ContentObject::Print(std::ostream & os) const [member function]
4973 cls.add_method('Print',
4974 'void',
4975 [param('std::ostream &', 'os')],
4976 is_const=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004977 return
4978
Alexander Afanasyeveae83ee2013-03-15 15:01:10 -07004979def register_Ns3NdnContentObjectException_methods(root_module, cls):
4980 ## ndn-content-object.h (module 'ndnSIM'): ns3::ndn::ContentObjectException::ContentObjectException() [constructor]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004981 cls.add_constructor([])
Alexander Afanasyeveae83ee2013-03-15 15:01:10 -07004982 ## ndn-content-object.h (module 'ndnSIM'): ns3::ndn::ContentObjectException::ContentObjectException(ns3::ndn::ContentObjectException const & arg0) [copy constructor]
4983 cls.add_constructor([param('ns3::ndn::ContentObjectException const &', 'arg0')])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004984 return
4985
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004986def register_Ns3NdnContentStore_methods(root_module, cls):
4987 cls.add_output_stream_operator()
4988 ## ndn-content-store.h (module 'ndnSIM'): ns3::ndn::ContentStore::ContentStore() [constructor]
4989 cls.add_constructor([])
4990 ## ndn-content-store.h (module 'ndnSIM'): ns3::ndn::ContentStore::ContentStore(ns3::ndn::ContentStore const & arg0) [copy constructor]
4991 cls.add_constructor([param('ns3::ndn::ContentStore const &', 'arg0')])
Alexander Afanasyev858d5312013-07-10 18:50:18 -07004992 ## ndn-content-store.h (module 'ndnSIM'): bool ns3::ndn::ContentStore::Add(ns3::Ptr<ns3::ndn::ContentObject const> data) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004993 cls.add_method('Add',
4994 'bool',
Alexander Afanasyev858d5312013-07-10 18:50:18 -07004995 [param('ns3::Ptr< ns3::ndn::ContentObject const >', 'data')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004996 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07004997 ## ndn-content-store.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::cs::Entry> ns3::ndn::ContentStore::Begin() [member function]
4998 cls.add_method('Begin',
4999 'ns3::Ptr< ns3::ndn::cs::Entry >',
5000 [],
5001 is_pure_virtual=True, is_virtual=True)
5002 ## ndn-content-store.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::cs::Entry> ns3::ndn::ContentStore::End() [member function]
5003 cls.add_method('End',
5004 'ns3::Ptr< ns3::ndn::cs::Entry >',
5005 [],
5006 is_pure_virtual=True, is_virtual=True)
5007 ## ndn-content-store.h (module 'ndnSIM'): static ns3::Ptr<ns3::ndn::ContentStore> ns3::ndn::ContentStore::GetContentStore(ns3::Ptr<ns3::Object> node) [member function]
5008 cls.add_method('GetContentStore',
5009 'ns3::Ptr< ns3::ndn::ContentStore >',
5010 [param('ns3::Ptr< ns3::Object >', 'node')],
5011 is_static=True)
5012 ## ndn-content-store.h (module 'ndnSIM'): uint32_t ns3::ndn::ContentStore::GetSize() const [member function]
5013 cls.add_method('GetSize',
5014 'uint32_t',
5015 [],
5016 is_pure_virtual=True, is_const=True, is_virtual=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005017 ## ndn-content-store.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::ContentStore::GetTypeId() [member function]
5018 cls.add_method('GetTypeId',
5019 'ns3::TypeId',
5020 [],
5021 is_static=True)
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005022 ## ndn-content-store.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::ContentObject> ns3::ndn::ContentStore::Lookup(ns3::Ptr<ns3::ndn::Interest const> interest) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005023 cls.add_method('Lookup',
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005024 'ns3::Ptr< ns3::ndn::ContentObject >',
Alexander Afanasyeveae83ee2013-03-15 15:01:10 -07005025 [param('ns3::Ptr< ns3::ndn::Interest const >', 'interest')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005026 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07005027 ## 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]
5028 cls.add_method('Next',
5029 'ns3::Ptr< ns3::ndn::cs::Entry >',
5030 [param('ns3::Ptr< ns3::ndn::cs::Entry >', 'arg0')],
5031 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005032 ## ndn-content-store.h (module 'ndnSIM'): void ns3::ndn::ContentStore::Print(std::ostream & os) const [member function]
5033 cls.add_method('Print',
5034 'void',
5035 [param('std::ostream &', 'os')],
5036 is_pure_virtual=True, is_const=True, is_virtual=True)
5037 return
5038
5039def register_Ns3NdnFace_methods(root_module, cls):
5040 cls.add_output_stream_operator()
5041 cls.add_binary_comparison_operator('!=')
5042 cls.add_binary_comparison_operator('<')
5043 cls.add_binary_comparison_operator('==')
5044 ## ndn-face.h (module 'ndnSIM'): ns3::ndn::Face::Face(ns3::Ptr<ns3::Node> node) [constructor]
5045 cls.add_constructor([param('ns3::Ptr< ns3::Node >', 'node')])
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005046 ## ndn-face.h (module 'ndnSIM'): uint32_t ns3::ndn::Face::GetFlags() const [member function]
5047 cls.add_method('GetFlags',
5048 'uint32_t',
5049 [],
5050 is_const=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005051 ## ndn-face.h (module 'ndnSIM'): uint32_t ns3::ndn::Face::GetId() const [member function]
5052 cls.add_method('GetId',
5053 'uint32_t',
5054 [],
5055 is_const=True)
5056 ## ndn-face.h (module 'ndnSIM'): uint16_t ns3::ndn::Face::GetMetric() const [member function]
5057 cls.add_method('GetMetric',
5058 'uint16_t',
5059 [],
5060 is_const=True, is_virtual=True)
5061 ## ndn-face.h (module 'ndnSIM'): ns3::Ptr<ns3::Node> ns3::ndn::Face::GetNode() const [member function]
5062 cls.add_method('GetNode',
5063 'ns3::Ptr< ns3::Node >',
5064 [],
5065 is_const=True)
5066 ## ndn-face.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::Face::GetTypeId() [member function]
5067 cls.add_method('GetTypeId',
5068 'ns3::TypeId',
5069 [],
5070 is_static=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005071 ## ndn-face.h (module 'ndnSIM'): bool ns3::ndn::Face::IsUp() const [member function]
5072 cls.add_method('IsUp',
5073 'bool',
5074 [],
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005075 is_const=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005076 ## ndn-face.h (module 'ndnSIM'): std::ostream & ns3::ndn::Face::Print(std::ostream & os) const [member function]
Alexander Afanasyev3073da82012-06-19 14:57:43 -07005077 cls.add_method('Print',
5078 'std::ostream &',
5079 [param('std::ostream &', 'os')],
5080 is_const=True, is_virtual=True)
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005081 ## ndn-face.h (module 'ndnSIM'): bool ns3::ndn::Face::ReceiveData(ns3::Ptr<ns3::ndn::ContentObject> data) [member function]
5082 cls.add_method('ReceiveData',
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005083 'bool',
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005084 [param('ns3::Ptr< ns3::ndn::ContentObject >', 'data')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005085 is_virtual=True)
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005086 ## ndn-face.h (module 'ndnSIM'): bool ns3::ndn::Face::ReceiveInterest(ns3::Ptr<ns3::ndn::Interest> interest) [member function]
5087 cls.add_method('ReceiveInterest',
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005088 'bool',
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005089 [param('ns3::Ptr< ns3::ndn::Interest >', 'interest')],
5090 is_virtual=True)
5091 ## ndn-face.h (module 'ndnSIM'): void ns3::ndn::Face::RegisterProtocolHandlers(ns3::Callback<void, ns3::Ptr<ns3::ndn::Face>, ns3::Ptr<ns3::ndn::Interest>, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> const & interestHandler, ns3::Callback<void, ns3::Ptr<ns3::ndn::Face>, ns3::Ptr<ns3::ndn::ContentObject>, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> const & dataHandler) [member function]
5092 cls.add_method('RegisterProtocolHandlers',
5093 'void',
5094 [param('ns3::Callback< void, ns3::Ptr< ns3::ndn::Face >, ns3::Ptr< ns3::ndn::Interest >, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty > const &', 'interestHandler'), param('ns3::Callback< void, ns3::Ptr< ns3::ndn::Face >, ns3::Ptr< ns3::ndn::ContentObject >, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty > const &', 'dataHandler')],
5095 is_virtual=True)
5096 ## ndn-face.h (module 'ndnSIM'): bool ns3::ndn::Face::SendData(ns3::Ptr<ns3::ndn::ContentObject const> data) [member function]
5097 cls.add_method('SendData',
5098 'bool',
5099 [param('ns3::Ptr< ns3::ndn::ContentObject const >', 'data')],
5100 is_virtual=True)
5101 ## ndn-face.h (module 'ndnSIM'): bool ns3::ndn::Face::SendInterest(ns3::Ptr<ns3::ndn::Interest const> interest) [member function]
5102 cls.add_method('SendInterest',
5103 'bool',
5104 [param('ns3::Ptr< ns3::ndn::Interest const >', 'interest')],
5105 is_virtual=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005106 ## ndn-face.h (module 'ndnSIM'): void ns3::ndn::Face::SetId(uint32_t id) [member function]
5107 cls.add_method('SetId',
5108 'void',
5109 [param('uint32_t', 'id')])
5110 ## ndn-face.h (module 'ndnSIM'): void ns3::ndn::Face::SetMetric(uint16_t metric) [member function]
5111 cls.add_method('SetMetric',
5112 'void',
5113 [param('uint16_t', 'metric')],
5114 is_virtual=True)
5115 ## ndn-face.h (module 'ndnSIM'): void ns3::ndn::Face::SetUp(bool up=true) [member function]
5116 cls.add_method('SetUp',
5117 'void',
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005118 [param('bool', 'up', default_value='true')])
5119 ## ndn-face.h (module 'ndnSIM'): void ns3::ndn::Face::UnRegisterProtocolHandlers() [member function]
5120 cls.add_method('UnRegisterProtocolHandlers',
5121 'void',
5122 [],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005123 is_virtual=True)
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005124 ## ndn-face.h (module 'ndnSIM'): bool ns3::ndn::Face::Receive(ns3::Ptr<ns3::Packet const> p) [member function]
5125 cls.add_method('Receive',
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005126 'bool',
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005127 [param('ns3::Ptr< ns3::Packet const >', 'p')],
5128 visibility='protected', is_virtual=True)
5129 ## ndn-face.h (module 'ndnSIM'): bool ns3::ndn::Face::Send(ns3::Ptr<ns3::Packet> packet) [member function]
5130 cls.add_method('Send',
5131 'bool',
5132 [param('ns3::Ptr< ns3::Packet >', 'packet')],
5133 visibility='protected', is_virtual=True)
5134 ## ndn-face.h (module 'ndnSIM'): void ns3::ndn::Face::SetFlags(uint32_t flags) [member function]
5135 cls.add_method('SetFlags',
5136 'void',
5137 [param('uint32_t', 'flags')],
5138 visibility='protected')
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005139 return
5140
5141def register_Ns3NdnFaceContainer_methods(root_module, cls):
5142 ## ndn-face-container.h (module 'ndnSIM'): ns3::ndn::FaceContainer::FaceContainer() [constructor]
5143 cls.add_constructor([])
5144 ## ndn-face-container.h (module 'ndnSIM'): ns3::ndn::FaceContainer::FaceContainer(ns3::ndn::FaceContainer const & other) [copy constructor]
5145 cls.add_constructor([param('ns3::ndn::FaceContainer const &', 'other')])
5146 ## ndn-face-container.h (module 'ndnSIM'): void ns3::ndn::FaceContainer::Add(ns3::Ptr<ns3::ndn::Face> const & face) [member function]
5147 cls.add_method('Add',
5148 'void',
5149 [param('ns3::Ptr< ns3::ndn::Face > const &', 'face')])
5150 ## ndn-face-container.h (module 'ndnSIM'): void ns3::ndn::FaceContainer::AddAll(ns3::Ptr<ns3::ndn::FaceContainer> other) [member function]
5151 cls.add_method('AddAll',
5152 'void',
5153 [param('ns3::Ptr< ns3::ndn::FaceContainer >', 'other')])
5154 ## ndn-face-container.h (module 'ndnSIM'): void ns3::ndn::FaceContainer::AddAll(ns3::ndn::FaceContainer const & other) [member function]
5155 cls.add_method('AddAll',
5156 'void',
5157 [param('ns3::ndn::FaceContainer const &', 'other')])
5158 ## 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]
5159 cls.add_method('Begin',
5160 '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::ndn::Face > const, std::vector< ns3::Ptr< ns3::ndn::Face > > >',
5161 [],
5162 is_const=True)
5163 ## 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]
5164 cls.add_method('End',
5165 '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::ndn::Face > const, std::vector< ns3::Ptr< ns3::ndn::Face > > >',
5166 [],
5167 is_const=True)
5168 ## 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]
5169 cls.add_method('Get',
5170 'ns3::Ptr< ns3::ndn::Face >',
5171 [param('__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::ndn::Face > const, std::vector< ns3::Ptr< ns3::ndn::Face > > >', 'i')],
5172 is_const=True)
5173 ## ndn-face-container.h (module 'ndnSIM'): uint32_t ns3::ndn::FaceContainer::GetN() const [member function]
5174 cls.add_method('GetN',
5175 'uint32_t',
5176 [],
5177 is_const=True)
5178 return
5179
5180def register_Ns3NdnFib_methods(root_module, cls):
5181 cls.add_output_stream_operator()
5182 ## ndn-fib.h (module 'ndnSIM'): ns3::ndn::Fib::Fib() [constructor]
5183 cls.add_constructor([])
Alexander Afanasyevcfdc14f2013-03-15 14:38:44 -07005184 ## ndn-fib.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::fib::Entry> ns3::ndn::Fib::Add(ns3::ndn::Name const & prefix, ns3::Ptr<ns3::ndn::Face> face, int32_t metric) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005185 cls.add_method('Add',
5186 'ns3::Ptr< ns3::ndn::fib::Entry >',
Alexander Afanasyevcfdc14f2013-03-15 14:38:44 -07005187 [param('ns3::ndn::Name const &', 'prefix'), param('ns3::Ptr< ns3::ndn::Face >', 'face'), param('int32_t', 'metric')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005188 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyevcfdc14f2013-03-15 14:38:44 -07005189 ## ndn-fib.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::fib::Entry> ns3::ndn::Fib::Add(ns3::Ptr<ns3::ndn::Name const> const & prefix, ns3::Ptr<ns3::ndn::Face> face, int32_t metric) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005190 cls.add_method('Add',
5191 'ns3::Ptr< ns3::ndn::fib::Entry >',
Alexander Afanasyevcfdc14f2013-03-15 14:38:44 -07005192 [param('ns3::Ptr< ns3::ndn::Name const > const &', 'prefix'), param('ns3::Ptr< ns3::ndn::Face >', 'face'), param('int32_t', 'metric')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005193 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005194 ## 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 -07005195 cls.add_method('Begin',
5196 'ns3::Ptr< ns3::ndn::fib::Entry const >',
5197 [],
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005198 is_pure_virtual=True, is_const=True, is_virtual=True)
5199 ## ndn-fib.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::fib::Entry> ns3::ndn::Fib::Begin() [member function]
5200 cls.add_method('Begin',
5201 'ns3::Ptr< ns3::ndn::fib::Entry >',
5202 [],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005203 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005204 ## 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 -07005205 cls.add_method('End',
5206 'ns3::Ptr< ns3::ndn::fib::Entry const >',
5207 [],
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005208 is_pure_virtual=True, is_const=True, is_virtual=True)
5209 ## ndn-fib.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::fib::Entry> ns3::ndn::Fib::End() [member function]
5210 cls.add_method('End',
5211 'ns3::Ptr< ns3::ndn::fib::Entry >',
5212 [],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005213 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyeve5a8b5a2013-03-15 15:15:26 -07005214 ## ndn-fib.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::fib::Entry> ns3::ndn::Fib::Find(ns3::ndn::Name const & prefix) [member function]
5215 cls.add_method('Find',
5216 'ns3::Ptr< ns3::ndn::fib::Entry >',
5217 [param('ns3::ndn::Name const &', 'prefix')],
5218 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005219 ## ndn-fib.h (module 'ndnSIM'): static ns3::Ptr<ns3::ndn::Fib> ns3::ndn::Fib::GetFib(ns3::Ptr<ns3::Object> node) [member function]
5220 cls.add_method('GetFib',
5221 'ns3::Ptr< ns3::ndn::Fib >',
5222 [param('ns3::Ptr< ns3::Object >', 'node')],
5223 is_static=True)
5224 ## ndn-fib.h (module 'ndnSIM'): uint32_t ns3::ndn::Fib::GetSize() const [member function]
5225 cls.add_method('GetSize',
5226 'uint32_t',
5227 [],
5228 is_pure_virtual=True, is_const=True, is_virtual=True)
5229 ## ndn-fib.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::Fib::GetTypeId() [member function]
5230 cls.add_method('GetTypeId',
5231 'ns3::TypeId',
5232 [],
5233 is_static=True)
5234 ## ndn-fib.h (module 'ndnSIM'): void ns3::ndn::Fib::InvalidateAll() [member function]
5235 cls.add_method('InvalidateAll',
5236 'void',
5237 [],
5238 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyeveae83ee2013-03-15 15:01:10 -07005239 ## ndn-fib.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::fib::Entry> ns3::ndn::Fib::LongestPrefixMatch(ns3::ndn::Interest const & interest) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005240 cls.add_method('LongestPrefixMatch',
5241 'ns3::Ptr< ns3::ndn::fib::Entry >',
Alexander Afanasyeveae83ee2013-03-15 15:01:10 -07005242 [param('ns3::ndn::Interest const &', 'interest')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005243 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005244 ## 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 -07005245 cls.add_method('Next',
5246 'ns3::Ptr< ns3::ndn::fib::Entry const >',
5247 [param('ns3::Ptr< ns3::ndn::fib::Entry const >', 'arg0')],
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005248 is_pure_virtual=True, is_const=True, is_virtual=True)
5249 ## ndn-fib.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::fib::Entry> ns3::ndn::Fib::Next(ns3::Ptr<ns3::ndn::fib::Entry> arg0) [member function]
5250 cls.add_method('Next',
5251 'ns3::Ptr< ns3::ndn::fib::Entry >',
5252 [param('ns3::Ptr< ns3::ndn::fib::Entry >', 'arg0')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005253 is_pure_virtual=True, is_virtual=True)
5254 ## ndn-fib.h (module 'ndnSIM'): void ns3::ndn::Fib::Print(std::ostream & os) const [member function]
5255 cls.add_method('Print',
5256 'void',
5257 [param('std::ostream &', 'os')],
5258 is_pure_virtual=True, is_const=True, is_virtual=True)
Alexander Afanasyevcfdc14f2013-03-15 14:38:44 -07005259 ## ndn-fib.h (module 'ndnSIM'): void ns3::ndn::Fib::Remove(ns3::Ptr<ns3::ndn::Name const> const & prefix) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005260 cls.add_method('Remove',
5261 'void',
Alexander Afanasyevcfdc14f2013-03-15 14:38:44 -07005262 [param('ns3::Ptr< ns3::ndn::Name const > const &', 'prefix')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005263 is_pure_virtual=True, is_virtual=True)
5264 ## ndn-fib.h (module 'ndnSIM'): void ns3::ndn::Fib::RemoveFromAll(ns3::Ptr<ns3::ndn::Face> face) [member function]
5265 cls.add_method('RemoveFromAll',
5266 'void',
5267 [param('ns3::Ptr< ns3::ndn::Face >', 'face')],
5268 is_pure_virtual=True, is_virtual=True)
5269 return
5270
5271def register_Ns3NdnForwardingStrategy_methods(root_module, cls):
5272 ## ndn-forwarding-strategy.h (module 'ndnSIM'): ns3::ndn::ForwardingStrategy::ForwardingStrategy(ns3::ndn::ForwardingStrategy const & arg0) [copy constructor]
5273 cls.add_constructor([param('ns3::ndn::ForwardingStrategy const &', 'arg0')])
5274 ## ndn-forwarding-strategy.h (module 'ndnSIM'): ns3::ndn::ForwardingStrategy::ForwardingStrategy() [constructor]
5275 cls.add_constructor([])
Alexander Afanasyevf5c07742012-10-31 13:13:05 -07005276 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::AddFace(ns3::Ptr<ns3::ndn::Face> face) [member function]
5277 cls.add_method('AddFace',
5278 'void',
5279 [param('ns3::Ptr< ns3::ndn::Face >', 'face')],
5280 is_virtual=True)
Alexander Afanasyev32c07562013-02-01 12:58:43 -08005281 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::DidAddFibEntry(ns3::Ptr<ns3::ndn::fib::Entry> fibEntry) [member function]
5282 cls.add_method('DidAddFibEntry',
5283 'void',
5284 [param('ns3::Ptr< ns3::ndn::fib::Entry >', 'fibEntry')],
5285 is_virtual=True)
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08005286 ## ndn-forwarding-strategy.h (module 'ndnSIM'): static std::string ns3::ndn::ForwardingStrategy::GetLogName() [member function]
5287 cls.add_method('GetLogName',
5288 'std::string',
5289 [],
5290 is_static=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005291 ## ndn-forwarding-strategy.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::ForwardingStrategy::GetTypeId() [member function]
5292 cls.add_method('GetTypeId',
5293 'ns3::TypeId',
5294 [],
5295 is_static=True)
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005296 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::OnData(ns3::Ptr<ns3::ndn::Face> face, ns3::Ptr<ns3::ndn::ContentObject> data) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005297 cls.add_method('OnData',
5298 'void',
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005299 [param('ns3::Ptr< ns3::ndn::Face >', 'face'), param('ns3::Ptr< ns3::ndn::ContentObject >', 'data')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005300 is_virtual=True)
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005301 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::OnInterest(ns3::Ptr<ns3::ndn::Face> face, ns3::Ptr<ns3::ndn::Interest> interest) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005302 cls.add_method('OnInterest',
5303 'void',
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005304 [param('ns3::Ptr< ns3::ndn::Face >', 'face'), param('ns3::Ptr< ns3::ndn::Interest >', 'interest')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005305 is_virtual=True)
5306 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::RemoveFace(ns3::Ptr<ns3::ndn::Face> face) [member function]
5307 cls.add_method('RemoveFace',
5308 'void',
5309 [param('ns3::Ptr< ns3::ndn::Face >', 'face')],
5310 is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005311 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::WillEraseTimedOutPendingInterest(ns3::Ptr<ns3::ndn::pit::Entry> pitEntry) [member function]
5312 cls.add_method('WillEraseTimedOutPendingInterest',
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005313 'void',
5314 [param('ns3::Ptr< ns3::ndn::pit::Entry >', 'pitEntry')],
5315 is_virtual=True)
Alexander Afanasyev32c07562013-02-01 12:58:43 -08005316 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::WillRemoveFibEntry(ns3::Ptr<ns3::ndn::fib::Entry> fibEntry) [member function]
5317 cls.add_method('WillRemoveFibEntry',
5318 'void',
5319 [param('ns3::Ptr< ns3::ndn::fib::Entry >', 'fibEntry')],
5320 is_virtual=True)
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005321 ## 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::Interest const> interest, ns3::Ptr<ns3::ndn::pit::Entry> pitEntry) [member function]
Alexander Afanasyeva8f5d882012-11-09 14:22:48 -08005322 cls.add_method('CanSendOutInterest',
5323 'bool',
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005324 [param('ns3::Ptr< ns3::ndn::Face >', 'inFace'), param('ns3::Ptr< ns3::ndn::Face >', 'outFace'), param('ns3::Ptr< ns3::ndn::Interest const >', 'interest'), param('ns3::Ptr< ns3::ndn::pit::Entry >', 'pitEntry')],
Alexander Afanasyeva8f5d882012-11-09 14:22:48 -08005325 visibility='protected', is_virtual=True)
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005326 ## ndn-forwarding-strategy.h (module 'ndnSIM'): bool ns3::ndn::ForwardingStrategy::DetectRetransmittedInterest(ns3::Ptr<ns3::ndn::Face> inFace, ns3::Ptr<ns3::ndn::Interest const> interest, ns3::Ptr<ns3::ndn::pit::Entry> pitEntry) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005327 cls.add_method('DetectRetransmittedInterest',
5328 'bool',
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005329 [param('ns3::Ptr< ns3::ndn::Face >', 'inFace'), param('ns3::Ptr< ns3::ndn::Interest const >', 'interest'), param('ns3::Ptr< ns3::ndn::pit::Entry >', 'pitEntry')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005330 visibility='protected', is_virtual=True)
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005331 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::DidCreatePitEntry(ns3::Ptr<ns3::ndn::Face> inFace, ns3::Ptr<ns3::ndn::Interest const> interest, ns3::Ptr<ns3::ndn::pit::Entry> pitEntry) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005332 cls.add_method('DidCreatePitEntry',
5333 'void',
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005334 [param('ns3::Ptr< ns3::ndn::Face >', 'inFace'), param('ns3::Ptr< ns3::ndn::Interest const >', 'interest'), param('ns3::Ptr< ns3::ndn::pit::Entry >', 'pitEntry')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005335 visibility='protected', is_virtual=True)
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005336 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::DidExhaustForwardingOptions(ns3::Ptr<ns3::ndn::Face> inFace, ns3::Ptr<ns3::ndn::Interest const> interest, ns3::Ptr<ns3::ndn::pit::Entry> pitEntry) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005337 cls.add_method('DidExhaustForwardingOptions',
5338 'void',
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005339 [param('ns3::Ptr< ns3::ndn::Face >', 'inFace'), param('ns3::Ptr< ns3::ndn::Interest const >', 'interest'), param('ns3::Ptr< ns3::ndn::pit::Entry >', 'pitEntry')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005340 visibility='protected', is_virtual=True)
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005341 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::DidForwardSimilarInterest(ns3::Ptr<ns3::ndn::Face> inFace, ns3::Ptr<ns3::ndn::Interest const> interest, ns3::Ptr<ns3::ndn::pit::Entry> pitEntry) [member function]
Alexander Afanasyeva28ec562012-10-25 14:07:32 -07005342 cls.add_method('DidForwardSimilarInterest',
5343 'void',
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005344 [param('ns3::Ptr< ns3::ndn::Face >', 'inFace'), param('ns3::Ptr< ns3::ndn::Interest const >', 'interest'), param('ns3::Ptr< ns3::ndn::pit::Entry >', 'pitEntry')],
Alexander Afanasyeva28ec562012-10-25 14:07:32 -07005345 visibility='protected', is_virtual=True)
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005346 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::DidReceiveDuplicateInterest(ns3::Ptr<ns3::ndn::Face> inFace, ns3::Ptr<ns3::ndn::Interest const> interest, ns3::Ptr<ns3::ndn::pit::Entry> pitEntry) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005347 cls.add_method('DidReceiveDuplicateInterest',
5348 'void',
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005349 [param('ns3::Ptr< ns3::ndn::Face >', 'inFace'), param('ns3::Ptr< ns3::ndn::Interest const >', 'interest'), param('ns3::Ptr< ns3::ndn::pit::Entry >', 'pitEntry')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005350 visibility='protected', is_virtual=True)
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005351 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::DidReceiveSolicitedData(ns3::Ptr<ns3::ndn::Face> inFace, ns3::Ptr<ns3::ndn::ContentObject const> data, bool didCreateCacheEntry) [member function]
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08005352 cls.add_method('DidReceiveSolicitedData',
5353 'void',
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005354 [param('ns3::Ptr< ns3::ndn::Face >', 'inFace'), param('ns3::Ptr< ns3::ndn::ContentObject const >', 'data'), param('bool', 'didCreateCacheEntry')],
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08005355 visibility='protected', is_virtual=True)
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005356 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::DidReceiveUnsolicitedData(ns3::Ptr<ns3::ndn::Face> inFace, ns3::Ptr<ns3::ndn::ContentObject const> data, bool didCreateCacheEntry) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005357 cls.add_method('DidReceiveUnsolicitedData',
5358 'void',
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005359 [param('ns3::Ptr< ns3::ndn::Face >', 'inFace'), param('ns3::Ptr< ns3::ndn::ContentObject const >', 'data'), param('bool', 'didCreateCacheEntry')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005360 visibility='protected', is_virtual=True)
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005361 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::DidSendOutData(ns3::Ptr<ns3::ndn::Face> inFace, ns3::Ptr<ns3::ndn::Face> outFace, ns3::Ptr<ns3::ndn::ContentObject const> data, ns3::Ptr<ns3::ndn::pit::Entry> pitEntry) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005362 cls.add_method('DidSendOutData',
5363 'void',
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005364 [param('ns3::Ptr< ns3::ndn::Face >', 'inFace'), param('ns3::Ptr< ns3::ndn::Face >', 'outFace'), param('ns3::Ptr< ns3::ndn::ContentObject const >', 'data'), param('ns3::Ptr< ns3::ndn::pit::Entry >', 'pitEntry')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005365 visibility='protected', is_virtual=True)
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005366 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::DidSendOutInterest(ns3::Ptr<ns3::ndn::Face> inFace, ns3::Ptr<ns3::ndn::Face> outFace, ns3::Ptr<ns3::ndn::Interest const> interest, ns3::Ptr<ns3::ndn::pit::Entry> pitEntry) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005367 cls.add_method('DidSendOutInterest',
5368 'void',
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005369 [param('ns3::Ptr< ns3::ndn::Face >', 'inFace'), param('ns3::Ptr< ns3::ndn::Face >', 'outFace'), param('ns3::Ptr< ns3::ndn::Interest const >', 'interest'), param('ns3::Ptr< ns3::ndn::pit::Entry >', 'pitEntry')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005370 visibility='protected', is_virtual=True)
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005371 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::DidSuppressSimilarInterest(ns3::Ptr<ns3::ndn::Face> inFace, ns3::Ptr<ns3::ndn::Interest const> interest, ns3::Ptr<ns3::ndn::pit::Entry> pitEntry) [member function]
Alexander Afanasyeva28ec562012-10-25 14:07:32 -07005372 cls.add_method('DidSuppressSimilarInterest',
5373 'void',
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005374 [param('ns3::Ptr< ns3::ndn::Face >', 'inFace'), param('ns3::Ptr< ns3::ndn::Interest const >', 'interest'), param('ns3::Ptr< ns3::ndn::pit::Entry >', 'pitEntry')],
Alexander Afanasyeva28ec562012-10-25 14:07:32 -07005375 visibility='protected', is_virtual=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005376 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::DoDispose() [member function]
5377 cls.add_method('DoDispose',
5378 'void',
5379 [],
5380 visibility='protected', is_virtual=True)
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005381 ## ndn-forwarding-strategy.h (module 'ndnSIM'): bool ns3::ndn::ForwardingStrategy::DoPropagateInterest(ns3::Ptr<ns3::ndn::Face> inFace, ns3::Ptr<ns3::ndn::Interest const> interest, ns3::Ptr<ns3::ndn::pit::Entry> pitEntry) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005382 cls.add_method('DoPropagateInterest',
5383 'bool',
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005384 [param('ns3::Ptr< ns3::ndn::Face >', 'inFace'), param('ns3::Ptr< ns3::ndn::Interest const >', 'interest'), param('ns3::Ptr< ns3::ndn::pit::Entry >', 'pitEntry')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005385 is_pure_virtual=True, visibility='protected', is_virtual=True)
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005386 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::FailedToCreatePitEntry(ns3::Ptr<ns3::ndn::Face> inFace, ns3::Ptr<ns3::ndn::Interest const> interest) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005387 cls.add_method('FailedToCreatePitEntry',
5388 'void',
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005389 [param('ns3::Ptr< ns3::ndn::Face >', 'inFace'), param('ns3::Ptr< ns3::ndn::Interest const >', 'interest')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005390 visibility='protected', is_virtual=True)
5391 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::NotifyNewAggregate() [member function]
5392 cls.add_method('NotifyNewAggregate',
5393 'void',
5394 [],
5395 visibility='protected', is_virtual=True)
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005396 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::PropagateInterest(ns3::Ptr<ns3::ndn::Face> inFace, ns3::Ptr<ns3::ndn::Interest const> interest, ns3::Ptr<ns3::ndn::pit::Entry> pitEntry) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005397 cls.add_method('PropagateInterest',
5398 'void',
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005399 [param('ns3::Ptr< ns3::ndn::Face >', 'inFace'), param('ns3::Ptr< ns3::ndn::Interest const >', 'interest'), param('ns3::Ptr< ns3::ndn::pit::Entry >', 'pitEntry')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005400 visibility='protected', is_virtual=True)
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005401 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::SatisfyPendingInterest(ns3::Ptr<ns3::ndn::Face> inFace, ns3::Ptr<ns3::ndn::ContentObject const> data, ns3::Ptr<ns3::ndn::pit::Entry> pitEntry) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005402 cls.add_method('SatisfyPendingInterest',
5403 'void',
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005404 [param('ns3::Ptr< ns3::ndn::Face >', 'inFace'), param('ns3::Ptr< ns3::ndn::ContentObject const >', 'data'), param('ns3::Ptr< ns3::ndn::pit::Entry >', 'pitEntry')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005405 visibility='protected', is_virtual=True)
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005406 ## ndn-forwarding-strategy.h (module 'ndnSIM'): bool ns3::ndn::ForwardingStrategy::ShouldSuppressIncomingInterest(ns3::Ptr<ns3::ndn::Face> inFace, ns3::Ptr<ns3::ndn::Interest const> interest, ns3::Ptr<ns3::ndn::pit::Entry> pitEntry) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005407 cls.add_method('ShouldSuppressIncomingInterest',
5408 'bool',
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005409 [param('ns3::Ptr< ns3::ndn::Face >', 'inFace'), param('ns3::Ptr< ns3::ndn::Interest const >', 'interest'), param('ns3::Ptr< ns3::ndn::pit::Entry >', 'pitEntry')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005410 visibility='protected', is_virtual=True)
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005411 ## 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::Interest const> interest, ns3::Ptr<ns3::ndn::pit::Entry> pitEntry) [member function]
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005412 cls.add_method('TrySendOutInterest',
5413 'bool',
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005414 [param('ns3::Ptr< ns3::ndn::Face >', 'inFace'), param('ns3::Ptr< ns3::ndn::Face >', 'outFace'), param('ns3::Ptr< ns3::ndn::Interest const >', 'interest'), param('ns3::Ptr< ns3::ndn::pit::Entry >', 'pitEntry')],
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005415 visibility='protected', is_virtual=True)
5416 ## 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 -07005417 cls.add_method('WillSatisfyPendingInterest',
5418 'void',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005419 [param('ns3::Ptr< ns3::ndn::Face >', 'inFace'), param('ns3::Ptr< ns3::ndn::pit::Entry >', 'pitEntry')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005420 visibility='protected', is_virtual=True)
5421 return
5422
5423def register_Ns3NdnGlobalRoutingHelper_methods(root_module, cls):
5424 ## ndn-global-routing-helper.h (module 'ndnSIM'): ns3::ndn::GlobalRoutingHelper::GlobalRoutingHelper() [constructor]
5425 cls.add_constructor([])
5426 ## ndn-global-routing-helper.h (module 'ndnSIM'): ns3::ndn::GlobalRoutingHelper::GlobalRoutingHelper(ns3::ndn::GlobalRoutingHelper const & arg0) [copy constructor]
5427 cls.add_constructor([param('ns3::ndn::GlobalRoutingHelper const &', 'arg0')])
5428 ## ndn-global-routing-helper.h (module 'ndnSIM'): void ns3::ndn::GlobalRoutingHelper::AddOrigin(std::string const & prefix, ns3::Ptr<ns3::Node> node) [member function]
5429 cls.add_method('AddOrigin',
5430 'void',
5431 [param('std::string const &', 'prefix'), param('ns3::Ptr< ns3::Node >', 'node')])
5432 ## ndn-global-routing-helper.h (module 'ndnSIM'): void ns3::ndn::GlobalRoutingHelper::AddOrigin(std::string const & prefix, std::string const & nodeName) [member function]
5433 cls.add_method('AddOrigin',
5434 'void',
5435 [param('std::string const &', 'prefix'), param('std::string const &', 'nodeName')])
5436 ## ndn-global-routing-helper.h (module 'ndnSIM'): void ns3::ndn::GlobalRoutingHelper::AddOrigins(std::string const & prefix, ns3::NodeContainer const & nodes) [member function]
5437 cls.add_method('AddOrigins',
5438 'void',
5439 [param('std::string const &', 'prefix'), param('ns3::NodeContainer const &', 'nodes')])
Alexander Afanasyev32c07562013-02-01 12:58:43 -08005440 ## ndn-global-routing-helper.h (module 'ndnSIM'): void ns3::ndn::GlobalRoutingHelper::AddOriginsForAll() [member function]
5441 cls.add_method('AddOriginsForAll',
5442 'void',
5443 [])
Alexander Afanasyev0e4ae8e2013-03-12 15:59:18 -07005444 ## ndn-global-routing-helper.h (module 'ndnSIM'): static void ns3::ndn::GlobalRoutingHelper::CalculateAllPossibleRoutes() [member function]
5445 cls.add_method('CalculateAllPossibleRoutes',
5446 'void',
5447 [],
5448 is_static=True)
5449 ## ndn-global-routing-helper.h (module 'ndnSIM'): static void ns3::ndn::GlobalRoutingHelper::CalculateRoutes() [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005450 cls.add_method('CalculateRoutes',
5451 'void',
Alexander Afanasyev0e4ae8e2013-03-12 15:59:18 -07005452 [],
5453 is_static=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005454 ## ndn-global-routing-helper.h (module 'ndnSIM'): void ns3::ndn::GlobalRoutingHelper::Install(ns3::Ptr<ns3::Node> node) [member function]
5455 cls.add_method('Install',
5456 'void',
5457 [param('ns3::Ptr< ns3::Node >', 'node')])
5458 ## ndn-global-routing-helper.h (module 'ndnSIM'): void ns3::ndn::GlobalRoutingHelper::Install(ns3::NodeContainer const & nodes) [member function]
5459 cls.add_method('Install',
5460 'void',
5461 [param('ns3::NodeContainer const &', 'nodes')])
5462 ## ndn-global-routing-helper.h (module 'ndnSIM'): void ns3::ndn::GlobalRoutingHelper::InstallAll() [member function]
5463 cls.add_method('InstallAll',
5464 'void',
5465 [])
5466 return
5467
5468def register_Ns3NdnHeaderHelper_methods(root_module, cls):
5469 ## ndn-header-helper.h (module 'ndnSIM'): ns3::ndn::HeaderHelper::HeaderHelper() [constructor]
5470 cls.add_constructor([])
5471 ## ndn-header-helper.h (module 'ndnSIM'): ns3::ndn::HeaderHelper::HeaderHelper(ns3::ndn::HeaderHelper const & arg0) [copy constructor]
5472 cls.add_constructor([param('ns3::ndn::HeaderHelper const &', 'arg0')])
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005473 ## ndn-header-helper.h (module 'ndnSIM'): static ns3::ndn::HeaderHelper::Type ns3::ndn::HeaderHelper::GetNdnHeaderType(ns3::Ptr<ns3::Packet const> packet) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005474 cls.add_method('GetNdnHeaderType',
5475 'ns3::ndn::HeaderHelper::Type',
5476 [param('ns3::Ptr< ns3::Packet const >', 'packet')],
5477 is_static=True)
5478 return
5479
Alexander Afanasyeveae83ee2013-03-15 15:01:10 -07005480def register_Ns3NdnInterest_methods(root_module, cls):
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005481 ## ndn-interest.h (module 'ndnSIM'): ns3::ndn::Interest::Interest(ns3::Ptr<ns3::Packet> payload=ns3::Create( )) [constructor]
5482 cls.add_constructor([param('ns3::Ptr< ns3::Packet >', 'payload', default_value='ns3::Create( )')])
Alexander Afanasyeveae83ee2013-03-15 15:01:10 -07005483 ## ndn-interest.h (module 'ndnSIM'): ns3::ndn::Interest::Interest(ns3::ndn::Interest const & interest) [copy constructor]
5484 cls.add_constructor([param('ns3::ndn::Interest const &', 'interest')])
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005485 ## ndn-interest.h (module 'ndnSIM'): void ns3::ndn::Interest::SetName(ns3::Ptr<ns3::ndn::Name> name) [member function]
5486 cls.add_method('SetName',
5487 'void',
5488 [param('ns3::Ptr< ns3::ndn::Name >', 'name')])
5489 ## ndn-interest.h (module 'ndnSIM'): void ns3::ndn::Interest::SetName(ns3::ndn::Name const & name) [member function]
5490 cls.add_method('SetName',
5491 'void',
5492 [param('ns3::ndn::Name const &', 'name')])
Alexander Afanasyeveae83ee2013-03-15 15:01:10 -07005493 ## ndn-interest.h (module 'ndnSIM'): ns3::ndn::Name const & ns3::ndn::Interest::GetName() const [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005494 cls.add_method('GetName',
Alexander Afanasyevcfdc14f2013-03-15 14:38:44 -07005495 'ns3::ndn::Name const &',
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005496 [],
5497 is_const=True)
Alexander Afanasyeveae83ee2013-03-15 15:01:10 -07005498 ## ndn-interest.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::Name const> ns3::ndn::Interest::GetNamePtr() const [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005499 cls.add_method('GetNamePtr',
Alexander Afanasyevcfdc14f2013-03-15 14:38:44 -07005500 'ns3::Ptr< ns3::ndn::Name const >',
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005501 [],
5502 is_const=True)
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005503 ## ndn-interest.h (module 'ndnSIM'): void ns3::ndn::Interest::SetScope(int8_t scope) [member function]
5504 cls.add_method('SetScope',
5505 'void',
5506 [param('int8_t', 'scope')])
Alexander Afanasyeveae83ee2013-03-15 15:01:10 -07005507 ## ndn-interest.h (module 'ndnSIM'): int8_t ns3::ndn::Interest::GetScope() const [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005508 cls.add_method('GetScope',
5509 'int8_t',
5510 [],
5511 is_const=True)
Alexander Afanasyeveae83ee2013-03-15 15:01:10 -07005512 ## ndn-interest.h (module 'ndnSIM'): void ns3::ndn::Interest::SetInterestLifetime(ns3::Time time) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005513 cls.add_method('SetInterestLifetime',
5514 'void',
5515 [param('ns3::Time', 'time')])
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005516 ## ndn-interest.h (module 'ndnSIM'): ns3::Time ns3::ndn::Interest::GetInterestLifetime() const [member function]
5517 cls.add_method('GetInterestLifetime',
5518 'ns3::Time',
5519 [],
5520 is_const=True)
Alexander Afanasyeveae83ee2013-03-15 15:01:10 -07005521 ## ndn-interest.h (module 'ndnSIM'): void ns3::ndn::Interest::SetNonce(uint32_t nonce) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005522 cls.add_method('SetNonce',
5523 'void',
5524 [param('uint32_t', 'nonce')])
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005525 ## ndn-interest.h (module 'ndnSIM'): uint32_t ns3::ndn::Interest::GetNonce() const [member function]
5526 cls.add_method('GetNonce',
5527 'uint32_t',
5528 [],
5529 is_const=True)
5530 ## ndn-interest.h (module 'ndnSIM'): void ns3::ndn::Interest::SetNack(uint8_t nackType) [member function]
5531 cls.add_method('SetNack',
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005532 'void',
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005533 [param('uint8_t', 'nackType')])
5534 ## ndn-interest.h (module 'ndnSIM'): uint8_t ns3::ndn::Interest::GetNack() const [member function]
5535 cls.add_method('GetNack',
5536 'uint8_t',
5537 [],
5538 is_const=True)
5539 ## ndn-interest.h (module 'ndnSIM'): void ns3::ndn::Interest::SetPayload(ns3::Ptr<ns3::Packet> payload) [member function]
5540 cls.add_method('SetPayload',
5541 'void',
5542 [param('ns3::Ptr< ns3::Packet >', 'payload')])
5543 ## ndn-interest.h (module 'ndnSIM'): ns3::Ptr<ns3::Packet const> ns3::ndn::Interest::GetPayload() const [member function]
5544 cls.add_method('GetPayload',
5545 'ns3::Ptr< ns3::Packet const >',
5546 [],
5547 is_const=True)
5548 ## ndn-interest.h (module 'ndnSIM'): ns3::Ptr<ns3::Packet const> ns3::ndn::Interest::GetWire() const [member function]
5549 cls.add_method('GetWire',
5550 'ns3::Ptr< ns3::Packet const >',
5551 [],
5552 is_const=True)
5553 ## ndn-interest.h (module 'ndnSIM'): void ns3::ndn::Interest::SetWire(ns3::Ptr<ns3::Packet const> packet) const [member function]
5554 cls.add_method('SetWire',
5555 'void',
5556 [param('ns3::Ptr< ns3::Packet const >', 'packet')],
5557 is_const=True)
5558 ## ndn-interest.h (module 'ndnSIM'): void ns3::ndn::Interest::Print(std::ostream & os) const [member function]
5559 cls.add_method('Print',
5560 'void',
5561 [param('std::ostream &', 'os')],
5562 is_const=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005563 return
5564
Alexander Afanasyeveae83ee2013-03-15 15:01:10 -07005565def register_Ns3NdnInterestException_methods(root_module, cls):
5566 ## ndn-interest.h (module 'ndnSIM'): ns3::ndn::InterestException::InterestException() [constructor]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005567 cls.add_constructor([])
Alexander Afanasyeveae83ee2013-03-15 15:01:10 -07005568 ## ndn-interest.h (module 'ndnSIM'): ns3::ndn::InterestException::InterestException(ns3::ndn::InterestException const & arg0) [copy constructor]
5569 cls.add_constructor([param('ns3::ndn::InterestException const &', 'arg0')])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005570 return
5571
5572def register_Ns3NdnL3Protocol_methods(root_module, cls):
5573 ## ndn-l3-protocol.h (module 'ndnSIM'): ns3::ndn::L3Protocol::ETHERNET_FRAME_TYPE [variable]
5574 cls.add_static_attribute('ETHERNET_FRAME_TYPE', 'uint16_t const', is_const=True)
5575 ## ndn-l3-protocol.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::L3Protocol::GetTypeId() [member function]
5576 cls.add_method('GetTypeId',
5577 'ns3::TypeId',
5578 [],
5579 is_static=True)
5580 ## ndn-l3-protocol.h (module 'ndnSIM'): ns3::ndn::L3Protocol::L3Protocol() [constructor]
5581 cls.add_constructor([])
5582 ## ndn-l3-protocol.h (module 'ndnSIM'): uint32_t ns3::ndn::L3Protocol::AddFace(ns3::Ptr<ns3::ndn::Face> const & face) [member function]
5583 cls.add_method('AddFace',
5584 'uint32_t',
5585 [param('ns3::Ptr< ns3::ndn::Face > const &', 'face')],
5586 is_virtual=True)
5587 ## ndn-l3-protocol.h (module 'ndnSIM'): uint32_t ns3::ndn::L3Protocol::GetNFaces() const [member function]
5588 cls.add_method('GetNFaces',
5589 'uint32_t',
5590 [],
5591 is_const=True, is_virtual=True)
5592 ## ndn-l3-protocol.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::Face> ns3::ndn::L3Protocol::GetFace(uint32_t face) const [member function]
5593 cls.add_method('GetFace',
5594 'ns3::Ptr< ns3::ndn::Face >',
5595 [param('uint32_t', 'face')],
5596 is_const=True, is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005597 ## ndn-l3-protocol.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::Face> ns3::ndn::L3Protocol::GetFaceById(uint32_t face) const [member function]
5598 cls.add_method('GetFaceById',
5599 'ns3::Ptr< ns3::ndn::Face >',
5600 [param('uint32_t', 'face')],
5601 is_const=True, is_virtual=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005602 ## ndn-l3-protocol.h (module 'ndnSIM'): void ns3::ndn::L3Protocol::RemoveFace(ns3::Ptr<ns3::ndn::Face> face) [member function]
5603 cls.add_method('RemoveFace',
5604 'void',
5605 [param('ns3::Ptr< ns3::ndn::Face >', 'face')],
5606 is_virtual=True)
5607 ## ndn-l3-protocol.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::Face> ns3::ndn::L3Protocol::GetFaceByNetDevice(ns3::Ptr<ns3::NetDevice> netDevice) const [member function]
5608 cls.add_method('GetFaceByNetDevice',
5609 'ns3::Ptr< ns3::ndn::Face >',
5610 [param('ns3::Ptr< ns3::NetDevice >', 'netDevice')],
5611 is_const=True, is_virtual=True)
5612 ## ndn-l3-protocol.h (module 'ndnSIM'): void ns3::ndn::L3Protocol::DoDispose() [member function]
5613 cls.add_method('DoDispose',
5614 'void',
5615 [],
5616 visibility='protected', is_virtual=True)
5617 ## ndn-l3-protocol.h (module 'ndnSIM'): void ns3::ndn::L3Protocol::NotifyNewAggregate() [member function]
5618 cls.add_method('NotifyNewAggregate',
5619 'void',
5620 [],
5621 visibility='protected', is_virtual=True)
5622 return
5623
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005624def register_Ns3NdnLimits_methods(root_module, cls):
5625 ## ndn-limits.h (module 'ndnSIM'): ns3::ndn::Limits::Limits(ns3::ndn::Limits const & arg0) [copy constructor]
5626 cls.add_constructor([param('ns3::ndn::Limits const &', 'arg0')])
5627 ## ndn-limits.h (module 'ndnSIM'): ns3::ndn::Limits::Limits() [constructor]
5628 cls.add_constructor([])
Alexander Afanasyev7e4235a2012-10-31 16:58:44 -07005629 ## ndn-limits.h (module 'ndnSIM'): void ns3::ndn::Limits::BorrowLimit() [member function]
5630 cls.add_method('BorrowLimit',
5631 'void',
5632 [],
5633 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyevf5c07742012-10-31 13:13:05 -07005634 ## ndn-limits.h (module 'ndnSIM'): double ns3::ndn::Limits::GetCurrentLimit() const [member function]
5635 cls.add_method('GetCurrentLimit',
5636 'double',
5637 [],
Alexander Afanasyev7e4235a2012-10-31 16:58:44 -07005638 is_pure_virtual=True, is_const=True, is_virtual=True)
Alexander Afanasyeva8f5d882012-11-09 14:22:48 -08005639 ## ndn-limits.h (module 'ndnSIM'): double ns3::ndn::Limits::GetCurrentLimitRate() const [member function]
5640 cls.add_method('GetCurrentLimitRate',
5641 'double',
5642 [],
5643 is_pure_virtual=True, is_const=True, is_virtual=True)
5644 ## ndn-limits.h (module 'ndnSIM'): double ns3::ndn::Limits::GetLinkDelay() const [member function]
5645 cls.add_method('GetLinkDelay',
5646 'double',
5647 [],
5648 is_const=True, is_virtual=True)
Alexander Afanasyev7e4235a2012-10-31 16:58:44 -07005649 ## ndn-limits.h (module 'ndnSIM'): double ns3::ndn::Limits::GetMaxDelay() const [member function]
5650 cls.add_method('GetMaxDelay',
5651 'double',
5652 [],
5653 is_const=True, is_virtual=True)
Alexander Afanasyeva8f5d882012-11-09 14:22:48 -08005654 ## ndn-limits.h (module 'ndnSIM'): double ns3::ndn::Limits::GetMaxLimit() const [member function]
5655 cls.add_method('GetMaxLimit',
5656 'double',
5657 [],
5658 is_pure_virtual=True, is_const=True, is_virtual=True)
Alexander Afanasyev7e4235a2012-10-31 16:58:44 -07005659 ## ndn-limits.h (module 'ndnSIM'): double ns3::ndn::Limits::GetMaxRate() const [member function]
5660 cls.add_method('GetMaxRate',
Alexander Afanasyeva28ec562012-10-25 14:07:32 -07005661 'double',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005662 [],
Alexander Afanasyevf5c07742012-10-31 13:13:05 -07005663 is_const=True, is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005664 ## ndn-limits.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::Limits::GetTypeId() [member function]
5665 cls.add_method('GetTypeId',
5666 'ns3::TypeId',
5667 [],
5668 is_static=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005669 ## ndn-limits.h (module 'ndnSIM'): bool ns3::ndn::Limits::IsBelowLimit() [member function]
5670 cls.add_method('IsBelowLimit',
5671 'bool',
Alexander Afanasyevf5c07742012-10-31 13:13:05 -07005672 [],
5673 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005674 ## ndn-limits.h (module 'ndnSIM'): bool ns3::ndn::Limits::IsEnabled() const [member function]
5675 cls.add_method('IsEnabled',
5676 'bool',
5677 [],
Alexander Afanasyevf5c07742012-10-31 13:13:05 -07005678 is_const=True, is_virtual=True)
Alexander Afanasyeva8f5d882012-11-09 14:22:48 -08005679 ## 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]
5680 cls.add_method('RegisterAvailableSlotCallback',
5681 'void',
5682 [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 -07005683 ## ndn-limits.h (module 'ndnSIM'): void ns3::ndn::Limits::ReturnLimit() [member function]
5684 cls.add_method('ReturnLimit',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005685 'void',
Alexander Afanasyev7e4235a2012-10-31 16:58:44 -07005686 [],
5687 is_pure_virtual=True, is_virtual=True)
5688 ## ndn-limits.h (module 'ndnSIM'): void ns3::ndn::Limits::SetLimits(double rate, double delay) [member function]
5689 cls.add_method('SetLimits',
5690 'void',
5691 [param('double', 'rate'), param('double', 'delay')],
Alexander Afanasyevf5c07742012-10-31 13:13:05 -07005692 is_virtual=True)
Alexander Afanasyeva8f5d882012-11-09 14:22:48 -08005693 ## ndn-limits.h (module 'ndnSIM'): void ns3::ndn::Limits::SetLinkDelay(double delay) [member function]
5694 cls.add_method('SetLinkDelay',
5695 'void',
5696 [param('double', 'delay')],
5697 is_virtual=True)
Alexander Afanasyeva28ec562012-10-25 14:07:32 -07005698 ## ndn-limits.h (module 'ndnSIM'): void ns3::ndn::Limits::UpdateCurrentLimit(double limit) [member function]
5699 cls.add_method('UpdateCurrentLimit',
5700 'void',
Alexander Afanasyev7e4235a2012-10-31 16:58:44 -07005701 [param('double', 'limit')],
5702 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyeva8f5d882012-11-09 14:22:48 -08005703 ## ndn-limits.h (module 'ndnSIM'): void ns3::ndn::Limits::FireAvailableSlotCallback() [member function]
5704 cls.add_method('FireAvailableSlotCallback',
5705 'void',
5706 [],
5707 visibility='protected')
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005708 return
5709
Alexander Afanasyev32c07562013-02-01 12:58:43 -08005710def register_Ns3NdnName_methods(root_module, cls):
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005711 cls.add_output_stream_operator()
5712 cls.add_binary_comparison_operator('<')
5713 cls.add_binary_comparison_operator('==')
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08005714 ## ndn-name.h (module 'ndnSIM'): ns3::ndn::Name::Name(ns3::ndn::Name const & arg0) [copy constructor]
Alexander Afanasyev32c07562013-02-01 12:58:43 -08005715 cls.add_constructor([param('ns3::ndn::Name const &', 'arg0')])
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08005716 ## ndn-name.h (module 'ndnSIM'): ns3::ndn::Name::Name() [constructor]
Alexander Afanasyev32c07562013-02-01 12:58:43 -08005717 cls.add_constructor([])
Alexander Afanasyev298c8442013-04-14 15:18:45 -07005718 ## ndn-name.h (module 'ndnSIM'): ns3::ndn::Name::Name(std::list<std::string, std::allocator<std::string> > const & components) [constructor]
5719 cls.add_constructor([param('std::list< std::string > const &', 'components')])
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08005720 ## ndn-name.h (module 'ndnSIM'): ns3::ndn::Name::Name(std::string const & prefix) [constructor]
Alexander Afanasyev32c07562013-02-01 12:58:43 -08005721 cls.add_constructor([param('std::string const &', 'prefix')])
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08005722 ## ndn-name.h (module 'ndnSIM'): ns3::ndn::Name::Name(char const * prefix) [constructor]
Alexander Afanasyev32c07562013-02-01 12:58:43 -08005723 cls.add_constructor([param('char const *', 'prefix')])
Alexander Afanasyeva4e74282013-07-11 15:23:20 -07005724 ## ndn-name.h (module 'ndnSIM'): ns3::ndn::Name & ns3::ndn::Name::Append(ns3::ndn::Name const & otherName) [member function]
5725 cls.add_method('Append',
5726 'ns3::ndn::Name &',
5727 [param('ns3::ndn::Name const &', 'otherName')])
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08005728 ## ndn-name.h (module 'ndnSIM'): std::list<std::string, std::allocator<std::string> > const & ns3::ndn::Name::GetComponents() const [member function]
Alexander Afanasyev32c07562013-02-01 12:58:43 -08005729 cls.add_method('GetComponents',
5730 'std::list< std::string > const &',
5731 [],
5732 is_const=True)
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08005733 ## ndn-name.h (module 'ndnSIM'): std::string ns3::ndn::Name::GetLastComponent() const [member function]
Alexander Afanasyev32c07562013-02-01 12:58:43 -08005734 cls.add_method('GetLastComponent',
5735 'std::string',
5736 [],
5737 is_const=True)
Alexander Afanasyeve5a8b5a2013-03-15 15:15:26 -07005738 ## ndn-name.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::Name::GetSubComponents(size_t num) const [member function]
Alexander Afanasyev32c07562013-02-01 12:58:43 -08005739 cls.add_method('GetSubComponents',
5740 'std::list< boost::reference_wrapper< std::string const > >',
5741 [param('size_t', 'num')],
5742 is_const=True)
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08005743 ## ndn-name.h (module 'ndnSIM'): void ns3::ndn::Name::Print(std::ostream & os) const [member function]
Alexander Afanasyev32c07562013-02-01 12:58:43 -08005744 cls.add_method('Print',
5745 'void',
5746 [param('std::ostream &', 'os')],
5747 is_const=True)
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08005748 ## ndn-name.h (module 'ndnSIM'): std::_List_iterator<std::string> ns3::ndn::Name::begin() [member function]
Alexander Afanasyev32c07562013-02-01 12:58:43 -08005749 cls.add_method('begin',
5750 'std::_List_iterator< std::string >',
5751 [])
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08005752 ## ndn-name.h (module 'ndnSIM'): std::_List_const_iterator<std::string> ns3::ndn::Name::begin() const [member function]
Alexander Afanasyev32c07562013-02-01 12:58:43 -08005753 cls.add_method('begin',
5754 'std::_List_const_iterator< std::string >',
5755 [],
5756 is_const=True)
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08005757 ## ndn-name.h (module 'ndnSIM'): ns3::ndn::Name ns3::ndn::Name::cut(size_t minusComponents) const [member function]
Alexander Afanasyev32c07562013-02-01 12:58:43 -08005758 cls.add_method('cut',
5759 'ns3::ndn::Name',
5760 [param('size_t', 'minusComponents')],
5761 is_const=True)
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08005762 ## ndn-name.h (module 'ndnSIM'): std::_List_iterator<std::string> ns3::ndn::Name::end() [member function]
Alexander Afanasyev32c07562013-02-01 12:58:43 -08005763 cls.add_method('end',
5764 'std::_List_iterator< std::string >',
5765 [])
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08005766 ## ndn-name.h (module 'ndnSIM'): std::_List_const_iterator<std::string> ns3::ndn::Name::end() const [member function]
Alexander Afanasyev32c07562013-02-01 12:58:43 -08005767 cls.add_method('end',
5768 'std::_List_const_iterator< std::string >',
5769 [],
5770 is_const=True)
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08005771 ## ndn-name.h (module 'ndnSIM'): size_t ns3::ndn::Name::size() const [member function]
Alexander Afanasyev32c07562013-02-01 12:58:43 -08005772 cls.add_method('size',
5773 'size_t',
5774 [],
5775 is_const=True)
5776 return
5777
5778def register_Ns3NdnNameChecker_methods(root_module, cls):
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08005779 ## ndn-name.h (module 'ndnSIM'): ns3::ndn::NameChecker::NameChecker() [constructor]
Alexander Afanasyev32c07562013-02-01 12:58:43 -08005780 cls.add_constructor([])
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08005781 ## ndn-name.h (module 'ndnSIM'): ns3::ndn::NameChecker::NameChecker(ns3::ndn::NameChecker const & arg0) [copy constructor]
Alexander Afanasyev32c07562013-02-01 12:58:43 -08005782 cls.add_constructor([param('ns3::ndn::NameChecker const &', 'arg0')])
5783 return
5784
Alexander Afanasyev32c07562013-02-01 12:58:43 -08005785def register_Ns3NdnNameValue_methods(root_module, cls):
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08005786 ## ndn-name.h (module 'ndnSIM'): ns3::ndn::NameValue::NameValue() [constructor]
Alexander Afanasyev32c07562013-02-01 12:58:43 -08005787 cls.add_constructor([])
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08005788 ## ndn-name.h (module 'ndnSIM'): ns3::ndn::NameValue::NameValue(ns3::ndn::NameValue const & arg0) [copy constructor]
Alexander Afanasyev32c07562013-02-01 12:58:43 -08005789 cls.add_constructor([param('ns3::ndn::NameValue const &', 'arg0')])
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08005790 ## ndn-name.h (module 'ndnSIM'): ns3::ndn::NameValue::NameValue(ns3::ndn::Name const & value) [constructor]
Alexander Afanasyev32c07562013-02-01 12:58:43 -08005791 cls.add_constructor([param('ns3::ndn::Name const &', 'value')])
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08005792 ## ndn-name.h (module 'ndnSIM'): ns3::Ptr<ns3::AttributeValue> ns3::ndn::NameValue::Copy() const [member function]
Alexander Afanasyev32c07562013-02-01 12:58:43 -08005793 cls.add_method('Copy',
5794 'ns3::Ptr< ns3::AttributeValue >',
5795 [],
5796 is_const=True, is_virtual=True)
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08005797 ## ndn-name.h (module 'ndnSIM'): bool ns3::ndn::NameValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
Alexander Afanasyev32c07562013-02-01 12:58:43 -08005798 cls.add_method('DeserializeFromString',
5799 'bool',
5800 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
5801 is_virtual=True)
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08005802 ## ndn-name.h (module 'ndnSIM'): ns3::ndn::Name ns3::ndn::NameValue::Get() const [member function]
Alexander Afanasyev32c07562013-02-01 12:58:43 -08005803 cls.add_method('Get',
5804 'ns3::ndn::Name',
5805 [],
5806 is_const=True)
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08005807 ## ndn-name.h (module 'ndnSIM'): std::string ns3::ndn::NameValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
Alexander Afanasyev32c07562013-02-01 12:58:43 -08005808 cls.add_method('SerializeToString',
5809 'std::string',
5810 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
5811 is_const=True, is_virtual=True)
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08005812 ## ndn-name.h (module 'ndnSIM'): void ns3::ndn::NameValue::Set(ns3::ndn::Name const & value) [member function]
Alexander Afanasyev32c07562013-02-01 12:58:43 -08005813 cls.add_method('Set',
5814 'void',
5815 [param('ns3::ndn::Name const &', 'value')])
5816 return
5817
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005818def register_Ns3NdnNetDeviceFace_methods(root_module, cls):
5819 ## ndn-net-device-face.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::NetDeviceFace::GetTypeId() [member function]
5820 cls.add_method('GetTypeId',
5821 'ns3::TypeId',
5822 [],
5823 is_static=True)
5824 ## ndn-net-device-face.h (module 'ndnSIM'): ns3::ndn::NetDeviceFace::NetDeviceFace(ns3::Ptr<ns3::Node> node, ns3::Ptr<ns3::NetDevice> const & netDevice) [constructor]
5825 cls.add_constructor([param('ns3::Ptr< ns3::Node >', 'node'), param('ns3::Ptr< ns3::NetDevice > const &', 'netDevice')])
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005826 ## ndn-net-device-face.h (module 'ndnSIM'): void ns3::ndn::NetDeviceFace::RegisterProtocolHandlers(ns3::Callback<void, ns3::Ptr<ns3::ndn::Face>, ns3::Ptr<ns3::ndn::Interest>, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> const & interestHandler, ns3::Callback<void, ns3::Ptr<ns3::ndn::Face>, ns3::Ptr<ns3::ndn::ContentObject>, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> const & dataHandler) [member function]
5827 cls.add_method('RegisterProtocolHandlers',
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005828 'void',
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005829 [param('ns3::Callback< void, ns3::Ptr< ns3::ndn::Face >, ns3::Ptr< ns3::ndn::Interest >, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty > const &', 'interestHandler'), param('ns3::Callback< void, ns3::Ptr< ns3::ndn::Face >, ns3::Ptr< ns3::ndn::ContentObject >, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty > const &', 'dataHandler')],
5830 is_virtual=True)
5831 ## ndn-net-device-face.h (module 'ndnSIM'): void ns3::ndn::NetDeviceFace::UnRegisterProtocolHandlers() [member function]
5832 cls.add_method('UnRegisterProtocolHandlers',
5833 'void',
5834 [],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005835 is_virtual=True)
5836 ## ndn-net-device-face.h (module 'ndnSIM'): std::ostream & ns3::ndn::NetDeviceFace::Print(std::ostream & os) const [member function]
5837 cls.add_method('Print',
5838 'std::ostream &',
5839 [param('std::ostream &', 'os')],
5840 is_const=True, is_virtual=True)
5841 ## ndn-net-device-face.h (module 'ndnSIM'): ns3::Ptr<ns3::NetDevice> ns3::ndn::NetDeviceFace::GetNetDevice() const [member function]
5842 cls.add_method('GetNetDevice',
5843 'ns3::Ptr< ns3::NetDevice >',
5844 [],
5845 is_const=True)
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005846 ## ndn-net-device-face.h (module 'ndnSIM'): bool ns3::ndn::NetDeviceFace::Send(ns3::Ptr<ns3::Packet> p) [member function]
5847 cls.add_method('Send',
Alexander Afanasyev1c0248b2012-07-24 15:59:50 -07005848 'bool',
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07005849 [param('ns3::Ptr< ns3::Packet >', 'p')],
5850 visibility='protected', is_virtual=True)
5851 return
5852
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005853def register_Ns3NdnPit_methods(root_module, cls):
5854 cls.add_output_stream_operator()
5855 ## ndn-pit.h (module 'ndnSIM'): ns3::ndn::Pit::Pit(ns3::ndn::Pit const & arg0) [copy constructor]
5856 cls.add_constructor([param('ns3::ndn::Pit const &', 'arg0')])
5857 ## ndn-pit.h (module 'ndnSIM'): ns3::ndn::Pit::Pit() [constructor]
5858 cls.add_constructor([])
5859 ## ndn-pit.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::pit::Entry> ns3::ndn::Pit::Begin() [member function]
5860 cls.add_method('Begin',
5861 'ns3::Ptr< ns3::ndn::pit::Entry >',
5862 [],
5863 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyeveae83ee2013-03-15 15:01:10 -07005864 ## ndn-pit.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::pit::Entry> ns3::ndn::Pit::Create(ns3::Ptr<ns3::ndn::Interest const> header) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005865 cls.add_method('Create',
5866 'ns3::Ptr< ns3::ndn::pit::Entry >',
Alexander Afanasyeveae83ee2013-03-15 15:01:10 -07005867 [param('ns3::Ptr< ns3::ndn::Interest const >', 'header')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005868 is_pure_virtual=True, is_virtual=True)
5869 ## ndn-pit.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::pit::Entry> ns3::ndn::Pit::End() [member function]
5870 cls.add_method('End',
5871 'ns3::Ptr< ns3::ndn::pit::Entry >',
5872 [],
5873 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyeve5a8b5a2013-03-15 15:15:26 -07005874 ## ndn-pit.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::pit::Entry> ns3::ndn::Pit::Find(ns3::ndn::Name const & prefix) [member function]
5875 cls.add_method('Find',
5876 'ns3::Ptr< ns3::ndn::pit::Entry >',
5877 [param('ns3::ndn::Name const &', 'prefix')],
5878 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyev5b8d61b2013-05-03 10:23:21 -07005879 ## ndn-pit.h (module 'ndnSIM'): ns3::Time const & ns3::ndn::Pit::GetMaxPitEntryLifetime() const [member function]
5880 cls.add_method('GetMaxPitEntryLifetime',
5881 'ns3::Time const &',
5882 [],
5883 is_const=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005884 ## ndn-pit.h (module 'ndnSIM'): static ns3::Ptr<ns3::ndn::Pit> ns3::ndn::Pit::GetPit(ns3::Ptr<ns3::Object> node) [member function]
5885 cls.add_method('GetPit',
5886 'ns3::Ptr< ns3::ndn::Pit >',
5887 [param('ns3::Ptr< ns3::Object >', 'node')],
5888 is_static=True)
5889 ## ndn-pit.h (module 'ndnSIM'): uint32_t ns3::ndn::Pit::GetSize() const [member function]
5890 cls.add_method('GetSize',
5891 'uint32_t',
5892 [],
5893 is_pure_virtual=True, is_const=True, is_virtual=True)
5894 ## ndn-pit.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::Pit::GetTypeId() [member function]
5895 cls.add_method('GetTypeId',
5896 'ns3::TypeId',
5897 [],
5898 is_static=True)
Alexander Afanasyeveae83ee2013-03-15 15:01:10 -07005899 ## ndn-pit.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::pit::Entry> ns3::ndn::Pit::Lookup(ns3::ndn::ContentObject const & header) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005900 cls.add_method('Lookup',
5901 'ns3::Ptr< ns3::ndn::pit::Entry >',
Alexander Afanasyeveae83ee2013-03-15 15:01:10 -07005902 [param('ns3::ndn::ContentObject const &', 'header')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005903 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyeveae83ee2013-03-15 15:01:10 -07005904 ## ndn-pit.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::pit::Entry> ns3::ndn::Pit::Lookup(ns3::ndn::Interest const & header) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005905 cls.add_method('Lookup',
5906 'ns3::Ptr< ns3::ndn::pit::Entry >',
Alexander Afanasyeveae83ee2013-03-15 15:01:10 -07005907 [param('ns3::ndn::Interest const &', 'header')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005908 is_pure_virtual=True, is_virtual=True)
5909 ## ndn-pit.h (module 'ndnSIM'): void ns3::ndn::Pit::MarkErased(ns3::Ptr<ns3::ndn::pit::Entry> entry) [member function]
5910 cls.add_method('MarkErased',
5911 'void',
5912 [param('ns3::Ptr< ns3::ndn::pit::Entry >', 'entry')],
5913 is_pure_virtual=True, is_virtual=True)
5914 ## ndn-pit.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::pit::Entry> ns3::ndn::Pit::Next(ns3::Ptr<ns3::ndn::pit::Entry> arg0) [member function]
5915 cls.add_method('Next',
5916 'ns3::Ptr< ns3::ndn::pit::Entry >',
5917 [param('ns3::Ptr< ns3::ndn::pit::Entry >', 'arg0')],
5918 is_pure_virtual=True, is_virtual=True)
5919 ## ndn-pit.h (module 'ndnSIM'): void ns3::ndn::Pit::Print(std::ostream & os) const [member function]
5920 cls.add_method('Print',
5921 'void',
5922 [param('std::ostream &', 'os')],
5923 is_pure_virtual=True, is_const=True, is_virtual=True)
Alexander Afanasyev5b8d61b2013-05-03 10:23:21 -07005924 ## ndn-pit.h (module 'ndnSIM'): void ns3::ndn::Pit::SetMaxPitEntryLifetime(ns3::Time const & maxLifetime) [member function]
5925 cls.add_method('SetMaxPitEntryLifetime',
5926 'void',
5927 [param('ns3::Time const &', 'maxLifetime')])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005928 return
5929
Alexander Afanasyev0e4ae8e2013-03-12 15:59:18 -07005930def register_Ns3NdnRttEstimator_methods(root_module, cls):
5931 ## ndn-rtt-estimator.h (module 'ndnSIM'): ns3::ndn::RttEstimator::RttEstimator() [constructor]
5932 cls.add_constructor([])
5933 ## ndn-rtt-estimator.h (module 'ndnSIM'): ns3::ndn::RttEstimator::RttEstimator(ns3::ndn::RttEstimator const & arg0) [copy constructor]
5934 cls.add_constructor([param('ns3::ndn::RttEstimator const &', 'arg0')])
5935 ## ndn-rtt-estimator.h (module 'ndnSIM'): ns3::Time ns3::ndn::RttEstimator::AckSeq(ns3::SequenceNumber32 ackSeq) [member function]
5936 cls.add_method('AckSeq',
5937 'ns3::Time',
5938 [param('ns3::SequenceNumber32', 'ackSeq')],
5939 is_virtual=True)
5940 ## ndn-rtt-estimator.h (module 'ndnSIM'): void ns3::ndn::RttEstimator::ClearSent() [member function]
5941 cls.add_method('ClearSent',
5942 'void',
5943 [],
5944 is_virtual=True)
5945 ## ndn-rtt-estimator.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::RttEstimator> ns3::ndn::RttEstimator::Copy() const [member function]
5946 cls.add_method('Copy',
5947 'ns3::Ptr< ns3::ndn::RttEstimator >',
5948 [],
5949 is_pure_virtual=True, is_const=True, is_virtual=True)
5950 ## ndn-rtt-estimator.h (module 'ndnSIM'): ns3::Time ns3::ndn::RttEstimator::GetCurrentEstimate() const [member function]
5951 cls.add_method('GetCurrentEstimate',
5952 'ns3::Time',
5953 [],
5954 is_const=True)
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005955 ## ndn-rtt-estimator.h (module 'ndnSIM'): ns3::TypeId ns3::ndn::RttEstimator::GetInstanceTypeId() const [member function]
5956 cls.add_method('GetInstanceTypeId',
5957 'ns3::TypeId',
5958 [],
5959 is_const=True, is_virtual=True)
Alexander Afanasyev0e4ae8e2013-03-12 15:59:18 -07005960 ## ndn-rtt-estimator.h (module 'ndnSIM'): ns3::Time ns3::ndn::RttEstimator::GetMaxRto() const [member function]
5961 cls.add_method('GetMaxRto',
5962 'ns3::Time',
5963 [],
5964 is_const=True)
5965 ## ndn-rtt-estimator.h (module 'ndnSIM'): ns3::Time ns3::ndn::RttEstimator::GetMinRto() const [member function]
5966 cls.add_method('GetMinRto',
5967 'ns3::Time',
5968 [],
5969 is_const=True)
5970 ## ndn-rtt-estimator.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::RttEstimator::GetTypeId() [member function]
5971 cls.add_method('GetTypeId',
5972 'ns3::TypeId',
5973 [],
5974 is_static=True)
5975 ## ndn-rtt-estimator.h (module 'ndnSIM'): void ns3::ndn::RttEstimator::IncreaseMultiplier() [member function]
5976 cls.add_method('IncreaseMultiplier',
5977 'void',
5978 [],
5979 is_virtual=True)
5980 ## ndn-rtt-estimator.h (module 'ndnSIM'): void ns3::ndn::RttEstimator::Measurement(ns3::Time t) [member function]
5981 cls.add_method('Measurement',
5982 'void',
5983 [param('ns3::Time', 't')],
5984 is_pure_virtual=True, is_virtual=True)
5985 ## ndn-rtt-estimator.h (module 'ndnSIM'): void ns3::ndn::RttEstimator::Reset() [member function]
5986 cls.add_method('Reset',
5987 'void',
5988 [],
5989 is_virtual=True)
5990 ## ndn-rtt-estimator.h (module 'ndnSIM'): void ns3::ndn::RttEstimator::ResetMultiplier() [member function]
5991 cls.add_method('ResetMultiplier',
5992 'void',
5993 [],
5994 is_virtual=True)
5995 ## ndn-rtt-estimator.h (module 'ndnSIM'): ns3::Time ns3::ndn::RttEstimator::RetransmitTimeout() [member function]
5996 cls.add_method('RetransmitTimeout',
5997 'ns3::Time',
5998 [],
5999 is_pure_virtual=True, is_virtual=True)
6000 ## ndn-rtt-estimator.h (module 'ndnSIM'): void ns3::ndn::RttEstimator::SentSeq(ns3::SequenceNumber32 seq, uint32_t size) [member function]
6001 cls.add_method('SentSeq',
6002 'void',
6003 [param('ns3::SequenceNumber32', 'seq'), param('uint32_t', 'size')],
6004 is_virtual=True)
6005 ## ndn-rtt-estimator.h (module 'ndnSIM'): void ns3::ndn::RttEstimator::SetCurrentEstimate(ns3::Time estimate) [member function]
6006 cls.add_method('SetCurrentEstimate',
6007 'void',
6008 [param('ns3::Time', 'estimate')])
6009 ## ndn-rtt-estimator.h (module 'ndnSIM'): void ns3::ndn::RttEstimator::SetMaxRto(ns3::Time maxRto) [member function]
6010 cls.add_method('SetMaxRto',
6011 'void',
6012 [param('ns3::Time', 'maxRto')])
6013 ## ndn-rtt-estimator.h (module 'ndnSIM'): void ns3::ndn::RttEstimator::SetMinRto(ns3::Time minRto) [member function]
6014 cls.add_method('SetMinRto',
6015 'void',
6016 [param('ns3::Time', 'minRto')])
6017 return
6018
6019def register_Ns3NdnRttHistory_methods(root_module, cls):
6020 ## ndn-rtt-estimator.h (module 'ndnSIM'): ns3::ndn::RttHistory::RttHistory(ns3::SequenceNumber32 s, uint32_t c, ns3::Time t) [constructor]
6021 cls.add_constructor([param('ns3::SequenceNumber32', 's'), param('uint32_t', 'c'), param('ns3::Time', 't')])
6022 ## ndn-rtt-estimator.h (module 'ndnSIM'): ns3::ndn::RttHistory::RttHistory(ns3::ndn::RttHistory const & h) [copy constructor]
6023 cls.add_constructor([param('ns3::ndn::RttHistory const &', 'h')])
6024 ## ndn-rtt-estimator.h (module 'ndnSIM'): ns3::ndn::RttHistory::count [variable]
6025 cls.add_instance_attribute('count', 'uint32_t', is_const=False)
6026 ## ndn-rtt-estimator.h (module 'ndnSIM'): ns3::ndn::RttHistory::retx [variable]
6027 cls.add_instance_attribute('retx', 'bool', is_const=False)
6028 ## ndn-rtt-estimator.h (module 'ndnSIM'): ns3::ndn::RttHistory::seq [variable]
6029 cls.add_instance_attribute('seq', 'ns3::SequenceNumber32', is_const=False)
6030 ## ndn-rtt-estimator.h (module 'ndnSIM'): ns3::ndn::RttHistory::time [variable]
6031 cls.add_instance_attribute('time', 'ns3::Time', is_const=False)
6032 return
6033
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006034def register_Ns3NdnStackHelper_methods(root_module, cls):
6035 ## ndn-stack-helper.h (module 'ndnSIM'): ns3::ndn::StackHelper::StackHelper() [constructor]
6036 cls.add_constructor([])
6037 ## 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]
6038 cls.add_method('SetStackAttributes',
6039 'void',
6040 [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='""')])
6041 ## 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]
6042 cls.add_method('SetForwardingStrategy',
6043 'void',
6044 [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='""')])
6045 ## 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]
6046 cls.add_method('SetContentStore',
6047 'void',
6048 [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='""')])
6049 ## 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]
6050 cls.add_method('SetPit',
6051 'void',
6052 [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='""')])
6053 ## 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]
6054 cls.add_method('SetFib',
6055 'void',
6056 [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='""')])
Alexander Afanasyevc17e4bd2013-02-17 14:31:56 -08006057 ## ndn-stack-helper.h (module 'ndnSIM'): void ns3::ndn::StackHelper::AddNetDeviceFaceCreateCallback(ns3::TypeId netDeviceType, ns3::Callback<ns3::Ptr<ns3::ndn::NetDeviceFace>,ns3::Ptr<ns3::Node>,ns3::Ptr<ns3::ndn::L3Protocol>,ns3::Ptr<ns3::NetDevice>,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty> callback) [member function]
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08006058 cls.add_method('AddNetDeviceFaceCreateCallback',
6059 'void',
Alexander Afanasyevc17e4bd2013-02-17 14:31:56 -08006060 [param('ns3::TypeId', 'netDeviceType'), param('ns3::Callback< ns3::Ptr< ns3::ndn::NetDeviceFace >, ns3::Ptr< ns3::Node >, ns3::Ptr< ns3::ndn::L3Protocol >, ns3::Ptr< ns3::NetDevice >, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'callback')])
Alexander Afanasyev858d5312013-07-10 18:50:18 -07006061 ## ndn-stack-helper.h (module 'ndnSIM'): void ns3::ndn::StackHelper::UpdateNetDeviceFaceCreateCallback(ns3::TypeId netDeviceType, ns3::Callback<ns3::Ptr<ns3::ndn::NetDeviceFace>,ns3::Ptr<ns3::Node>,ns3::Ptr<ns3::ndn::L3Protocol>,ns3::Ptr<ns3::NetDevice>,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty> callback) [member function]
6062 cls.add_method('UpdateNetDeviceFaceCreateCallback',
6063 'void',
6064 [param('ns3::TypeId', 'netDeviceType'), param('ns3::Callback< ns3::Ptr< ns3::ndn::NetDeviceFace >, ns3::Ptr< ns3::Node >, ns3::Ptr< ns3::ndn::L3Protocol >, ns3::Ptr< ns3::NetDevice >, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'callback')])
6065 ## ndn-stack-helper.h (module 'ndnSIM'): void ns3::ndn::StackHelper::RemoveNetDeviceFaceCreateCallback(ns3::TypeId netDeviceType, ns3::Callback<ns3::Ptr<ns3::ndn::NetDeviceFace>,ns3::Ptr<ns3::Node>,ns3::Ptr<ns3::ndn::L3Protocol>,ns3::Ptr<ns3::NetDevice>,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty> callback) [member function]
6066 cls.add_method('RemoveNetDeviceFaceCreateCallback',
6067 'void',
6068 [param('ns3::TypeId', 'netDeviceType'), param('ns3::Callback< ns3::Ptr< ns3::ndn::NetDeviceFace >, ns3::Ptr< ns3::Node >, ns3::Ptr< ns3::ndn::L3Protocol >, ns3::Ptr< ns3::NetDevice >, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'callback')])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006069 ## 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]
6070 cls.add_method('EnableLimits',
6071 'void',
6072 [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')])
Alexander Afanasyev67f4a4a2012-11-24 17:18:17 -08006073 ## ndn-stack-helper.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::FaceContainer> ns3::ndn::StackHelper::Install(std::string const & nodeName) const [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006074 cls.add_method('Install',
6075 'ns3::Ptr< ns3::ndn::FaceContainer >',
Alexander Afanasyev67f4a4a2012-11-24 17:18:17 -08006076 [param('std::string const &', 'nodeName')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006077 is_const=True)
6078 ## ndn-stack-helper.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::FaceContainer> ns3::ndn::StackHelper::Install(ns3::Ptr<ns3::Node> node) const [member function]
6079 cls.add_method('Install',
6080 'ns3::Ptr< ns3::ndn::FaceContainer >',
6081 [param('ns3::Ptr< ns3::Node >', 'node')],
6082 is_const=True)
Alexander Afanasyev67f4a4a2012-11-24 17:18:17 -08006083 ## ndn-stack-helper.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::FaceContainer> ns3::ndn::StackHelper::Install(ns3::NodeContainer const & c) const [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006084 cls.add_method('Install',
6085 'ns3::Ptr< ns3::ndn::FaceContainer >',
Alexander Afanasyev67f4a4a2012-11-24 17:18:17 -08006086 [param('ns3::NodeContainer const &', 'c')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006087 is_const=True)
6088 ## ndn-stack-helper.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::FaceContainer> ns3::ndn::StackHelper::InstallAll() const [member function]
6089 cls.add_method('InstallAll',
6090 'ns3::Ptr< ns3::ndn::FaceContainer >',
6091 [],
6092 is_const=True)
Alexander Afanasyev67f4a4a2012-11-24 17:18:17 -08006093 ## ndn-stack-helper.h (module 'ndnSIM'): static void ns3::ndn::StackHelper::AddRoute(std::string const & nodeName, std::string const & prefix, uint32_t faceId, int32_t metric) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006094 cls.add_method('AddRoute',
6095 'void',
Alexander Afanasyev67f4a4a2012-11-24 17:18:17 -08006096 [param('std::string const &', 'nodeName'), param('std::string const &', 'prefix'), param('uint32_t', 'faceId'), param('int32_t', 'metric')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006097 is_static=True)
Alexander Afanasyev67f4a4a2012-11-24 17:18:17 -08006098 ## ndn-stack-helper.h (module 'ndnSIM'): static void ns3::ndn::StackHelper::AddRoute(ns3::Ptr<ns3::Node> node, std::string const & prefix, uint32_t faceId, int32_t metric) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006099 cls.add_method('AddRoute',
6100 'void',
Alexander Afanasyev67f4a4a2012-11-24 17:18:17 -08006101 [param('ns3::Ptr< ns3::Node >', 'node'), param('std::string const &', 'prefix'), param('uint32_t', 'faceId'), param('int32_t', 'metric')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006102 is_static=True)
Alexander Afanasyev67f4a4a2012-11-24 17:18:17 -08006103 ## ndn-stack-helper.h (module 'ndnSIM'): static void ns3::ndn::StackHelper::AddRoute(ns3::Ptr<ns3::Node> node, std::string const & prefix, ns3::Ptr<ns3::ndn::Face> face, int32_t metric) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006104 cls.add_method('AddRoute',
6105 'void',
Alexander Afanasyev67f4a4a2012-11-24 17:18:17 -08006106 [param('ns3::Ptr< ns3::Node >', 'node'), param('std::string const &', 'prefix'), param('ns3::Ptr< ns3::ndn::Face >', 'face'), param('int32_t', 'metric')],
6107 is_static=True)
6108 ## ndn-stack-helper.h (module 'ndnSIM'): static void ns3::ndn::StackHelper::AddRoute(ns3::Ptr<ns3::Node> node, std::string const & prefix, ns3::Ptr<ns3::Node> otherNode, int32_t metric) [member function]
6109 cls.add_method('AddRoute',
6110 'void',
6111 [param('ns3::Ptr< ns3::Node >', 'node'), param('std::string const &', 'prefix'), param('ns3::Ptr< ns3::Node >', 'otherNode'), param('int32_t', 'metric')],
6112 is_static=True)
6113 ## ndn-stack-helper.h (module 'ndnSIM'): static void ns3::ndn::StackHelper::AddRoute(std::string const & nodeName, std::string const & prefix, std::string const & otherNodeName, int32_t metric) [member function]
6114 cls.add_method('AddRoute',
6115 'void',
6116 [param('std::string const &', 'nodeName'), param('std::string const &', 'prefix'), param('std::string const &', 'otherNodeName'), param('int32_t', 'metric')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006117 is_static=True)
6118 ## ndn-stack-helper.h (module 'ndnSIM'): void ns3::ndn::StackHelper::SetDefaultRoutes(bool needSet) [member function]
6119 cls.add_method('SetDefaultRoutes',
6120 'void',
6121 [param('bool', 'needSet')])
6122 return
6123
6124def register_Ns3NdnUnknownHeaderException_methods(root_module, cls):
6125 ## ndn-header-helper.h (module 'ndnSIM'): ns3::ndn::UnknownHeaderException::UnknownHeaderException() [constructor]
6126 cls.add_constructor([])
6127 ## ndn-header-helper.h (module 'ndnSIM'): ns3::ndn::UnknownHeaderException::UnknownHeaderException(ns3::ndn::UnknownHeaderException const & arg0) [copy constructor]
6128 cls.add_constructor([param('ns3::ndn::UnknownHeaderException const &', 'arg0')])
6129 return
6130
Alexander Afanasyeva4e74282013-07-11 15:23:20 -07006131def register_Ns3NdnApiFace_methods(root_module, cls):
6132 ## ndn-api-face.h (module 'ndnSIM'): ns3::ndn::ApiFace::ApiFace(ns3::Ptr<ns3::Node> node) [constructor]
6133 cls.add_constructor([param('ns3::Ptr< ns3::Node >', 'node')])
6134 ## ndn-api-face.h (module 'ndnSIM'): void ns3::ndn::ApiFace::Shutdown() [member function]
6135 cls.add_method('Shutdown',
6136 'void',
Alexander Afanasyeve4795ae2013-07-11 20:01:31 -07006137 [],
6138 is_virtual=True)
6139 ## ndn-api-face.h (module 'ndnSIM'): void ns3::ndn::ApiFace::ExpressInterest(ns3::Ptr<ns3::ndn::Interest> interest, ns3::Callback<void, ns3::Ptr<ns3::ndn::Interest const>, ns3::Ptr<ns3::ndn::ContentObject const>, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> onData, ns3::Callback<void, ns3::Ptr<ns3::ndn::Interest const>, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> onTimeout) [member function]
Alexander Afanasyeva4e74282013-07-11 15:23:20 -07006140 cls.add_method('ExpressInterest',
6141 'void',
6142 [param('ns3::Ptr< ns3::ndn::Interest >', 'interest'), param('ns3::Callback< void, ns3::Ptr< ns3::ndn::Interest const >, ns3::Ptr< ns3::ndn::ContentObject const >, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'onData'), param('ns3::Callback< void, ns3::Ptr< ns3::ndn::Interest const >, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'onTimeout')])
Alexander Afanasyeve4795ae2013-07-11 20:01:31 -07006143 ## ndn-api-face.h (module 'ndnSIM'): void ns3::ndn::ApiFace::SetInterestFilter(ns3::Ptr<ns3::ndn::Name const> prefix, ns3::Callback<void, ns3::Ptr<ns3::ndn::Name const>, ns3::Ptr<ns3::ndn::Interest const>, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> onInterest) [member function]
Alexander Afanasyeva4e74282013-07-11 15:23:20 -07006144 cls.add_method('SetInterestFilter',
6145 'void',
6146 [param('ns3::Ptr< ns3::ndn::Name const >', 'prefix'), param('ns3::Callback< void, ns3::Ptr< ns3::ndn::Name const >, ns3::Ptr< ns3::ndn::Interest const >, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'onInterest')])
6147 ## ndn-api-face.h (module 'ndnSIM'): void ns3::ndn::ApiFace::ClearInterestFilter(ns3::Ptr<ns3::ndn::Name const> prefix) [member function]
6148 cls.add_method('ClearInterestFilter',
6149 'void',
6150 [param('ns3::Ptr< ns3::ndn::Name const >', 'prefix')])
6151 ## ndn-api-face.h (module 'ndnSIM'): void ns3::ndn::ApiFace::Put(ns3::Ptr<ns3::ndn::ContentObject> data) [member function]
6152 cls.add_method('Put',
6153 'void',
6154 [param('ns3::Ptr< ns3::ndn::ContentObject >', 'data')])
6155 ## ndn-api-face.h (module 'ndnSIM'): bool ns3::ndn::ApiFace::SendInterest(ns3::Ptr<ns3::ndn::Interest const> interest) [member function]
6156 cls.add_method('SendInterest',
6157 'bool',
6158 [param('ns3::Ptr< ns3::ndn::Interest const >', 'interest')],
6159 is_virtual=True)
6160 ## ndn-api-face.h (module 'ndnSIM'): bool ns3::ndn::ApiFace::SendData(ns3::Ptr<ns3::ndn::ContentObject const> data) [member function]
6161 cls.add_method('SendData',
6162 'bool',
6163 [param('ns3::Ptr< ns3::ndn::ContentObject const >', 'data')],
6164 is_virtual=True)
6165 ## ndn-api-face.h (module 'ndnSIM'): std::ostream & ns3::ndn::ApiFace::Print(std::ostream & os) const [member function]
6166 cls.add_method('Print',
6167 'std::ostream &',
6168 [param('std::ostream &', 'os')],
6169 is_const=True, is_virtual=True)
6170 return
6171
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006172def register_Ns3NdnAppFace_methods(root_module, cls):
6173 ## ndn-app-face.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::AppFace::GetTypeId() [member function]
6174 cls.add_method('GetTypeId',
6175 'ns3::TypeId',
6176 [],
6177 is_static=True)
6178 ## ndn-app-face.h (module 'ndnSIM'): ns3::ndn::AppFace::AppFace(ns3::Ptr<ns3::ndn::App> app) [constructor]
6179 cls.add_constructor([param('ns3::Ptr< ns3::ndn::App >', 'app')])
Alexander Afanasyev858d5312013-07-10 18:50:18 -07006180 ## ndn-app-face.h (module 'ndnSIM'): bool ns3::ndn::AppFace::SendInterest(ns3::Ptr<ns3::ndn::Interest const> interest) [member function]
6181 cls.add_method('SendInterest',
6182 'bool',
6183 [param('ns3::Ptr< ns3::ndn::Interest const >', 'interest')],
6184 is_virtual=True)
6185 ## ndn-app-face.h (module 'ndnSIM'): bool ns3::ndn::AppFace::SendData(ns3::Ptr<ns3::ndn::ContentObject const> data) [member function]
6186 cls.add_method('SendData',
6187 'bool',
6188 [param('ns3::Ptr< ns3::ndn::ContentObject const >', 'data')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006189 is_virtual=True)
6190 ## ndn-app-face.h (module 'ndnSIM'): std::ostream & ns3::ndn::AppFace::Print(std::ostream & os) const [member function]
6191 cls.add_method('Print',
6192 'std::ostream &',
6193 [param('std::ostream &', 'os')],
6194 is_const=True, is_virtual=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006195 return
6196
6197def register_Ns3NdnCsEntry_methods(root_module, cls):
6198 ## ndn-content-store.h (module 'ndnSIM'): ns3::ndn::cs::Entry::Entry(ns3::ndn::cs::Entry const & arg0) [copy constructor]
6199 cls.add_constructor([param('ns3::ndn::cs::Entry const &', 'arg0')])
Alexander Afanasyev858d5312013-07-10 18:50:18 -07006200 ## ndn-content-store.h (module 'ndnSIM'): ns3::ndn::cs::Entry::Entry(ns3::Ptr<ns3::ndn::ContentStore> cs, ns3::Ptr<ns3::ndn::ContentObject const> data) [constructor]
6201 cls.add_constructor([param('ns3::Ptr< ns3::ndn::ContentStore >', 'cs'), param('ns3::Ptr< ns3::ndn::ContentObject const >', 'data')])
Alexander Afanasyev0e4ae8e2013-03-12 15:59:18 -07006202 ## ndn-content-store.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::ContentStore> ns3::ndn::cs::Entry::GetContentStore() [member function]
6203 cls.add_method('GetContentStore',
6204 'ns3::Ptr< ns3::ndn::ContentStore >',
6205 [])
Alexander Afanasyev858d5312013-07-10 18:50:18 -07006206 ## ndn-content-store.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::ContentObject const> ns3::ndn::cs::Entry::GetData() const [member function]
6207 cls.add_method('GetData',
Alexander Afanasyeveae83ee2013-03-15 15:01:10 -07006208 'ns3::Ptr< ns3::ndn::ContentObject const >',
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006209 [],
6210 is_const=True)
Alexander Afanasyevcfdc14f2013-03-15 14:38:44 -07006211 ## ndn-content-store.h (module 'ndnSIM'): ns3::ndn::Name const & ns3::ndn::cs::Entry::GetName() const [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006212 cls.add_method('GetName',
Alexander Afanasyevcfdc14f2013-03-15 14:38:44 -07006213 'ns3::ndn::Name const &',
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006214 [],
6215 is_const=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006216 return
6217
6218def register_Ns3NdnFibEntry_methods(root_module, cls):
6219 cls.add_output_stream_operator()
6220 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::Entry::Entry(ns3::ndn::fib::Entry const & arg0) [copy constructor]
6221 cls.add_constructor([param('ns3::ndn::fib::Entry const &', 'arg0')])
Alexander Afanasyev5b8d61b2013-05-03 10:23:21 -07006222 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::Entry::Entry(ns3::Ptr<ns3::ndn::Fib> fib, ns3::Ptr<ns3::ndn::Name const> const & prefix) [constructor]
6223 cls.add_constructor([param('ns3::Ptr< ns3::ndn::Fib >', 'fib'), param('ns3::Ptr< ns3::ndn::Name const > const &', 'prefix')])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006224 ## ndn-fib-entry.h (module 'ndnSIM'): void ns3::ndn::fib::Entry::AddOrUpdateRoutingMetric(ns3::Ptr<ns3::ndn::Face> face, int32_t metric) [member function]
6225 cls.add_method('AddOrUpdateRoutingMetric',
6226 'void',
6227 [param('ns3::Ptr< ns3::ndn::Face >', 'face'), param('int32_t', 'metric')])
6228 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::FaceMetric const & ns3::ndn::fib::Entry::FindBestCandidate(uint32_t skip=0) const [member function]
6229 cls.add_method('FindBestCandidate',
6230 'ns3::ndn::fib::FaceMetric const &',
6231 [param('uint32_t', 'skip', default_value='0')],
6232 is_const=True)
Alexander Afanasyev5b8d61b2013-05-03 10:23:21 -07006233 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::Fib> ns3::ndn::fib::Entry::GetFib() [member function]
6234 cls.add_method('GetFib',
6235 'ns3::Ptr< ns3::ndn::Fib >',
6236 [])
Alexander Afanasyevcfdc14f2013-03-15 14:38:44 -07006237 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::Name const & ns3::ndn::fib::Entry::GetPrefix() const [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006238 cls.add_method('GetPrefix',
Alexander Afanasyevcfdc14f2013-03-15 14:38:44 -07006239 'ns3::ndn::Name const &',
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006240 [],
6241 is_const=True)
6242 ## ndn-fib-entry.h (module 'ndnSIM'): void ns3::ndn::fib::Entry::Invalidate() [member function]
6243 cls.add_method('Invalidate',
6244 'void',
6245 [])
6246 ## ndn-fib-entry.h (module 'ndnSIM'): void ns3::ndn::fib::Entry::RemoveFace(ns3::Ptr<ns3::ndn::Face> const & face) [member function]
6247 cls.add_method('RemoveFace',
6248 'void',
6249 [param('ns3::Ptr< ns3::ndn::Face > const &', 'face')])
Alexander Afanasyev32c07562013-02-01 12:58:43 -08006250 ## ndn-fib-entry.h (module 'ndnSIM'): void ns3::ndn::fib::Entry::SetRealDelayToProducer(ns3::Ptr<ns3::ndn::Face> face, ns3::Time delay) [member function]
6251 cls.add_method('SetRealDelayToProducer',
6252 'void',
6253 [param('ns3::Ptr< ns3::ndn::Face >', 'face'), param('ns3::Time', 'delay')])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006254 ## ndn-fib-entry.h (module 'ndnSIM'): void ns3::ndn::fib::Entry::UpdateFaceRtt(ns3::Ptr<ns3::ndn::Face> face, ns3::Time const & sample) [member function]
6255 cls.add_method('UpdateFaceRtt',
6256 'void',
6257 [param('ns3::Ptr< ns3::ndn::Face >', 'face'), param('ns3::Time const &', 'sample')])
6258 ## 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]
6259 cls.add_method('UpdateStatus',
6260 'void',
6261 [param('ns3::Ptr< ns3::ndn::Face >', 'face'), param('ns3::ndn::fib::FaceMetric::Status', 'status')])
6262 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::Entry::m_faces [variable]
Alexander Afanasyev06dba7c2013-02-21 11:36:26 -08006263 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::const_mem_fun< ns3::ndn::fib::FaceMetric, ns3::Ptr< ns3::ndn::Face >, & ( ns3::ndn::fib::FaceMetric::GetFace ( ) const ) >, 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::const_mem_fun< ns3::ndn::fib::FaceMetric, ns3::ndn::fib::FaceMetric::Status, & ( ns3::ndn::fib::FaceMetric::GetStatus ( ) const ) >, boost::multi_index::const_mem_fun< ns3::ndn::fib::FaceMetric, int, & ( ns3::ndn::fib::FaceMetric::GetRoutingCost ( ) 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, 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)
Alexander Afanasyev5b8d61b2013-05-03 10:23:21 -07006264 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::Entry::m_fib [variable]
6265 cls.add_instance_attribute('m_fib', 'ns3::Ptr< ns3::ndn::Fib >', is_const=False)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006266 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::Entry::m_needsProbing [variable]
6267 cls.add_instance_attribute('m_needsProbing', 'bool', is_const=False)
6268 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::Entry::m_prefix [variable]
Alexander Afanasyevcfdc14f2013-03-15 14:38:44 -07006269 cls.add_instance_attribute('m_prefix', 'ns3::Ptr< ns3::ndn::Name const >', is_const=False)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006270 return
6271
6272def register_Ns3NdnFibEntryNoFaces_methods(root_module, cls):
6273 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::Entry::NoFaces::NoFaces() [constructor]
6274 cls.add_constructor([])
6275 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::Entry::NoFaces::NoFaces(ns3::ndn::fib::Entry::NoFaces const & arg0) [copy constructor]
6276 cls.add_constructor([param('ns3::ndn::fib::Entry::NoFaces const &', 'arg0')])
6277 return
6278
6279def register_Ns3NdnFibFaceMetric_methods(root_module, cls):
6280 cls.add_output_stream_operator()
6281 cls.add_binary_comparison_operator('<')
6282 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::FaceMetric::FaceMetric(ns3::ndn::fib::FaceMetric const & arg0) [copy constructor]
6283 cls.add_constructor([param('ns3::ndn::fib::FaceMetric const &', 'arg0')])
6284 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::FaceMetric::FaceMetric(ns3::Ptr<ns3::ndn::Face> face, int32_t cost) [constructor]
6285 cls.add_constructor([param('ns3::Ptr< ns3::ndn::Face >', 'face'), param('int32_t', 'cost')])
6286 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::Face> ns3::ndn::fib::FaceMetric::GetFace() const [member function]
6287 cls.add_method('GetFace',
6288 'ns3::Ptr< ns3::ndn::Face >',
6289 [],
6290 is_const=True)
Alexander Afanasyev06dba7c2013-02-21 11:36:26 -08006291 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::Time ns3::ndn::fib::FaceMetric::GetRealDelay() const [member function]
6292 cls.add_method('GetRealDelay',
6293 'ns3::Time',
6294 [],
6295 is_const=True)
6296 ## ndn-fib-entry.h (module 'ndnSIM'): int32_t ns3::ndn::fib::FaceMetric::GetRoutingCost() const [member function]
6297 cls.add_method('GetRoutingCost',
6298 'int32_t',
6299 [],
6300 is_const=True)
6301 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::FaceMetric::Status ns3::ndn::fib::FaceMetric::GetStatus() const [member function]
6302 cls.add_method('GetStatus',
6303 'ns3::ndn::fib::FaceMetric::Status',
6304 [],
6305 is_const=True)
Alexander Afanasyev0e4ae8e2013-03-12 15:59:18 -07006306 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::TracedValue<ns3::ndn::fib::FaceMetric::Status> & ns3::ndn::fib::FaceMetric::GetStatusTrace() [member function]
6307 cls.add_method('GetStatusTrace',
6308 'ns3::TracedValue< ns3::ndn::fib::FaceMetric::Status > &',
6309 [])
Alexander Afanasyev06dba7c2013-02-21 11:36:26 -08006310 ## ndn-fib-entry.h (module 'ndnSIM'): void ns3::ndn::fib::FaceMetric::SetRealDelay(ns3::Time realDelay) [member function]
6311 cls.add_method('SetRealDelay',
6312 'void',
6313 [param('ns3::Time', 'realDelay')])
6314 ## ndn-fib-entry.h (module 'ndnSIM'): void ns3::ndn::fib::FaceMetric::SetRoutingCost(int32_t routingCost) [member function]
6315 cls.add_method('SetRoutingCost',
6316 'void',
6317 [param('int32_t', 'routingCost')])
6318 ## ndn-fib-entry.h (module 'ndnSIM'): void ns3::ndn::fib::FaceMetric::SetStatus(ns3::ndn::fib::FaceMetric::Status status) [member function]
6319 cls.add_method('SetStatus',
6320 'void',
6321 [param('ns3::ndn::fib::FaceMetric::Status', 'status')])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006322 ## ndn-fib-entry.h (module 'ndnSIM'): void ns3::ndn::fib::FaceMetric::UpdateRtt(ns3::Time const & rttSample) [member function]
6323 cls.add_method('UpdateRtt',
6324 'void',
6325 [param('ns3::Time const &', 'rttSample')])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006326 return
6327
6328def register_Ns3NdnFibFaceMetricContainer_methods(root_module, cls):
6329 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::FaceMetricContainer::FaceMetricContainer() [constructor]
6330 cls.add_constructor([])
6331 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::FaceMetricContainer::FaceMetricContainer(ns3::ndn::fib::FaceMetricContainer const & arg0) [copy constructor]
6332 cls.add_constructor([param('ns3::ndn::fib::FaceMetricContainer const &', 'arg0')])
6333 return
6334
6335def register_Ns3NdnFibI_face_methods(root_module, cls):
6336 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::i_face::i_face() [constructor]
6337 cls.add_constructor([])
6338 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::i_face::i_face(ns3::ndn::fib::i_face const & arg0) [copy constructor]
6339 cls.add_constructor([param('ns3::ndn::fib::i_face const &', 'arg0')])
6340 return
6341
6342def register_Ns3NdnFibI_metric_methods(root_module, cls):
6343 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::i_metric::i_metric() [constructor]
6344 cls.add_constructor([])
6345 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::i_metric::i_metric(ns3::ndn::fib::i_metric const & arg0) [copy constructor]
6346 cls.add_constructor([param('ns3::ndn::fib::i_metric const &', 'arg0')])
6347 return
6348
6349def register_Ns3NdnFibI_nth_methods(root_module, cls):
6350 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::i_nth::i_nth() [constructor]
6351 cls.add_constructor([])
6352 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::i_nth::i_nth(ns3::ndn::fib::i_nth const & arg0) [copy constructor]
6353 cls.add_constructor([param('ns3::ndn::fib::i_nth const &', 'arg0')])
6354 return
6355
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07006356def register_Ns3NdnFwTag_methods(root_module, cls):
6357 ## ndn-fw-tag.h (module 'ndnSIM'): ns3::ndn::fw::Tag::Tag() [constructor]
6358 cls.add_constructor([])
6359 ## ndn-fw-tag.h (module 'ndnSIM'): ns3::ndn::fw::Tag::Tag(ns3::ndn::fw::Tag const & arg0) [copy constructor]
6360 cls.add_constructor([param('ns3::ndn::fw::Tag const &', 'arg0')])
6361 return
6362
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006363def register_Ns3NdnPitEntry_methods(root_module, cls):
6364 cls.add_output_stream_operator()
6365 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::ndn::pit::Entry::Entry(ns3::ndn::pit::Entry const & arg0) [copy constructor]
6366 cls.add_constructor([param('ns3::ndn::pit::Entry const &', 'arg0')])
Alexander Afanasyeveae83ee2013-03-15 15:01:10 -07006367 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::ndn::pit::Entry::Entry(ns3::ndn::Pit & container, ns3::Ptr<ns3::ndn::Interest const> header, ns3::Ptr<ns3::ndn::fib::Entry> fibEntry) [constructor]
6368 cls.add_constructor([param('ns3::ndn::Pit &', 'container'), param('ns3::Ptr< ns3::ndn::Interest const >', 'header'), param('ns3::Ptr< ns3::ndn::fib::Entry >', 'fibEntry')])
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07006369 ## ndn-pit-entry.h (module 'ndnSIM'): void ns3::ndn::pit::Entry::AddFwTag(boost::shared_ptr<ns3::ndn::fw::Tag> tag) [member function]
6370 cls.add_method('AddFwTag',
6371 'void',
6372 [param('boost::shared_ptr< ns3::ndn::fw::Tag >', 'tag')])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006373 ## 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]
6374 cls.add_method('AddIncoming',
6375 'std::_Rb_tree_const_iterator< ns3::ndn::pit::IncomingFace >',
6376 [param('ns3::Ptr< ns3::ndn::Face >', 'face')],
6377 is_virtual=True)
Alexander Afanasyevc202fd92012-09-03 21:46:00 -07006378 ## 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 -07006379 cls.add_method('AddOutgoing',
Alexander Afanasyevc202fd92012-09-03 21:46:00 -07006380 'std::_Rb_tree_const_iterator< ns3::ndn::pit::OutgoingFace >',
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006381 [param('ns3::Ptr< ns3::ndn::Face >', 'face')],
6382 is_virtual=True)
6383 ## ndn-pit-entry.h (module 'ndnSIM'): void ns3::ndn::pit::Entry::AddSeenNonce(uint32_t nonce) [member function]
6384 cls.add_method('AddSeenNonce',
6385 'void',
6386 [param('uint32_t', 'nonce')],
6387 is_virtual=True)
6388 ## ndn-pit-entry.h (module 'ndnSIM'): bool ns3::ndn::pit::Entry::AreAllOutgoingInVain() const [member function]
6389 cls.add_method('AreAllOutgoingInVain',
6390 'bool',
6391 [],
6392 is_const=True)
6393 ## ndn-pit-entry.h (module 'ndnSIM'): bool ns3::ndn::pit::Entry::AreTherePromisingOutgoingFacesExcept(ns3::Ptr<ns3::ndn::Face> face) const [member function]
6394 cls.add_method('AreTherePromisingOutgoingFacesExcept',
6395 'bool',
6396 [param('ns3::Ptr< ns3::ndn::Face >', 'face')],
6397 is_const=True)
6398 ## ndn-pit-entry.h (module 'ndnSIM'): void ns3::ndn::pit::Entry::ClearIncoming() [member function]
6399 cls.add_method('ClearIncoming',
6400 'void',
6401 [],
6402 is_virtual=True)
6403 ## ndn-pit-entry.h (module 'ndnSIM'): void ns3::ndn::pit::Entry::ClearOutgoing() [member function]
6404 cls.add_method('ClearOutgoing',
6405 'void',
6406 [],
6407 is_virtual=True)
6408 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::Time const & ns3::ndn::pit::Entry::GetExpireTime() const [member function]
6409 cls.add_method('GetExpireTime',
6410 'ns3::Time const &',
6411 [],
6412 is_const=True)
6413 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::fib::Entry> ns3::ndn::pit::Entry::GetFibEntry() [member function]
6414 cls.add_method('GetFibEntry',
6415 'ns3::Ptr< ns3::ndn::fib::Entry >',
6416 [])
6417 ## 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]
6418 cls.add_method('GetIncoming',
6419 'std::set< ns3::ndn::pit::IncomingFace > const &',
6420 [],
6421 is_const=True)
Alexander Afanasyeveae83ee2013-03-15 15:01:10 -07006422 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::Interest const> ns3::ndn::pit::Entry::GetInterest() const [member function]
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07006423 cls.add_method('GetInterest',
Alexander Afanasyeveae83ee2013-03-15 15:01:10 -07006424 'ns3::Ptr< ns3::ndn::Interest const >',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07006425 [],
6426 is_const=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006427 ## ndn-pit-entry.h (module 'ndnSIM'): uint32_t ns3::ndn::pit::Entry::GetMaxRetxCount() const [member function]
6428 cls.add_method('GetMaxRetxCount',
6429 'uint32_t',
6430 [],
6431 is_const=True)
Alexander Afanasyevc202fd92012-09-03 21:46:00 -07006432 ## 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 -07006433 cls.add_method('GetOutgoing',
Alexander Afanasyevc202fd92012-09-03 21:46:00 -07006434 'std::set< ns3::ndn::pit::OutgoingFace > const &',
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006435 [],
6436 is_const=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07006437 ## ndn-pit-entry.h (module 'ndnSIM'): uint32_t ns3::ndn::pit::Entry::GetOutgoingCount() const [member function]
6438 cls.add_method('GetOutgoingCount',
6439 'uint32_t',
6440 [],
6441 is_const=True)
Alexander Afanasyevcfdc14f2013-03-15 14:38:44 -07006442 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::ndn::Name const & ns3::ndn::pit::Entry::GetPrefix() const [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006443 cls.add_method('GetPrefix',
Alexander Afanasyevcfdc14f2013-03-15 14:38:44 -07006444 'ns3::ndn::Name const &',
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006445 [],
6446 is_const=True)
6447 ## ndn-pit-entry.h (module 'ndnSIM'): void ns3::ndn::pit::Entry::IncreaseAllowedRetxCount() [member function]
6448 cls.add_method('IncreaseAllowedRetxCount',
6449 'void',
6450 [],
6451 is_virtual=True)
6452 ## ndn-pit-entry.h (module 'ndnSIM'): bool ns3::ndn::pit::Entry::IsNonceSeen(uint32_t nonce) const [member function]
6453 cls.add_method('IsNonceSeen',
6454 'bool',
6455 [param('uint32_t', 'nonce')],
6456 is_const=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07006457 ## ndn-pit-entry.h (module 'ndnSIM'): void ns3::ndn::pit::Entry::OffsetLifetime(ns3::Time const & offsetTime) [member function]
6458 cls.add_method('OffsetLifetime',
6459 'void',
6460 [param('ns3::Time const &', 'offsetTime')],
6461 is_virtual=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006462 ## ndn-pit-entry.h (module 'ndnSIM'): void ns3::ndn::pit::Entry::RemoveAllReferencesToFace(ns3::Ptr<ns3::ndn::Face> face) [member function]
6463 cls.add_method('RemoveAllReferencesToFace',
6464 'void',
6465 [param('ns3::Ptr< ns3::ndn::Face >', 'face')],
6466 is_virtual=True)
6467 ## ndn-pit-entry.h (module 'ndnSIM'): void ns3::ndn::pit::Entry::RemoveIncoming(ns3::Ptr<ns3::ndn::Face> face) [member function]
6468 cls.add_method('RemoveIncoming',
6469 'void',
6470 [param('ns3::Ptr< ns3::ndn::Face >', 'face')],
6471 is_virtual=True)
6472 ## ndn-pit-entry.h (module 'ndnSIM'): void ns3::ndn::pit::Entry::SetWaitingInVain(ns3::Ptr<ns3::ndn::Face> face) [member function]
6473 cls.add_method('SetWaitingInVain',
6474 'void',
6475 [param('ns3::Ptr< ns3::ndn::Face >', 'face')],
6476 is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07006477 ## 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 -07006478 cls.add_method('UpdateLifetime',
6479 'void',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07006480 [param('ns3::Time const &', 'lifetime')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006481 is_virtual=True)
6482 return
6483
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08006484def register_Ns3NdnPitEntryIsNotEmpty_methods(root_module, cls):
6485 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::ndn::pit::EntryIsNotEmpty::EntryIsNotEmpty() [constructor]
6486 cls.add_constructor([])
6487 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::ndn::pit::EntryIsNotEmpty::EntryIsNotEmpty(ns3::ndn::pit::EntryIsNotEmpty const & arg0) [copy constructor]
6488 cls.add_constructor([param('ns3::ndn::pit::EntryIsNotEmpty const &', 'arg0')])
6489 ## ndn-pit-entry.h (module 'ndnSIM'): bool ns3::ndn::pit::EntryIsNotEmpty::operator()(ns3::Ptr<ns3::ndn::pit::Entry> entry) [member operator]
6490 cls.add_method('operator()',
6491 'bool',
6492 [param('ns3::Ptr< ns3::ndn::pit::Entry >', 'entry')],
6493 custom_name='__call__')
6494 return
6495
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006496def register_Ns3NdnPitIncomingFace_methods(root_module, cls):
6497 cls.add_binary_comparison_operator('==')
6498 cls.add_binary_comparison_operator('<')
6499 ## ndn-pit-entry-incoming-face.h (module 'ndnSIM'): ns3::ndn::pit::IncomingFace::IncomingFace(ns3::ndn::pit::IncomingFace const & arg0) [copy constructor]
6500 cls.add_constructor([param('ns3::ndn::pit::IncomingFace const &', 'arg0')])
6501 ## ndn-pit-entry-incoming-face.h (module 'ndnSIM'): ns3::ndn::pit::IncomingFace::IncomingFace(ns3::Ptr<ns3::ndn::Face> face) [constructor]
6502 cls.add_constructor([param('ns3::Ptr< ns3::ndn::Face >', 'face')])
6503 ## ndn-pit-entry-incoming-face.h (module 'ndnSIM'): ns3::ndn::pit::IncomingFace::IncomingFace() [constructor]
6504 cls.add_constructor([])
6505 ## ndn-pit-entry-incoming-face.h (module 'ndnSIM'): ns3::ndn::pit::IncomingFace::m_arrivalTime [variable]
6506 cls.add_instance_attribute('m_arrivalTime', 'ns3::Time', is_const=False)
6507 ## ndn-pit-entry-incoming-face.h (module 'ndnSIM'): ns3::ndn::pit::IncomingFace::m_face [variable]
6508 cls.add_instance_attribute('m_face', 'ns3::Ptr< ns3::ndn::Face >', is_const=False)
6509 return
6510
6511def register_Ns3NdnPitOutgoingFace_methods(root_module, cls):
6512 cls.add_binary_comparison_operator('==')
6513 cls.add_binary_comparison_operator('<')
6514 ## ndn-pit-entry-outgoing-face.h (module 'ndnSIM'): ns3::ndn::pit::OutgoingFace::OutgoingFace(ns3::ndn::pit::OutgoingFace const & arg0) [copy constructor]
6515 cls.add_constructor([param('ns3::ndn::pit::OutgoingFace const &', 'arg0')])
6516 ## ndn-pit-entry-outgoing-face.h (module 'ndnSIM'): ns3::ndn::pit::OutgoingFace::OutgoingFace(ns3::Ptr<ns3::ndn::Face> face) [constructor]
6517 cls.add_constructor([param('ns3::Ptr< ns3::ndn::Face >', 'face')])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07006518 ## ndn-pit-entry-outgoing-face.h (module 'ndnSIM'): ns3::ndn::pit::OutgoingFace::OutgoingFace() [constructor]
6519 cls.add_constructor([])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006520 ## ndn-pit-entry-outgoing-face.h (module 'ndnSIM'): void ns3::ndn::pit::OutgoingFace::UpdateOnRetransmit() [member function]
6521 cls.add_method('UpdateOnRetransmit',
6522 'void',
6523 [])
6524 ## ndn-pit-entry-outgoing-face.h (module 'ndnSIM'): ns3::ndn::pit::OutgoingFace::m_face [variable]
6525 cls.add_instance_attribute('m_face', 'ns3::Ptr< ns3::ndn::Face >', is_const=False)
6526 ## ndn-pit-entry-outgoing-face.h (module 'ndnSIM'): ns3::ndn::pit::OutgoingFace::m_retxCount [variable]
6527 cls.add_instance_attribute('m_retxCount', 'uint32_t', is_const=False)
6528 ## ndn-pit-entry-outgoing-face.h (module 'ndnSIM'): ns3::ndn::pit::OutgoingFace::m_sendTime [variable]
6529 cls.add_instance_attribute('m_sendTime', 'ns3::Time', is_const=False)
6530 ## ndn-pit-entry-outgoing-face.h (module 'ndnSIM'): ns3::ndn::pit::OutgoingFace::m_waitingInVain [variable]
6531 cls.add_instance_attribute('m_waitingInVain', 'bool', is_const=False)
6532 return
6533
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006534def register_Ns3NdnPitI_face_methods(root_module, cls):
6535 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::ndn::pit::i_face::i_face() [constructor]
6536 cls.add_constructor([])
6537 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::ndn::pit::i_face::i_face(ns3::ndn::pit::i_face const & arg0) [copy constructor]
6538 cls.add_constructor([param('ns3::ndn::pit::i_face const &', 'arg0')])
6539 return
6540
6541def register_Ns3NdnPitI_retx_methods(root_module, cls):
6542 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::ndn::pit::i_retx::i_retx() [constructor]
6543 cls.add_constructor([])
6544 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::ndn::pit::i_retx::i_retx(ns3::ndn::pit::i_retx const & arg0) [copy constructor]
6545 cls.add_constructor([param('ns3::ndn::pit::i_retx const &', 'arg0')])
6546 return
6547
Alexander Afanasyeva6cc9102013-07-15 18:44:24 -07006548def register_Ns3NdnWireCcnbData_methods(root_module, cls):
6549 ## ccnb.h (module 'ndnSIM'): ns3::ndn::wire::ccnb::Data::Data(ns3::ndn::wire::ccnb::Data const & arg0) [copy constructor]
6550 cls.add_constructor([param('ns3::ndn::wire::ccnb::Data const &', 'arg0')])
6551 ## ccnb.h (module 'ndnSIM'): ns3::ndn::wire::ccnb::Data::Data() [constructor]
6552 cls.add_constructor([])
6553 ## ccnb.h (module 'ndnSIM'): ns3::ndn::wire::ccnb::Data::Data(ns3::Ptr<ns3::ndn::ContentObject> data) [constructor]
6554 cls.add_constructor([param('ns3::Ptr< ns3::ndn::ContentObject >', 'data')])
6555 ## ccnb.h (module 'ndnSIM'): uint32_t ns3::ndn::wire::ccnb::Data::Deserialize(ns3::Buffer::Iterator start) [member function]
6556 cls.add_method('Deserialize',
6557 'uint32_t',
6558 [param('ns3::Buffer::Iterator', 'start')],
6559 is_virtual=True)
6560 ## ccnb.h (module 'ndnSIM'): static ns3::Ptr<ns3::ndn::ContentObject> ns3::ndn::wire::ccnb::Data::FromWire(ns3::Ptr<ns3::Packet> packet) [member function]
6561 cls.add_method('FromWire',
6562 'ns3::Ptr< ns3::ndn::ContentObject >',
6563 [param('ns3::Ptr< ns3::Packet >', 'packet')],
6564 is_static=True)
6565 ## ccnb.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::ContentObject> ns3::ndn::wire::ccnb::Data::GetData() [member function]
6566 cls.add_method('GetData',
6567 'ns3::Ptr< ns3::ndn::ContentObject >',
6568 [])
6569 ## ccnb.h (module 'ndnSIM'): ns3::TypeId ns3::ndn::wire::ccnb::Data::GetInstanceTypeId() const [member function]
6570 cls.add_method('GetInstanceTypeId',
6571 'ns3::TypeId',
6572 [],
6573 is_const=True, is_virtual=True)
6574 ## ccnb.h (module 'ndnSIM'): uint32_t ns3::ndn::wire::ccnb::Data::GetSerializedSize() const [member function]
6575 cls.add_method('GetSerializedSize',
6576 'uint32_t',
6577 [],
6578 is_const=True, is_virtual=True)
6579 ## ccnb.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::wire::ccnb::Data::GetTypeId() [member function]
6580 cls.add_method('GetTypeId',
6581 'ns3::TypeId',
6582 [],
6583 is_static=True)
6584 ## ccnb.h (module 'ndnSIM'): void ns3::ndn::wire::ccnb::Data::Print(std::ostream & os) const [member function]
6585 cls.add_method('Print',
6586 'void',
6587 [param('std::ostream &', 'os')],
6588 is_const=True, is_virtual=True)
6589 ## ccnb.h (module 'ndnSIM'): void ns3::ndn::wire::ccnb::Data::Serialize(ns3::Buffer::Iterator start) const [member function]
6590 cls.add_method('Serialize',
6591 'void',
6592 [param('ns3::Buffer::Iterator', 'start')],
6593 is_const=True, is_virtual=True)
6594 ## ccnb.h (module 'ndnSIM'): static ns3::Ptr<ns3::Packet> ns3::ndn::wire::ccnb::Data::ToWire(ns3::Ptr<ns3::ndn::ContentObject const> data) [member function]
6595 cls.add_method('ToWire',
6596 'ns3::Ptr< ns3::Packet >',
6597 [param('ns3::Ptr< ns3::ndn::ContentObject const >', 'data')],
6598 is_static=True)
6599 return
6600
6601def register_Ns3NdnWireCcnbInterest_methods(root_module, cls):
6602 ## ccnb.h (module 'ndnSIM'): ns3::ndn::wire::ccnb::Interest::Interest(ns3::ndn::wire::ccnb::Interest const & arg0) [copy constructor]
6603 cls.add_constructor([param('ns3::ndn::wire::ccnb::Interest const &', 'arg0')])
6604 ## ccnb.h (module 'ndnSIM'): ns3::ndn::wire::ccnb::Interest::Interest() [constructor]
6605 cls.add_constructor([])
6606 ## ccnb.h (module 'ndnSIM'): ns3::ndn::wire::ccnb::Interest::Interest(ns3::Ptr<ns3::ndn::Interest> interest) [constructor]
6607 cls.add_constructor([param('ns3::Ptr< ns3::ndn::Interest >', 'interest')])
6608 ## ccnb.h (module 'ndnSIM'): uint32_t ns3::ndn::wire::ccnb::Interest::Deserialize(ns3::Buffer::Iterator start) [member function]
6609 cls.add_method('Deserialize',
6610 'uint32_t',
6611 [param('ns3::Buffer::Iterator', 'start')],
6612 is_virtual=True)
6613 ## ccnb.h (module 'ndnSIM'): static ns3::Ptr<ns3::ndn::Interest> ns3::ndn::wire::ccnb::Interest::FromWire(ns3::Ptr<ns3::Packet> packet) [member function]
6614 cls.add_method('FromWire',
6615 'ns3::Ptr< ns3::ndn::Interest >',
6616 [param('ns3::Ptr< ns3::Packet >', 'packet')],
6617 is_static=True)
6618 ## ccnb.h (module 'ndnSIM'): ns3::TypeId ns3::ndn::wire::ccnb::Interest::GetInstanceTypeId() const [member function]
6619 cls.add_method('GetInstanceTypeId',
6620 'ns3::TypeId',
6621 [],
6622 is_const=True, is_virtual=True)
6623 ## ccnb.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::Interest> ns3::ndn::wire::ccnb::Interest::GetInterest() [member function]
6624 cls.add_method('GetInterest',
6625 'ns3::Ptr< ns3::ndn::Interest >',
6626 [])
6627 ## ccnb.h (module 'ndnSIM'): uint32_t ns3::ndn::wire::ccnb::Interest::GetSerializedSize() const [member function]
6628 cls.add_method('GetSerializedSize',
6629 'uint32_t',
6630 [],
6631 is_const=True, is_virtual=True)
6632 ## ccnb.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::wire::ccnb::Interest::GetTypeId() [member function]
6633 cls.add_method('GetTypeId',
6634 'ns3::TypeId',
6635 [],
6636 is_static=True)
6637 ## ccnb.h (module 'ndnSIM'): void ns3::ndn::wire::ccnb::Interest::Print(std::ostream & os) const [member function]
6638 cls.add_method('Print',
6639 'void',
6640 [param('std::ostream &', 'os')],
6641 is_const=True, is_virtual=True)
6642 ## ccnb.h (module 'ndnSIM'): void ns3::ndn::wire::ccnb::Interest::Serialize(ns3::Buffer::Iterator start) const [member function]
6643 cls.add_method('Serialize',
6644 'void',
6645 [param('ns3::Buffer::Iterator', 'start')],
6646 is_const=True, is_virtual=True)
6647 ## ccnb.h (module 'ndnSIM'): static ns3::Ptr<ns3::Packet> ns3::ndn::wire::ccnb::Interest::ToWire(ns3::Ptr<ns3::ndn::Interest const> interest) [member function]
6648 cls.add_method('ToWire',
6649 'ns3::Ptr< ns3::Packet >',
6650 [param('ns3::Ptr< ns3::ndn::Interest const >', 'interest')],
6651 is_static=True)
6652 return
6653
6654def register_Ns3NdnWireNdnSIMData_methods(root_module, cls):
6655 ## ndnsim.h (module 'ndnSIM'): ns3::ndn::wire::ndnSIM::Data::Data(ns3::ndn::wire::ndnSIM::Data const & arg0) [copy constructor]
6656 cls.add_constructor([param('ns3::ndn::wire::ndnSIM::Data const &', 'arg0')])
6657 ## ndnsim.h (module 'ndnSIM'): ns3::ndn::wire::ndnSIM::Data::Data() [constructor]
6658 cls.add_constructor([])
6659 ## ndnsim.h (module 'ndnSIM'): ns3::ndn::wire::ndnSIM::Data::Data(ns3::Ptr<ns3::ndn::ContentObject> data) [constructor]
6660 cls.add_constructor([param('ns3::Ptr< ns3::ndn::ContentObject >', 'data')])
6661 ## ndnsim.h (module 'ndnSIM'): uint32_t ns3::ndn::wire::ndnSIM::Data::Deserialize(ns3::Buffer::Iterator start) [member function]
6662 cls.add_method('Deserialize',
6663 'uint32_t',
6664 [param('ns3::Buffer::Iterator', 'start')],
6665 is_virtual=True)
6666 ## ndnsim.h (module 'ndnSIM'): static ns3::Ptr<ns3::ndn::ContentObject> ns3::ndn::wire::ndnSIM::Data::FromWire(ns3::Ptr<ns3::Packet> packet) [member function]
6667 cls.add_method('FromWire',
6668 'ns3::Ptr< ns3::ndn::ContentObject >',
6669 [param('ns3::Ptr< ns3::Packet >', 'packet')],
6670 is_static=True)
6671 ## ndnsim.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::ContentObject> ns3::ndn::wire::ndnSIM::Data::GetData() [member function]
6672 cls.add_method('GetData',
6673 'ns3::Ptr< ns3::ndn::ContentObject >',
6674 [])
6675 ## ndnsim.h (module 'ndnSIM'): ns3::TypeId ns3::ndn::wire::ndnSIM::Data::GetInstanceTypeId() const [member function]
6676 cls.add_method('GetInstanceTypeId',
6677 'ns3::TypeId',
6678 [],
6679 is_const=True, is_virtual=True)
6680 ## ndnsim.h (module 'ndnSIM'): uint32_t ns3::ndn::wire::ndnSIM::Data::GetSerializedSize() const [member function]
6681 cls.add_method('GetSerializedSize',
6682 'uint32_t',
6683 [],
6684 is_const=True, is_virtual=True)
6685 ## ndnsim.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::wire::ndnSIM::Data::GetTypeId() [member function]
6686 cls.add_method('GetTypeId',
6687 'ns3::TypeId',
6688 [],
6689 is_static=True)
6690 ## ndnsim.h (module 'ndnSIM'): void ns3::ndn::wire::ndnSIM::Data::Print(std::ostream & os) const [member function]
6691 cls.add_method('Print',
6692 'void',
6693 [param('std::ostream &', 'os')],
6694 is_const=True, is_virtual=True)
6695 ## ndnsim.h (module 'ndnSIM'): void ns3::ndn::wire::ndnSIM::Data::Serialize(ns3::Buffer::Iterator start) const [member function]
6696 cls.add_method('Serialize',
6697 'void',
6698 [param('ns3::Buffer::Iterator', 'start')],
6699 is_const=True, is_virtual=True)
6700 ## ndnsim.h (module 'ndnSIM'): static ns3::Ptr<ns3::Packet> ns3::ndn::wire::ndnSIM::Data::ToWire(ns3::Ptr<ns3::ndn::ContentObject const> data) [member function]
6701 cls.add_method('ToWire',
6702 'ns3::Ptr< ns3::Packet >',
6703 [param('ns3::Ptr< ns3::ndn::ContentObject const >', 'data')],
6704 is_static=True)
6705 return
6706
6707def register_Ns3NdnWireNdnSIMInterest_methods(root_module, cls):
6708 ## ndnsim.h (module 'ndnSIM'): ns3::ndn::wire::ndnSIM::Interest::Interest(ns3::ndn::wire::ndnSIM::Interest const & arg0) [copy constructor]
6709 cls.add_constructor([param('ns3::ndn::wire::ndnSIM::Interest const &', 'arg0')])
6710 ## ndnsim.h (module 'ndnSIM'): ns3::ndn::wire::ndnSIM::Interest::Interest() [constructor]
6711 cls.add_constructor([])
6712 ## ndnsim.h (module 'ndnSIM'): ns3::ndn::wire::ndnSIM::Interest::Interest(ns3::Ptr<ns3::ndn::Interest> interest) [constructor]
6713 cls.add_constructor([param('ns3::Ptr< ns3::ndn::Interest >', 'interest')])
6714 ## ndnsim.h (module 'ndnSIM'): uint32_t ns3::ndn::wire::ndnSIM::Interest::Deserialize(ns3::Buffer::Iterator start) [member function]
6715 cls.add_method('Deserialize',
6716 'uint32_t',
6717 [param('ns3::Buffer::Iterator', 'start')],
6718 is_virtual=True)
6719 ## ndnsim.h (module 'ndnSIM'): static ns3::Ptr<ns3::ndn::Interest> ns3::ndn::wire::ndnSIM::Interest::FromWire(ns3::Ptr<ns3::Packet> packet) [member function]
6720 cls.add_method('FromWire',
6721 'ns3::Ptr< ns3::ndn::Interest >',
6722 [param('ns3::Ptr< ns3::Packet >', 'packet')],
6723 is_static=True)
6724 ## ndnsim.h (module 'ndnSIM'): ns3::TypeId ns3::ndn::wire::ndnSIM::Interest::GetInstanceTypeId() const [member function]
6725 cls.add_method('GetInstanceTypeId',
6726 'ns3::TypeId',
6727 [],
6728 is_const=True, is_virtual=True)
6729 ## ndnsim.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::Interest> ns3::ndn::wire::ndnSIM::Interest::GetInterest() [member function]
6730 cls.add_method('GetInterest',
6731 'ns3::Ptr< ns3::ndn::Interest >',
6732 [])
6733 ## ndnsim.h (module 'ndnSIM'): uint32_t ns3::ndn::wire::ndnSIM::Interest::GetSerializedSize() const [member function]
6734 cls.add_method('GetSerializedSize',
6735 'uint32_t',
6736 [],
6737 is_const=True, is_virtual=True)
6738 ## ndnsim.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::wire::ndnSIM::Interest::GetTypeId() [member function]
6739 cls.add_method('GetTypeId',
6740 'ns3::TypeId',
6741 [],
6742 is_static=True)
6743 ## ndnsim.h (module 'ndnSIM'): void ns3::ndn::wire::ndnSIM::Interest::Print(std::ostream & os) const [member function]
6744 cls.add_method('Print',
6745 'void',
6746 [param('std::ostream &', 'os')],
6747 is_const=True, is_virtual=True)
6748 ## ndnsim.h (module 'ndnSIM'): void ns3::ndn::wire::ndnSIM::Interest::Serialize(ns3::Buffer::Iterator start) const [member function]
6749 cls.add_method('Serialize',
6750 'void',
6751 [param('ns3::Buffer::Iterator', 'start')],
6752 is_const=True, is_virtual=True)
6753 ## ndnsim.h (module 'ndnSIM'): static ns3::Ptr<ns3::Packet> ns3::ndn::wire::ndnSIM::Interest::ToWire(ns3::Ptr<ns3::ndn::Interest const> interest) [member function]
6754 cls.add_method('ToWire',
6755 'ns3::Ptr< ns3::Packet >',
6756 [param('ns3::Ptr< ns3::ndn::Interest const >', 'interest')],
6757 is_static=True)
6758 return
6759
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08006760def register_functions(root_module):
6761 module = root_module
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08006762 register_functions_ns3_FatalImpl(module.get_submodule('FatalImpl'), root_module)
6763 register_functions_ns3_internal(module.get_submodule('internal'), root_module)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006764 register_functions_ns3_ndn(module.get_submodule('ndn'), root_module)
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08006765 return
6766
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08006767def register_functions_ns3_FatalImpl(module, root_module):
6768 return
6769
6770def register_functions_ns3_internal(module, root_module):
6771 return
6772
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006773def register_functions_ns3_ndn(module, root_module):
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08006774 ## ndn-name.h (module 'ndnSIM'): extern ns3::Ptr<ns3::AttributeChecker const> ns3::ndn::MakeNameChecker() [free function]
Alexander Afanasyev32c07562013-02-01 12:58:43 -08006775 module.add_function('MakeNameChecker',
6776 'ns3::Ptr< ns3::AttributeChecker const >',
6777 [])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006778 register_functions_ns3_ndn_cs(module.get_submodule('cs'), root_module)
6779 register_functions_ns3_ndn_fib(module.get_submodule('fib'), root_module)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07006780 register_functions_ns3_ndn_fw(module.get_submodule('fw'), root_module)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006781 register_functions_ns3_ndn_pit(module.get_submodule('pit'), root_module)
Alexander Afanasyeva6cc9102013-07-15 18:44:24 -07006782 register_functions_ns3_ndn_wire(module.get_submodule('wire'), root_module)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006783 return
6784
6785def register_functions_ns3_ndn_cs(module, root_module):
6786 return
6787
6788def register_functions_ns3_ndn_fib(module, root_module):
6789 return
6790
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07006791def register_functions_ns3_ndn_fw(module, root_module):
6792 return
6793
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006794def register_functions_ns3_ndn_pit(module, root_module):
6795 return
6796
Alexander Afanasyeva6cc9102013-07-15 18:44:24 -07006797def register_functions_ns3_ndn_wire(module, root_module):
6798 register_functions_ns3_ndn_wire_ccnb(module.get_submodule('ccnb'), root_module)
6799 register_functions_ns3_ndn_wire_ndnSIM(module.get_submodule('ndnSIM'), root_module)
6800 return
6801
6802def register_functions_ns3_ndn_wire_ccnb(module, root_module):
6803 return
6804
6805def register_functions_ns3_ndn_wire_ndnSIM(module, root_module):
6806 return
6807
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08006808def main():
6809 out = FileCodeSink(sys.stdout)
6810 root_module = module_init()
6811 register_types(root_module)
6812 register_methods(root_module)
6813 register_functions(root_module)
6814 root_module.generate(out)
6815
6816if __name__ == '__main__':
6817 main()
6818