blob: 4255339e67eb495e4488d4af15f8a131eb7a3a7d [file] [log] [blame]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07001from pybindgen import Module, FileCodeSink, param, retval, cppclass, typehandlers
2
3
4import pybindgen.settings
5import warnings
6
7class ErrorHandler(pybindgen.settings.ErrorHandler):
8 def handle_error(self, wrapper, exception, traceback_):
9 warnings.warn("exception %r in wrapper %s" % (exception, wrapper))
10 return True
11pybindgen.settings.error_handler = ErrorHandler()
12
13
14import sys
15
16def module_init():
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -070017 root_module = Module('ns.ndnSIM', cpp_namespace='::ns3')
Alexander Afanasyev381dea02011-11-03 08:33:26 -070018 return root_module
19
20def register_types(module):
21 root_module = module.get_root()
22
Alexander Afanasyev381dea02011-11-03 08:33:26 -070023 ## address.h (module 'network'): ns3::Address [class]
24 module.add_class('Address', import_from_module='ns.network')
25 ## address.h (module 'network'): ns3::Address::MaxSize_e [enumeration]
26 module.add_enum('MaxSize_e', ['MAX_SIZE'], outer_class=root_module['ns3::Address'], import_from_module='ns.network')
27 ## application-container.h (module 'network'): ns3::ApplicationContainer [class]
28 module.add_class('ApplicationContainer', import_from_module='ns.network')
Alexander Afanasyev381dea02011-11-03 08:33:26 -070029 ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList [class]
30 module.add_class('AttributeConstructionList', import_from_module='ns.core')
31 ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item [struct]
32 module.add_class('Item', import_from_module='ns.core', outer_class=root_module['ns3::AttributeConstructionList'])
33 ## buffer.h (module 'network'): ns3::Buffer [class]
34 module.add_class('Buffer', import_from_module='ns.network')
35 ## buffer.h (module 'network'): ns3::Buffer::Iterator [class]
36 module.add_class('Iterator', import_from_module='ns.network', outer_class=root_module['ns3::Buffer'])
37 ## packet.h (module 'network'): ns3::ByteTagIterator [class]
38 module.add_class('ByteTagIterator', import_from_module='ns.network')
39 ## packet.h (module 'network'): ns3::ByteTagIterator::Item [class]
40 module.add_class('Item', import_from_module='ns.network', outer_class=root_module['ns3::ByteTagIterator'])
41 ## byte-tag-list.h (module 'network'): ns3::ByteTagList [class]
42 module.add_class('ByteTagList', import_from_module='ns.network')
43 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator [class]
44 module.add_class('Iterator', import_from_module='ns.network', outer_class=root_module['ns3::ByteTagList'])
45 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item [struct]
46 module.add_class('Item', import_from_module='ns.network', outer_class=root_module['ns3::ByteTagList::Iterator'])
47 ## callback.h (module 'core'): ns3::CallbackBase [class]
48 module.add_class('CallbackBase', import_from_module='ns.core')
Alexander Afanasyev381dea02011-11-03 08:33:26 -070049 ## 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 Afanasyev381dea02011-11-03 08:33:26 -070065 ## 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 Afanasyev381dea02011-11-03 08:33:26 -070097 ## 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 Afanasyev381dea02011-11-03 08:33:26 -0700101 ## 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 Afanasyev381dea02011-11-03 08:33:26 -0700107 ## 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 Afanasyev381dea02011-11-03 08:33:26 -0700123 ## 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 Afanasyev381dea02011-11-03 08:33:26 -0700127 ## 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 Afanasyev381dea02011-11-03 08:33:26 -0700141 ## 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 Afanasyev381dea02011-11-03 08:33:26 -0700149 ## 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 Afanasyev381dea02011-11-03 08:33:26 -0700155 ## 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 Afanasyev381dea02011-11-03 08:33:26 -0700163 ## 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 Afanasyev381dea02011-11-03 08:33:26 -0700167 ## 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 Afanasyev381dea02011-11-03 08:33:26 -0700171 ## 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 Afanasyev381dea02011-11-03 08:33:26 -0700185 ## 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 Afanasyev381dea02011-11-03 08:33:26 -0700195 ## 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 Afanasyev381dea02011-11-03 08:33:26 -0700201 ## 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 Afanasyev381dea02011-11-03 08:33:26 -0700213 ## callback.h (module 'core'): ns3::CallbackChecker [class]
214 module.add_class('CallbackChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker'])
215 ## callback.h (module 'core'): ns3::CallbackImplBase [class]
216 module.add_class('CallbackImplBase', import_from_module='ns.core', parent=root_module['ns3::SimpleRefCount< ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> >'])
217 ## callback.h (module 'core'): ns3::CallbackValue [class]
218 module.add_class('CallbackValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -0700219 ## double.h (module 'core'): ns3::DoubleValue [class]
220 module.add_class('DoubleValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700221 ## attribute.h (module 'core'): ns3::EmptyAttributeValue [class]
222 module.add_class('EmptyAttributeValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -0700223 ## enum.h (module 'core'): ns3::EnumChecker [class]
224 module.add_class('EnumChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker'])
225 ## enum.h (module 'core'): ns3::EnumValue [class]
226 module.add_class('EnumValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700227 ## event-impl.h (module 'core'): ns3::EventImpl [class]
228 module.add_class('EventImpl', import_from_module='ns.core', parent=root_module['ns3::SimpleRefCount< ns3::EventImpl, ns3::empty, ns3::DefaultDeleter<ns3::EventImpl> >'])
229 ## integer.h (module 'core'): ns3::IntegerValue [class]
230 module.add_class('IntegerValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
231 ## ipv4-address.h (module 'network'): ns3::Ipv4AddressChecker [class]
232 module.add_class('Ipv4AddressChecker', import_from_module='ns.network', parent=root_module['ns3::AttributeChecker'])
233 ## ipv4-address.h (module 'network'): ns3::Ipv4AddressValue [class]
234 module.add_class('Ipv4AddressValue', import_from_module='ns.network', parent=root_module['ns3::AttributeValue'])
235 ## ipv4-address.h (module 'network'): ns3::Ipv4MaskChecker [class]
236 module.add_class('Ipv4MaskChecker', import_from_module='ns.network', parent=root_module['ns3::AttributeChecker'])
237 ## ipv4-address.h (module 'network'): ns3::Ipv4MaskValue [class]
238 module.add_class('Ipv4MaskValue', import_from_module='ns.network', parent=root_module['ns3::AttributeValue'])
239 ## ipv6-address.h (module 'network'): ns3::Ipv6AddressChecker [class]
240 module.add_class('Ipv6AddressChecker', import_from_module='ns.network', parent=root_module['ns3::AttributeChecker'])
241 ## ipv6-address.h (module 'network'): ns3::Ipv6AddressValue [class]
242 module.add_class('Ipv6AddressValue', import_from_module='ns.network', parent=root_module['ns3::AttributeValue'])
243 ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixChecker [class]
244 module.add_class('Ipv6PrefixChecker', import_from_module='ns.network', parent=root_module['ns3::AttributeChecker'])
245 ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixValue [class]
246 module.add_class('Ipv6PrefixValue', import_from_module='ns.network', parent=root_module['ns3::AttributeValue'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700247 ## net-device.h (module 'network'): ns3::NetDevice [class]
248 module.add_class('NetDevice', import_from_module='ns.network', parent=root_module['ns3::Object'])
249 ## net-device.h (module 'network'): ns3::NetDevice::PacketType [enumeration]
250 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')
251 ## nix-vector.h (module 'network'): ns3::NixVector [class]
252 module.add_class('NixVector', import_from_module='ns.network', parent=root_module['ns3::SimpleRefCount< ns3::NixVector, ns3::empty, ns3::DefaultDeleter<ns3::NixVector> >'])
253 ## node.h (module 'network'): ns3::Node [class]
254 module.add_class('Node', import_from_module='ns.network', parent=root_module['ns3::Object'])
255 ## object-factory.h (module 'core'): ns3::ObjectFactoryChecker [class]
256 module.add_class('ObjectFactoryChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker'])
257 ## object-factory.h (module 'core'): ns3::ObjectFactoryValue [class]
258 module.add_class('ObjectFactoryValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700259 ## packet.h (module 'network'): ns3::Packet [class]
260 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 -0700261 ## random-variable.h (module 'core'): ns3::RandomVariableChecker [class]
262 module.add_class('RandomVariableChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker'])
263 ## random-variable.h (module 'core'): ns3::RandomVariableValue [class]
264 module.add_class('RandomVariableValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
265 ## rocketfuel-weights-reader.h (module 'ndnSIM'): ns3::RocketfuelWeightsReader [class]
266 module.add_class('RocketfuelWeightsReader', parent=root_module['ns3::AnnotatedTopologyReader'])
267 ## rocketfuel-weights-reader.h (module 'ndnSIM'): ns3::RocketfuelWeightsReader [enumeration]
268 module.add_enum('', ['LINKS', 'WEIGHTS', 'LATENCIES', 'POSITIONS'], outer_class=root_module['ns3::RocketfuelWeightsReader'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700269 ## nstime.h (module 'core'): ns3::TimeChecker [class]
270 module.add_class('TimeChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker'])
271 ## nstime.h (module 'core'): ns3::TimeValue [class]
272 module.add_class('TimeValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
273 ## type-id.h (module 'core'): ns3::TypeIdChecker [class]
274 module.add_class('TypeIdChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker'])
275 ## type-id.h (module 'core'): ns3::TypeIdValue [class]
276 module.add_class('TypeIdValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -0700277 ## uinteger.h (module 'core'): ns3::UintegerValue [class]
278 module.add_class('UintegerValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700279 ## address.h (module 'network'): ns3::AddressChecker [class]
280 module.add_class('AddressChecker', import_from_module='ns.network', parent=root_module['ns3::AttributeChecker'])
281 ## address.h (module 'network'): ns3::AddressValue [class]
282 module.add_class('AddressValue', import_from_module='ns.network', parent=root_module['ns3::AttributeValue'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700283 module.add_container('std::map< std::string, std::string >', ('std::string', 'std::string'), container_type='map')
284 module.add_container('std::list< ns3::TopologyReader::Link >', 'ns3::TopologyReader::Link', container_type='list')
Alexander Afanasyev0e4ae8e2013-03-12 15:59:18 -0700285 typehandlers.add_type_alias('ns3::SequenceNumber< short unsigned int, short int >', 'ns3::SequenceNumber16')
286 typehandlers.add_type_alias('ns3::SequenceNumber< short unsigned int, short int >*', 'ns3::SequenceNumber16*')
287 typehandlers.add_type_alias('ns3::SequenceNumber< short unsigned int, short int >&', 'ns3::SequenceNumber16&')
288 typehandlers.add_type_alias('ns3::SequenceNumber< unsigned int, int >', 'ns3::SequenceNumber32')
289 typehandlers.add_type_alias('ns3::SequenceNumber< unsigned int, int >*', 'ns3::SequenceNumber32*')
290 typehandlers.add_type_alias('ns3::SequenceNumber< unsigned int, int >&', 'ns3::SequenceNumber32&')
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700291 typehandlers.add_type_alias('ns3::RngSeedManager', 'ns3::SeedManager')
292 typehandlers.add_type_alias('ns3::RngSeedManager*', 'ns3::SeedManager*')
293 typehandlers.add_type_alias('ns3::RngSeedManager&', 'ns3::SeedManager&')
294 module.add_typedef(root_module['ns3::RngSeedManager'], 'SeedManager')
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700295
296 ## Register a nested module for the namespace FatalImpl
297
298 nested_module = module.add_cpp_namespace('FatalImpl')
299 register_types_ns3_FatalImpl(nested_module)
300
301
302 ## Register a nested module for the namespace internal
303
304 nested_module = module.add_cpp_namespace('internal')
305 register_types_ns3_internal(nested_module)
306
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700307
308 ## Register a nested module for the namespace ndn
309
310 nested_module = module.add_cpp_namespace('ndn')
311 register_types_ns3_ndn(nested_module)
312
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700313
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700314def register_types_ns3_FatalImpl(module):
315 root_module = module.get_root()
316
317
318def register_types_ns3_internal(module):
319 root_module = module.get_root()
320
321
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700322def register_types_ns3_ndn(module):
323 root_module = module.get_root()
324
325 ## ndn-app.h (module 'ndnSIM'): ns3::ndn::App [class]
326 module.add_class('App', parent=root_module['ns3::Application'])
327 ## ndn-app-helper.h (module 'ndnSIM'): ns3::ndn::AppHelper [class]
328 module.add_class('AppHelper')
Alexander Afanasyeveae83ee2013-03-15 15:01:10 -0700329 ## ndn-content-object.h (module 'ndnSIM'): ns3::ndn::ContentObject [class]
Alexander Afanasyev858d5312013-07-10 18:50:18 -0700330 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 -0700331 ## ndn-content-object.h (module 'ndnSIM'): ns3::ndn::ContentObjectException [class]
332 module.add_class('ContentObjectException')
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700333 ## ndn-content-store.h (module 'ndnSIM'): ns3::ndn::ContentStore [class]
334 module.add_class('ContentStore', parent=root_module['ns3::Object'])
335 ## ndn-face.h (module 'ndnSIM'): ns3::ndn::Face [class]
336 module.add_class('Face', parent=root_module['ns3::Object'])
Alexander Afanasyev858d5312013-07-10 18:50:18 -0700337 ## ndn-face.h (module 'ndnSIM'): ns3::ndn::Face::Flags [enumeration]
338 module.add_enum('Flags', ['APPLICATION'], outer_class=root_module['ns3::ndn::Face'])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700339 ## ndn-face-container.h (module 'ndnSIM'): ns3::ndn::FaceContainer [class]
340 module.add_class('FaceContainer', parent=root_module['ns3::SimpleRefCount< ns3::ndn::FaceContainer, ns3::empty, ns3::DefaultDeleter<ns3::ndn::FaceContainer> >'])
341 ## ndn-fib.h (module 'ndnSIM'): ns3::ndn::Fib [class]
342 module.add_class('Fib', parent=root_module['ns3::Object'])
343 ## ndn-forwarding-strategy.h (module 'ndnSIM'): ns3::ndn::ForwardingStrategy [class]
344 module.add_class('ForwardingStrategy', parent=root_module['ns3::Object'])
345 ## ndn-global-routing-helper.h (module 'ndnSIM'): ns3::ndn::GlobalRoutingHelper [class]
346 module.add_class('GlobalRoutingHelper')
347 ## ndn-header-helper.h (module 'ndnSIM'): ns3::ndn::HeaderHelper [class]
348 module.add_class('HeaderHelper')
349 ## ndn-header-helper.h (module 'ndnSIM'): ns3::ndn::HeaderHelper::Type [enumeration]
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -0800350 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 -0700351 ## ndn-interest.h (module 'ndnSIM'): ns3::ndn::Interest [class]
Alexander Afanasyev858d5312013-07-10 18:50:18 -0700352 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 -0700353 ## ndn-interest.h (module 'ndnSIM'): ns3::ndn::Interest [enumeration]
354 module.add_enum('', ['NORMAL_INTEREST', 'NACK_LOOP', 'NACK_CONGESTION', 'NACK_GIVEUP_PIT'], outer_class=root_module['ns3::ndn::Interest'])
355 ## ndn-interest.h (module 'ndnSIM'): ns3::ndn::InterestException [class]
356 module.add_class('InterestException')
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700357 ## ndn-l3-protocol.h (module 'ndnSIM'): ns3::ndn::L3Protocol [class]
358 module.add_class('L3Protocol', parent=root_module['ns3::Object'])
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -0700359 ## ndn-limits.h (module 'ndnSIM'): ns3::ndn::Limits [class]
360 module.add_class('Limits', parent=root_module['ns3::Object'])
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -0800361 ## ndn-name.h (module 'ndnSIM'): ns3::ndn::Name [class]
Alexander Afanasyev32c07562013-02-01 12:58:43 -0800362 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 -0800363 ## ndn-name.h (module 'ndnSIM'): ns3::ndn::NameChecker [class]
Alexander Afanasyev32c07562013-02-01 12:58:43 -0800364 module.add_class('NameChecker', parent=root_module['ns3::AttributeChecker'])
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -0800365 ## ndn-name.h (module 'ndnSIM'): ns3::ndn::NameValue [class]
Alexander Afanasyev32c07562013-02-01 12:58:43 -0800366 module.add_class('NameValue', parent=root_module['ns3::AttributeValue'])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700367 ## ndn-net-device-face.h (module 'ndnSIM'): ns3::ndn::NetDeviceFace [class]
368 module.add_class('NetDeviceFace', parent=root_module['ns3::ndn::Face'])
369 ## ndn-pit.h (module 'ndnSIM'): ns3::ndn::Pit [class]
370 module.add_class('Pit', parent=root_module['ns3::Object'])
Alexander Afanasyev0e4ae8e2013-03-12 15:59:18 -0700371 ## ndn-rtt-estimator.h (module 'ndnSIM'): ns3::ndn::RttEstimator [class]
372 module.add_class('RttEstimator', parent=root_module['ns3::Object'])
373 ## ndn-rtt-estimator.h (module 'ndnSIM'): ns3::ndn::RttHistory [class]
374 module.add_class('RttHistory')
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700375 ## ndn-stack-helper.h (module 'ndnSIM'): ns3::ndn::StackHelper [class]
376 module.add_class('StackHelper')
377 ## ndn-header-helper.h (module 'ndnSIM'): ns3::ndn::UnknownHeaderException [class]
378 module.add_class('UnknownHeaderException')
Alexander Afanasyeva4e74282013-07-11 15:23:20 -0700379 ## ndn-api-face.h (module 'ndnSIM'): ns3::ndn::ApiFace [class]
380 module.add_class('ApiFace', parent=root_module['ns3::ndn::Face'])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700381 ## ndn-app-face.h (module 'ndnSIM'): ns3::ndn::AppFace [class]
382 module.add_class('AppFace', parent=root_module['ns3::ndn::Face'])
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -0700383 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 -0700384 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')
385 module.add_container('std::list< std::string >', 'std::string', container_type='list')
Alexander Afanasyev298c8442013-04-14 15:18:45 -0700386 typehandlers.add_type_alias('ns3::ndn::ContentObject', 'ns3::ndn::ContentObjectHeader')
387 typehandlers.add_type_alias('ns3::ndn::ContentObject*', 'ns3::ndn::ContentObjectHeader*')
388 typehandlers.add_type_alias('ns3::ndn::ContentObject&', 'ns3::ndn::ContentObjectHeader&')
389 module.add_typedef(root_module['ns3::ndn::ContentObject'], 'ContentObjectHeader')
390 typehandlers.add_type_alias('ns3::ndn::Interest', 'ns3::ndn::InterestHeader')
391 typehandlers.add_type_alias('ns3::ndn::Interest*', 'ns3::ndn::InterestHeader*')
392 typehandlers.add_type_alias('ns3::ndn::Interest&', 'ns3::ndn::InterestHeader&')
393 module.add_typedef(root_module['ns3::ndn::Interest'], 'InterestHeader')
Alexander Afanasyev0e4ae8e2013-03-12 15:59:18 -0700394 typehandlers.add_type_alias('std::deque< ns3::ndn::RttHistory, std::allocator< ns3::ndn::RttHistory > >', 'ns3::ndn::RttHistory_t')
395 typehandlers.add_type_alias('std::deque< ns3::ndn::RttHistory, std::allocator< ns3::ndn::RttHistory > >*', 'ns3::ndn::RttHistory_t*')
396 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 -0700397 typehandlers.add_type_alias('ns3::ndn::Name', 'ns3::ndn::NameComponents')
398 typehandlers.add_type_alias('ns3::ndn::Name*', 'ns3::ndn::NameComponents*')
399 typehandlers.add_type_alias('ns3::ndn::Name&', 'ns3::ndn::NameComponents&')
400 module.add_typedef(root_module['ns3::ndn::Name'], 'NameComponents')
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700401
402 ## Register a nested module for the namespace cs
403
404 nested_module = module.add_cpp_namespace('cs')
405 register_types_ns3_ndn_cs(nested_module)
406
407
408 ## Register a nested module for the namespace fib
409
410 nested_module = module.add_cpp_namespace('fib')
411 register_types_ns3_ndn_fib(nested_module)
412
413
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -0700414 ## Register a nested module for the namespace fw
415
416 nested_module = module.add_cpp_namespace('fw')
417 register_types_ns3_ndn_fw(nested_module)
418
419
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700420 ## Register a nested module for the namespace pit
421
422 nested_module = module.add_cpp_namespace('pit')
423 register_types_ns3_ndn_pit(nested_module)
424
425
426def register_types_ns3_ndn_cs(module):
427 root_module = module.get_root()
428
429 ## ndn-content-store.h (module 'ndnSIM'): ns3::ndn::cs::Entry [class]
430 module.add_class('Entry', parent=root_module['ns3::SimpleRefCount< ns3::ndn::cs::Entry, ns3::empty, ns3::DefaultDeleter<ns3::ndn::cs::Entry> >'])
431
432def register_types_ns3_ndn_fib(module):
433 root_module = module.get_root()
434
435 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::Entry [class]
Alexander Afanasyevf5c07742012-10-31 13:13:05 -0700436 module.add_class('Entry', parent=root_module['ns3::Object'])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700437 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::Entry::NoFaces [class]
438 module.add_class('NoFaces', outer_class=root_module['ns3::ndn::fib::Entry'])
439 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::FaceMetric [class]
440 module.add_class('FaceMetric')
441 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::FaceMetric::Status [enumeration]
442 module.add_enum('Status', ['NDN_FIB_GREEN', 'NDN_FIB_YELLOW', 'NDN_FIB_RED'], outer_class=root_module['ns3::ndn::fib::FaceMetric'])
443 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::FaceMetricContainer [struct]
444 module.add_class('FaceMetricContainer')
445 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::i_face [class]
446 module.add_class('i_face')
447 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::i_metric [class]
448 module.add_class('i_metric')
449 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::i_nth [class]
450 module.add_class('i_nth')
451
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -0700452def register_types_ns3_ndn_fw(module):
453 root_module = module.get_root()
454
455 ## ndn-fw-tag.h (module 'ndnSIM'): ns3::ndn::fw::Tag [class]
456 module.add_class('Tag')
457
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700458def register_types_ns3_ndn_pit(module):
459 root_module = module.get_root()
460
461 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::ndn::pit::Entry [class]
462 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 -0800463 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::ndn::pit::EntryIsNotEmpty [struct]
464 module.add_class('EntryIsNotEmpty')
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700465 ## ndn-pit-entry-incoming-face.h (module 'ndnSIM'): ns3::ndn::pit::IncomingFace [struct]
466 module.add_class('IncomingFace')
467 ## ndn-pit-entry-outgoing-face.h (module 'ndnSIM'): ns3::ndn::pit::OutgoingFace [struct]
468 module.add_class('OutgoingFace')
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700469 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::ndn::pit::i_face [class]
470 module.add_class('i_face')
471 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::ndn::pit::i_retx [class]
472 module.add_class('i_retx')
473 module.add_container('std::set< ns3::ndn::pit::IncomingFace >', 'ns3::ndn::pit::IncomingFace', container_type='set')
Alexander Afanasyevc202fd92012-09-03 21:46:00 -0700474 module.add_container('std::set< ns3::ndn::pit::OutgoingFace >', 'ns3::ndn::pit::OutgoingFace', container_type='set')
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700475 module.add_container('std::set< unsigned int >', 'unsigned int', container_type='set')
476
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700477def register_methods(root_module):
478 register_Ns3Address_methods(root_module, root_module['ns3::Address'])
479 register_Ns3ApplicationContainer_methods(root_module, root_module['ns3::ApplicationContainer'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700480 register_Ns3AttributeConstructionList_methods(root_module, root_module['ns3::AttributeConstructionList'])
481 register_Ns3AttributeConstructionListItem_methods(root_module, root_module['ns3::AttributeConstructionList::Item'])
482 register_Ns3Buffer_methods(root_module, root_module['ns3::Buffer'])
483 register_Ns3BufferIterator_methods(root_module, root_module['ns3::Buffer::Iterator'])
484 register_Ns3ByteTagIterator_methods(root_module, root_module['ns3::ByteTagIterator'])
485 register_Ns3ByteTagIteratorItem_methods(root_module, root_module['ns3::ByteTagIterator::Item'])
486 register_Ns3ByteTagList_methods(root_module, root_module['ns3::ByteTagList'])
487 register_Ns3ByteTagListIterator_methods(root_module, root_module['ns3::ByteTagList::Iterator'])
488 register_Ns3ByteTagListIteratorItem_methods(root_module, root_module['ns3::ByteTagList::Iterator::Item'])
489 register_Ns3CallbackBase_methods(root_module, root_module['ns3::CallbackBase'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700490 register_Ns3EventId_methods(root_module, root_module['ns3::EventId'])
491 register_Ns3Ipv4Address_methods(root_module, root_module['ns3::Ipv4Address'])
492 register_Ns3Ipv4Mask_methods(root_module, root_module['ns3::Ipv4Mask'])
493 register_Ns3Ipv6Address_methods(root_module, root_module['ns3::Ipv6Address'])
494 register_Ns3Ipv6Prefix_methods(root_module, root_module['ns3::Ipv6Prefix'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700495 register_Ns3NetDeviceContainer_methods(root_module, root_module['ns3::NetDeviceContainer'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700496 register_Ns3NodeContainer_methods(root_module, root_module['ns3::NodeContainer'])
497 register_Ns3ObjectBase_methods(root_module, root_module['ns3::ObjectBase'])
498 register_Ns3ObjectDeleter_methods(root_module, root_module['ns3::ObjectDeleter'])
499 register_Ns3ObjectFactory_methods(root_module, root_module['ns3::ObjectFactory'])
500 register_Ns3PacketMetadata_methods(root_module, root_module['ns3::PacketMetadata'])
501 register_Ns3PacketMetadataItem_methods(root_module, root_module['ns3::PacketMetadata::Item'])
502 register_Ns3PacketMetadataItemIterator_methods(root_module, root_module['ns3::PacketMetadata::ItemIterator'])
Alexander Afanasyevad5acce2012-05-31 12:43:08 -0700503 register_Ns3PacketTagIterator_methods(root_module, root_module['ns3::PacketTagIterator'])
504 register_Ns3PacketTagIteratorItem_methods(root_module, root_module['ns3::PacketTagIterator::Item'])
505 register_Ns3PacketTagList_methods(root_module, root_module['ns3::PacketTagList'])
506 register_Ns3PacketTagListTagData_methods(root_module, root_module['ns3::PacketTagList::TagData'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700507 register_Ns3RandomVariable_methods(root_module, root_module['ns3::RandomVariable'])
508 register_Ns3RngSeedManager_methods(root_module, root_module['ns3::RngSeedManager'])
Alexander Afanasyev0e4ae8e2013-03-12 15:59:18 -0700509 register_Ns3SequenceNumber32_methods(root_module, root_module['ns3::SequenceNumber32'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700510 register_Ns3SequentialVariable_methods(root_module, root_module['ns3::SequentialVariable'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700511 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 -0700512 register_Ns3Tag_methods(root_module, root_module['ns3::Tag'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700513 register_Ns3TagBuffer_methods(root_module, root_module['ns3::TagBuffer'])
Alexander Afanasyev0e4ae8e2013-03-12 15:59:18 -0700514 register_Ns3TracedValue__Ns3NdnFibFaceMetricStatus_methods(root_module, root_module['ns3::TracedValue< ns3::ndn::fib::FaceMetric::Status >'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700515 register_Ns3TriangularVariable_methods(root_module, root_module['ns3::TriangularVariable'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700516 register_Ns3TypeId_methods(root_module, root_module['ns3::TypeId'])
517 register_Ns3TypeIdAttributeInformation_methods(root_module, root_module['ns3::TypeId::AttributeInformation'])
518 register_Ns3TypeIdTraceSourceInformation_methods(root_module, root_module['ns3::TypeId::TraceSourceInformation'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700519 register_Ns3UniformVariable_methods(root_module, root_module['ns3::UniformVariable'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700520 register_Ns3WeibullVariable_methods(root_module, root_module['ns3::WeibullVariable'])
521 register_Ns3ZetaVariable_methods(root_module, root_module['ns3::ZetaVariable'])
522 register_Ns3ZipfVariable_methods(root_module, root_module['ns3::ZipfVariable'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700523 register_Ns3Empty_methods(root_module, root_module['ns3::empty'])
524 register_Ns3Int64x64_t_methods(root_module, root_module['ns3::int64x64_t'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700525 register_Ns3Chunk_methods(root_module, root_module['ns3::Chunk'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700526 register_Ns3ConstantVariable_methods(root_module, root_module['ns3::ConstantVariable'])
527 register_Ns3DeterministicVariable_methods(root_module, root_module['ns3::DeterministicVariable'])
528 register_Ns3EmpiricalVariable_methods(root_module, root_module['ns3::EmpiricalVariable'])
529 register_Ns3ErlangVariable_methods(root_module, root_module['ns3::ErlangVariable'])
530 register_Ns3ExponentialVariable_methods(root_module, root_module['ns3::ExponentialVariable'])
531 register_Ns3GammaVariable_methods(root_module, root_module['ns3::GammaVariable'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700532 register_Ns3Header_methods(root_module, root_module['ns3::Header'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700533 register_Ns3IntEmpiricalVariable_methods(root_module, root_module['ns3::IntEmpiricalVariable'])
534 register_Ns3LogNormalVariable_methods(root_module, root_module['ns3::LogNormalVariable'])
535 register_Ns3NormalVariable_methods(root_module, root_module['ns3::NormalVariable'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700536 register_Ns3Object_methods(root_module, root_module['ns3::Object'])
537 register_Ns3ObjectAggregateIterator_methods(root_module, root_module['ns3::Object::AggregateIterator'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700538 register_Ns3ParetoVariable_methods(root_module, root_module['ns3::ParetoVariable'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700539 register_Ns3SimpleRefCount__Ns3AttributeAccessor_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeAccessor__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> >'])
540 register_Ns3SimpleRefCount__Ns3AttributeChecker_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeChecker__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter<ns3::AttributeChecker> >'])
541 register_Ns3SimpleRefCount__Ns3AttributeValue_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeValue__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter<ns3::AttributeValue> >'])
542 register_Ns3SimpleRefCount__Ns3CallbackImplBase_Ns3Empty_Ns3DefaultDeleter__lt__ns3CallbackImplBase__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> >'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700543 register_Ns3SimpleRefCount__Ns3EventImpl_Ns3Empty_Ns3DefaultDeleter__lt__ns3EventImpl__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::EventImpl, ns3::empty, ns3::DefaultDeleter<ns3::EventImpl> >'])
544 register_Ns3SimpleRefCount__Ns3NixVector_Ns3Empty_Ns3DefaultDeleter__lt__ns3NixVector__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::NixVector, ns3::empty, ns3::DefaultDeleter<ns3::NixVector> >'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700545 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 -0700546 register_Ns3SimpleRefCount__Ns3TopologyReader_Ns3Empty_Ns3DefaultDeleter__lt__ns3TopologyReader__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::TopologyReader, ns3::empty, ns3::DefaultDeleter<ns3::TopologyReader> >'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700547 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 -0700548 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 -0700549 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 -0700550 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 -0800551 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 -0700552 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 -0700553 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 Afanasyev381dea02011-11-03 08:33:26 -0700554 register_Ns3Time_methods(root_module, root_module['ns3::Time'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700555 register_Ns3TopologyReader_methods(root_module, root_module['ns3::TopologyReader'])
556 register_Ns3TopologyReaderLink_methods(root_module, root_module['ns3::TopologyReader::Link'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700557 register_Ns3TraceSourceAccessor_methods(root_module, root_module['ns3::TraceSourceAccessor'])
558 register_Ns3Trailer_methods(root_module, root_module['ns3::Trailer'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700559 register_Ns3AnnotatedTopologyReader_methods(root_module, root_module['ns3::AnnotatedTopologyReader'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700560 register_Ns3Application_methods(root_module, root_module['ns3::Application'])
561 register_Ns3AttributeAccessor_methods(root_module, root_module['ns3::AttributeAccessor'])
562 register_Ns3AttributeChecker_methods(root_module, root_module['ns3::AttributeChecker'])
563 register_Ns3AttributeValue_methods(root_module, root_module['ns3::AttributeValue'])
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -0700564 register_Ns3BooleanChecker_methods(root_module, root_module['ns3::BooleanChecker'])
565 register_Ns3BooleanValue_methods(root_module, root_module['ns3::BooleanValue'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700566 register_Ns3CallbackChecker_methods(root_module, root_module['ns3::CallbackChecker'])
567 register_Ns3CallbackImplBase_methods(root_module, root_module['ns3::CallbackImplBase'])
568 register_Ns3CallbackValue_methods(root_module, root_module['ns3::CallbackValue'])
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -0700569 register_Ns3DoubleValue_methods(root_module, root_module['ns3::DoubleValue'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700570 register_Ns3EmptyAttributeValue_methods(root_module, root_module['ns3::EmptyAttributeValue'])
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -0700571 register_Ns3EnumChecker_methods(root_module, root_module['ns3::EnumChecker'])
572 register_Ns3EnumValue_methods(root_module, root_module['ns3::EnumValue'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700573 register_Ns3EventImpl_methods(root_module, root_module['ns3::EventImpl'])
574 register_Ns3IntegerValue_methods(root_module, root_module['ns3::IntegerValue'])
575 register_Ns3Ipv4AddressChecker_methods(root_module, root_module['ns3::Ipv4AddressChecker'])
576 register_Ns3Ipv4AddressValue_methods(root_module, root_module['ns3::Ipv4AddressValue'])
577 register_Ns3Ipv4MaskChecker_methods(root_module, root_module['ns3::Ipv4MaskChecker'])
578 register_Ns3Ipv4MaskValue_methods(root_module, root_module['ns3::Ipv4MaskValue'])
579 register_Ns3Ipv6AddressChecker_methods(root_module, root_module['ns3::Ipv6AddressChecker'])
580 register_Ns3Ipv6AddressValue_methods(root_module, root_module['ns3::Ipv6AddressValue'])
581 register_Ns3Ipv6PrefixChecker_methods(root_module, root_module['ns3::Ipv6PrefixChecker'])
582 register_Ns3Ipv6PrefixValue_methods(root_module, root_module['ns3::Ipv6PrefixValue'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700583 register_Ns3NetDevice_methods(root_module, root_module['ns3::NetDevice'])
584 register_Ns3NixVector_methods(root_module, root_module['ns3::NixVector'])
585 register_Ns3Node_methods(root_module, root_module['ns3::Node'])
586 register_Ns3ObjectFactoryChecker_methods(root_module, root_module['ns3::ObjectFactoryChecker'])
587 register_Ns3ObjectFactoryValue_methods(root_module, root_module['ns3::ObjectFactoryValue'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700588 register_Ns3Packet_methods(root_module, root_module['ns3::Packet'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700589 register_Ns3RandomVariableChecker_methods(root_module, root_module['ns3::RandomVariableChecker'])
590 register_Ns3RandomVariableValue_methods(root_module, root_module['ns3::RandomVariableValue'])
591 register_Ns3RocketfuelWeightsReader_methods(root_module, root_module['ns3::RocketfuelWeightsReader'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700592 register_Ns3TimeChecker_methods(root_module, root_module['ns3::TimeChecker'])
593 register_Ns3TimeValue_methods(root_module, root_module['ns3::TimeValue'])
594 register_Ns3TypeIdChecker_methods(root_module, root_module['ns3::TypeIdChecker'])
595 register_Ns3TypeIdValue_methods(root_module, root_module['ns3::TypeIdValue'])
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -0700596 register_Ns3UintegerValue_methods(root_module, root_module['ns3::UintegerValue'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700597 register_Ns3AddressChecker_methods(root_module, root_module['ns3::AddressChecker'])
598 register_Ns3AddressValue_methods(root_module, root_module['ns3::AddressValue'])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700599 register_Ns3NdnApp_methods(root_module, root_module['ns3::ndn::App'])
600 register_Ns3NdnAppHelper_methods(root_module, root_module['ns3::ndn::AppHelper'])
Alexander Afanasyeveae83ee2013-03-15 15:01:10 -0700601 register_Ns3NdnContentObject_methods(root_module, root_module['ns3::ndn::ContentObject'])
602 register_Ns3NdnContentObjectException_methods(root_module, root_module['ns3::ndn::ContentObjectException'])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700603 register_Ns3NdnContentStore_methods(root_module, root_module['ns3::ndn::ContentStore'])
604 register_Ns3NdnFace_methods(root_module, root_module['ns3::ndn::Face'])
605 register_Ns3NdnFaceContainer_methods(root_module, root_module['ns3::ndn::FaceContainer'])
606 register_Ns3NdnFib_methods(root_module, root_module['ns3::ndn::Fib'])
607 register_Ns3NdnForwardingStrategy_methods(root_module, root_module['ns3::ndn::ForwardingStrategy'])
608 register_Ns3NdnGlobalRoutingHelper_methods(root_module, root_module['ns3::ndn::GlobalRoutingHelper'])
609 register_Ns3NdnHeaderHelper_methods(root_module, root_module['ns3::ndn::HeaderHelper'])
Alexander Afanasyeveae83ee2013-03-15 15:01:10 -0700610 register_Ns3NdnInterest_methods(root_module, root_module['ns3::ndn::Interest'])
611 register_Ns3NdnInterestException_methods(root_module, root_module['ns3::ndn::InterestException'])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700612 register_Ns3NdnL3Protocol_methods(root_module, root_module['ns3::ndn::L3Protocol'])
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -0700613 register_Ns3NdnLimits_methods(root_module, root_module['ns3::ndn::Limits'])
Alexander Afanasyev32c07562013-02-01 12:58:43 -0800614 register_Ns3NdnName_methods(root_module, root_module['ns3::ndn::Name'])
615 register_Ns3NdnNameChecker_methods(root_module, root_module['ns3::ndn::NameChecker'])
Alexander Afanasyev32c07562013-02-01 12:58:43 -0800616 register_Ns3NdnNameValue_methods(root_module, root_module['ns3::ndn::NameValue'])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700617 register_Ns3NdnNetDeviceFace_methods(root_module, root_module['ns3::ndn::NetDeviceFace'])
618 register_Ns3NdnPit_methods(root_module, root_module['ns3::ndn::Pit'])
Alexander Afanasyev0e4ae8e2013-03-12 15:59:18 -0700619 register_Ns3NdnRttEstimator_methods(root_module, root_module['ns3::ndn::RttEstimator'])
620 register_Ns3NdnRttHistory_methods(root_module, root_module['ns3::ndn::RttHistory'])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700621 register_Ns3NdnStackHelper_methods(root_module, root_module['ns3::ndn::StackHelper'])
622 register_Ns3NdnUnknownHeaderException_methods(root_module, root_module['ns3::ndn::UnknownHeaderException'])
Alexander Afanasyeva4e74282013-07-11 15:23:20 -0700623 register_Ns3NdnApiFace_methods(root_module, root_module['ns3::ndn::ApiFace'])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700624 register_Ns3NdnAppFace_methods(root_module, root_module['ns3::ndn::AppFace'])
625 register_Ns3NdnCsEntry_methods(root_module, root_module['ns3::ndn::cs::Entry'])
626 register_Ns3NdnFibEntry_methods(root_module, root_module['ns3::ndn::fib::Entry'])
627 register_Ns3NdnFibEntryNoFaces_methods(root_module, root_module['ns3::ndn::fib::Entry::NoFaces'])
628 register_Ns3NdnFibFaceMetric_methods(root_module, root_module['ns3::ndn::fib::FaceMetric'])
629 register_Ns3NdnFibFaceMetricContainer_methods(root_module, root_module['ns3::ndn::fib::FaceMetricContainer'])
630 register_Ns3NdnFibI_face_methods(root_module, root_module['ns3::ndn::fib::i_face'])
631 register_Ns3NdnFibI_metric_methods(root_module, root_module['ns3::ndn::fib::i_metric'])
632 register_Ns3NdnFibI_nth_methods(root_module, root_module['ns3::ndn::fib::i_nth'])
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -0700633 register_Ns3NdnFwTag_methods(root_module, root_module['ns3::ndn::fw::Tag'])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700634 register_Ns3NdnPitEntry_methods(root_module, root_module['ns3::ndn::pit::Entry'])
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -0800635 register_Ns3NdnPitEntryIsNotEmpty_methods(root_module, root_module['ns3::ndn::pit::EntryIsNotEmpty'])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700636 register_Ns3NdnPitIncomingFace_methods(root_module, root_module['ns3::ndn::pit::IncomingFace'])
637 register_Ns3NdnPitOutgoingFace_methods(root_module, root_module['ns3::ndn::pit::OutgoingFace'])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700638 register_Ns3NdnPitI_face_methods(root_module, root_module['ns3::ndn::pit::i_face'])
639 register_Ns3NdnPitI_retx_methods(root_module, root_module['ns3::ndn::pit::i_retx'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700640 return
641
642def register_Ns3Address_methods(root_module, cls):
643 cls.add_binary_comparison_operator('!=')
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -0700644 cls.add_output_stream_operator()
Alexander Afanasyeva28ec562012-10-25 14:07:32 -0700645 cls.add_binary_comparison_operator('==')
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700646 cls.add_binary_comparison_operator('<')
647 ## address.h (module 'network'): ns3::Address::Address() [constructor]
648 cls.add_constructor([])
649 ## address.h (module 'network'): ns3::Address::Address(uint8_t type, uint8_t const * buffer, uint8_t len) [constructor]
650 cls.add_constructor([param('uint8_t', 'type'), param('uint8_t const *', 'buffer'), param('uint8_t', 'len')])
651 ## address.h (module 'network'): ns3::Address::Address(ns3::Address const & address) [copy constructor]
652 cls.add_constructor([param('ns3::Address const &', 'address')])
653 ## address.h (module 'network'): bool ns3::Address::CheckCompatible(uint8_t type, uint8_t len) const [member function]
654 cls.add_method('CheckCompatible',
655 'bool',
656 [param('uint8_t', 'type'), param('uint8_t', 'len')],
657 is_const=True)
658 ## address.h (module 'network'): uint32_t ns3::Address::CopyAllFrom(uint8_t const * buffer, uint8_t len) [member function]
659 cls.add_method('CopyAllFrom',
660 'uint32_t',
661 [param('uint8_t const *', 'buffer'), param('uint8_t', 'len')])
662 ## address.h (module 'network'): uint32_t ns3::Address::CopyAllTo(uint8_t * buffer, uint8_t len) const [member function]
663 cls.add_method('CopyAllTo',
664 'uint32_t',
665 [param('uint8_t *', 'buffer'), param('uint8_t', 'len')],
666 is_const=True)
667 ## address.h (module 'network'): uint32_t ns3::Address::CopyFrom(uint8_t const * buffer, uint8_t len) [member function]
668 cls.add_method('CopyFrom',
669 'uint32_t',
670 [param('uint8_t const *', 'buffer'), param('uint8_t', 'len')])
671 ## address.h (module 'network'): uint32_t ns3::Address::CopyTo(uint8_t * buffer) const [member function]
672 cls.add_method('CopyTo',
673 'uint32_t',
674 [param('uint8_t *', 'buffer')],
675 is_const=True)
676 ## address.h (module 'network'): void ns3::Address::Deserialize(ns3::TagBuffer buffer) [member function]
677 cls.add_method('Deserialize',
678 'void',
679 [param('ns3::TagBuffer', 'buffer')])
680 ## address.h (module 'network'): uint8_t ns3::Address::GetLength() const [member function]
681 cls.add_method('GetLength',
682 'uint8_t',
683 [],
684 is_const=True)
685 ## address.h (module 'network'): uint32_t ns3::Address::GetSerializedSize() const [member function]
686 cls.add_method('GetSerializedSize',
687 'uint32_t',
688 [],
689 is_const=True)
690 ## address.h (module 'network'): bool ns3::Address::IsInvalid() const [member function]
691 cls.add_method('IsInvalid',
692 'bool',
693 [],
694 is_const=True)
695 ## address.h (module 'network'): bool ns3::Address::IsMatchingType(uint8_t type) const [member function]
696 cls.add_method('IsMatchingType',
697 'bool',
698 [param('uint8_t', 'type')],
699 is_const=True)
700 ## address.h (module 'network'): static uint8_t ns3::Address::Register() [member function]
701 cls.add_method('Register',
702 'uint8_t',
703 [],
704 is_static=True)
705 ## address.h (module 'network'): void ns3::Address::Serialize(ns3::TagBuffer buffer) const [member function]
706 cls.add_method('Serialize',
707 'void',
708 [param('ns3::TagBuffer', 'buffer')],
709 is_const=True)
710 return
711
712def register_Ns3ApplicationContainer_methods(root_module, cls):
713 ## application-container.h (module 'network'): ns3::ApplicationContainer::ApplicationContainer(ns3::ApplicationContainer const & arg0) [copy constructor]
714 cls.add_constructor([param('ns3::ApplicationContainer const &', 'arg0')])
715 ## application-container.h (module 'network'): ns3::ApplicationContainer::ApplicationContainer() [constructor]
716 cls.add_constructor([])
717 ## application-container.h (module 'network'): ns3::ApplicationContainer::ApplicationContainer(ns3::Ptr<ns3::Application> application) [constructor]
718 cls.add_constructor([param('ns3::Ptr< ns3::Application >', 'application')])
719 ## application-container.h (module 'network'): ns3::ApplicationContainer::ApplicationContainer(std::string name) [constructor]
720 cls.add_constructor([param('std::string', 'name')])
721 ## application-container.h (module 'network'): void ns3::ApplicationContainer::Add(ns3::ApplicationContainer other) [member function]
722 cls.add_method('Add',
723 'void',
724 [param('ns3::ApplicationContainer', 'other')])
725 ## application-container.h (module 'network'): void ns3::ApplicationContainer::Add(ns3::Ptr<ns3::Application> application) [member function]
726 cls.add_method('Add',
727 'void',
728 [param('ns3::Ptr< ns3::Application >', 'application')])
729 ## application-container.h (module 'network'): void ns3::ApplicationContainer::Add(std::string name) [member function]
730 cls.add_method('Add',
731 'void',
732 [param('std::string', 'name')])
733 ## 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]
734 cls.add_method('Begin',
735 '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Application > const, std::vector< ns3::Ptr< ns3::Application > > >',
736 [],
737 is_const=True)
738 ## 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]
739 cls.add_method('End',
740 '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Application > const, std::vector< ns3::Ptr< ns3::Application > > >',
741 [],
742 is_const=True)
743 ## application-container.h (module 'network'): ns3::Ptr<ns3::Application> ns3::ApplicationContainer::Get(uint32_t i) const [member function]
744 cls.add_method('Get',
745 'ns3::Ptr< ns3::Application >',
746 [param('uint32_t', 'i')],
747 is_const=True)
748 ## application-container.h (module 'network'): uint32_t ns3::ApplicationContainer::GetN() const [member function]
749 cls.add_method('GetN',
750 'uint32_t',
751 [],
752 is_const=True)
753 ## application-container.h (module 'network'): void ns3::ApplicationContainer::Start(ns3::Time start) [member function]
754 cls.add_method('Start',
755 'void',
756 [param('ns3::Time', 'start')])
757 ## application-container.h (module 'network'): void ns3::ApplicationContainer::Stop(ns3::Time stop) [member function]
758 cls.add_method('Stop',
759 'void',
760 [param('ns3::Time', 'stop')])
761 return
762
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700763def register_Ns3AttributeConstructionList_methods(root_module, cls):
764 ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::AttributeConstructionList(ns3::AttributeConstructionList const & arg0) [copy constructor]
765 cls.add_constructor([param('ns3::AttributeConstructionList const &', 'arg0')])
766 ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::AttributeConstructionList() [constructor]
767 cls.add_constructor([])
768 ## 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]
769 cls.add_method('Add',
770 'void',
771 [param('std::string', 'name'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker'), param('ns3::Ptr< ns3::AttributeValue >', 'value')])
772 ## attribute-construction-list.h (module 'core'): std::_List_const_iterator<ns3::AttributeConstructionList::Item> ns3::AttributeConstructionList::Begin() const [member function]
773 cls.add_method('Begin',
774 'std::_List_const_iterator< ns3::AttributeConstructionList::Item >',
775 [],
776 is_const=True)
777 ## attribute-construction-list.h (module 'core'): std::_List_const_iterator<ns3::AttributeConstructionList::Item> ns3::AttributeConstructionList::End() const [member function]
778 cls.add_method('End',
779 'std::_List_const_iterator< ns3::AttributeConstructionList::Item >',
780 [],
781 is_const=True)
782 ## attribute-construction-list.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::AttributeConstructionList::Find(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
783 cls.add_method('Find',
784 'ns3::Ptr< ns3::AttributeValue >',
785 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
786 is_const=True)
787 return
788
789def register_Ns3AttributeConstructionListItem_methods(root_module, cls):
790 ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item::Item() [constructor]
791 cls.add_constructor([])
792 ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item::Item(ns3::AttributeConstructionList::Item const & arg0) [copy constructor]
793 cls.add_constructor([param('ns3::AttributeConstructionList::Item const &', 'arg0')])
794 ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item::checker [variable]
795 cls.add_instance_attribute('checker', 'ns3::Ptr< ns3::AttributeChecker const >', is_const=False)
796 ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item::name [variable]
797 cls.add_instance_attribute('name', 'std::string', is_const=False)
798 ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item::value [variable]
799 cls.add_instance_attribute('value', 'ns3::Ptr< ns3::AttributeValue >', is_const=False)
800 return
801
802def register_Ns3Buffer_methods(root_module, cls):
803 ## buffer.h (module 'network'): ns3::Buffer::Buffer() [constructor]
804 cls.add_constructor([])
805 ## buffer.h (module 'network'): ns3::Buffer::Buffer(uint32_t dataSize) [constructor]
806 cls.add_constructor([param('uint32_t', 'dataSize')])
807 ## buffer.h (module 'network'): ns3::Buffer::Buffer(uint32_t dataSize, bool initialize) [constructor]
808 cls.add_constructor([param('uint32_t', 'dataSize'), param('bool', 'initialize')])
809 ## buffer.h (module 'network'): ns3::Buffer::Buffer(ns3::Buffer const & o) [copy constructor]
810 cls.add_constructor([param('ns3::Buffer const &', 'o')])
811 ## buffer.h (module 'network'): bool ns3::Buffer::AddAtEnd(uint32_t end) [member function]
812 cls.add_method('AddAtEnd',
813 'bool',
814 [param('uint32_t', 'end')])
815 ## buffer.h (module 'network'): void ns3::Buffer::AddAtEnd(ns3::Buffer const & o) [member function]
816 cls.add_method('AddAtEnd',
817 'void',
818 [param('ns3::Buffer const &', 'o')])
819 ## buffer.h (module 'network'): bool ns3::Buffer::AddAtStart(uint32_t start) [member function]
820 cls.add_method('AddAtStart',
821 'bool',
822 [param('uint32_t', 'start')])
823 ## buffer.h (module 'network'): ns3::Buffer::Iterator ns3::Buffer::Begin() const [member function]
824 cls.add_method('Begin',
825 'ns3::Buffer::Iterator',
826 [],
827 is_const=True)
828 ## buffer.h (module 'network'): void ns3::Buffer::CopyData(std::ostream * os, uint32_t size) const [member function]
829 cls.add_method('CopyData',
830 'void',
831 [param('std::ostream *', 'os'), param('uint32_t', 'size')],
832 is_const=True)
833 ## buffer.h (module 'network'): uint32_t ns3::Buffer::CopyData(uint8_t * buffer, uint32_t size) const [member function]
834 cls.add_method('CopyData',
835 'uint32_t',
836 [param('uint8_t *', 'buffer'), param('uint32_t', 'size')],
837 is_const=True)
838 ## buffer.h (module 'network'): ns3::Buffer ns3::Buffer::CreateFragment(uint32_t start, uint32_t length) const [member function]
839 cls.add_method('CreateFragment',
840 'ns3::Buffer',
841 [param('uint32_t', 'start'), param('uint32_t', 'length')],
842 is_const=True)
843 ## buffer.h (module 'network'): ns3::Buffer ns3::Buffer::CreateFullCopy() const [member function]
844 cls.add_method('CreateFullCopy',
845 'ns3::Buffer',
846 [],
847 is_const=True)
848 ## buffer.h (module 'network'): uint32_t ns3::Buffer::Deserialize(uint8_t const * buffer, uint32_t size) [member function]
849 cls.add_method('Deserialize',
850 'uint32_t',
851 [param('uint8_t const *', 'buffer'), param('uint32_t', 'size')])
852 ## buffer.h (module 'network'): ns3::Buffer::Iterator ns3::Buffer::End() const [member function]
853 cls.add_method('End',
854 'ns3::Buffer::Iterator',
855 [],
856 is_const=True)
857 ## buffer.h (module 'network'): int32_t ns3::Buffer::GetCurrentEndOffset() const [member function]
858 cls.add_method('GetCurrentEndOffset',
859 'int32_t',
860 [],
861 is_const=True)
862 ## buffer.h (module 'network'): int32_t ns3::Buffer::GetCurrentStartOffset() const [member function]
863 cls.add_method('GetCurrentStartOffset',
864 'int32_t',
865 [],
866 is_const=True)
867 ## buffer.h (module 'network'): uint32_t ns3::Buffer::GetSerializedSize() const [member function]
868 cls.add_method('GetSerializedSize',
869 'uint32_t',
870 [],
871 is_const=True)
872 ## buffer.h (module 'network'): uint32_t ns3::Buffer::GetSize() const [member function]
873 cls.add_method('GetSize',
874 'uint32_t',
875 [],
876 is_const=True)
877 ## buffer.h (module 'network'): uint8_t const * ns3::Buffer::PeekData() const [member function]
878 cls.add_method('PeekData',
879 'uint8_t const *',
880 [],
881 is_const=True)
882 ## buffer.h (module 'network'): void ns3::Buffer::RemoveAtEnd(uint32_t end) [member function]
883 cls.add_method('RemoveAtEnd',
884 'void',
885 [param('uint32_t', 'end')])
886 ## buffer.h (module 'network'): void ns3::Buffer::RemoveAtStart(uint32_t start) [member function]
887 cls.add_method('RemoveAtStart',
888 'void',
889 [param('uint32_t', 'start')])
890 ## buffer.h (module 'network'): uint32_t ns3::Buffer::Serialize(uint8_t * buffer, uint32_t maxSize) const [member function]
891 cls.add_method('Serialize',
892 'uint32_t',
893 [param('uint8_t *', 'buffer'), param('uint32_t', 'maxSize')],
894 is_const=True)
895 return
896
897def register_Ns3BufferIterator_methods(root_module, cls):
898 ## buffer.h (module 'network'): ns3::Buffer::Iterator::Iterator(ns3::Buffer::Iterator const & arg0) [copy constructor]
899 cls.add_constructor([param('ns3::Buffer::Iterator const &', 'arg0')])
900 ## buffer.h (module 'network'): ns3::Buffer::Iterator::Iterator() [constructor]
901 cls.add_constructor([])
902 ## buffer.h (module 'network'): uint16_t ns3::Buffer::Iterator::CalculateIpChecksum(uint16_t size) [member function]
903 cls.add_method('CalculateIpChecksum',
904 'uint16_t',
905 [param('uint16_t', 'size')])
906 ## buffer.h (module 'network'): uint16_t ns3::Buffer::Iterator::CalculateIpChecksum(uint16_t size, uint32_t initialChecksum) [member function]
907 cls.add_method('CalculateIpChecksum',
908 'uint16_t',
909 [param('uint16_t', 'size'), param('uint32_t', 'initialChecksum')])
910 ## buffer.h (module 'network'): uint32_t ns3::Buffer::Iterator::GetDistanceFrom(ns3::Buffer::Iterator const & o) const [member function]
911 cls.add_method('GetDistanceFrom',
912 'uint32_t',
913 [param('ns3::Buffer::Iterator const &', 'o')],
914 is_const=True)
915 ## buffer.h (module 'network'): uint32_t ns3::Buffer::Iterator::GetSize() const [member function]
916 cls.add_method('GetSize',
917 'uint32_t',
918 [],
919 is_const=True)
920 ## buffer.h (module 'network'): bool ns3::Buffer::Iterator::IsEnd() const [member function]
921 cls.add_method('IsEnd',
922 'bool',
923 [],
924 is_const=True)
925 ## buffer.h (module 'network'): bool ns3::Buffer::Iterator::IsStart() const [member function]
926 cls.add_method('IsStart',
927 'bool',
928 [],
929 is_const=True)
930 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Next() [member function]
931 cls.add_method('Next',
932 'void',
933 [])
934 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Next(uint32_t delta) [member function]
935 cls.add_method('Next',
936 'void',
937 [param('uint32_t', 'delta')])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -0700938 ## buffer.h (module 'network'): uint8_t ns3::Buffer::Iterator::PeekU8() [member function]
939 cls.add_method('PeekU8',
940 'uint8_t',
941 [])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700942 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Prev() [member function]
943 cls.add_method('Prev',
944 'void',
945 [])
946 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Prev(uint32_t delta) [member function]
947 cls.add_method('Prev',
948 'void',
949 [param('uint32_t', 'delta')])
950 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Read(uint8_t * buffer, uint32_t size) [member function]
951 cls.add_method('Read',
952 'void',
953 [param('uint8_t *', 'buffer'), param('uint32_t', 'size')])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -0700954 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Read(ns3::Buffer::Iterator start, uint32_t size) [member function]
955 cls.add_method('Read',
956 'void',
957 [param('ns3::Buffer::Iterator', 'start'), param('uint32_t', 'size')])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700958 ## buffer.h (module 'network'): uint16_t ns3::Buffer::Iterator::ReadLsbtohU16() [member function]
959 cls.add_method('ReadLsbtohU16',
960 'uint16_t',
961 [])
962 ## buffer.h (module 'network'): uint32_t ns3::Buffer::Iterator::ReadLsbtohU32() [member function]
963 cls.add_method('ReadLsbtohU32',
964 'uint32_t',
965 [])
966 ## buffer.h (module 'network'): uint64_t ns3::Buffer::Iterator::ReadLsbtohU64() [member function]
967 cls.add_method('ReadLsbtohU64',
968 'uint64_t',
969 [])
970 ## buffer.h (module 'network'): uint16_t ns3::Buffer::Iterator::ReadNtohU16() [member function]
971 cls.add_method('ReadNtohU16',
972 'uint16_t',
973 [])
974 ## buffer.h (module 'network'): uint32_t ns3::Buffer::Iterator::ReadNtohU32() [member function]
975 cls.add_method('ReadNtohU32',
976 'uint32_t',
977 [])
978 ## buffer.h (module 'network'): uint64_t ns3::Buffer::Iterator::ReadNtohU64() [member function]
979 cls.add_method('ReadNtohU64',
980 'uint64_t',
981 [])
982 ## buffer.h (module 'network'): uint16_t ns3::Buffer::Iterator::ReadU16() [member function]
983 cls.add_method('ReadU16',
984 'uint16_t',
985 [])
986 ## buffer.h (module 'network'): uint32_t ns3::Buffer::Iterator::ReadU32() [member function]
987 cls.add_method('ReadU32',
988 'uint32_t',
989 [])
990 ## buffer.h (module 'network'): uint64_t ns3::Buffer::Iterator::ReadU64() [member function]
991 cls.add_method('ReadU64',
992 'uint64_t',
993 [])
994 ## buffer.h (module 'network'): uint8_t ns3::Buffer::Iterator::ReadU8() [member function]
995 cls.add_method('ReadU8',
996 'uint8_t',
997 [])
998 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Write(uint8_t const * buffer, uint32_t size) [member function]
999 cls.add_method('Write',
1000 'void',
1001 [param('uint8_t const *', 'buffer'), param('uint32_t', 'size')])
1002 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Write(ns3::Buffer::Iterator start, ns3::Buffer::Iterator end) [member function]
1003 cls.add_method('Write',
1004 'void',
1005 [param('ns3::Buffer::Iterator', 'start'), param('ns3::Buffer::Iterator', 'end')])
1006 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteHtolsbU16(uint16_t data) [member function]
1007 cls.add_method('WriteHtolsbU16',
1008 'void',
1009 [param('uint16_t', 'data')])
1010 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteHtolsbU32(uint32_t data) [member function]
1011 cls.add_method('WriteHtolsbU32',
1012 'void',
1013 [param('uint32_t', 'data')])
1014 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteHtolsbU64(uint64_t data) [member function]
1015 cls.add_method('WriteHtolsbU64',
1016 'void',
1017 [param('uint64_t', 'data')])
1018 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteHtonU16(uint16_t data) [member function]
1019 cls.add_method('WriteHtonU16',
1020 'void',
1021 [param('uint16_t', 'data')])
1022 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteHtonU32(uint32_t data) [member function]
1023 cls.add_method('WriteHtonU32',
1024 'void',
1025 [param('uint32_t', 'data')])
1026 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteHtonU64(uint64_t data) [member function]
1027 cls.add_method('WriteHtonU64',
1028 'void',
1029 [param('uint64_t', 'data')])
1030 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteU16(uint16_t data) [member function]
1031 cls.add_method('WriteU16',
1032 'void',
1033 [param('uint16_t', 'data')])
1034 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteU32(uint32_t data) [member function]
1035 cls.add_method('WriteU32',
1036 'void',
1037 [param('uint32_t', 'data')])
1038 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteU64(uint64_t data) [member function]
1039 cls.add_method('WriteU64',
1040 'void',
1041 [param('uint64_t', 'data')])
1042 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteU8(uint8_t data) [member function]
1043 cls.add_method('WriteU8',
1044 'void',
1045 [param('uint8_t', 'data')])
1046 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteU8(uint8_t data, uint32_t len) [member function]
1047 cls.add_method('WriteU8',
1048 'void',
1049 [param('uint8_t', 'data'), param('uint32_t', 'len')])
1050 return
1051
1052def register_Ns3ByteTagIterator_methods(root_module, cls):
1053 ## packet.h (module 'network'): ns3::ByteTagIterator::ByteTagIterator(ns3::ByteTagIterator const & arg0) [copy constructor]
1054 cls.add_constructor([param('ns3::ByteTagIterator const &', 'arg0')])
1055 ## packet.h (module 'network'): bool ns3::ByteTagIterator::HasNext() const [member function]
1056 cls.add_method('HasNext',
1057 'bool',
1058 [],
1059 is_const=True)
1060 ## packet.h (module 'network'): ns3::ByteTagIterator::Item ns3::ByteTagIterator::Next() [member function]
1061 cls.add_method('Next',
1062 'ns3::ByteTagIterator::Item',
1063 [])
1064 return
1065
1066def register_Ns3ByteTagIteratorItem_methods(root_module, cls):
1067 ## packet.h (module 'network'): ns3::ByteTagIterator::Item::Item(ns3::ByteTagIterator::Item const & arg0) [copy constructor]
1068 cls.add_constructor([param('ns3::ByteTagIterator::Item const &', 'arg0')])
1069 ## packet.h (module 'network'): uint32_t ns3::ByteTagIterator::Item::GetEnd() const [member function]
1070 cls.add_method('GetEnd',
1071 'uint32_t',
1072 [],
1073 is_const=True)
1074 ## packet.h (module 'network'): uint32_t ns3::ByteTagIterator::Item::GetStart() const [member function]
1075 cls.add_method('GetStart',
1076 'uint32_t',
1077 [],
1078 is_const=True)
1079 ## packet.h (module 'network'): void ns3::ByteTagIterator::Item::GetTag(ns3::Tag & tag) const [member function]
1080 cls.add_method('GetTag',
1081 'void',
1082 [param('ns3::Tag &', 'tag')],
1083 is_const=True)
1084 ## packet.h (module 'network'): ns3::TypeId ns3::ByteTagIterator::Item::GetTypeId() const [member function]
1085 cls.add_method('GetTypeId',
1086 'ns3::TypeId',
1087 [],
1088 is_const=True)
1089 return
1090
1091def register_Ns3ByteTagList_methods(root_module, cls):
1092 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::ByteTagList() [constructor]
1093 cls.add_constructor([])
1094 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::ByteTagList(ns3::ByteTagList const & o) [copy constructor]
1095 cls.add_constructor([param('ns3::ByteTagList const &', 'o')])
1096 ## 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]
1097 cls.add_method('Add',
1098 'ns3::TagBuffer',
1099 [param('ns3::TypeId', 'tid'), param('uint32_t', 'bufferSize'), param('int32_t', 'start'), param('int32_t', 'end')])
1100 ## byte-tag-list.h (module 'network'): void ns3::ByteTagList::Add(ns3::ByteTagList const & o) [member function]
1101 cls.add_method('Add',
1102 'void',
1103 [param('ns3::ByteTagList const &', 'o')])
1104 ## byte-tag-list.h (module 'network'): void ns3::ByteTagList::AddAtEnd(int32_t adjustment, int32_t appendOffset) [member function]
1105 cls.add_method('AddAtEnd',
1106 'void',
1107 [param('int32_t', 'adjustment'), param('int32_t', 'appendOffset')])
1108 ## byte-tag-list.h (module 'network'): void ns3::ByteTagList::AddAtStart(int32_t adjustment, int32_t prependOffset) [member function]
1109 cls.add_method('AddAtStart',
1110 'void',
1111 [param('int32_t', 'adjustment'), param('int32_t', 'prependOffset')])
1112 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator ns3::ByteTagList::Begin(int32_t offsetStart, int32_t offsetEnd) const [member function]
1113 cls.add_method('Begin',
1114 'ns3::ByteTagList::Iterator',
1115 [param('int32_t', 'offsetStart'), param('int32_t', 'offsetEnd')],
1116 is_const=True)
1117 ## byte-tag-list.h (module 'network'): void ns3::ByteTagList::RemoveAll() [member function]
1118 cls.add_method('RemoveAll',
1119 'void',
1120 [])
1121 return
1122
1123def register_Ns3ByteTagListIterator_methods(root_module, cls):
1124 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Iterator(ns3::ByteTagList::Iterator const & arg0) [copy constructor]
1125 cls.add_constructor([param('ns3::ByteTagList::Iterator const &', 'arg0')])
1126 ## byte-tag-list.h (module 'network'): uint32_t ns3::ByteTagList::Iterator::GetOffsetStart() const [member function]
1127 cls.add_method('GetOffsetStart',
1128 'uint32_t',
1129 [],
1130 is_const=True)
1131 ## byte-tag-list.h (module 'network'): bool ns3::ByteTagList::Iterator::HasNext() const [member function]
1132 cls.add_method('HasNext',
1133 'bool',
1134 [],
1135 is_const=True)
1136 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item ns3::ByteTagList::Iterator::Next() [member function]
1137 cls.add_method('Next',
1138 'ns3::ByteTagList::Iterator::Item',
1139 [])
1140 return
1141
1142def register_Ns3ByteTagListIteratorItem_methods(root_module, cls):
1143 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::Item(ns3::ByteTagList::Iterator::Item const & arg0) [copy constructor]
1144 cls.add_constructor([param('ns3::ByteTagList::Iterator::Item const &', 'arg0')])
1145 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::Item(ns3::TagBuffer buf) [constructor]
1146 cls.add_constructor([param('ns3::TagBuffer', 'buf')])
1147 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::buf [variable]
1148 cls.add_instance_attribute('buf', 'ns3::TagBuffer', is_const=False)
1149 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::end [variable]
1150 cls.add_instance_attribute('end', 'int32_t', is_const=False)
1151 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::size [variable]
1152 cls.add_instance_attribute('size', 'uint32_t', is_const=False)
1153 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::start [variable]
1154 cls.add_instance_attribute('start', 'int32_t', is_const=False)
1155 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::tid [variable]
1156 cls.add_instance_attribute('tid', 'ns3::TypeId', is_const=False)
1157 return
1158
1159def register_Ns3CallbackBase_methods(root_module, cls):
1160 ## callback.h (module 'core'): ns3::CallbackBase::CallbackBase(ns3::CallbackBase const & arg0) [copy constructor]
1161 cls.add_constructor([param('ns3::CallbackBase const &', 'arg0')])
1162 ## callback.h (module 'core'): ns3::CallbackBase::CallbackBase() [constructor]
1163 cls.add_constructor([])
1164 ## callback.h (module 'core'): ns3::Ptr<ns3::CallbackImplBase> ns3::CallbackBase::GetImpl() const [member function]
1165 cls.add_method('GetImpl',
1166 'ns3::Ptr< ns3::CallbackImplBase >',
1167 [],
1168 is_const=True)
1169 ## callback.h (module 'core'): ns3::CallbackBase::CallbackBase(ns3::Ptr<ns3::CallbackImplBase> impl) [constructor]
1170 cls.add_constructor([param('ns3::Ptr< ns3::CallbackImplBase >', 'impl')],
1171 visibility='protected')
1172 ## callback.h (module 'core'): static std::string ns3::CallbackBase::Demangle(std::string const & mangled) [member function]
1173 cls.add_method('Demangle',
1174 'std::string',
1175 [param('std::string const &', 'mangled')],
1176 is_static=True, visibility='protected')
1177 return
1178
Alexander Afanasyev381dea02011-11-03 08:33:26 -07001179def register_Ns3EventId_methods(root_module, cls):
1180 cls.add_binary_comparison_operator('!=')
1181 cls.add_binary_comparison_operator('==')
1182 ## event-id.h (module 'core'): ns3::EventId::EventId(ns3::EventId const & arg0) [copy constructor]
1183 cls.add_constructor([param('ns3::EventId const &', 'arg0')])
1184 ## event-id.h (module 'core'): ns3::EventId::EventId() [constructor]
1185 cls.add_constructor([])
1186 ## event-id.h (module 'core'): ns3::EventId::EventId(ns3::Ptr<ns3::EventImpl> const & impl, uint64_t ts, uint32_t context, uint32_t uid) [constructor]
1187 cls.add_constructor([param('ns3::Ptr< ns3::EventImpl > const &', 'impl'), param('uint64_t', 'ts'), param('uint32_t', 'context'), param('uint32_t', 'uid')])
1188 ## event-id.h (module 'core'): void ns3::EventId::Cancel() [member function]
1189 cls.add_method('Cancel',
1190 'void',
1191 [])
1192 ## event-id.h (module 'core'): uint32_t ns3::EventId::GetContext() const [member function]
1193 cls.add_method('GetContext',
1194 'uint32_t',
1195 [],
1196 is_const=True)
1197 ## event-id.h (module 'core'): uint64_t ns3::EventId::GetTs() const [member function]
1198 cls.add_method('GetTs',
1199 'uint64_t',
1200 [],
1201 is_const=True)
1202 ## event-id.h (module 'core'): uint32_t ns3::EventId::GetUid() const [member function]
1203 cls.add_method('GetUid',
1204 'uint32_t',
1205 [],
1206 is_const=True)
1207 ## event-id.h (module 'core'): bool ns3::EventId::IsExpired() const [member function]
1208 cls.add_method('IsExpired',
1209 'bool',
1210 [],
1211 is_const=True)
1212 ## event-id.h (module 'core'): bool ns3::EventId::IsRunning() const [member function]
1213 cls.add_method('IsRunning',
1214 'bool',
1215 [],
1216 is_const=True)
1217 ## event-id.h (module 'core'): ns3::EventImpl * ns3::EventId::PeekEventImpl() const [member function]
1218 cls.add_method('PeekEventImpl',
1219 'ns3::EventImpl *',
1220 [],
1221 is_const=True)
1222 return
1223
1224def register_Ns3Ipv4Address_methods(root_module, cls):
1225 cls.add_binary_comparison_operator('!=')
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07001226 cls.add_output_stream_operator()
Alexander Afanasyeva28ec562012-10-25 14:07:32 -07001227 cls.add_binary_comparison_operator('==')
Alexander Afanasyev381dea02011-11-03 08:33:26 -07001228 cls.add_binary_comparison_operator('<')
1229 ## ipv4-address.h (module 'network'): ns3::Ipv4Address::Ipv4Address(ns3::Ipv4Address const & arg0) [copy constructor]
1230 cls.add_constructor([param('ns3::Ipv4Address const &', 'arg0')])
1231 ## ipv4-address.h (module 'network'): ns3::Ipv4Address::Ipv4Address() [constructor]
1232 cls.add_constructor([])
1233 ## ipv4-address.h (module 'network'): ns3::Ipv4Address::Ipv4Address(uint32_t address) [constructor]
1234 cls.add_constructor([param('uint32_t', 'address')])
1235 ## ipv4-address.h (module 'network'): ns3::Ipv4Address::Ipv4Address(char const * address) [constructor]
1236 cls.add_constructor([param('char const *', 'address')])
1237 ## ipv4-address.h (module 'network'): ns3::Ipv4Address ns3::Ipv4Address::CombineMask(ns3::Ipv4Mask const & mask) const [member function]
1238 cls.add_method('CombineMask',
1239 'ns3::Ipv4Address',
1240 [param('ns3::Ipv4Mask const &', 'mask')],
1241 is_const=True)
1242 ## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::ConvertFrom(ns3::Address const & address) [member function]
1243 cls.add_method('ConvertFrom',
1244 'ns3::Ipv4Address',
1245 [param('ns3::Address const &', 'address')],
1246 is_static=True)
1247 ## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::Deserialize(uint8_t const * buf) [member function]
1248 cls.add_method('Deserialize',
1249 'ns3::Ipv4Address',
1250 [param('uint8_t const *', 'buf')],
1251 is_static=True)
Alexander Afanasyev4052f952012-06-08 17:57:59 -07001252 ## ipv4-address.h (module 'network'): uint32_t ns3::Ipv4Address::Get() const [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07001253 cls.add_method('Get',
Alexander Afanasyev4052f952012-06-08 17:57:59 -07001254 'uint32_t',
Alexander Afanasyev381dea02011-11-03 08:33:26 -07001255 [],
1256 is_const=True)
1257 ## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::GetAny() [member function]
1258 cls.add_method('GetAny',
1259 'ns3::Ipv4Address',
1260 [],
1261 is_static=True)
1262 ## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::GetBroadcast() [member function]
1263 cls.add_method('GetBroadcast',
1264 'ns3::Ipv4Address',
1265 [],
1266 is_static=True)
1267 ## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::GetLoopback() [member function]
1268 cls.add_method('GetLoopback',
1269 'ns3::Ipv4Address',
1270 [],
1271 is_static=True)
1272 ## ipv4-address.h (module 'network'): ns3::Ipv4Address ns3::Ipv4Address::GetSubnetDirectedBroadcast(ns3::Ipv4Mask const & mask) const [member function]
1273 cls.add_method('GetSubnetDirectedBroadcast',
1274 'ns3::Ipv4Address',
1275 [param('ns3::Ipv4Mask const &', 'mask')],
1276 is_const=True)
1277 ## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::GetZero() [member function]
1278 cls.add_method('GetZero',
1279 'ns3::Ipv4Address',
1280 [],
1281 is_static=True)
1282 ## ipv4-address.h (module 'network'): bool ns3::Ipv4Address::IsBroadcast() const [member function]
1283 cls.add_method('IsBroadcast',
1284 'bool',
1285 [],
1286 is_const=True)
1287 ## ipv4-address.h (module 'network'): bool ns3::Ipv4Address::IsEqual(ns3::Ipv4Address const & other) const [member function]
1288 cls.add_method('IsEqual',
1289 'bool',
1290 [param('ns3::Ipv4Address const &', 'other')],
1291 is_const=True)
1292 ## ipv4-address.h (module 'network'): bool ns3::Ipv4Address::IsLocalMulticast() const [member function]
1293 cls.add_method('IsLocalMulticast',
1294 'bool',
1295 [],
1296 is_const=True)
1297 ## ipv4-address.h (module 'network'): static bool ns3::Ipv4Address::IsMatchingType(ns3::Address const & address) [member function]
1298 cls.add_method('IsMatchingType',
1299 'bool',
1300 [param('ns3::Address const &', 'address')],
1301 is_static=True)
1302 ## ipv4-address.h (module 'network'): bool ns3::Ipv4Address::IsMulticast() const [member function]
1303 cls.add_method('IsMulticast',
1304 'bool',
1305 [],
1306 is_const=True)
1307 ## ipv4-address.h (module 'network'): bool ns3::Ipv4Address::IsSubnetDirectedBroadcast(ns3::Ipv4Mask const & mask) const [member function]
1308 cls.add_method('IsSubnetDirectedBroadcast',
1309 'bool',
1310 [param('ns3::Ipv4Mask const &', 'mask')],
1311 is_const=True)
1312 ## ipv4-address.h (module 'network'): void ns3::Ipv4Address::Print(std::ostream & os) const [member function]
1313 cls.add_method('Print',
1314 'void',
1315 [param('std::ostream &', 'os')],
1316 is_const=True)
1317 ## ipv4-address.h (module 'network'): void ns3::Ipv4Address::Serialize(uint8_t * buf) const [member function]
1318 cls.add_method('Serialize',
1319 'void',
1320 [param('uint8_t *', 'buf')],
1321 is_const=True)
1322 ## ipv4-address.h (module 'network'): void ns3::Ipv4Address::Set(uint32_t address) [member function]
1323 cls.add_method('Set',
1324 'void',
1325 [param('uint32_t', 'address')])
1326 ## ipv4-address.h (module 'network'): void ns3::Ipv4Address::Set(char const * address) [member function]
1327 cls.add_method('Set',
1328 'void',
1329 [param('char const *', 'address')])
1330 return
1331
1332def register_Ns3Ipv4Mask_methods(root_module, cls):
1333 cls.add_binary_comparison_operator('!=')
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07001334 cls.add_output_stream_operator()
Alexander Afanasyeva28ec562012-10-25 14:07:32 -07001335 cls.add_binary_comparison_operator('==')
Alexander Afanasyev381dea02011-11-03 08:33:26 -07001336 ## ipv4-address.h (module 'network'): ns3::Ipv4Mask::Ipv4Mask(ns3::Ipv4Mask const & arg0) [copy constructor]
1337 cls.add_constructor([param('ns3::Ipv4Mask const &', 'arg0')])
1338 ## ipv4-address.h (module 'network'): ns3::Ipv4Mask::Ipv4Mask() [constructor]
1339 cls.add_constructor([])
1340 ## ipv4-address.h (module 'network'): ns3::Ipv4Mask::Ipv4Mask(uint32_t mask) [constructor]
1341 cls.add_constructor([param('uint32_t', 'mask')])
1342 ## ipv4-address.h (module 'network'): ns3::Ipv4Mask::Ipv4Mask(char const * mask) [constructor]
1343 cls.add_constructor([param('char const *', 'mask')])
1344 ## ipv4-address.h (module 'network'): uint32_t ns3::Ipv4Mask::Get() const [member function]
1345 cls.add_method('Get',
1346 'uint32_t',
1347 [],
1348 is_const=True)
1349 ## ipv4-address.h (module 'network'): uint32_t ns3::Ipv4Mask::GetInverse() const [member function]
1350 cls.add_method('GetInverse',
1351 'uint32_t',
1352 [],
1353 is_const=True)
1354 ## ipv4-address.h (module 'network'): static ns3::Ipv4Mask ns3::Ipv4Mask::GetLoopback() [member function]
1355 cls.add_method('GetLoopback',
1356 'ns3::Ipv4Mask',
1357 [],
1358 is_static=True)
1359 ## ipv4-address.h (module 'network'): static ns3::Ipv4Mask ns3::Ipv4Mask::GetOnes() [member function]
1360 cls.add_method('GetOnes',
1361 'ns3::Ipv4Mask',
1362 [],
1363 is_static=True)
1364 ## ipv4-address.h (module 'network'): uint16_t ns3::Ipv4Mask::GetPrefixLength() const [member function]
1365 cls.add_method('GetPrefixLength',
1366 'uint16_t',
1367 [],
1368 is_const=True)
1369 ## ipv4-address.h (module 'network'): static ns3::Ipv4Mask ns3::Ipv4Mask::GetZero() [member function]
1370 cls.add_method('GetZero',
1371 'ns3::Ipv4Mask',
1372 [],
1373 is_static=True)
1374 ## ipv4-address.h (module 'network'): bool ns3::Ipv4Mask::IsEqual(ns3::Ipv4Mask other) const [member function]
1375 cls.add_method('IsEqual',
1376 'bool',
1377 [param('ns3::Ipv4Mask', 'other')],
1378 is_const=True)
1379 ## ipv4-address.h (module 'network'): bool ns3::Ipv4Mask::IsMatch(ns3::Ipv4Address a, ns3::Ipv4Address b) const [member function]
1380 cls.add_method('IsMatch',
1381 'bool',
1382 [param('ns3::Ipv4Address', 'a'), param('ns3::Ipv4Address', 'b')],
1383 is_const=True)
1384 ## ipv4-address.h (module 'network'): void ns3::Ipv4Mask::Print(std::ostream & os) const [member function]
1385 cls.add_method('Print',
1386 'void',
1387 [param('std::ostream &', 'os')],
1388 is_const=True)
1389 ## ipv4-address.h (module 'network'): void ns3::Ipv4Mask::Set(uint32_t mask) [member function]
1390 cls.add_method('Set',
1391 'void',
1392 [param('uint32_t', 'mask')])
1393 return
1394
1395def register_Ns3Ipv6Address_methods(root_module, cls):
1396 cls.add_binary_comparison_operator('!=')
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07001397 cls.add_output_stream_operator()
Alexander Afanasyeva28ec562012-10-25 14:07:32 -07001398 cls.add_binary_comparison_operator('==')
Alexander Afanasyev381dea02011-11-03 08:33:26 -07001399 cls.add_binary_comparison_operator('<')
1400 ## ipv6-address.h (module 'network'): ns3::Ipv6Address::Ipv6Address() [constructor]
1401 cls.add_constructor([])
1402 ## ipv6-address.h (module 'network'): ns3::Ipv6Address::Ipv6Address(char const * address) [constructor]
1403 cls.add_constructor([param('char const *', 'address')])
1404 ## ipv6-address.h (module 'network'): ns3::Ipv6Address::Ipv6Address(uint8_t * address) [constructor]
1405 cls.add_constructor([param('uint8_t *', 'address')])
1406 ## ipv6-address.h (module 'network'): ns3::Ipv6Address::Ipv6Address(ns3::Ipv6Address const & addr) [copy constructor]
1407 cls.add_constructor([param('ns3::Ipv6Address const &', 'addr')])
1408 ## ipv6-address.h (module 'network'): ns3::Ipv6Address::Ipv6Address(ns3::Ipv6Address const * addr) [constructor]
1409 cls.add_constructor([param('ns3::Ipv6Address const *', 'addr')])
1410 ## ipv6-address.h (module 'network'): ns3::Ipv6Address ns3::Ipv6Address::CombinePrefix(ns3::Ipv6Prefix const & prefix) [member function]
1411 cls.add_method('CombinePrefix',
1412 'ns3::Ipv6Address',
1413 [param('ns3::Ipv6Prefix const &', 'prefix')])
1414 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::ConvertFrom(ns3::Address const & address) [member function]
1415 cls.add_method('ConvertFrom',
1416 'ns3::Ipv6Address',
1417 [param('ns3::Address const &', 'address')],
1418 is_static=True)
1419 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::Deserialize(uint8_t const * buf) [member function]
1420 cls.add_method('Deserialize',
1421 'ns3::Ipv6Address',
1422 [param('uint8_t const *', 'buf')],
1423 is_static=True)
1424 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetAllHostsMulticast() [member function]
1425 cls.add_method('GetAllHostsMulticast',
1426 'ns3::Ipv6Address',
1427 [],
1428 is_static=True)
1429 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetAllNodesMulticast() [member function]
1430 cls.add_method('GetAllNodesMulticast',
1431 'ns3::Ipv6Address',
1432 [],
1433 is_static=True)
1434 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetAllRoutersMulticast() [member function]
1435 cls.add_method('GetAllRoutersMulticast',
1436 'ns3::Ipv6Address',
1437 [],
1438 is_static=True)
1439 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetAny() [member function]
1440 cls.add_method('GetAny',
1441 'ns3::Ipv6Address',
1442 [],
1443 is_static=True)
1444 ## ipv6-address.h (module 'network'): void ns3::Ipv6Address::GetBytes(uint8_t * buf) const [member function]
1445 cls.add_method('GetBytes',
1446 'void',
1447 [param('uint8_t *', 'buf')],
1448 is_const=True)
Alexander Afanasyev6f933532012-02-29 13:30:37 -08001449 ## ipv6-address.h (module 'network'): ns3::Ipv4Address ns3::Ipv6Address::GetIpv4MappedAddress() const [member function]
1450 cls.add_method('GetIpv4MappedAddress',
1451 'ns3::Ipv4Address',
1452 [],
1453 is_const=True)
Alexander Afanasyev381dea02011-11-03 08:33:26 -07001454 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetLoopback() [member function]
1455 cls.add_method('GetLoopback',
1456 'ns3::Ipv6Address',
1457 [],
1458 is_static=True)
1459 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetOnes() [member function]
1460 cls.add_method('GetOnes',
1461 'ns3::Ipv6Address',
1462 [],
1463 is_static=True)
1464 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetZero() [member function]
1465 cls.add_method('GetZero',
1466 'ns3::Ipv6Address',
1467 [],
1468 is_static=True)
1469 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsAllHostsMulticast() const [member function]
1470 cls.add_method('IsAllHostsMulticast',
1471 'bool',
1472 [],
1473 is_const=True)
1474 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsAllNodesMulticast() const [member function]
1475 cls.add_method('IsAllNodesMulticast',
1476 'bool',
1477 [],
1478 is_const=True)
1479 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsAllRoutersMulticast() const [member function]
1480 cls.add_method('IsAllRoutersMulticast',
1481 'bool',
1482 [],
1483 is_const=True)
1484 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsAny() const [member function]
1485 cls.add_method('IsAny',
1486 'bool',
1487 [],
1488 is_const=True)
1489 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsEqual(ns3::Ipv6Address const & other) const [member function]
1490 cls.add_method('IsEqual',
1491 'bool',
1492 [param('ns3::Ipv6Address const &', 'other')],
1493 is_const=True)
Alexander Afanasyev6f933532012-02-29 13:30:37 -08001494 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsIpv4MappedAddress() [member function]
1495 cls.add_method('IsIpv4MappedAddress',
1496 'bool',
1497 [])
Alexander Afanasyev381dea02011-11-03 08:33:26 -07001498 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsLinkLocal() const [member function]
1499 cls.add_method('IsLinkLocal',
1500 'bool',
1501 [],
1502 is_const=True)
Alexander Afanasyev6f933532012-02-29 13:30:37 -08001503 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsLinkLocalMulticast() const [member function]
1504 cls.add_method('IsLinkLocalMulticast',
1505 'bool',
1506 [],
1507 is_const=True)
Alexander Afanasyev381dea02011-11-03 08:33:26 -07001508 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsLocalhost() const [member function]
1509 cls.add_method('IsLocalhost',
1510 'bool',
1511 [],
1512 is_const=True)
1513 ## ipv6-address.h (module 'network'): static bool ns3::Ipv6Address::IsMatchingType(ns3::Address const & address) [member function]
1514 cls.add_method('IsMatchingType',
1515 'bool',
1516 [param('ns3::Address const &', 'address')],
1517 is_static=True)
1518 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsMulticast() const [member function]
1519 cls.add_method('IsMulticast',
1520 'bool',
1521 [],
1522 is_const=True)
1523 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsSolicitedMulticast() const [member function]
1524 cls.add_method('IsSolicitedMulticast',
1525 'bool',
1526 [],
1527 is_const=True)
1528 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::MakeAutoconfiguredAddress(ns3::Mac48Address addr, ns3::Ipv6Address prefix) [member function]
1529 cls.add_method('MakeAutoconfiguredAddress',
1530 'ns3::Ipv6Address',
1531 [param('ns3::Mac48Address', 'addr'), param('ns3::Ipv6Address', 'prefix')],
1532 is_static=True)
1533 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::MakeAutoconfiguredLinkLocalAddress(ns3::Mac48Address mac) [member function]
1534 cls.add_method('MakeAutoconfiguredLinkLocalAddress',
1535 'ns3::Ipv6Address',
1536 [param('ns3::Mac48Address', 'mac')],
1537 is_static=True)
Alexander Afanasyev6f933532012-02-29 13:30:37 -08001538 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::MakeIpv4MappedAddress(ns3::Ipv4Address addr) [member function]
1539 cls.add_method('MakeIpv4MappedAddress',
1540 'ns3::Ipv6Address',
1541 [param('ns3::Ipv4Address', 'addr')],
1542 is_static=True)
Alexander Afanasyev381dea02011-11-03 08:33:26 -07001543 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::MakeSolicitedAddress(ns3::Ipv6Address addr) [member function]
1544 cls.add_method('MakeSolicitedAddress',
1545 'ns3::Ipv6Address',
1546 [param('ns3::Ipv6Address', 'addr')],
1547 is_static=True)
1548 ## ipv6-address.h (module 'network'): void ns3::Ipv6Address::Print(std::ostream & os) const [member function]
1549 cls.add_method('Print',
1550 'void',
1551 [param('std::ostream &', 'os')],
1552 is_const=True)
1553 ## ipv6-address.h (module 'network'): void ns3::Ipv6Address::Serialize(uint8_t * buf) const [member function]
1554 cls.add_method('Serialize',
1555 'void',
1556 [param('uint8_t *', 'buf')],
1557 is_const=True)
1558 ## ipv6-address.h (module 'network'): void ns3::Ipv6Address::Set(char const * address) [member function]
1559 cls.add_method('Set',
1560 'void',
1561 [param('char const *', 'address')])
1562 ## ipv6-address.h (module 'network'): void ns3::Ipv6Address::Set(uint8_t * address) [member function]
1563 cls.add_method('Set',
1564 'void',
1565 [param('uint8_t *', 'address')])
1566 return
1567
1568def register_Ns3Ipv6Prefix_methods(root_module, cls):
1569 cls.add_binary_comparison_operator('!=')
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07001570 cls.add_output_stream_operator()
Alexander Afanasyeva28ec562012-10-25 14:07:32 -07001571 cls.add_binary_comparison_operator('==')
Alexander Afanasyev381dea02011-11-03 08:33:26 -07001572 ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix() [constructor]
1573 cls.add_constructor([])
1574 ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix(uint8_t * prefix) [constructor]
1575 cls.add_constructor([param('uint8_t *', 'prefix')])
1576 ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix(char const * prefix) [constructor]
1577 cls.add_constructor([param('char const *', 'prefix')])
1578 ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix(uint8_t prefix) [constructor]
1579 cls.add_constructor([param('uint8_t', 'prefix')])
1580 ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix(ns3::Ipv6Prefix const & prefix) [copy constructor]
1581 cls.add_constructor([param('ns3::Ipv6Prefix const &', 'prefix')])
1582 ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix(ns3::Ipv6Prefix const * prefix) [constructor]
1583 cls.add_constructor([param('ns3::Ipv6Prefix const *', 'prefix')])
1584 ## ipv6-address.h (module 'network'): void ns3::Ipv6Prefix::GetBytes(uint8_t * buf) const [member function]
1585 cls.add_method('GetBytes',
1586 'void',
1587 [param('uint8_t *', 'buf')],
1588 is_const=True)
1589 ## ipv6-address.h (module 'network'): static ns3::Ipv6Prefix ns3::Ipv6Prefix::GetLoopback() [member function]
1590 cls.add_method('GetLoopback',
1591 'ns3::Ipv6Prefix',
1592 [],
1593 is_static=True)
1594 ## ipv6-address.h (module 'network'): static ns3::Ipv6Prefix ns3::Ipv6Prefix::GetOnes() [member function]
1595 cls.add_method('GetOnes',
1596 'ns3::Ipv6Prefix',
1597 [],
1598 is_static=True)
1599 ## ipv6-address.h (module 'network'): uint8_t ns3::Ipv6Prefix::GetPrefixLength() const [member function]
1600 cls.add_method('GetPrefixLength',
1601 'uint8_t',
1602 [],
1603 is_const=True)
1604 ## ipv6-address.h (module 'network'): static ns3::Ipv6Prefix ns3::Ipv6Prefix::GetZero() [member function]
1605 cls.add_method('GetZero',
1606 'ns3::Ipv6Prefix',
1607 [],
1608 is_static=True)
1609 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Prefix::IsEqual(ns3::Ipv6Prefix const & other) const [member function]
1610 cls.add_method('IsEqual',
1611 'bool',
1612 [param('ns3::Ipv6Prefix const &', 'other')],
1613 is_const=True)
1614 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Prefix::IsMatch(ns3::Ipv6Address a, ns3::Ipv6Address b) const [member function]
1615 cls.add_method('IsMatch',
1616 'bool',
1617 [param('ns3::Ipv6Address', 'a'), param('ns3::Ipv6Address', 'b')],
1618 is_const=True)
1619 ## ipv6-address.h (module 'network'): void ns3::Ipv6Prefix::Print(std::ostream & os) const [member function]
1620 cls.add_method('Print',
1621 'void',
1622 [param('std::ostream &', 'os')],
1623 is_const=True)
1624 return
1625
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07001626def register_Ns3NetDeviceContainer_methods(root_module, cls):
1627 ## net-device-container.h (module 'network'): ns3::NetDeviceContainer::NetDeviceContainer(ns3::NetDeviceContainer const & arg0) [copy constructor]
1628 cls.add_constructor([param('ns3::NetDeviceContainer const &', 'arg0')])
1629 ## net-device-container.h (module 'network'): ns3::NetDeviceContainer::NetDeviceContainer() [constructor]
1630 cls.add_constructor([])
1631 ## net-device-container.h (module 'network'): ns3::NetDeviceContainer::NetDeviceContainer(ns3::Ptr<ns3::NetDevice> dev) [constructor]
1632 cls.add_constructor([param('ns3::Ptr< ns3::NetDevice >', 'dev')])
1633 ## net-device-container.h (module 'network'): ns3::NetDeviceContainer::NetDeviceContainer(std::string devName) [constructor]
1634 cls.add_constructor([param('std::string', 'devName')])
1635 ## net-device-container.h (module 'network'): ns3::NetDeviceContainer::NetDeviceContainer(ns3::NetDeviceContainer const & a, ns3::NetDeviceContainer const & b) [constructor]
1636 cls.add_constructor([param('ns3::NetDeviceContainer const &', 'a'), param('ns3::NetDeviceContainer const &', 'b')])
1637 ## net-device-container.h (module 'network'): void ns3::NetDeviceContainer::Add(ns3::NetDeviceContainer other) [member function]
1638 cls.add_method('Add',
1639 'void',
1640 [param('ns3::NetDeviceContainer', 'other')])
1641 ## net-device-container.h (module 'network'): void ns3::NetDeviceContainer::Add(ns3::Ptr<ns3::NetDevice> device) [member function]
1642 cls.add_method('Add',
1643 'void',
1644 [param('ns3::Ptr< ns3::NetDevice >', 'device')])
1645 ## net-device-container.h (module 'network'): void ns3::NetDeviceContainer::Add(std::string deviceName) [member function]
1646 cls.add_method('Add',
1647 'void',
1648 [param('std::string', 'deviceName')])
1649 ## 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]
1650 cls.add_method('Begin',
1651 '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::NetDevice > const, std::vector< ns3::Ptr< ns3::NetDevice > > >',
1652 [],
1653 is_const=True)
1654 ## 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]
1655 cls.add_method('End',
1656 '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::NetDevice > const, std::vector< ns3::Ptr< ns3::NetDevice > > >',
1657 [],
1658 is_const=True)
1659 ## net-device-container.h (module 'network'): ns3::Ptr<ns3::NetDevice> ns3::NetDeviceContainer::Get(uint32_t i) const [member function]
1660 cls.add_method('Get',
1661 'ns3::Ptr< ns3::NetDevice >',
1662 [param('uint32_t', 'i')],
1663 is_const=True)
1664 ## net-device-container.h (module 'network'): uint32_t ns3::NetDeviceContainer::GetN() const [member function]
1665 cls.add_method('GetN',
1666 'uint32_t',
1667 [],
1668 is_const=True)
1669 return
1670
Alexander Afanasyev381dea02011-11-03 08:33:26 -07001671def register_Ns3NodeContainer_methods(root_module, cls):
1672 ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer(ns3::NodeContainer const & arg0) [copy constructor]
1673 cls.add_constructor([param('ns3::NodeContainer const &', 'arg0')])
1674 ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer() [constructor]
1675 cls.add_constructor([])
1676 ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer(ns3::Ptr<ns3::Node> node) [constructor]
1677 cls.add_constructor([param('ns3::Ptr< ns3::Node >', 'node')])
1678 ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer(std::string nodeName) [constructor]
1679 cls.add_constructor([param('std::string', 'nodeName')])
1680 ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer(ns3::NodeContainer const & a, ns3::NodeContainer const & b) [constructor]
1681 cls.add_constructor([param('ns3::NodeContainer const &', 'a'), param('ns3::NodeContainer const &', 'b')])
1682 ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer(ns3::NodeContainer const & a, ns3::NodeContainer const & b, ns3::NodeContainer const & c) [constructor]
1683 cls.add_constructor([param('ns3::NodeContainer const &', 'a'), param('ns3::NodeContainer const &', 'b'), param('ns3::NodeContainer const &', 'c')])
1684 ## 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]
1685 cls.add_constructor([param('ns3::NodeContainer const &', 'a'), param('ns3::NodeContainer const &', 'b'), param('ns3::NodeContainer const &', 'c'), param('ns3::NodeContainer const &', 'd')])
1686 ## 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]
1687 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')])
1688 ## node-container.h (module 'network'): void ns3::NodeContainer::Add(ns3::NodeContainer other) [member function]
1689 cls.add_method('Add',
1690 'void',
1691 [param('ns3::NodeContainer', 'other')])
1692 ## node-container.h (module 'network'): void ns3::NodeContainer::Add(ns3::Ptr<ns3::Node> node) [member function]
1693 cls.add_method('Add',
1694 'void',
1695 [param('ns3::Ptr< ns3::Node >', 'node')])
1696 ## node-container.h (module 'network'): void ns3::NodeContainer::Add(std::string nodeName) [member function]
1697 cls.add_method('Add',
1698 'void',
1699 [param('std::string', 'nodeName')])
1700 ## 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]
1701 cls.add_method('Begin',
1702 '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Node > const, std::vector< ns3::Ptr< ns3::Node > > >',
1703 [],
1704 is_const=True)
1705 ## node-container.h (module 'network'): void ns3::NodeContainer::Create(uint32_t n) [member function]
1706 cls.add_method('Create',
1707 'void',
1708 [param('uint32_t', 'n')])
1709 ## node-container.h (module 'network'): void ns3::NodeContainer::Create(uint32_t n, uint32_t systemId) [member function]
1710 cls.add_method('Create',
1711 'void',
1712 [param('uint32_t', 'n'), param('uint32_t', 'systemId')])
1713 ## 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]
1714 cls.add_method('End',
1715 '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Node > const, std::vector< ns3::Ptr< ns3::Node > > >',
1716 [],
1717 is_const=True)
1718 ## node-container.h (module 'network'): ns3::Ptr<ns3::Node> ns3::NodeContainer::Get(uint32_t i) const [member function]
1719 cls.add_method('Get',
1720 'ns3::Ptr< ns3::Node >',
1721 [param('uint32_t', 'i')],
1722 is_const=True)
1723 ## node-container.h (module 'network'): static ns3::NodeContainer ns3::NodeContainer::GetGlobal() [member function]
1724 cls.add_method('GetGlobal',
1725 'ns3::NodeContainer',
1726 [],
1727 is_static=True)
1728 ## node-container.h (module 'network'): uint32_t ns3::NodeContainer::GetN() const [member function]
1729 cls.add_method('GetN',
1730 'uint32_t',
1731 [],
1732 is_const=True)
Alexander Afanasyev858d5312013-07-10 18:50:18 -07001733 ## 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]
1734 cls.add_method('begin',
1735 '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Node > const, std::vector< ns3::Ptr< ns3::Node > > >',
1736 [],
1737 is_const=True)
1738 ## 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]
1739 cls.add_method('begin',
1740 '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Node >, std::vector< ns3::Ptr< ns3::Node > > >',
1741 [])
1742 ## 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]
1743 cls.add_method('end',
1744 '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Node > const, std::vector< ns3::Ptr< ns3::Node > > >',
1745 [],
1746 is_const=True)
1747 ## 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]
1748 cls.add_method('end',
1749 '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Node >, std::vector< ns3::Ptr< ns3::Node > > >',
1750 [])
1751 ## node-container.h (module 'network'): uint32_t ns3::NodeContainer::size() const [member function]
1752 cls.add_method('size',
1753 'uint32_t',
1754 [],
1755 is_const=True)
Alexander Afanasyev381dea02011-11-03 08:33:26 -07001756 return
1757
1758def register_Ns3ObjectBase_methods(root_module, cls):
1759 ## object-base.h (module 'core'): ns3::ObjectBase::ObjectBase() [constructor]
1760 cls.add_constructor([])
1761 ## object-base.h (module 'core'): ns3::ObjectBase::ObjectBase(ns3::ObjectBase const & arg0) [copy constructor]
1762 cls.add_constructor([param('ns3::ObjectBase const &', 'arg0')])
1763 ## object-base.h (module 'core'): void ns3::ObjectBase::GetAttribute(std::string name, ns3::AttributeValue & value) const [member function]
1764 cls.add_method('GetAttribute',
1765 'void',
1766 [param('std::string', 'name'), param('ns3::AttributeValue &', 'value')],
1767 is_const=True)
1768 ## object-base.h (module 'core'): bool ns3::ObjectBase::GetAttributeFailSafe(std::string name, ns3::AttributeValue & attribute) const [member function]
1769 cls.add_method('GetAttributeFailSafe',
1770 'bool',
1771 [param('std::string', 'name'), param('ns3::AttributeValue &', 'attribute')],
1772 is_const=True)
1773 ## object-base.h (module 'core'): ns3::TypeId ns3::ObjectBase::GetInstanceTypeId() const [member function]
1774 cls.add_method('GetInstanceTypeId',
1775 'ns3::TypeId',
1776 [],
1777 is_pure_virtual=True, is_const=True, is_virtual=True)
1778 ## object-base.h (module 'core'): static ns3::TypeId ns3::ObjectBase::GetTypeId() [member function]
1779 cls.add_method('GetTypeId',
1780 'ns3::TypeId',
1781 [],
1782 is_static=True)
1783 ## object-base.h (module 'core'): void ns3::ObjectBase::SetAttribute(std::string name, ns3::AttributeValue const & value) [member function]
1784 cls.add_method('SetAttribute',
1785 'void',
1786 [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')])
1787 ## object-base.h (module 'core'): bool ns3::ObjectBase::SetAttributeFailSafe(std::string name, ns3::AttributeValue const & value) [member function]
1788 cls.add_method('SetAttributeFailSafe',
1789 'bool',
1790 [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')])
1791 ## object-base.h (module 'core'): bool ns3::ObjectBase::TraceConnect(std::string name, std::string context, ns3::CallbackBase const & cb) [member function]
1792 cls.add_method('TraceConnect',
1793 'bool',
1794 [param('std::string', 'name'), param('std::string', 'context'), param('ns3::CallbackBase const &', 'cb')])
1795 ## object-base.h (module 'core'): bool ns3::ObjectBase::TraceConnectWithoutContext(std::string name, ns3::CallbackBase const & cb) [member function]
1796 cls.add_method('TraceConnectWithoutContext',
1797 'bool',
1798 [param('std::string', 'name'), param('ns3::CallbackBase const &', 'cb')])
1799 ## object-base.h (module 'core'): bool ns3::ObjectBase::TraceDisconnect(std::string name, std::string context, ns3::CallbackBase const & cb) [member function]
1800 cls.add_method('TraceDisconnect',
1801 'bool',
1802 [param('std::string', 'name'), param('std::string', 'context'), param('ns3::CallbackBase const &', 'cb')])
1803 ## object-base.h (module 'core'): bool ns3::ObjectBase::TraceDisconnectWithoutContext(std::string name, ns3::CallbackBase const & cb) [member function]
1804 cls.add_method('TraceDisconnectWithoutContext',
1805 'bool',
1806 [param('std::string', 'name'), param('ns3::CallbackBase const &', 'cb')])
1807 ## object-base.h (module 'core'): void ns3::ObjectBase::ConstructSelf(ns3::AttributeConstructionList const & attributes) [member function]
1808 cls.add_method('ConstructSelf',
1809 'void',
1810 [param('ns3::AttributeConstructionList const &', 'attributes')],
1811 visibility='protected')
1812 ## object-base.h (module 'core'): void ns3::ObjectBase::NotifyConstructionCompleted() [member function]
1813 cls.add_method('NotifyConstructionCompleted',
1814 'void',
1815 [],
1816 visibility='protected', is_virtual=True)
1817 return
1818
1819def register_Ns3ObjectDeleter_methods(root_module, cls):
1820 ## object.h (module 'core'): ns3::ObjectDeleter::ObjectDeleter() [constructor]
1821 cls.add_constructor([])
1822 ## object.h (module 'core'): ns3::ObjectDeleter::ObjectDeleter(ns3::ObjectDeleter const & arg0) [copy constructor]
1823 cls.add_constructor([param('ns3::ObjectDeleter const &', 'arg0')])
1824 ## object.h (module 'core'): static void ns3::ObjectDeleter::Delete(ns3::Object * object) [member function]
1825 cls.add_method('Delete',
1826 'void',
1827 [param('ns3::Object *', 'object')],
1828 is_static=True)
1829 return
1830
1831def register_Ns3ObjectFactory_methods(root_module, cls):
1832 cls.add_output_stream_operator()
1833 ## object-factory.h (module 'core'): ns3::ObjectFactory::ObjectFactory(ns3::ObjectFactory const & arg0) [copy constructor]
1834 cls.add_constructor([param('ns3::ObjectFactory const &', 'arg0')])
1835 ## object-factory.h (module 'core'): ns3::ObjectFactory::ObjectFactory() [constructor]
1836 cls.add_constructor([])
1837 ## object-factory.h (module 'core'): ns3::ObjectFactory::ObjectFactory(std::string typeId) [constructor]
1838 cls.add_constructor([param('std::string', 'typeId')])
1839 ## object-factory.h (module 'core'): ns3::Ptr<ns3::Object> ns3::ObjectFactory::Create() const [member function]
1840 cls.add_method('Create',
1841 'ns3::Ptr< ns3::Object >',
1842 [],
1843 is_const=True)
1844 ## object-factory.h (module 'core'): ns3::TypeId ns3::ObjectFactory::GetTypeId() const [member function]
1845 cls.add_method('GetTypeId',
1846 'ns3::TypeId',
1847 [],
1848 is_const=True)
1849 ## object-factory.h (module 'core'): void ns3::ObjectFactory::Set(std::string name, ns3::AttributeValue const & value) [member function]
1850 cls.add_method('Set',
1851 'void',
1852 [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')])
1853 ## object-factory.h (module 'core'): void ns3::ObjectFactory::SetTypeId(ns3::TypeId tid) [member function]
1854 cls.add_method('SetTypeId',
1855 'void',
1856 [param('ns3::TypeId', 'tid')])
1857 ## object-factory.h (module 'core'): void ns3::ObjectFactory::SetTypeId(char const * tid) [member function]
1858 cls.add_method('SetTypeId',
1859 'void',
1860 [param('char const *', 'tid')])
1861 ## object-factory.h (module 'core'): void ns3::ObjectFactory::SetTypeId(std::string tid) [member function]
1862 cls.add_method('SetTypeId',
1863 'void',
1864 [param('std::string', 'tid')])
1865 return
1866
1867def register_Ns3PacketMetadata_methods(root_module, cls):
1868 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::PacketMetadata(uint64_t uid, uint32_t size) [constructor]
1869 cls.add_constructor([param('uint64_t', 'uid'), param('uint32_t', 'size')])
1870 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::PacketMetadata(ns3::PacketMetadata const & o) [copy constructor]
1871 cls.add_constructor([param('ns3::PacketMetadata const &', 'o')])
1872 ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::AddAtEnd(ns3::PacketMetadata const & o) [member function]
1873 cls.add_method('AddAtEnd',
1874 'void',
1875 [param('ns3::PacketMetadata const &', 'o')])
1876 ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::AddHeader(ns3::Header const & header, uint32_t size) [member function]
1877 cls.add_method('AddHeader',
1878 'void',
1879 [param('ns3::Header const &', 'header'), param('uint32_t', 'size')])
1880 ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::AddPaddingAtEnd(uint32_t end) [member function]
1881 cls.add_method('AddPaddingAtEnd',
1882 'void',
1883 [param('uint32_t', 'end')])
1884 ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::AddTrailer(ns3::Trailer const & trailer, uint32_t size) [member function]
1885 cls.add_method('AddTrailer',
1886 'void',
1887 [param('ns3::Trailer const &', 'trailer'), param('uint32_t', 'size')])
1888 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::ItemIterator ns3::PacketMetadata::BeginItem(ns3::Buffer buffer) const [member function]
1889 cls.add_method('BeginItem',
1890 'ns3::PacketMetadata::ItemIterator',
1891 [param('ns3::Buffer', 'buffer')],
1892 is_const=True)
1893 ## packet-metadata.h (module 'network'): ns3::PacketMetadata ns3::PacketMetadata::CreateFragment(uint32_t start, uint32_t end) const [member function]
1894 cls.add_method('CreateFragment',
1895 'ns3::PacketMetadata',
1896 [param('uint32_t', 'start'), param('uint32_t', 'end')],
1897 is_const=True)
1898 ## packet-metadata.h (module 'network'): uint32_t ns3::PacketMetadata::Deserialize(uint8_t const * buffer, uint32_t size) [member function]
1899 cls.add_method('Deserialize',
1900 'uint32_t',
1901 [param('uint8_t const *', 'buffer'), param('uint32_t', 'size')])
1902 ## packet-metadata.h (module 'network'): static void ns3::PacketMetadata::Enable() [member function]
1903 cls.add_method('Enable',
1904 'void',
1905 [],
1906 is_static=True)
1907 ## packet-metadata.h (module 'network'): static void ns3::PacketMetadata::EnableChecking() [member function]
1908 cls.add_method('EnableChecking',
1909 'void',
1910 [],
1911 is_static=True)
1912 ## packet-metadata.h (module 'network'): uint32_t ns3::PacketMetadata::GetSerializedSize() const [member function]
1913 cls.add_method('GetSerializedSize',
1914 'uint32_t',
1915 [],
1916 is_const=True)
1917 ## packet-metadata.h (module 'network'): uint64_t ns3::PacketMetadata::GetUid() const [member function]
1918 cls.add_method('GetUid',
1919 'uint64_t',
1920 [],
1921 is_const=True)
1922 ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::RemoveAtEnd(uint32_t end) [member function]
1923 cls.add_method('RemoveAtEnd',
1924 'void',
1925 [param('uint32_t', 'end')])
1926 ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::RemoveAtStart(uint32_t start) [member function]
1927 cls.add_method('RemoveAtStart',
1928 'void',
1929 [param('uint32_t', 'start')])
1930 ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::RemoveHeader(ns3::Header const & header, uint32_t size) [member function]
1931 cls.add_method('RemoveHeader',
1932 'void',
1933 [param('ns3::Header const &', 'header'), param('uint32_t', 'size')])
1934 ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::RemoveTrailer(ns3::Trailer const & trailer, uint32_t size) [member function]
1935 cls.add_method('RemoveTrailer',
1936 'void',
1937 [param('ns3::Trailer const &', 'trailer'), param('uint32_t', 'size')])
1938 ## packet-metadata.h (module 'network'): uint32_t ns3::PacketMetadata::Serialize(uint8_t * buffer, uint32_t maxSize) const [member function]
1939 cls.add_method('Serialize',
1940 'uint32_t',
1941 [param('uint8_t *', 'buffer'), param('uint32_t', 'maxSize')],
1942 is_const=True)
1943 return
1944
1945def register_Ns3PacketMetadataItem_methods(root_module, cls):
1946 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::Item() [constructor]
1947 cls.add_constructor([])
1948 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::Item(ns3::PacketMetadata::Item const & arg0) [copy constructor]
1949 cls.add_constructor([param('ns3::PacketMetadata::Item const &', 'arg0')])
1950 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::current [variable]
1951 cls.add_instance_attribute('current', 'ns3::Buffer::Iterator', is_const=False)
1952 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::currentSize [variable]
1953 cls.add_instance_attribute('currentSize', 'uint32_t', is_const=False)
1954 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::currentTrimedFromEnd [variable]
1955 cls.add_instance_attribute('currentTrimedFromEnd', 'uint32_t', is_const=False)
1956 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::currentTrimedFromStart [variable]
1957 cls.add_instance_attribute('currentTrimedFromStart', 'uint32_t', is_const=False)
1958 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::isFragment [variable]
1959 cls.add_instance_attribute('isFragment', 'bool', is_const=False)
1960 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::tid [variable]
1961 cls.add_instance_attribute('tid', 'ns3::TypeId', is_const=False)
1962 return
1963
1964def register_Ns3PacketMetadataItemIterator_methods(root_module, cls):
1965 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::ItemIterator::ItemIterator(ns3::PacketMetadata::ItemIterator const & arg0) [copy constructor]
1966 cls.add_constructor([param('ns3::PacketMetadata::ItemIterator const &', 'arg0')])
1967 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::ItemIterator::ItemIterator(ns3::PacketMetadata const * metadata, ns3::Buffer buffer) [constructor]
1968 cls.add_constructor([param('ns3::PacketMetadata const *', 'metadata'), param('ns3::Buffer', 'buffer')])
1969 ## packet-metadata.h (module 'network'): bool ns3::PacketMetadata::ItemIterator::HasNext() const [member function]
1970 cls.add_method('HasNext',
1971 'bool',
1972 [],
1973 is_const=True)
1974 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item ns3::PacketMetadata::ItemIterator::Next() [member function]
1975 cls.add_method('Next',
1976 'ns3::PacketMetadata::Item',
1977 [])
1978 return
1979
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07001980def register_Ns3PacketTagIterator_methods(root_module, cls):
1981 ## packet.h (module 'network'): ns3::PacketTagIterator::PacketTagIterator(ns3::PacketTagIterator const & arg0) [copy constructor]
1982 cls.add_constructor([param('ns3::PacketTagIterator const &', 'arg0')])
1983 ## packet.h (module 'network'): bool ns3::PacketTagIterator::HasNext() const [member function]
1984 cls.add_method('HasNext',
Alexander Afanasyev381dea02011-11-03 08:33:26 -07001985 'bool',
Alexander Afanasyev381dea02011-11-03 08:33:26 -07001986 [],
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07001987 is_const=True)
1988 ## packet.h (module 'network'): ns3::PacketTagIterator::Item ns3::PacketTagIterator::Next() [member function]
1989 cls.add_method('Next',
1990 'ns3::PacketTagIterator::Item',
1991 [])
Alexander Afanasyev381dea02011-11-03 08:33:26 -07001992 return
1993
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07001994def register_Ns3PacketTagIteratorItem_methods(root_module, cls):
1995 ## packet.h (module 'network'): ns3::PacketTagIterator::Item::Item(ns3::PacketTagIterator::Item const & arg0) [copy constructor]
1996 cls.add_constructor([param('ns3::PacketTagIterator::Item const &', 'arg0')])
1997 ## packet.h (module 'network'): void ns3::PacketTagIterator::Item::GetTag(ns3::Tag & tag) const [member function]
1998 cls.add_method('GetTag',
1999 'void',
2000 [param('ns3::Tag &', 'tag')],
2001 is_const=True)
2002 ## packet.h (module 'network'): ns3::TypeId ns3::PacketTagIterator::Item::GetTypeId() const [member function]
2003 cls.add_method('GetTypeId',
2004 'ns3::TypeId',
2005 [],
2006 is_const=True)
2007 return
2008
2009def register_Ns3PacketTagList_methods(root_module, cls):
2010 ## packet-tag-list.h (module 'network'): ns3::PacketTagList::PacketTagList() [constructor]
2011 cls.add_constructor([])
2012 ## packet-tag-list.h (module 'network'): ns3::PacketTagList::PacketTagList(ns3::PacketTagList const & o) [copy constructor]
2013 cls.add_constructor([param('ns3::PacketTagList const &', 'o')])
2014 ## packet-tag-list.h (module 'network'): void ns3::PacketTagList::Add(ns3::Tag const & tag) const [member function]
2015 cls.add_method('Add',
2016 'void',
2017 [param('ns3::Tag const &', 'tag')],
2018 is_const=True)
2019 ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData const * ns3::PacketTagList::Head() const [member function]
2020 cls.add_method('Head',
2021 'ns3::PacketTagList::TagData const *',
2022 [],
2023 is_const=True)
2024 ## packet-tag-list.h (module 'network'): bool ns3::PacketTagList::Peek(ns3::Tag & tag) const [member function]
2025 cls.add_method('Peek',
2026 'bool',
2027 [param('ns3::Tag &', 'tag')],
2028 is_const=True)
2029 ## packet-tag-list.h (module 'network'): bool ns3::PacketTagList::Remove(ns3::Tag & tag) [member function]
2030 cls.add_method('Remove',
2031 'bool',
2032 [param('ns3::Tag &', 'tag')])
2033 ## packet-tag-list.h (module 'network'): void ns3::PacketTagList::RemoveAll() [member function]
2034 cls.add_method('RemoveAll',
2035 'void',
2036 [])
2037 return
2038
2039def register_Ns3PacketTagListTagData_methods(root_module, cls):
2040 ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData::TagData() [constructor]
2041 cls.add_constructor([])
2042 ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData::TagData(ns3::PacketTagList::TagData const & arg0) [copy constructor]
2043 cls.add_constructor([param('ns3::PacketTagList::TagData const &', 'arg0')])
2044 ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData::count [variable]
2045 cls.add_instance_attribute('count', 'uint32_t', is_const=False)
2046 ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData::data [variable]
2047 cls.add_instance_attribute('data', 'uint8_t [ 20 ]', is_const=False)
2048 ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData::next [variable]
2049 cls.add_instance_attribute('next', 'ns3::PacketTagList::TagData *', is_const=False)
2050 ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData::tid [variable]
2051 cls.add_instance_attribute('tid', 'ns3::TypeId', is_const=False)
Alexander Afanasyev381dea02011-11-03 08:33:26 -07002052 return
2053
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07002054def register_Ns3RandomVariable_methods(root_module, cls):
2055 cls.add_output_stream_operator()
2056 ## random-variable.h (module 'core'): ns3::RandomVariable::RandomVariable() [constructor]
2057 cls.add_constructor([])
2058 ## random-variable.h (module 'core'): ns3::RandomVariable::RandomVariable(ns3::RandomVariable const & o) [copy constructor]
2059 cls.add_constructor([param('ns3::RandomVariable const &', 'o')])
2060 ## random-variable.h (module 'core'): uint32_t ns3::RandomVariable::GetInteger() const [member function]
2061 cls.add_method('GetInteger',
2062 'uint32_t',
2063 [],
2064 is_const=True)
2065 ## random-variable.h (module 'core'): double ns3::RandomVariable::GetValue() const [member function]
2066 cls.add_method('GetValue',
2067 'double',
2068 [],
2069 is_const=True)
2070 return
2071
2072def register_Ns3RngSeedManager_methods(root_module, cls):
2073 ## rng-seed-manager.h (module 'core'): ns3::RngSeedManager::RngSeedManager() [constructor]
2074 cls.add_constructor([])
2075 ## rng-seed-manager.h (module 'core'): ns3::RngSeedManager::RngSeedManager(ns3::RngSeedManager const & arg0) [copy constructor]
2076 cls.add_constructor([param('ns3::RngSeedManager const &', 'arg0')])
2077 ## rng-seed-manager.h (module 'core'): static uint64_t ns3::RngSeedManager::GetNextStreamIndex() [member function]
2078 cls.add_method('GetNextStreamIndex',
2079 'uint64_t',
2080 [],
2081 is_static=True)
2082 ## rng-seed-manager.h (module 'core'): static uint64_t ns3::RngSeedManager::GetRun() [member function]
2083 cls.add_method('GetRun',
2084 'uint64_t',
2085 [],
2086 is_static=True)
2087 ## rng-seed-manager.h (module 'core'): static uint32_t ns3::RngSeedManager::GetSeed() [member function]
2088 cls.add_method('GetSeed',
2089 'uint32_t',
2090 [],
2091 is_static=True)
2092 ## rng-seed-manager.h (module 'core'): static void ns3::RngSeedManager::SetRun(uint64_t run) [member function]
2093 cls.add_method('SetRun',
2094 'void',
2095 [param('uint64_t', 'run')],
2096 is_static=True)
2097 ## rng-seed-manager.h (module 'core'): static void ns3::RngSeedManager::SetSeed(uint32_t seed) [member function]
2098 cls.add_method('SetSeed',
2099 'void',
2100 [param('uint32_t', 'seed')],
2101 is_static=True)
2102 return
2103
Alexander Afanasyev0e4ae8e2013-03-12 15:59:18 -07002104def register_Ns3SequenceNumber32_methods(root_module, cls):
2105 cls.add_binary_comparison_operator('!=')
2106 cls.add_binary_numeric_operator('+', root_module['ns3::SequenceNumber32'], root_module['ns3::SequenceNumber32'], param('ns3::SequenceNumber< unsigned int, int > const &', 'right'))
2107 cls.add_binary_numeric_operator('+', root_module['ns3::SequenceNumber32'], root_module['ns3::SequenceNumber32'], param('int', 'right'))
2108 cls.add_inplace_numeric_operator('+=', param('int', 'right'))
2109 cls.add_binary_numeric_operator('-', root_module['ns3::SequenceNumber32'], root_module['ns3::SequenceNumber32'], param('int', 'right'))
2110 cls.add_inplace_numeric_operator('-=', param('int', 'right'))
2111 cls.add_binary_comparison_operator('<')
2112 cls.add_binary_comparison_operator('<=')
2113 cls.add_binary_comparison_operator('==')
2114 cls.add_binary_comparison_operator('>')
2115 cls.add_binary_comparison_operator('>=')
2116 ## sequence-number.h (module 'network'): ns3::SequenceNumber<unsigned int, int>::SequenceNumber() [constructor]
2117 cls.add_constructor([])
2118 ## sequence-number.h (module 'network'): ns3::SequenceNumber<unsigned int, int>::SequenceNumber(unsigned int value) [constructor]
2119 cls.add_constructor([param('unsigned int', 'value')])
2120 ## sequence-number.h (module 'network'): ns3::SequenceNumber<unsigned int, int>::SequenceNumber(ns3::SequenceNumber<unsigned int, int> const & value) [copy constructor]
2121 cls.add_constructor([param('ns3::SequenceNumber< unsigned int, int > const &', 'value')])
2122 ## sequence-number.h (module 'network'): unsigned int ns3::SequenceNumber<unsigned int, int>::GetValue() const [member function]
2123 cls.add_method('GetValue',
2124 'unsigned int',
2125 [],
2126 is_const=True)
2127 return
2128
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07002129def register_Ns3SequentialVariable_methods(root_module, cls):
2130 ## random-variable.h (module 'core'): ns3::SequentialVariable::SequentialVariable(ns3::SequentialVariable const & arg0) [copy constructor]
2131 cls.add_constructor([param('ns3::SequentialVariable const &', 'arg0')])
2132 ## random-variable.h (module 'core'): ns3::SequentialVariable::SequentialVariable(double f, double l, double i=1, uint32_t c=1) [constructor]
2133 cls.add_constructor([param('double', 'f'), param('double', 'l'), param('double', 'i', default_value='1'), param('uint32_t', 'c', default_value='1')])
2134 ## random-variable.h (module 'core'): ns3::SequentialVariable::SequentialVariable(double f, double l, ns3::RandomVariable const & i, uint32_t c=1) [constructor]
2135 cls.add_constructor([param('double', 'f'), param('double', 'l'), param('ns3::RandomVariable const &', 'i'), param('uint32_t', 'c', default_value='1')])
2136 return
2137
Alexander Afanasyev381dea02011-11-03 08:33:26 -07002138def register_Ns3SimpleRefCount__Ns3Object_Ns3ObjectBase_Ns3ObjectDeleter_methods(root_module, cls):
2139 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter>::SimpleRefCount() [constructor]
2140 cls.add_constructor([])
2141 ## 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]
2142 cls.add_constructor([param('ns3::SimpleRefCount< ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter > const &', 'o')])
2143 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter>::Cleanup() [member function]
2144 cls.add_method('Cleanup',
2145 'void',
2146 [],
2147 is_static=True)
2148 return
2149
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07002150def register_Ns3Tag_methods(root_module, cls):
2151 ## tag.h (module 'network'): ns3::Tag::Tag() [constructor]
Alexander Afanasyev4975f732011-12-20 17:52:19 -08002152 cls.add_constructor([])
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07002153 ## tag.h (module 'network'): ns3::Tag::Tag(ns3::Tag const & arg0) [copy constructor]
2154 cls.add_constructor([param('ns3::Tag const &', 'arg0')])
2155 ## tag.h (module 'network'): void ns3::Tag::Deserialize(ns3::TagBuffer i) [member function]
2156 cls.add_method('Deserialize',
Alexander Afanasyev4975f732011-12-20 17:52:19 -08002157 'void',
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07002158 [param('ns3::TagBuffer', 'i')],
2159 is_pure_virtual=True, is_virtual=True)
2160 ## tag.h (module 'network'): uint32_t ns3::Tag::GetSerializedSize() const [member function]
2161 cls.add_method('GetSerializedSize',
2162 'uint32_t',
2163 [],
2164 is_pure_virtual=True, is_const=True, is_virtual=True)
2165 ## tag.h (module 'network'): static ns3::TypeId ns3::Tag::GetTypeId() [member function]
2166 cls.add_method('GetTypeId',
2167 'ns3::TypeId',
2168 [],
Alexander Afanasyev4975f732011-12-20 17:52:19 -08002169 is_static=True)
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07002170 ## tag.h (module 'network'): void ns3::Tag::Print(std::ostream & os) const [member function]
2171 cls.add_method('Print',
Alexander Afanasyev4975f732011-12-20 17:52:19 -08002172 'void',
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07002173 [param('std::ostream &', 'os')],
2174 is_pure_virtual=True, is_const=True, is_virtual=True)
2175 ## tag.h (module 'network'): void ns3::Tag::Serialize(ns3::TagBuffer i) const [member function]
2176 cls.add_method('Serialize',
2177 'void',
2178 [param('ns3::TagBuffer', 'i')],
2179 is_pure_virtual=True, is_const=True, is_virtual=True)
Alexander Afanasyev4975f732011-12-20 17:52:19 -08002180 return
2181
Alexander Afanasyev381dea02011-11-03 08:33:26 -07002182def register_Ns3TagBuffer_methods(root_module, cls):
2183 ## tag-buffer.h (module 'network'): ns3::TagBuffer::TagBuffer(ns3::TagBuffer const & arg0) [copy constructor]
2184 cls.add_constructor([param('ns3::TagBuffer const &', 'arg0')])
2185 ## tag-buffer.h (module 'network'): ns3::TagBuffer::TagBuffer(uint8_t * start, uint8_t * end) [constructor]
2186 cls.add_constructor([param('uint8_t *', 'start'), param('uint8_t *', 'end')])
2187 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::CopyFrom(ns3::TagBuffer o) [member function]
2188 cls.add_method('CopyFrom',
2189 'void',
2190 [param('ns3::TagBuffer', 'o')])
2191 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::Read(uint8_t * buffer, uint32_t size) [member function]
2192 cls.add_method('Read',
2193 'void',
2194 [param('uint8_t *', 'buffer'), param('uint32_t', 'size')])
2195 ## tag-buffer.h (module 'network'): double ns3::TagBuffer::ReadDouble() [member function]
2196 cls.add_method('ReadDouble',
2197 'double',
2198 [])
2199 ## tag-buffer.h (module 'network'): uint16_t ns3::TagBuffer::ReadU16() [member function]
2200 cls.add_method('ReadU16',
2201 'uint16_t',
2202 [])
2203 ## tag-buffer.h (module 'network'): uint32_t ns3::TagBuffer::ReadU32() [member function]
2204 cls.add_method('ReadU32',
2205 'uint32_t',
2206 [])
2207 ## tag-buffer.h (module 'network'): uint64_t ns3::TagBuffer::ReadU64() [member function]
2208 cls.add_method('ReadU64',
2209 'uint64_t',
2210 [])
2211 ## tag-buffer.h (module 'network'): uint8_t ns3::TagBuffer::ReadU8() [member function]
2212 cls.add_method('ReadU8',
2213 'uint8_t',
2214 [])
2215 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::TrimAtEnd(uint32_t trim) [member function]
2216 cls.add_method('TrimAtEnd',
2217 'void',
2218 [param('uint32_t', 'trim')])
2219 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::Write(uint8_t const * buffer, uint32_t size) [member function]
2220 cls.add_method('Write',
2221 'void',
2222 [param('uint8_t const *', 'buffer'), param('uint32_t', 'size')])
2223 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::WriteDouble(double v) [member function]
2224 cls.add_method('WriteDouble',
2225 'void',
2226 [param('double', 'v')])
2227 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::WriteU16(uint16_t data) [member function]
2228 cls.add_method('WriteU16',
2229 'void',
2230 [param('uint16_t', 'data')])
2231 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::WriteU32(uint32_t data) [member function]
2232 cls.add_method('WriteU32',
2233 'void',
2234 [param('uint32_t', 'data')])
2235 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::WriteU64(uint64_t v) [member function]
2236 cls.add_method('WriteU64',
2237 'void',
2238 [param('uint64_t', 'v')])
2239 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::WriteU8(uint8_t v) [member function]
2240 cls.add_method('WriteU8',
2241 'void',
2242 [param('uint8_t', 'v')])
2243 return
2244
Alexander Afanasyev0e4ae8e2013-03-12 15:59:18 -07002245def register_Ns3TracedValue__Ns3NdnFibFaceMetricStatus_methods(root_module, cls):
2246 ## traced-value.h (module 'core'): ns3::TracedValue<ns3::ndn::fib::FaceMetric::Status>::TracedValue() [constructor]
2247 cls.add_constructor([])
2248 ## traced-value.h (module 'core'): ns3::TracedValue<ns3::ndn::fib::FaceMetric::Status>::TracedValue(ns3::TracedValue<ns3::ndn::fib::FaceMetric::Status> const & o) [copy constructor]
2249 cls.add_constructor([param('ns3::TracedValue< ns3::ndn::fib::FaceMetric::Status > const &', 'o')])
2250 ## traced-value.h (module 'core'): ns3::TracedValue<ns3::ndn::fib::FaceMetric::Status>::TracedValue(ns3::ndn::fib::FaceMetric::Status const & v) [constructor]
2251 cls.add_constructor([param('ns3::ndn::fib::FaceMetric::Status const &', 'v')])
2252 ## 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]
2253 cls.add_method('Connect',
2254 'void',
2255 [param('ns3::CallbackBase const &', 'cb'), param('std::string', 'path')])
2256 ## traced-value.h (module 'core'): void ns3::TracedValue<ns3::ndn::fib::FaceMetric::Status>::ConnectWithoutContext(ns3::CallbackBase const & cb) [member function]
2257 cls.add_method('ConnectWithoutContext',
2258 'void',
2259 [param('ns3::CallbackBase const &', 'cb')])
2260 ## 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]
2261 cls.add_method('Disconnect',
2262 'void',
2263 [param('ns3::CallbackBase const &', 'cb'), param('std::string', 'path')])
2264 ## traced-value.h (module 'core'): void ns3::TracedValue<ns3::ndn::fib::FaceMetric::Status>::DisconnectWithoutContext(ns3::CallbackBase const & cb) [member function]
2265 cls.add_method('DisconnectWithoutContext',
2266 'void',
2267 [param('ns3::CallbackBase const &', 'cb')])
2268 ## traced-value.h (module 'core'): ns3::ndn::fib::FaceMetric::Status ns3::TracedValue<ns3::ndn::fib::FaceMetric::Status>::Get() const [member function]
2269 cls.add_method('Get',
2270 'ns3::ndn::fib::FaceMetric::Status',
2271 [],
2272 is_const=True)
2273 ## traced-value.h (module 'core'): void ns3::TracedValue<ns3::ndn::fib::FaceMetric::Status>::Set(ns3::ndn::fib::FaceMetric::Status const & v) [member function]
2274 cls.add_method('Set',
2275 'void',
2276 [param('ns3::ndn::fib::FaceMetric::Status const &', 'v')])
2277 return
2278
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07002279def register_Ns3TriangularVariable_methods(root_module, cls):
2280 ## random-variable.h (module 'core'): ns3::TriangularVariable::TriangularVariable(ns3::TriangularVariable const & arg0) [copy constructor]
2281 cls.add_constructor([param('ns3::TriangularVariable const &', 'arg0')])
2282 ## random-variable.h (module 'core'): ns3::TriangularVariable::TriangularVariable() [constructor]
2283 cls.add_constructor([])
2284 ## random-variable.h (module 'core'): ns3::TriangularVariable::TriangularVariable(double s, double l, double mean) [constructor]
2285 cls.add_constructor([param('double', 's'), param('double', 'l'), param('double', 'mean')])
2286 return
2287
Alexander Afanasyev381dea02011-11-03 08:33:26 -07002288def register_Ns3TypeId_methods(root_module, cls):
2289 cls.add_binary_comparison_operator('!=')
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07002290 cls.add_output_stream_operator()
Alexander Afanasyeva28ec562012-10-25 14:07:32 -07002291 cls.add_binary_comparison_operator('==')
Alexander Afanasyev381dea02011-11-03 08:33:26 -07002292 cls.add_binary_comparison_operator('<')
2293 ## type-id.h (module 'core'): ns3::TypeId::TypeId(char const * name) [constructor]
2294 cls.add_constructor([param('char const *', 'name')])
2295 ## type-id.h (module 'core'): ns3::TypeId::TypeId() [constructor]
2296 cls.add_constructor([])
2297 ## type-id.h (module 'core'): ns3::TypeId::TypeId(ns3::TypeId const & o) [copy constructor]
2298 cls.add_constructor([param('ns3::TypeId const &', 'o')])
2299 ## 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]
2300 cls.add_method('AddAttribute',
2301 'ns3::TypeId',
2302 [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')])
2303 ## 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]
2304 cls.add_method('AddAttribute',
2305 'ns3::TypeId',
2306 [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')])
2307 ## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::AddTraceSource(std::string name, std::string help, ns3::Ptr<ns3::TraceSourceAccessor const> accessor) [member function]
2308 cls.add_method('AddTraceSource',
2309 'ns3::TypeId',
2310 [param('std::string', 'name'), param('std::string', 'help'), param('ns3::Ptr< ns3::TraceSourceAccessor const >', 'accessor')])
2311 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation ns3::TypeId::GetAttribute(uint32_t i) const [member function]
2312 cls.add_method('GetAttribute',
2313 'ns3::TypeId::AttributeInformation',
2314 [param('uint32_t', 'i')],
2315 is_const=True)
2316 ## type-id.h (module 'core'): std::string ns3::TypeId::GetAttributeFullName(uint32_t i) const [member function]
2317 cls.add_method('GetAttributeFullName',
2318 'std::string',
2319 [param('uint32_t', 'i')],
2320 is_const=True)
2321 ## type-id.h (module 'core'): uint32_t ns3::TypeId::GetAttributeN() const [member function]
2322 cls.add_method('GetAttributeN',
2323 'uint32_t',
2324 [],
2325 is_const=True)
2326 ## 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]
2327 cls.add_method('GetConstructor',
2328 'ns3::Callback< ns3::ObjectBase *, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >',
2329 [],
2330 is_const=True)
2331 ## type-id.h (module 'core'): std::string ns3::TypeId::GetGroupName() const [member function]
2332 cls.add_method('GetGroupName',
2333 'std::string',
2334 [],
2335 is_const=True)
2336 ## type-id.h (module 'core'): std::string ns3::TypeId::GetName() const [member function]
2337 cls.add_method('GetName',
2338 'std::string',
2339 [],
2340 is_const=True)
2341 ## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::GetParent() const [member function]
2342 cls.add_method('GetParent',
2343 'ns3::TypeId',
2344 [],
2345 is_const=True)
2346 ## type-id.h (module 'core'): static ns3::TypeId ns3::TypeId::GetRegistered(uint32_t i) [member function]
2347 cls.add_method('GetRegistered',
2348 'ns3::TypeId',
2349 [param('uint32_t', 'i')],
2350 is_static=True)
2351 ## type-id.h (module 'core'): static uint32_t ns3::TypeId::GetRegisteredN() [member function]
2352 cls.add_method('GetRegisteredN',
2353 'uint32_t',
2354 [],
2355 is_static=True)
2356 ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation ns3::TypeId::GetTraceSource(uint32_t i) const [member function]
2357 cls.add_method('GetTraceSource',
2358 'ns3::TypeId::TraceSourceInformation',
2359 [param('uint32_t', 'i')],
2360 is_const=True)
2361 ## type-id.h (module 'core'): uint32_t ns3::TypeId::GetTraceSourceN() const [member function]
2362 cls.add_method('GetTraceSourceN',
2363 'uint32_t',
2364 [],
2365 is_const=True)
2366 ## type-id.h (module 'core'): uint16_t ns3::TypeId::GetUid() const [member function]
2367 cls.add_method('GetUid',
2368 'uint16_t',
2369 [],
2370 is_const=True)
2371 ## type-id.h (module 'core'): bool ns3::TypeId::HasConstructor() const [member function]
2372 cls.add_method('HasConstructor',
2373 'bool',
2374 [],
2375 is_const=True)
2376 ## type-id.h (module 'core'): bool ns3::TypeId::HasParent() const [member function]
2377 cls.add_method('HasParent',
2378 'bool',
2379 [],
2380 is_const=True)
2381 ## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::HideFromDocumentation() [member function]
2382 cls.add_method('HideFromDocumentation',
2383 'ns3::TypeId',
2384 [])
2385 ## type-id.h (module 'core'): bool ns3::TypeId::IsChildOf(ns3::TypeId other) const [member function]
2386 cls.add_method('IsChildOf',
2387 'bool',
2388 [param('ns3::TypeId', 'other')],
2389 is_const=True)
2390 ## type-id.h (module 'core'): bool ns3::TypeId::LookupAttributeByName(std::string name, ns3::TypeId::AttributeInformation * info) const [member function]
2391 cls.add_method('LookupAttributeByName',
2392 'bool',
Alexander Afanasyev6f933532012-02-29 13:30:37 -08002393 [param('std::string', 'name'), param('ns3::TypeId::AttributeInformation *', 'info', transfer_ownership=False)],
Alexander Afanasyev381dea02011-11-03 08:33:26 -07002394 is_const=True)
2395 ## type-id.h (module 'core'): static ns3::TypeId ns3::TypeId::LookupByName(std::string name) [member function]
2396 cls.add_method('LookupByName',
2397 'ns3::TypeId',
2398 [param('std::string', 'name')],
2399 is_static=True)
2400 ## type-id.h (module 'core'): ns3::Ptr<ns3::TraceSourceAccessor const> ns3::TypeId::LookupTraceSourceByName(std::string name) const [member function]
2401 cls.add_method('LookupTraceSourceByName',
2402 'ns3::Ptr< ns3::TraceSourceAccessor const >',
2403 [param('std::string', 'name')],
2404 is_const=True)
2405 ## type-id.h (module 'core'): bool ns3::TypeId::MustHideFromDocumentation() const [member function]
2406 cls.add_method('MustHideFromDocumentation',
2407 'bool',
2408 [],
2409 is_const=True)
2410 ## type-id.h (module 'core'): bool ns3::TypeId::SetAttributeInitialValue(uint32_t i, ns3::Ptr<ns3::AttributeValue const> initialValue) [member function]
2411 cls.add_method('SetAttributeInitialValue',
2412 'bool',
2413 [param('uint32_t', 'i'), param('ns3::Ptr< ns3::AttributeValue const >', 'initialValue')])
2414 ## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::SetGroupName(std::string groupName) [member function]
2415 cls.add_method('SetGroupName',
2416 'ns3::TypeId',
2417 [param('std::string', 'groupName')])
2418 ## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::SetParent(ns3::TypeId tid) [member function]
2419 cls.add_method('SetParent',
2420 'ns3::TypeId',
2421 [param('ns3::TypeId', 'tid')])
2422 ## type-id.h (module 'core'): void ns3::TypeId::SetUid(uint16_t tid) [member function]
2423 cls.add_method('SetUid',
2424 'void',
2425 [param('uint16_t', 'tid')])
2426 return
2427
2428def register_Ns3TypeIdAttributeInformation_methods(root_module, cls):
2429 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::AttributeInformation() [constructor]
2430 cls.add_constructor([])
2431 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::AttributeInformation(ns3::TypeId::AttributeInformation const & arg0) [copy constructor]
2432 cls.add_constructor([param('ns3::TypeId::AttributeInformation const &', 'arg0')])
2433 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::accessor [variable]
2434 cls.add_instance_attribute('accessor', 'ns3::Ptr< ns3::AttributeAccessor const >', is_const=False)
2435 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::checker [variable]
2436 cls.add_instance_attribute('checker', 'ns3::Ptr< ns3::AttributeChecker const >', is_const=False)
2437 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::flags [variable]
2438 cls.add_instance_attribute('flags', 'uint32_t', is_const=False)
2439 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::help [variable]
2440 cls.add_instance_attribute('help', 'std::string', is_const=False)
2441 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::initialValue [variable]
2442 cls.add_instance_attribute('initialValue', 'ns3::Ptr< ns3::AttributeValue const >', is_const=False)
2443 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::name [variable]
2444 cls.add_instance_attribute('name', 'std::string', is_const=False)
2445 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::originalInitialValue [variable]
2446 cls.add_instance_attribute('originalInitialValue', 'ns3::Ptr< ns3::AttributeValue const >', is_const=False)
2447 return
2448
2449def register_Ns3TypeIdTraceSourceInformation_methods(root_module, cls):
2450 ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation::TraceSourceInformation() [constructor]
2451 cls.add_constructor([])
2452 ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation::TraceSourceInformation(ns3::TypeId::TraceSourceInformation const & arg0) [copy constructor]
2453 cls.add_constructor([param('ns3::TypeId::TraceSourceInformation const &', 'arg0')])
2454 ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation::accessor [variable]
2455 cls.add_instance_attribute('accessor', 'ns3::Ptr< ns3::TraceSourceAccessor const >', is_const=False)
2456 ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation::help [variable]
2457 cls.add_instance_attribute('help', 'std::string', is_const=False)
2458 ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation::name [variable]
2459 cls.add_instance_attribute('name', 'std::string', is_const=False)
2460 return
2461
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07002462def register_Ns3UniformVariable_methods(root_module, cls):
2463 ## random-variable.h (module 'core'): ns3::UniformVariable::UniformVariable(ns3::UniformVariable const & arg0) [copy constructor]
2464 cls.add_constructor([param('ns3::UniformVariable const &', 'arg0')])
2465 ## random-variable.h (module 'core'): ns3::UniformVariable::UniformVariable() [constructor]
2466 cls.add_constructor([])
2467 ## random-variable.h (module 'core'): ns3::UniformVariable::UniformVariable(double s, double l) [constructor]
2468 cls.add_constructor([param('double', 's'), param('double', 'l')])
2469 ## random-variable.h (module 'core'): uint32_t ns3::UniformVariable::GetInteger(uint32_t s, uint32_t l) [member function]
2470 cls.add_method('GetInteger',
2471 'uint32_t',
2472 [param('uint32_t', 's'), param('uint32_t', 'l')])
2473 ## random-variable.h (module 'core'): double ns3::UniformVariable::GetValue() const [member function]
2474 cls.add_method('GetValue',
2475 'double',
2476 [],
2477 is_const=True)
2478 ## random-variable.h (module 'core'): double ns3::UniformVariable::GetValue(double s, double l) [member function]
2479 cls.add_method('GetValue',
2480 'double',
2481 [param('double', 's'), param('double', 'l')])
2482 return
2483
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07002484def register_Ns3WeibullVariable_methods(root_module, cls):
2485 ## random-variable.h (module 'core'): ns3::WeibullVariable::WeibullVariable(ns3::WeibullVariable const & arg0) [copy constructor]
2486 cls.add_constructor([param('ns3::WeibullVariable const &', 'arg0')])
2487 ## random-variable.h (module 'core'): ns3::WeibullVariable::WeibullVariable() [constructor]
2488 cls.add_constructor([])
2489 ## random-variable.h (module 'core'): ns3::WeibullVariable::WeibullVariable(double m) [constructor]
2490 cls.add_constructor([param('double', 'm')])
2491 ## random-variable.h (module 'core'): ns3::WeibullVariable::WeibullVariable(double m, double s) [constructor]
2492 cls.add_constructor([param('double', 'm'), param('double', 's')])
2493 ## random-variable.h (module 'core'): ns3::WeibullVariable::WeibullVariable(double m, double s, double b) [constructor]
2494 cls.add_constructor([param('double', 'm'), param('double', 's'), param('double', 'b')])
2495 return
2496
2497def register_Ns3ZetaVariable_methods(root_module, cls):
2498 ## random-variable.h (module 'core'): ns3::ZetaVariable::ZetaVariable(ns3::ZetaVariable const & arg0) [copy constructor]
2499 cls.add_constructor([param('ns3::ZetaVariable const &', 'arg0')])
2500 ## random-variable.h (module 'core'): ns3::ZetaVariable::ZetaVariable(double alpha) [constructor]
2501 cls.add_constructor([param('double', 'alpha')])
2502 ## random-variable.h (module 'core'): ns3::ZetaVariable::ZetaVariable() [constructor]
2503 cls.add_constructor([])
2504 return
2505
2506def register_Ns3ZipfVariable_methods(root_module, cls):
2507 ## random-variable.h (module 'core'): ns3::ZipfVariable::ZipfVariable(ns3::ZipfVariable const & arg0) [copy constructor]
2508 cls.add_constructor([param('ns3::ZipfVariable const &', 'arg0')])
2509 ## random-variable.h (module 'core'): ns3::ZipfVariable::ZipfVariable(long int N, double alpha) [constructor]
2510 cls.add_constructor([param('long int', 'N'), param('double', 'alpha')])
2511 ## random-variable.h (module 'core'): ns3::ZipfVariable::ZipfVariable() [constructor]
2512 cls.add_constructor([])
2513 return
2514
Alexander Afanasyev381dea02011-11-03 08:33:26 -07002515def register_Ns3Empty_methods(root_module, cls):
2516 ## empty.h (module 'core'): ns3::empty::empty() [constructor]
2517 cls.add_constructor([])
2518 ## empty.h (module 'core'): ns3::empty::empty(ns3::empty const & arg0) [copy constructor]
2519 cls.add_constructor([param('ns3::empty const &', 'arg0')])
2520 return
2521
2522def register_Ns3Int64x64_t_methods(root_module, cls):
2523 cls.add_binary_comparison_operator('!=')
2524 cls.add_inplace_numeric_operator('*=', param('ns3::int64x64_t const &', 'right'))
2525 cls.add_inplace_numeric_operator('+=', param('ns3::int64x64_t const &', 'right'))
2526 cls.add_inplace_numeric_operator('-=', param('ns3::int64x64_t const &', 'right'))
Alexander Afanasyeva28ec562012-10-25 14:07:32 -07002527 cls.add_output_stream_operator()
Alexander Afanasyeva8f5d882012-11-09 14:22:48 -08002528 cls.add_binary_comparison_operator('<=')
Alexander Afanasyev381dea02011-11-03 08:33:26 -07002529 cls.add_binary_comparison_operator('==')
2530 cls.add_binary_comparison_operator('>=')
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07002531 cls.add_inplace_numeric_operator('/=', param('ns3::int64x64_t const &', 'right'))
Alexander Afanasyev381dea02011-11-03 08:33:26 -07002532 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long unsigned int const', 'right'))
2533 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long unsigned int const', 'right'))
2534 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned int const', 'right'))
2535 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short unsigned int const', 'right'))
2536 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned char const', 'right'))
2537 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long int const', 'right'))
2538 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long int const', 'right'))
2539 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('int const', 'right'))
2540 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short int const', 'right'))
2541 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('signed char const', 'right'))
2542 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('double const', 'right'))
2543 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('ns3::int64x64_t const &', 'right'))
2544 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long unsigned int const', 'right'))
2545 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long unsigned int const', 'right'))
2546 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned int const', 'right'))
2547 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short unsigned int const', 'right'))
2548 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned char const', 'right'))
2549 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long int const', 'right'))
2550 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long int const', 'right'))
2551 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('int const', 'right'))
2552 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short int const', 'right'))
2553 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('signed char const', 'right'))
2554 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('double const', 'right'))
2555 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('ns3::int64x64_t const &', 'right'))
2556 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long unsigned int const', 'right'))
2557 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long unsigned int const', 'right'))
2558 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned int const', 'right'))
2559 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short unsigned int const', 'right'))
2560 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned char const', 'right'))
2561 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long int const', 'right'))
2562 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long int const', 'right'))
2563 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('int const', 'right'))
2564 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short int const', 'right'))
2565 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('signed char const', 'right'))
2566 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('double const', 'right'))
2567 cls.add_unary_numeric_operator('-')
2568 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('ns3::int64x64_t const &', 'right'))
2569 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long unsigned int const', 'right'))
2570 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long unsigned int const', 'right'))
2571 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned int const', 'right'))
2572 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short unsigned int const', 'right'))
2573 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned char const', 'right'))
2574 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long int const', 'right'))
2575 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long int const', 'right'))
2576 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('int const', 'right'))
2577 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short int const', 'right'))
2578 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('signed char const', 'right'))
2579 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('double const', 'right'))
2580 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('ns3::int64x64_t const &', 'right'))
2581 cls.add_binary_comparison_operator('<')
2582 cls.add_binary_comparison_operator('>')
2583 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t() [constructor]
2584 cls.add_constructor([])
2585 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(double v) [constructor]
2586 cls.add_constructor([param('double', 'v')])
2587 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(int v) [constructor]
2588 cls.add_constructor([param('int', 'v')])
2589 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(long int v) [constructor]
2590 cls.add_constructor([param('long int', 'v')])
2591 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(long long int v) [constructor]
2592 cls.add_constructor([param('long long int', 'v')])
2593 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(unsigned int v) [constructor]
2594 cls.add_constructor([param('unsigned int', 'v')])
2595 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(long unsigned int v) [constructor]
2596 cls.add_constructor([param('long unsigned int', 'v')])
2597 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(long long unsigned int v) [constructor]
2598 cls.add_constructor([param('long long unsigned int', 'v')])
2599 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(int64_t hi, uint64_t lo) [constructor]
2600 cls.add_constructor([param('int64_t', 'hi'), param('uint64_t', 'lo')])
2601 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(ns3::int64x64_t const & o) [copy constructor]
2602 cls.add_constructor([param('ns3::int64x64_t const &', 'o')])
2603 ## int64x64-double.h (module 'core'): double ns3::int64x64_t::GetDouble() const [member function]
2604 cls.add_method('GetDouble',
2605 'double',
2606 [],
2607 is_const=True)
2608 ## int64x64-double.h (module 'core'): int64_t ns3::int64x64_t::GetHigh() const [member function]
2609 cls.add_method('GetHigh',
2610 'int64_t',
2611 [],
2612 is_const=True)
2613 ## int64x64-double.h (module 'core'): uint64_t ns3::int64x64_t::GetLow() const [member function]
2614 cls.add_method('GetLow',
2615 'uint64_t',
2616 [],
2617 is_const=True)
2618 ## int64x64-double.h (module 'core'): static ns3::int64x64_t ns3::int64x64_t::Invert(uint64_t v) [member function]
2619 cls.add_method('Invert',
2620 'ns3::int64x64_t',
2621 [param('uint64_t', 'v')],
2622 is_static=True)
2623 ## int64x64-double.h (module 'core'): void ns3::int64x64_t::MulByInvert(ns3::int64x64_t const & o) [member function]
2624 cls.add_method('MulByInvert',
2625 'void',
2626 [param('ns3::int64x64_t const &', 'o')])
2627 return
2628
Alexander Afanasyev381dea02011-11-03 08:33:26 -07002629def register_Ns3Chunk_methods(root_module, cls):
2630 ## chunk.h (module 'network'): ns3::Chunk::Chunk() [constructor]
2631 cls.add_constructor([])
2632 ## chunk.h (module 'network'): ns3::Chunk::Chunk(ns3::Chunk const & arg0) [copy constructor]
2633 cls.add_constructor([param('ns3::Chunk const &', 'arg0')])
2634 ## chunk.h (module 'network'): uint32_t ns3::Chunk::Deserialize(ns3::Buffer::Iterator start) [member function]
2635 cls.add_method('Deserialize',
2636 'uint32_t',
2637 [param('ns3::Buffer::Iterator', 'start')],
2638 is_pure_virtual=True, is_virtual=True)
2639 ## chunk.h (module 'network'): static ns3::TypeId ns3::Chunk::GetTypeId() [member function]
2640 cls.add_method('GetTypeId',
2641 'ns3::TypeId',
2642 [],
2643 is_static=True)
2644 ## chunk.h (module 'network'): void ns3::Chunk::Print(std::ostream & os) const [member function]
2645 cls.add_method('Print',
2646 'void',
2647 [param('std::ostream &', 'os')],
2648 is_pure_virtual=True, is_const=True, is_virtual=True)
2649 return
2650
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07002651def register_Ns3ConstantVariable_methods(root_module, cls):
2652 ## random-variable.h (module 'core'): ns3::ConstantVariable::ConstantVariable(ns3::ConstantVariable const & arg0) [copy constructor]
2653 cls.add_constructor([param('ns3::ConstantVariable const &', 'arg0')])
2654 ## random-variable.h (module 'core'): ns3::ConstantVariable::ConstantVariable() [constructor]
2655 cls.add_constructor([])
2656 ## random-variable.h (module 'core'): ns3::ConstantVariable::ConstantVariable(double c) [constructor]
2657 cls.add_constructor([param('double', 'c')])
2658 ## random-variable.h (module 'core'): void ns3::ConstantVariable::SetConstant(double c) [member function]
2659 cls.add_method('SetConstant',
2660 'void',
2661 [param('double', 'c')])
2662 return
2663
2664def register_Ns3DeterministicVariable_methods(root_module, cls):
2665 ## random-variable.h (module 'core'): ns3::DeterministicVariable::DeterministicVariable(ns3::DeterministicVariable const & arg0) [copy constructor]
2666 cls.add_constructor([param('ns3::DeterministicVariable const &', 'arg0')])
2667 ## random-variable.h (module 'core'): ns3::DeterministicVariable::DeterministicVariable(double * d, uint32_t c) [constructor]
2668 cls.add_constructor([param('double *', 'd'), param('uint32_t', 'c')])
2669 return
2670
2671def register_Ns3EmpiricalVariable_methods(root_module, cls):
2672 ## random-variable.h (module 'core'): ns3::EmpiricalVariable::EmpiricalVariable(ns3::EmpiricalVariable const & arg0) [copy constructor]
2673 cls.add_constructor([param('ns3::EmpiricalVariable const &', 'arg0')])
2674 ## random-variable.h (module 'core'): ns3::EmpiricalVariable::EmpiricalVariable() [constructor]
2675 cls.add_constructor([])
2676 ## random-variable.h (module 'core'): void ns3::EmpiricalVariable::CDF(double v, double c) [member function]
2677 cls.add_method('CDF',
2678 'void',
2679 [param('double', 'v'), param('double', 'c')])
2680 return
2681
2682def register_Ns3ErlangVariable_methods(root_module, cls):
2683 ## random-variable.h (module 'core'): ns3::ErlangVariable::ErlangVariable(ns3::ErlangVariable const & arg0) [copy constructor]
2684 cls.add_constructor([param('ns3::ErlangVariable const &', 'arg0')])
2685 ## random-variable.h (module 'core'): ns3::ErlangVariable::ErlangVariable() [constructor]
2686 cls.add_constructor([])
2687 ## random-variable.h (module 'core'): ns3::ErlangVariable::ErlangVariable(unsigned int k, double lambda) [constructor]
2688 cls.add_constructor([param('unsigned int', 'k'), param('double', 'lambda')])
2689 ## random-variable.h (module 'core'): double ns3::ErlangVariable::GetValue() const [member function]
2690 cls.add_method('GetValue',
2691 'double',
2692 [],
2693 is_const=True)
2694 ## random-variable.h (module 'core'): double ns3::ErlangVariable::GetValue(unsigned int k, double lambda) const [member function]
2695 cls.add_method('GetValue',
2696 'double',
2697 [param('unsigned int', 'k'), param('double', 'lambda')],
2698 is_const=True)
2699 return
2700
2701def register_Ns3ExponentialVariable_methods(root_module, cls):
2702 ## random-variable.h (module 'core'): ns3::ExponentialVariable::ExponentialVariable(ns3::ExponentialVariable const & arg0) [copy constructor]
2703 cls.add_constructor([param('ns3::ExponentialVariable const &', 'arg0')])
2704 ## random-variable.h (module 'core'): ns3::ExponentialVariable::ExponentialVariable() [constructor]
2705 cls.add_constructor([])
2706 ## random-variable.h (module 'core'): ns3::ExponentialVariable::ExponentialVariable(double m) [constructor]
2707 cls.add_constructor([param('double', 'm')])
2708 ## random-variable.h (module 'core'): ns3::ExponentialVariable::ExponentialVariable(double m, double b) [constructor]
2709 cls.add_constructor([param('double', 'm'), param('double', 'b')])
2710 return
2711
2712def register_Ns3GammaVariable_methods(root_module, cls):
2713 ## random-variable.h (module 'core'): ns3::GammaVariable::GammaVariable(ns3::GammaVariable const & arg0) [copy constructor]
2714 cls.add_constructor([param('ns3::GammaVariable const &', 'arg0')])
2715 ## random-variable.h (module 'core'): ns3::GammaVariable::GammaVariable() [constructor]
2716 cls.add_constructor([])
2717 ## random-variable.h (module 'core'): ns3::GammaVariable::GammaVariable(double alpha, double beta) [constructor]
2718 cls.add_constructor([param('double', 'alpha'), param('double', 'beta')])
2719 ## random-variable.h (module 'core'): double ns3::GammaVariable::GetValue() const [member function]
2720 cls.add_method('GetValue',
2721 'double',
2722 [],
2723 is_const=True)
2724 ## random-variable.h (module 'core'): double ns3::GammaVariable::GetValue(double alpha, double beta) const [member function]
2725 cls.add_method('GetValue',
2726 'double',
2727 [param('double', 'alpha'), param('double', 'beta')],
2728 is_const=True)
2729 return
2730
Alexander Afanasyev381dea02011-11-03 08:33:26 -07002731def register_Ns3Header_methods(root_module, cls):
2732 cls.add_output_stream_operator()
2733 ## header.h (module 'network'): ns3::Header::Header() [constructor]
2734 cls.add_constructor([])
2735 ## header.h (module 'network'): ns3::Header::Header(ns3::Header const & arg0) [copy constructor]
2736 cls.add_constructor([param('ns3::Header const &', 'arg0')])
2737 ## header.h (module 'network'): uint32_t ns3::Header::Deserialize(ns3::Buffer::Iterator start) [member function]
2738 cls.add_method('Deserialize',
2739 'uint32_t',
2740 [param('ns3::Buffer::Iterator', 'start')],
2741 is_pure_virtual=True, is_virtual=True)
2742 ## header.h (module 'network'): uint32_t ns3::Header::GetSerializedSize() const [member function]
2743 cls.add_method('GetSerializedSize',
2744 'uint32_t',
2745 [],
2746 is_pure_virtual=True, is_const=True, is_virtual=True)
2747 ## header.h (module 'network'): static ns3::TypeId ns3::Header::GetTypeId() [member function]
2748 cls.add_method('GetTypeId',
2749 'ns3::TypeId',
2750 [],
2751 is_static=True)
2752 ## header.h (module 'network'): void ns3::Header::Print(std::ostream & os) const [member function]
2753 cls.add_method('Print',
2754 'void',
2755 [param('std::ostream &', 'os')],
2756 is_pure_virtual=True, is_const=True, is_virtual=True)
2757 ## header.h (module 'network'): void ns3::Header::Serialize(ns3::Buffer::Iterator start) const [member function]
2758 cls.add_method('Serialize',
2759 'void',
2760 [param('ns3::Buffer::Iterator', 'start')],
2761 is_pure_virtual=True, is_const=True, is_virtual=True)
2762 return
2763
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07002764def register_Ns3IntEmpiricalVariable_methods(root_module, cls):
2765 ## random-variable.h (module 'core'): ns3::IntEmpiricalVariable::IntEmpiricalVariable(ns3::IntEmpiricalVariable const & arg0) [copy constructor]
2766 cls.add_constructor([param('ns3::IntEmpiricalVariable const &', 'arg0')])
2767 ## random-variable.h (module 'core'): ns3::IntEmpiricalVariable::IntEmpiricalVariable() [constructor]
2768 cls.add_constructor([])
2769 return
2770
2771def register_Ns3LogNormalVariable_methods(root_module, cls):
2772 ## random-variable.h (module 'core'): ns3::LogNormalVariable::LogNormalVariable(ns3::LogNormalVariable const & arg0) [copy constructor]
2773 cls.add_constructor([param('ns3::LogNormalVariable const &', 'arg0')])
2774 ## random-variable.h (module 'core'): ns3::LogNormalVariable::LogNormalVariable(double mu, double sigma) [constructor]
2775 cls.add_constructor([param('double', 'mu'), param('double', 'sigma')])
2776 return
2777
2778def register_Ns3NormalVariable_methods(root_module, cls):
2779 ## random-variable.h (module 'core'): ns3::NormalVariable::NormalVariable(ns3::NormalVariable const & arg0) [copy constructor]
2780 cls.add_constructor([param('ns3::NormalVariable const &', 'arg0')])
2781 ## random-variable.h (module 'core'): ns3::NormalVariable::NormalVariable() [constructor]
2782 cls.add_constructor([])
2783 ## random-variable.h (module 'core'): ns3::NormalVariable::NormalVariable(double m, double v) [constructor]
2784 cls.add_constructor([param('double', 'm'), param('double', 'v')])
2785 ## random-variable.h (module 'core'): ns3::NormalVariable::NormalVariable(double m, double v, double b) [constructor]
2786 cls.add_constructor([param('double', 'm'), param('double', 'v'), param('double', 'b')])
2787 return
2788
Alexander Afanasyev381dea02011-11-03 08:33:26 -07002789def register_Ns3Object_methods(root_module, cls):
2790 ## object.h (module 'core'): ns3::Object::Object() [constructor]
2791 cls.add_constructor([])
2792 ## object.h (module 'core'): void ns3::Object::AggregateObject(ns3::Ptr<ns3::Object> other) [member function]
2793 cls.add_method('AggregateObject',
2794 'void',
2795 [param('ns3::Ptr< ns3::Object >', 'other')])
2796 ## object.h (module 'core'): void ns3::Object::Dispose() [member function]
2797 cls.add_method('Dispose',
2798 'void',
2799 [])
2800 ## object.h (module 'core'): ns3::Object::AggregateIterator ns3::Object::GetAggregateIterator() const [member function]
2801 cls.add_method('GetAggregateIterator',
2802 'ns3::Object::AggregateIterator',
2803 [],
2804 is_const=True)
2805 ## object.h (module 'core'): ns3::TypeId ns3::Object::GetInstanceTypeId() const [member function]
2806 cls.add_method('GetInstanceTypeId',
2807 'ns3::TypeId',
2808 [],
2809 is_const=True, is_virtual=True)
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07002810 ## object.h (module 'core'): ns3::Ptr<ns3::ndn::ContentStore> ns3::Object::GetObject() const [member function]
2811 cls.add_method('GetObject',
2812 'ns3::Ptr< ns3::ndn::ContentStore >',
2813 [],
2814 is_const=True, template_parameters=['ns3::ndn::ContentStore'])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07002815 ## object.h (module 'core'): ns3::Ptr<ns3::ndn::Fib> ns3::Object::GetObject() const [member function]
Alexander Afanasyev1c0248b2012-07-24 15:59:50 -07002816 cls.add_method('GetObject',
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07002817 'ns3::Ptr< ns3::ndn::Fib >',
Alexander Afanasyev1c0248b2012-07-24 15:59:50 -07002818 [],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07002819 is_const=True, template_parameters=['ns3::ndn::Fib'])
2820 ## object.h (module 'core'): ns3::Ptr<ns3::ndn::Pit> ns3::Object::GetObject() const [member function]
Alexander Afanasyev5feb38b2012-08-09 11:01:43 -07002821 cls.add_method('GetObject',
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07002822 'ns3::Ptr< ns3::ndn::Pit >',
Alexander Afanasyev5feb38b2012-08-09 11:01:43 -07002823 [],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07002824 is_const=True, template_parameters=['ns3::ndn::Pit'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -07002825 ## object.h (module 'core'): static ns3::TypeId ns3::Object::GetTypeId() [member function]
2826 cls.add_method('GetTypeId',
2827 'ns3::TypeId',
2828 [],
2829 is_static=True)
Alexander Afanasyev5b8d61b2013-05-03 10:23:21 -07002830 ## object.h (module 'core'): void ns3::Object::Initialize() [member function]
2831 cls.add_method('Initialize',
Alexander Afanasyev381dea02011-11-03 08:33:26 -07002832 'void',
2833 [])
2834 ## object.h (module 'core'): ns3::Object::Object(ns3::Object const & o) [copy constructor]
2835 cls.add_constructor([param('ns3::Object const &', 'o')],
2836 visibility='protected')
2837 ## object.h (module 'core'): void ns3::Object::DoDispose() [member function]
2838 cls.add_method('DoDispose',
2839 'void',
2840 [],
2841 visibility='protected', is_virtual=True)
Alexander Afanasyev5b8d61b2013-05-03 10:23:21 -07002842 ## object.h (module 'core'): void ns3::Object::DoInitialize() [member function]
2843 cls.add_method('DoInitialize',
Alexander Afanasyev381dea02011-11-03 08:33:26 -07002844 'void',
2845 [],
2846 visibility='protected', is_virtual=True)
2847 ## object.h (module 'core'): void ns3::Object::NotifyNewAggregate() [member function]
2848 cls.add_method('NotifyNewAggregate',
2849 'void',
2850 [],
2851 visibility='protected', is_virtual=True)
2852 return
2853
2854def register_Ns3ObjectAggregateIterator_methods(root_module, cls):
2855 ## object.h (module 'core'): ns3::Object::AggregateIterator::AggregateIterator(ns3::Object::AggregateIterator const & arg0) [copy constructor]
2856 cls.add_constructor([param('ns3::Object::AggregateIterator const &', 'arg0')])
2857 ## object.h (module 'core'): ns3::Object::AggregateIterator::AggregateIterator() [constructor]
2858 cls.add_constructor([])
2859 ## object.h (module 'core'): bool ns3::Object::AggregateIterator::HasNext() const [member function]
2860 cls.add_method('HasNext',
2861 'bool',
2862 [],
2863 is_const=True)
2864 ## object.h (module 'core'): ns3::Ptr<ns3::Object const> ns3::Object::AggregateIterator::Next() [member function]
2865 cls.add_method('Next',
2866 'ns3::Ptr< ns3::Object const >',
2867 [])
2868 return
2869
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07002870def register_Ns3ParetoVariable_methods(root_module, cls):
2871 ## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable(ns3::ParetoVariable const & arg0) [copy constructor]
2872 cls.add_constructor([param('ns3::ParetoVariable const &', 'arg0')])
2873 ## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable() [constructor]
2874 cls.add_constructor([])
2875 ## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable(double m) [constructor]
2876 cls.add_constructor([param('double', 'm')])
2877 ## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable(double m, double s) [constructor]
2878 cls.add_constructor([param('double', 'm'), param('double', 's')])
2879 ## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable(double m, double s, double b) [constructor]
2880 cls.add_constructor([param('double', 'm'), param('double', 's'), param('double', 'b')])
2881 ## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable(std::pair<double,double> params) [constructor]
2882 cls.add_constructor([param('std::pair< double, double >', 'params')])
2883 ## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable(std::pair<double,double> params, double b) [constructor]
2884 cls.add_constructor([param('std::pair< double, double >', 'params'), param('double', 'b')])
2885 return
2886
Alexander Afanasyev381dea02011-11-03 08:33:26 -07002887def register_Ns3SimpleRefCount__Ns3AttributeAccessor_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeAccessor__gt___methods(root_module, cls):
2888 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> >::SimpleRefCount() [constructor]
2889 cls.add_constructor([])
2890 ## 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]
2891 cls.add_constructor([param('ns3::SimpleRefCount< ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter< ns3::AttributeAccessor > > const &', 'o')])
2892 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> >::Cleanup() [member function]
2893 cls.add_method('Cleanup',
2894 'void',
2895 [],
2896 is_static=True)
2897 return
2898
2899def register_Ns3SimpleRefCount__Ns3AttributeChecker_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeChecker__gt___methods(root_module, cls):
2900 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter<ns3::AttributeChecker> >::SimpleRefCount() [constructor]
2901 cls.add_constructor([])
2902 ## 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]
2903 cls.add_constructor([param('ns3::SimpleRefCount< ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter< ns3::AttributeChecker > > const &', 'o')])
2904 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter<ns3::AttributeChecker> >::Cleanup() [member function]
2905 cls.add_method('Cleanup',
2906 'void',
2907 [],
2908 is_static=True)
2909 return
2910
2911def register_Ns3SimpleRefCount__Ns3AttributeValue_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeValue__gt___methods(root_module, cls):
2912 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter<ns3::AttributeValue> >::SimpleRefCount() [constructor]
2913 cls.add_constructor([])
2914 ## 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]
2915 cls.add_constructor([param('ns3::SimpleRefCount< ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter< ns3::AttributeValue > > const &', 'o')])
2916 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter<ns3::AttributeValue> >::Cleanup() [member function]
2917 cls.add_method('Cleanup',
2918 'void',
2919 [],
2920 is_static=True)
2921 return
2922
2923def register_Ns3SimpleRefCount__Ns3CallbackImplBase_Ns3Empty_Ns3DefaultDeleter__lt__ns3CallbackImplBase__gt___methods(root_module, cls):
2924 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> >::SimpleRefCount() [constructor]
2925 cls.add_constructor([])
2926 ## 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]
2927 cls.add_constructor([param('ns3::SimpleRefCount< ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter< ns3::CallbackImplBase > > const &', 'o')])
2928 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> >::Cleanup() [member function]
2929 cls.add_method('Cleanup',
2930 'void',
2931 [],
2932 is_static=True)
2933 return
2934
Alexander Afanasyev381dea02011-11-03 08:33:26 -07002935def register_Ns3SimpleRefCount__Ns3EventImpl_Ns3Empty_Ns3DefaultDeleter__lt__ns3EventImpl__gt___methods(root_module, cls):
2936 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::EventImpl, ns3::empty, ns3::DefaultDeleter<ns3::EventImpl> >::SimpleRefCount() [constructor]
2937 cls.add_constructor([])
2938 ## 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]
2939 cls.add_constructor([param('ns3::SimpleRefCount< ns3::EventImpl, ns3::empty, ns3::DefaultDeleter< ns3::EventImpl > > const &', 'o')])
2940 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::EventImpl, ns3::empty, ns3::DefaultDeleter<ns3::EventImpl> >::Cleanup() [member function]
2941 cls.add_method('Cleanup',
2942 'void',
2943 [],
2944 is_static=True)
2945 return
2946
2947def register_Ns3SimpleRefCount__Ns3NixVector_Ns3Empty_Ns3DefaultDeleter__lt__ns3NixVector__gt___methods(root_module, cls):
2948 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::NixVector, ns3::empty, ns3::DefaultDeleter<ns3::NixVector> >::SimpleRefCount() [constructor]
2949 cls.add_constructor([])
2950 ## 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]
2951 cls.add_constructor([param('ns3::SimpleRefCount< ns3::NixVector, ns3::empty, ns3::DefaultDeleter< ns3::NixVector > > const &', 'o')])
2952 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::NixVector, ns3::empty, ns3::DefaultDeleter<ns3::NixVector> >::Cleanup() [member function]
2953 cls.add_method('Cleanup',
2954 'void',
2955 [],
2956 is_static=True)
2957 return
2958
Alexander Afanasyev381dea02011-11-03 08:33:26 -07002959def register_Ns3SimpleRefCount__Ns3Packet_Ns3Empty_Ns3DefaultDeleter__lt__ns3Packet__gt___methods(root_module, cls):
2960 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Packet, ns3::empty, ns3::DefaultDeleter<ns3::Packet> >::SimpleRefCount() [constructor]
2961 cls.add_constructor([])
2962 ## 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]
2963 cls.add_constructor([param('ns3::SimpleRefCount< ns3::Packet, ns3::empty, ns3::DefaultDeleter< ns3::Packet > > const &', 'o')])
2964 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::Packet, ns3::empty, ns3::DefaultDeleter<ns3::Packet> >::Cleanup() [member function]
2965 cls.add_method('Cleanup',
2966 'void',
2967 [],
2968 is_static=True)
2969 return
2970
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07002971def register_Ns3SimpleRefCount__Ns3TopologyReader_Ns3Empty_Ns3DefaultDeleter__lt__ns3TopologyReader__gt___methods(root_module, cls):
2972 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::TopologyReader, ns3::empty, ns3::DefaultDeleter<ns3::TopologyReader> >::SimpleRefCount() [constructor]
2973 cls.add_constructor([])
2974 ## 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]
2975 cls.add_constructor([param('ns3::SimpleRefCount< ns3::TopologyReader, ns3::empty, ns3::DefaultDeleter< ns3::TopologyReader > > const &', 'o')])
2976 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::TopologyReader, ns3::empty, ns3::DefaultDeleter<ns3::TopologyReader> >::Cleanup() [member function]
2977 cls.add_method('Cleanup',
2978 'void',
2979 [],
2980 is_static=True)
2981 return
2982
Alexander Afanasyev381dea02011-11-03 08:33:26 -07002983def register_Ns3SimpleRefCount__Ns3TraceSourceAccessor_Ns3Empty_Ns3DefaultDeleter__lt__ns3TraceSourceAccessor__gt___methods(root_module, cls):
2984 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter<ns3::TraceSourceAccessor> >::SimpleRefCount() [constructor]
2985 cls.add_constructor([])
2986 ## 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]
2987 cls.add_constructor([param('ns3::SimpleRefCount< ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter< ns3::TraceSourceAccessor > > const &', 'o')])
2988 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter<ns3::TraceSourceAccessor> >::Cleanup() [member function]
2989 cls.add_method('Cleanup',
2990 'void',
2991 [],
2992 is_static=True)
2993 return
2994
Alexander Afanasyev858d5312013-07-10 18:50:18 -07002995def register_Ns3SimpleRefCount__Ns3NdnContentObject_Ns3Empty_Ns3DefaultDeleter__lt__ns3NdnContentObject__gt___methods(root_module, cls):
2996 ## 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 -07002997 cls.add_constructor([])
Alexander Afanasyev858d5312013-07-10 18:50:18 -07002998 ## 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]
2999 cls.add_constructor([param('ns3::SimpleRefCount< ns3::ndn::ContentObject, ns3::empty, ns3::DefaultDeleter< ns3::ndn::ContentObject > > const &', 'o')])
3000 ## 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 -07003001 cls.add_method('Cleanup',
3002 'void',
3003 [],
3004 is_static=True)
3005 return
3006
3007def register_Ns3SimpleRefCount__Ns3NdnFaceContainer_Ns3Empty_Ns3DefaultDeleter__lt__ns3NdnFaceContainer__gt___methods(root_module, cls):
3008 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::ndn::FaceContainer, ns3::empty, ns3::DefaultDeleter<ns3::ndn::FaceContainer> >::SimpleRefCount() [constructor]
3009 cls.add_constructor([])
3010 ## 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]
3011 cls.add_constructor([param('ns3::SimpleRefCount< ns3::ndn::FaceContainer, ns3::empty, ns3::DefaultDeleter< ns3::ndn::FaceContainer > > const &', 'o')])
3012 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::ndn::FaceContainer, ns3::empty, ns3::DefaultDeleter<ns3::ndn::FaceContainer> >::Cleanup() [member function]
3013 cls.add_method('Cleanup',
3014 'void',
3015 [],
3016 is_static=True)
3017 return
3018
Alexander Afanasyev858d5312013-07-10 18:50:18 -07003019def register_Ns3SimpleRefCount__Ns3NdnInterest_Ns3Empty_Ns3DefaultDeleter__lt__ns3NdnInterest__gt___methods(root_module, cls):
3020 ## 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 -07003021 cls.add_constructor([])
Alexander Afanasyev858d5312013-07-10 18:50:18 -07003022 ## 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]
3023 cls.add_constructor([param('ns3::SimpleRefCount< ns3::ndn::Interest, ns3::empty, ns3::DefaultDeleter< ns3::ndn::Interest > > const &', 'o')])
3024 ## 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 -07003025 cls.add_method('Cleanup',
3026 'void',
3027 [],
3028 is_static=True)
3029 return
3030
Alexander Afanasyev32c07562013-02-01 12:58:43 -08003031def register_Ns3SimpleRefCount__Ns3NdnName_Ns3Empty_Ns3DefaultDeleter__lt__ns3NdnName__gt___methods(root_module, cls):
3032 ## 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 -07003033 cls.add_constructor([])
Alexander Afanasyev32c07562013-02-01 12:58:43 -08003034 ## 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]
3035 cls.add_constructor([param('ns3::SimpleRefCount< ns3::ndn::Name, ns3::empty, ns3::DefaultDeleter< ns3::ndn::Name > > const &', 'o')])
3036 ## 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 -07003037 cls.add_method('Cleanup',
3038 'void',
3039 [],
3040 is_static=True)
3041 return
3042
3043def register_Ns3SimpleRefCount__Ns3NdnCsEntry_Ns3Empty_Ns3DefaultDeleter__lt__ns3NdnCsEntry__gt___methods(root_module, cls):
3044 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::ndn::cs::Entry, ns3::empty, ns3::DefaultDeleter<ns3::ndn::cs::Entry> >::SimpleRefCount() [constructor]
3045 cls.add_constructor([])
3046 ## 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]
3047 cls.add_constructor([param('ns3::SimpleRefCount< ns3::ndn::cs::Entry, ns3::empty, ns3::DefaultDeleter< ns3::ndn::cs::Entry > > const &', 'o')])
3048 ## 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]
3049 cls.add_method('Cleanup',
3050 'void',
3051 [],
3052 is_static=True)
3053 return
3054
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07003055def register_Ns3SimpleRefCount__Ns3NdnPitEntry_Ns3Empty_Ns3DefaultDeleter__lt__ns3NdnPitEntry__gt___methods(root_module, cls):
3056 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::ndn::pit::Entry, ns3::empty, ns3::DefaultDeleter<ns3::ndn::pit::Entry> >::SimpleRefCount() [constructor]
3057 cls.add_constructor([])
3058 ## 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]
3059 cls.add_constructor([param('ns3::SimpleRefCount< ns3::ndn::pit::Entry, ns3::empty, ns3::DefaultDeleter< ns3::ndn::pit::Entry > > const &', 'o')])
3060 ## 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]
3061 cls.add_method('Cleanup',
3062 'void',
3063 [],
3064 is_static=True)
3065 return
3066
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003067def register_Ns3Time_methods(root_module, cls):
3068 cls.add_binary_comparison_operator('!=')
3069 cls.add_inplace_numeric_operator('+=', param('ns3::Time const &', 'right'))
3070 cls.add_inplace_numeric_operator('-=', param('ns3::Time const &', 'right'))
Alexander Afanasyeva28ec562012-10-25 14:07:32 -07003071 cls.add_output_stream_operator()
Alexander Afanasyeva8f5d882012-11-09 14:22:48 -08003072 cls.add_binary_comparison_operator('<=')
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003073 cls.add_binary_comparison_operator('==')
3074 cls.add_binary_comparison_operator('>=')
3075 cls.add_binary_numeric_operator('+', root_module['ns3::Time'], root_module['ns3::Time'], param('ns3::Time const &', 'right'))
3076 cls.add_binary_numeric_operator('-', root_module['ns3::Time'], root_module['ns3::Time'], param('ns3::Time const &', 'right'))
3077 cls.add_binary_comparison_operator('<')
3078 cls.add_binary_comparison_operator('>')
3079 ## nstime.h (module 'core'): ns3::Time::Time() [constructor]
3080 cls.add_constructor([])
3081 ## nstime.h (module 'core'): ns3::Time::Time(ns3::Time const & o) [copy constructor]
3082 cls.add_constructor([param('ns3::Time const &', 'o')])
3083 ## nstime.h (module 'core'): ns3::Time::Time(double v) [constructor]
3084 cls.add_constructor([param('double', 'v')])
3085 ## nstime.h (module 'core'): ns3::Time::Time(int v) [constructor]
3086 cls.add_constructor([param('int', 'v')])
3087 ## nstime.h (module 'core'): ns3::Time::Time(long int v) [constructor]
3088 cls.add_constructor([param('long int', 'v')])
3089 ## nstime.h (module 'core'): ns3::Time::Time(long long int v) [constructor]
3090 cls.add_constructor([param('long long int', 'v')])
3091 ## nstime.h (module 'core'): ns3::Time::Time(unsigned int v) [constructor]
3092 cls.add_constructor([param('unsigned int', 'v')])
3093 ## nstime.h (module 'core'): ns3::Time::Time(long unsigned int v) [constructor]
3094 cls.add_constructor([param('long unsigned int', 'v')])
3095 ## nstime.h (module 'core'): ns3::Time::Time(long long unsigned int v) [constructor]
3096 cls.add_constructor([param('long long unsigned int', 'v')])
3097 ## nstime.h (module 'core'): ns3::Time::Time(std::string const & s) [constructor]
3098 cls.add_constructor([param('std::string const &', 's')])
3099 ## nstime.h (module 'core'): ns3::Time::Time(ns3::int64x64_t const & value) [constructor]
3100 cls.add_constructor([param('ns3::int64x64_t const &', 'value')])
3101 ## nstime.h (module 'core'): int ns3::Time::Compare(ns3::Time const & o) const [member function]
3102 cls.add_method('Compare',
3103 'int',
3104 [param('ns3::Time const &', 'o')],
3105 is_const=True)
3106 ## nstime.h (module 'core'): static ns3::Time ns3::Time::From(ns3::int64x64_t const & from, ns3::Time::Unit timeUnit) [member function]
3107 cls.add_method('From',
3108 'ns3::Time',
3109 [param('ns3::int64x64_t const &', 'from'), param('ns3::Time::Unit', 'timeUnit')],
3110 is_static=True)
3111 ## nstime.h (module 'core'): static ns3::Time ns3::Time::From(ns3::int64x64_t const & value) [member function]
3112 cls.add_method('From',
3113 'ns3::Time',
3114 [param('ns3::int64x64_t const &', 'value')],
3115 is_static=True)
3116 ## nstime.h (module 'core'): static ns3::Time ns3::Time::FromDouble(double value, ns3::Time::Unit timeUnit) [member function]
3117 cls.add_method('FromDouble',
3118 'ns3::Time',
3119 [param('double', 'value'), param('ns3::Time::Unit', 'timeUnit')],
3120 is_static=True)
3121 ## nstime.h (module 'core'): static ns3::Time ns3::Time::FromInteger(uint64_t value, ns3::Time::Unit timeUnit) [member function]
3122 cls.add_method('FromInteger',
3123 'ns3::Time',
3124 [param('uint64_t', 'value'), param('ns3::Time::Unit', 'timeUnit')],
3125 is_static=True)
3126 ## nstime.h (module 'core'): double ns3::Time::GetDouble() const [member function]
3127 cls.add_method('GetDouble',
3128 'double',
3129 [],
3130 is_const=True)
3131 ## nstime.h (module 'core'): int64_t ns3::Time::GetFemtoSeconds() const [member function]
3132 cls.add_method('GetFemtoSeconds',
3133 'int64_t',
3134 [],
3135 is_const=True)
3136 ## nstime.h (module 'core'): int64_t ns3::Time::GetInteger() const [member function]
3137 cls.add_method('GetInteger',
3138 'int64_t',
3139 [],
3140 is_const=True)
3141 ## nstime.h (module 'core'): int64_t ns3::Time::GetMicroSeconds() const [member function]
3142 cls.add_method('GetMicroSeconds',
3143 'int64_t',
3144 [],
3145 is_const=True)
3146 ## nstime.h (module 'core'): int64_t ns3::Time::GetMilliSeconds() const [member function]
3147 cls.add_method('GetMilliSeconds',
3148 'int64_t',
3149 [],
3150 is_const=True)
3151 ## nstime.h (module 'core'): int64_t ns3::Time::GetNanoSeconds() const [member function]
3152 cls.add_method('GetNanoSeconds',
3153 'int64_t',
3154 [],
3155 is_const=True)
3156 ## nstime.h (module 'core'): int64_t ns3::Time::GetPicoSeconds() const [member function]
3157 cls.add_method('GetPicoSeconds',
3158 'int64_t',
3159 [],
3160 is_const=True)
3161 ## nstime.h (module 'core'): static ns3::Time::Unit ns3::Time::GetResolution() [member function]
3162 cls.add_method('GetResolution',
3163 'ns3::Time::Unit',
3164 [],
3165 is_static=True)
3166 ## nstime.h (module 'core'): double ns3::Time::GetSeconds() const [member function]
3167 cls.add_method('GetSeconds',
3168 'double',
3169 [],
3170 is_const=True)
3171 ## nstime.h (module 'core'): int64_t ns3::Time::GetTimeStep() const [member function]
3172 cls.add_method('GetTimeStep',
3173 'int64_t',
3174 [],
3175 is_const=True)
3176 ## nstime.h (module 'core'): bool ns3::Time::IsNegative() const [member function]
3177 cls.add_method('IsNegative',
3178 'bool',
3179 [],
3180 is_const=True)
3181 ## nstime.h (module 'core'): bool ns3::Time::IsPositive() const [member function]
3182 cls.add_method('IsPositive',
3183 'bool',
3184 [],
3185 is_const=True)
3186 ## nstime.h (module 'core'): bool ns3::Time::IsStrictlyNegative() const [member function]
3187 cls.add_method('IsStrictlyNegative',
3188 'bool',
3189 [],
3190 is_const=True)
3191 ## nstime.h (module 'core'): bool ns3::Time::IsStrictlyPositive() const [member function]
3192 cls.add_method('IsStrictlyPositive',
3193 'bool',
3194 [],
3195 is_const=True)
3196 ## nstime.h (module 'core'): bool ns3::Time::IsZero() const [member function]
3197 cls.add_method('IsZero',
3198 'bool',
3199 [],
3200 is_const=True)
3201 ## nstime.h (module 'core'): static void ns3::Time::SetResolution(ns3::Time::Unit resolution) [member function]
3202 cls.add_method('SetResolution',
3203 'void',
3204 [param('ns3::Time::Unit', 'resolution')],
3205 is_static=True)
3206 ## nstime.h (module 'core'): ns3::int64x64_t ns3::Time::To(ns3::Time::Unit timeUnit) const [member function]
3207 cls.add_method('To',
3208 'ns3::int64x64_t',
3209 [param('ns3::Time::Unit', 'timeUnit')],
3210 is_const=True)
3211 ## nstime.h (module 'core'): double ns3::Time::ToDouble(ns3::Time::Unit timeUnit) const [member function]
3212 cls.add_method('ToDouble',
3213 'double',
3214 [param('ns3::Time::Unit', 'timeUnit')],
3215 is_const=True)
3216 ## nstime.h (module 'core'): int64_t ns3::Time::ToInteger(ns3::Time::Unit timeUnit) const [member function]
3217 cls.add_method('ToInteger',
3218 'int64_t',
3219 [param('ns3::Time::Unit', 'timeUnit')],
3220 is_const=True)
3221 return
3222
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07003223def register_Ns3TopologyReader_methods(root_module, cls):
3224 ## topology-reader.h (module 'topology-read'): ns3::TopologyReader::TopologyReader() [constructor]
3225 cls.add_constructor([])
3226 ## topology-reader.h (module 'topology-read'): void ns3::TopologyReader::AddLink(ns3::TopologyReader::Link link) [member function]
3227 cls.add_method('AddLink',
3228 'void',
3229 [param('ns3::TopologyReader::Link', 'link')])
3230 ## topology-reader.h (module 'topology-read'): std::string ns3::TopologyReader::GetFileName() const [member function]
3231 cls.add_method('GetFileName',
3232 'std::string',
3233 [],
3234 is_const=True)
3235 ## topology-reader.h (module 'topology-read'): std::_List_const_iterator<ns3::TopologyReader::Link> ns3::TopologyReader::LinksBegin() const [member function]
3236 cls.add_method('LinksBegin',
3237 'std::_List_const_iterator< ns3::TopologyReader::Link >',
3238 [],
3239 is_const=True)
3240 ## topology-reader.h (module 'topology-read'): bool ns3::TopologyReader::LinksEmpty() const [member function]
3241 cls.add_method('LinksEmpty',
3242 'bool',
3243 [],
3244 is_const=True)
3245 ## topology-reader.h (module 'topology-read'): std::_List_const_iterator<ns3::TopologyReader::Link> ns3::TopologyReader::LinksEnd() const [member function]
3246 cls.add_method('LinksEnd',
3247 'std::_List_const_iterator< ns3::TopologyReader::Link >',
3248 [],
3249 is_const=True)
3250 ## topology-reader.h (module 'topology-read'): int ns3::TopologyReader::LinksSize() const [member function]
3251 cls.add_method('LinksSize',
3252 'int',
3253 [],
3254 is_const=True)
3255 ## topology-reader.h (module 'topology-read'): ns3::NodeContainer ns3::TopologyReader::Read() [member function]
3256 cls.add_method('Read',
3257 'ns3::NodeContainer',
3258 [],
3259 is_pure_virtual=True, is_virtual=True)
3260 ## topology-reader.h (module 'topology-read'): void ns3::TopologyReader::SetFileName(std::string const & fileName) [member function]
3261 cls.add_method('SetFileName',
3262 'void',
3263 [param('std::string const &', 'fileName')])
3264 return
3265
3266def register_Ns3TopologyReaderLink_methods(root_module, cls):
3267 ## topology-reader.h (module 'topology-read'): ns3::TopologyReader::Link::Link(ns3::TopologyReader::Link const & arg0) [copy constructor]
3268 cls.add_constructor([param('ns3::TopologyReader::Link const &', 'arg0')])
3269 ## topology-reader.h (module 'topology-read'): ns3::TopologyReader::Link::Link() [constructor]
3270 cls.add_constructor([])
3271 ## 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]
3272 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')])
3273 ## 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]
3274 cls.add_method('AttributesBegin',
3275 '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 > > > >',
3276 [])
3277 ## 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]
3278 cls.add_method('AttributesEnd',
3279 '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 > > > >',
3280 [])
3281 ## topology-reader.h (module 'topology-read'): std::string ns3::TopologyReader::Link::GetAttribute(std::string const & name) const [member function]
3282 cls.add_method('GetAttribute',
3283 'std::string',
3284 [param('std::string const &', 'name')],
3285 is_const=True)
3286 ## topology-reader.h (module 'topology-read'): bool ns3::TopologyReader::Link::GetAttributeFailSafe(std::string const & name, std::string & value) const [member function]
3287 cls.add_method('GetAttributeFailSafe',
3288 'bool',
3289 [param('std::string const &', 'name'), param('std::string &', 'value')],
3290 is_const=True)
3291 ## topology-reader.h (module 'topology-read'): ns3::Ptr<ns3::NetDevice> ns3::TopologyReader::Link::GetFromNetDevice() const [member function]
3292 cls.add_method('GetFromNetDevice',
3293 'ns3::Ptr< ns3::NetDevice >',
3294 [],
3295 is_const=True)
3296 ## topology-reader.h (module 'topology-read'): ns3::Ptr<ns3::Node> ns3::TopologyReader::Link::GetFromNode() const [member function]
3297 cls.add_method('GetFromNode',
3298 'ns3::Ptr< ns3::Node >',
3299 [],
3300 is_const=True)
3301 ## topology-reader.h (module 'topology-read'): std::string ns3::TopologyReader::Link::GetFromNodeName() const [member function]
3302 cls.add_method('GetFromNodeName',
3303 'std::string',
3304 [],
3305 is_const=True)
3306 ## topology-reader.h (module 'topology-read'): ns3::Ptr<ns3::NetDevice> ns3::TopologyReader::Link::GetToNetDevice() const [member function]
3307 cls.add_method('GetToNetDevice',
3308 'ns3::Ptr< ns3::NetDevice >',
3309 [],
3310 is_const=True)
3311 ## topology-reader.h (module 'topology-read'): ns3::Ptr<ns3::Node> ns3::TopologyReader::Link::GetToNode() const [member function]
3312 cls.add_method('GetToNode',
3313 'ns3::Ptr< ns3::Node >',
3314 [],
3315 is_const=True)
3316 ## topology-reader.h (module 'topology-read'): std::string ns3::TopologyReader::Link::GetToNodeName() const [member function]
3317 cls.add_method('GetToNodeName',
3318 'std::string',
3319 [],
3320 is_const=True)
3321 ## topology-reader.h (module 'topology-read'): void ns3::TopologyReader::Link::SetAttribute(std::string const & name, std::string const & value) [member function]
3322 cls.add_method('SetAttribute',
3323 'void',
3324 [param('std::string const &', 'name'), param('std::string const &', 'value')])
3325 ## topology-reader.h (module 'topology-read'): void ns3::TopologyReader::Link::SetNetDevices(ns3::Ptr<ns3::NetDevice> from, ns3::Ptr<ns3::NetDevice> to) [member function]
3326 cls.add_method('SetNetDevices',
3327 'void',
3328 [param('ns3::Ptr< ns3::NetDevice >', 'from'), param('ns3::Ptr< ns3::NetDevice >', 'to')])
3329 return
3330
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003331def register_Ns3TraceSourceAccessor_methods(root_module, cls):
3332 ## trace-source-accessor.h (module 'core'): ns3::TraceSourceAccessor::TraceSourceAccessor(ns3::TraceSourceAccessor const & arg0) [copy constructor]
3333 cls.add_constructor([param('ns3::TraceSourceAccessor const &', 'arg0')])
3334 ## trace-source-accessor.h (module 'core'): ns3::TraceSourceAccessor::TraceSourceAccessor() [constructor]
3335 cls.add_constructor([])
3336 ## trace-source-accessor.h (module 'core'): bool ns3::TraceSourceAccessor::Connect(ns3::ObjectBase * obj, std::string context, ns3::CallbackBase const & cb) const [member function]
3337 cls.add_method('Connect',
3338 'bool',
3339 [param('ns3::ObjectBase *', 'obj', transfer_ownership=False), param('std::string', 'context'), param('ns3::CallbackBase const &', 'cb')],
3340 is_pure_virtual=True, is_const=True, is_virtual=True)
3341 ## trace-source-accessor.h (module 'core'): bool ns3::TraceSourceAccessor::ConnectWithoutContext(ns3::ObjectBase * obj, ns3::CallbackBase const & cb) const [member function]
3342 cls.add_method('ConnectWithoutContext',
3343 'bool',
3344 [param('ns3::ObjectBase *', 'obj', transfer_ownership=False), param('ns3::CallbackBase const &', 'cb')],
3345 is_pure_virtual=True, is_const=True, is_virtual=True)
3346 ## trace-source-accessor.h (module 'core'): bool ns3::TraceSourceAccessor::Disconnect(ns3::ObjectBase * obj, std::string context, ns3::CallbackBase const & cb) const [member function]
3347 cls.add_method('Disconnect',
3348 'bool',
3349 [param('ns3::ObjectBase *', 'obj', transfer_ownership=False), param('std::string', 'context'), param('ns3::CallbackBase const &', 'cb')],
3350 is_pure_virtual=True, is_const=True, is_virtual=True)
3351 ## trace-source-accessor.h (module 'core'): bool ns3::TraceSourceAccessor::DisconnectWithoutContext(ns3::ObjectBase * obj, ns3::CallbackBase const & cb) const [member function]
3352 cls.add_method('DisconnectWithoutContext',
3353 'bool',
3354 [param('ns3::ObjectBase *', 'obj', transfer_ownership=False), param('ns3::CallbackBase const &', 'cb')],
3355 is_pure_virtual=True, is_const=True, is_virtual=True)
3356 return
3357
3358def register_Ns3Trailer_methods(root_module, cls):
3359 cls.add_output_stream_operator()
3360 ## trailer.h (module 'network'): ns3::Trailer::Trailer() [constructor]
3361 cls.add_constructor([])
3362 ## trailer.h (module 'network'): ns3::Trailer::Trailer(ns3::Trailer const & arg0) [copy constructor]
3363 cls.add_constructor([param('ns3::Trailer const &', 'arg0')])
3364 ## trailer.h (module 'network'): uint32_t ns3::Trailer::Deserialize(ns3::Buffer::Iterator end) [member function]
3365 cls.add_method('Deserialize',
3366 'uint32_t',
3367 [param('ns3::Buffer::Iterator', 'end')],
3368 is_pure_virtual=True, is_virtual=True)
3369 ## trailer.h (module 'network'): uint32_t ns3::Trailer::GetSerializedSize() const [member function]
3370 cls.add_method('GetSerializedSize',
3371 'uint32_t',
3372 [],
3373 is_pure_virtual=True, is_const=True, is_virtual=True)
3374 ## trailer.h (module 'network'): static ns3::TypeId ns3::Trailer::GetTypeId() [member function]
3375 cls.add_method('GetTypeId',
3376 'ns3::TypeId',
3377 [],
3378 is_static=True)
3379 ## trailer.h (module 'network'): void ns3::Trailer::Print(std::ostream & os) const [member function]
3380 cls.add_method('Print',
3381 'void',
3382 [param('std::ostream &', 'os')],
3383 is_pure_virtual=True, is_const=True, is_virtual=True)
3384 ## trailer.h (module 'network'): void ns3::Trailer::Serialize(ns3::Buffer::Iterator start) const [member function]
3385 cls.add_method('Serialize',
3386 'void',
3387 [param('ns3::Buffer::Iterator', 'start')],
3388 is_pure_virtual=True, is_const=True, is_virtual=True)
3389 return
3390
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07003391def register_Ns3AnnotatedTopologyReader_methods(root_module, cls):
3392 ## annotated-topology-reader.h (module 'ndnSIM'): ns3::AnnotatedTopologyReader::AnnotatedTopologyReader(std::string const & path="", double scale=1.0e+0) [constructor]
3393 cls.add_constructor([param('std::string const &', 'path', default_value='""'), param('double', 'scale', default_value='1.0e+0')])
3394 ## annotated-topology-reader.h (module 'ndnSIM'): ns3::NodeContainer ns3::AnnotatedTopologyReader::Read() [member function]
3395 cls.add_method('Read',
3396 'ns3::NodeContainer',
3397 [],
3398 is_virtual=True)
3399 ## annotated-topology-reader.h (module 'ndnSIM'): ns3::NodeContainer ns3::AnnotatedTopologyReader::GetNodes() const [member function]
3400 cls.add_method('GetNodes',
3401 'ns3::NodeContainer',
3402 [],
Alexander Afanasyev858d5312013-07-10 18:50:18 -07003403 is_const=True, is_virtual=True)
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07003404 ## annotated-topology-reader.h (module 'ndnSIM'): std::list<ns3::TopologyReader::Link, std::allocator<ns3::TopologyReader::Link> > const & ns3::AnnotatedTopologyReader::GetLinks() const [member function]
3405 cls.add_method('GetLinks',
3406 'std::list< ns3::TopologyReader::Link > const &',
3407 [],
Alexander Afanasyev858d5312013-07-10 18:50:18 -07003408 is_const=True, is_virtual=True)
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07003409 ## annotated-topology-reader.h (module 'ndnSIM'): void ns3::AnnotatedTopologyReader::AssignIpv4Addresses(ns3::Ipv4Address base) [member function]
3410 cls.add_method('AssignIpv4Addresses',
3411 'void',
Alexander Afanasyev858d5312013-07-10 18:50:18 -07003412 [param('ns3::Ipv4Address', 'base')],
3413 is_virtual=True)
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07003414 ## annotated-topology-reader.h (module 'ndnSIM'): void ns3::AnnotatedTopologyReader::SetBoundingBox(double ulx, double uly, double lrx, double lry) [member function]
3415 cls.add_method('SetBoundingBox',
3416 'void',
Alexander Afanasyev858d5312013-07-10 18:50:18 -07003417 [param('double', 'ulx'), param('double', 'uly'), param('double', 'lrx'), param('double', 'lry')],
3418 is_virtual=True)
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07003419 ## annotated-topology-reader.h (module 'ndnSIM'): void ns3::AnnotatedTopologyReader::SetMobilityModel(std::string const & model) [member function]
3420 cls.add_method('SetMobilityModel',
3421 'void',
Alexander Afanasyev858d5312013-07-10 18:50:18 -07003422 [param('std::string const &', 'model')],
3423 is_virtual=True)
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07003424 ## annotated-topology-reader.h (module 'ndnSIM'): void ns3::AnnotatedTopologyReader::ApplyOspfMetric() [member function]
3425 cls.add_method('ApplyOspfMetric',
3426 'void',
Alexander Afanasyev858d5312013-07-10 18:50:18 -07003427 [],
3428 is_virtual=True)
3429 ## annotated-topology-reader.h (module 'ndnSIM'): void ns3::AnnotatedTopologyReader::SaveTopology(std::string const & file) [member function]
Alexander Afanasyev71029732012-11-19 23:50:52 -08003430 cls.add_method('SaveTopology',
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07003431 'void',
3432 [param('std::string const &', 'file')],
Alexander Afanasyev858d5312013-07-10 18:50:18 -07003433 is_virtual=True)
3434 ## annotated-topology-reader.h (module 'ndnSIM'): void ns3::AnnotatedTopologyReader::SaveGraphviz(std::string const & file) [member function]
3435 cls.add_method('SaveGraphviz',
3436 'void',
3437 [param('std::string const &', 'file')],
3438 is_virtual=True)
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07003439 ## annotated-topology-reader.h (module 'ndnSIM'): ns3::Ptr<ns3::Node> ns3::AnnotatedTopologyReader::CreateNode(std::string const name, uint32_t systemId) [member function]
3440 cls.add_method('CreateNode',
3441 'ns3::Ptr< ns3::Node >',
3442 [param('std::string const', 'name'), param('uint32_t', 'systemId')],
3443 visibility='protected')
3444 ## 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]
3445 cls.add_method('CreateNode',
3446 'ns3::Ptr< ns3::Node >',
3447 [param('std::string const', 'name'), param('double', 'posX'), param('double', 'posY'), param('uint32_t', 'systemId')],
3448 visibility='protected')
3449 ## annotated-topology-reader.h (module 'ndnSIM'): void ns3::AnnotatedTopologyReader::ApplySettings() [member function]
3450 cls.add_method('ApplySettings',
3451 'void',
3452 [],
3453 visibility='protected')
3454 return
3455
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003456def register_Ns3Application_methods(root_module, cls):
3457 ## application.h (module 'network'): ns3::Application::Application(ns3::Application const & arg0) [copy constructor]
3458 cls.add_constructor([param('ns3::Application const &', 'arg0')])
3459 ## application.h (module 'network'): ns3::Application::Application() [constructor]
3460 cls.add_constructor([])
3461 ## application.h (module 'network'): ns3::Ptr<ns3::Node> ns3::Application::GetNode() const [member function]
3462 cls.add_method('GetNode',
3463 'ns3::Ptr< ns3::Node >',
3464 [],
3465 is_const=True)
3466 ## application.h (module 'network'): static ns3::TypeId ns3::Application::GetTypeId() [member function]
3467 cls.add_method('GetTypeId',
3468 'ns3::TypeId',
3469 [],
3470 is_static=True)
3471 ## application.h (module 'network'): void ns3::Application::SetNode(ns3::Ptr<ns3::Node> node) [member function]
3472 cls.add_method('SetNode',
3473 'void',
3474 [param('ns3::Ptr< ns3::Node >', 'node')])
3475 ## application.h (module 'network'): void ns3::Application::SetStartTime(ns3::Time start) [member function]
3476 cls.add_method('SetStartTime',
3477 'void',
3478 [param('ns3::Time', 'start')])
3479 ## application.h (module 'network'): void ns3::Application::SetStopTime(ns3::Time stop) [member function]
3480 cls.add_method('SetStopTime',
3481 'void',
3482 [param('ns3::Time', 'stop')])
3483 ## application.h (module 'network'): void ns3::Application::DoDispose() [member function]
3484 cls.add_method('DoDispose',
3485 'void',
3486 [],
3487 visibility='protected', is_virtual=True)
Alexander Afanasyev5b8d61b2013-05-03 10:23:21 -07003488 ## application.h (module 'network'): void ns3::Application::DoInitialize() [member function]
3489 cls.add_method('DoInitialize',
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003490 'void',
3491 [],
3492 visibility='protected', is_virtual=True)
3493 ## application.h (module 'network'): void ns3::Application::StartApplication() [member function]
3494 cls.add_method('StartApplication',
3495 'void',
3496 [],
Alexander Afanasyev4756b892012-04-18 14:48:43 -07003497 visibility='private', is_virtual=True)
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003498 ## application.h (module 'network'): void ns3::Application::StopApplication() [member function]
3499 cls.add_method('StopApplication',
3500 'void',
3501 [],
Alexander Afanasyev4756b892012-04-18 14:48:43 -07003502 visibility='private', is_virtual=True)
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003503 return
3504
3505def register_Ns3AttributeAccessor_methods(root_module, cls):
3506 ## attribute.h (module 'core'): ns3::AttributeAccessor::AttributeAccessor(ns3::AttributeAccessor const & arg0) [copy constructor]
3507 cls.add_constructor([param('ns3::AttributeAccessor const &', 'arg0')])
3508 ## attribute.h (module 'core'): ns3::AttributeAccessor::AttributeAccessor() [constructor]
3509 cls.add_constructor([])
3510 ## attribute.h (module 'core'): bool ns3::AttributeAccessor::Get(ns3::ObjectBase const * object, ns3::AttributeValue & attribute) const [member function]
3511 cls.add_method('Get',
3512 'bool',
3513 [param('ns3::ObjectBase const *', 'object'), param('ns3::AttributeValue &', 'attribute')],
3514 is_pure_virtual=True, is_const=True, is_virtual=True)
3515 ## attribute.h (module 'core'): bool ns3::AttributeAccessor::HasGetter() const [member function]
3516 cls.add_method('HasGetter',
3517 'bool',
3518 [],
3519 is_pure_virtual=True, is_const=True, is_virtual=True)
3520 ## attribute.h (module 'core'): bool ns3::AttributeAccessor::HasSetter() const [member function]
3521 cls.add_method('HasSetter',
3522 'bool',
3523 [],
3524 is_pure_virtual=True, is_const=True, is_virtual=True)
3525 ## attribute.h (module 'core'): bool ns3::AttributeAccessor::Set(ns3::ObjectBase * object, ns3::AttributeValue const & value) const [member function]
3526 cls.add_method('Set',
3527 'bool',
3528 [param('ns3::ObjectBase *', 'object', transfer_ownership=False), param('ns3::AttributeValue const &', 'value')],
3529 is_pure_virtual=True, is_const=True, is_virtual=True)
3530 return
3531
3532def register_Ns3AttributeChecker_methods(root_module, cls):
3533 ## attribute.h (module 'core'): ns3::AttributeChecker::AttributeChecker(ns3::AttributeChecker const & arg0) [copy constructor]
3534 cls.add_constructor([param('ns3::AttributeChecker const &', 'arg0')])
3535 ## attribute.h (module 'core'): ns3::AttributeChecker::AttributeChecker() [constructor]
3536 cls.add_constructor([])
3537 ## attribute.h (module 'core'): bool ns3::AttributeChecker::Check(ns3::AttributeValue const & value) const [member function]
3538 cls.add_method('Check',
3539 'bool',
3540 [param('ns3::AttributeValue const &', 'value')],
3541 is_pure_virtual=True, is_const=True, is_virtual=True)
3542 ## attribute.h (module 'core'): bool ns3::AttributeChecker::Copy(ns3::AttributeValue const & source, ns3::AttributeValue & destination) const [member function]
3543 cls.add_method('Copy',
3544 'bool',
3545 [param('ns3::AttributeValue const &', 'source'), param('ns3::AttributeValue &', 'destination')],
3546 is_pure_virtual=True, is_const=True, is_virtual=True)
3547 ## attribute.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::AttributeChecker::Create() const [member function]
3548 cls.add_method('Create',
3549 'ns3::Ptr< ns3::AttributeValue >',
3550 [],
3551 is_pure_virtual=True, is_const=True, is_virtual=True)
3552 ## attribute.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::AttributeChecker::CreateValidValue(ns3::AttributeValue const & value) const [member function]
3553 cls.add_method('CreateValidValue',
3554 'ns3::Ptr< ns3::AttributeValue >',
3555 [param('ns3::AttributeValue const &', 'value')],
3556 is_const=True)
3557 ## attribute.h (module 'core'): std::string ns3::AttributeChecker::GetUnderlyingTypeInformation() const [member function]
3558 cls.add_method('GetUnderlyingTypeInformation',
3559 'std::string',
3560 [],
3561 is_pure_virtual=True, is_const=True, is_virtual=True)
3562 ## attribute.h (module 'core'): std::string ns3::AttributeChecker::GetValueTypeName() const [member function]
3563 cls.add_method('GetValueTypeName',
3564 'std::string',
3565 [],
3566 is_pure_virtual=True, is_const=True, is_virtual=True)
3567 ## attribute.h (module 'core'): bool ns3::AttributeChecker::HasUnderlyingTypeInformation() const [member function]
3568 cls.add_method('HasUnderlyingTypeInformation',
3569 'bool',
3570 [],
3571 is_pure_virtual=True, is_const=True, is_virtual=True)
3572 return
3573
3574def register_Ns3AttributeValue_methods(root_module, cls):
3575 ## attribute.h (module 'core'): ns3::AttributeValue::AttributeValue(ns3::AttributeValue const & arg0) [copy constructor]
3576 cls.add_constructor([param('ns3::AttributeValue const &', 'arg0')])
3577 ## attribute.h (module 'core'): ns3::AttributeValue::AttributeValue() [constructor]
3578 cls.add_constructor([])
3579 ## attribute.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::AttributeValue::Copy() const [member function]
3580 cls.add_method('Copy',
3581 'ns3::Ptr< ns3::AttributeValue >',
3582 [],
3583 is_pure_virtual=True, is_const=True, is_virtual=True)
3584 ## attribute.h (module 'core'): bool ns3::AttributeValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
3585 cls.add_method('DeserializeFromString',
3586 'bool',
3587 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3588 is_pure_virtual=True, is_virtual=True)
3589 ## attribute.h (module 'core'): std::string ns3::AttributeValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
3590 cls.add_method('SerializeToString',
3591 'std::string',
3592 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3593 is_pure_virtual=True, is_const=True, is_virtual=True)
3594 return
3595
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07003596def register_Ns3BooleanChecker_methods(root_module, cls):
3597 ## boolean.h (module 'core'): ns3::BooleanChecker::BooleanChecker() [constructor]
3598 cls.add_constructor([])
3599 ## boolean.h (module 'core'): ns3::BooleanChecker::BooleanChecker(ns3::BooleanChecker const & arg0) [copy constructor]
3600 cls.add_constructor([param('ns3::BooleanChecker const &', 'arg0')])
3601 return
3602
3603def register_Ns3BooleanValue_methods(root_module, cls):
3604 cls.add_output_stream_operator()
3605 ## boolean.h (module 'core'): ns3::BooleanValue::BooleanValue(ns3::BooleanValue const & arg0) [copy constructor]
3606 cls.add_constructor([param('ns3::BooleanValue const &', 'arg0')])
3607 ## boolean.h (module 'core'): ns3::BooleanValue::BooleanValue() [constructor]
3608 cls.add_constructor([])
3609 ## boolean.h (module 'core'): ns3::BooleanValue::BooleanValue(bool value) [constructor]
3610 cls.add_constructor([param('bool', 'value')])
3611 ## boolean.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::BooleanValue::Copy() const [member function]
3612 cls.add_method('Copy',
3613 'ns3::Ptr< ns3::AttributeValue >',
3614 [],
3615 is_const=True, is_virtual=True)
3616 ## boolean.h (module 'core'): bool ns3::BooleanValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
3617 cls.add_method('DeserializeFromString',
3618 'bool',
3619 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3620 is_virtual=True)
3621 ## boolean.h (module 'core'): bool ns3::BooleanValue::Get() const [member function]
3622 cls.add_method('Get',
3623 'bool',
3624 [],
3625 is_const=True)
3626 ## boolean.h (module 'core'): std::string ns3::BooleanValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
3627 cls.add_method('SerializeToString',
3628 'std::string',
3629 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3630 is_const=True, is_virtual=True)
3631 ## boolean.h (module 'core'): void ns3::BooleanValue::Set(bool value) [member function]
3632 cls.add_method('Set',
3633 'void',
3634 [param('bool', 'value')])
3635 return
3636
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003637def register_Ns3CallbackChecker_methods(root_module, cls):
3638 ## callback.h (module 'core'): ns3::CallbackChecker::CallbackChecker() [constructor]
3639 cls.add_constructor([])
3640 ## callback.h (module 'core'): ns3::CallbackChecker::CallbackChecker(ns3::CallbackChecker const & arg0) [copy constructor]
3641 cls.add_constructor([param('ns3::CallbackChecker const &', 'arg0')])
3642 return
3643
3644def register_Ns3CallbackImplBase_methods(root_module, cls):
3645 ## callback.h (module 'core'): ns3::CallbackImplBase::CallbackImplBase() [constructor]
3646 cls.add_constructor([])
3647 ## callback.h (module 'core'): ns3::CallbackImplBase::CallbackImplBase(ns3::CallbackImplBase const & arg0) [copy constructor]
3648 cls.add_constructor([param('ns3::CallbackImplBase const &', 'arg0')])
3649 ## callback.h (module 'core'): bool ns3::CallbackImplBase::IsEqual(ns3::Ptr<ns3::CallbackImplBase const> other) const [member function]
3650 cls.add_method('IsEqual',
3651 'bool',
3652 [param('ns3::Ptr< ns3::CallbackImplBase const >', 'other')],
3653 is_pure_virtual=True, is_const=True, is_virtual=True)
3654 return
3655
3656def register_Ns3CallbackValue_methods(root_module, cls):
3657 ## callback.h (module 'core'): ns3::CallbackValue::CallbackValue(ns3::CallbackValue const & arg0) [copy constructor]
3658 cls.add_constructor([param('ns3::CallbackValue const &', 'arg0')])
3659 ## callback.h (module 'core'): ns3::CallbackValue::CallbackValue() [constructor]
3660 cls.add_constructor([])
3661 ## callback.h (module 'core'): ns3::CallbackValue::CallbackValue(ns3::CallbackBase const & base) [constructor]
3662 cls.add_constructor([param('ns3::CallbackBase const &', 'base')])
3663 ## callback.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::CallbackValue::Copy() const [member function]
3664 cls.add_method('Copy',
3665 'ns3::Ptr< ns3::AttributeValue >',
3666 [],
3667 is_const=True, is_virtual=True)
3668 ## callback.h (module 'core'): bool ns3::CallbackValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
3669 cls.add_method('DeserializeFromString',
3670 'bool',
3671 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3672 is_virtual=True)
3673 ## callback.h (module 'core'): std::string ns3::CallbackValue::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 ## callback.h (module 'core'): void ns3::CallbackValue::Set(ns3::CallbackBase base) [member function]
3679 cls.add_method('Set',
3680 'void',
3681 [param('ns3::CallbackBase', 'base')])
3682 return
3683
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07003684def register_Ns3DoubleValue_methods(root_module, cls):
3685 ## double.h (module 'core'): ns3::DoubleValue::DoubleValue() [constructor]
3686 cls.add_constructor([])
3687 ## double.h (module 'core'): ns3::DoubleValue::DoubleValue(ns3::DoubleValue const & arg0) [copy constructor]
3688 cls.add_constructor([param('ns3::DoubleValue const &', 'arg0')])
3689 ## double.h (module 'core'): ns3::DoubleValue::DoubleValue(double const & value) [constructor]
3690 cls.add_constructor([param('double const &', 'value')])
3691 ## double.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::DoubleValue::Copy() const [member function]
3692 cls.add_method('Copy',
3693 'ns3::Ptr< ns3::AttributeValue >',
3694 [],
3695 is_const=True, is_virtual=True)
3696 ## double.h (module 'core'): bool ns3::DoubleValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
3697 cls.add_method('DeserializeFromString',
3698 'bool',
3699 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3700 is_virtual=True)
3701 ## double.h (module 'core'): double ns3::DoubleValue::Get() const [member function]
3702 cls.add_method('Get',
3703 'double',
3704 [],
3705 is_const=True)
3706 ## double.h (module 'core'): std::string ns3::DoubleValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
3707 cls.add_method('SerializeToString',
3708 'std::string',
3709 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3710 is_const=True, is_virtual=True)
3711 ## double.h (module 'core'): void ns3::DoubleValue::Set(double const & value) [member function]
3712 cls.add_method('Set',
3713 'void',
3714 [param('double const &', 'value')])
3715 return
3716
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003717def register_Ns3EmptyAttributeValue_methods(root_module, cls):
3718 ## attribute.h (module 'core'): ns3::EmptyAttributeValue::EmptyAttributeValue(ns3::EmptyAttributeValue const & arg0) [copy constructor]
3719 cls.add_constructor([param('ns3::EmptyAttributeValue const &', 'arg0')])
3720 ## attribute.h (module 'core'): ns3::EmptyAttributeValue::EmptyAttributeValue() [constructor]
3721 cls.add_constructor([])
3722 ## attribute.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::EmptyAttributeValue::Copy() const [member function]
3723 cls.add_method('Copy',
3724 'ns3::Ptr< ns3::AttributeValue >',
3725 [],
3726 is_const=True, visibility='private', is_virtual=True)
3727 ## attribute.h (module 'core'): bool ns3::EmptyAttributeValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
3728 cls.add_method('DeserializeFromString',
3729 'bool',
3730 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3731 visibility='private', is_virtual=True)
3732 ## attribute.h (module 'core'): std::string ns3::EmptyAttributeValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
3733 cls.add_method('SerializeToString',
3734 'std::string',
3735 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3736 is_const=True, visibility='private', is_virtual=True)
3737 return
3738
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07003739def register_Ns3EnumChecker_methods(root_module, cls):
3740 ## enum.h (module 'core'): ns3::EnumChecker::EnumChecker(ns3::EnumChecker const & arg0) [copy constructor]
3741 cls.add_constructor([param('ns3::EnumChecker const &', 'arg0')])
3742 ## enum.h (module 'core'): ns3::EnumChecker::EnumChecker() [constructor]
3743 cls.add_constructor([])
3744 ## enum.h (module 'core'): void ns3::EnumChecker::Add(int v, std::string name) [member function]
3745 cls.add_method('Add',
3746 'void',
3747 [param('int', 'v'), param('std::string', 'name')])
3748 ## enum.h (module 'core'): void ns3::EnumChecker::AddDefault(int v, std::string name) [member function]
3749 cls.add_method('AddDefault',
3750 'void',
3751 [param('int', 'v'), param('std::string', 'name')])
3752 ## enum.h (module 'core'): bool ns3::EnumChecker::Check(ns3::AttributeValue const & value) const [member function]
3753 cls.add_method('Check',
3754 'bool',
3755 [param('ns3::AttributeValue const &', 'value')],
3756 is_const=True, is_virtual=True)
3757 ## enum.h (module 'core'): bool ns3::EnumChecker::Copy(ns3::AttributeValue const & src, ns3::AttributeValue & dst) const [member function]
3758 cls.add_method('Copy',
3759 'bool',
3760 [param('ns3::AttributeValue const &', 'src'), param('ns3::AttributeValue &', 'dst')],
3761 is_const=True, is_virtual=True)
3762 ## enum.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::EnumChecker::Create() const [member function]
3763 cls.add_method('Create',
3764 'ns3::Ptr< ns3::AttributeValue >',
3765 [],
3766 is_const=True, is_virtual=True)
3767 ## enum.h (module 'core'): std::string ns3::EnumChecker::GetUnderlyingTypeInformation() const [member function]
3768 cls.add_method('GetUnderlyingTypeInformation',
3769 'std::string',
3770 [],
3771 is_const=True, is_virtual=True)
3772 ## enum.h (module 'core'): std::string ns3::EnumChecker::GetValueTypeName() const [member function]
3773 cls.add_method('GetValueTypeName',
3774 'std::string',
3775 [],
3776 is_const=True, is_virtual=True)
3777 ## enum.h (module 'core'): bool ns3::EnumChecker::HasUnderlyingTypeInformation() const [member function]
3778 cls.add_method('HasUnderlyingTypeInformation',
3779 'bool',
3780 [],
3781 is_const=True, is_virtual=True)
3782 return
3783
3784def register_Ns3EnumValue_methods(root_module, cls):
3785 ## enum.h (module 'core'): ns3::EnumValue::EnumValue(ns3::EnumValue const & arg0) [copy constructor]
3786 cls.add_constructor([param('ns3::EnumValue const &', 'arg0')])
3787 ## enum.h (module 'core'): ns3::EnumValue::EnumValue() [constructor]
3788 cls.add_constructor([])
3789 ## enum.h (module 'core'): ns3::EnumValue::EnumValue(int v) [constructor]
3790 cls.add_constructor([param('int', 'v')])
3791 ## enum.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::EnumValue::Copy() const [member function]
3792 cls.add_method('Copy',
3793 'ns3::Ptr< ns3::AttributeValue >',
3794 [],
3795 is_const=True, is_virtual=True)
3796 ## enum.h (module 'core'): bool ns3::EnumValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
3797 cls.add_method('DeserializeFromString',
3798 'bool',
3799 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3800 is_virtual=True)
3801 ## enum.h (module 'core'): int ns3::EnumValue::Get() const [member function]
3802 cls.add_method('Get',
3803 'int',
3804 [],
3805 is_const=True)
3806 ## enum.h (module 'core'): std::string ns3::EnumValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
3807 cls.add_method('SerializeToString',
3808 'std::string',
3809 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3810 is_const=True, is_virtual=True)
3811 ## enum.h (module 'core'): void ns3::EnumValue::Set(int v) [member function]
3812 cls.add_method('Set',
3813 'void',
3814 [param('int', 'v')])
3815 return
3816
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003817def register_Ns3EventImpl_methods(root_module, cls):
3818 ## event-impl.h (module 'core'): ns3::EventImpl::EventImpl(ns3::EventImpl const & arg0) [copy constructor]
3819 cls.add_constructor([param('ns3::EventImpl const &', 'arg0')])
3820 ## event-impl.h (module 'core'): ns3::EventImpl::EventImpl() [constructor]
3821 cls.add_constructor([])
3822 ## event-impl.h (module 'core'): void ns3::EventImpl::Cancel() [member function]
3823 cls.add_method('Cancel',
3824 'void',
3825 [])
3826 ## event-impl.h (module 'core'): void ns3::EventImpl::Invoke() [member function]
3827 cls.add_method('Invoke',
3828 'void',
3829 [])
3830 ## event-impl.h (module 'core'): bool ns3::EventImpl::IsCancelled() [member function]
3831 cls.add_method('IsCancelled',
3832 'bool',
3833 [])
3834 ## event-impl.h (module 'core'): void ns3::EventImpl::Notify() [member function]
3835 cls.add_method('Notify',
3836 'void',
3837 [],
3838 is_pure_virtual=True, visibility='protected', is_virtual=True)
3839 return
3840
3841def register_Ns3IntegerValue_methods(root_module, cls):
3842 ## integer.h (module 'core'): ns3::IntegerValue::IntegerValue() [constructor]
3843 cls.add_constructor([])
3844 ## integer.h (module 'core'): ns3::IntegerValue::IntegerValue(ns3::IntegerValue const & arg0) [copy constructor]
3845 cls.add_constructor([param('ns3::IntegerValue const &', 'arg0')])
3846 ## integer.h (module 'core'): ns3::IntegerValue::IntegerValue(int64_t const & value) [constructor]
3847 cls.add_constructor([param('int64_t const &', 'value')])
3848 ## integer.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::IntegerValue::Copy() const [member function]
3849 cls.add_method('Copy',
3850 'ns3::Ptr< ns3::AttributeValue >',
3851 [],
3852 is_const=True, is_virtual=True)
3853 ## integer.h (module 'core'): bool ns3::IntegerValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
3854 cls.add_method('DeserializeFromString',
3855 'bool',
3856 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3857 is_virtual=True)
3858 ## integer.h (module 'core'): int64_t ns3::IntegerValue::Get() const [member function]
3859 cls.add_method('Get',
3860 'int64_t',
3861 [],
3862 is_const=True)
3863 ## integer.h (module 'core'): std::string ns3::IntegerValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
3864 cls.add_method('SerializeToString',
3865 'std::string',
3866 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3867 is_const=True, is_virtual=True)
3868 ## integer.h (module 'core'): void ns3::IntegerValue::Set(int64_t const & value) [member function]
3869 cls.add_method('Set',
3870 'void',
3871 [param('int64_t const &', 'value')])
3872 return
3873
3874def register_Ns3Ipv4AddressChecker_methods(root_module, cls):
3875 ## ipv4-address.h (module 'network'): ns3::Ipv4AddressChecker::Ipv4AddressChecker() [constructor]
3876 cls.add_constructor([])
3877 ## ipv4-address.h (module 'network'): ns3::Ipv4AddressChecker::Ipv4AddressChecker(ns3::Ipv4AddressChecker const & arg0) [copy constructor]
3878 cls.add_constructor([param('ns3::Ipv4AddressChecker const &', 'arg0')])
3879 return
3880
3881def register_Ns3Ipv4AddressValue_methods(root_module, cls):
3882 ## ipv4-address.h (module 'network'): ns3::Ipv4AddressValue::Ipv4AddressValue() [constructor]
3883 cls.add_constructor([])
3884 ## ipv4-address.h (module 'network'): ns3::Ipv4AddressValue::Ipv4AddressValue(ns3::Ipv4AddressValue const & arg0) [copy constructor]
3885 cls.add_constructor([param('ns3::Ipv4AddressValue const &', 'arg0')])
3886 ## ipv4-address.h (module 'network'): ns3::Ipv4AddressValue::Ipv4AddressValue(ns3::Ipv4Address const & value) [constructor]
3887 cls.add_constructor([param('ns3::Ipv4Address const &', 'value')])
3888 ## ipv4-address.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::Ipv4AddressValue::Copy() const [member function]
3889 cls.add_method('Copy',
3890 'ns3::Ptr< ns3::AttributeValue >',
3891 [],
3892 is_const=True, is_virtual=True)
3893 ## ipv4-address.h (module 'network'): bool ns3::Ipv4AddressValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
3894 cls.add_method('DeserializeFromString',
3895 'bool',
3896 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3897 is_virtual=True)
3898 ## ipv4-address.h (module 'network'): ns3::Ipv4Address ns3::Ipv4AddressValue::Get() const [member function]
3899 cls.add_method('Get',
3900 'ns3::Ipv4Address',
3901 [],
3902 is_const=True)
3903 ## ipv4-address.h (module 'network'): std::string ns3::Ipv4AddressValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
3904 cls.add_method('SerializeToString',
3905 'std::string',
3906 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3907 is_const=True, is_virtual=True)
3908 ## ipv4-address.h (module 'network'): void ns3::Ipv4AddressValue::Set(ns3::Ipv4Address const & value) [member function]
3909 cls.add_method('Set',
3910 'void',
3911 [param('ns3::Ipv4Address const &', 'value')])
3912 return
3913
3914def register_Ns3Ipv4MaskChecker_methods(root_module, cls):
3915 ## ipv4-address.h (module 'network'): ns3::Ipv4MaskChecker::Ipv4MaskChecker() [constructor]
3916 cls.add_constructor([])
3917 ## ipv4-address.h (module 'network'): ns3::Ipv4MaskChecker::Ipv4MaskChecker(ns3::Ipv4MaskChecker const & arg0) [copy constructor]
3918 cls.add_constructor([param('ns3::Ipv4MaskChecker const &', 'arg0')])
3919 return
3920
3921def register_Ns3Ipv4MaskValue_methods(root_module, cls):
3922 ## ipv4-address.h (module 'network'): ns3::Ipv4MaskValue::Ipv4MaskValue() [constructor]
3923 cls.add_constructor([])
3924 ## ipv4-address.h (module 'network'): ns3::Ipv4MaskValue::Ipv4MaskValue(ns3::Ipv4MaskValue const & arg0) [copy constructor]
3925 cls.add_constructor([param('ns3::Ipv4MaskValue const &', 'arg0')])
3926 ## ipv4-address.h (module 'network'): ns3::Ipv4MaskValue::Ipv4MaskValue(ns3::Ipv4Mask const & value) [constructor]
3927 cls.add_constructor([param('ns3::Ipv4Mask const &', 'value')])
3928 ## ipv4-address.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::Ipv4MaskValue::Copy() const [member function]
3929 cls.add_method('Copy',
3930 'ns3::Ptr< ns3::AttributeValue >',
3931 [],
3932 is_const=True, is_virtual=True)
3933 ## ipv4-address.h (module 'network'): bool ns3::Ipv4MaskValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
3934 cls.add_method('DeserializeFromString',
3935 'bool',
3936 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3937 is_virtual=True)
3938 ## ipv4-address.h (module 'network'): ns3::Ipv4Mask ns3::Ipv4MaskValue::Get() const [member function]
3939 cls.add_method('Get',
3940 'ns3::Ipv4Mask',
3941 [],
3942 is_const=True)
3943 ## ipv4-address.h (module 'network'): std::string ns3::Ipv4MaskValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
3944 cls.add_method('SerializeToString',
3945 'std::string',
3946 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3947 is_const=True, is_virtual=True)
3948 ## ipv4-address.h (module 'network'): void ns3::Ipv4MaskValue::Set(ns3::Ipv4Mask const & value) [member function]
3949 cls.add_method('Set',
3950 'void',
3951 [param('ns3::Ipv4Mask const &', 'value')])
3952 return
3953
3954def register_Ns3Ipv6AddressChecker_methods(root_module, cls):
3955 ## ipv6-address.h (module 'network'): ns3::Ipv6AddressChecker::Ipv6AddressChecker() [constructor]
3956 cls.add_constructor([])
3957 ## ipv6-address.h (module 'network'): ns3::Ipv6AddressChecker::Ipv6AddressChecker(ns3::Ipv6AddressChecker const & arg0) [copy constructor]
3958 cls.add_constructor([param('ns3::Ipv6AddressChecker const &', 'arg0')])
3959 return
3960
3961def register_Ns3Ipv6AddressValue_methods(root_module, cls):
3962 ## ipv6-address.h (module 'network'): ns3::Ipv6AddressValue::Ipv6AddressValue() [constructor]
3963 cls.add_constructor([])
3964 ## ipv6-address.h (module 'network'): ns3::Ipv6AddressValue::Ipv6AddressValue(ns3::Ipv6AddressValue const & arg0) [copy constructor]
3965 cls.add_constructor([param('ns3::Ipv6AddressValue const &', 'arg0')])
3966 ## ipv6-address.h (module 'network'): ns3::Ipv6AddressValue::Ipv6AddressValue(ns3::Ipv6Address const & value) [constructor]
3967 cls.add_constructor([param('ns3::Ipv6Address const &', 'value')])
3968 ## ipv6-address.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::Ipv6AddressValue::Copy() const [member function]
3969 cls.add_method('Copy',
3970 'ns3::Ptr< ns3::AttributeValue >',
3971 [],
3972 is_const=True, is_virtual=True)
3973 ## ipv6-address.h (module 'network'): bool ns3::Ipv6AddressValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
3974 cls.add_method('DeserializeFromString',
3975 'bool',
3976 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3977 is_virtual=True)
3978 ## ipv6-address.h (module 'network'): ns3::Ipv6Address ns3::Ipv6AddressValue::Get() const [member function]
3979 cls.add_method('Get',
3980 'ns3::Ipv6Address',
3981 [],
3982 is_const=True)
3983 ## ipv6-address.h (module 'network'): std::string ns3::Ipv6AddressValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
3984 cls.add_method('SerializeToString',
3985 'std::string',
3986 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3987 is_const=True, is_virtual=True)
3988 ## ipv6-address.h (module 'network'): void ns3::Ipv6AddressValue::Set(ns3::Ipv6Address const & value) [member function]
3989 cls.add_method('Set',
3990 'void',
3991 [param('ns3::Ipv6Address const &', 'value')])
3992 return
3993
3994def register_Ns3Ipv6PrefixChecker_methods(root_module, cls):
3995 ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixChecker::Ipv6PrefixChecker() [constructor]
3996 cls.add_constructor([])
3997 ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixChecker::Ipv6PrefixChecker(ns3::Ipv6PrefixChecker const & arg0) [copy constructor]
3998 cls.add_constructor([param('ns3::Ipv6PrefixChecker const &', 'arg0')])
3999 return
4000
4001def register_Ns3Ipv6PrefixValue_methods(root_module, cls):
4002 ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixValue::Ipv6PrefixValue() [constructor]
4003 cls.add_constructor([])
4004 ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixValue::Ipv6PrefixValue(ns3::Ipv6PrefixValue const & arg0) [copy constructor]
4005 cls.add_constructor([param('ns3::Ipv6PrefixValue const &', 'arg0')])
4006 ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixValue::Ipv6PrefixValue(ns3::Ipv6Prefix const & value) [constructor]
4007 cls.add_constructor([param('ns3::Ipv6Prefix const &', 'value')])
4008 ## ipv6-address.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::Ipv6PrefixValue::Copy() const [member function]
4009 cls.add_method('Copy',
4010 'ns3::Ptr< ns3::AttributeValue >',
4011 [],
4012 is_const=True, is_virtual=True)
4013 ## ipv6-address.h (module 'network'): bool ns3::Ipv6PrefixValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
4014 cls.add_method('DeserializeFromString',
4015 'bool',
4016 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4017 is_virtual=True)
4018 ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix ns3::Ipv6PrefixValue::Get() const [member function]
4019 cls.add_method('Get',
4020 'ns3::Ipv6Prefix',
4021 [],
4022 is_const=True)
4023 ## ipv6-address.h (module 'network'): std::string ns3::Ipv6PrefixValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
4024 cls.add_method('SerializeToString',
4025 'std::string',
4026 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4027 is_const=True, is_virtual=True)
4028 ## ipv6-address.h (module 'network'): void ns3::Ipv6PrefixValue::Set(ns3::Ipv6Prefix const & value) [member function]
4029 cls.add_method('Set',
4030 'void',
4031 [param('ns3::Ipv6Prefix const &', 'value')])
4032 return
4033
Alexander Afanasyev381dea02011-11-03 08:33:26 -07004034def register_Ns3NetDevice_methods(root_module, cls):
4035 ## net-device.h (module 'network'): ns3::NetDevice::NetDevice() [constructor]
4036 cls.add_constructor([])
4037 ## net-device.h (module 'network'): ns3::NetDevice::NetDevice(ns3::NetDevice const & arg0) [copy constructor]
4038 cls.add_constructor([param('ns3::NetDevice const &', 'arg0')])
Alexander Afanasyeva8f5d882012-11-09 14:22:48 -08004039 ## 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 Afanasyev381dea02011-11-03 08:33:26 -07004040 cls.add_method('AddLinkChangeCallback',
4041 'void',
4042 [param('ns3::Callback< void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'callback')],
4043 is_pure_virtual=True, is_virtual=True)
4044 ## net-device.h (module 'network'): ns3::Address ns3::NetDevice::GetAddress() const [member function]
4045 cls.add_method('GetAddress',
4046 'ns3::Address',
4047 [],
4048 is_pure_virtual=True, is_const=True, is_virtual=True)
4049 ## net-device.h (module 'network'): ns3::Address ns3::NetDevice::GetBroadcast() const [member function]
4050 cls.add_method('GetBroadcast',
4051 'ns3::Address',
4052 [],
4053 is_pure_virtual=True, is_const=True, is_virtual=True)
4054 ## net-device.h (module 'network'): ns3::Ptr<ns3::Channel> ns3::NetDevice::GetChannel() const [member function]
4055 cls.add_method('GetChannel',
4056 'ns3::Ptr< ns3::Channel >',
4057 [],
4058 is_pure_virtual=True, is_const=True, is_virtual=True)
4059 ## net-device.h (module 'network'): uint32_t ns3::NetDevice::GetIfIndex() const [member function]
4060 cls.add_method('GetIfIndex',
4061 'uint32_t',
4062 [],
4063 is_pure_virtual=True, is_const=True, is_virtual=True)
4064 ## net-device.h (module 'network'): uint16_t ns3::NetDevice::GetMtu() const [member function]
4065 cls.add_method('GetMtu',
4066 'uint16_t',
4067 [],
4068 is_pure_virtual=True, is_const=True, is_virtual=True)
4069 ## net-device.h (module 'network'): ns3::Address ns3::NetDevice::GetMulticast(ns3::Ipv4Address multicastGroup) const [member function]
4070 cls.add_method('GetMulticast',
4071 'ns3::Address',
4072 [param('ns3::Ipv4Address', 'multicastGroup')],
4073 is_pure_virtual=True, is_const=True, is_virtual=True)
4074 ## net-device.h (module 'network'): ns3::Address ns3::NetDevice::GetMulticast(ns3::Ipv6Address addr) const [member function]
4075 cls.add_method('GetMulticast',
4076 'ns3::Address',
4077 [param('ns3::Ipv6Address', 'addr')],
4078 is_pure_virtual=True, is_const=True, is_virtual=True)
4079 ## net-device.h (module 'network'): ns3::Ptr<ns3::Node> ns3::NetDevice::GetNode() const [member function]
4080 cls.add_method('GetNode',
4081 'ns3::Ptr< ns3::Node >',
4082 [],
4083 is_pure_virtual=True, is_const=True, is_virtual=True)
4084 ## net-device.h (module 'network'): static ns3::TypeId ns3::NetDevice::GetTypeId() [member function]
4085 cls.add_method('GetTypeId',
4086 'ns3::TypeId',
4087 [],
4088 is_static=True)
4089 ## net-device.h (module 'network'): bool ns3::NetDevice::IsBridge() const [member function]
4090 cls.add_method('IsBridge',
4091 'bool',
4092 [],
4093 is_pure_virtual=True, is_const=True, is_virtual=True)
4094 ## net-device.h (module 'network'): bool ns3::NetDevice::IsBroadcast() const [member function]
4095 cls.add_method('IsBroadcast',
4096 'bool',
4097 [],
4098 is_pure_virtual=True, is_const=True, is_virtual=True)
4099 ## net-device.h (module 'network'): bool ns3::NetDevice::IsLinkUp() const [member function]
4100 cls.add_method('IsLinkUp',
4101 'bool',
4102 [],
4103 is_pure_virtual=True, is_const=True, is_virtual=True)
4104 ## net-device.h (module 'network'): bool ns3::NetDevice::IsMulticast() const [member function]
4105 cls.add_method('IsMulticast',
4106 'bool',
4107 [],
4108 is_pure_virtual=True, is_const=True, is_virtual=True)
4109 ## net-device.h (module 'network'): bool ns3::NetDevice::IsPointToPoint() const [member function]
4110 cls.add_method('IsPointToPoint',
4111 'bool',
4112 [],
4113 is_pure_virtual=True, is_const=True, is_virtual=True)
4114 ## net-device.h (module 'network'): bool ns3::NetDevice::NeedsArp() const [member function]
4115 cls.add_method('NeedsArp',
4116 'bool',
4117 [],
4118 is_pure_virtual=True, is_const=True, is_virtual=True)
4119 ## net-device.h (module 'network'): bool ns3::NetDevice::Send(ns3::Ptr<ns3::Packet> packet, ns3::Address const & dest, uint16_t protocolNumber) [member function]
4120 cls.add_method('Send',
4121 'bool',
4122 [param('ns3::Ptr< ns3::Packet >', 'packet'), param('ns3::Address const &', 'dest'), param('uint16_t', 'protocolNumber')],
4123 is_pure_virtual=True, is_virtual=True)
4124 ## 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]
4125 cls.add_method('SendFrom',
4126 'bool',
4127 [param('ns3::Ptr< ns3::Packet >', 'packet'), param('ns3::Address const &', 'source'), param('ns3::Address const &', 'dest'), param('uint16_t', 'protocolNumber')],
4128 is_pure_virtual=True, is_virtual=True)
4129 ## net-device.h (module 'network'): void ns3::NetDevice::SetAddress(ns3::Address address) [member function]
4130 cls.add_method('SetAddress',
4131 'void',
4132 [param('ns3::Address', 'address')],
4133 is_pure_virtual=True, is_virtual=True)
4134 ## net-device.h (module 'network'): void ns3::NetDevice::SetIfIndex(uint32_t const index) [member function]
4135 cls.add_method('SetIfIndex',
4136 'void',
4137 [param('uint32_t const', 'index')],
4138 is_pure_virtual=True, is_virtual=True)
4139 ## net-device.h (module 'network'): bool ns3::NetDevice::SetMtu(uint16_t const mtu) [member function]
4140 cls.add_method('SetMtu',
4141 'bool',
4142 [param('uint16_t const', 'mtu')],
4143 is_pure_virtual=True, is_virtual=True)
4144 ## net-device.h (module 'network'): void ns3::NetDevice::SetNode(ns3::Ptr<ns3::Node> node) [member function]
4145 cls.add_method('SetNode',
4146 'void',
4147 [param('ns3::Ptr< ns3::Node >', 'node')],
4148 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyev07827182011-12-13 01:07:32 -08004149 ## net-device.h (module 'network'): void ns3::NetDevice::SetPromiscReceiveCallback(ns3::Callback<bool,ns3::Ptr<ns3::NetDevice>,ns3::Ptr<const ns3::Packet>,short unsigned int,const ns3::Address&,const ns3::Address&,ns3::NetDevice::PacketType,ns3::empty,ns3::empty,ns3::empty> cb) [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07004150 cls.add_method('SetPromiscReceiveCallback',
4151 'void',
Alexander Afanasyev07827182011-12-13 01:07:32 -08004152 [param('ns3::Callback< bool, ns3::Ptr< ns3::NetDevice >, ns3::Ptr< ns3::Packet const >, short unsigned int, ns3::Address const &, ns3::Address const &, ns3::NetDevice::PacketType, ns3::empty, ns3::empty, ns3::empty >', 'cb')],
Alexander Afanasyev381dea02011-11-03 08:33:26 -07004153 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyev07827182011-12-13 01:07:32 -08004154 ## net-device.h (module 'network'): void ns3::NetDevice::SetReceiveCallback(ns3::Callback<bool,ns3::Ptr<ns3::NetDevice>,ns3::Ptr<const ns3::Packet>,short unsigned int,const ns3::Address&,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty> cb) [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07004155 cls.add_method('SetReceiveCallback',
4156 'void',
Alexander Afanasyev07827182011-12-13 01:07:32 -08004157 [param('ns3::Callback< bool, ns3::Ptr< ns3::NetDevice >, ns3::Ptr< ns3::Packet const >, short unsigned int, ns3::Address const &, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'cb')],
Alexander Afanasyev381dea02011-11-03 08:33:26 -07004158 is_pure_virtual=True, is_virtual=True)
4159 ## net-device.h (module 'network'): bool ns3::NetDevice::SupportsSendFrom() const [member function]
4160 cls.add_method('SupportsSendFrom',
4161 'bool',
4162 [],
4163 is_pure_virtual=True, is_const=True, is_virtual=True)
4164 return
4165
4166def register_Ns3NixVector_methods(root_module, cls):
4167 cls.add_output_stream_operator()
4168 ## nix-vector.h (module 'network'): ns3::NixVector::NixVector() [constructor]
4169 cls.add_constructor([])
4170 ## nix-vector.h (module 'network'): ns3::NixVector::NixVector(ns3::NixVector const & o) [copy constructor]
4171 cls.add_constructor([param('ns3::NixVector const &', 'o')])
4172 ## nix-vector.h (module 'network'): void ns3::NixVector::AddNeighborIndex(uint32_t newBits, uint32_t numberOfBits) [member function]
4173 cls.add_method('AddNeighborIndex',
4174 'void',
4175 [param('uint32_t', 'newBits'), param('uint32_t', 'numberOfBits')])
4176 ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::BitCount(uint32_t numberOfNeighbors) const [member function]
4177 cls.add_method('BitCount',
4178 'uint32_t',
4179 [param('uint32_t', 'numberOfNeighbors')],
4180 is_const=True)
4181 ## nix-vector.h (module 'network'): ns3::Ptr<ns3::NixVector> ns3::NixVector::Copy() const [member function]
4182 cls.add_method('Copy',
4183 'ns3::Ptr< ns3::NixVector >',
4184 [],
4185 is_const=True)
4186 ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::Deserialize(uint32_t const * buffer, uint32_t size) [member function]
4187 cls.add_method('Deserialize',
4188 'uint32_t',
4189 [param('uint32_t const *', 'buffer'), param('uint32_t', 'size')])
4190 ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::ExtractNeighborIndex(uint32_t numberOfBits) [member function]
4191 cls.add_method('ExtractNeighborIndex',
4192 'uint32_t',
4193 [param('uint32_t', 'numberOfBits')])
4194 ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::GetRemainingBits() [member function]
4195 cls.add_method('GetRemainingBits',
4196 'uint32_t',
4197 [])
4198 ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::GetSerializedSize() const [member function]
4199 cls.add_method('GetSerializedSize',
4200 'uint32_t',
4201 [],
4202 is_const=True)
4203 ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::Serialize(uint32_t * buffer, uint32_t maxSize) const [member function]
4204 cls.add_method('Serialize',
4205 'uint32_t',
4206 [param('uint32_t *', 'buffer'), param('uint32_t', 'maxSize')],
4207 is_const=True)
4208 return
4209
4210def register_Ns3Node_methods(root_module, cls):
4211 ## node.h (module 'network'): ns3::Node::Node(ns3::Node const & arg0) [copy constructor]
4212 cls.add_constructor([param('ns3::Node const &', 'arg0')])
4213 ## node.h (module 'network'): ns3::Node::Node() [constructor]
4214 cls.add_constructor([])
4215 ## node.h (module 'network'): ns3::Node::Node(uint32_t systemId) [constructor]
4216 cls.add_constructor([param('uint32_t', 'systemId')])
4217 ## node.h (module 'network'): uint32_t ns3::Node::AddApplication(ns3::Ptr<ns3::Application> application) [member function]
4218 cls.add_method('AddApplication',
4219 'uint32_t',
4220 [param('ns3::Ptr< ns3::Application >', 'application')])
4221 ## node.h (module 'network'): uint32_t ns3::Node::AddDevice(ns3::Ptr<ns3::NetDevice> device) [member function]
4222 cls.add_method('AddDevice',
4223 'uint32_t',
4224 [param('ns3::Ptr< ns3::NetDevice >', 'device')])
4225 ## node.h (module 'network'): static bool ns3::Node::ChecksumEnabled() [member function]
4226 cls.add_method('ChecksumEnabled',
4227 'bool',
4228 [],
4229 is_static=True)
4230 ## node.h (module 'network'): ns3::Ptr<ns3::Application> ns3::Node::GetApplication(uint32_t index) const [member function]
4231 cls.add_method('GetApplication',
4232 'ns3::Ptr< ns3::Application >',
4233 [param('uint32_t', 'index')],
4234 is_const=True)
4235 ## node.h (module 'network'): ns3::Ptr<ns3::NetDevice> ns3::Node::GetDevice(uint32_t index) const [member function]
4236 cls.add_method('GetDevice',
4237 'ns3::Ptr< ns3::NetDevice >',
4238 [param('uint32_t', 'index')],
4239 is_const=True)
4240 ## node.h (module 'network'): uint32_t ns3::Node::GetId() const [member function]
4241 cls.add_method('GetId',
4242 'uint32_t',
4243 [],
4244 is_const=True)
4245 ## node.h (module 'network'): uint32_t ns3::Node::GetNApplications() const [member function]
4246 cls.add_method('GetNApplications',
4247 'uint32_t',
4248 [],
4249 is_const=True)
4250 ## node.h (module 'network'): uint32_t ns3::Node::GetNDevices() const [member function]
4251 cls.add_method('GetNDevices',
4252 'uint32_t',
4253 [],
4254 is_const=True)
4255 ## node.h (module 'network'): uint32_t ns3::Node::GetSystemId() const [member function]
4256 cls.add_method('GetSystemId',
4257 'uint32_t',
4258 [],
4259 is_const=True)
4260 ## node.h (module 'network'): static ns3::TypeId ns3::Node::GetTypeId() [member function]
4261 cls.add_method('GetTypeId',
4262 'ns3::TypeId',
4263 [],
4264 is_static=True)
4265 ## 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]
4266 cls.add_method('RegisterDeviceAdditionListener',
4267 'void',
4268 [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')])
4269 ## 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]
4270 cls.add_method('RegisterProtocolHandler',
4271 'void',
4272 [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')])
4273 ## 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]
4274 cls.add_method('UnregisterDeviceAdditionListener',
4275 'void',
4276 [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')])
4277 ## 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]
4278 cls.add_method('UnregisterProtocolHandler',
4279 'void',
4280 [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')])
4281 ## node.h (module 'network'): void ns3::Node::DoDispose() [member function]
4282 cls.add_method('DoDispose',
4283 'void',
4284 [],
4285 visibility='protected', is_virtual=True)
Alexander Afanasyev5b8d61b2013-05-03 10:23:21 -07004286 ## node.h (module 'network'): void ns3::Node::DoInitialize() [member function]
4287 cls.add_method('DoInitialize',
Alexander Afanasyev381dea02011-11-03 08:33:26 -07004288 'void',
4289 [],
4290 visibility='protected', is_virtual=True)
4291 return
4292
4293def register_Ns3ObjectFactoryChecker_methods(root_module, cls):
4294 ## object-factory.h (module 'core'): ns3::ObjectFactoryChecker::ObjectFactoryChecker() [constructor]
4295 cls.add_constructor([])
4296 ## object-factory.h (module 'core'): ns3::ObjectFactoryChecker::ObjectFactoryChecker(ns3::ObjectFactoryChecker const & arg0) [copy constructor]
4297 cls.add_constructor([param('ns3::ObjectFactoryChecker const &', 'arg0')])
4298 return
4299
4300def register_Ns3ObjectFactoryValue_methods(root_module, cls):
4301 ## object-factory.h (module 'core'): ns3::ObjectFactoryValue::ObjectFactoryValue() [constructor]
4302 cls.add_constructor([])
4303 ## object-factory.h (module 'core'): ns3::ObjectFactoryValue::ObjectFactoryValue(ns3::ObjectFactoryValue const & arg0) [copy constructor]
4304 cls.add_constructor([param('ns3::ObjectFactoryValue const &', 'arg0')])
4305 ## object-factory.h (module 'core'): ns3::ObjectFactoryValue::ObjectFactoryValue(ns3::ObjectFactory const & value) [constructor]
4306 cls.add_constructor([param('ns3::ObjectFactory const &', 'value')])
4307 ## object-factory.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::ObjectFactoryValue::Copy() const [member function]
4308 cls.add_method('Copy',
4309 'ns3::Ptr< ns3::AttributeValue >',
4310 [],
4311 is_const=True, is_virtual=True)
4312 ## object-factory.h (module 'core'): bool ns3::ObjectFactoryValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
4313 cls.add_method('DeserializeFromString',
4314 'bool',
4315 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4316 is_virtual=True)
4317 ## object-factory.h (module 'core'): ns3::ObjectFactory ns3::ObjectFactoryValue::Get() const [member function]
4318 cls.add_method('Get',
4319 'ns3::ObjectFactory',
4320 [],
4321 is_const=True)
4322 ## object-factory.h (module 'core'): std::string ns3::ObjectFactoryValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
4323 cls.add_method('SerializeToString',
4324 'std::string',
4325 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4326 is_const=True, is_virtual=True)
4327 ## object-factory.h (module 'core'): void ns3::ObjectFactoryValue::Set(ns3::ObjectFactory const & value) [member function]
4328 cls.add_method('Set',
4329 'void',
4330 [param('ns3::ObjectFactory const &', 'value')])
4331 return
4332
Alexander Afanasyev381dea02011-11-03 08:33:26 -07004333def register_Ns3Packet_methods(root_module, cls):
4334 cls.add_output_stream_operator()
4335 ## packet.h (module 'network'): ns3::Packet::Packet() [constructor]
4336 cls.add_constructor([])
4337 ## packet.h (module 'network'): ns3::Packet::Packet(ns3::Packet const & o) [copy constructor]
4338 cls.add_constructor([param('ns3::Packet const &', 'o')])
4339 ## packet.h (module 'network'): ns3::Packet::Packet(uint32_t size) [constructor]
4340 cls.add_constructor([param('uint32_t', 'size')])
4341 ## packet.h (module 'network'): ns3::Packet::Packet(uint8_t const * buffer, uint32_t size, bool magic) [constructor]
4342 cls.add_constructor([param('uint8_t const *', 'buffer'), param('uint32_t', 'size'), param('bool', 'magic')])
4343 ## packet.h (module 'network'): ns3::Packet::Packet(uint8_t const * buffer, uint32_t size) [constructor]
4344 cls.add_constructor([param('uint8_t const *', 'buffer'), param('uint32_t', 'size')])
Alexander Afanasyev858d5312013-07-10 18:50:18 -07004345 ## packet.h (module 'network'): void ns3::Packet::AddAtEnd(ns3::Ptr<ns3::Packet const> packet) [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07004346 cls.add_method('AddAtEnd',
4347 'void',
4348 [param('ns3::Ptr< ns3::Packet const >', 'packet')])
4349 ## packet.h (module 'network'): void ns3::Packet::AddByteTag(ns3::Tag const & tag) const [member function]
4350 cls.add_method('AddByteTag',
4351 'void',
4352 [param('ns3::Tag const &', 'tag')],
4353 is_const=True)
4354 ## packet.h (module 'network'): void ns3::Packet::AddHeader(ns3::Header const & header) [member function]
4355 cls.add_method('AddHeader',
4356 'void',
4357 [param('ns3::Header const &', 'header')])
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07004358 ## packet.h (module 'network'): void ns3::Packet::AddPacketTag(ns3::Tag const & tag) const [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07004359 cls.add_method('AddPacketTag',
4360 'void',
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07004361 [param('ns3::Tag const &', 'tag')],
4362 is_const=True)
Alexander Afanasyev381dea02011-11-03 08:33:26 -07004363 ## packet.h (module 'network'): void ns3::Packet::AddPaddingAtEnd(uint32_t size) [member function]
4364 cls.add_method('AddPaddingAtEnd',
4365 'void',
4366 [param('uint32_t', 'size')])
4367 ## packet.h (module 'network'): void ns3::Packet::AddTrailer(ns3::Trailer const & trailer) [member function]
4368 cls.add_method('AddTrailer',
4369 'void',
4370 [param('ns3::Trailer const &', 'trailer')])
4371 ## packet.h (module 'network'): ns3::PacketMetadata::ItemIterator ns3::Packet::BeginItem() const [member function]
4372 cls.add_method('BeginItem',
4373 'ns3::PacketMetadata::ItemIterator',
4374 [],
4375 is_const=True)
4376 ## packet.h (module 'network'): ns3::Ptr<ns3::Packet> ns3::Packet::Copy() const [member function]
4377 cls.add_method('Copy',
4378 'ns3::Ptr< ns3::Packet >',
4379 [],
4380 is_const=True)
4381 ## packet.h (module 'network'): uint32_t ns3::Packet::CopyData(uint8_t * buffer, uint32_t size) const [member function]
4382 cls.add_method('CopyData',
4383 'uint32_t',
4384 [param('uint8_t *', 'buffer'), param('uint32_t', 'size')],
4385 is_const=True)
4386 ## packet.h (module 'network'): void ns3::Packet::CopyData(std::ostream * os, uint32_t size) const [member function]
4387 cls.add_method('CopyData',
4388 'void',
4389 [param('std::ostream *', 'os'), param('uint32_t', 'size')],
4390 is_const=True)
4391 ## packet.h (module 'network'): ns3::Ptr<ns3::Packet> ns3::Packet::CreateFragment(uint32_t start, uint32_t length) const [member function]
4392 cls.add_method('CreateFragment',
4393 'ns3::Ptr< ns3::Packet >',
4394 [param('uint32_t', 'start'), param('uint32_t', 'length')],
4395 is_const=True)
4396 ## packet.h (module 'network'): static void ns3::Packet::EnableChecking() [member function]
4397 cls.add_method('EnableChecking',
4398 'void',
4399 [],
4400 is_static=True)
4401 ## packet.h (module 'network'): static void ns3::Packet::EnablePrinting() [member function]
4402 cls.add_method('EnablePrinting',
4403 'void',
4404 [],
4405 is_static=True)
4406 ## packet.h (module 'network'): bool ns3::Packet::FindFirstMatchingByteTag(ns3::Tag & tag) const [member function]
4407 cls.add_method('FindFirstMatchingByteTag',
4408 'bool',
4409 [param('ns3::Tag &', 'tag')],
4410 is_const=True)
4411 ## packet.h (module 'network'): ns3::ByteTagIterator ns3::Packet::GetByteTagIterator() const [member function]
4412 cls.add_method('GetByteTagIterator',
4413 'ns3::ByteTagIterator',
4414 [],
4415 is_const=True)
4416 ## packet.h (module 'network'): ns3::Ptr<ns3::NixVector> ns3::Packet::GetNixVector() const [member function]
4417 cls.add_method('GetNixVector',
4418 'ns3::Ptr< ns3::NixVector >',
4419 [],
4420 is_const=True)
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07004421 ## packet.h (module 'network'): ns3::PacketTagIterator ns3::Packet::GetPacketTagIterator() const [member function]
4422 cls.add_method('GetPacketTagIterator',
4423 'ns3::PacketTagIterator',
4424 [],
4425 is_const=True)
Alexander Afanasyev381dea02011-11-03 08:33:26 -07004426 ## packet.h (module 'network'): uint32_t ns3::Packet::GetSerializedSize() const [member function]
4427 cls.add_method('GetSerializedSize',
4428 'uint32_t',
4429 [],
4430 is_const=True)
4431 ## packet.h (module 'network'): uint32_t ns3::Packet::GetSize() const [member function]
4432 cls.add_method('GetSize',
4433 'uint32_t',
4434 [],
4435 is_const=True)
4436 ## packet.h (module 'network'): uint64_t ns3::Packet::GetUid() const [member function]
4437 cls.add_method('GetUid',
4438 'uint64_t',
4439 [],
4440 is_const=True)
4441 ## packet.h (module 'network'): uint8_t const * ns3::Packet::PeekData() const [member function]
4442 cls.add_method('PeekData',
4443 'uint8_t const *',
4444 [],
4445 deprecated=True, is_const=True)
4446 ## packet.h (module 'network'): uint32_t ns3::Packet::PeekHeader(ns3::Header & header) const [member function]
4447 cls.add_method('PeekHeader',
4448 'uint32_t',
4449 [param('ns3::Header &', 'header')],
4450 is_const=True)
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07004451 ## packet.h (module 'network'): bool ns3::Packet::PeekPacketTag(ns3::Tag & tag) const [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07004452 cls.add_method('PeekPacketTag',
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07004453 'bool',
4454 [param('ns3::Tag &', 'tag')],
Alexander Afanasyev381dea02011-11-03 08:33:26 -07004455 is_const=True)
4456 ## packet.h (module 'network'): uint32_t ns3::Packet::PeekTrailer(ns3::Trailer & trailer) [member function]
4457 cls.add_method('PeekTrailer',
4458 'uint32_t',
4459 [param('ns3::Trailer &', 'trailer')])
4460 ## packet.h (module 'network'): void ns3::Packet::Print(std::ostream & os) const [member function]
4461 cls.add_method('Print',
4462 'void',
4463 [param('std::ostream &', 'os')],
4464 is_const=True)
4465 ## packet.h (module 'network'): void ns3::Packet::PrintByteTags(std::ostream & os) const [member function]
4466 cls.add_method('PrintByteTags',
4467 'void',
4468 [param('std::ostream &', 'os')],
4469 is_const=True)
4470 ## packet.h (module 'network'): void ns3::Packet::PrintPacketTags(std::ostream & os) const [member function]
4471 cls.add_method('PrintPacketTags',
4472 'void',
4473 [param('std::ostream &', 'os')],
4474 is_const=True)
4475 ## packet.h (module 'network'): void ns3::Packet::RemoveAllByteTags() [member function]
4476 cls.add_method('RemoveAllByteTags',
4477 'void',
4478 [])
4479 ## packet.h (module 'network'): void ns3::Packet::RemoveAllPacketTags() [member function]
4480 cls.add_method('RemoveAllPacketTags',
4481 'void',
4482 [])
4483 ## packet.h (module 'network'): void ns3::Packet::RemoveAtEnd(uint32_t size) [member function]
4484 cls.add_method('RemoveAtEnd',
4485 'void',
4486 [param('uint32_t', 'size')])
4487 ## packet.h (module 'network'): void ns3::Packet::RemoveAtStart(uint32_t size) [member function]
4488 cls.add_method('RemoveAtStart',
4489 'void',
4490 [param('uint32_t', 'size')])
4491 ## packet.h (module 'network'): uint32_t ns3::Packet::RemoveHeader(ns3::Header & header) [member function]
4492 cls.add_method('RemoveHeader',
4493 'uint32_t',
4494 [param('ns3::Header &', 'header')])
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07004495 ## packet.h (module 'network'): bool ns3::Packet::RemovePacketTag(ns3::Tag & tag) [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07004496 cls.add_method('RemovePacketTag',
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07004497 'bool',
4498 [param('ns3::Tag &', 'tag')])
Alexander Afanasyev381dea02011-11-03 08:33:26 -07004499 ## packet.h (module 'network'): uint32_t ns3::Packet::RemoveTrailer(ns3::Trailer & trailer) [member function]
4500 cls.add_method('RemoveTrailer',
4501 'uint32_t',
4502 [param('ns3::Trailer &', 'trailer')])
4503 ## packet.h (module 'network'): uint32_t ns3::Packet::Serialize(uint8_t * buffer, uint32_t maxSize) const [member function]
4504 cls.add_method('Serialize',
4505 'uint32_t',
4506 [param('uint8_t *', 'buffer'), param('uint32_t', 'maxSize')],
4507 is_const=True)
4508 ## packet.h (module 'network'): void ns3::Packet::SetNixVector(ns3::Ptr<ns3::NixVector> arg0) [member function]
4509 cls.add_method('SetNixVector',
4510 'void',
4511 [param('ns3::Ptr< ns3::NixVector >', 'arg0')])
4512 return
4513
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07004514def register_Ns3RandomVariableChecker_methods(root_module, cls):
4515 ## random-variable.h (module 'core'): ns3::RandomVariableChecker::RandomVariableChecker() [constructor]
4516 cls.add_constructor([])
4517 ## random-variable.h (module 'core'): ns3::RandomVariableChecker::RandomVariableChecker(ns3::RandomVariableChecker const & arg0) [copy constructor]
4518 cls.add_constructor([param('ns3::RandomVariableChecker const &', 'arg0')])
4519 return
4520
4521def register_Ns3RandomVariableValue_methods(root_module, cls):
4522 ## random-variable.h (module 'core'): ns3::RandomVariableValue::RandomVariableValue() [constructor]
4523 cls.add_constructor([])
4524 ## random-variable.h (module 'core'): ns3::RandomVariableValue::RandomVariableValue(ns3::RandomVariableValue const & arg0) [copy constructor]
4525 cls.add_constructor([param('ns3::RandomVariableValue const &', 'arg0')])
4526 ## random-variable.h (module 'core'): ns3::RandomVariableValue::RandomVariableValue(ns3::RandomVariable const & value) [constructor]
4527 cls.add_constructor([param('ns3::RandomVariable const &', 'value')])
4528 ## random-variable.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::RandomVariableValue::Copy() const [member function]
4529 cls.add_method('Copy',
4530 'ns3::Ptr< ns3::AttributeValue >',
4531 [],
4532 is_const=True, is_virtual=True)
4533 ## random-variable.h (module 'core'): bool ns3::RandomVariableValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
4534 cls.add_method('DeserializeFromString',
4535 'bool',
4536 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4537 is_virtual=True)
4538 ## random-variable.h (module 'core'): ns3::RandomVariable ns3::RandomVariableValue::Get() const [member function]
4539 cls.add_method('Get',
4540 'ns3::RandomVariable',
4541 [],
4542 is_const=True)
4543 ## random-variable.h (module 'core'): std::string ns3::RandomVariableValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
4544 cls.add_method('SerializeToString',
4545 'std::string',
4546 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4547 is_const=True, is_virtual=True)
4548 ## random-variable.h (module 'core'): void ns3::RandomVariableValue::Set(ns3::RandomVariable const & value) [member function]
4549 cls.add_method('Set',
4550 'void',
4551 [param('ns3::RandomVariable const &', 'value')])
4552 return
4553
4554def register_Ns3RocketfuelWeightsReader_methods(root_module, cls):
4555 ## rocketfuel-weights-reader.h (module 'ndnSIM'): ns3::RocketfuelWeightsReader::RocketfuelWeightsReader(std::string const & path="", double scale=1.0e+0) [constructor]
4556 cls.add_constructor([param('std::string const &', 'path', default_value='""'), param('double', 'scale', default_value='1.0e+0')])
4557 ## rocketfuel-weights-reader.h (module 'ndnSIM'): void ns3::RocketfuelWeightsReader::SetFileType(uint8_t inputType) [member function]
4558 cls.add_method('SetFileType',
4559 'void',
4560 [param('uint8_t', 'inputType')])
4561 ## rocketfuel-weights-reader.h (module 'ndnSIM'): ns3::NodeContainer ns3::RocketfuelWeightsReader::Read() [member function]
4562 cls.add_method('Read',
4563 'ns3::NodeContainer',
4564 [],
4565 is_virtual=True)
4566 ## rocketfuel-weights-reader.h (module 'ndnSIM'): void ns3::RocketfuelWeightsReader::Commit() [member function]
4567 cls.add_method('Commit',
4568 'void',
4569 [])
Alexander Afanasyev858d5312013-07-10 18:50:18 -07004570 ## rocketfuel-weights-reader.h (module 'ndnSIM'): void ns3::RocketfuelWeightsReader::SetDefaultBandwidth(std::string const & bw) [member function]
4571 cls.add_method('SetDefaultBandwidth',
4572 'void',
4573 [param('std::string const &', 'bw')])
4574 ## rocketfuel-weights-reader.h (module 'ndnSIM'): std::string ns3::RocketfuelWeightsReader::GetDefaultBandwidth() const [member function]
4575 cls.add_method('GetDefaultBandwidth',
4576 'std::string',
4577 [],
4578 is_const=True)
4579 ## rocketfuel-weights-reader.h (module 'ndnSIM'): void ns3::RocketfuelWeightsReader::SetDefaultQueue(std::string const & queue) [member function]
4580 cls.add_method('SetDefaultQueue',
4581 'void',
4582 [param('std::string const &', 'queue')])
4583 ## rocketfuel-weights-reader.h (module 'ndnSIM'): std::string ns3::RocketfuelWeightsReader::GetDefaultQueue() const [member function]
4584 cls.add_method('GetDefaultQueue',
4585 'std::string',
4586 [],
4587 is_const=True)
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07004588 return
4589
Alexander Afanasyev381dea02011-11-03 08:33:26 -07004590def register_Ns3TimeChecker_methods(root_module, cls):
4591 ## nstime.h (module 'core'): ns3::TimeChecker::TimeChecker() [constructor]
4592 cls.add_constructor([])
4593 ## nstime.h (module 'core'): ns3::TimeChecker::TimeChecker(ns3::TimeChecker const & arg0) [copy constructor]
4594 cls.add_constructor([param('ns3::TimeChecker const &', 'arg0')])
4595 return
4596
4597def register_Ns3TimeValue_methods(root_module, cls):
4598 ## nstime.h (module 'core'): ns3::TimeValue::TimeValue() [constructor]
4599 cls.add_constructor([])
4600 ## nstime.h (module 'core'): ns3::TimeValue::TimeValue(ns3::TimeValue const & arg0) [copy constructor]
4601 cls.add_constructor([param('ns3::TimeValue const &', 'arg0')])
4602 ## nstime.h (module 'core'): ns3::TimeValue::TimeValue(ns3::Time const & value) [constructor]
4603 cls.add_constructor([param('ns3::Time const &', 'value')])
4604 ## nstime.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::TimeValue::Copy() const [member function]
4605 cls.add_method('Copy',
4606 'ns3::Ptr< ns3::AttributeValue >',
4607 [],
4608 is_const=True, is_virtual=True)
4609 ## nstime.h (module 'core'): bool ns3::TimeValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
4610 cls.add_method('DeserializeFromString',
4611 'bool',
4612 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4613 is_virtual=True)
4614 ## nstime.h (module 'core'): ns3::Time ns3::TimeValue::Get() const [member function]
4615 cls.add_method('Get',
4616 'ns3::Time',
4617 [],
4618 is_const=True)
4619 ## nstime.h (module 'core'): std::string ns3::TimeValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
4620 cls.add_method('SerializeToString',
4621 'std::string',
4622 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4623 is_const=True, is_virtual=True)
4624 ## nstime.h (module 'core'): void ns3::TimeValue::Set(ns3::Time const & value) [member function]
4625 cls.add_method('Set',
4626 'void',
4627 [param('ns3::Time const &', 'value')])
4628 return
4629
4630def register_Ns3TypeIdChecker_methods(root_module, cls):
4631 ## type-id.h (module 'core'): ns3::TypeIdChecker::TypeIdChecker() [constructor]
4632 cls.add_constructor([])
4633 ## type-id.h (module 'core'): ns3::TypeIdChecker::TypeIdChecker(ns3::TypeIdChecker const & arg0) [copy constructor]
4634 cls.add_constructor([param('ns3::TypeIdChecker const &', 'arg0')])
4635 return
4636
4637def register_Ns3TypeIdValue_methods(root_module, cls):
4638 ## type-id.h (module 'core'): ns3::TypeIdValue::TypeIdValue() [constructor]
4639 cls.add_constructor([])
4640 ## type-id.h (module 'core'): ns3::TypeIdValue::TypeIdValue(ns3::TypeIdValue const & arg0) [copy constructor]
4641 cls.add_constructor([param('ns3::TypeIdValue const &', 'arg0')])
4642 ## type-id.h (module 'core'): ns3::TypeIdValue::TypeIdValue(ns3::TypeId const & value) [constructor]
4643 cls.add_constructor([param('ns3::TypeId const &', 'value')])
4644 ## type-id.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::TypeIdValue::Copy() const [member function]
4645 cls.add_method('Copy',
4646 'ns3::Ptr< ns3::AttributeValue >',
4647 [],
4648 is_const=True, is_virtual=True)
4649 ## type-id.h (module 'core'): bool ns3::TypeIdValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
4650 cls.add_method('DeserializeFromString',
4651 'bool',
4652 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4653 is_virtual=True)
4654 ## type-id.h (module 'core'): ns3::TypeId ns3::TypeIdValue::Get() const [member function]
4655 cls.add_method('Get',
4656 'ns3::TypeId',
4657 [],
4658 is_const=True)
4659 ## type-id.h (module 'core'): std::string ns3::TypeIdValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
4660 cls.add_method('SerializeToString',
4661 'std::string',
4662 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4663 is_const=True, is_virtual=True)
4664 ## type-id.h (module 'core'): void ns3::TypeIdValue::Set(ns3::TypeId const & value) [member function]
4665 cls.add_method('Set',
4666 'void',
4667 [param('ns3::TypeId const &', 'value')])
4668 return
4669
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07004670def register_Ns3UintegerValue_methods(root_module, cls):
4671 ## uinteger.h (module 'core'): ns3::UintegerValue::UintegerValue() [constructor]
4672 cls.add_constructor([])
4673 ## uinteger.h (module 'core'): ns3::UintegerValue::UintegerValue(ns3::UintegerValue const & arg0) [copy constructor]
4674 cls.add_constructor([param('ns3::UintegerValue const &', 'arg0')])
4675 ## uinteger.h (module 'core'): ns3::UintegerValue::UintegerValue(uint64_t const & value) [constructor]
4676 cls.add_constructor([param('uint64_t const &', 'value')])
4677 ## uinteger.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::UintegerValue::Copy() const [member function]
4678 cls.add_method('Copy',
4679 'ns3::Ptr< ns3::AttributeValue >',
4680 [],
4681 is_const=True, is_virtual=True)
4682 ## uinteger.h (module 'core'): bool ns3::UintegerValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
4683 cls.add_method('DeserializeFromString',
4684 'bool',
4685 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4686 is_virtual=True)
4687 ## uinteger.h (module 'core'): uint64_t ns3::UintegerValue::Get() const [member function]
4688 cls.add_method('Get',
4689 'uint64_t',
4690 [],
4691 is_const=True)
4692 ## uinteger.h (module 'core'): std::string ns3::UintegerValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
4693 cls.add_method('SerializeToString',
4694 'std::string',
4695 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4696 is_const=True, is_virtual=True)
4697 ## uinteger.h (module 'core'): void ns3::UintegerValue::Set(uint64_t const & value) [member function]
4698 cls.add_method('Set',
4699 'void',
4700 [param('uint64_t const &', 'value')])
4701 return
4702
Alexander Afanasyev381dea02011-11-03 08:33:26 -07004703def register_Ns3AddressChecker_methods(root_module, cls):
4704 ## address.h (module 'network'): ns3::AddressChecker::AddressChecker() [constructor]
4705 cls.add_constructor([])
4706 ## address.h (module 'network'): ns3::AddressChecker::AddressChecker(ns3::AddressChecker const & arg0) [copy constructor]
4707 cls.add_constructor([param('ns3::AddressChecker const &', 'arg0')])
4708 return
4709
4710def register_Ns3AddressValue_methods(root_module, cls):
4711 ## address.h (module 'network'): ns3::AddressValue::AddressValue() [constructor]
4712 cls.add_constructor([])
4713 ## address.h (module 'network'): ns3::AddressValue::AddressValue(ns3::AddressValue const & arg0) [copy constructor]
4714 cls.add_constructor([param('ns3::AddressValue const &', 'arg0')])
4715 ## address.h (module 'network'): ns3::AddressValue::AddressValue(ns3::Address const & value) [constructor]
4716 cls.add_constructor([param('ns3::Address const &', 'value')])
4717 ## address.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::AddressValue::Copy() const [member function]
4718 cls.add_method('Copy',
4719 'ns3::Ptr< ns3::AttributeValue >',
4720 [],
4721 is_const=True, is_virtual=True)
4722 ## address.h (module 'network'): bool ns3::AddressValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
4723 cls.add_method('DeserializeFromString',
4724 'bool',
4725 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4726 is_virtual=True)
4727 ## address.h (module 'network'): ns3::Address ns3::AddressValue::Get() const [member function]
4728 cls.add_method('Get',
4729 'ns3::Address',
4730 [],
4731 is_const=True)
4732 ## address.h (module 'network'): std::string ns3::AddressValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
4733 cls.add_method('SerializeToString',
4734 'std::string',
4735 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4736 is_const=True, is_virtual=True)
4737 ## address.h (module 'network'): void ns3::AddressValue::Set(ns3::Address const & value) [member function]
4738 cls.add_method('Set',
4739 'void',
4740 [param('ns3::Address const &', 'value')])
4741 return
4742
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004743def register_Ns3NdnApp_methods(root_module, cls):
4744 ## ndn-app.h (module 'ndnSIM'): ns3::ndn::App::App(ns3::ndn::App const & arg0) [copy constructor]
4745 cls.add_constructor([param('ns3::ndn::App const &', 'arg0')])
4746 ## ndn-app.h (module 'ndnSIM'): ns3::ndn::App::App() [constructor]
4747 cls.add_constructor([])
Alexander Afanasyev32c07562013-02-01 12:58:43 -08004748 ## ndn-app.h (module 'ndnSIM'): uint32_t ns3::ndn::App::GetId() const [member function]
4749 cls.add_method('GetId',
4750 'uint32_t',
4751 [],
4752 is_const=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004753 ## ndn-app.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::App::GetTypeId() [member function]
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07004754 cls.add_method('GetTypeId',
4755 'ns3::TypeId',
4756 [],
4757 is_static=True)
Alexander Afanasyev858d5312013-07-10 18:50:18 -07004758 ## 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 -07004759 cls.add_method('OnContentObject',
4760 'void',
Alexander Afanasyev858d5312013-07-10 18:50:18 -07004761 [param('ns3::Ptr< ns3::ndn::ContentObject const >', 'contentObject')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004762 is_virtual=True)
Alexander Afanasyev858d5312013-07-10 18:50:18 -07004763 ## 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 -07004764 cls.add_method('OnInterest',
4765 'void',
Alexander Afanasyev858d5312013-07-10 18:50:18 -07004766 [param('ns3::Ptr< ns3::ndn::Interest const >', 'interest')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004767 is_virtual=True)
Alexander Afanasyev858d5312013-07-10 18:50:18 -07004768 ## 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 -07004769 cls.add_method('OnNack',
4770 'void',
Alexander Afanasyev858d5312013-07-10 18:50:18 -07004771 [param('ns3::Ptr< ns3::ndn::Interest const >', 'interest')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004772 is_virtual=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004773 ## ndn-app.h (module 'ndnSIM'): void ns3::ndn::App::DoDispose() [member function]
4774 cls.add_method('DoDispose',
4775 'void',
4776 [],
4777 visibility='protected', is_virtual=True)
4778 ## ndn-app.h (module 'ndnSIM'): void ns3::ndn::App::StartApplication() [member function]
4779 cls.add_method('StartApplication',
4780 'void',
4781 [],
4782 visibility='protected', is_virtual=True)
4783 ## ndn-app.h (module 'ndnSIM'): void ns3::ndn::App::StopApplication() [member function]
4784 cls.add_method('StopApplication',
4785 'void',
4786 [],
4787 visibility='protected', is_virtual=True)
4788 return
4789
4790def register_Ns3NdnAppHelper_methods(root_module, cls):
4791 ## ndn-app-helper.h (module 'ndnSIM'): ns3::ndn::AppHelper::AppHelper(ns3::ndn::AppHelper const & arg0) [copy constructor]
4792 cls.add_constructor([param('ns3::ndn::AppHelper const &', 'arg0')])
4793 ## ndn-app-helper.h (module 'ndnSIM'): ns3::ndn::AppHelper::AppHelper(std::string const & prefix) [constructor]
4794 cls.add_constructor([param('std::string const &', 'prefix')])
4795 ## ndn-app-helper.h (module 'ndnSIM'): ns3::ApplicationContainer ns3::ndn::AppHelper::Install(ns3::NodeContainer c) [member function]
4796 cls.add_method('Install',
4797 'ns3::ApplicationContainer',
4798 [param('ns3::NodeContainer', 'c')])
4799 ## ndn-app-helper.h (module 'ndnSIM'): ns3::ApplicationContainer ns3::ndn::AppHelper::Install(ns3::Ptr<ns3::Node> node) [member function]
4800 cls.add_method('Install',
4801 'ns3::ApplicationContainer',
4802 [param('ns3::Ptr< ns3::Node >', 'node')])
4803 ## ndn-app-helper.h (module 'ndnSIM'): ns3::ApplicationContainer ns3::ndn::AppHelper::Install(std::string nodeName) [member function]
4804 cls.add_method('Install',
4805 'ns3::ApplicationContainer',
4806 [param('std::string', 'nodeName')])
4807 ## ndn-app-helper.h (module 'ndnSIM'): void ns3::ndn::AppHelper::SetAttribute(std::string name, ns3::AttributeValue const & value) [member function]
4808 cls.add_method('SetAttribute',
4809 'void',
4810 [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')])
4811 ## ndn-app-helper.h (module 'ndnSIM'): void ns3::ndn::AppHelper::SetPrefix(std::string const & prefix) [member function]
4812 cls.add_method('SetPrefix',
4813 'void',
4814 [param('std::string const &', 'prefix')])
4815 return
4816
Alexander Afanasyeveae83ee2013-03-15 15:01:10 -07004817def register_Ns3NdnContentObject_methods(root_module, cls):
Alexander Afanasyev858d5312013-07-10 18:50:18 -07004818 ## ndn-content-object.h (module 'ndnSIM'): ns3::ndn::ContentObject::ContentObject(ns3::Ptr<ns3::Packet> payload=ns3::Create( )) [constructor]
4819 cls.add_constructor([param('ns3::Ptr< ns3::Packet >', 'payload', default_value='ns3::Create( )')])
4820 ## ndn-content-object.h (module 'ndnSIM'): ns3::ndn::ContentObject::ContentObject(ns3::ndn::ContentObject const & other) [copy constructor]
4821 cls.add_constructor([param('ns3::ndn::ContentObject const &', 'other')])
4822 ## ndn-content-object.h (module 'ndnSIM'): void ns3::ndn::ContentObject::SetName(ns3::Ptr<ns3::ndn::Name> name) [member function]
4823 cls.add_method('SetName',
4824 'void',
4825 [param('ns3::Ptr< ns3::ndn::Name >', 'name')])
4826 ## ndn-content-object.h (module 'ndnSIM'): void ns3::ndn::ContentObject::SetName(ns3::ndn::Name const & name) [member function]
4827 cls.add_method('SetName',
4828 'void',
4829 [param('ns3::ndn::Name const &', 'name')])
Alexander Afanasyeveae83ee2013-03-15 15:01:10 -07004830 ## ndn-content-object.h (module 'ndnSIM'): ns3::ndn::Name const & ns3::ndn::ContentObject::GetName() const [member function]
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08004831 cls.add_method('GetName',
Alexander Afanasyevcfdc14f2013-03-15 14:38:44 -07004832 'ns3::ndn::Name const &',
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08004833 [],
4834 is_const=True)
Alexander Afanasyeveae83ee2013-03-15 15:01:10 -07004835 ## 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 -08004836 cls.add_method('GetNamePtr',
Alexander Afanasyevcfdc14f2013-03-15 14:38:44 -07004837 'ns3::Ptr< ns3::ndn::Name const >',
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004838 [],
4839 is_const=True)
Alexander Afanasyev858d5312013-07-10 18:50:18 -07004840 ## ndn-content-object.h (module 'ndnSIM'): void ns3::ndn::ContentObject::SetTimestamp(ns3::Time const & timestamp) [member function]
4841 cls.add_method('SetTimestamp',
4842 'void',
4843 [param('ns3::Time const &', 'timestamp')])
Alexander Afanasyeveae83ee2013-03-15 15:01:10 -07004844 ## ndn-content-object.h (module 'ndnSIM'): ns3::Time ns3::ndn::ContentObject::GetTimestamp() const [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004845 cls.add_method('GetTimestamp',
4846 'ns3::Time',
4847 [],
4848 is_const=True)
Alexander Afanasyeveae83ee2013-03-15 15:01:10 -07004849 ## ndn-content-object.h (module 'ndnSIM'): void ns3::ndn::ContentObject::SetFreshness(ns3::Time const & freshness) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004850 cls.add_method('SetFreshness',
4851 'void',
4852 [param('ns3::Time const &', 'freshness')])
Alexander Afanasyev858d5312013-07-10 18:50:18 -07004853 ## ndn-content-object.h (module 'ndnSIM'): ns3::Time ns3::ndn::ContentObject::GetFreshness() const [member function]
4854 cls.add_method('GetFreshness',
4855 'ns3::Time',
4856 [],
4857 is_const=True)
Alexander Afanasyev298c8442013-04-14 15:18:45 -07004858 ## ndn-content-object.h (module 'ndnSIM'): void ns3::ndn::ContentObject::SetSignature(uint32_t signature) [member function]
4859 cls.add_method('SetSignature',
4860 'void',
4861 [param('uint32_t', 'signature')])
Alexander Afanasyev858d5312013-07-10 18:50:18 -07004862 ## ndn-content-object.h (module 'ndnSIM'): uint32_t ns3::ndn::ContentObject::GetSignature() const [member function]
4863 cls.add_method('GetSignature',
4864 'uint32_t',
4865 [],
4866 is_const=True)
4867 ## ndn-content-object.h (module 'ndnSIM'): void ns3::ndn::ContentObject::SetPayload(ns3::Ptr<ns3::Packet> payload) [member function]
4868 cls.add_method('SetPayload',
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004869 'void',
Alexander Afanasyev858d5312013-07-10 18:50:18 -07004870 [param('ns3::Ptr< ns3::Packet >', 'payload')])
4871 ## ndn-content-object.h (module 'ndnSIM'): ns3::Ptr<ns3::Packet const> ns3::ndn::ContentObject::GetPayload() const [member function]
4872 cls.add_method('GetPayload',
4873 'ns3::Ptr< ns3::Packet const >',
4874 [],
4875 is_const=True)
4876 ## ndn-content-object.h (module 'ndnSIM'): ns3::Ptr<ns3::Packet const> ns3::ndn::ContentObject::GetWire() const [member function]
4877 cls.add_method('GetWire',
4878 'ns3::Ptr< ns3::Packet const >',
4879 [],
4880 is_const=True)
4881 ## ndn-content-object.h (module 'ndnSIM'): void ns3::ndn::ContentObject::SetWire(ns3::Ptr<ns3::Packet const> packet) const [member function]
4882 cls.add_method('SetWire',
4883 'void',
4884 [param('ns3::Ptr< ns3::Packet const >', 'packet')],
4885 is_const=True)
4886 ## ndn-content-object.h (module 'ndnSIM'): void ns3::ndn::ContentObject::Print(std::ostream & os) const [member function]
4887 cls.add_method('Print',
4888 'void',
4889 [param('std::ostream &', 'os')],
4890 is_const=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004891 return
4892
Alexander Afanasyeveae83ee2013-03-15 15:01:10 -07004893def register_Ns3NdnContentObjectException_methods(root_module, cls):
4894 ## ndn-content-object.h (module 'ndnSIM'): ns3::ndn::ContentObjectException::ContentObjectException() [constructor]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004895 cls.add_constructor([])
Alexander Afanasyeveae83ee2013-03-15 15:01:10 -07004896 ## ndn-content-object.h (module 'ndnSIM'): ns3::ndn::ContentObjectException::ContentObjectException(ns3::ndn::ContentObjectException const & arg0) [copy constructor]
4897 cls.add_constructor([param('ns3::ndn::ContentObjectException const &', 'arg0')])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004898 return
4899
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004900def register_Ns3NdnContentStore_methods(root_module, cls):
4901 cls.add_output_stream_operator()
4902 ## ndn-content-store.h (module 'ndnSIM'): ns3::ndn::ContentStore::ContentStore() [constructor]
4903 cls.add_constructor([])
4904 ## ndn-content-store.h (module 'ndnSIM'): ns3::ndn::ContentStore::ContentStore(ns3::ndn::ContentStore const & arg0) [copy constructor]
4905 cls.add_constructor([param('ns3::ndn::ContentStore const &', 'arg0')])
Alexander Afanasyev858d5312013-07-10 18:50:18 -07004906 ## 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 -07004907 cls.add_method('Add',
4908 'bool',
Alexander Afanasyev858d5312013-07-10 18:50:18 -07004909 [param('ns3::Ptr< ns3::ndn::ContentObject const >', 'data')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004910 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07004911 ## ndn-content-store.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::cs::Entry> ns3::ndn::ContentStore::Begin() [member function]
4912 cls.add_method('Begin',
4913 'ns3::Ptr< ns3::ndn::cs::Entry >',
4914 [],
4915 is_pure_virtual=True, is_virtual=True)
4916 ## ndn-content-store.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::cs::Entry> ns3::ndn::ContentStore::End() [member function]
4917 cls.add_method('End',
4918 'ns3::Ptr< ns3::ndn::cs::Entry >',
4919 [],
4920 is_pure_virtual=True, is_virtual=True)
4921 ## ndn-content-store.h (module 'ndnSIM'): static ns3::Ptr<ns3::ndn::ContentStore> ns3::ndn::ContentStore::GetContentStore(ns3::Ptr<ns3::Object> node) [member function]
4922 cls.add_method('GetContentStore',
4923 'ns3::Ptr< ns3::ndn::ContentStore >',
4924 [param('ns3::Ptr< ns3::Object >', 'node')],
4925 is_static=True)
4926 ## ndn-content-store.h (module 'ndnSIM'): uint32_t ns3::ndn::ContentStore::GetSize() const [member function]
4927 cls.add_method('GetSize',
4928 'uint32_t',
4929 [],
4930 is_pure_virtual=True, is_const=True, is_virtual=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004931 ## ndn-content-store.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::ContentStore::GetTypeId() [member function]
4932 cls.add_method('GetTypeId',
4933 'ns3::TypeId',
4934 [],
4935 is_static=True)
Alexander Afanasyev858d5312013-07-10 18:50:18 -07004936 ## 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 -07004937 cls.add_method('Lookup',
Alexander Afanasyev858d5312013-07-10 18:50:18 -07004938 'ns3::Ptr< ns3::ndn::ContentObject >',
Alexander Afanasyeveae83ee2013-03-15 15:01:10 -07004939 [param('ns3::Ptr< ns3::ndn::Interest const >', 'interest')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004940 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07004941 ## 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]
4942 cls.add_method('Next',
4943 'ns3::Ptr< ns3::ndn::cs::Entry >',
4944 [param('ns3::Ptr< ns3::ndn::cs::Entry >', 'arg0')],
4945 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004946 ## ndn-content-store.h (module 'ndnSIM'): void ns3::ndn::ContentStore::Print(std::ostream & os) const [member function]
4947 cls.add_method('Print',
4948 'void',
4949 [param('std::ostream &', 'os')],
4950 is_pure_virtual=True, is_const=True, is_virtual=True)
4951 return
4952
4953def register_Ns3NdnFace_methods(root_module, cls):
4954 cls.add_output_stream_operator()
4955 cls.add_binary_comparison_operator('!=')
4956 cls.add_binary_comparison_operator('<')
4957 cls.add_binary_comparison_operator('==')
4958 ## ndn-face.h (module 'ndnSIM'): ns3::ndn::Face::Face(ns3::Ptr<ns3::Node> node) [constructor]
4959 cls.add_constructor([param('ns3::Ptr< ns3::Node >', 'node')])
Alexander Afanasyev858d5312013-07-10 18:50:18 -07004960 ## ndn-face.h (module 'ndnSIM'): uint32_t ns3::ndn::Face::GetFlags() const [member function]
4961 cls.add_method('GetFlags',
4962 'uint32_t',
4963 [],
4964 is_const=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004965 ## ndn-face.h (module 'ndnSIM'): uint32_t ns3::ndn::Face::GetId() const [member function]
4966 cls.add_method('GetId',
4967 'uint32_t',
4968 [],
4969 is_const=True)
4970 ## ndn-face.h (module 'ndnSIM'): uint16_t ns3::ndn::Face::GetMetric() const [member function]
4971 cls.add_method('GetMetric',
4972 'uint16_t',
4973 [],
4974 is_const=True, is_virtual=True)
4975 ## ndn-face.h (module 'ndnSIM'): ns3::Ptr<ns3::Node> ns3::ndn::Face::GetNode() const [member function]
4976 cls.add_method('GetNode',
4977 'ns3::Ptr< ns3::Node >',
4978 [],
4979 is_const=True)
4980 ## ndn-face.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::Face::GetTypeId() [member function]
4981 cls.add_method('GetTypeId',
4982 'ns3::TypeId',
4983 [],
4984 is_static=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004985 ## ndn-face.h (module 'ndnSIM'): bool ns3::ndn::Face::IsUp() const [member function]
4986 cls.add_method('IsUp',
4987 'bool',
4988 [],
Alexander Afanasyev858d5312013-07-10 18:50:18 -07004989 is_const=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004990 ## ndn-face.h (module 'ndnSIM'): std::ostream & ns3::ndn::Face::Print(std::ostream & os) const [member function]
Alexander Afanasyev3073da82012-06-19 14:57:43 -07004991 cls.add_method('Print',
4992 'std::ostream &',
4993 [param('std::ostream &', 'os')],
4994 is_const=True, is_virtual=True)
Alexander Afanasyev858d5312013-07-10 18:50:18 -07004995 ## ndn-face.h (module 'ndnSIM'): bool ns3::ndn::Face::ReceiveData(ns3::Ptr<ns3::ndn::ContentObject> data) [member function]
4996 cls.add_method('ReceiveData',
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004997 'bool',
Alexander Afanasyev858d5312013-07-10 18:50:18 -07004998 [param('ns3::Ptr< ns3::ndn::ContentObject >', 'data')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004999 is_virtual=True)
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005000 ## ndn-face.h (module 'ndnSIM'): bool ns3::ndn::Face::ReceiveInterest(ns3::Ptr<ns3::ndn::Interest> interest) [member function]
5001 cls.add_method('ReceiveInterest',
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005002 'bool',
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005003 [param('ns3::Ptr< ns3::ndn::Interest >', 'interest')],
5004 is_virtual=True)
5005 ## 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]
5006 cls.add_method('RegisterProtocolHandlers',
5007 'void',
5008 [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')],
5009 is_virtual=True)
5010 ## ndn-face.h (module 'ndnSIM'): bool ns3::ndn::Face::SendData(ns3::Ptr<ns3::ndn::ContentObject const> data) [member function]
5011 cls.add_method('SendData',
5012 'bool',
5013 [param('ns3::Ptr< ns3::ndn::ContentObject const >', 'data')],
5014 is_virtual=True)
5015 ## ndn-face.h (module 'ndnSIM'): bool ns3::ndn::Face::SendInterest(ns3::Ptr<ns3::ndn::Interest const> interest) [member function]
5016 cls.add_method('SendInterest',
5017 'bool',
5018 [param('ns3::Ptr< ns3::ndn::Interest const >', 'interest')],
5019 is_virtual=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005020 ## ndn-face.h (module 'ndnSIM'): void ns3::ndn::Face::SetId(uint32_t id) [member function]
5021 cls.add_method('SetId',
5022 'void',
5023 [param('uint32_t', 'id')])
5024 ## ndn-face.h (module 'ndnSIM'): void ns3::ndn::Face::SetMetric(uint16_t metric) [member function]
5025 cls.add_method('SetMetric',
5026 'void',
5027 [param('uint16_t', 'metric')],
5028 is_virtual=True)
5029 ## ndn-face.h (module 'ndnSIM'): void ns3::ndn::Face::SetUp(bool up=true) [member function]
5030 cls.add_method('SetUp',
5031 'void',
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005032 [param('bool', 'up', default_value='true')])
5033 ## ndn-face.h (module 'ndnSIM'): void ns3::ndn::Face::UnRegisterProtocolHandlers() [member function]
5034 cls.add_method('UnRegisterProtocolHandlers',
5035 'void',
5036 [],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005037 is_virtual=True)
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005038 ## ndn-face.h (module 'ndnSIM'): bool ns3::ndn::Face::Receive(ns3::Ptr<ns3::Packet const> p) [member function]
5039 cls.add_method('Receive',
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005040 'bool',
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005041 [param('ns3::Ptr< ns3::Packet const >', 'p')],
5042 visibility='protected', is_virtual=True)
5043 ## ndn-face.h (module 'ndnSIM'): bool ns3::ndn::Face::Send(ns3::Ptr<ns3::Packet> packet) [member function]
5044 cls.add_method('Send',
5045 'bool',
5046 [param('ns3::Ptr< ns3::Packet >', 'packet')],
5047 visibility='protected', is_virtual=True)
5048 ## ndn-face.h (module 'ndnSIM'): void ns3::ndn::Face::SetFlags(uint32_t flags) [member function]
5049 cls.add_method('SetFlags',
5050 'void',
5051 [param('uint32_t', 'flags')],
5052 visibility='protected')
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005053 return
5054
5055def register_Ns3NdnFaceContainer_methods(root_module, cls):
5056 ## ndn-face-container.h (module 'ndnSIM'): ns3::ndn::FaceContainer::FaceContainer() [constructor]
5057 cls.add_constructor([])
5058 ## ndn-face-container.h (module 'ndnSIM'): ns3::ndn::FaceContainer::FaceContainer(ns3::ndn::FaceContainer const & other) [copy constructor]
5059 cls.add_constructor([param('ns3::ndn::FaceContainer const &', 'other')])
5060 ## ndn-face-container.h (module 'ndnSIM'): void ns3::ndn::FaceContainer::Add(ns3::Ptr<ns3::ndn::Face> const & face) [member function]
5061 cls.add_method('Add',
5062 'void',
5063 [param('ns3::Ptr< ns3::ndn::Face > const &', 'face')])
5064 ## ndn-face-container.h (module 'ndnSIM'): void ns3::ndn::FaceContainer::AddAll(ns3::Ptr<ns3::ndn::FaceContainer> other) [member function]
5065 cls.add_method('AddAll',
5066 'void',
5067 [param('ns3::Ptr< ns3::ndn::FaceContainer >', 'other')])
5068 ## ndn-face-container.h (module 'ndnSIM'): void ns3::ndn::FaceContainer::AddAll(ns3::ndn::FaceContainer const & other) [member function]
5069 cls.add_method('AddAll',
5070 'void',
5071 [param('ns3::ndn::FaceContainer const &', 'other')])
5072 ## 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]
5073 cls.add_method('Begin',
5074 '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::ndn::Face > const, std::vector< ns3::Ptr< ns3::ndn::Face > > >',
5075 [],
5076 is_const=True)
5077 ## 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]
5078 cls.add_method('End',
5079 '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::ndn::Face > const, std::vector< ns3::Ptr< ns3::ndn::Face > > >',
5080 [],
5081 is_const=True)
5082 ## 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]
5083 cls.add_method('Get',
5084 'ns3::Ptr< ns3::ndn::Face >',
5085 [param('__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::ndn::Face > const, std::vector< ns3::Ptr< ns3::ndn::Face > > >', 'i')],
5086 is_const=True)
5087 ## ndn-face-container.h (module 'ndnSIM'): uint32_t ns3::ndn::FaceContainer::GetN() const [member function]
5088 cls.add_method('GetN',
5089 'uint32_t',
5090 [],
5091 is_const=True)
5092 return
5093
5094def register_Ns3NdnFib_methods(root_module, cls):
5095 cls.add_output_stream_operator()
5096 ## ndn-fib.h (module 'ndnSIM'): ns3::ndn::Fib::Fib() [constructor]
5097 cls.add_constructor([])
Alexander Afanasyevcfdc14f2013-03-15 14:38:44 -07005098 ## 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 -07005099 cls.add_method('Add',
5100 'ns3::Ptr< ns3::ndn::fib::Entry >',
Alexander Afanasyevcfdc14f2013-03-15 14:38:44 -07005101 [param('ns3::ndn::Name const &', 'prefix'), param('ns3::Ptr< ns3::ndn::Face >', 'face'), param('int32_t', 'metric')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005102 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyevcfdc14f2013-03-15 14:38:44 -07005103 ## 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 -07005104 cls.add_method('Add',
5105 'ns3::Ptr< ns3::ndn::fib::Entry >',
Alexander Afanasyevcfdc14f2013-03-15 14:38:44 -07005106 [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 -07005107 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005108 ## 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 -07005109 cls.add_method('Begin',
5110 'ns3::Ptr< ns3::ndn::fib::Entry const >',
5111 [],
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005112 is_pure_virtual=True, is_const=True, is_virtual=True)
5113 ## ndn-fib.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::fib::Entry> ns3::ndn::Fib::Begin() [member function]
5114 cls.add_method('Begin',
5115 'ns3::Ptr< ns3::ndn::fib::Entry >',
5116 [],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005117 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005118 ## 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 -07005119 cls.add_method('End',
5120 'ns3::Ptr< ns3::ndn::fib::Entry const >',
5121 [],
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005122 is_pure_virtual=True, is_const=True, is_virtual=True)
5123 ## ndn-fib.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::fib::Entry> ns3::ndn::Fib::End() [member function]
5124 cls.add_method('End',
5125 'ns3::Ptr< ns3::ndn::fib::Entry >',
5126 [],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005127 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyeve5a8b5a2013-03-15 15:15:26 -07005128 ## ndn-fib.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::fib::Entry> ns3::ndn::Fib::Find(ns3::ndn::Name const & prefix) [member function]
5129 cls.add_method('Find',
5130 'ns3::Ptr< ns3::ndn::fib::Entry >',
5131 [param('ns3::ndn::Name const &', 'prefix')],
5132 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005133 ## ndn-fib.h (module 'ndnSIM'): static ns3::Ptr<ns3::ndn::Fib> ns3::ndn::Fib::GetFib(ns3::Ptr<ns3::Object> node) [member function]
5134 cls.add_method('GetFib',
5135 'ns3::Ptr< ns3::ndn::Fib >',
5136 [param('ns3::Ptr< ns3::Object >', 'node')],
5137 is_static=True)
5138 ## ndn-fib.h (module 'ndnSIM'): uint32_t ns3::ndn::Fib::GetSize() const [member function]
5139 cls.add_method('GetSize',
5140 'uint32_t',
5141 [],
5142 is_pure_virtual=True, is_const=True, is_virtual=True)
5143 ## ndn-fib.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::Fib::GetTypeId() [member function]
5144 cls.add_method('GetTypeId',
5145 'ns3::TypeId',
5146 [],
5147 is_static=True)
5148 ## ndn-fib.h (module 'ndnSIM'): void ns3::ndn::Fib::InvalidateAll() [member function]
5149 cls.add_method('InvalidateAll',
5150 'void',
5151 [],
5152 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyeveae83ee2013-03-15 15:01:10 -07005153 ## 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 -07005154 cls.add_method('LongestPrefixMatch',
5155 'ns3::Ptr< ns3::ndn::fib::Entry >',
Alexander Afanasyeveae83ee2013-03-15 15:01:10 -07005156 [param('ns3::ndn::Interest const &', 'interest')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005157 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005158 ## 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 -07005159 cls.add_method('Next',
5160 'ns3::Ptr< ns3::ndn::fib::Entry const >',
5161 [param('ns3::Ptr< ns3::ndn::fib::Entry const >', 'arg0')],
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005162 is_pure_virtual=True, is_const=True, is_virtual=True)
5163 ## ndn-fib.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::fib::Entry> ns3::ndn::Fib::Next(ns3::Ptr<ns3::ndn::fib::Entry> arg0) [member function]
5164 cls.add_method('Next',
5165 'ns3::Ptr< ns3::ndn::fib::Entry >',
5166 [param('ns3::Ptr< ns3::ndn::fib::Entry >', 'arg0')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005167 is_pure_virtual=True, is_virtual=True)
5168 ## ndn-fib.h (module 'ndnSIM'): void ns3::ndn::Fib::Print(std::ostream & os) const [member function]
5169 cls.add_method('Print',
5170 'void',
5171 [param('std::ostream &', 'os')],
5172 is_pure_virtual=True, is_const=True, is_virtual=True)
Alexander Afanasyevcfdc14f2013-03-15 14:38:44 -07005173 ## 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 -07005174 cls.add_method('Remove',
5175 'void',
Alexander Afanasyevcfdc14f2013-03-15 14:38:44 -07005176 [param('ns3::Ptr< ns3::ndn::Name const > const &', 'prefix')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005177 is_pure_virtual=True, is_virtual=True)
5178 ## ndn-fib.h (module 'ndnSIM'): void ns3::ndn::Fib::RemoveFromAll(ns3::Ptr<ns3::ndn::Face> face) [member function]
5179 cls.add_method('RemoveFromAll',
5180 'void',
5181 [param('ns3::Ptr< ns3::ndn::Face >', 'face')],
5182 is_pure_virtual=True, is_virtual=True)
5183 return
5184
5185def register_Ns3NdnForwardingStrategy_methods(root_module, cls):
5186 ## ndn-forwarding-strategy.h (module 'ndnSIM'): ns3::ndn::ForwardingStrategy::ForwardingStrategy(ns3::ndn::ForwardingStrategy const & arg0) [copy constructor]
5187 cls.add_constructor([param('ns3::ndn::ForwardingStrategy const &', 'arg0')])
5188 ## ndn-forwarding-strategy.h (module 'ndnSIM'): ns3::ndn::ForwardingStrategy::ForwardingStrategy() [constructor]
5189 cls.add_constructor([])
Alexander Afanasyevf5c07742012-10-31 13:13:05 -07005190 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::AddFace(ns3::Ptr<ns3::ndn::Face> face) [member function]
5191 cls.add_method('AddFace',
5192 'void',
5193 [param('ns3::Ptr< ns3::ndn::Face >', 'face')],
5194 is_virtual=True)
Alexander Afanasyev32c07562013-02-01 12:58:43 -08005195 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::DidAddFibEntry(ns3::Ptr<ns3::ndn::fib::Entry> fibEntry) [member function]
5196 cls.add_method('DidAddFibEntry',
5197 'void',
5198 [param('ns3::Ptr< ns3::ndn::fib::Entry >', 'fibEntry')],
5199 is_virtual=True)
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08005200 ## ndn-forwarding-strategy.h (module 'ndnSIM'): static std::string ns3::ndn::ForwardingStrategy::GetLogName() [member function]
5201 cls.add_method('GetLogName',
5202 'std::string',
5203 [],
5204 is_static=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005205 ## ndn-forwarding-strategy.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::ForwardingStrategy::GetTypeId() [member function]
5206 cls.add_method('GetTypeId',
5207 'ns3::TypeId',
5208 [],
5209 is_static=True)
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005210 ## 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 -07005211 cls.add_method('OnData',
5212 'void',
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005213 [param('ns3::Ptr< ns3::ndn::Face >', 'face'), param('ns3::Ptr< ns3::ndn::ContentObject >', 'data')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005214 is_virtual=True)
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005215 ## 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 -07005216 cls.add_method('OnInterest',
5217 'void',
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005218 [param('ns3::Ptr< ns3::ndn::Face >', 'face'), param('ns3::Ptr< ns3::ndn::Interest >', 'interest')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005219 is_virtual=True)
5220 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::RemoveFace(ns3::Ptr<ns3::ndn::Face> face) [member function]
5221 cls.add_method('RemoveFace',
5222 'void',
5223 [param('ns3::Ptr< ns3::ndn::Face >', 'face')],
5224 is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005225 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::WillEraseTimedOutPendingInterest(ns3::Ptr<ns3::ndn::pit::Entry> pitEntry) [member function]
5226 cls.add_method('WillEraseTimedOutPendingInterest',
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005227 'void',
5228 [param('ns3::Ptr< ns3::ndn::pit::Entry >', 'pitEntry')],
5229 is_virtual=True)
Alexander Afanasyev32c07562013-02-01 12:58:43 -08005230 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::WillRemoveFibEntry(ns3::Ptr<ns3::ndn::fib::Entry> fibEntry) [member function]
5231 cls.add_method('WillRemoveFibEntry',
5232 'void',
5233 [param('ns3::Ptr< ns3::ndn::fib::Entry >', 'fibEntry')],
5234 is_virtual=True)
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005235 ## 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 -08005236 cls.add_method('CanSendOutInterest',
5237 'bool',
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005238 [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 -08005239 visibility='protected', is_virtual=True)
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005240 ## 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 -07005241 cls.add_method('DetectRetransmittedInterest',
5242 'bool',
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005243 [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 -07005244 visibility='protected', is_virtual=True)
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005245 ## 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 -07005246 cls.add_method('DidCreatePitEntry',
5247 'void',
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005248 [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 -07005249 visibility='protected', is_virtual=True)
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005250 ## 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 -07005251 cls.add_method('DidExhaustForwardingOptions',
5252 'void',
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005253 [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 -07005254 visibility='protected', is_virtual=True)
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005255 ## 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 -07005256 cls.add_method('DidForwardSimilarInterest',
5257 'void',
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005258 [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 -07005259 visibility='protected', is_virtual=True)
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005260 ## 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 -07005261 cls.add_method('DidReceiveDuplicateInterest',
5262 'void',
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005263 [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 -07005264 visibility='protected', is_virtual=True)
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005265 ## 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 -08005266 cls.add_method('DidReceiveSolicitedData',
5267 'void',
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005268 [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 -08005269 visibility='protected', is_virtual=True)
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005270 ## 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 -07005271 cls.add_method('DidReceiveUnsolicitedData',
5272 'void',
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005273 [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 -07005274 visibility='protected', is_virtual=True)
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005275 ## 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 -07005276 cls.add_method('DidSendOutData',
5277 'void',
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005278 [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 -07005279 visibility='protected', is_virtual=True)
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005280 ## 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 -07005281 cls.add_method('DidSendOutInterest',
5282 'void',
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005283 [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 -07005284 visibility='protected', is_virtual=True)
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005285 ## 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 -07005286 cls.add_method('DidSuppressSimilarInterest',
5287 'void',
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005288 [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 -07005289 visibility='protected', is_virtual=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005290 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::DoDispose() [member function]
5291 cls.add_method('DoDispose',
5292 'void',
5293 [],
5294 visibility='protected', is_virtual=True)
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005295 ## 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 -07005296 cls.add_method('DoPropagateInterest',
5297 'bool',
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005298 [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 -07005299 is_pure_virtual=True, visibility='protected', is_virtual=True)
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005300 ## 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 -07005301 cls.add_method('FailedToCreatePitEntry',
5302 'void',
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005303 [param('ns3::Ptr< ns3::ndn::Face >', 'inFace'), param('ns3::Ptr< ns3::ndn::Interest const >', 'interest')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005304 visibility='protected', is_virtual=True)
5305 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::NotifyNewAggregate() [member function]
5306 cls.add_method('NotifyNewAggregate',
5307 'void',
5308 [],
5309 visibility='protected', is_virtual=True)
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005310 ## 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 -07005311 cls.add_method('PropagateInterest',
5312 'void',
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005313 [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 -07005314 visibility='protected', is_virtual=True)
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005315 ## 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 -07005316 cls.add_method('SatisfyPendingInterest',
5317 'void',
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005318 [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 -07005319 visibility='protected', is_virtual=True)
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005320 ## 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 -07005321 cls.add_method('ShouldSuppressIncomingInterest',
5322 'bool',
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005323 [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 -07005324 visibility='protected', is_virtual=True)
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005325 ## 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 -07005326 cls.add_method('TrySendOutInterest',
5327 'bool',
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005328 [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 -07005329 visibility='protected', is_virtual=True)
5330 ## 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 -07005331 cls.add_method('WillSatisfyPendingInterest',
5332 'void',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005333 [param('ns3::Ptr< ns3::ndn::Face >', 'inFace'), param('ns3::Ptr< ns3::ndn::pit::Entry >', 'pitEntry')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005334 visibility='protected', is_virtual=True)
5335 return
5336
5337def register_Ns3NdnGlobalRoutingHelper_methods(root_module, cls):
5338 ## ndn-global-routing-helper.h (module 'ndnSIM'): ns3::ndn::GlobalRoutingHelper::GlobalRoutingHelper() [constructor]
5339 cls.add_constructor([])
5340 ## ndn-global-routing-helper.h (module 'ndnSIM'): ns3::ndn::GlobalRoutingHelper::GlobalRoutingHelper(ns3::ndn::GlobalRoutingHelper const & arg0) [copy constructor]
5341 cls.add_constructor([param('ns3::ndn::GlobalRoutingHelper const &', 'arg0')])
5342 ## ndn-global-routing-helper.h (module 'ndnSIM'): void ns3::ndn::GlobalRoutingHelper::AddOrigin(std::string const & prefix, ns3::Ptr<ns3::Node> node) [member function]
5343 cls.add_method('AddOrigin',
5344 'void',
5345 [param('std::string const &', 'prefix'), param('ns3::Ptr< ns3::Node >', 'node')])
5346 ## ndn-global-routing-helper.h (module 'ndnSIM'): void ns3::ndn::GlobalRoutingHelper::AddOrigin(std::string const & prefix, std::string const & nodeName) [member function]
5347 cls.add_method('AddOrigin',
5348 'void',
5349 [param('std::string const &', 'prefix'), param('std::string const &', 'nodeName')])
5350 ## ndn-global-routing-helper.h (module 'ndnSIM'): void ns3::ndn::GlobalRoutingHelper::AddOrigins(std::string const & prefix, ns3::NodeContainer const & nodes) [member function]
5351 cls.add_method('AddOrigins',
5352 'void',
5353 [param('std::string const &', 'prefix'), param('ns3::NodeContainer const &', 'nodes')])
Alexander Afanasyev32c07562013-02-01 12:58:43 -08005354 ## ndn-global-routing-helper.h (module 'ndnSIM'): void ns3::ndn::GlobalRoutingHelper::AddOriginsForAll() [member function]
5355 cls.add_method('AddOriginsForAll',
5356 'void',
5357 [])
Alexander Afanasyev0e4ae8e2013-03-12 15:59:18 -07005358 ## ndn-global-routing-helper.h (module 'ndnSIM'): static void ns3::ndn::GlobalRoutingHelper::CalculateAllPossibleRoutes() [member function]
5359 cls.add_method('CalculateAllPossibleRoutes',
5360 'void',
5361 [],
5362 is_static=True)
5363 ## ndn-global-routing-helper.h (module 'ndnSIM'): static void ns3::ndn::GlobalRoutingHelper::CalculateRoutes() [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005364 cls.add_method('CalculateRoutes',
5365 'void',
Alexander Afanasyev0e4ae8e2013-03-12 15:59:18 -07005366 [],
5367 is_static=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005368 ## ndn-global-routing-helper.h (module 'ndnSIM'): void ns3::ndn::GlobalRoutingHelper::Install(ns3::Ptr<ns3::Node> node) [member function]
5369 cls.add_method('Install',
5370 'void',
5371 [param('ns3::Ptr< ns3::Node >', 'node')])
5372 ## ndn-global-routing-helper.h (module 'ndnSIM'): void ns3::ndn::GlobalRoutingHelper::Install(ns3::NodeContainer const & nodes) [member function]
5373 cls.add_method('Install',
5374 'void',
5375 [param('ns3::NodeContainer const &', 'nodes')])
5376 ## ndn-global-routing-helper.h (module 'ndnSIM'): void ns3::ndn::GlobalRoutingHelper::InstallAll() [member function]
5377 cls.add_method('InstallAll',
5378 'void',
5379 [])
5380 return
5381
5382def register_Ns3NdnHeaderHelper_methods(root_module, cls):
5383 ## ndn-header-helper.h (module 'ndnSIM'): ns3::ndn::HeaderHelper::HeaderHelper() [constructor]
5384 cls.add_constructor([])
5385 ## ndn-header-helper.h (module 'ndnSIM'): ns3::ndn::HeaderHelper::HeaderHelper(ns3::ndn::HeaderHelper const & arg0) [copy constructor]
5386 cls.add_constructor([param('ns3::ndn::HeaderHelper const &', 'arg0')])
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005387 ## 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 -07005388 cls.add_method('GetNdnHeaderType',
5389 'ns3::ndn::HeaderHelper::Type',
5390 [param('ns3::Ptr< ns3::Packet const >', 'packet')],
5391 is_static=True)
5392 return
5393
Alexander Afanasyeveae83ee2013-03-15 15:01:10 -07005394def register_Ns3NdnInterest_methods(root_module, cls):
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005395 ## ndn-interest.h (module 'ndnSIM'): ns3::ndn::Interest::Interest(ns3::Ptr<ns3::Packet> payload=ns3::Create( )) [constructor]
5396 cls.add_constructor([param('ns3::Ptr< ns3::Packet >', 'payload', default_value='ns3::Create( )')])
Alexander Afanasyeveae83ee2013-03-15 15:01:10 -07005397 ## ndn-interest.h (module 'ndnSIM'): ns3::ndn::Interest::Interest(ns3::ndn::Interest const & interest) [copy constructor]
5398 cls.add_constructor([param('ns3::ndn::Interest const &', 'interest')])
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005399 ## ndn-interest.h (module 'ndnSIM'): void ns3::ndn::Interest::SetName(ns3::Ptr<ns3::ndn::Name> name) [member function]
5400 cls.add_method('SetName',
5401 'void',
5402 [param('ns3::Ptr< ns3::ndn::Name >', 'name')])
5403 ## ndn-interest.h (module 'ndnSIM'): void ns3::ndn::Interest::SetName(ns3::ndn::Name const & name) [member function]
5404 cls.add_method('SetName',
5405 'void',
5406 [param('ns3::ndn::Name const &', 'name')])
Alexander Afanasyeveae83ee2013-03-15 15:01:10 -07005407 ## ndn-interest.h (module 'ndnSIM'): ns3::ndn::Name const & ns3::ndn::Interest::GetName() const [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005408 cls.add_method('GetName',
Alexander Afanasyevcfdc14f2013-03-15 14:38:44 -07005409 'ns3::ndn::Name const &',
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005410 [],
5411 is_const=True)
Alexander Afanasyeveae83ee2013-03-15 15:01:10 -07005412 ## 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 -07005413 cls.add_method('GetNamePtr',
Alexander Afanasyevcfdc14f2013-03-15 14:38:44 -07005414 'ns3::Ptr< ns3::ndn::Name const >',
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005415 [],
5416 is_const=True)
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005417 ## ndn-interest.h (module 'ndnSIM'): void ns3::ndn::Interest::SetScope(int8_t scope) [member function]
5418 cls.add_method('SetScope',
5419 'void',
5420 [param('int8_t', 'scope')])
Alexander Afanasyeveae83ee2013-03-15 15:01:10 -07005421 ## ndn-interest.h (module 'ndnSIM'): int8_t ns3::ndn::Interest::GetScope() const [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005422 cls.add_method('GetScope',
5423 'int8_t',
5424 [],
5425 is_const=True)
Alexander Afanasyeveae83ee2013-03-15 15:01:10 -07005426 ## ndn-interest.h (module 'ndnSIM'): void ns3::ndn::Interest::SetInterestLifetime(ns3::Time time) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005427 cls.add_method('SetInterestLifetime',
5428 'void',
5429 [param('ns3::Time', 'time')])
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005430 ## ndn-interest.h (module 'ndnSIM'): ns3::Time ns3::ndn::Interest::GetInterestLifetime() const [member function]
5431 cls.add_method('GetInterestLifetime',
5432 'ns3::Time',
5433 [],
5434 is_const=True)
Alexander Afanasyeveae83ee2013-03-15 15:01:10 -07005435 ## ndn-interest.h (module 'ndnSIM'): void ns3::ndn::Interest::SetNonce(uint32_t nonce) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005436 cls.add_method('SetNonce',
5437 'void',
5438 [param('uint32_t', 'nonce')])
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005439 ## ndn-interest.h (module 'ndnSIM'): uint32_t ns3::ndn::Interest::GetNonce() const [member function]
5440 cls.add_method('GetNonce',
5441 'uint32_t',
5442 [],
5443 is_const=True)
5444 ## ndn-interest.h (module 'ndnSIM'): void ns3::ndn::Interest::SetNack(uint8_t nackType) [member function]
5445 cls.add_method('SetNack',
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005446 'void',
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005447 [param('uint8_t', 'nackType')])
5448 ## ndn-interest.h (module 'ndnSIM'): uint8_t ns3::ndn::Interest::GetNack() const [member function]
5449 cls.add_method('GetNack',
5450 'uint8_t',
5451 [],
5452 is_const=True)
5453 ## ndn-interest.h (module 'ndnSIM'): void ns3::ndn::Interest::SetPayload(ns3::Ptr<ns3::Packet> payload) [member function]
5454 cls.add_method('SetPayload',
5455 'void',
5456 [param('ns3::Ptr< ns3::Packet >', 'payload')])
5457 ## ndn-interest.h (module 'ndnSIM'): ns3::Ptr<ns3::Packet const> ns3::ndn::Interest::GetPayload() const [member function]
5458 cls.add_method('GetPayload',
5459 'ns3::Ptr< ns3::Packet const >',
5460 [],
5461 is_const=True)
5462 ## ndn-interest.h (module 'ndnSIM'): ns3::Ptr<ns3::Packet const> ns3::ndn::Interest::GetWire() const [member function]
5463 cls.add_method('GetWire',
5464 'ns3::Ptr< ns3::Packet const >',
5465 [],
5466 is_const=True)
5467 ## ndn-interest.h (module 'ndnSIM'): void ns3::ndn::Interest::SetWire(ns3::Ptr<ns3::Packet const> packet) const [member function]
5468 cls.add_method('SetWire',
5469 'void',
5470 [param('ns3::Ptr< ns3::Packet const >', 'packet')],
5471 is_const=True)
5472 ## ndn-interest.h (module 'ndnSIM'): void ns3::ndn::Interest::Print(std::ostream & os) const [member function]
5473 cls.add_method('Print',
5474 'void',
5475 [param('std::ostream &', 'os')],
5476 is_const=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005477 return
5478
Alexander Afanasyeveae83ee2013-03-15 15:01:10 -07005479def register_Ns3NdnInterestException_methods(root_module, cls):
5480 ## ndn-interest.h (module 'ndnSIM'): ns3::ndn::InterestException::InterestException() [constructor]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005481 cls.add_constructor([])
Alexander Afanasyeveae83ee2013-03-15 15:01:10 -07005482 ## ndn-interest.h (module 'ndnSIM'): ns3::ndn::InterestException::InterestException(ns3::ndn::InterestException const & arg0) [copy constructor]
5483 cls.add_constructor([param('ns3::ndn::InterestException const &', 'arg0')])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005484 return
5485
5486def register_Ns3NdnL3Protocol_methods(root_module, cls):
5487 ## ndn-l3-protocol.h (module 'ndnSIM'): ns3::ndn::L3Protocol::ETHERNET_FRAME_TYPE [variable]
5488 cls.add_static_attribute('ETHERNET_FRAME_TYPE', 'uint16_t const', is_const=True)
5489 ## ndn-l3-protocol.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::L3Protocol::GetTypeId() [member function]
5490 cls.add_method('GetTypeId',
5491 'ns3::TypeId',
5492 [],
5493 is_static=True)
5494 ## ndn-l3-protocol.h (module 'ndnSIM'): ns3::ndn::L3Protocol::L3Protocol() [constructor]
5495 cls.add_constructor([])
5496 ## ndn-l3-protocol.h (module 'ndnSIM'): uint32_t ns3::ndn::L3Protocol::AddFace(ns3::Ptr<ns3::ndn::Face> const & face) [member function]
5497 cls.add_method('AddFace',
5498 'uint32_t',
5499 [param('ns3::Ptr< ns3::ndn::Face > const &', 'face')],
5500 is_virtual=True)
5501 ## ndn-l3-protocol.h (module 'ndnSIM'): uint32_t ns3::ndn::L3Protocol::GetNFaces() const [member function]
5502 cls.add_method('GetNFaces',
5503 'uint32_t',
5504 [],
5505 is_const=True, is_virtual=True)
5506 ## ndn-l3-protocol.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::Face> ns3::ndn::L3Protocol::GetFace(uint32_t face) const [member function]
5507 cls.add_method('GetFace',
5508 'ns3::Ptr< ns3::ndn::Face >',
5509 [param('uint32_t', 'face')],
5510 is_const=True, is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005511 ## ndn-l3-protocol.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::Face> ns3::ndn::L3Protocol::GetFaceById(uint32_t face) const [member function]
5512 cls.add_method('GetFaceById',
5513 'ns3::Ptr< ns3::ndn::Face >',
5514 [param('uint32_t', 'face')],
5515 is_const=True, is_virtual=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005516 ## ndn-l3-protocol.h (module 'ndnSIM'): void ns3::ndn::L3Protocol::RemoveFace(ns3::Ptr<ns3::ndn::Face> face) [member function]
5517 cls.add_method('RemoveFace',
5518 'void',
5519 [param('ns3::Ptr< ns3::ndn::Face >', 'face')],
5520 is_virtual=True)
5521 ## ndn-l3-protocol.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::Face> ns3::ndn::L3Protocol::GetFaceByNetDevice(ns3::Ptr<ns3::NetDevice> netDevice) const [member function]
5522 cls.add_method('GetFaceByNetDevice',
5523 'ns3::Ptr< ns3::ndn::Face >',
5524 [param('ns3::Ptr< ns3::NetDevice >', 'netDevice')],
5525 is_const=True, is_virtual=True)
5526 ## ndn-l3-protocol.h (module 'ndnSIM'): void ns3::ndn::L3Protocol::DoDispose() [member function]
5527 cls.add_method('DoDispose',
5528 'void',
5529 [],
5530 visibility='protected', is_virtual=True)
5531 ## ndn-l3-protocol.h (module 'ndnSIM'): void ns3::ndn::L3Protocol::NotifyNewAggregate() [member function]
5532 cls.add_method('NotifyNewAggregate',
5533 'void',
5534 [],
5535 visibility='protected', is_virtual=True)
5536 return
5537
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005538def register_Ns3NdnLimits_methods(root_module, cls):
5539 ## ndn-limits.h (module 'ndnSIM'): ns3::ndn::Limits::Limits(ns3::ndn::Limits const & arg0) [copy constructor]
5540 cls.add_constructor([param('ns3::ndn::Limits const &', 'arg0')])
5541 ## ndn-limits.h (module 'ndnSIM'): ns3::ndn::Limits::Limits() [constructor]
5542 cls.add_constructor([])
Alexander Afanasyev7e4235a2012-10-31 16:58:44 -07005543 ## ndn-limits.h (module 'ndnSIM'): void ns3::ndn::Limits::BorrowLimit() [member function]
5544 cls.add_method('BorrowLimit',
5545 'void',
5546 [],
5547 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyevf5c07742012-10-31 13:13:05 -07005548 ## ndn-limits.h (module 'ndnSIM'): double ns3::ndn::Limits::GetCurrentLimit() const [member function]
5549 cls.add_method('GetCurrentLimit',
5550 'double',
5551 [],
Alexander Afanasyev7e4235a2012-10-31 16:58:44 -07005552 is_pure_virtual=True, is_const=True, is_virtual=True)
Alexander Afanasyeva8f5d882012-11-09 14:22:48 -08005553 ## ndn-limits.h (module 'ndnSIM'): double ns3::ndn::Limits::GetCurrentLimitRate() const [member function]
5554 cls.add_method('GetCurrentLimitRate',
5555 'double',
5556 [],
5557 is_pure_virtual=True, is_const=True, is_virtual=True)
5558 ## ndn-limits.h (module 'ndnSIM'): double ns3::ndn::Limits::GetLinkDelay() const [member function]
5559 cls.add_method('GetLinkDelay',
5560 'double',
5561 [],
5562 is_const=True, is_virtual=True)
Alexander Afanasyev7e4235a2012-10-31 16:58:44 -07005563 ## ndn-limits.h (module 'ndnSIM'): double ns3::ndn::Limits::GetMaxDelay() const [member function]
5564 cls.add_method('GetMaxDelay',
5565 'double',
5566 [],
5567 is_const=True, is_virtual=True)
Alexander Afanasyeva8f5d882012-11-09 14:22:48 -08005568 ## ndn-limits.h (module 'ndnSIM'): double ns3::ndn::Limits::GetMaxLimit() const [member function]
5569 cls.add_method('GetMaxLimit',
5570 'double',
5571 [],
5572 is_pure_virtual=True, is_const=True, is_virtual=True)
Alexander Afanasyev7e4235a2012-10-31 16:58:44 -07005573 ## ndn-limits.h (module 'ndnSIM'): double ns3::ndn::Limits::GetMaxRate() const [member function]
5574 cls.add_method('GetMaxRate',
Alexander Afanasyeva28ec562012-10-25 14:07:32 -07005575 'double',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005576 [],
Alexander Afanasyevf5c07742012-10-31 13:13:05 -07005577 is_const=True, is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005578 ## ndn-limits.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::Limits::GetTypeId() [member function]
5579 cls.add_method('GetTypeId',
5580 'ns3::TypeId',
5581 [],
5582 is_static=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005583 ## ndn-limits.h (module 'ndnSIM'): bool ns3::ndn::Limits::IsBelowLimit() [member function]
5584 cls.add_method('IsBelowLimit',
5585 'bool',
Alexander Afanasyevf5c07742012-10-31 13:13:05 -07005586 [],
5587 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005588 ## ndn-limits.h (module 'ndnSIM'): bool ns3::ndn::Limits::IsEnabled() const [member function]
5589 cls.add_method('IsEnabled',
5590 'bool',
5591 [],
Alexander Afanasyevf5c07742012-10-31 13:13:05 -07005592 is_const=True, is_virtual=True)
Alexander Afanasyeva8f5d882012-11-09 14:22:48 -08005593 ## 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]
5594 cls.add_method('RegisterAvailableSlotCallback',
5595 'void',
5596 [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 -07005597 ## ndn-limits.h (module 'ndnSIM'): void ns3::ndn::Limits::ReturnLimit() [member function]
5598 cls.add_method('ReturnLimit',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005599 'void',
Alexander Afanasyev7e4235a2012-10-31 16:58:44 -07005600 [],
5601 is_pure_virtual=True, is_virtual=True)
5602 ## ndn-limits.h (module 'ndnSIM'): void ns3::ndn::Limits::SetLimits(double rate, double delay) [member function]
5603 cls.add_method('SetLimits',
5604 'void',
5605 [param('double', 'rate'), param('double', 'delay')],
Alexander Afanasyevf5c07742012-10-31 13:13:05 -07005606 is_virtual=True)
Alexander Afanasyeva8f5d882012-11-09 14:22:48 -08005607 ## ndn-limits.h (module 'ndnSIM'): void ns3::ndn::Limits::SetLinkDelay(double delay) [member function]
5608 cls.add_method('SetLinkDelay',
5609 'void',
5610 [param('double', 'delay')],
5611 is_virtual=True)
Alexander Afanasyeva28ec562012-10-25 14:07:32 -07005612 ## ndn-limits.h (module 'ndnSIM'): void ns3::ndn::Limits::UpdateCurrentLimit(double limit) [member function]
5613 cls.add_method('UpdateCurrentLimit',
5614 'void',
Alexander Afanasyev7e4235a2012-10-31 16:58:44 -07005615 [param('double', 'limit')],
5616 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyeva8f5d882012-11-09 14:22:48 -08005617 ## ndn-limits.h (module 'ndnSIM'): void ns3::ndn::Limits::FireAvailableSlotCallback() [member function]
5618 cls.add_method('FireAvailableSlotCallback',
5619 'void',
5620 [],
5621 visibility='protected')
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005622 return
5623
Alexander Afanasyev32c07562013-02-01 12:58:43 -08005624def register_Ns3NdnName_methods(root_module, cls):
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005625 cls.add_output_stream_operator()
5626 cls.add_binary_comparison_operator('<')
5627 cls.add_binary_comparison_operator('==')
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08005628 ## ndn-name.h (module 'ndnSIM'): ns3::ndn::Name::Name(ns3::ndn::Name const & arg0) [copy constructor]
Alexander Afanasyev32c07562013-02-01 12:58:43 -08005629 cls.add_constructor([param('ns3::ndn::Name const &', 'arg0')])
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08005630 ## ndn-name.h (module 'ndnSIM'): ns3::ndn::Name::Name() [constructor]
Alexander Afanasyev32c07562013-02-01 12:58:43 -08005631 cls.add_constructor([])
Alexander Afanasyeve5a8b5a2013-03-15 15:15:26 -07005632 ## ndn-name.h (module 'ndnSIM'): ns3::ndn::Name::Name(std::list<boost::reference_wrapper<const std::basic_string<char, std::char_traits<char>, std::allocator<char> > >,std::allocator<boost::reference_wrapper<const std::basic_string<char, std::char_traits<char>, std::allocator<char> > > > > const & components) [constructor]
Alexander Afanasyev32c07562013-02-01 12:58:43 -08005633 cls.add_constructor([param('std::list< boost::reference_wrapper< std::string const > > const &', 'components')])
Alexander Afanasyev298c8442013-04-14 15:18:45 -07005634 ## ndn-name.h (module 'ndnSIM'): ns3::ndn::Name::Name(std::list<std::string, std::allocator<std::string> > const & components) [constructor]
5635 cls.add_constructor([param('std::list< std::string > const &', 'components')])
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08005636 ## ndn-name.h (module 'ndnSIM'): ns3::ndn::Name::Name(std::string const & prefix) [constructor]
Alexander Afanasyev32c07562013-02-01 12:58:43 -08005637 cls.add_constructor([param('std::string const &', 'prefix')])
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08005638 ## ndn-name.h (module 'ndnSIM'): ns3::ndn::Name::Name(char const * prefix) [constructor]
Alexander Afanasyev32c07562013-02-01 12:58:43 -08005639 cls.add_constructor([param('char const *', 'prefix')])
Alexander Afanasyeva4e74282013-07-11 15:23:20 -07005640 ## ndn-name.h (module 'ndnSIM'): ns3::ndn::Name & ns3::ndn::Name::Append(ns3::ndn::Name const & otherName) [member function]
5641 cls.add_method('Append',
5642 'ns3::ndn::Name &',
5643 [param('ns3::ndn::Name const &', 'otherName')])
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08005644 ## 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 -08005645 cls.add_method('GetComponents',
5646 'std::list< std::string > const &',
5647 [],
5648 is_const=True)
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08005649 ## ndn-name.h (module 'ndnSIM'): std::string ns3::ndn::Name::GetLastComponent() const [member function]
Alexander Afanasyev32c07562013-02-01 12:58:43 -08005650 cls.add_method('GetLastComponent',
5651 'std::string',
5652 [],
5653 is_const=True)
Alexander Afanasyeve5a8b5a2013-03-15 15:15:26 -07005654 ## 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 -08005655 cls.add_method('GetSubComponents',
5656 'std::list< boost::reference_wrapper< std::string const > >',
5657 [param('size_t', 'num')],
5658 is_const=True)
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08005659 ## ndn-name.h (module 'ndnSIM'): void ns3::ndn::Name::Print(std::ostream & os) const [member function]
Alexander Afanasyev32c07562013-02-01 12:58:43 -08005660 cls.add_method('Print',
5661 'void',
5662 [param('std::ostream &', 'os')],
5663 is_const=True)
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08005664 ## ndn-name.h (module 'ndnSIM'): std::_List_iterator<std::string> ns3::ndn::Name::begin() [member function]
Alexander Afanasyev32c07562013-02-01 12:58:43 -08005665 cls.add_method('begin',
5666 'std::_List_iterator< std::string >',
5667 [])
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08005668 ## 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 -08005669 cls.add_method('begin',
5670 'std::_List_const_iterator< std::string >',
5671 [],
5672 is_const=True)
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08005673 ## 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 -08005674 cls.add_method('cut',
5675 'ns3::ndn::Name',
5676 [param('size_t', 'minusComponents')],
5677 is_const=True)
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08005678 ## ndn-name.h (module 'ndnSIM'): std::_List_iterator<std::string> ns3::ndn::Name::end() [member function]
Alexander Afanasyev32c07562013-02-01 12:58:43 -08005679 cls.add_method('end',
5680 'std::_List_iterator< std::string >',
5681 [])
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08005682 ## 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 -08005683 cls.add_method('end',
5684 'std::_List_const_iterator< std::string >',
5685 [],
5686 is_const=True)
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08005687 ## ndn-name.h (module 'ndnSIM'): size_t ns3::ndn::Name::size() const [member function]
Alexander Afanasyev32c07562013-02-01 12:58:43 -08005688 cls.add_method('size',
5689 'size_t',
5690 [],
5691 is_const=True)
5692 return
5693
5694def register_Ns3NdnNameChecker_methods(root_module, cls):
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08005695 ## ndn-name.h (module 'ndnSIM'): ns3::ndn::NameChecker::NameChecker() [constructor]
Alexander Afanasyev32c07562013-02-01 12:58:43 -08005696 cls.add_constructor([])
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08005697 ## ndn-name.h (module 'ndnSIM'): ns3::ndn::NameChecker::NameChecker(ns3::ndn::NameChecker const & arg0) [copy constructor]
Alexander Afanasyev32c07562013-02-01 12:58:43 -08005698 cls.add_constructor([param('ns3::ndn::NameChecker const &', 'arg0')])
5699 return
5700
Alexander Afanasyev32c07562013-02-01 12:58:43 -08005701def register_Ns3NdnNameValue_methods(root_module, cls):
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08005702 ## ndn-name.h (module 'ndnSIM'): ns3::ndn::NameValue::NameValue() [constructor]
Alexander Afanasyev32c07562013-02-01 12:58:43 -08005703 cls.add_constructor([])
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08005704 ## ndn-name.h (module 'ndnSIM'): ns3::ndn::NameValue::NameValue(ns3::ndn::NameValue const & arg0) [copy constructor]
Alexander Afanasyev32c07562013-02-01 12:58:43 -08005705 cls.add_constructor([param('ns3::ndn::NameValue const &', 'arg0')])
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08005706 ## ndn-name.h (module 'ndnSIM'): ns3::ndn::NameValue::NameValue(ns3::ndn::Name const & value) [constructor]
Alexander Afanasyev32c07562013-02-01 12:58:43 -08005707 cls.add_constructor([param('ns3::ndn::Name const &', 'value')])
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08005708 ## ndn-name.h (module 'ndnSIM'): ns3::Ptr<ns3::AttributeValue> ns3::ndn::NameValue::Copy() const [member function]
Alexander Afanasyev32c07562013-02-01 12:58:43 -08005709 cls.add_method('Copy',
5710 'ns3::Ptr< ns3::AttributeValue >',
5711 [],
5712 is_const=True, is_virtual=True)
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08005713 ## 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 -08005714 cls.add_method('DeserializeFromString',
5715 'bool',
5716 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
5717 is_virtual=True)
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08005718 ## ndn-name.h (module 'ndnSIM'): ns3::ndn::Name ns3::ndn::NameValue::Get() const [member function]
Alexander Afanasyev32c07562013-02-01 12:58:43 -08005719 cls.add_method('Get',
5720 'ns3::ndn::Name',
5721 [],
5722 is_const=True)
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08005723 ## 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 -08005724 cls.add_method('SerializeToString',
5725 'std::string',
5726 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
5727 is_const=True, is_virtual=True)
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08005728 ## ndn-name.h (module 'ndnSIM'): void ns3::ndn::NameValue::Set(ns3::ndn::Name const & value) [member function]
Alexander Afanasyev32c07562013-02-01 12:58:43 -08005729 cls.add_method('Set',
5730 'void',
5731 [param('ns3::ndn::Name const &', 'value')])
5732 return
5733
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005734def register_Ns3NdnNetDeviceFace_methods(root_module, cls):
5735 ## ndn-net-device-face.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::NetDeviceFace::GetTypeId() [member function]
5736 cls.add_method('GetTypeId',
5737 'ns3::TypeId',
5738 [],
5739 is_static=True)
5740 ## ndn-net-device-face.h (module 'ndnSIM'): ns3::ndn::NetDeviceFace::NetDeviceFace(ns3::Ptr<ns3::Node> node, ns3::Ptr<ns3::NetDevice> const & netDevice) [constructor]
5741 cls.add_constructor([param('ns3::Ptr< ns3::Node >', 'node'), param('ns3::Ptr< ns3::NetDevice > const &', 'netDevice')])
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005742 ## 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]
5743 cls.add_method('RegisterProtocolHandlers',
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005744 'void',
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005745 [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')],
5746 is_virtual=True)
5747 ## ndn-net-device-face.h (module 'ndnSIM'): void ns3::ndn::NetDeviceFace::UnRegisterProtocolHandlers() [member function]
5748 cls.add_method('UnRegisterProtocolHandlers',
5749 'void',
5750 [],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005751 is_virtual=True)
5752 ## ndn-net-device-face.h (module 'ndnSIM'): std::ostream & ns3::ndn::NetDeviceFace::Print(std::ostream & os) const [member function]
5753 cls.add_method('Print',
5754 'std::ostream &',
5755 [param('std::ostream &', 'os')],
5756 is_const=True, is_virtual=True)
5757 ## ndn-net-device-face.h (module 'ndnSIM'): ns3::Ptr<ns3::NetDevice> ns3::ndn::NetDeviceFace::GetNetDevice() const [member function]
5758 cls.add_method('GetNetDevice',
5759 'ns3::Ptr< ns3::NetDevice >',
5760 [],
5761 is_const=True)
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005762 ## ndn-net-device-face.h (module 'ndnSIM'): bool ns3::ndn::NetDeviceFace::Send(ns3::Ptr<ns3::Packet> p) [member function]
5763 cls.add_method('Send',
Alexander Afanasyev1c0248b2012-07-24 15:59:50 -07005764 'bool',
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07005765 [param('ns3::Ptr< ns3::Packet >', 'p')],
5766 visibility='protected', is_virtual=True)
5767 return
5768
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005769def register_Ns3NdnPit_methods(root_module, cls):
5770 cls.add_output_stream_operator()
5771 ## ndn-pit.h (module 'ndnSIM'): ns3::ndn::Pit::Pit(ns3::ndn::Pit const & arg0) [copy constructor]
5772 cls.add_constructor([param('ns3::ndn::Pit const &', 'arg0')])
5773 ## ndn-pit.h (module 'ndnSIM'): ns3::ndn::Pit::Pit() [constructor]
5774 cls.add_constructor([])
5775 ## ndn-pit.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::pit::Entry> ns3::ndn::Pit::Begin() [member function]
5776 cls.add_method('Begin',
5777 'ns3::Ptr< ns3::ndn::pit::Entry >',
5778 [],
5779 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyeveae83ee2013-03-15 15:01:10 -07005780 ## 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 -07005781 cls.add_method('Create',
5782 'ns3::Ptr< ns3::ndn::pit::Entry >',
Alexander Afanasyeveae83ee2013-03-15 15:01:10 -07005783 [param('ns3::Ptr< ns3::ndn::Interest const >', 'header')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005784 is_pure_virtual=True, is_virtual=True)
5785 ## ndn-pit.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::pit::Entry> ns3::ndn::Pit::End() [member function]
5786 cls.add_method('End',
5787 'ns3::Ptr< ns3::ndn::pit::Entry >',
5788 [],
5789 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyeve5a8b5a2013-03-15 15:15:26 -07005790 ## ndn-pit.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::pit::Entry> ns3::ndn::Pit::Find(ns3::ndn::Name const & prefix) [member function]
5791 cls.add_method('Find',
5792 'ns3::Ptr< ns3::ndn::pit::Entry >',
5793 [param('ns3::ndn::Name const &', 'prefix')],
5794 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyev5b8d61b2013-05-03 10:23:21 -07005795 ## ndn-pit.h (module 'ndnSIM'): ns3::Time const & ns3::ndn::Pit::GetMaxPitEntryLifetime() const [member function]
5796 cls.add_method('GetMaxPitEntryLifetime',
5797 'ns3::Time const &',
5798 [],
5799 is_const=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005800 ## ndn-pit.h (module 'ndnSIM'): static ns3::Ptr<ns3::ndn::Pit> ns3::ndn::Pit::GetPit(ns3::Ptr<ns3::Object> node) [member function]
5801 cls.add_method('GetPit',
5802 'ns3::Ptr< ns3::ndn::Pit >',
5803 [param('ns3::Ptr< ns3::Object >', 'node')],
5804 is_static=True)
5805 ## ndn-pit.h (module 'ndnSIM'): uint32_t ns3::ndn::Pit::GetSize() const [member function]
5806 cls.add_method('GetSize',
5807 'uint32_t',
5808 [],
5809 is_pure_virtual=True, is_const=True, is_virtual=True)
5810 ## ndn-pit.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::Pit::GetTypeId() [member function]
5811 cls.add_method('GetTypeId',
5812 'ns3::TypeId',
5813 [],
5814 is_static=True)
Alexander Afanasyeveae83ee2013-03-15 15:01:10 -07005815 ## 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 -07005816 cls.add_method('Lookup',
5817 'ns3::Ptr< ns3::ndn::pit::Entry >',
Alexander Afanasyeveae83ee2013-03-15 15:01:10 -07005818 [param('ns3::ndn::ContentObject const &', 'header')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005819 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyeveae83ee2013-03-15 15:01:10 -07005820 ## 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 -07005821 cls.add_method('Lookup',
5822 'ns3::Ptr< ns3::ndn::pit::Entry >',
Alexander Afanasyeveae83ee2013-03-15 15:01:10 -07005823 [param('ns3::ndn::Interest const &', 'header')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005824 is_pure_virtual=True, is_virtual=True)
5825 ## ndn-pit.h (module 'ndnSIM'): void ns3::ndn::Pit::MarkErased(ns3::Ptr<ns3::ndn::pit::Entry> entry) [member function]
5826 cls.add_method('MarkErased',
5827 'void',
5828 [param('ns3::Ptr< ns3::ndn::pit::Entry >', 'entry')],
5829 is_pure_virtual=True, is_virtual=True)
5830 ## ndn-pit.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::pit::Entry> ns3::ndn::Pit::Next(ns3::Ptr<ns3::ndn::pit::Entry> arg0) [member function]
5831 cls.add_method('Next',
5832 'ns3::Ptr< ns3::ndn::pit::Entry >',
5833 [param('ns3::Ptr< ns3::ndn::pit::Entry >', 'arg0')],
5834 is_pure_virtual=True, is_virtual=True)
5835 ## ndn-pit.h (module 'ndnSIM'): void ns3::ndn::Pit::Print(std::ostream & os) const [member function]
5836 cls.add_method('Print',
5837 'void',
5838 [param('std::ostream &', 'os')],
5839 is_pure_virtual=True, is_const=True, is_virtual=True)
Alexander Afanasyev5b8d61b2013-05-03 10:23:21 -07005840 ## ndn-pit.h (module 'ndnSIM'): void ns3::ndn::Pit::SetMaxPitEntryLifetime(ns3::Time const & maxLifetime) [member function]
5841 cls.add_method('SetMaxPitEntryLifetime',
5842 'void',
5843 [param('ns3::Time const &', 'maxLifetime')])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005844 return
5845
Alexander Afanasyev0e4ae8e2013-03-12 15:59:18 -07005846def register_Ns3NdnRttEstimator_methods(root_module, cls):
5847 ## ndn-rtt-estimator.h (module 'ndnSIM'): ns3::ndn::RttEstimator::RttEstimator() [constructor]
5848 cls.add_constructor([])
5849 ## ndn-rtt-estimator.h (module 'ndnSIM'): ns3::ndn::RttEstimator::RttEstimator(ns3::ndn::RttEstimator const & arg0) [copy constructor]
5850 cls.add_constructor([param('ns3::ndn::RttEstimator const &', 'arg0')])
5851 ## ndn-rtt-estimator.h (module 'ndnSIM'): ns3::Time ns3::ndn::RttEstimator::AckSeq(ns3::SequenceNumber32 ackSeq) [member function]
5852 cls.add_method('AckSeq',
5853 'ns3::Time',
5854 [param('ns3::SequenceNumber32', 'ackSeq')],
5855 is_virtual=True)
5856 ## ndn-rtt-estimator.h (module 'ndnSIM'): void ns3::ndn::RttEstimator::ClearSent() [member function]
5857 cls.add_method('ClearSent',
5858 'void',
5859 [],
5860 is_virtual=True)
5861 ## ndn-rtt-estimator.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::RttEstimator> ns3::ndn::RttEstimator::Copy() const [member function]
5862 cls.add_method('Copy',
5863 'ns3::Ptr< ns3::ndn::RttEstimator >',
5864 [],
5865 is_pure_virtual=True, is_const=True, is_virtual=True)
5866 ## ndn-rtt-estimator.h (module 'ndnSIM'): ns3::Time ns3::ndn::RttEstimator::GetCurrentEstimate() const [member function]
5867 cls.add_method('GetCurrentEstimate',
5868 'ns3::Time',
5869 [],
5870 is_const=True)
Alexander Afanasyev858d5312013-07-10 18:50:18 -07005871 ## ndn-rtt-estimator.h (module 'ndnSIM'): ns3::TypeId ns3::ndn::RttEstimator::GetInstanceTypeId() const [member function]
5872 cls.add_method('GetInstanceTypeId',
5873 'ns3::TypeId',
5874 [],
5875 is_const=True, is_virtual=True)
Alexander Afanasyev0e4ae8e2013-03-12 15:59:18 -07005876 ## ndn-rtt-estimator.h (module 'ndnSIM'): ns3::Time ns3::ndn::RttEstimator::GetMaxRto() const [member function]
5877 cls.add_method('GetMaxRto',
5878 'ns3::Time',
5879 [],
5880 is_const=True)
5881 ## ndn-rtt-estimator.h (module 'ndnSIM'): ns3::Time ns3::ndn::RttEstimator::GetMinRto() const [member function]
5882 cls.add_method('GetMinRto',
5883 'ns3::Time',
5884 [],
5885 is_const=True)
5886 ## ndn-rtt-estimator.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::RttEstimator::GetTypeId() [member function]
5887 cls.add_method('GetTypeId',
5888 'ns3::TypeId',
5889 [],
5890 is_static=True)
5891 ## ndn-rtt-estimator.h (module 'ndnSIM'): void ns3::ndn::RttEstimator::IncreaseMultiplier() [member function]
5892 cls.add_method('IncreaseMultiplier',
5893 'void',
5894 [],
5895 is_virtual=True)
5896 ## ndn-rtt-estimator.h (module 'ndnSIM'): void ns3::ndn::RttEstimator::Measurement(ns3::Time t) [member function]
5897 cls.add_method('Measurement',
5898 'void',
5899 [param('ns3::Time', 't')],
5900 is_pure_virtual=True, is_virtual=True)
5901 ## ndn-rtt-estimator.h (module 'ndnSIM'): void ns3::ndn::RttEstimator::Reset() [member function]
5902 cls.add_method('Reset',
5903 'void',
5904 [],
5905 is_virtual=True)
5906 ## ndn-rtt-estimator.h (module 'ndnSIM'): void ns3::ndn::RttEstimator::ResetMultiplier() [member function]
5907 cls.add_method('ResetMultiplier',
5908 'void',
5909 [],
5910 is_virtual=True)
5911 ## ndn-rtt-estimator.h (module 'ndnSIM'): ns3::Time ns3::ndn::RttEstimator::RetransmitTimeout() [member function]
5912 cls.add_method('RetransmitTimeout',
5913 'ns3::Time',
5914 [],
5915 is_pure_virtual=True, is_virtual=True)
5916 ## ndn-rtt-estimator.h (module 'ndnSIM'): void ns3::ndn::RttEstimator::SentSeq(ns3::SequenceNumber32 seq, uint32_t size) [member function]
5917 cls.add_method('SentSeq',
5918 'void',
5919 [param('ns3::SequenceNumber32', 'seq'), param('uint32_t', 'size')],
5920 is_virtual=True)
5921 ## ndn-rtt-estimator.h (module 'ndnSIM'): void ns3::ndn::RttEstimator::SetCurrentEstimate(ns3::Time estimate) [member function]
5922 cls.add_method('SetCurrentEstimate',
5923 'void',
5924 [param('ns3::Time', 'estimate')])
5925 ## ndn-rtt-estimator.h (module 'ndnSIM'): void ns3::ndn::RttEstimator::SetMaxRto(ns3::Time maxRto) [member function]
5926 cls.add_method('SetMaxRto',
5927 'void',
5928 [param('ns3::Time', 'maxRto')])
5929 ## ndn-rtt-estimator.h (module 'ndnSIM'): void ns3::ndn::RttEstimator::SetMinRto(ns3::Time minRto) [member function]
5930 cls.add_method('SetMinRto',
5931 'void',
5932 [param('ns3::Time', 'minRto')])
5933 return
5934
5935def register_Ns3NdnRttHistory_methods(root_module, cls):
5936 ## ndn-rtt-estimator.h (module 'ndnSIM'): ns3::ndn::RttHistory::RttHistory(ns3::SequenceNumber32 s, uint32_t c, ns3::Time t) [constructor]
5937 cls.add_constructor([param('ns3::SequenceNumber32', 's'), param('uint32_t', 'c'), param('ns3::Time', 't')])
5938 ## ndn-rtt-estimator.h (module 'ndnSIM'): ns3::ndn::RttHistory::RttHistory(ns3::ndn::RttHistory const & h) [copy constructor]
5939 cls.add_constructor([param('ns3::ndn::RttHistory const &', 'h')])
5940 ## ndn-rtt-estimator.h (module 'ndnSIM'): ns3::ndn::RttHistory::count [variable]
5941 cls.add_instance_attribute('count', 'uint32_t', is_const=False)
5942 ## ndn-rtt-estimator.h (module 'ndnSIM'): ns3::ndn::RttHistory::retx [variable]
5943 cls.add_instance_attribute('retx', 'bool', is_const=False)
5944 ## ndn-rtt-estimator.h (module 'ndnSIM'): ns3::ndn::RttHistory::seq [variable]
5945 cls.add_instance_attribute('seq', 'ns3::SequenceNumber32', is_const=False)
5946 ## ndn-rtt-estimator.h (module 'ndnSIM'): ns3::ndn::RttHistory::time [variable]
5947 cls.add_instance_attribute('time', 'ns3::Time', is_const=False)
5948 return
5949
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005950def register_Ns3NdnStackHelper_methods(root_module, cls):
5951 ## ndn-stack-helper.h (module 'ndnSIM'): ns3::ndn::StackHelper::StackHelper() [constructor]
5952 cls.add_constructor([])
5953 ## 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]
5954 cls.add_method('SetStackAttributes',
5955 'void',
5956 [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='""')])
5957 ## 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]
5958 cls.add_method('SetForwardingStrategy',
5959 'void',
5960 [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='""')])
5961 ## 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]
5962 cls.add_method('SetContentStore',
5963 'void',
5964 [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='""')])
5965 ## 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]
5966 cls.add_method('SetPit',
5967 'void',
5968 [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='""')])
5969 ## 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]
5970 cls.add_method('SetFib',
5971 'void',
5972 [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 -08005973 ## 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 -08005974 cls.add_method('AddNetDeviceFaceCreateCallback',
5975 'void',
Alexander Afanasyevc17e4bd2013-02-17 14:31:56 -08005976 [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 -07005977 ## 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]
5978 cls.add_method('UpdateNetDeviceFaceCreateCallback',
5979 'void',
5980 [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')])
5981 ## 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]
5982 cls.add_method('RemoveNetDeviceFaceCreateCallback',
5983 'void',
5984 [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 -07005985 ## 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]
5986 cls.add_method('EnableLimits',
5987 'void',
5988 [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 -08005989 ## 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 -07005990 cls.add_method('Install',
5991 'ns3::Ptr< ns3::ndn::FaceContainer >',
Alexander Afanasyev67f4a4a2012-11-24 17:18:17 -08005992 [param('std::string const &', 'nodeName')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005993 is_const=True)
5994 ## ndn-stack-helper.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::FaceContainer> ns3::ndn::StackHelper::Install(ns3::Ptr<ns3::Node> node) const [member function]
5995 cls.add_method('Install',
5996 'ns3::Ptr< ns3::ndn::FaceContainer >',
5997 [param('ns3::Ptr< ns3::Node >', 'node')],
5998 is_const=True)
Alexander Afanasyev67f4a4a2012-11-24 17:18:17 -08005999 ## 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 -07006000 cls.add_method('Install',
6001 'ns3::Ptr< ns3::ndn::FaceContainer >',
Alexander Afanasyev67f4a4a2012-11-24 17:18:17 -08006002 [param('ns3::NodeContainer const &', 'c')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006003 is_const=True)
6004 ## ndn-stack-helper.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::FaceContainer> ns3::ndn::StackHelper::InstallAll() const [member function]
6005 cls.add_method('InstallAll',
6006 'ns3::Ptr< ns3::ndn::FaceContainer >',
6007 [],
6008 is_const=True)
Alexander Afanasyev67f4a4a2012-11-24 17:18:17 -08006009 ## 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 -07006010 cls.add_method('AddRoute',
6011 'void',
Alexander Afanasyev67f4a4a2012-11-24 17:18:17 -08006012 [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 -07006013 is_static=True)
Alexander Afanasyev67f4a4a2012-11-24 17:18:17 -08006014 ## 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 -07006015 cls.add_method('AddRoute',
6016 'void',
Alexander Afanasyev67f4a4a2012-11-24 17:18:17 -08006017 [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 -07006018 is_static=True)
Alexander Afanasyev67f4a4a2012-11-24 17:18:17 -08006019 ## 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 -07006020 cls.add_method('AddRoute',
6021 'void',
Alexander Afanasyev67f4a4a2012-11-24 17:18:17 -08006022 [param('ns3::Ptr< ns3::Node >', 'node'), param('std::string const &', 'prefix'), param('ns3::Ptr< ns3::ndn::Face >', 'face'), param('int32_t', 'metric')],
6023 is_static=True)
6024 ## 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]
6025 cls.add_method('AddRoute',
6026 'void',
6027 [param('ns3::Ptr< ns3::Node >', 'node'), param('std::string const &', 'prefix'), param('ns3::Ptr< ns3::Node >', 'otherNode'), param('int32_t', 'metric')],
6028 is_static=True)
6029 ## 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]
6030 cls.add_method('AddRoute',
6031 'void',
6032 [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 -07006033 is_static=True)
6034 ## ndn-stack-helper.h (module 'ndnSIM'): void ns3::ndn::StackHelper::SetDefaultRoutes(bool needSet) [member function]
6035 cls.add_method('SetDefaultRoutes',
6036 'void',
6037 [param('bool', 'needSet')])
6038 return
6039
6040def register_Ns3NdnUnknownHeaderException_methods(root_module, cls):
6041 ## ndn-header-helper.h (module 'ndnSIM'): ns3::ndn::UnknownHeaderException::UnknownHeaderException() [constructor]
6042 cls.add_constructor([])
6043 ## ndn-header-helper.h (module 'ndnSIM'): ns3::ndn::UnknownHeaderException::UnknownHeaderException(ns3::ndn::UnknownHeaderException const & arg0) [copy constructor]
6044 cls.add_constructor([param('ns3::ndn::UnknownHeaderException const &', 'arg0')])
6045 return
6046
Alexander Afanasyeva4e74282013-07-11 15:23:20 -07006047def register_Ns3NdnApiFace_methods(root_module, cls):
6048 ## ndn-api-face.h (module 'ndnSIM'): ns3::ndn::ApiFace::ApiFace(ns3::Ptr<ns3::Node> node) [constructor]
6049 cls.add_constructor([param('ns3::Ptr< ns3::Node >', 'node')])
6050 ## ndn-api-face.h (module 'ndnSIM'): void ns3::ndn::ApiFace::Shutdown() [member function]
6051 cls.add_method('Shutdown',
6052 'void',
6053 [])
6054 ## ndn-api-face.h (module 'ndnSIM'): void ns3::ndn::ApiFace::ExpressInterest(ns3::Ptr<ns3::ndn::Interest> interest, ns3::Callback<void,ns3::Ptr<const ns3::ndn::Interest>,ns3::Ptr<const ns3::ndn::ContentObject>,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty> onData, ns3::Callback<void,ns3::Ptr<const ns3::ndn::Interest>,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty> onTimeout) [member function]
6055 cls.add_method('ExpressInterest',
6056 'void',
6057 [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')])
6058 ## ndn-api-face.h (module 'ndnSIM'): void ns3::ndn::ApiFace::SetInterestFilter(ns3::Ptr<ns3::ndn::Name const> prefix, ns3::Callback<void,ns3::Ptr<const ns3::ndn::Name>,ns3::Ptr<const ns3::ndn::Interest>,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty> onInterest) [member function]
6059 cls.add_method('SetInterestFilter',
6060 'void',
6061 [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')])
6062 ## ndn-api-face.h (module 'ndnSIM'): void ns3::ndn::ApiFace::ClearInterestFilter(ns3::Ptr<ns3::ndn::Name const> prefix) [member function]
6063 cls.add_method('ClearInterestFilter',
6064 'void',
6065 [param('ns3::Ptr< ns3::ndn::Name const >', 'prefix')])
6066 ## ndn-api-face.h (module 'ndnSIM'): void ns3::ndn::ApiFace::Put(ns3::Ptr<ns3::ndn::ContentObject> data) [member function]
6067 cls.add_method('Put',
6068 'void',
6069 [param('ns3::Ptr< ns3::ndn::ContentObject >', 'data')])
6070 ## ndn-api-face.h (module 'ndnSIM'): bool ns3::ndn::ApiFace::SendInterest(ns3::Ptr<ns3::ndn::Interest const> interest) [member function]
6071 cls.add_method('SendInterest',
6072 'bool',
6073 [param('ns3::Ptr< ns3::ndn::Interest const >', 'interest')],
6074 is_virtual=True)
6075 ## ndn-api-face.h (module 'ndnSIM'): bool ns3::ndn::ApiFace::SendData(ns3::Ptr<ns3::ndn::ContentObject const> data) [member function]
6076 cls.add_method('SendData',
6077 'bool',
6078 [param('ns3::Ptr< ns3::ndn::ContentObject const >', 'data')],
6079 is_virtual=True)
6080 ## ndn-api-face.h (module 'ndnSIM'): std::ostream & ns3::ndn::ApiFace::Print(std::ostream & os) const [member function]
6081 cls.add_method('Print',
6082 'std::ostream &',
6083 [param('std::ostream &', 'os')],
6084 is_const=True, is_virtual=True)
6085 return
6086
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006087def register_Ns3NdnAppFace_methods(root_module, cls):
6088 ## ndn-app-face.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::AppFace::GetTypeId() [member function]
6089 cls.add_method('GetTypeId',
6090 'ns3::TypeId',
6091 [],
6092 is_static=True)
6093 ## ndn-app-face.h (module 'ndnSIM'): ns3::ndn::AppFace::AppFace(ns3::Ptr<ns3::ndn::App> app) [constructor]
6094 cls.add_constructor([param('ns3::Ptr< ns3::ndn::App >', 'app')])
Alexander Afanasyev858d5312013-07-10 18:50:18 -07006095 ## ndn-app-face.h (module 'ndnSIM'): bool ns3::ndn::AppFace::SendInterest(ns3::Ptr<ns3::ndn::Interest const> interest) [member function]
6096 cls.add_method('SendInterest',
6097 'bool',
6098 [param('ns3::Ptr< ns3::ndn::Interest const >', 'interest')],
6099 is_virtual=True)
6100 ## ndn-app-face.h (module 'ndnSIM'): bool ns3::ndn::AppFace::SendData(ns3::Ptr<ns3::ndn::ContentObject const> data) [member function]
6101 cls.add_method('SendData',
6102 'bool',
6103 [param('ns3::Ptr< ns3::ndn::ContentObject const >', 'data')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006104 is_virtual=True)
6105 ## ndn-app-face.h (module 'ndnSIM'): std::ostream & ns3::ndn::AppFace::Print(std::ostream & os) const [member function]
6106 cls.add_method('Print',
6107 'std::ostream &',
6108 [param('std::ostream &', 'os')],
6109 is_const=True, is_virtual=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006110 return
6111
6112def register_Ns3NdnCsEntry_methods(root_module, cls):
6113 ## ndn-content-store.h (module 'ndnSIM'): ns3::ndn::cs::Entry::Entry(ns3::ndn::cs::Entry const & arg0) [copy constructor]
6114 cls.add_constructor([param('ns3::ndn::cs::Entry const &', 'arg0')])
Alexander Afanasyev858d5312013-07-10 18:50:18 -07006115 ## 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]
6116 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 -07006117 ## ndn-content-store.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::ContentStore> ns3::ndn::cs::Entry::GetContentStore() [member function]
6118 cls.add_method('GetContentStore',
6119 'ns3::Ptr< ns3::ndn::ContentStore >',
6120 [])
Alexander Afanasyev858d5312013-07-10 18:50:18 -07006121 ## ndn-content-store.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::ContentObject const> ns3::ndn::cs::Entry::GetData() const [member function]
6122 cls.add_method('GetData',
Alexander Afanasyeveae83ee2013-03-15 15:01:10 -07006123 'ns3::Ptr< ns3::ndn::ContentObject const >',
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006124 [],
6125 is_const=True)
Alexander Afanasyevcfdc14f2013-03-15 14:38:44 -07006126 ## 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 -07006127 cls.add_method('GetName',
Alexander Afanasyevcfdc14f2013-03-15 14:38:44 -07006128 'ns3::ndn::Name const &',
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006129 [],
6130 is_const=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006131 return
6132
6133def register_Ns3NdnFibEntry_methods(root_module, cls):
6134 cls.add_output_stream_operator()
6135 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::Entry::Entry(ns3::ndn::fib::Entry const & arg0) [copy constructor]
6136 cls.add_constructor([param('ns3::ndn::fib::Entry const &', 'arg0')])
Alexander Afanasyev5b8d61b2013-05-03 10:23:21 -07006137 ## 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]
6138 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 -07006139 ## ndn-fib-entry.h (module 'ndnSIM'): void ns3::ndn::fib::Entry::AddOrUpdateRoutingMetric(ns3::Ptr<ns3::ndn::Face> face, int32_t metric) [member function]
6140 cls.add_method('AddOrUpdateRoutingMetric',
6141 'void',
6142 [param('ns3::Ptr< ns3::ndn::Face >', 'face'), param('int32_t', 'metric')])
6143 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::FaceMetric const & ns3::ndn::fib::Entry::FindBestCandidate(uint32_t skip=0) const [member function]
6144 cls.add_method('FindBestCandidate',
6145 'ns3::ndn::fib::FaceMetric const &',
6146 [param('uint32_t', 'skip', default_value='0')],
6147 is_const=True)
Alexander Afanasyev5b8d61b2013-05-03 10:23:21 -07006148 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::Fib> ns3::ndn::fib::Entry::GetFib() [member function]
6149 cls.add_method('GetFib',
6150 'ns3::Ptr< ns3::ndn::Fib >',
6151 [])
Alexander Afanasyevcfdc14f2013-03-15 14:38:44 -07006152 ## 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 -07006153 cls.add_method('GetPrefix',
Alexander Afanasyevcfdc14f2013-03-15 14:38:44 -07006154 'ns3::ndn::Name const &',
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006155 [],
6156 is_const=True)
6157 ## ndn-fib-entry.h (module 'ndnSIM'): void ns3::ndn::fib::Entry::Invalidate() [member function]
6158 cls.add_method('Invalidate',
6159 'void',
6160 [])
6161 ## ndn-fib-entry.h (module 'ndnSIM'): void ns3::ndn::fib::Entry::RemoveFace(ns3::Ptr<ns3::ndn::Face> const & face) [member function]
6162 cls.add_method('RemoveFace',
6163 'void',
6164 [param('ns3::Ptr< ns3::ndn::Face > const &', 'face')])
Alexander Afanasyev32c07562013-02-01 12:58:43 -08006165 ## ndn-fib-entry.h (module 'ndnSIM'): void ns3::ndn::fib::Entry::SetRealDelayToProducer(ns3::Ptr<ns3::ndn::Face> face, ns3::Time delay) [member function]
6166 cls.add_method('SetRealDelayToProducer',
6167 'void',
6168 [param('ns3::Ptr< ns3::ndn::Face >', 'face'), param('ns3::Time', 'delay')])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006169 ## ndn-fib-entry.h (module 'ndnSIM'): void ns3::ndn::fib::Entry::UpdateFaceRtt(ns3::Ptr<ns3::ndn::Face> face, ns3::Time const & sample) [member function]
6170 cls.add_method('UpdateFaceRtt',
6171 'void',
6172 [param('ns3::Ptr< ns3::ndn::Face >', 'face'), param('ns3::Time const &', 'sample')])
6173 ## 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]
6174 cls.add_method('UpdateStatus',
6175 'void',
6176 [param('ns3::Ptr< ns3::ndn::Face >', 'face'), param('ns3::ndn::fib::FaceMetric::Status', 'status')])
6177 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::Entry::m_faces [variable]
Alexander Afanasyev06dba7c2013-02-21 11:36:26 -08006178 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 -07006179 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::Entry::m_fib [variable]
6180 cls.add_instance_attribute('m_fib', 'ns3::Ptr< ns3::ndn::Fib >', is_const=False)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006181 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::Entry::m_needsProbing [variable]
6182 cls.add_instance_attribute('m_needsProbing', 'bool', is_const=False)
6183 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::Entry::m_prefix [variable]
Alexander Afanasyevcfdc14f2013-03-15 14:38:44 -07006184 cls.add_instance_attribute('m_prefix', 'ns3::Ptr< ns3::ndn::Name const >', is_const=False)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006185 return
6186
6187def register_Ns3NdnFibEntryNoFaces_methods(root_module, cls):
6188 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::Entry::NoFaces::NoFaces() [constructor]
6189 cls.add_constructor([])
6190 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::Entry::NoFaces::NoFaces(ns3::ndn::fib::Entry::NoFaces const & arg0) [copy constructor]
6191 cls.add_constructor([param('ns3::ndn::fib::Entry::NoFaces const &', 'arg0')])
6192 return
6193
6194def register_Ns3NdnFibFaceMetric_methods(root_module, cls):
6195 cls.add_output_stream_operator()
6196 cls.add_binary_comparison_operator('<')
6197 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::FaceMetric::FaceMetric(ns3::ndn::fib::FaceMetric const & arg0) [copy constructor]
6198 cls.add_constructor([param('ns3::ndn::fib::FaceMetric const &', 'arg0')])
6199 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::FaceMetric::FaceMetric(ns3::Ptr<ns3::ndn::Face> face, int32_t cost) [constructor]
6200 cls.add_constructor([param('ns3::Ptr< ns3::ndn::Face >', 'face'), param('int32_t', 'cost')])
6201 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::Face> ns3::ndn::fib::FaceMetric::GetFace() const [member function]
6202 cls.add_method('GetFace',
6203 'ns3::Ptr< ns3::ndn::Face >',
6204 [],
6205 is_const=True)
Alexander Afanasyev06dba7c2013-02-21 11:36:26 -08006206 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::Time ns3::ndn::fib::FaceMetric::GetRealDelay() const [member function]
6207 cls.add_method('GetRealDelay',
6208 'ns3::Time',
6209 [],
6210 is_const=True)
6211 ## ndn-fib-entry.h (module 'ndnSIM'): int32_t ns3::ndn::fib::FaceMetric::GetRoutingCost() const [member function]
6212 cls.add_method('GetRoutingCost',
6213 'int32_t',
6214 [],
6215 is_const=True)
6216 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::FaceMetric::Status ns3::ndn::fib::FaceMetric::GetStatus() const [member function]
6217 cls.add_method('GetStatus',
6218 'ns3::ndn::fib::FaceMetric::Status',
6219 [],
6220 is_const=True)
Alexander Afanasyev0e4ae8e2013-03-12 15:59:18 -07006221 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::TracedValue<ns3::ndn::fib::FaceMetric::Status> & ns3::ndn::fib::FaceMetric::GetStatusTrace() [member function]
6222 cls.add_method('GetStatusTrace',
6223 'ns3::TracedValue< ns3::ndn::fib::FaceMetric::Status > &',
6224 [])
Alexander Afanasyev06dba7c2013-02-21 11:36:26 -08006225 ## ndn-fib-entry.h (module 'ndnSIM'): void ns3::ndn::fib::FaceMetric::SetRealDelay(ns3::Time realDelay) [member function]
6226 cls.add_method('SetRealDelay',
6227 'void',
6228 [param('ns3::Time', 'realDelay')])
6229 ## ndn-fib-entry.h (module 'ndnSIM'): void ns3::ndn::fib::FaceMetric::SetRoutingCost(int32_t routingCost) [member function]
6230 cls.add_method('SetRoutingCost',
6231 'void',
6232 [param('int32_t', 'routingCost')])
6233 ## ndn-fib-entry.h (module 'ndnSIM'): void ns3::ndn::fib::FaceMetric::SetStatus(ns3::ndn::fib::FaceMetric::Status status) [member function]
6234 cls.add_method('SetStatus',
6235 'void',
6236 [param('ns3::ndn::fib::FaceMetric::Status', 'status')])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006237 ## ndn-fib-entry.h (module 'ndnSIM'): void ns3::ndn::fib::FaceMetric::UpdateRtt(ns3::Time const & rttSample) [member function]
6238 cls.add_method('UpdateRtt',
6239 'void',
6240 [param('ns3::Time const &', 'rttSample')])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006241 return
6242
6243def register_Ns3NdnFibFaceMetricContainer_methods(root_module, cls):
6244 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::FaceMetricContainer::FaceMetricContainer() [constructor]
6245 cls.add_constructor([])
6246 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::FaceMetricContainer::FaceMetricContainer(ns3::ndn::fib::FaceMetricContainer const & arg0) [copy constructor]
6247 cls.add_constructor([param('ns3::ndn::fib::FaceMetricContainer const &', 'arg0')])
6248 return
6249
6250def register_Ns3NdnFibI_face_methods(root_module, cls):
6251 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::i_face::i_face() [constructor]
6252 cls.add_constructor([])
6253 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::i_face::i_face(ns3::ndn::fib::i_face const & arg0) [copy constructor]
6254 cls.add_constructor([param('ns3::ndn::fib::i_face const &', 'arg0')])
6255 return
6256
6257def register_Ns3NdnFibI_metric_methods(root_module, cls):
6258 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::i_metric::i_metric() [constructor]
6259 cls.add_constructor([])
6260 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::i_metric::i_metric(ns3::ndn::fib::i_metric const & arg0) [copy constructor]
6261 cls.add_constructor([param('ns3::ndn::fib::i_metric const &', 'arg0')])
6262 return
6263
6264def register_Ns3NdnFibI_nth_methods(root_module, cls):
6265 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::i_nth::i_nth() [constructor]
6266 cls.add_constructor([])
6267 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::i_nth::i_nth(ns3::ndn::fib::i_nth const & arg0) [copy constructor]
6268 cls.add_constructor([param('ns3::ndn::fib::i_nth const &', 'arg0')])
6269 return
6270
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07006271def register_Ns3NdnFwTag_methods(root_module, cls):
6272 ## ndn-fw-tag.h (module 'ndnSIM'): ns3::ndn::fw::Tag::Tag() [constructor]
6273 cls.add_constructor([])
6274 ## ndn-fw-tag.h (module 'ndnSIM'): ns3::ndn::fw::Tag::Tag(ns3::ndn::fw::Tag const & arg0) [copy constructor]
6275 cls.add_constructor([param('ns3::ndn::fw::Tag const &', 'arg0')])
6276 return
6277
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006278def register_Ns3NdnPitEntry_methods(root_module, cls):
6279 cls.add_output_stream_operator()
6280 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::ndn::pit::Entry::Entry(ns3::ndn::pit::Entry const & arg0) [copy constructor]
6281 cls.add_constructor([param('ns3::ndn::pit::Entry const &', 'arg0')])
Alexander Afanasyeveae83ee2013-03-15 15:01:10 -07006282 ## 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]
6283 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 -07006284 ## ndn-pit-entry.h (module 'ndnSIM'): void ns3::ndn::pit::Entry::AddFwTag(boost::shared_ptr<ns3::ndn::fw::Tag> tag) [member function]
6285 cls.add_method('AddFwTag',
6286 'void',
6287 [param('boost::shared_ptr< ns3::ndn::fw::Tag >', 'tag')])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006288 ## 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]
6289 cls.add_method('AddIncoming',
6290 'std::_Rb_tree_const_iterator< ns3::ndn::pit::IncomingFace >',
6291 [param('ns3::Ptr< ns3::ndn::Face >', 'face')],
6292 is_virtual=True)
Alexander Afanasyevc202fd92012-09-03 21:46:00 -07006293 ## 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 -07006294 cls.add_method('AddOutgoing',
Alexander Afanasyevc202fd92012-09-03 21:46:00 -07006295 'std::_Rb_tree_const_iterator< ns3::ndn::pit::OutgoingFace >',
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006296 [param('ns3::Ptr< ns3::ndn::Face >', 'face')],
6297 is_virtual=True)
6298 ## ndn-pit-entry.h (module 'ndnSIM'): void ns3::ndn::pit::Entry::AddSeenNonce(uint32_t nonce) [member function]
6299 cls.add_method('AddSeenNonce',
6300 'void',
6301 [param('uint32_t', 'nonce')],
6302 is_virtual=True)
6303 ## ndn-pit-entry.h (module 'ndnSIM'): bool ns3::ndn::pit::Entry::AreAllOutgoingInVain() const [member function]
6304 cls.add_method('AreAllOutgoingInVain',
6305 'bool',
6306 [],
6307 is_const=True)
6308 ## ndn-pit-entry.h (module 'ndnSIM'): bool ns3::ndn::pit::Entry::AreTherePromisingOutgoingFacesExcept(ns3::Ptr<ns3::ndn::Face> face) const [member function]
6309 cls.add_method('AreTherePromisingOutgoingFacesExcept',
6310 'bool',
6311 [param('ns3::Ptr< ns3::ndn::Face >', 'face')],
6312 is_const=True)
6313 ## ndn-pit-entry.h (module 'ndnSIM'): void ns3::ndn::pit::Entry::ClearIncoming() [member function]
6314 cls.add_method('ClearIncoming',
6315 'void',
6316 [],
6317 is_virtual=True)
6318 ## ndn-pit-entry.h (module 'ndnSIM'): void ns3::ndn::pit::Entry::ClearOutgoing() [member function]
6319 cls.add_method('ClearOutgoing',
6320 'void',
6321 [],
6322 is_virtual=True)
6323 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::Time const & ns3::ndn::pit::Entry::GetExpireTime() const [member function]
6324 cls.add_method('GetExpireTime',
6325 'ns3::Time const &',
6326 [],
6327 is_const=True)
6328 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::fib::Entry> ns3::ndn::pit::Entry::GetFibEntry() [member function]
6329 cls.add_method('GetFibEntry',
6330 'ns3::Ptr< ns3::ndn::fib::Entry >',
6331 [])
6332 ## 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]
6333 cls.add_method('GetIncoming',
6334 'std::set< ns3::ndn::pit::IncomingFace > const &',
6335 [],
6336 is_const=True)
Alexander Afanasyeveae83ee2013-03-15 15:01:10 -07006337 ## 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 -07006338 cls.add_method('GetInterest',
Alexander Afanasyeveae83ee2013-03-15 15:01:10 -07006339 'ns3::Ptr< ns3::ndn::Interest const >',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07006340 [],
6341 is_const=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006342 ## ndn-pit-entry.h (module 'ndnSIM'): uint32_t ns3::ndn::pit::Entry::GetMaxRetxCount() const [member function]
6343 cls.add_method('GetMaxRetxCount',
6344 'uint32_t',
6345 [],
6346 is_const=True)
Alexander Afanasyevc202fd92012-09-03 21:46:00 -07006347 ## 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 -07006348 cls.add_method('GetOutgoing',
Alexander Afanasyevc202fd92012-09-03 21:46:00 -07006349 'std::set< ns3::ndn::pit::OutgoingFace > const &',
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006350 [],
6351 is_const=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07006352 ## ndn-pit-entry.h (module 'ndnSIM'): uint32_t ns3::ndn::pit::Entry::GetOutgoingCount() const [member function]
6353 cls.add_method('GetOutgoingCount',
6354 'uint32_t',
6355 [],
6356 is_const=True)
Alexander Afanasyevcfdc14f2013-03-15 14:38:44 -07006357 ## 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 -07006358 cls.add_method('GetPrefix',
Alexander Afanasyevcfdc14f2013-03-15 14:38:44 -07006359 'ns3::ndn::Name const &',
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006360 [],
6361 is_const=True)
6362 ## ndn-pit-entry.h (module 'ndnSIM'): void ns3::ndn::pit::Entry::IncreaseAllowedRetxCount() [member function]
6363 cls.add_method('IncreaseAllowedRetxCount',
6364 'void',
6365 [],
6366 is_virtual=True)
6367 ## ndn-pit-entry.h (module 'ndnSIM'): bool ns3::ndn::pit::Entry::IsNonceSeen(uint32_t nonce) const [member function]
6368 cls.add_method('IsNonceSeen',
6369 'bool',
6370 [param('uint32_t', 'nonce')],
6371 is_const=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07006372 ## ndn-pit-entry.h (module 'ndnSIM'): void ns3::ndn::pit::Entry::OffsetLifetime(ns3::Time const & offsetTime) [member function]
6373 cls.add_method('OffsetLifetime',
6374 'void',
6375 [param('ns3::Time const &', 'offsetTime')],
6376 is_virtual=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006377 ## ndn-pit-entry.h (module 'ndnSIM'): void ns3::ndn::pit::Entry::RemoveAllReferencesToFace(ns3::Ptr<ns3::ndn::Face> face) [member function]
6378 cls.add_method('RemoveAllReferencesToFace',
6379 'void',
6380 [param('ns3::Ptr< ns3::ndn::Face >', 'face')],
6381 is_virtual=True)
6382 ## ndn-pit-entry.h (module 'ndnSIM'): void ns3::ndn::pit::Entry::RemoveIncoming(ns3::Ptr<ns3::ndn::Face> face) [member function]
6383 cls.add_method('RemoveIncoming',
6384 'void',
6385 [param('ns3::Ptr< ns3::ndn::Face >', 'face')],
6386 is_virtual=True)
6387 ## ndn-pit-entry.h (module 'ndnSIM'): void ns3::ndn::pit::Entry::SetWaitingInVain(ns3::Ptr<ns3::ndn::Face> face) [member function]
6388 cls.add_method('SetWaitingInVain',
6389 'void',
6390 [param('ns3::Ptr< ns3::ndn::Face >', 'face')],
6391 is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07006392 ## 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 -07006393 cls.add_method('UpdateLifetime',
6394 'void',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07006395 [param('ns3::Time const &', 'lifetime')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006396 is_virtual=True)
6397 return
6398
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08006399def register_Ns3NdnPitEntryIsNotEmpty_methods(root_module, cls):
6400 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::ndn::pit::EntryIsNotEmpty::EntryIsNotEmpty() [constructor]
6401 cls.add_constructor([])
6402 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::ndn::pit::EntryIsNotEmpty::EntryIsNotEmpty(ns3::ndn::pit::EntryIsNotEmpty const & arg0) [copy constructor]
6403 cls.add_constructor([param('ns3::ndn::pit::EntryIsNotEmpty const &', 'arg0')])
6404 ## ndn-pit-entry.h (module 'ndnSIM'): bool ns3::ndn::pit::EntryIsNotEmpty::operator()(ns3::Ptr<ns3::ndn::pit::Entry> entry) [member operator]
6405 cls.add_method('operator()',
6406 'bool',
6407 [param('ns3::Ptr< ns3::ndn::pit::Entry >', 'entry')],
6408 custom_name='__call__')
6409 return
6410
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006411def register_Ns3NdnPitIncomingFace_methods(root_module, cls):
6412 cls.add_binary_comparison_operator('==')
6413 cls.add_binary_comparison_operator('<')
6414 ## ndn-pit-entry-incoming-face.h (module 'ndnSIM'): ns3::ndn::pit::IncomingFace::IncomingFace(ns3::ndn::pit::IncomingFace const & arg0) [copy constructor]
6415 cls.add_constructor([param('ns3::ndn::pit::IncomingFace const &', 'arg0')])
6416 ## ndn-pit-entry-incoming-face.h (module 'ndnSIM'): ns3::ndn::pit::IncomingFace::IncomingFace(ns3::Ptr<ns3::ndn::Face> face) [constructor]
6417 cls.add_constructor([param('ns3::Ptr< ns3::ndn::Face >', 'face')])
6418 ## ndn-pit-entry-incoming-face.h (module 'ndnSIM'): ns3::ndn::pit::IncomingFace::IncomingFace() [constructor]
6419 cls.add_constructor([])
6420 ## ndn-pit-entry-incoming-face.h (module 'ndnSIM'): ns3::ndn::pit::IncomingFace::m_arrivalTime [variable]
6421 cls.add_instance_attribute('m_arrivalTime', 'ns3::Time', is_const=False)
6422 ## ndn-pit-entry-incoming-face.h (module 'ndnSIM'): ns3::ndn::pit::IncomingFace::m_face [variable]
6423 cls.add_instance_attribute('m_face', 'ns3::Ptr< ns3::ndn::Face >', is_const=False)
6424 return
6425
6426def register_Ns3NdnPitOutgoingFace_methods(root_module, cls):
6427 cls.add_binary_comparison_operator('==')
6428 cls.add_binary_comparison_operator('<')
6429 ## ndn-pit-entry-outgoing-face.h (module 'ndnSIM'): ns3::ndn::pit::OutgoingFace::OutgoingFace(ns3::ndn::pit::OutgoingFace const & arg0) [copy constructor]
6430 cls.add_constructor([param('ns3::ndn::pit::OutgoingFace const &', 'arg0')])
6431 ## ndn-pit-entry-outgoing-face.h (module 'ndnSIM'): ns3::ndn::pit::OutgoingFace::OutgoingFace(ns3::Ptr<ns3::ndn::Face> face) [constructor]
6432 cls.add_constructor([param('ns3::Ptr< ns3::ndn::Face >', 'face')])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07006433 ## ndn-pit-entry-outgoing-face.h (module 'ndnSIM'): ns3::ndn::pit::OutgoingFace::OutgoingFace() [constructor]
6434 cls.add_constructor([])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006435 ## ndn-pit-entry-outgoing-face.h (module 'ndnSIM'): void ns3::ndn::pit::OutgoingFace::UpdateOnRetransmit() [member function]
6436 cls.add_method('UpdateOnRetransmit',
6437 'void',
6438 [])
6439 ## ndn-pit-entry-outgoing-face.h (module 'ndnSIM'): ns3::ndn::pit::OutgoingFace::m_face [variable]
6440 cls.add_instance_attribute('m_face', 'ns3::Ptr< ns3::ndn::Face >', is_const=False)
6441 ## ndn-pit-entry-outgoing-face.h (module 'ndnSIM'): ns3::ndn::pit::OutgoingFace::m_retxCount [variable]
6442 cls.add_instance_attribute('m_retxCount', 'uint32_t', is_const=False)
6443 ## ndn-pit-entry-outgoing-face.h (module 'ndnSIM'): ns3::ndn::pit::OutgoingFace::m_sendTime [variable]
6444 cls.add_instance_attribute('m_sendTime', 'ns3::Time', is_const=False)
6445 ## ndn-pit-entry-outgoing-face.h (module 'ndnSIM'): ns3::ndn::pit::OutgoingFace::m_waitingInVain [variable]
6446 cls.add_instance_attribute('m_waitingInVain', 'bool', is_const=False)
6447 return
6448
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006449def register_Ns3NdnPitI_face_methods(root_module, cls):
6450 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::ndn::pit::i_face::i_face() [constructor]
6451 cls.add_constructor([])
6452 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::ndn::pit::i_face::i_face(ns3::ndn::pit::i_face const & arg0) [copy constructor]
6453 cls.add_constructor([param('ns3::ndn::pit::i_face const &', 'arg0')])
6454 return
6455
6456def register_Ns3NdnPitI_retx_methods(root_module, cls):
6457 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::ndn::pit::i_retx::i_retx() [constructor]
6458 cls.add_constructor([])
6459 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::ndn::pit::i_retx::i_retx(ns3::ndn::pit::i_retx const & arg0) [copy constructor]
6460 cls.add_constructor([param('ns3::ndn::pit::i_retx const &', 'arg0')])
6461 return
6462
Alexander Afanasyev381dea02011-11-03 08:33:26 -07006463def register_functions(root_module):
6464 module = root_module
Alexander Afanasyev381dea02011-11-03 08:33:26 -07006465 register_functions_ns3_FatalImpl(module.get_submodule('FatalImpl'), root_module)
6466 register_functions_ns3_internal(module.get_submodule('internal'), root_module)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006467 register_functions_ns3_ndn(module.get_submodule('ndn'), root_module)
Alexander Afanasyev381dea02011-11-03 08:33:26 -07006468 return
6469
Alexander Afanasyev381dea02011-11-03 08:33:26 -07006470def register_functions_ns3_FatalImpl(module, root_module):
6471 return
6472
6473def register_functions_ns3_internal(module, root_module):
6474 return
6475
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006476def register_functions_ns3_ndn(module, root_module):
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08006477 ## ndn-name.h (module 'ndnSIM'): extern ns3::Ptr<ns3::AttributeChecker const> ns3::ndn::MakeNameChecker() [free function]
Alexander Afanasyev32c07562013-02-01 12:58:43 -08006478 module.add_function('MakeNameChecker',
6479 'ns3::Ptr< ns3::AttributeChecker const >',
6480 [])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006481 register_functions_ns3_ndn_cs(module.get_submodule('cs'), root_module)
6482 register_functions_ns3_ndn_fib(module.get_submodule('fib'), root_module)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07006483 register_functions_ns3_ndn_fw(module.get_submodule('fw'), root_module)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006484 register_functions_ns3_ndn_pit(module.get_submodule('pit'), root_module)
6485 return
6486
6487def register_functions_ns3_ndn_cs(module, root_module):
6488 return
6489
6490def register_functions_ns3_ndn_fib(module, root_module):
6491 return
6492
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07006493def register_functions_ns3_ndn_fw(module, root_module):
6494 return
6495
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006496def register_functions_ns3_ndn_pit(module, root_module):
6497 return
6498
Alexander Afanasyev381dea02011-11-03 08:33:26 -07006499def main():
6500 out = FileCodeSink(sys.stdout)
6501 root_module = module_init()
6502 register_types(root_module)
6503 register_methods(root_module)
6504 register_functions(root_module)
6505 root_module.generate(out)
6506
6507if __name__ == '__main__':
6508 main()
6509