blob: bf1a2af196caf8e834e1d270c82a4df9d676d0bf [file] [log] [blame]
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001from pybindgen import Module, FileCodeSink, param, retval, cppclass, typehandlers
2
3
4import pybindgen.settings
5import warnings
6
7class ErrorHandler(pybindgen.settings.ErrorHandler):
8 def handle_error(self, wrapper, exception, traceback_):
9 warnings.warn("exception %r in wrapper %s" % (exception, wrapper))
10 return True
11pybindgen.settings.error_handler = ErrorHandler()
12
13
14import sys
15
16def module_init():
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -070017 root_module = Module('ns.ndnSIM', cpp_namespace='::ns3')
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -080018 return root_module
19
20def register_types(module):
21 root_module = module.get_root()
22
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -080023 ## address.h (module 'network'): ns3::Address [class]
24 module.add_class('Address', import_from_module='ns.network')
25 ## address.h (module 'network'): ns3::Address::MaxSize_e [enumeration]
26 module.add_enum('MaxSize_e', ['MAX_SIZE'], outer_class=root_module['ns3::Address'], import_from_module='ns.network')
27 ## application-container.h (module 'network'): ns3::ApplicationContainer [class]
28 module.add_class('ApplicationContainer', import_from_module='ns.network')
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -080029 ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList [class]
30 module.add_class('AttributeConstructionList', import_from_module='ns.core')
31 ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item [struct]
32 module.add_class('Item', import_from_module='ns.core', outer_class=root_module['ns3::AttributeConstructionList'])
33 ## buffer.h (module 'network'): ns3::Buffer [class]
34 module.add_class('Buffer', import_from_module='ns.network')
35 ## buffer.h (module 'network'): ns3::Buffer::Iterator [class]
36 module.add_class('Iterator', import_from_module='ns.network', outer_class=root_module['ns3::Buffer'])
37 ## packet.h (module 'network'): ns3::ByteTagIterator [class]
38 module.add_class('ByteTagIterator', import_from_module='ns.network')
39 ## packet.h (module 'network'): ns3::ByteTagIterator::Item [class]
40 module.add_class('Item', import_from_module='ns.network', outer_class=root_module['ns3::ByteTagIterator'])
41 ## byte-tag-list.h (module 'network'): ns3::ByteTagList [class]
42 module.add_class('ByteTagList', import_from_module='ns.network')
43 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator [class]
44 module.add_class('Iterator', import_from_module='ns.network', outer_class=root_module['ns3::ByteTagList'])
45 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item [struct]
46 module.add_class('Item', import_from_module='ns.network', outer_class=root_module['ns3::ByteTagList::Iterator'])
47 ## callback.h (module 'core'): ns3::CallbackBase [class]
48 module.add_class('CallbackBase', import_from_module='ns.core')
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -080049 ## event-id.h (module 'core'): ns3::EventId [class]
50 module.add_class('EventId', import_from_module='ns.core')
51 ## ipv4-address.h (module 'network'): ns3::Ipv4Address [class]
52 module.add_class('Ipv4Address', import_from_module='ns.network')
53 ## ipv4-address.h (module 'network'): ns3::Ipv4Address [class]
54 root_module['ns3::Ipv4Address'].implicitly_converts_to(root_module['ns3::Address'])
55 ## ipv4-address.h (module 'network'): ns3::Ipv4Mask [class]
56 module.add_class('Ipv4Mask', import_from_module='ns.network')
57 ## ipv6-address.h (module 'network'): ns3::Ipv6Address [class]
58 module.add_class('Ipv6Address', import_from_module='ns.network')
59 ## ipv6-address.h (module 'network'): ns3::Ipv6Address [class]
60 root_module['ns3::Ipv6Address'].implicitly_converts_to(root_module['ns3::Address'])
61 ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix [class]
62 module.add_class('Ipv6Prefix', import_from_module='ns.network')
Alexander Afanasyev29c19b92012-09-03 23:46:41 -070063 ## net-device-container.h (module 'network'): ns3::NetDeviceContainer [class]
64 module.add_class('NetDeviceContainer', import_from_module='ns.network')
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -080065 ## node-container.h (module 'network'): ns3::NodeContainer [class]
66 module.add_class('NodeContainer', import_from_module='ns.network')
67 ## object-base.h (module 'core'): ns3::ObjectBase [class]
68 module.add_class('ObjectBase', allow_subclassing=True, import_from_module='ns.core')
69 ## object.h (module 'core'): ns3::ObjectDeleter [struct]
70 module.add_class('ObjectDeleter', import_from_module='ns.core')
71 ## object-factory.h (module 'core'): ns3::ObjectFactory [class]
72 module.add_class('ObjectFactory', import_from_module='ns.core')
73 ## packet-metadata.h (module 'network'): ns3::PacketMetadata [class]
74 module.add_class('PacketMetadata', import_from_module='ns.network')
75 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item [struct]
76 module.add_class('Item', import_from_module='ns.network', outer_class=root_module['ns3::PacketMetadata'])
77 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item [enumeration]
78 module.add_enum('', ['PAYLOAD', 'HEADER', 'TRAILER'], outer_class=root_module['ns3::PacketMetadata::Item'], import_from_module='ns.network')
79 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::ItemIterator [class]
80 module.add_class('ItemIterator', import_from_module='ns.network', outer_class=root_module['ns3::PacketMetadata'])
Alexander Afanasyevad5acce2012-05-31 12:43:08 -070081 ## packet.h (module 'network'): ns3::PacketTagIterator [class]
82 module.add_class('PacketTagIterator', import_from_module='ns.network')
83 ## packet.h (module 'network'): ns3::PacketTagIterator::Item [class]
84 module.add_class('Item', import_from_module='ns.network', outer_class=root_module['ns3::PacketTagIterator'])
85 ## packet-tag-list.h (module 'network'): ns3::PacketTagList [class]
86 module.add_class('PacketTagList', import_from_module='ns.network')
87 ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData [struct]
88 module.add_class('TagData', import_from_module='ns.network', outer_class=root_module['ns3::PacketTagList'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -070089 ## random-variable.h (module 'core'): ns3::RandomVariable [class]
90 module.add_class('RandomVariable', import_from_module='ns.core')
91 ## rng-seed-manager.h (module 'core'): ns3::RngSeedManager [class]
92 module.add_class('RngSeedManager', import_from_module='ns.core')
93 ## random-variable.h (module 'core'): ns3::SequentialVariable [class]
94 module.add_class('SequentialVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -080095 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter> [class]
96 module.add_class('SimpleRefCount', automatic_type_narrowing=True, import_from_module='ns.core', template_parameters=['ns3::Object', 'ns3::ObjectBase', 'ns3::ObjectDeleter'], parent=root_module['ns3::ObjectBase'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
Alexander Afanasyevad5acce2012-05-31 12:43:08 -070097 ## tag.h (module 'network'): ns3::Tag [class]
98 module.add_class('Tag', import_from_module='ns.network', parent=root_module['ns3::ObjectBase'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -080099 ## tag-buffer.h (module 'network'): ns3::TagBuffer [class]
100 module.add_class('TagBuffer', import_from_module='ns.network')
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700101 ## random-variable.h (module 'core'): ns3::TriangularVariable [class]
102 module.add_class('TriangularVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800103 ## type-id.h (module 'core'): ns3::TypeId [class]
104 module.add_class('TypeId', import_from_module='ns.core')
105 ## type-id.h (module 'core'): ns3::TypeId::AttributeFlag [enumeration]
106 module.add_enum('AttributeFlag', ['ATTR_GET', 'ATTR_SET', 'ATTR_CONSTRUCT', 'ATTR_SGC'], outer_class=root_module['ns3::TypeId'], import_from_module='ns.core')
107 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation [struct]
108 module.add_class('AttributeInformation', import_from_module='ns.core', outer_class=root_module['ns3::TypeId'])
109 ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation [struct]
110 module.add_class('TraceSourceInformation', import_from_module='ns.core', outer_class=root_module['ns3::TypeId'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700111 ## random-variable.h (module 'core'): ns3::UniformVariable [class]
112 module.add_class('UniformVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700113 ## random-variable.h (module 'core'): ns3::WeibullVariable [class]
114 module.add_class('WeibullVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
115 ## random-variable.h (module 'core'): ns3::ZetaVariable [class]
116 module.add_class('ZetaVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
117 ## random-variable.h (module 'core'): ns3::ZipfVariable [class]
118 module.add_class('ZipfVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800119 ## empty.h (module 'core'): ns3::empty [class]
120 module.add_class('empty', import_from_module='ns.core')
121 ## int64x64-double.h (module 'core'): ns3::int64x64_t [class]
122 module.add_class('int64x64_t', import_from_module='ns.core')
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800123 ## chunk.h (module 'network'): ns3::Chunk [class]
Alexander Afanasyev4756b892012-04-18 14:48:43 -0700124 module.add_class('Chunk', import_from_module='ns.network', parent=root_module['ns3::ObjectBase'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700125 ## random-variable.h (module 'core'): ns3::ConstantVariable [class]
126 module.add_class('ConstantVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
127 ## random-variable.h (module 'core'): ns3::DeterministicVariable [class]
128 module.add_class('DeterministicVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
129 ## random-variable.h (module 'core'): ns3::EmpiricalVariable [class]
130 module.add_class('EmpiricalVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
131 ## random-variable.h (module 'core'): ns3::ErlangVariable [class]
132 module.add_class('ErlangVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
133 ## random-variable.h (module 'core'): ns3::ExponentialVariable [class]
134 module.add_class('ExponentialVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
135 ## random-variable.h (module 'core'): ns3::GammaVariable [class]
136 module.add_class('GammaVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800137 ## header.h (module 'network'): ns3::Header [class]
138 module.add_class('Header', import_from_module='ns.network', parent=root_module['ns3::Chunk'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700139 ## random-variable.h (module 'core'): ns3::IntEmpiricalVariable [class]
140 module.add_class('IntEmpiricalVariable', import_from_module='ns.core', parent=root_module['ns3::EmpiricalVariable'])
141 ## random-variable.h (module 'core'): ns3::LogNormalVariable [class]
142 module.add_class('LogNormalVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
143 ## random-variable.h (module 'core'): ns3::NormalVariable [class]
144 module.add_class('NormalVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800145 ## object.h (module 'core'): ns3::Object [class]
146 module.add_class('Object', import_from_module='ns.core', parent=root_module['ns3::SimpleRefCount< ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter >'])
147 ## object.h (module 'core'): ns3::Object::AggregateIterator [class]
148 module.add_class('AggregateIterator', import_from_module='ns.core', outer_class=root_module['ns3::Object'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700149 ## random-variable.h (module 'core'): ns3::ParetoVariable [class]
150 module.add_class('ParetoVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800151 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> > [class]
152 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'))
153 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter<ns3::AttributeChecker> > [class]
154 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'))
155 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter<ns3::AttributeValue> > [class]
156 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'))
157 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> > [class]
158 module.add_class('SimpleRefCount', automatic_type_narrowing=True, import_from_module='ns.core', template_parameters=['ns3::CallbackImplBase', 'ns3::empty', 'ns3::DefaultDeleter<ns3::CallbackImplBase>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800159 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::EventImpl, ns3::empty, ns3::DefaultDeleter<ns3::EventImpl> > [class]
160 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'))
161 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::NixVector, ns3::empty, ns3::DefaultDeleter<ns3::NixVector> > [class]
162 module.add_class('SimpleRefCount', automatic_type_narrowing=True, import_from_module='ns.core', template_parameters=['ns3::NixVector', 'ns3::empty', 'ns3::DefaultDeleter<ns3::NixVector>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800163 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Packet, ns3::empty, ns3::DefaultDeleter<ns3::Packet> > [class]
164 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 -0700165 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::TopologyReader, ns3::empty, ns3::DefaultDeleter<ns3::TopologyReader> > [class]
166 module.add_class('SimpleRefCount', automatic_type_narrowing=True, import_from_module='ns.core', template_parameters=['ns3::TopologyReader', 'ns3::empty', 'ns3::DefaultDeleter<ns3::TopologyReader>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800167 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter<ns3::TraceSourceAccessor> > [class]
168 module.add_class('SimpleRefCount', automatic_type_narrowing=True, import_from_module='ns.core', template_parameters=['ns3::TraceSourceAccessor', 'ns3::empty', 'ns3::DefaultDeleter<ns3::TraceSourceAccessor>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700169 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::ndn::ContentObjectHeader, ns3::Header, ns3::DefaultDeleter<ns3::ndn::ContentObjectHeader> > [class]
170 module.add_class('SimpleRefCount', automatic_type_narrowing=True, template_parameters=['ns3::ndn::ContentObjectHeader', 'ns3::Header', 'ns3::DefaultDeleter<ns3::ndn::ContentObjectHeader>'], parent=root_module['ns3::Header'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
171 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::ndn::FaceContainer, ns3::empty, ns3::DefaultDeleter<ns3::ndn::FaceContainer> > [class]
172 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'))
173 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::ndn::InterestHeader, ns3::Header, ns3::DefaultDeleter<ns3::ndn::InterestHeader> > [class]
174 module.add_class('SimpleRefCount', automatic_type_narrowing=True, import_from_module='ns.core', template_parameters=['ns3::ndn::InterestHeader', 'ns3::Header', 'ns3::DefaultDeleter<ns3::ndn::InterestHeader>'], parent=root_module['ns3::Header'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
Alexander Afanasyev32c07562013-02-01 12:58:43 -0800175 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::ndn::Name, ns3::empty, ns3::DefaultDeleter<ns3::ndn::Name> > [class]
176 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 -0700177 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::ndn::cs::Entry, ns3::empty, ns3::DefaultDeleter<ns3::ndn::cs::Entry> > [class]
178 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 -0700179 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::ndn::pit::Entry, ns3::empty, ns3::DefaultDeleter<ns3::ndn::pit::Entry> > [class]
180 module.add_class('SimpleRefCount', automatic_type_narrowing=True, template_parameters=['ns3::ndn::pit::Entry', 'ns3::empty', 'ns3::DefaultDeleter<ns3::ndn::pit::Entry>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800181 ## nstime.h (module 'core'): ns3::Time [class]
182 module.add_class('Time', import_from_module='ns.core')
183 ## nstime.h (module 'core'): ns3::Time::Unit [enumeration]
184 module.add_enum('Unit', ['S', 'MS', 'US', 'NS', 'PS', 'FS', 'LAST'], outer_class=root_module['ns3::Time'], import_from_module='ns.core')
185 ## nstime.h (module 'core'): ns3::Time [class]
186 root_module['ns3::Time'].implicitly_converts_to(root_module['ns3::int64x64_t'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700187 ## topology-reader.h (module 'topology-read'): ns3::TopologyReader [class]
188 module.add_class('TopologyReader', import_from_module='ns.topology_read', parent=root_module['ns3::SimpleRefCount< ns3::TopologyReader, ns3::empty, ns3::DefaultDeleter<ns3::TopologyReader> >'])
189 ## topology-reader.h (module 'topology-read'): ns3::TopologyReader::Link [class]
190 module.add_class('Link', import_from_module='ns.topology_read', outer_class=root_module['ns3::TopologyReader'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800191 ## trace-source-accessor.h (module 'core'): ns3::TraceSourceAccessor [class]
192 module.add_class('TraceSourceAccessor', import_from_module='ns.core', parent=root_module['ns3::SimpleRefCount< ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter<ns3::TraceSourceAccessor> >'])
193 ## trailer.h (module 'network'): ns3::Trailer [class]
194 module.add_class('Trailer', import_from_module='ns.network', parent=root_module['ns3::Chunk'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700195 ## annotated-topology-reader.h (module 'ndnSIM'): ns3::AnnotatedTopologyReader [class]
196 module.add_class('AnnotatedTopologyReader', parent=root_module['ns3::TopologyReader'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800197 ## application.h (module 'network'): ns3::Application [class]
198 module.add_class('Application', import_from_module='ns.network', parent=root_module['ns3::Object'])
199 ## attribute.h (module 'core'): ns3::AttributeAccessor [class]
200 module.add_class('AttributeAccessor', import_from_module='ns.core', parent=root_module['ns3::SimpleRefCount< ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> >'])
201 ## attribute.h (module 'core'): ns3::AttributeChecker [class]
202 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> >'])
203 ## attribute.h (module 'core'): ns3::AttributeValue [class]
204 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 -0700205 ## boolean.h (module 'core'): ns3::BooleanChecker [class]
206 module.add_class('BooleanChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker'])
207 ## boolean.h (module 'core'): ns3::BooleanValue [class]
208 module.add_class('BooleanValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800209 ## callback.h (module 'core'): ns3::CallbackChecker [class]
210 module.add_class('CallbackChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker'])
211 ## callback.h (module 'core'): ns3::CallbackImplBase [class]
212 module.add_class('CallbackImplBase', import_from_module='ns.core', parent=root_module['ns3::SimpleRefCount< ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> >'])
213 ## callback.h (module 'core'): ns3::CallbackValue [class]
214 module.add_class('CallbackValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -0700215 ## double.h (module 'core'): ns3::DoubleValue [class]
216 module.add_class('DoubleValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800217 ## attribute.h (module 'core'): ns3::EmptyAttributeValue [class]
218 module.add_class('EmptyAttributeValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -0700219 ## enum.h (module 'core'): ns3::EnumChecker [class]
220 module.add_class('EnumChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker'])
221 ## enum.h (module 'core'): ns3::EnumValue [class]
222 module.add_class('EnumValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800223 ## event-impl.h (module 'core'): ns3::EventImpl [class]
224 module.add_class('EventImpl', import_from_module='ns.core', parent=root_module['ns3::SimpleRefCount< ns3::EventImpl, ns3::empty, ns3::DefaultDeleter<ns3::EventImpl> >'])
225 ## integer.h (module 'core'): ns3::IntegerValue [class]
226 module.add_class('IntegerValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
227 ## ipv4-address.h (module 'network'): ns3::Ipv4AddressChecker [class]
228 module.add_class('Ipv4AddressChecker', import_from_module='ns.network', parent=root_module['ns3::AttributeChecker'])
229 ## ipv4-address.h (module 'network'): ns3::Ipv4AddressValue [class]
230 module.add_class('Ipv4AddressValue', import_from_module='ns.network', parent=root_module['ns3::AttributeValue'])
231 ## ipv4-address.h (module 'network'): ns3::Ipv4MaskChecker [class]
232 module.add_class('Ipv4MaskChecker', import_from_module='ns.network', parent=root_module['ns3::AttributeChecker'])
233 ## ipv4-address.h (module 'network'): ns3::Ipv4MaskValue [class]
234 module.add_class('Ipv4MaskValue', import_from_module='ns.network', parent=root_module['ns3::AttributeValue'])
235 ## ipv6-address.h (module 'network'): ns3::Ipv6AddressChecker [class]
236 module.add_class('Ipv6AddressChecker', import_from_module='ns.network', parent=root_module['ns3::AttributeChecker'])
237 ## ipv6-address.h (module 'network'): ns3::Ipv6AddressValue [class]
238 module.add_class('Ipv6AddressValue', import_from_module='ns.network', parent=root_module['ns3::AttributeValue'])
239 ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixChecker [class]
240 module.add_class('Ipv6PrefixChecker', import_from_module='ns.network', parent=root_module['ns3::AttributeChecker'])
241 ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixValue [class]
242 module.add_class('Ipv6PrefixValue', import_from_module='ns.network', parent=root_module['ns3::AttributeValue'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800243 ## net-device.h (module 'network'): ns3::NetDevice [class]
244 module.add_class('NetDevice', import_from_module='ns.network', parent=root_module['ns3::Object'])
245 ## net-device.h (module 'network'): ns3::NetDevice::PacketType [enumeration]
246 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')
247 ## nix-vector.h (module 'network'): ns3::NixVector [class]
248 module.add_class('NixVector', import_from_module='ns.network', parent=root_module['ns3::SimpleRefCount< ns3::NixVector, ns3::empty, ns3::DefaultDeleter<ns3::NixVector> >'])
249 ## node.h (module 'network'): ns3::Node [class]
250 module.add_class('Node', import_from_module='ns.network', parent=root_module['ns3::Object'])
251 ## object-factory.h (module 'core'): ns3::ObjectFactoryChecker [class]
252 module.add_class('ObjectFactoryChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker'])
253 ## object-factory.h (module 'core'): ns3::ObjectFactoryValue [class]
254 module.add_class('ObjectFactoryValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800255 ## packet.h (module 'network'): ns3::Packet [class]
256 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 -0700257 ## random-variable.h (module 'core'): ns3::RandomVariableChecker [class]
258 module.add_class('RandomVariableChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker'])
259 ## random-variable.h (module 'core'): ns3::RandomVariableValue [class]
260 module.add_class('RandomVariableValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
261 ## rocketfuel-weights-reader.h (module 'ndnSIM'): ns3::RocketfuelWeightsReader [class]
262 module.add_class('RocketfuelWeightsReader', parent=root_module['ns3::AnnotatedTopologyReader'])
263 ## rocketfuel-weights-reader.h (module 'ndnSIM'): ns3::RocketfuelWeightsReader [enumeration]
264 module.add_enum('', ['LINKS', 'WEIGHTS', 'LATENCIES', 'POSITIONS'], outer_class=root_module['ns3::RocketfuelWeightsReader'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800265 ## nstime.h (module 'core'): ns3::TimeChecker [class]
266 module.add_class('TimeChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker'])
267 ## nstime.h (module 'core'): ns3::TimeValue [class]
268 module.add_class('TimeValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
269 ## type-id.h (module 'core'): ns3::TypeIdChecker [class]
270 module.add_class('TypeIdChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker'])
271 ## type-id.h (module 'core'): ns3::TypeIdValue [class]
272 module.add_class('TypeIdValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -0700273 ## uinteger.h (module 'core'): ns3::UintegerValue [class]
274 module.add_class('UintegerValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800275 ## address.h (module 'network'): ns3::AddressChecker [class]
276 module.add_class('AddressChecker', import_from_module='ns.network', parent=root_module['ns3::AttributeChecker'])
277 ## address.h (module 'network'): ns3::AddressValue [class]
278 module.add_class('AddressValue', import_from_module='ns.network', parent=root_module['ns3::AttributeValue'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700279 module.add_container('std::map< std::string, std::string >', ('std::string', 'std::string'), container_type='map')
280 module.add_container('std::list< ns3::TopologyReader::Link >', 'ns3::TopologyReader::Link', container_type='list')
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700281 typehandlers.add_type_alias('ns3::RngSeedManager', 'ns3::SeedManager')
282 typehandlers.add_type_alias('ns3::RngSeedManager*', 'ns3::SeedManager*')
283 typehandlers.add_type_alias('ns3::RngSeedManager&', 'ns3::SeedManager&')
284 module.add_typedef(root_module['ns3::RngSeedManager'], 'SeedManager')
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800285
286 ## Register a nested module for the namespace FatalImpl
287
288 nested_module = module.add_cpp_namespace('FatalImpl')
289 register_types_ns3_FatalImpl(nested_module)
290
291
292 ## Register a nested module for the namespace internal
293
294 nested_module = module.add_cpp_namespace('internal')
295 register_types_ns3_internal(nested_module)
296
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700297
298 ## Register a nested module for the namespace ndn
299
300 nested_module = module.add_cpp_namespace('ndn')
301 register_types_ns3_ndn(nested_module)
302
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800303
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800304def register_types_ns3_FatalImpl(module):
305 root_module = module.get_root()
306
307
308def register_types_ns3_internal(module):
309 root_module = module.get_root()
310
311
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700312def register_types_ns3_ndn(module):
313 root_module = module.get_root()
314
315 ## ndn-app.h (module 'ndnSIM'): ns3::ndn::App [class]
316 module.add_class('App', parent=root_module['ns3::Application'])
317 ## ndn-app-helper.h (module 'ndnSIM'): ns3::ndn::AppHelper [class]
318 module.add_class('AppHelper')
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -0800319 ## ndn-content-object.h (module 'ndnSIM'): ns3::ndn::ContentObjectHeader [class]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700320 module.add_class('ContentObjectHeader', parent=root_module['ns3::SimpleRefCount< ns3::ndn::ContentObjectHeader, ns3::Header, ns3::DefaultDeleter<ns3::ndn::ContentObjectHeader> >'])
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -0800321 ## ndn-content-object.h (module 'ndnSIM'): ns3::ndn::ContentObjectHeaderException [class]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700322 module.add_class('ContentObjectHeaderException')
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -0800323 ## ndn-content-object.h (module 'ndnSIM'): ns3::ndn::ContentObjectTail [class]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700324 module.add_class('ContentObjectTail', parent=root_module['ns3::Trailer'])
325 ## ndn-content-store.h (module 'ndnSIM'): ns3::ndn::ContentStore [class]
326 module.add_class('ContentStore', parent=root_module['ns3::Object'])
327 ## ndn-face.h (module 'ndnSIM'): ns3::ndn::Face [class]
328 module.add_class('Face', parent=root_module['ns3::Object'])
329 ## ndn-face-container.h (module 'ndnSIM'): ns3::ndn::FaceContainer [class]
330 module.add_class('FaceContainer', parent=root_module['ns3::SimpleRefCount< ns3::ndn::FaceContainer, ns3::empty, ns3::DefaultDeleter<ns3::ndn::FaceContainer> >'])
331 ## ndn-fib.h (module 'ndnSIM'): ns3::ndn::Fib [class]
332 module.add_class('Fib', parent=root_module['ns3::Object'])
333 ## ndn-forwarding-strategy.h (module 'ndnSIM'): ns3::ndn::ForwardingStrategy [class]
334 module.add_class('ForwardingStrategy', parent=root_module['ns3::Object'])
335 ## ndn-global-routing-helper.h (module 'ndnSIM'): ns3::ndn::GlobalRoutingHelper [class]
336 module.add_class('GlobalRoutingHelper')
337 ## ndn-header-helper.h (module 'ndnSIM'): ns3::ndn::HeaderHelper [class]
338 module.add_class('HeaderHelper')
339 ## ndn-header-helper.h (module 'ndnSIM'): ns3::ndn::HeaderHelper::Type [enumeration]
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -0800340 module.add_enum('Type', ['INTEREST_CCNB', 'CONTENT_OBJECT_CCNB', 'INTEREST_NDNSIM', 'CONTENT_OBJECT_NDNSIM'], outer_class=root_module['ns3::ndn::HeaderHelper'])
341 ## ndn-interest.h (module 'ndnSIM'): ns3::ndn::InterestHeader [class]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700342 module.add_class('InterestHeader', parent=root_module['ns3::SimpleRefCount< ns3::ndn::InterestHeader, ns3::Header, ns3::DefaultDeleter<ns3::ndn::InterestHeader> >'])
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -0800343 ## ndn-interest.h (module 'ndnSIM'): ns3::ndn::InterestHeader [enumeration]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700344 module.add_enum('', ['NORMAL_INTEREST', 'NACK_LOOP', 'NACK_CONGESTION', 'NACK_GIVEUP_PIT'], outer_class=root_module['ns3::ndn::InterestHeader'])
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -0800345 ## ndn-interest.h (module 'ndnSIM'): ns3::ndn::InterestHeaderException [class]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700346 module.add_class('InterestHeaderException')
347 ## ndn-l3-protocol.h (module 'ndnSIM'): ns3::ndn::L3Protocol [class]
348 module.add_class('L3Protocol', parent=root_module['ns3::Object'])
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -0700349 ## ndn-limits.h (module 'ndnSIM'): ns3::ndn::Limits [class]
350 module.add_class('Limits', parent=root_module['ns3::Object'])
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -0800351 ## ndn-name.h (module 'ndnSIM'): ns3::ndn::Name [class]
Alexander Afanasyev32c07562013-02-01 12:58:43 -0800352 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 -0800353 ## ndn-name.h (module 'ndnSIM'): ns3::ndn::NameChecker [class]
Alexander Afanasyev32c07562013-02-01 12:58:43 -0800354 module.add_class('NameChecker', parent=root_module['ns3::AttributeChecker'])
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -0800355 ## ndn-name.h (module 'ndnSIM'): ns3::ndn::NameComponents [class]
Alexander Afanasyev32c07562013-02-01 12:58:43 -0800356 module.add_class('NameComponents', parent=root_module['ns3::ndn::Name'])
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -0800357 ## ndn-name.h (module 'ndnSIM'): ns3::ndn::NameComponentsChecker [class]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700358 module.add_class('NameComponentsChecker', parent=root_module['ns3::AttributeChecker'])
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -0800359 ## ndn-name.h (module 'ndnSIM'): ns3::ndn::NameComponentsValue [class]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700360 module.add_class('NameComponentsValue', parent=root_module['ns3::AttributeValue'])
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -0800361 ## ndn-name.h (module 'ndnSIM'): ns3::ndn::NameValue [class]
Alexander Afanasyev32c07562013-02-01 12:58:43 -0800362 module.add_class('NameValue', parent=root_module['ns3::AttributeValue'])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700363 ## ndn-net-device-face.h (module 'ndnSIM'): ns3::ndn::NetDeviceFace [class]
364 module.add_class('NetDeviceFace', parent=root_module['ns3::ndn::Face'])
365 ## ndn-pit.h (module 'ndnSIM'): ns3::ndn::Pit [class]
366 module.add_class('Pit', parent=root_module['ns3::Object'])
367 ## ndn-stack-helper.h (module 'ndnSIM'): ns3::ndn::StackHelper [class]
368 module.add_class('StackHelper')
369 ## ndn-header-helper.h (module 'ndnSIM'): ns3::ndn::UnknownHeaderException [class]
370 module.add_class('UnknownHeaderException')
371 ## ndn-app-face.h (module 'ndnSIM'): ns3::ndn::AppFace [class]
372 module.add_class('AppFace', parent=root_module['ns3::ndn::Face'])
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -0700373 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 -0700374 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')
375 module.add_container('std::list< std::string >', 'std::string', container_type='list')
376
377 ## Register a nested module for the namespace cs
378
379 nested_module = module.add_cpp_namespace('cs')
380 register_types_ns3_ndn_cs(nested_module)
381
382
383 ## Register a nested module for the namespace fib
384
385 nested_module = module.add_cpp_namespace('fib')
386 register_types_ns3_ndn_fib(nested_module)
387
388
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -0700389 ## Register a nested module for the namespace fw
390
391 nested_module = module.add_cpp_namespace('fw')
392 register_types_ns3_ndn_fw(nested_module)
393
394
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700395 ## Register a nested module for the namespace pit
396
397 nested_module = module.add_cpp_namespace('pit')
398 register_types_ns3_ndn_pit(nested_module)
399
400
401def register_types_ns3_ndn_cs(module):
402 root_module = module.get_root()
403
404 ## ndn-content-store.h (module 'ndnSIM'): ns3::ndn::cs::Entry [class]
405 module.add_class('Entry', parent=root_module['ns3::SimpleRefCount< ns3::ndn::cs::Entry, ns3::empty, ns3::DefaultDeleter<ns3::ndn::cs::Entry> >'])
406
407def register_types_ns3_ndn_fib(module):
408 root_module = module.get_root()
409
410 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::Entry [class]
Alexander Afanasyevf5c07742012-10-31 13:13:05 -0700411 module.add_class('Entry', parent=root_module['ns3::Object'])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700412 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::Entry::NoFaces [class]
413 module.add_class('NoFaces', outer_class=root_module['ns3::ndn::fib::Entry'])
414 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::FaceMetric [class]
415 module.add_class('FaceMetric')
416 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::FaceMetric::Status [enumeration]
417 module.add_enum('Status', ['NDN_FIB_GREEN', 'NDN_FIB_YELLOW', 'NDN_FIB_RED'], outer_class=root_module['ns3::ndn::fib::FaceMetric'])
418 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::FaceMetricContainer [struct]
419 module.add_class('FaceMetricContainer')
420 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::i_face [class]
421 module.add_class('i_face')
422 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::i_metric [class]
423 module.add_class('i_metric')
424 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::i_nth [class]
425 module.add_class('i_nth')
426
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -0700427def register_types_ns3_ndn_fw(module):
428 root_module = module.get_root()
429
430 ## ndn-fw-tag.h (module 'ndnSIM'): ns3::ndn::fw::Tag [class]
431 module.add_class('Tag')
432
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700433def register_types_ns3_ndn_pit(module):
434 root_module = module.get_root()
435
436 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::ndn::pit::Entry [class]
437 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 -0800438 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::ndn::pit::EntryIsNotEmpty [struct]
439 module.add_class('EntryIsNotEmpty')
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700440 ## ndn-pit-entry-incoming-face.h (module 'ndnSIM'): ns3::ndn::pit::IncomingFace [struct]
441 module.add_class('IncomingFace')
442 ## ndn-pit-entry-outgoing-face.h (module 'ndnSIM'): ns3::ndn::pit::OutgoingFace [struct]
443 module.add_class('OutgoingFace')
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700444 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::ndn::pit::i_face [class]
445 module.add_class('i_face')
446 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::ndn::pit::i_retx [class]
447 module.add_class('i_retx')
448 module.add_container('std::set< ns3::ndn::pit::IncomingFace >', 'ns3::ndn::pit::IncomingFace', container_type='set')
Alexander Afanasyevc202fd92012-09-03 21:46:00 -0700449 module.add_container('std::set< ns3::ndn::pit::OutgoingFace >', 'ns3::ndn::pit::OutgoingFace', container_type='set')
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700450 module.add_container('std::set< unsigned int >', 'unsigned int', container_type='set')
451
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800452def register_methods(root_module):
453 register_Ns3Address_methods(root_module, root_module['ns3::Address'])
454 register_Ns3ApplicationContainer_methods(root_module, root_module['ns3::ApplicationContainer'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800455 register_Ns3AttributeConstructionList_methods(root_module, root_module['ns3::AttributeConstructionList'])
456 register_Ns3AttributeConstructionListItem_methods(root_module, root_module['ns3::AttributeConstructionList::Item'])
457 register_Ns3Buffer_methods(root_module, root_module['ns3::Buffer'])
458 register_Ns3BufferIterator_methods(root_module, root_module['ns3::Buffer::Iterator'])
459 register_Ns3ByteTagIterator_methods(root_module, root_module['ns3::ByteTagIterator'])
460 register_Ns3ByteTagIteratorItem_methods(root_module, root_module['ns3::ByteTagIterator::Item'])
461 register_Ns3ByteTagList_methods(root_module, root_module['ns3::ByteTagList'])
462 register_Ns3ByteTagListIterator_methods(root_module, root_module['ns3::ByteTagList::Iterator'])
463 register_Ns3ByteTagListIteratorItem_methods(root_module, root_module['ns3::ByteTagList::Iterator::Item'])
464 register_Ns3CallbackBase_methods(root_module, root_module['ns3::CallbackBase'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800465 register_Ns3EventId_methods(root_module, root_module['ns3::EventId'])
466 register_Ns3Ipv4Address_methods(root_module, root_module['ns3::Ipv4Address'])
467 register_Ns3Ipv4Mask_methods(root_module, root_module['ns3::Ipv4Mask'])
468 register_Ns3Ipv6Address_methods(root_module, root_module['ns3::Ipv6Address'])
469 register_Ns3Ipv6Prefix_methods(root_module, root_module['ns3::Ipv6Prefix'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700470 register_Ns3NetDeviceContainer_methods(root_module, root_module['ns3::NetDeviceContainer'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800471 register_Ns3NodeContainer_methods(root_module, root_module['ns3::NodeContainer'])
472 register_Ns3ObjectBase_methods(root_module, root_module['ns3::ObjectBase'])
473 register_Ns3ObjectDeleter_methods(root_module, root_module['ns3::ObjectDeleter'])
474 register_Ns3ObjectFactory_methods(root_module, root_module['ns3::ObjectFactory'])
475 register_Ns3PacketMetadata_methods(root_module, root_module['ns3::PacketMetadata'])
476 register_Ns3PacketMetadataItem_methods(root_module, root_module['ns3::PacketMetadata::Item'])
477 register_Ns3PacketMetadataItemIterator_methods(root_module, root_module['ns3::PacketMetadata::ItemIterator'])
Alexander Afanasyevad5acce2012-05-31 12:43:08 -0700478 register_Ns3PacketTagIterator_methods(root_module, root_module['ns3::PacketTagIterator'])
479 register_Ns3PacketTagIteratorItem_methods(root_module, root_module['ns3::PacketTagIterator::Item'])
480 register_Ns3PacketTagList_methods(root_module, root_module['ns3::PacketTagList'])
481 register_Ns3PacketTagListTagData_methods(root_module, root_module['ns3::PacketTagList::TagData'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700482 register_Ns3RandomVariable_methods(root_module, root_module['ns3::RandomVariable'])
483 register_Ns3RngSeedManager_methods(root_module, root_module['ns3::RngSeedManager'])
484 register_Ns3SequentialVariable_methods(root_module, root_module['ns3::SequentialVariable'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800485 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 -0700486 register_Ns3Tag_methods(root_module, root_module['ns3::Tag'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800487 register_Ns3TagBuffer_methods(root_module, root_module['ns3::TagBuffer'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700488 register_Ns3TriangularVariable_methods(root_module, root_module['ns3::TriangularVariable'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800489 register_Ns3TypeId_methods(root_module, root_module['ns3::TypeId'])
490 register_Ns3TypeIdAttributeInformation_methods(root_module, root_module['ns3::TypeId::AttributeInformation'])
491 register_Ns3TypeIdTraceSourceInformation_methods(root_module, root_module['ns3::TypeId::TraceSourceInformation'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700492 register_Ns3UniformVariable_methods(root_module, root_module['ns3::UniformVariable'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700493 register_Ns3WeibullVariable_methods(root_module, root_module['ns3::WeibullVariable'])
494 register_Ns3ZetaVariable_methods(root_module, root_module['ns3::ZetaVariable'])
495 register_Ns3ZipfVariable_methods(root_module, root_module['ns3::ZipfVariable'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800496 register_Ns3Empty_methods(root_module, root_module['ns3::empty'])
497 register_Ns3Int64x64_t_methods(root_module, root_module['ns3::int64x64_t'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800498 register_Ns3Chunk_methods(root_module, root_module['ns3::Chunk'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700499 register_Ns3ConstantVariable_methods(root_module, root_module['ns3::ConstantVariable'])
500 register_Ns3DeterministicVariable_methods(root_module, root_module['ns3::DeterministicVariable'])
501 register_Ns3EmpiricalVariable_methods(root_module, root_module['ns3::EmpiricalVariable'])
502 register_Ns3ErlangVariable_methods(root_module, root_module['ns3::ErlangVariable'])
503 register_Ns3ExponentialVariable_methods(root_module, root_module['ns3::ExponentialVariable'])
504 register_Ns3GammaVariable_methods(root_module, root_module['ns3::GammaVariable'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800505 register_Ns3Header_methods(root_module, root_module['ns3::Header'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700506 register_Ns3IntEmpiricalVariable_methods(root_module, root_module['ns3::IntEmpiricalVariable'])
507 register_Ns3LogNormalVariable_methods(root_module, root_module['ns3::LogNormalVariable'])
508 register_Ns3NormalVariable_methods(root_module, root_module['ns3::NormalVariable'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800509 register_Ns3Object_methods(root_module, root_module['ns3::Object'])
510 register_Ns3ObjectAggregateIterator_methods(root_module, root_module['ns3::Object::AggregateIterator'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700511 register_Ns3ParetoVariable_methods(root_module, root_module['ns3::ParetoVariable'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800512 register_Ns3SimpleRefCount__Ns3AttributeAccessor_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeAccessor__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> >'])
513 register_Ns3SimpleRefCount__Ns3AttributeChecker_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeChecker__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter<ns3::AttributeChecker> >'])
514 register_Ns3SimpleRefCount__Ns3AttributeValue_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeValue__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter<ns3::AttributeValue> >'])
515 register_Ns3SimpleRefCount__Ns3CallbackImplBase_Ns3Empty_Ns3DefaultDeleter__lt__ns3CallbackImplBase__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> >'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800516 register_Ns3SimpleRefCount__Ns3EventImpl_Ns3Empty_Ns3DefaultDeleter__lt__ns3EventImpl__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::EventImpl, ns3::empty, ns3::DefaultDeleter<ns3::EventImpl> >'])
517 register_Ns3SimpleRefCount__Ns3NixVector_Ns3Empty_Ns3DefaultDeleter__lt__ns3NixVector__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::NixVector, ns3::empty, ns3::DefaultDeleter<ns3::NixVector> >'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800518 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 -0700519 register_Ns3SimpleRefCount__Ns3TopologyReader_Ns3Empty_Ns3DefaultDeleter__lt__ns3TopologyReader__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::TopologyReader, ns3::empty, ns3::DefaultDeleter<ns3::TopologyReader> >'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800520 register_Ns3SimpleRefCount__Ns3TraceSourceAccessor_Ns3Empty_Ns3DefaultDeleter__lt__ns3TraceSourceAccessor__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter<ns3::TraceSourceAccessor> >'])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700521 register_Ns3SimpleRefCount__Ns3NdnContentObjectHeader_Ns3Header_Ns3DefaultDeleter__lt__ns3NdnContentObjectHeader__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::ndn::ContentObjectHeader, ns3::Header, ns3::DefaultDeleter<ns3::ndn::ContentObjectHeader> >'])
522 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> >'])
523 register_Ns3SimpleRefCount__Ns3NdnInterestHeader_Ns3Header_Ns3DefaultDeleter__lt__ns3NdnInterestHeader__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::ndn::InterestHeader, ns3::Header, ns3::DefaultDeleter<ns3::ndn::InterestHeader> >'])
Alexander Afanasyev32c07562013-02-01 12:58:43 -0800524 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 -0700525 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 -0700526 register_Ns3SimpleRefCount__Ns3NdnPitEntry_Ns3Empty_Ns3DefaultDeleter__lt__ns3NdnPitEntry__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::ndn::pit::Entry, ns3::empty, ns3::DefaultDeleter<ns3::ndn::pit::Entry> >'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800527 register_Ns3Time_methods(root_module, root_module['ns3::Time'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700528 register_Ns3TopologyReader_methods(root_module, root_module['ns3::TopologyReader'])
529 register_Ns3TopologyReaderLink_methods(root_module, root_module['ns3::TopologyReader::Link'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800530 register_Ns3TraceSourceAccessor_methods(root_module, root_module['ns3::TraceSourceAccessor'])
531 register_Ns3Trailer_methods(root_module, root_module['ns3::Trailer'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700532 register_Ns3AnnotatedTopologyReader_methods(root_module, root_module['ns3::AnnotatedTopologyReader'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800533 register_Ns3Application_methods(root_module, root_module['ns3::Application'])
534 register_Ns3AttributeAccessor_methods(root_module, root_module['ns3::AttributeAccessor'])
535 register_Ns3AttributeChecker_methods(root_module, root_module['ns3::AttributeChecker'])
536 register_Ns3AttributeValue_methods(root_module, root_module['ns3::AttributeValue'])
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -0700537 register_Ns3BooleanChecker_methods(root_module, root_module['ns3::BooleanChecker'])
538 register_Ns3BooleanValue_methods(root_module, root_module['ns3::BooleanValue'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800539 register_Ns3CallbackChecker_methods(root_module, root_module['ns3::CallbackChecker'])
540 register_Ns3CallbackImplBase_methods(root_module, root_module['ns3::CallbackImplBase'])
541 register_Ns3CallbackValue_methods(root_module, root_module['ns3::CallbackValue'])
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -0700542 register_Ns3DoubleValue_methods(root_module, root_module['ns3::DoubleValue'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800543 register_Ns3EmptyAttributeValue_methods(root_module, root_module['ns3::EmptyAttributeValue'])
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -0700544 register_Ns3EnumChecker_methods(root_module, root_module['ns3::EnumChecker'])
545 register_Ns3EnumValue_methods(root_module, root_module['ns3::EnumValue'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800546 register_Ns3EventImpl_methods(root_module, root_module['ns3::EventImpl'])
547 register_Ns3IntegerValue_methods(root_module, root_module['ns3::IntegerValue'])
548 register_Ns3Ipv4AddressChecker_methods(root_module, root_module['ns3::Ipv4AddressChecker'])
549 register_Ns3Ipv4AddressValue_methods(root_module, root_module['ns3::Ipv4AddressValue'])
550 register_Ns3Ipv4MaskChecker_methods(root_module, root_module['ns3::Ipv4MaskChecker'])
551 register_Ns3Ipv4MaskValue_methods(root_module, root_module['ns3::Ipv4MaskValue'])
552 register_Ns3Ipv6AddressChecker_methods(root_module, root_module['ns3::Ipv6AddressChecker'])
553 register_Ns3Ipv6AddressValue_methods(root_module, root_module['ns3::Ipv6AddressValue'])
554 register_Ns3Ipv6PrefixChecker_methods(root_module, root_module['ns3::Ipv6PrefixChecker'])
555 register_Ns3Ipv6PrefixValue_methods(root_module, root_module['ns3::Ipv6PrefixValue'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800556 register_Ns3NetDevice_methods(root_module, root_module['ns3::NetDevice'])
557 register_Ns3NixVector_methods(root_module, root_module['ns3::NixVector'])
558 register_Ns3Node_methods(root_module, root_module['ns3::Node'])
559 register_Ns3ObjectFactoryChecker_methods(root_module, root_module['ns3::ObjectFactoryChecker'])
560 register_Ns3ObjectFactoryValue_methods(root_module, root_module['ns3::ObjectFactoryValue'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800561 register_Ns3Packet_methods(root_module, root_module['ns3::Packet'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700562 register_Ns3RandomVariableChecker_methods(root_module, root_module['ns3::RandomVariableChecker'])
563 register_Ns3RandomVariableValue_methods(root_module, root_module['ns3::RandomVariableValue'])
564 register_Ns3RocketfuelWeightsReader_methods(root_module, root_module['ns3::RocketfuelWeightsReader'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800565 register_Ns3TimeChecker_methods(root_module, root_module['ns3::TimeChecker'])
566 register_Ns3TimeValue_methods(root_module, root_module['ns3::TimeValue'])
567 register_Ns3TypeIdChecker_methods(root_module, root_module['ns3::TypeIdChecker'])
568 register_Ns3TypeIdValue_methods(root_module, root_module['ns3::TypeIdValue'])
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -0700569 register_Ns3UintegerValue_methods(root_module, root_module['ns3::UintegerValue'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800570 register_Ns3AddressChecker_methods(root_module, root_module['ns3::AddressChecker'])
571 register_Ns3AddressValue_methods(root_module, root_module['ns3::AddressValue'])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700572 register_Ns3NdnApp_methods(root_module, root_module['ns3::ndn::App'])
573 register_Ns3NdnAppHelper_methods(root_module, root_module['ns3::ndn::AppHelper'])
574 register_Ns3NdnContentObjectHeader_methods(root_module, root_module['ns3::ndn::ContentObjectHeader'])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700575 register_Ns3NdnContentObjectHeaderException_methods(root_module, root_module['ns3::ndn::ContentObjectHeaderException'])
576 register_Ns3NdnContentObjectTail_methods(root_module, root_module['ns3::ndn::ContentObjectTail'])
577 register_Ns3NdnContentStore_methods(root_module, root_module['ns3::ndn::ContentStore'])
578 register_Ns3NdnFace_methods(root_module, root_module['ns3::ndn::Face'])
579 register_Ns3NdnFaceContainer_methods(root_module, root_module['ns3::ndn::FaceContainer'])
580 register_Ns3NdnFib_methods(root_module, root_module['ns3::ndn::Fib'])
581 register_Ns3NdnForwardingStrategy_methods(root_module, root_module['ns3::ndn::ForwardingStrategy'])
582 register_Ns3NdnGlobalRoutingHelper_methods(root_module, root_module['ns3::ndn::GlobalRoutingHelper'])
583 register_Ns3NdnHeaderHelper_methods(root_module, root_module['ns3::ndn::HeaderHelper'])
584 register_Ns3NdnInterestHeader_methods(root_module, root_module['ns3::ndn::InterestHeader'])
585 register_Ns3NdnInterestHeaderException_methods(root_module, root_module['ns3::ndn::InterestHeaderException'])
586 register_Ns3NdnL3Protocol_methods(root_module, root_module['ns3::ndn::L3Protocol'])
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -0700587 register_Ns3NdnLimits_methods(root_module, root_module['ns3::ndn::Limits'])
Alexander Afanasyev32c07562013-02-01 12:58:43 -0800588 register_Ns3NdnName_methods(root_module, root_module['ns3::ndn::Name'])
589 register_Ns3NdnNameChecker_methods(root_module, root_module['ns3::ndn::NameChecker'])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700590 register_Ns3NdnNameComponents_methods(root_module, root_module['ns3::ndn::NameComponents'])
591 register_Ns3NdnNameComponentsChecker_methods(root_module, root_module['ns3::ndn::NameComponentsChecker'])
592 register_Ns3NdnNameComponentsValue_methods(root_module, root_module['ns3::ndn::NameComponentsValue'])
Alexander Afanasyev32c07562013-02-01 12:58:43 -0800593 register_Ns3NdnNameValue_methods(root_module, root_module['ns3::ndn::NameValue'])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700594 register_Ns3NdnNetDeviceFace_methods(root_module, root_module['ns3::ndn::NetDeviceFace'])
595 register_Ns3NdnPit_methods(root_module, root_module['ns3::ndn::Pit'])
596 register_Ns3NdnStackHelper_methods(root_module, root_module['ns3::ndn::StackHelper'])
597 register_Ns3NdnUnknownHeaderException_methods(root_module, root_module['ns3::ndn::UnknownHeaderException'])
598 register_Ns3NdnAppFace_methods(root_module, root_module['ns3::ndn::AppFace'])
599 register_Ns3NdnCsEntry_methods(root_module, root_module['ns3::ndn::cs::Entry'])
600 register_Ns3NdnFibEntry_methods(root_module, root_module['ns3::ndn::fib::Entry'])
601 register_Ns3NdnFibEntryNoFaces_methods(root_module, root_module['ns3::ndn::fib::Entry::NoFaces'])
602 register_Ns3NdnFibFaceMetric_methods(root_module, root_module['ns3::ndn::fib::FaceMetric'])
603 register_Ns3NdnFibFaceMetricContainer_methods(root_module, root_module['ns3::ndn::fib::FaceMetricContainer'])
604 register_Ns3NdnFibI_face_methods(root_module, root_module['ns3::ndn::fib::i_face'])
605 register_Ns3NdnFibI_metric_methods(root_module, root_module['ns3::ndn::fib::i_metric'])
606 register_Ns3NdnFibI_nth_methods(root_module, root_module['ns3::ndn::fib::i_nth'])
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -0700607 register_Ns3NdnFwTag_methods(root_module, root_module['ns3::ndn::fw::Tag'])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700608 register_Ns3NdnPitEntry_methods(root_module, root_module['ns3::ndn::pit::Entry'])
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -0800609 register_Ns3NdnPitEntryIsNotEmpty_methods(root_module, root_module['ns3::ndn::pit::EntryIsNotEmpty'])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700610 register_Ns3NdnPitIncomingFace_methods(root_module, root_module['ns3::ndn::pit::IncomingFace'])
611 register_Ns3NdnPitOutgoingFace_methods(root_module, root_module['ns3::ndn::pit::OutgoingFace'])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700612 register_Ns3NdnPitI_face_methods(root_module, root_module['ns3::ndn::pit::i_face'])
613 register_Ns3NdnPitI_retx_methods(root_module, root_module['ns3::ndn::pit::i_retx'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800614 return
615
616def register_Ns3Address_methods(root_module, cls):
617 cls.add_binary_comparison_operator('!=')
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -0700618 cls.add_output_stream_operator()
Alexander Afanasyeva28ec562012-10-25 14:07:32 -0700619 cls.add_binary_comparison_operator('==')
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800620 cls.add_binary_comparison_operator('<')
621 ## address.h (module 'network'): ns3::Address::Address() [constructor]
622 cls.add_constructor([])
623 ## address.h (module 'network'): ns3::Address::Address(uint8_t type, uint8_t const * buffer, uint8_t len) [constructor]
624 cls.add_constructor([param('uint8_t', 'type'), param('uint8_t const *', 'buffer'), param('uint8_t', 'len')])
625 ## address.h (module 'network'): ns3::Address::Address(ns3::Address const & address) [copy constructor]
626 cls.add_constructor([param('ns3::Address const &', 'address')])
627 ## address.h (module 'network'): bool ns3::Address::CheckCompatible(uint8_t type, uint8_t len) const [member function]
628 cls.add_method('CheckCompatible',
629 'bool',
630 [param('uint8_t', 'type'), param('uint8_t', 'len')],
631 is_const=True)
632 ## address.h (module 'network'): uint32_t ns3::Address::CopyAllFrom(uint8_t const * buffer, uint8_t len) [member function]
633 cls.add_method('CopyAllFrom',
634 'uint32_t',
635 [param('uint8_t const *', 'buffer'), param('uint8_t', 'len')])
636 ## address.h (module 'network'): uint32_t ns3::Address::CopyAllTo(uint8_t * buffer, uint8_t len) const [member function]
637 cls.add_method('CopyAllTo',
638 'uint32_t',
639 [param('uint8_t *', 'buffer'), param('uint8_t', 'len')],
640 is_const=True)
641 ## address.h (module 'network'): uint32_t ns3::Address::CopyFrom(uint8_t const * buffer, uint8_t len) [member function]
642 cls.add_method('CopyFrom',
643 'uint32_t',
644 [param('uint8_t const *', 'buffer'), param('uint8_t', 'len')])
645 ## address.h (module 'network'): uint32_t ns3::Address::CopyTo(uint8_t * buffer) const [member function]
646 cls.add_method('CopyTo',
647 'uint32_t',
648 [param('uint8_t *', 'buffer')],
649 is_const=True)
650 ## address.h (module 'network'): void ns3::Address::Deserialize(ns3::TagBuffer buffer) [member function]
651 cls.add_method('Deserialize',
652 'void',
653 [param('ns3::TagBuffer', 'buffer')])
654 ## address.h (module 'network'): uint8_t ns3::Address::GetLength() const [member function]
655 cls.add_method('GetLength',
656 'uint8_t',
657 [],
658 is_const=True)
659 ## address.h (module 'network'): uint32_t ns3::Address::GetSerializedSize() const [member function]
660 cls.add_method('GetSerializedSize',
661 'uint32_t',
662 [],
663 is_const=True)
664 ## address.h (module 'network'): bool ns3::Address::IsInvalid() const [member function]
665 cls.add_method('IsInvalid',
666 'bool',
667 [],
668 is_const=True)
669 ## address.h (module 'network'): bool ns3::Address::IsMatchingType(uint8_t type) const [member function]
670 cls.add_method('IsMatchingType',
671 'bool',
672 [param('uint8_t', 'type')],
673 is_const=True)
674 ## address.h (module 'network'): static uint8_t ns3::Address::Register() [member function]
675 cls.add_method('Register',
676 'uint8_t',
677 [],
678 is_static=True)
679 ## address.h (module 'network'): void ns3::Address::Serialize(ns3::TagBuffer buffer) const [member function]
680 cls.add_method('Serialize',
681 'void',
682 [param('ns3::TagBuffer', 'buffer')],
683 is_const=True)
684 return
685
686def register_Ns3ApplicationContainer_methods(root_module, cls):
687 ## application-container.h (module 'network'): ns3::ApplicationContainer::ApplicationContainer(ns3::ApplicationContainer const & arg0) [copy constructor]
688 cls.add_constructor([param('ns3::ApplicationContainer const &', 'arg0')])
689 ## application-container.h (module 'network'): ns3::ApplicationContainer::ApplicationContainer() [constructor]
690 cls.add_constructor([])
691 ## application-container.h (module 'network'): ns3::ApplicationContainer::ApplicationContainer(ns3::Ptr<ns3::Application> application) [constructor]
692 cls.add_constructor([param('ns3::Ptr< ns3::Application >', 'application')])
693 ## application-container.h (module 'network'): ns3::ApplicationContainer::ApplicationContainer(std::string name) [constructor]
694 cls.add_constructor([param('std::string', 'name')])
695 ## application-container.h (module 'network'): void ns3::ApplicationContainer::Add(ns3::ApplicationContainer other) [member function]
696 cls.add_method('Add',
697 'void',
698 [param('ns3::ApplicationContainer', 'other')])
699 ## application-container.h (module 'network'): void ns3::ApplicationContainer::Add(ns3::Ptr<ns3::Application> application) [member function]
700 cls.add_method('Add',
701 'void',
702 [param('ns3::Ptr< ns3::Application >', 'application')])
703 ## application-container.h (module 'network'): void ns3::ApplicationContainer::Add(std::string name) [member function]
704 cls.add_method('Add',
705 'void',
706 [param('std::string', 'name')])
707 ## 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]
708 cls.add_method('Begin',
709 '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Application > const, std::vector< ns3::Ptr< ns3::Application > > >',
710 [],
711 is_const=True)
712 ## 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]
713 cls.add_method('End',
714 '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Application > const, std::vector< ns3::Ptr< ns3::Application > > >',
715 [],
716 is_const=True)
717 ## application-container.h (module 'network'): ns3::Ptr<ns3::Application> ns3::ApplicationContainer::Get(uint32_t i) const [member function]
718 cls.add_method('Get',
719 'ns3::Ptr< ns3::Application >',
720 [param('uint32_t', 'i')],
721 is_const=True)
722 ## application-container.h (module 'network'): uint32_t ns3::ApplicationContainer::GetN() const [member function]
723 cls.add_method('GetN',
724 'uint32_t',
725 [],
726 is_const=True)
727 ## application-container.h (module 'network'): void ns3::ApplicationContainer::Start(ns3::Time start) [member function]
728 cls.add_method('Start',
729 'void',
730 [param('ns3::Time', 'start')])
731 ## application-container.h (module 'network'): void ns3::ApplicationContainer::Stop(ns3::Time stop) [member function]
732 cls.add_method('Stop',
733 'void',
734 [param('ns3::Time', 'stop')])
735 return
736
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800737def register_Ns3AttributeConstructionList_methods(root_module, cls):
738 ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::AttributeConstructionList(ns3::AttributeConstructionList const & arg0) [copy constructor]
739 cls.add_constructor([param('ns3::AttributeConstructionList const &', 'arg0')])
740 ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::AttributeConstructionList() [constructor]
741 cls.add_constructor([])
742 ## 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]
743 cls.add_method('Add',
744 'void',
745 [param('std::string', 'name'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker'), param('ns3::Ptr< ns3::AttributeValue >', 'value')])
746 ## attribute-construction-list.h (module 'core'): std::_List_const_iterator<ns3::AttributeConstructionList::Item> ns3::AttributeConstructionList::Begin() const [member function]
747 cls.add_method('Begin',
748 'std::_List_const_iterator< ns3::AttributeConstructionList::Item >',
749 [],
750 is_const=True)
751 ## attribute-construction-list.h (module 'core'): std::_List_const_iterator<ns3::AttributeConstructionList::Item> ns3::AttributeConstructionList::End() const [member function]
752 cls.add_method('End',
753 'std::_List_const_iterator< ns3::AttributeConstructionList::Item >',
754 [],
755 is_const=True)
756 ## attribute-construction-list.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::AttributeConstructionList::Find(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
757 cls.add_method('Find',
758 'ns3::Ptr< ns3::AttributeValue >',
759 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
760 is_const=True)
761 return
762
763def register_Ns3AttributeConstructionListItem_methods(root_module, cls):
764 ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item::Item() [constructor]
765 cls.add_constructor([])
766 ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item::Item(ns3::AttributeConstructionList::Item const & arg0) [copy constructor]
767 cls.add_constructor([param('ns3::AttributeConstructionList::Item const &', 'arg0')])
768 ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item::checker [variable]
769 cls.add_instance_attribute('checker', 'ns3::Ptr< ns3::AttributeChecker const >', is_const=False)
770 ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item::name [variable]
771 cls.add_instance_attribute('name', 'std::string', is_const=False)
772 ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item::value [variable]
773 cls.add_instance_attribute('value', 'ns3::Ptr< ns3::AttributeValue >', is_const=False)
774 return
775
776def register_Ns3Buffer_methods(root_module, cls):
777 ## buffer.h (module 'network'): ns3::Buffer::Buffer() [constructor]
778 cls.add_constructor([])
779 ## buffer.h (module 'network'): ns3::Buffer::Buffer(uint32_t dataSize) [constructor]
780 cls.add_constructor([param('uint32_t', 'dataSize')])
781 ## buffer.h (module 'network'): ns3::Buffer::Buffer(uint32_t dataSize, bool initialize) [constructor]
782 cls.add_constructor([param('uint32_t', 'dataSize'), param('bool', 'initialize')])
783 ## buffer.h (module 'network'): ns3::Buffer::Buffer(ns3::Buffer const & o) [copy constructor]
784 cls.add_constructor([param('ns3::Buffer const &', 'o')])
785 ## buffer.h (module 'network'): bool ns3::Buffer::AddAtEnd(uint32_t end) [member function]
786 cls.add_method('AddAtEnd',
787 'bool',
788 [param('uint32_t', 'end')])
789 ## buffer.h (module 'network'): void ns3::Buffer::AddAtEnd(ns3::Buffer const & o) [member function]
790 cls.add_method('AddAtEnd',
791 'void',
792 [param('ns3::Buffer const &', 'o')])
793 ## buffer.h (module 'network'): bool ns3::Buffer::AddAtStart(uint32_t start) [member function]
794 cls.add_method('AddAtStart',
795 'bool',
796 [param('uint32_t', 'start')])
797 ## buffer.h (module 'network'): ns3::Buffer::Iterator ns3::Buffer::Begin() const [member function]
798 cls.add_method('Begin',
799 'ns3::Buffer::Iterator',
800 [],
801 is_const=True)
802 ## buffer.h (module 'network'): void ns3::Buffer::CopyData(std::ostream * os, uint32_t size) const [member function]
803 cls.add_method('CopyData',
804 'void',
805 [param('std::ostream *', 'os'), param('uint32_t', 'size')],
806 is_const=True)
807 ## buffer.h (module 'network'): uint32_t ns3::Buffer::CopyData(uint8_t * buffer, uint32_t size) const [member function]
808 cls.add_method('CopyData',
809 'uint32_t',
810 [param('uint8_t *', 'buffer'), param('uint32_t', 'size')],
811 is_const=True)
812 ## buffer.h (module 'network'): ns3::Buffer ns3::Buffer::CreateFragment(uint32_t start, uint32_t length) const [member function]
813 cls.add_method('CreateFragment',
814 'ns3::Buffer',
815 [param('uint32_t', 'start'), param('uint32_t', 'length')],
816 is_const=True)
817 ## buffer.h (module 'network'): ns3::Buffer ns3::Buffer::CreateFullCopy() const [member function]
818 cls.add_method('CreateFullCopy',
819 'ns3::Buffer',
820 [],
821 is_const=True)
822 ## buffer.h (module 'network'): uint32_t ns3::Buffer::Deserialize(uint8_t const * buffer, uint32_t size) [member function]
823 cls.add_method('Deserialize',
824 'uint32_t',
825 [param('uint8_t const *', 'buffer'), param('uint32_t', 'size')])
826 ## buffer.h (module 'network'): ns3::Buffer::Iterator ns3::Buffer::End() const [member function]
827 cls.add_method('End',
828 'ns3::Buffer::Iterator',
829 [],
830 is_const=True)
831 ## buffer.h (module 'network'): int32_t ns3::Buffer::GetCurrentEndOffset() const [member function]
832 cls.add_method('GetCurrentEndOffset',
833 'int32_t',
834 [],
835 is_const=True)
836 ## buffer.h (module 'network'): int32_t ns3::Buffer::GetCurrentStartOffset() const [member function]
837 cls.add_method('GetCurrentStartOffset',
838 'int32_t',
839 [],
840 is_const=True)
841 ## buffer.h (module 'network'): uint32_t ns3::Buffer::GetSerializedSize() const [member function]
842 cls.add_method('GetSerializedSize',
843 'uint32_t',
844 [],
845 is_const=True)
846 ## buffer.h (module 'network'): uint32_t ns3::Buffer::GetSize() const [member function]
847 cls.add_method('GetSize',
848 'uint32_t',
849 [],
850 is_const=True)
851 ## buffer.h (module 'network'): uint8_t const * ns3::Buffer::PeekData() const [member function]
852 cls.add_method('PeekData',
853 'uint8_t const *',
854 [],
855 is_const=True)
856 ## buffer.h (module 'network'): void ns3::Buffer::RemoveAtEnd(uint32_t end) [member function]
857 cls.add_method('RemoveAtEnd',
858 'void',
859 [param('uint32_t', 'end')])
860 ## buffer.h (module 'network'): void ns3::Buffer::RemoveAtStart(uint32_t start) [member function]
861 cls.add_method('RemoveAtStart',
862 'void',
863 [param('uint32_t', 'start')])
864 ## buffer.h (module 'network'): uint32_t ns3::Buffer::Serialize(uint8_t * buffer, uint32_t maxSize) const [member function]
865 cls.add_method('Serialize',
866 'uint32_t',
867 [param('uint8_t *', 'buffer'), param('uint32_t', 'maxSize')],
868 is_const=True)
869 return
870
871def register_Ns3BufferIterator_methods(root_module, cls):
872 ## buffer.h (module 'network'): ns3::Buffer::Iterator::Iterator(ns3::Buffer::Iterator const & arg0) [copy constructor]
873 cls.add_constructor([param('ns3::Buffer::Iterator const &', 'arg0')])
874 ## buffer.h (module 'network'): ns3::Buffer::Iterator::Iterator() [constructor]
875 cls.add_constructor([])
876 ## buffer.h (module 'network'): uint16_t ns3::Buffer::Iterator::CalculateIpChecksum(uint16_t size) [member function]
877 cls.add_method('CalculateIpChecksum',
878 'uint16_t',
879 [param('uint16_t', 'size')])
880 ## buffer.h (module 'network'): uint16_t ns3::Buffer::Iterator::CalculateIpChecksum(uint16_t size, uint32_t initialChecksum) [member function]
881 cls.add_method('CalculateIpChecksum',
882 'uint16_t',
883 [param('uint16_t', 'size'), param('uint32_t', 'initialChecksum')])
884 ## buffer.h (module 'network'): uint32_t ns3::Buffer::Iterator::GetDistanceFrom(ns3::Buffer::Iterator const & o) const [member function]
885 cls.add_method('GetDistanceFrom',
886 'uint32_t',
887 [param('ns3::Buffer::Iterator const &', 'o')],
888 is_const=True)
889 ## buffer.h (module 'network'): uint32_t ns3::Buffer::Iterator::GetSize() const [member function]
890 cls.add_method('GetSize',
891 'uint32_t',
892 [],
893 is_const=True)
894 ## buffer.h (module 'network'): bool ns3::Buffer::Iterator::IsEnd() const [member function]
895 cls.add_method('IsEnd',
896 'bool',
897 [],
898 is_const=True)
899 ## buffer.h (module 'network'): bool ns3::Buffer::Iterator::IsStart() const [member function]
900 cls.add_method('IsStart',
901 'bool',
902 [],
903 is_const=True)
904 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Next() [member function]
905 cls.add_method('Next',
906 'void',
907 [])
908 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Next(uint32_t delta) [member function]
909 cls.add_method('Next',
910 'void',
911 [param('uint32_t', 'delta')])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -0700912 ## buffer.h (module 'network'): uint8_t ns3::Buffer::Iterator::PeekU8() [member function]
913 cls.add_method('PeekU8',
914 'uint8_t',
915 [])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800916 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Prev() [member function]
917 cls.add_method('Prev',
918 'void',
919 [])
920 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Prev(uint32_t delta) [member function]
921 cls.add_method('Prev',
922 'void',
923 [param('uint32_t', 'delta')])
924 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Read(uint8_t * buffer, uint32_t size) [member function]
925 cls.add_method('Read',
926 'void',
927 [param('uint8_t *', 'buffer'), param('uint32_t', 'size')])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -0700928 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Read(ns3::Buffer::Iterator start, uint32_t size) [member function]
929 cls.add_method('Read',
930 'void',
931 [param('ns3::Buffer::Iterator', 'start'), param('uint32_t', 'size')])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800932 ## buffer.h (module 'network'): uint16_t ns3::Buffer::Iterator::ReadLsbtohU16() [member function]
933 cls.add_method('ReadLsbtohU16',
934 'uint16_t',
935 [])
936 ## buffer.h (module 'network'): uint32_t ns3::Buffer::Iterator::ReadLsbtohU32() [member function]
937 cls.add_method('ReadLsbtohU32',
938 'uint32_t',
939 [])
940 ## buffer.h (module 'network'): uint64_t ns3::Buffer::Iterator::ReadLsbtohU64() [member function]
941 cls.add_method('ReadLsbtohU64',
942 'uint64_t',
943 [])
944 ## buffer.h (module 'network'): uint16_t ns3::Buffer::Iterator::ReadNtohU16() [member function]
945 cls.add_method('ReadNtohU16',
946 'uint16_t',
947 [])
948 ## buffer.h (module 'network'): uint32_t ns3::Buffer::Iterator::ReadNtohU32() [member function]
949 cls.add_method('ReadNtohU32',
950 'uint32_t',
951 [])
952 ## buffer.h (module 'network'): uint64_t ns3::Buffer::Iterator::ReadNtohU64() [member function]
953 cls.add_method('ReadNtohU64',
954 'uint64_t',
955 [])
956 ## buffer.h (module 'network'): uint16_t ns3::Buffer::Iterator::ReadU16() [member function]
957 cls.add_method('ReadU16',
958 'uint16_t',
959 [])
960 ## buffer.h (module 'network'): uint32_t ns3::Buffer::Iterator::ReadU32() [member function]
961 cls.add_method('ReadU32',
962 'uint32_t',
963 [])
964 ## buffer.h (module 'network'): uint64_t ns3::Buffer::Iterator::ReadU64() [member function]
965 cls.add_method('ReadU64',
966 'uint64_t',
967 [])
968 ## buffer.h (module 'network'): uint8_t ns3::Buffer::Iterator::ReadU8() [member function]
969 cls.add_method('ReadU8',
970 'uint8_t',
971 [])
972 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Write(uint8_t const * buffer, uint32_t size) [member function]
973 cls.add_method('Write',
974 'void',
975 [param('uint8_t const *', 'buffer'), param('uint32_t', 'size')])
976 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Write(ns3::Buffer::Iterator start, ns3::Buffer::Iterator end) [member function]
977 cls.add_method('Write',
978 'void',
979 [param('ns3::Buffer::Iterator', 'start'), param('ns3::Buffer::Iterator', 'end')])
980 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteHtolsbU16(uint16_t data) [member function]
981 cls.add_method('WriteHtolsbU16',
982 'void',
983 [param('uint16_t', 'data')])
984 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteHtolsbU32(uint32_t data) [member function]
985 cls.add_method('WriteHtolsbU32',
986 'void',
987 [param('uint32_t', 'data')])
988 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteHtolsbU64(uint64_t data) [member function]
989 cls.add_method('WriteHtolsbU64',
990 'void',
991 [param('uint64_t', 'data')])
992 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteHtonU16(uint16_t data) [member function]
993 cls.add_method('WriteHtonU16',
994 'void',
995 [param('uint16_t', 'data')])
996 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteHtonU32(uint32_t data) [member function]
997 cls.add_method('WriteHtonU32',
998 'void',
999 [param('uint32_t', 'data')])
1000 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteHtonU64(uint64_t data) [member function]
1001 cls.add_method('WriteHtonU64',
1002 'void',
1003 [param('uint64_t', 'data')])
1004 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteU16(uint16_t data) [member function]
1005 cls.add_method('WriteU16',
1006 'void',
1007 [param('uint16_t', 'data')])
1008 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteU32(uint32_t data) [member function]
1009 cls.add_method('WriteU32',
1010 'void',
1011 [param('uint32_t', 'data')])
1012 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteU64(uint64_t data) [member function]
1013 cls.add_method('WriteU64',
1014 'void',
1015 [param('uint64_t', 'data')])
1016 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteU8(uint8_t data) [member function]
1017 cls.add_method('WriteU8',
1018 'void',
1019 [param('uint8_t', 'data')])
1020 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteU8(uint8_t data, uint32_t len) [member function]
1021 cls.add_method('WriteU8',
1022 'void',
1023 [param('uint8_t', 'data'), param('uint32_t', 'len')])
1024 return
1025
1026def register_Ns3ByteTagIterator_methods(root_module, cls):
1027 ## packet.h (module 'network'): ns3::ByteTagIterator::ByteTagIterator(ns3::ByteTagIterator const & arg0) [copy constructor]
1028 cls.add_constructor([param('ns3::ByteTagIterator const &', 'arg0')])
1029 ## packet.h (module 'network'): bool ns3::ByteTagIterator::HasNext() const [member function]
1030 cls.add_method('HasNext',
1031 'bool',
1032 [],
1033 is_const=True)
1034 ## packet.h (module 'network'): ns3::ByteTagIterator::Item ns3::ByteTagIterator::Next() [member function]
1035 cls.add_method('Next',
1036 'ns3::ByteTagIterator::Item',
1037 [])
1038 return
1039
1040def register_Ns3ByteTagIteratorItem_methods(root_module, cls):
1041 ## packet.h (module 'network'): ns3::ByteTagIterator::Item::Item(ns3::ByteTagIterator::Item const & arg0) [copy constructor]
1042 cls.add_constructor([param('ns3::ByteTagIterator::Item const &', 'arg0')])
1043 ## packet.h (module 'network'): uint32_t ns3::ByteTagIterator::Item::GetEnd() const [member function]
1044 cls.add_method('GetEnd',
1045 'uint32_t',
1046 [],
1047 is_const=True)
1048 ## packet.h (module 'network'): uint32_t ns3::ByteTagIterator::Item::GetStart() const [member function]
1049 cls.add_method('GetStart',
1050 'uint32_t',
1051 [],
1052 is_const=True)
1053 ## packet.h (module 'network'): void ns3::ByteTagIterator::Item::GetTag(ns3::Tag & tag) const [member function]
1054 cls.add_method('GetTag',
1055 'void',
1056 [param('ns3::Tag &', 'tag')],
1057 is_const=True)
1058 ## packet.h (module 'network'): ns3::TypeId ns3::ByteTagIterator::Item::GetTypeId() const [member function]
1059 cls.add_method('GetTypeId',
1060 'ns3::TypeId',
1061 [],
1062 is_const=True)
1063 return
1064
1065def register_Ns3ByteTagList_methods(root_module, cls):
1066 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::ByteTagList() [constructor]
1067 cls.add_constructor([])
1068 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::ByteTagList(ns3::ByteTagList const & o) [copy constructor]
1069 cls.add_constructor([param('ns3::ByteTagList const &', 'o')])
1070 ## 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]
1071 cls.add_method('Add',
1072 'ns3::TagBuffer',
1073 [param('ns3::TypeId', 'tid'), param('uint32_t', 'bufferSize'), param('int32_t', 'start'), param('int32_t', 'end')])
1074 ## byte-tag-list.h (module 'network'): void ns3::ByteTagList::Add(ns3::ByteTagList const & o) [member function]
1075 cls.add_method('Add',
1076 'void',
1077 [param('ns3::ByteTagList const &', 'o')])
1078 ## byte-tag-list.h (module 'network'): void ns3::ByteTagList::AddAtEnd(int32_t adjustment, int32_t appendOffset) [member function]
1079 cls.add_method('AddAtEnd',
1080 'void',
1081 [param('int32_t', 'adjustment'), param('int32_t', 'appendOffset')])
1082 ## byte-tag-list.h (module 'network'): void ns3::ByteTagList::AddAtStart(int32_t adjustment, int32_t prependOffset) [member function]
1083 cls.add_method('AddAtStart',
1084 'void',
1085 [param('int32_t', 'adjustment'), param('int32_t', 'prependOffset')])
1086 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator ns3::ByteTagList::Begin(int32_t offsetStart, int32_t offsetEnd) const [member function]
1087 cls.add_method('Begin',
1088 'ns3::ByteTagList::Iterator',
1089 [param('int32_t', 'offsetStart'), param('int32_t', 'offsetEnd')],
1090 is_const=True)
1091 ## byte-tag-list.h (module 'network'): void ns3::ByteTagList::RemoveAll() [member function]
1092 cls.add_method('RemoveAll',
1093 'void',
1094 [])
1095 return
1096
1097def register_Ns3ByteTagListIterator_methods(root_module, cls):
1098 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Iterator(ns3::ByteTagList::Iterator const & arg0) [copy constructor]
1099 cls.add_constructor([param('ns3::ByteTagList::Iterator const &', 'arg0')])
1100 ## byte-tag-list.h (module 'network'): uint32_t ns3::ByteTagList::Iterator::GetOffsetStart() const [member function]
1101 cls.add_method('GetOffsetStart',
1102 'uint32_t',
1103 [],
1104 is_const=True)
1105 ## byte-tag-list.h (module 'network'): bool ns3::ByteTagList::Iterator::HasNext() const [member function]
1106 cls.add_method('HasNext',
1107 'bool',
1108 [],
1109 is_const=True)
1110 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item ns3::ByteTagList::Iterator::Next() [member function]
1111 cls.add_method('Next',
1112 'ns3::ByteTagList::Iterator::Item',
1113 [])
1114 return
1115
1116def register_Ns3ByteTagListIteratorItem_methods(root_module, cls):
1117 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::Item(ns3::ByteTagList::Iterator::Item const & arg0) [copy constructor]
1118 cls.add_constructor([param('ns3::ByteTagList::Iterator::Item const &', 'arg0')])
1119 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::Item(ns3::TagBuffer buf) [constructor]
1120 cls.add_constructor([param('ns3::TagBuffer', 'buf')])
1121 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::buf [variable]
1122 cls.add_instance_attribute('buf', 'ns3::TagBuffer', is_const=False)
1123 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::end [variable]
1124 cls.add_instance_attribute('end', 'int32_t', is_const=False)
1125 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::size [variable]
1126 cls.add_instance_attribute('size', 'uint32_t', is_const=False)
1127 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::start [variable]
1128 cls.add_instance_attribute('start', 'int32_t', is_const=False)
1129 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::tid [variable]
1130 cls.add_instance_attribute('tid', 'ns3::TypeId', is_const=False)
1131 return
1132
1133def register_Ns3CallbackBase_methods(root_module, cls):
1134 ## callback.h (module 'core'): ns3::CallbackBase::CallbackBase(ns3::CallbackBase const & arg0) [copy constructor]
1135 cls.add_constructor([param('ns3::CallbackBase const &', 'arg0')])
1136 ## callback.h (module 'core'): ns3::CallbackBase::CallbackBase() [constructor]
1137 cls.add_constructor([])
1138 ## callback.h (module 'core'): ns3::Ptr<ns3::CallbackImplBase> ns3::CallbackBase::GetImpl() const [member function]
1139 cls.add_method('GetImpl',
1140 'ns3::Ptr< ns3::CallbackImplBase >',
1141 [],
1142 is_const=True)
1143 ## callback.h (module 'core'): ns3::CallbackBase::CallbackBase(ns3::Ptr<ns3::CallbackImplBase> impl) [constructor]
1144 cls.add_constructor([param('ns3::Ptr< ns3::CallbackImplBase >', 'impl')],
1145 visibility='protected')
1146 ## callback.h (module 'core'): static std::string ns3::CallbackBase::Demangle(std::string const & mangled) [member function]
1147 cls.add_method('Demangle',
1148 'std::string',
1149 [param('std::string const &', 'mangled')],
1150 is_static=True, visibility='protected')
1151 return
1152
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001153def register_Ns3EventId_methods(root_module, cls):
1154 cls.add_binary_comparison_operator('!=')
1155 cls.add_binary_comparison_operator('==')
1156 ## event-id.h (module 'core'): ns3::EventId::EventId(ns3::EventId const & arg0) [copy constructor]
1157 cls.add_constructor([param('ns3::EventId const &', 'arg0')])
1158 ## event-id.h (module 'core'): ns3::EventId::EventId() [constructor]
1159 cls.add_constructor([])
1160 ## event-id.h (module 'core'): ns3::EventId::EventId(ns3::Ptr<ns3::EventImpl> const & impl, uint64_t ts, uint32_t context, uint32_t uid) [constructor]
1161 cls.add_constructor([param('ns3::Ptr< ns3::EventImpl > const &', 'impl'), param('uint64_t', 'ts'), param('uint32_t', 'context'), param('uint32_t', 'uid')])
1162 ## event-id.h (module 'core'): void ns3::EventId::Cancel() [member function]
1163 cls.add_method('Cancel',
1164 'void',
1165 [])
1166 ## event-id.h (module 'core'): uint32_t ns3::EventId::GetContext() const [member function]
1167 cls.add_method('GetContext',
1168 'uint32_t',
1169 [],
1170 is_const=True)
1171 ## event-id.h (module 'core'): uint64_t ns3::EventId::GetTs() const [member function]
1172 cls.add_method('GetTs',
1173 'uint64_t',
1174 [],
1175 is_const=True)
1176 ## event-id.h (module 'core'): uint32_t ns3::EventId::GetUid() const [member function]
1177 cls.add_method('GetUid',
1178 'uint32_t',
1179 [],
1180 is_const=True)
1181 ## event-id.h (module 'core'): bool ns3::EventId::IsExpired() const [member function]
1182 cls.add_method('IsExpired',
1183 'bool',
1184 [],
1185 is_const=True)
1186 ## event-id.h (module 'core'): bool ns3::EventId::IsRunning() const [member function]
1187 cls.add_method('IsRunning',
1188 'bool',
1189 [],
1190 is_const=True)
1191 ## event-id.h (module 'core'): ns3::EventImpl * ns3::EventId::PeekEventImpl() const [member function]
1192 cls.add_method('PeekEventImpl',
1193 'ns3::EventImpl *',
1194 [],
1195 is_const=True)
1196 return
1197
1198def register_Ns3Ipv4Address_methods(root_module, cls):
1199 cls.add_binary_comparison_operator('!=')
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07001200 cls.add_output_stream_operator()
Alexander Afanasyeva28ec562012-10-25 14:07:32 -07001201 cls.add_binary_comparison_operator('==')
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001202 cls.add_binary_comparison_operator('<')
1203 ## ipv4-address.h (module 'network'): ns3::Ipv4Address::Ipv4Address(ns3::Ipv4Address const & arg0) [copy constructor]
1204 cls.add_constructor([param('ns3::Ipv4Address const &', 'arg0')])
1205 ## ipv4-address.h (module 'network'): ns3::Ipv4Address::Ipv4Address() [constructor]
1206 cls.add_constructor([])
1207 ## ipv4-address.h (module 'network'): ns3::Ipv4Address::Ipv4Address(uint32_t address) [constructor]
1208 cls.add_constructor([param('uint32_t', 'address')])
1209 ## ipv4-address.h (module 'network'): ns3::Ipv4Address::Ipv4Address(char const * address) [constructor]
1210 cls.add_constructor([param('char const *', 'address')])
1211 ## ipv4-address.h (module 'network'): ns3::Ipv4Address ns3::Ipv4Address::CombineMask(ns3::Ipv4Mask const & mask) const [member function]
1212 cls.add_method('CombineMask',
1213 'ns3::Ipv4Address',
1214 [param('ns3::Ipv4Mask const &', 'mask')],
1215 is_const=True)
1216 ## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::ConvertFrom(ns3::Address const & address) [member function]
1217 cls.add_method('ConvertFrom',
1218 'ns3::Ipv4Address',
1219 [param('ns3::Address const &', 'address')],
1220 is_static=True)
1221 ## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::Deserialize(uint8_t const * buf) [member function]
1222 cls.add_method('Deserialize',
1223 'ns3::Ipv4Address',
1224 [param('uint8_t const *', 'buf')],
1225 is_static=True)
Alexander Afanasyev4052f952012-06-08 17:57:59 -07001226 ## ipv4-address.h (module 'network'): uint32_t ns3::Ipv4Address::Get() const [member function]
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001227 cls.add_method('Get',
Alexander Afanasyev4052f952012-06-08 17:57:59 -07001228 'uint32_t',
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001229 [],
1230 is_const=True)
1231 ## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::GetAny() [member function]
1232 cls.add_method('GetAny',
1233 'ns3::Ipv4Address',
1234 [],
1235 is_static=True)
1236 ## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::GetBroadcast() [member function]
1237 cls.add_method('GetBroadcast',
1238 'ns3::Ipv4Address',
1239 [],
1240 is_static=True)
1241 ## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::GetLoopback() [member function]
1242 cls.add_method('GetLoopback',
1243 'ns3::Ipv4Address',
1244 [],
1245 is_static=True)
1246 ## ipv4-address.h (module 'network'): ns3::Ipv4Address ns3::Ipv4Address::GetSubnetDirectedBroadcast(ns3::Ipv4Mask const & mask) const [member function]
1247 cls.add_method('GetSubnetDirectedBroadcast',
1248 'ns3::Ipv4Address',
1249 [param('ns3::Ipv4Mask const &', 'mask')],
1250 is_const=True)
1251 ## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::GetZero() [member function]
1252 cls.add_method('GetZero',
1253 'ns3::Ipv4Address',
1254 [],
1255 is_static=True)
1256 ## ipv4-address.h (module 'network'): bool ns3::Ipv4Address::IsBroadcast() const [member function]
1257 cls.add_method('IsBroadcast',
1258 'bool',
1259 [],
1260 is_const=True)
1261 ## ipv4-address.h (module 'network'): bool ns3::Ipv4Address::IsEqual(ns3::Ipv4Address const & other) const [member function]
1262 cls.add_method('IsEqual',
1263 'bool',
1264 [param('ns3::Ipv4Address const &', 'other')],
1265 is_const=True)
1266 ## ipv4-address.h (module 'network'): bool ns3::Ipv4Address::IsLocalMulticast() const [member function]
1267 cls.add_method('IsLocalMulticast',
1268 'bool',
1269 [],
1270 is_const=True)
1271 ## ipv4-address.h (module 'network'): static bool ns3::Ipv4Address::IsMatchingType(ns3::Address const & address) [member function]
1272 cls.add_method('IsMatchingType',
1273 'bool',
1274 [param('ns3::Address const &', 'address')],
1275 is_static=True)
1276 ## ipv4-address.h (module 'network'): bool ns3::Ipv4Address::IsMulticast() const [member function]
1277 cls.add_method('IsMulticast',
1278 'bool',
1279 [],
1280 is_const=True)
1281 ## ipv4-address.h (module 'network'): bool ns3::Ipv4Address::IsSubnetDirectedBroadcast(ns3::Ipv4Mask const & mask) const [member function]
1282 cls.add_method('IsSubnetDirectedBroadcast',
1283 'bool',
1284 [param('ns3::Ipv4Mask const &', 'mask')],
1285 is_const=True)
1286 ## ipv4-address.h (module 'network'): void ns3::Ipv4Address::Print(std::ostream & os) const [member function]
1287 cls.add_method('Print',
1288 'void',
1289 [param('std::ostream &', 'os')],
1290 is_const=True)
1291 ## ipv4-address.h (module 'network'): void ns3::Ipv4Address::Serialize(uint8_t * buf) const [member function]
1292 cls.add_method('Serialize',
1293 'void',
1294 [param('uint8_t *', 'buf')],
1295 is_const=True)
1296 ## ipv4-address.h (module 'network'): void ns3::Ipv4Address::Set(uint32_t address) [member function]
1297 cls.add_method('Set',
1298 'void',
1299 [param('uint32_t', 'address')])
1300 ## ipv4-address.h (module 'network'): void ns3::Ipv4Address::Set(char const * address) [member function]
1301 cls.add_method('Set',
1302 'void',
1303 [param('char const *', 'address')])
1304 return
1305
1306def register_Ns3Ipv4Mask_methods(root_module, cls):
1307 cls.add_binary_comparison_operator('!=')
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07001308 cls.add_output_stream_operator()
Alexander Afanasyeva28ec562012-10-25 14:07:32 -07001309 cls.add_binary_comparison_operator('==')
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001310 ## ipv4-address.h (module 'network'): ns3::Ipv4Mask::Ipv4Mask(ns3::Ipv4Mask const & arg0) [copy constructor]
1311 cls.add_constructor([param('ns3::Ipv4Mask const &', 'arg0')])
1312 ## ipv4-address.h (module 'network'): ns3::Ipv4Mask::Ipv4Mask() [constructor]
1313 cls.add_constructor([])
1314 ## ipv4-address.h (module 'network'): ns3::Ipv4Mask::Ipv4Mask(uint32_t mask) [constructor]
1315 cls.add_constructor([param('uint32_t', 'mask')])
1316 ## ipv4-address.h (module 'network'): ns3::Ipv4Mask::Ipv4Mask(char const * mask) [constructor]
1317 cls.add_constructor([param('char const *', 'mask')])
1318 ## ipv4-address.h (module 'network'): uint32_t ns3::Ipv4Mask::Get() const [member function]
1319 cls.add_method('Get',
1320 'uint32_t',
1321 [],
1322 is_const=True)
1323 ## ipv4-address.h (module 'network'): uint32_t ns3::Ipv4Mask::GetInverse() const [member function]
1324 cls.add_method('GetInverse',
1325 'uint32_t',
1326 [],
1327 is_const=True)
1328 ## ipv4-address.h (module 'network'): static ns3::Ipv4Mask ns3::Ipv4Mask::GetLoopback() [member function]
1329 cls.add_method('GetLoopback',
1330 'ns3::Ipv4Mask',
1331 [],
1332 is_static=True)
1333 ## ipv4-address.h (module 'network'): static ns3::Ipv4Mask ns3::Ipv4Mask::GetOnes() [member function]
1334 cls.add_method('GetOnes',
1335 'ns3::Ipv4Mask',
1336 [],
1337 is_static=True)
1338 ## ipv4-address.h (module 'network'): uint16_t ns3::Ipv4Mask::GetPrefixLength() const [member function]
1339 cls.add_method('GetPrefixLength',
1340 'uint16_t',
1341 [],
1342 is_const=True)
1343 ## ipv4-address.h (module 'network'): static ns3::Ipv4Mask ns3::Ipv4Mask::GetZero() [member function]
1344 cls.add_method('GetZero',
1345 'ns3::Ipv4Mask',
1346 [],
1347 is_static=True)
1348 ## ipv4-address.h (module 'network'): bool ns3::Ipv4Mask::IsEqual(ns3::Ipv4Mask other) const [member function]
1349 cls.add_method('IsEqual',
1350 'bool',
1351 [param('ns3::Ipv4Mask', 'other')],
1352 is_const=True)
1353 ## ipv4-address.h (module 'network'): bool ns3::Ipv4Mask::IsMatch(ns3::Ipv4Address a, ns3::Ipv4Address b) const [member function]
1354 cls.add_method('IsMatch',
1355 'bool',
1356 [param('ns3::Ipv4Address', 'a'), param('ns3::Ipv4Address', 'b')],
1357 is_const=True)
1358 ## ipv4-address.h (module 'network'): void ns3::Ipv4Mask::Print(std::ostream & os) const [member function]
1359 cls.add_method('Print',
1360 'void',
1361 [param('std::ostream &', 'os')],
1362 is_const=True)
1363 ## ipv4-address.h (module 'network'): void ns3::Ipv4Mask::Set(uint32_t mask) [member function]
1364 cls.add_method('Set',
1365 'void',
1366 [param('uint32_t', 'mask')])
1367 return
1368
1369def register_Ns3Ipv6Address_methods(root_module, cls):
1370 cls.add_binary_comparison_operator('!=')
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07001371 cls.add_output_stream_operator()
Alexander Afanasyeva28ec562012-10-25 14:07:32 -07001372 cls.add_binary_comparison_operator('==')
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001373 cls.add_binary_comparison_operator('<')
1374 ## ipv6-address.h (module 'network'): ns3::Ipv6Address::Ipv6Address() [constructor]
1375 cls.add_constructor([])
1376 ## ipv6-address.h (module 'network'): ns3::Ipv6Address::Ipv6Address(char const * address) [constructor]
1377 cls.add_constructor([param('char const *', 'address')])
1378 ## ipv6-address.h (module 'network'): ns3::Ipv6Address::Ipv6Address(uint8_t * address) [constructor]
1379 cls.add_constructor([param('uint8_t *', 'address')])
1380 ## ipv6-address.h (module 'network'): ns3::Ipv6Address::Ipv6Address(ns3::Ipv6Address const & addr) [copy constructor]
1381 cls.add_constructor([param('ns3::Ipv6Address const &', 'addr')])
1382 ## ipv6-address.h (module 'network'): ns3::Ipv6Address::Ipv6Address(ns3::Ipv6Address const * addr) [constructor]
1383 cls.add_constructor([param('ns3::Ipv6Address const *', 'addr')])
1384 ## ipv6-address.h (module 'network'): ns3::Ipv6Address ns3::Ipv6Address::CombinePrefix(ns3::Ipv6Prefix const & prefix) [member function]
1385 cls.add_method('CombinePrefix',
1386 'ns3::Ipv6Address',
1387 [param('ns3::Ipv6Prefix const &', 'prefix')])
1388 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::ConvertFrom(ns3::Address const & address) [member function]
1389 cls.add_method('ConvertFrom',
1390 'ns3::Ipv6Address',
1391 [param('ns3::Address const &', 'address')],
1392 is_static=True)
1393 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::Deserialize(uint8_t const * buf) [member function]
1394 cls.add_method('Deserialize',
1395 'ns3::Ipv6Address',
1396 [param('uint8_t const *', 'buf')],
1397 is_static=True)
1398 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetAllHostsMulticast() [member function]
1399 cls.add_method('GetAllHostsMulticast',
1400 'ns3::Ipv6Address',
1401 [],
1402 is_static=True)
1403 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetAllNodesMulticast() [member function]
1404 cls.add_method('GetAllNodesMulticast',
1405 'ns3::Ipv6Address',
1406 [],
1407 is_static=True)
1408 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetAllRoutersMulticast() [member function]
1409 cls.add_method('GetAllRoutersMulticast',
1410 'ns3::Ipv6Address',
1411 [],
1412 is_static=True)
1413 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetAny() [member function]
1414 cls.add_method('GetAny',
1415 'ns3::Ipv6Address',
1416 [],
1417 is_static=True)
1418 ## ipv6-address.h (module 'network'): void ns3::Ipv6Address::GetBytes(uint8_t * buf) const [member function]
1419 cls.add_method('GetBytes',
1420 'void',
1421 [param('uint8_t *', 'buf')],
1422 is_const=True)
Alexander Afanasyev6f933532012-02-29 13:30:37 -08001423 ## ipv6-address.h (module 'network'): ns3::Ipv4Address ns3::Ipv6Address::GetIpv4MappedAddress() const [member function]
1424 cls.add_method('GetIpv4MappedAddress',
1425 'ns3::Ipv4Address',
1426 [],
1427 is_const=True)
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001428 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetLoopback() [member function]
1429 cls.add_method('GetLoopback',
1430 'ns3::Ipv6Address',
1431 [],
1432 is_static=True)
1433 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetOnes() [member function]
1434 cls.add_method('GetOnes',
1435 'ns3::Ipv6Address',
1436 [],
1437 is_static=True)
1438 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetZero() [member function]
1439 cls.add_method('GetZero',
1440 'ns3::Ipv6Address',
1441 [],
1442 is_static=True)
1443 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsAllHostsMulticast() const [member function]
1444 cls.add_method('IsAllHostsMulticast',
1445 'bool',
1446 [],
1447 is_const=True)
1448 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsAllNodesMulticast() const [member function]
1449 cls.add_method('IsAllNodesMulticast',
1450 'bool',
1451 [],
1452 is_const=True)
1453 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsAllRoutersMulticast() const [member function]
1454 cls.add_method('IsAllRoutersMulticast',
1455 'bool',
1456 [],
1457 is_const=True)
1458 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsAny() const [member function]
1459 cls.add_method('IsAny',
1460 'bool',
1461 [],
1462 is_const=True)
1463 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsEqual(ns3::Ipv6Address const & other) const [member function]
1464 cls.add_method('IsEqual',
1465 'bool',
1466 [param('ns3::Ipv6Address const &', 'other')],
1467 is_const=True)
Alexander Afanasyev6f933532012-02-29 13:30:37 -08001468 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsIpv4MappedAddress() [member function]
1469 cls.add_method('IsIpv4MappedAddress',
1470 'bool',
1471 [])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001472 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsLinkLocal() const [member function]
1473 cls.add_method('IsLinkLocal',
1474 'bool',
1475 [],
1476 is_const=True)
Alexander Afanasyev6f933532012-02-29 13:30:37 -08001477 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsLinkLocalMulticast() const [member function]
1478 cls.add_method('IsLinkLocalMulticast',
1479 'bool',
1480 [],
1481 is_const=True)
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001482 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsLocalhost() const [member function]
1483 cls.add_method('IsLocalhost',
1484 'bool',
1485 [],
1486 is_const=True)
1487 ## ipv6-address.h (module 'network'): static bool ns3::Ipv6Address::IsMatchingType(ns3::Address const & address) [member function]
1488 cls.add_method('IsMatchingType',
1489 'bool',
1490 [param('ns3::Address const &', 'address')],
1491 is_static=True)
1492 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsMulticast() const [member function]
1493 cls.add_method('IsMulticast',
1494 'bool',
1495 [],
1496 is_const=True)
1497 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsSolicitedMulticast() const [member function]
1498 cls.add_method('IsSolicitedMulticast',
1499 'bool',
1500 [],
1501 is_const=True)
1502 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::MakeAutoconfiguredAddress(ns3::Mac48Address addr, ns3::Ipv6Address prefix) [member function]
1503 cls.add_method('MakeAutoconfiguredAddress',
1504 'ns3::Ipv6Address',
1505 [param('ns3::Mac48Address', 'addr'), param('ns3::Ipv6Address', 'prefix')],
1506 is_static=True)
1507 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::MakeAutoconfiguredLinkLocalAddress(ns3::Mac48Address mac) [member function]
1508 cls.add_method('MakeAutoconfiguredLinkLocalAddress',
1509 'ns3::Ipv6Address',
1510 [param('ns3::Mac48Address', 'mac')],
1511 is_static=True)
Alexander Afanasyev6f933532012-02-29 13:30:37 -08001512 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::MakeIpv4MappedAddress(ns3::Ipv4Address addr) [member function]
1513 cls.add_method('MakeIpv4MappedAddress',
1514 'ns3::Ipv6Address',
1515 [param('ns3::Ipv4Address', 'addr')],
1516 is_static=True)
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001517 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::MakeSolicitedAddress(ns3::Ipv6Address addr) [member function]
1518 cls.add_method('MakeSolicitedAddress',
1519 'ns3::Ipv6Address',
1520 [param('ns3::Ipv6Address', 'addr')],
1521 is_static=True)
1522 ## ipv6-address.h (module 'network'): void ns3::Ipv6Address::Print(std::ostream & os) const [member function]
1523 cls.add_method('Print',
1524 'void',
1525 [param('std::ostream &', 'os')],
1526 is_const=True)
1527 ## ipv6-address.h (module 'network'): void ns3::Ipv6Address::Serialize(uint8_t * buf) const [member function]
1528 cls.add_method('Serialize',
1529 'void',
1530 [param('uint8_t *', 'buf')],
1531 is_const=True)
1532 ## ipv6-address.h (module 'network'): void ns3::Ipv6Address::Set(char const * address) [member function]
1533 cls.add_method('Set',
1534 'void',
1535 [param('char const *', 'address')])
1536 ## ipv6-address.h (module 'network'): void ns3::Ipv6Address::Set(uint8_t * address) [member function]
1537 cls.add_method('Set',
1538 'void',
1539 [param('uint8_t *', 'address')])
1540 return
1541
1542def register_Ns3Ipv6Prefix_methods(root_module, cls):
1543 cls.add_binary_comparison_operator('!=')
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07001544 cls.add_output_stream_operator()
Alexander Afanasyeva28ec562012-10-25 14:07:32 -07001545 cls.add_binary_comparison_operator('==')
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001546 ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix() [constructor]
1547 cls.add_constructor([])
1548 ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix(uint8_t * prefix) [constructor]
1549 cls.add_constructor([param('uint8_t *', 'prefix')])
1550 ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix(char const * prefix) [constructor]
1551 cls.add_constructor([param('char const *', 'prefix')])
1552 ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix(uint8_t prefix) [constructor]
1553 cls.add_constructor([param('uint8_t', 'prefix')])
1554 ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix(ns3::Ipv6Prefix const & prefix) [copy constructor]
1555 cls.add_constructor([param('ns3::Ipv6Prefix const &', 'prefix')])
1556 ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix(ns3::Ipv6Prefix const * prefix) [constructor]
1557 cls.add_constructor([param('ns3::Ipv6Prefix const *', 'prefix')])
1558 ## ipv6-address.h (module 'network'): void ns3::Ipv6Prefix::GetBytes(uint8_t * buf) const [member function]
1559 cls.add_method('GetBytes',
1560 'void',
1561 [param('uint8_t *', 'buf')],
1562 is_const=True)
1563 ## ipv6-address.h (module 'network'): static ns3::Ipv6Prefix ns3::Ipv6Prefix::GetLoopback() [member function]
1564 cls.add_method('GetLoopback',
1565 'ns3::Ipv6Prefix',
1566 [],
1567 is_static=True)
1568 ## ipv6-address.h (module 'network'): static ns3::Ipv6Prefix ns3::Ipv6Prefix::GetOnes() [member function]
1569 cls.add_method('GetOnes',
1570 'ns3::Ipv6Prefix',
1571 [],
1572 is_static=True)
1573 ## ipv6-address.h (module 'network'): uint8_t ns3::Ipv6Prefix::GetPrefixLength() const [member function]
1574 cls.add_method('GetPrefixLength',
1575 'uint8_t',
1576 [],
1577 is_const=True)
1578 ## ipv6-address.h (module 'network'): static ns3::Ipv6Prefix ns3::Ipv6Prefix::GetZero() [member function]
1579 cls.add_method('GetZero',
1580 'ns3::Ipv6Prefix',
1581 [],
1582 is_static=True)
1583 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Prefix::IsEqual(ns3::Ipv6Prefix const & other) const [member function]
1584 cls.add_method('IsEqual',
1585 'bool',
1586 [param('ns3::Ipv6Prefix const &', 'other')],
1587 is_const=True)
1588 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Prefix::IsMatch(ns3::Ipv6Address a, ns3::Ipv6Address b) const [member function]
1589 cls.add_method('IsMatch',
1590 'bool',
1591 [param('ns3::Ipv6Address', 'a'), param('ns3::Ipv6Address', 'b')],
1592 is_const=True)
1593 ## ipv6-address.h (module 'network'): void ns3::Ipv6Prefix::Print(std::ostream & os) const [member function]
1594 cls.add_method('Print',
1595 'void',
1596 [param('std::ostream &', 'os')],
1597 is_const=True)
1598 return
1599
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07001600def register_Ns3NetDeviceContainer_methods(root_module, cls):
1601 ## net-device-container.h (module 'network'): ns3::NetDeviceContainer::NetDeviceContainer(ns3::NetDeviceContainer const & arg0) [copy constructor]
1602 cls.add_constructor([param('ns3::NetDeviceContainer const &', 'arg0')])
1603 ## net-device-container.h (module 'network'): ns3::NetDeviceContainer::NetDeviceContainer() [constructor]
1604 cls.add_constructor([])
1605 ## net-device-container.h (module 'network'): ns3::NetDeviceContainer::NetDeviceContainer(ns3::Ptr<ns3::NetDevice> dev) [constructor]
1606 cls.add_constructor([param('ns3::Ptr< ns3::NetDevice >', 'dev')])
1607 ## net-device-container.h (module 'network'): ns3::NetDeviceContainer::NetDeviceContainer(std::string devName) [constructor]
1608 cls.add_constructor([param('std::string', 'devName')])
1609 ## net-device-container.h (module 'network'): ns3::NetDeviceContainer::NetDeviceContainer(ns3::NetDeviceContainer const & a, ns3::NetDeviceContainer const & b) [constructor]
1610 cls.add_constructor([param('ns3::NetDeviceContainer const &', 'a'), param('ns3::NetDeviceContainer const &', 'b')])
1611 ## net-device-container.h (module 'network'): void ns3::NetDeviceContainer::Add(ns3::NetDeviceContainer other) [member function]
1612 cls.add_method('Add',
1613 'void',
1614 [param('ns3::NetDeviceContainer', 'other')])
1615 ## net-device-container.h (module 'network'): void ns3::NetDeviceContainer::Add(ns3::Ptr<ns3::NetDevice> device) [member function]
1616 cls.add_method('Add',
1617 'void',
1618 [param('ns3::Ptr< ns3::NetDevice >', 'device')])
1619 ## net-device-container.h (module 'network'): void ns3::NetDeviceContainer::Add(std::string deviceName) [member function]
1620 cls.add_method('Add',
1621 'void',
1622 [param('std::string', 'deviceName')])
1623 ## 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]
1624 cls.add_method('Begin',
1625 '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::NetDevice > const, std::vector< ns3::Ptr< ns3::NetDevice > > >',
1626 [],
1627 is_const=True)
1628 ## 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]
1629 cls.add_method('End',
1630 '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::NetDevice > const, std::vector< ns3::Ptr< ns3::NetDevice > > >',
1631 [],
1632 is_const=True)
1633 ## net-device-container.h (module 'network'): ns3::Ptr<ns3::NetDevice> ns3::NetDeviceContainer::Get(uint32_t i) const [member function]
1634 cls.add_method('Get',
1635 'ns3::Ptr< ns3::NetDevice >',
1636 [param('uint32_t', 'i')],
1637 is_const=True)
1638 ## net-device-container.h (module 'network'): uint32_t ns3::NetDeviceContainer::GetN() const [member function]
1639 cls.add_method('GetN',
1640 'uint32_t',
1641 [],
1642 is_const=True)
1643 return
1644
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001645def register_Ns3NodeContainer_methods(root_module, cls):
1646 ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer(ns3::NodeContainer const & arg0) [copy constructor]
1647 cls.add_constructor([param('ns3::NodeContainer const &', 'arg0')])
1648 ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer() [constructor]
1649 cls.add_constructor([])
1650 ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer(ns3::Ptr<ns3::Node> node) [constructor]
1651 cls.add_constructor([param('ns3::Ptr< ns3::Node >', 'node')])
1652 ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer(std::string nodeName) [constructor]
1653 cls.add_constructor([param('std::string', 'nodeName')])
1654 ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer(ns3::NodeContainer const & a, ns3::NodeContainer const & b) [constructor]
1655 cls.add_constructor([param('ns3::NodeContainer const &', 'a'), param('ns3::NodeContainer const &', 'b')])
1656 ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer(ns3::NodeContainer const & a, ns3::NodeContainer const & b, ns3::NodeContainer const & c) [constructor]
1657 cls.add_constructor([param('ns3::NodeContainer const &', 'a'), param('ns3::NodeContainer const &', 'b'), param('ns3::NodeContainer const &', 'c')])
1658 ## 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]
1659 cls.add_constructor([param('ns3::NodeContainer const &', 'a'), param('ns3::NodeContainer const &', 'b'), param('ns3::NodeContainer const &', 'c'), param('ns3::NodeContainer const &', 'd')])
1660 ## 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]
1661 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')])
1662 ## node-container.h (module 'network'): void ns3::NodeContainer::Add(ns3::NodeContainer other) [member function]
1663 cls.add_method('Add',
1664 'void',
1665 [param('ns3::NodeContainer', 'other')])
1666 ## node-container.h (module 'network'): void ns3::NodeContainer::Add(ns3::Ptr<ns3::Node> node) [member function]
1667 cls.add_method('Add',
1668 'void',
1669 [param('ns3::Ptr< ns3::Node >', 'node')])
1670 ## node-container.h (module 'network'): void ns3::NodeContainer::Add(std::string nodeName) [member function]
1671 cls.add_method('Add',
1672 'void',
1673 [param('std::string', 'nodeName')])
1674 ## 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]
1675 cls.add_method('Begin',
1676 '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Node > const, std::vector< ns3::Ptr< ns3::Node > > >',
1677 [],
1678 is_const=True)
1679 ## node-container.h (module 'network'): void ns3::NodeContainer::Create(uint32_t n) [member function]
1680 cls.add_method('Create',
1681 'void',
1682 [param('uint32_t', 'n')])
1683 ## node-container.h (module 'network'): void ns3::NodeContainer::Create(uint32_t n, uint32_t systemId) [member function]
1684 cls.add_method('Create',
1685 'void',
1686 [param('uint32_t', 'n'), param('uint32_t', 'systemId')])
1687 ## 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]
1688 cls.add_method('End',
1689 '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Node > const, std::vector< ns3::Ptr< ns3::Node > > >',
1690 [],
1691 is_const=True)
1692 ## node-container.h (module 'network'): ns3::Ptr<ns3::Node> ns3::NodeContainer::Get(uint32_t i) const [member function]
1693 cls.add_method('Get',
1694 'ns3::Ptr< ns3::Node >',
1695 [param('uint32_t', 'i')],
1696 is_const=True)
1697 ## node-container.h (module 'network'): static ns3::NodeContainer ns3::NodeContainer::GetGlobal() [member function]
1698 cls.add_method('GetGlobal',
1699 'ns3::NodeContainer',
1700 [],
1701 is_static=True)
1702 ## node-container.h (module 'network'): uint32_t ns3::NodeContainer::GetN() const [member function]
1703 cls.add_method('GetN',
1704 'uint32_t',
1705 [],
1706 is_const=True)
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001707 return
1708
1709def register_Ns3ObjectBase_methods(root_module, cls):
1710 ## object-base.h (module 'core'): ns3::ObjectBase::ObjectBase() [constructor]
1711 cls.add_constructor([])
1712 ## object-base.h (module 'core'): ns3::ObjectBase::ObjectBase(ns3::ObjectBase const & arg0) [copy constructor]
1713 cls.add_constructor([param('ns3::ObjectBase const &', 'arg0')])
1714 ## object-base.h (module 'core'): void ns3::ObjectBase::GetAttribute(std::string name, ns3::AttributeValue & value) const [member function]
1715 cls.add_method('GetAttribute',
1716 'void',
1717 [param('std::string', 'name'), param('ns3::AttributeValue &', 'value')],
1718 is_const=True)
1719 ## object-base.h (module 'core'): bool ns3::ObjectBase::GetAttributeFailSafe(std::string name, ns3::AttributeValue & attribute) const [member function]
1720 cls.add_method('GetAttributeFailSafe',
1721 'bool',
1722 [param('std::string', 'name'), param('ns3::AttributeValue &', 'attribute')],
1723 is_const=True)
1724 ## object-base.h (module 'core'): ns3::TypeId ns3::ObjectBase::GetInstanceTypeId() const [member function]
1725 cls.add_method('GetInstanceTypeId',
1726 'ns3::TypeId',
1727 [],
1728 is_pure_virtual=True, is_const=True, is_virtual=True)
1729 ## object-base.h (module 'core'): static ns3::TypeId ns3::ObjectBase::GetTypeId() [member function]
1730 cls.add_method('GetTypeId',
1731 'ns3::TypeId',
1732 [],
1733 is_static=True)
1734 ## object-base.h (module 'core'): void ns3::ObjectBase::SetAttribute(std::string name, ns3::AttributeValue const & value) [member function]
1735 cls.add_method('SetAttribute',
1736 'void',
1737 [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')])
1738 ## object-base.h (module 'core'): bool ns3::ObjectBase::SetAttributeFailSafe(std::string name, ns3::AttributeValue const & value) [member function]
1739 cls.add_method('SetAttributeFailSafe',
1740 'bool',
1741 [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')])
1742 ## object-base.h (module 'core'): bool ns3::ObjectBase::TraceConnect(std::string name, std::string context, ns3::CallbackBase const & cb) [member function]
1743 cls.add_method('TraceConnect',
1744 'bool',
1745 [param('std::string', 'name'), param('std::string', 'context'), param('ns3::CallbackBase const &', 'cb')])
1746 ## object-base.h (module 'core'): bool ns3::ObjectBase::TraceConnectWithoutContext(std::string name, ns3::CallbackBase const & cb) [member function]
1747 cls.add_method('TraceConnectWithoutContext',
1748 'bool',
1749 [param('std::string', 'name'), param('ns3::CallbackBase const &', 'cb')])
1750 ## object-base.h (module 'core'): bool ns3::ObjectBase::TraceDisconnect(std::string name, std::string context, ns3::CallbackBase const & cb) [member function]
1751 cls.add_method('TraceDisconnect',
1752 'bool',
1753 [param('std::string', 'name'), param('std::string', 'context'), param('ns3::CallbackBase const &', 'cb')])
1754 ## object-base.h (module 'core'): bool ns3::ObjectBase::TraceDisconnectWithoutContext(std::string name, ns3::CallbackBase const & cb) [member function]
1755 cls.add_method('TraceDisconnectWithoutContext',
1756 'bool',
1757 [param('std::string', 'name'), param('ns3::CallbackBase const &', 'cb')])
1758 ## object-base.h (module 'core'): void ns3::ObjectBase::ConstructSelf(ns3::AttributeConstructionList const & attributes) [member function]
1759 cls.add_method('ConstructSelf',
1760 'void',
1761 [param('ns3::AttributeConstructionList const &', 'attributes')],
1762 visibility='protected')
1763 ## object-base.h (module 'core'): void ns3::ObjectBase::NotifyConstructionCompleted() [member function]
1764 cls.add_method('NotifyConstructionCompleted',
1765 'void',
1766 [],
1767 visibility='protected', is_virtual=True)
1768 return
1769
1770def register_Ns3ObjectDeleter_methods(root_module, cls):
1771 ## object.h (module 'core'): ns3::ObjectDeleter::ObjectDeleter() [constructor]
1772 cls.add_constructor([])
1773 ## object.h (module 'core'): ns3::ObjectDeleter::ObjectDeleter(ns3::ObjectDeleter const & arg0) [copy constructor]
1774 cls.add_constructor([param('ns3::ObjectDeleter const &', 'arg0')])
1775 ## object.h (module 'core'): static void ns3::ObjectDeleter::Delete(ns3::Object * object) [member function]
1776 cls.add_method('Delete',
1777 'void',
1778 [param('ns3::Object *', 'object')],
1779 is_static=True)
1780 return
1781
1782def register_Ns3ObjectFactory_methods(root_module, cls):
1783 cls.add_output_stream_operator()
1784 ## object-factory.h (module 'core'): ns3::ObjectFactory::ObjectFactory(ns3::ObjectFactory const & arg0) [copy constructor]
1785 cls.add_constructor([param('ns3::ObjectFactory const &', 'arg0')])
1786 ## object-factory.h (module 'core'): ns3::ObjectFactory::ObjectFactory() [constructor]
1787 cls.add_constructor([])
1788 ## object-factory.h (module 'core'): ns3::ObjectFactory::ObjectFactory(std::string typeId) [constructor]
1789 cls.add_constructor([param('std::string', 'typeId')])
1790 ## object-factory.h (module 'core'): ns3::Ptr<ns3::Object> ns3::ObjectFactory::Create() const [member function]
1791 cls.add_method('Create',
1792 'ns3::Ptr< ns3::Object >',
1793 [],
1794 is_const=True)
1795 ## object-factory.h (module 'core'): ns3::TypeId ns3::ObjectFactory::GetTypeId() const [member function]
1796 cls.add_method('GetTypeId',
1797 'ns3::TypeId',
1798 [],
1799 is_const=True)
1800 ## object-factory.h (module 'core'): void ns3::ObjectFactory::Set(std::string name, ns3::AttributeValue const & value) [member function]
1801 cls.add_method('Set',
1802 'void',
1803 [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')])
1804 ## object-factory.h (module 'core'): void ns3::ObjectFactory::SetTypeId(ns3::TypeId tid) [member function]
1805 cls.add_method('SetTypeId',
1806 'void',
1807 [param('ns3::TypeId', 'tid')])
1808 ## object-factory.h (module 'core'): void ns3::ObjectFactory::SetTypeId(char const * tid) [member function]
1809 cls.add_method('SetTypeId',
1810 'void',
1811 [param('char const *', 'tid')])
1812 ## object-factory.h (module 'core'): void ns3::ObjectFactory::SetTypeId(std::string tid) [member function]
1813 cls.add_method('SetTypeId',
1814 'void',
1815 [param('std::string', 'tid')])
1816 return
1817
1818def register_Ns3PacketMetadata_methods(root_module, cls):
1819 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::PacketMetadata(uint64_t uid, uint32_t size) [constructor]
1820 cls.add_constructor([param('uint64_t', 'uid'), param('uint32_t', 'size')])
1821 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::PacketMetadata(ns3::PacketMetadata const & o) [copy constructor]
1822 cls.add_constructor([param('ns3::PacketMetadata const &', 'o')])
1823 ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::AddAtEnd(ns3::PacketMetadata const & o) [member function]
1824 cls.add_method('AddAtEnd',
1825 'void',
1826 [param('ns3::PacketMetadata const &', 'o')])
1827 ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::AddHeader(ns3::Header const & header, uint32_t size) [member function]
1828 cls.add_method('AddHeader',
1829 'void',
1830 [param('ns3::Header const &', 'header'), param('uint32_t', 'size')])
1831 ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::AddPaddingAtEnd(uint32_t end) [member function]
1832 cls.add_method('AddPaddingAtEnd',
1833 'void',
1834 [param('uint32_t', 'end')])
1835 ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::AddTrailer(ns3::Trailer const & trailer, uint32_t size) [member function]
1836 cls.add_method('AddTrailer',
1837 'void',
1838 [param('ns3::Trailer const &', 'trailer'), param('uint32_t', 'size')])
1839 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::ItemIterator ns3::PacketMetadata::BeginItem(ns3::Buffer buffer) const [member function]
1840 cls.add_method('BeginItem',
1841 'ns3::PacketMetadata::ItemIterator',
1842 [param('ns3::Buffer', 'buffer')],
1843 is_const=True)
1844 ## packet-metadata.h (module 'network'): ns3::PacketMetadata ns3::PacketMetadata::CreateFragment(uint32_t start, uint32_t end) const [member function]
1845 cls.add_method('CreateFragment',
1846 'ns3::PacketMetadata',
1847 [param('uint32_t', 'start'), param('uint32_t', 'end')],
1848 is_const=True)
1849 ## packet-metadata.h (module 'network'): uint32_t ns3::PacketMetadata::Deserialize(uint8_t const * buffer, uint32_t size) [member function]
1850 cls.add_method('Deserialize',
1851 'uint32_t',
1852 [param('uint8_t const *', 'buffer'), param('uint32_t', 'size')])
1853 ## packet-metadata.h (module 'network'): static void ns3::PacketMetadata::Enable() [member function]
1854 cls.add_method('Enable',
1855 'void',
1856 [],
1857 is_static=True)
1858 ## packet-metadata.h (module 'network'): static void ns3::PacketMetadata::EnableChecking() [member function]
1859 cls.add_method('EnableChecking',
1860 'void',
1861 [],
1862 is_static=True)
1863 ## packet-metadata.h (module 'network'): uint32_t ns3::PacketMetadata::GetSerializedSize() const [member function]
1864 cls.add_method('GetSerializedSize',
1865 'uint32_t',
1866 [],
1867 is_const=True)
1868 ## packet-metadata.h (module 'network'): uint64_t ns3::PacketMetadata::GetUid() const [member function]
1869 cls.add_method('GetUid',
1870 'uint64_t',
1871 [],
1872 is_const=True)
1873 ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::RemoveAtEnd(uint32_t end) [member function]
1874 cls.add_method('RemoveAtEnd',
1875 'void',
1876 [param('uint32_t', 'end')])
1877 ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::RemoveAtStart(uint32_t start) [member function]
1878 cls.add_method('RemoveAtStart',
1879 'void',
1880 [param('uint32_t', 'start')])
1881 ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::RemoveHeader(ns3::Header const & header, uint32_t size) [member function]
1882 cls.add_method('RemoveHeader',
1883 'void',
1884 [param('ns3::Header const &', 'header'), param('uint32_t', 'size')])
1885 ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::RemoveTrailer(ns3::Trailer const & trailer, uint32_t size) [member function]
1886 cls.add_method('RemoveTrailer',
1887 'void',
1888 [param('ns3::Trailer const &', 'trailer'), param('uint32_t', 'size')])
1889 ## packet-metadata.h (module 'network'): uint32_t ns3::PacketMetadata::Serialize(uint8_t * buffer, uint32_t maxSize) const [member function]
1890 cls.add_method('Serialize',
1891 'uint32_t',
1892 [param('uint8_t *', 'buffer'), param('uint32_t', 'maxSize')],
1893 is_const=True)
1894 return
1895
1896def register_Ns3PacketMetadataItem_methods(root_module, cls):
1897 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::Item() [constructor]
1898 cls.add_constructor([])
1899 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::Item(ns3::PacketMetadata::Item const & arg0) [copy constructor]
1900 cls.add_constructor([param('ns3::PacketMetadata::Item const &', 'arg0')])
1901 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::current [variable]
1902 cls.add_instance_attribute('current', 'ns3::Buffer::Iterator', is_const=False)
1903 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::currentSize [variable]
1904 cls.add_instance_attribute('currentSize', 'uint32_t', is_const=False)
1905 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::currentTrimedFromEnd [variable]
1906 cls.add_instance_attribute('currentTrimedFromEnd', 'uint32_t', is_const=False)
1907 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::currentTrimedFromStart [variable]
1908 cls.add_instance_attribute('currentTrimedFromStart', 'uint32_t', is_const=False)
1909 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::isFragment [variable]
1910 cls.add_instance_attribute('isFragment', 'bool', is_const=False)
1911 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::tid [variable]
1912 cls.add_instance_attribute('tid', 'ns3::TypeId', is_const=False)
1913 return
1914
1915def register_Ns3PacketMetadataItemIterator_methods(root_module, cls):
1916 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::ItemIterator::ItemIterator(ns3::PacketMetadata::ItemIterator const & arg0) [copy constructor]
1917 cls.add_constructor([param('ns3::PacketMetadata::ItemIterator const &', 'arg0')])
1918 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::ItemIterator::ItemIterator(ns3::PacketMetadata const * metadata, ns3::Buffer buffer) [constructor]
1919 cls.add_constructor([param('ns3::PacketMetadata const *', 'metadata'), param('ns3::Buffer', 'buffer')])
1920 ## packet-metadata.h (module 'network'): bool ns3::PacketMetadata::ItemIterator::HasNext() const [member function]
1921 cls.add_method('HasNext',
1922 'bool',
1923 [],
1924 is_const=True)
1925 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item ns3::PacketMetadata::ItemIterator::Next() [member function]
1926 cls.add_method('Next',
1927 'ns3::PacketMetadata::Item',
1928 [])
1929 return
1930
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07001931def register_Ns3PacketTagIterator_methods(root_module, cls):
1932 ## packet.h (module 'network'): ns3::PacketTagIterator::PacketTagIterator(ns3::PacketTagIterator const & arg0) [copy constructor]
1933 cls.add_constructor([param('ns3::PacketTagIterator const &', 'arg0')])
1934 ## packet.h (module 'network'): bool ns3::PacketTagIterator::HasNext() const [member function]
1935 cls.add_method('HasNext',
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001936 'bool',
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001937 [],
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07001938 is_const=True)
1939 ## packet.h (module 'network'): ns3::PacketTagIterator::Item ns3::PacketTagIterator::Next() [member function]
1940 cls.add_method('Next',
1941 'ns3::PacketTagIterator::Item',
1942 [])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001943 return
1944
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07001945def register_Ns3PacketTagIteratorItem_methods(root_module, cls):
1946 ## packet.h (module 'network'): ns3::PacketTagIterator::Item::Item(ns3::PacketTagIterator::Item const & arg0) [copy constructor]
1947 cls.add_constructor([param('ns3::PacketTagIterator::Item const &', 'arg0')])
1948 ## packet.h (module 'network'): void ns3::PacketTagIterator::Item::GetTag(ns3::Tag & tag) const [member function]
1949 cls.add_method('GetTag',
1950 'void',
1951 [param('ns3::Tag &', 'tag')],
1952 is_const=True)
1953 ## packet.h (module 'network'): ns3::TypeId ns3::PacketTagIterator::Item::GetTypeId() const [member function]
1954 cls.add_method('GetTypeId',
1955 'ns3::TypeId',
1956 [],
1957 is_const=True)
1958 return
1959
1960def register_Ns3PacketTagList_methods(root_module, cls):
1961 ## packet-tag-list.h (module 'network'): ns3::PacketTagList::PacketTagList() [constructor]
1962 cls.add_constructor([])
1963 ## packet-tag-list.h (module 'network'): ns3::PacketTagList::PacketTagList(ns3::PacketTagList const & o) [copy constructor]
1964 cls.add_constructor([param('ns3::PacketTagList const &', 'o')])
1965 ## packet-tag-list.h (module 'network'): void ns3::PacketTagList::Add(ns3::Tag const & tag) const [member function]
1966 cls.add_method('Add',
1967 'void',
1968 [param('ns3::Tag const &', 'tag')],
1969 is_const=True)
1970 ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData const * ns3::PacketTagList::Head() const [member function]
1971 cls.add_method('Head',
1972 'ns3::PacketTagList::TagData const *',
1973 [],
1974 is_const=True)
1975 ## packet-tag-list.h (module 'network'): bool ns3::PacketTagList::Peek(ns3::Tag & tag) const [member function]
1976 cls.add_method('Peek',
1977 'bool',
1978 [param('ns3::Tag &', 'tag')],
1979 is_const=True)
1980 ## packet-tag-list.h (module 'network'): bool ns3::PacketTagList::Remove(ns3::Tag & tag) [member function]
1981 cls.add_method('Remove',
1982 'bool',
1983 [param('ns3::Tag &', 'tag')])
1984 ## packet-tag-list.h (module 'network'): void ns3::PacketTagList::RemoveAll() [member function]
1985 cls.add_method('RemoveAll',
1986 'void',
1987 [])
1988 return
1989
1990def register_Ns3PacketTagListTagData_methods(root_module, cls):
1991 ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData::TagData() [constructor]
1992 cls.add_constructor([])
1993 ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData::TagData(ns3::PacketTagList::TagData const & arg0) [copy constructor]
1994 cls.add_constructor([param('ns3::PacketTagList::TagData const &', 'arg0')])
1995 ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData::count [variable]
1996 cls.add_instance_attribute('count', 'uint32_t', is_const=False)
1997 ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData::data [variable]
1998 cls.add_instance_attribute('data', 'uint8_t [ 20 ]', is_const=False)
1999 ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData::next [variable]
2000 cls.add_instance_attribute('next', 'ns3::PacketTagList::TagData *', is_const=False)
2001 ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData::tid [variable]
2002 cls.add_instance_attribute('tid', 'ns3::TypeId', is_const=False)
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002003 return
2004
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07002005def register_Ns3RandomVariable_methods(root_module, cls):
2006 cls.add_output_stream_operator()
2007 ## random-variable.h (module 'core'): ns3::RandomVariable::RandomVariable() [constructor]
2008 cls.add_constructor([])
2009 ## random-variable.h (module 'core'): ns3::RandomVariable::RandomVariable(ns3::RandomVariable const & o) [copy constructor]
2010 cls.add_constructor([param('ns3::RandomVariable const &', 'o')])
2011 ## random-variable.h (module 'core'): uint32_t ns3::RandomVariable::GetInteger() const [member function]
2012 cls.add_method('GetInteger',
2013 'uint32_t',
2014 [],
2015 is_const=True)
2016 ## random-variable.h (module 'core'): double ns3::RandomVariable::GetValue() const [member function]
2017 cls.add_method('GetValue',
2018 'double',
2019 [],
2020 is_const=True)
2021 return
2022
2023def register_Ns3RngSeedManager_methods(root_module, cls):
2024 ## rng-seed-manager.h (module 'core'): ns3::RngSeedManager::RngSeedManager() [constructor]
2025 cls.add_constructor([])
2026 ## rng-seed-manager.h (module 'core'): ns3::RngSeedManager::RngSeedManager(ns3::RngSeedManager const & arg0) [copy constructor]
2027 cls.add_constructor([param('ns3::RngSeedManager const &', 'arg0')])
2028 ## rng-seed-manager.h (module 'core'): static uint64_t ns3::RngSeedManager::GetNextStreamIndex() [member function]
2029 cls.add_method('GetNextStreamIndex',
2030 'uint64_t',
2031 [],
2032 is_static=True)
2033 ## rng-seed-manager.h (module 'core'): static uint64_t ns3::RngSeedManager::GetRun() [member function]
2034 cls.add_method('GetRun',
2035 'uint64_t',
2036 [],
2037 is_static=True)
2038 ## rng-seed-manager.h (module 'core'): static uint32_t ns3::RngSeedManager::GetSeed() [member function]
2039 cls.add_method('GetSeed',
2040 'uint32_t',
2041 [],
2042 is_static=True)
2043 ## rng-seed-manager.h (module 'core'): static void ns3::RngSeedManager::SetRun(uint64_t run) [member function]
2044 cls.add_method('SetRun',
2045 'void',
2046 [param('uint64_t', 'run')],
2047 is_static=True)
2048 ## rng-seed-manager.h (module 'core'): static void ns3::RngSeedManager::SetSeed(uint32_t seed) [member function]
2049 cls.add_method('SetSeed',
2050 'void',
2051 [param('uint32_t', 'seed')],
2052 is_static=True)
2053 return
2054
2055def register_Ns3SequentialVariable_methods(root_module, cls):
2056 ## random-variable.h (module 'core'): ns3::SequentialVariable::SequentialVariable(ns3::SequentialVariable const & arg0) [copy constructor]
2057 cls.add_constructor([param('ns3::SequentialVariable const &', 'arg0')])
2058 ## random-variable.h (module 'core'): ns3::SequentialVariable::SequentialVariable(double f, double l, double i=1, uint32_t c=1) [constructor]
2059 cls.add_constructor([param('double', 'f'), param('double', 'l'), param('double', 'i', default_value='1'), param('uint32_t', 'c', default_value='1')])
2060 ## random-variable.h (module 'core'): ns3::SequentialVariable::SequentialVariable(double f, double l, ns3::RandomVariable const & i, uint32_t c=1) [constructor]
2061 cls.add_constructor([param('double', 'f'), param('double', 'l'), param('ns3::RandomVariable const &', 'i'), param('uint32_t', 'c', default_value='1')])
2062 return
2063
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002064def register_Ns3SimpleRefCount__Ns3Object_Ns3ObjectBase_Ns3ObjectDeleter_methods(root_module, cls):
2065 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter>::SimpleRefCount() [constructor]
2066 cls.add_constructor([])
2067 ## 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]
2068 cls.add_constructor([param('ns3::SimpleRefCount< ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter > const &', 'o')])
2069 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter>::Cleanup() [member function]
2070 cls.add_method('Cleanup',
2071 'void',
2072 [],
2073 is_static=True)
2074 return
2075
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07002076def register_Ns3Tag_methods(root_module, cls):
2077 ## tag.h (module 'network'): ns3::Tag::Tag() [constructor]
Alexander Afanasyev4975f732011-12-20 17:52:19 -08002078 cls.add_constructor([])
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07002079 ## tag.h (module 'network'): ns3::Tag::Tag(ns3::Tag const & arg0) [copy constructor]
2080 cls.add_constructor([param('ns3::Tag const &', 'arg0')])
2081 ## tag.h (module 'network'): void ns3::Tag::Deserialize(ns3::TagBuffer i) [member function]
2082 cls.add_method('Deserialize',
Alexander Afanasyev4975f732011-12-20 17:52:19 -08002083 'void',
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07002084 [param('ns3::TagBuffer', 'i')],
2085 is_pure_virtual=True, is_virtual=True)
2086 ## tag.h (module 'network'): uint32_t ns3::Tag::GetSerializedSize() const [member function]
2087 cls.add_method('GetSerializedSize',
2088 'uint32_t',
2089 [],
2090 is_pure_virtual=True, is_const=True, is_virtual=True)
2091 ## tag.h (module 'network'): static ns3::TypeId ns3::Tag::GetTypeId() [member function]
2092 cls.add_method('GetTypeId',
2093 'ns3::TypeId',
2094 [],
Alexander Afanasyev4975f732011-12-20 17:52:19 -08002095 is_static=True)
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07002096 ## tag.h (module 'network'): void ns3::Tag::Print(std::ostream & os) const [member function]
2097 cls.add_method('Print',
Alexander Afanasyev4975f732011-12-20 17:52:19 -08002098 'void',
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07002099 [param('std::ostream &', 'os')],
2100 is_pure_virtual=True, is_const=True, is_virtual=True)
2101 ## tag.h (module 'network'): void ns3::Tag::Serialize(ns3::TagBuffer i) const [member function]
2102 cls.add_method('Serialize',
2103 'void',
2104 [param('ns3::TagBuffer', 'i')],
2105 is_pure_virtual=True, is_const=True, is_virtual=True)
Alexander Afanasyev4975f732011-12-20 17:52:19 -08002106 return
2107
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002108def register_Ns3TagBuffer_methods(root_module, cls):
2109 ## tag-buffer.h (module 'network'): ns3::TagBuffer::TagBuffer(ns3::TagBuffer const & arg0) [copy constructor]
2110 cls.add_constructor([param('ns3::TagBuffer const &', 'arg0')])
2111 ## tag-buffer.h (module 'network'): ns3::TagBuffer::TagBuffer(uint8_t * start, uint8_t * end) [constructor]
2112 cls.add_constructor([param('uint8_t *', 'start'), param('uint8_t *', 'end')])
2113 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::CopyFrom(ns3::TagBuffer o) [member function]
2114 cls.add_method('CopyFrom',
2115 'void',
2116 [param('ns3::TagBuffer', 'o')])
2117 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::Read(uint8_t * buffer, uint32_t size) [member function]
2118 cls.add_method('Read',
2119 'void',
2120 [param('uint8_t *', 'buffer'), param('uint32_t', 'size')])
2121 ## tag-buffer.h (module 'network'): double ns3::TagBuffer::ReadDouble() [member function]
2122 cls.add_method('ReadDouble',
2123 'double',
2124 [])
2125 ## tag-buffer.h (module 'network'): uint16_t ns3::TagBuffer::ReadU16() [member function]
2126 cls.add_method('ReadU16',
2127 'uint16_t',
2128 [])
2129 ## tag-buffer.h (module 'network'): uint32_t ns3::TagBuffer::ReadU32() [member function]
2130 cls.add_method('ReadU32',
2131 'uint32_t',
2132 [])
2133 ## tag-buffer.h (module 'network'): uint64_t ns3::TagBuffer::ReadU64() [member function]
2134 cls.add_method('ReadU64',
2135 'uint64_t',
2136 [])
2137 ## tag-buffer.h (module 'network'): uint8_t ns3::TagBuffer::ReadU8() [member function]
2138 cls.add_method('ReadU8',
2139 'uint8_t',
2140 [])
2141 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::TrimAtEnd(uint32_t trim) [member function]
2142 cls.add_method('TrimAtEnd',
2143 'void',
2144 [param('uint32_t', 'trim')])
2145 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::Write(uint8_t const * buffer, uint32_t size) [member function]
2146 cls.add_method('Write',
2147 'void',
2148 [param('uint8_t const *', 'buffer'), param('uint32_t', 'size')])
2149 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::WriteDouble(double v) [member function]
2150 cls.add_method('WriteDouble',
2151 'void',
2152 [param('double', 'v')])
2153 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::WriteU16(uint16_t data) [member function]
2154 cls.add_method('WriteU16',
2155 'void',
2156 [param('uint16_t', 'data')])
2157 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::WriteU32(uint32_t data) [member function]
2158 cls.add_method('WriteU32',
2159 'void',
2160 [param('uint32_t', 'data')])
2161 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::WriteU64(uint64_t v) [member function]
2162 cls.add_method('WriteU64',
2163 'void',
2164 [param('uint64_t', 'v')])
2165 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::WriteU8(uint8_t v) [member function]
2166 cls.add_method('WriteU8',
2167 'void',
2168 [param('uint8_t', 'v')])
2169 return
2170
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07002171def register_Ns3TriangularVariable_methods(root_module, cls):
2172 ## random-variable.h (module 'core'): ns3::TriangularVariable::TriangularVariable(ns3::TriangularVariable const & arg0) [copy constructor]
2173 cls.add_constructor([param('ns3::TriangularVariable const &', 'arg0')])
2174 ## random-variable.h (module 'core'): ns3::TriangularVariable::TriangularVariable() [constructor]
2175 cls.add_constructor([])
2176 ## random-variable.h (module 'core'): ns3::TriangularVariable::TriangularVariable(double s, double l, double mean) [constructor]
2177 cls.add_constructor([param('double', 's'), param('double', 'l'), param('double', 'mean')])
2178 return
2179
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002180def register_Ns3TypeId_methods(root_module, cls):
2181 cls.add_binary_comparison_operator('!=')
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07002182 cls.add_output_stream_operator()
Alexander Afanasyeva28ec562012-10-25 14:07:32 -07002183 cls.add_binary_comparison_operator('==')
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002184 cls.add_binary_comparison_operator('<')
2185 ## type-id.h (module 'core'): ns3::TypeId::TypeId(char const * name) [constructor]
2186 cls.add_constructor([param('char const *', 'name')])
2187 ## type-id.h (module 'core'): ns3::TypeId::TypeId() [constructor]
2188 cls.add_constructor([])
2189 ## type-id.h (module 'core'): ns3::TypeId::TypeId(ns3::TypeId const & o) [copy constructor]
2190 cls.add_constructor([param('ns3::TypeId const &', 'o')])
2191 ## 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]
2192 cls.add_method('AddAttribute',
2193 'ns3::TypeId',
2194 [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')])
2195 ## 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]
2196 cls.add_method('AddAttribute',
2197 'ns3::TypeId',
2198 [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')])
2199 ## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::AddTraceSource(std::string name, std::string help, ns3::Ptr<ns3::TraceSourceAccessor const> accessor) [member function]
2200 cls.add_method('AddTraceSource',
2201 'ns3::TypeId',
2202 [param('std::string', 'name'), param('std::string', 'help'), param('ns3::Ptr< ns3::TraceSourceAccessor const >', 'accessor')])
2203 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation ns3::TypeId::GetAttribute(uint32_t i) const [member function]
2204 cls.add_method('GetAttribute',
2205 'ns3::TypeId::AttributeInformation',
2206 [param('uint32_t', 'i')],
2207 is_const=True)
2208 ## type-id.h (module 'core'): std::string ns3::TypeId::GetAttributeFullName(uint32_t i) const [member function]
2209 cls.add_method('GetAttributeFullName',
2210 'std::string',
2211 [param('uint32_t', 'i')],
2212 is_const=True)
2213 ## type-id.h (module 'core'): uint32_t ns3::TypeId::GetAttributeN() const [member function]
2214 cls.add_method('GetAttributeN',
2215 'uint32_t',
2216 [],
2217 is_const=True)
2218 ## 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]
2219 cls.add_method('GetConstructor',
2220 'ns3::Callback< ns3::ObjectBase *, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >',
2221 [],
2222 is_const=True)
2223 ## type-id.h (module 'core'): std::string ns3::TypeId::GetGroupName() const [member function]
2224 cls.add_method('GetGroupName',
2225 'std::string',
2226 [],
2227 is_const=True)
2228 ## type-id.h (module 'core'): std::string ns3::TypeId::GetName() const [member function]
2229 cls.add_method('GetName',
2230 'std::string',
2231 [],
2232 is_const=True)
2233 ## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::GetParent() const [member function]
2234 cls.add_method('GetParent',
2235 'ns3::TypeId',
2236 [],
2237 is_const=True)
2238 ## type-id.h (module 'core'): static ns3::TypeId ns3::TypeId::GetRegistered(uint32_t i) [member function]
2239 cls.add_method('GetRegistered',
2240 'ns3::TypeId',
2241 [param('uint32_t', 'i')],
2242 is_static=True)
2243 ## type-id.h (module 'core'): static uint32_t ns3::TypeId::GetRegisteredN() [member function]
2244 cls.add_method('GetRegisteredN',
2245 'uint32_t',
2246 [],
2247 is_static=True)
2248 ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation ns3::TypeId::GetTraceSource(uint32_t i) const [member function]
2249 cls.add_method('GetTraceSource',
2250 'ns3::TypeId::TraceSourceInformation',
2251 [param('uint32_t', 'i')],
2252 is_const=True)
2253 ## type-id.h (module 'core'): uint32_t ns3::TypeId::GetTraceSourceN() const [member function]
2254 cls.add_method('GetTraceSourceN',
2255 'uint32_t',
2256 [],
2257 is_const=True)
2258 ## type-id.h (module 'core'): uint16_t ns3::TypeId::GetUid() const [member function]
2259 cls.add_method('GetUid',
2260 'uint16_t',
2261 [],
2262 is_const=True)
2263 ## type-id.h (module 'core'): bool ns3::TypeId::HasConstructor() const [member function]
2264 cls.add_method('HasConstructor',
2265 'bool',
2266 [],
2267 is_const=True)
2268 ## type-id.h (module 'core'): bool ns3::TypeId::HasParent() const [member function]
2269 cls.add_method('HasParent',
2270 'bool',
2271 [],
2272 is_const=True)
2273 ## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::HideFromDocumentation() [member function]
2274 cls.add_method('HideFromDocumentation',
2275 'ns3::TypeId',
2276 [])
2277 ## type-id.h (module 'core'): bool ns3::TypeId::IsChildOf(ns3::TypeId other) const [member function]
2278 cls.add_method('IsChildOf',
2279 'bool',
2280 [param('ns3::TypeId', 'other')],
2281 is_const=True)
2282 ## type-id.h (module 'core'): bool ns3::TypeId::LookupAttributeByName(std::string name, ns3::TypeId::AttributeInformation * info) const [member function]
2283 cls.add_method('LookupAttributeByName',
2284 'bool',
Alexander Afanasyev6f933532012-02-29 13:30:37 -08002285 [param('std::string', 'name'), param('ns3::TypeId::AttributeInformation *', 'info', transfer_ownership=False)],
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002286 is_const=True)
2287 ## type-id.h (module 'core'): static ns3::TypeId ns3::TypeId::LookupByName(std::string name) [member function]
2288 cls.add_method('LookupByName',
2289 'ns3::TypeId',
2290 [param('std::string', 'name')],
2291 is_static=True)
2292 ## type-id.h (module 'core'): ns3::Ptr<ns3::TraceSourceAccessor const> ns3::TypeId::LookupTraceSourceByName(std::string name) const [member function]
2293 cls.add_method('LookupTraceSourceByName',
2294 'ns3::Ptr< ns3::TraceSourceAccessor const >',
2295 [param('std::string', 'name')],
2296 is_const=True)
2297 ## type-id.h (module 'core'): bool ns3::TypeId::MustHideFromDocumentation() const [member function]
2298 cls.add_method('MustHideFromDocumentation',
2299 'bool',
2300 [],
2301 is_const=True)
2302 ## type-id.h (module 'core'): bool ns3::TypeId::SetAttributeInitialValue(uint32_t i, ns3::Ptr<ns3::AttributeValue const> initialValue) [member function]
2303 cls.add_method('SetAttributeInitialValue',
2304 'bool',
2305 [param('uint32_t', 'i'), param('ns3::Ptr< ns3::AttributeValue const >', 'initialValue')])
2306 ## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::SetGroupName(std::string groupName) [member function]
2307 cls.add_method('SetGroupName',
2308 'ns3::TypeId',
2309 [param('std::string', 'groupName')])
2310 ## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::SetParent(ns3::TypeId tid) [member function]
2311 cls.add_method('SetParent',
2312 'ns3::TypeId',
2313 [param('ns3::TypeId', 'tid')])
2314 ## type-id.h (module 'core'): void ns3::TypeId::SetUid(uint16_t tid) [member function]
2315 cls.add_method('SetUid',
2316 'void',
2317 [param('uint16_t', 'tid')])
2318 return
2319
2320def register_Ns3TypeIdAttributeInformation_methods(root_module, cls):
2321 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::AttributeInformation() [constructor]
2322 cls.add_constructor([])
2323 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::AttributeInformation(ns3::TypeId::AttributeInformation const & arg0) [copy constructor]
2324 cls.add_constructor([param('ns3::TypeId::AttributeInformation const &', 'arg0')])
2325 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::accessor [variable]
2326 cls.add_instance_attribute('accessor', 'ns3::Ptr< ns3::AttributeAccessor const >', is_const=False)
2327 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::checker [variable]
2328 cls.add_instance_attribute('checker', 'ns3::Ptr< ns3::AttributeChecker const >', is_const=False)
2329 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::flags [variable]
2330 cls.add_instance_attribute('flags', 'uint32_t', is_const=False)
2331 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::help [variable]
2332 cls.add_instance_attribute('help', 'std::string', is_const=False)
2333 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::initialValue [variable]
2334 cls.add_instance_attribute('initialValue', 'ns3::Ptr< ns3::AttributeValue const >', is_const=False)
2335 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::name [variable]
2336 cls.add_instance_attribute('name', 'std::string', is_const=False)
2337 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::originalInitialValue [variable]
2338 cls.add_instance_attribute('originalInitialValue', 'ns3::Ptr< ns3::AttributeValue const >', is_const=False)
2339 return
2340
2341def register_Ns3TypeIdTraceSourceInformation_methods(root_module, cls):
2342 ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation::TraceSourceInformation() [constructor]
2343 cls.add_constructor([])
2344 ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation::TraceSourceInformation(ns3::TypeId::TraceSourceInformation const & arg0) [copy constructor]
2345 cls.add_constructor([param('ns3::TypeId::TraceSourceInformation const &', 'arg0')])
2346 ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation::accessor [variable]
2347 cls.add_instance_attribute('accessor', 'ns3::Ptr< ns3::TraceSourceAccessor const >', is_const=False)
2348 ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation::help [variable]
2349 cls.add_instance_attribute('help', 'std::string', is_const=False)
2350 ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation::name [variable]
2351 cls.add_instance_attribute('name', 'std::string', is_const=False)
2352 return
2353
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07002354def register_Ns3UniformVariable_methods(root_module, cls):
2355 ## random-variable.h (module 'core'): ns3::UniformVariable::UniformVariable(ns3::UniformVariable const & arg0) [copy constructor]
2356 cls.add_constructor([param('ns3::UniformVariable const &', 'arg0')])
2357 ## random-variable.h (module 'core'): ns3::UniformVariable::UniformVariable() [constructor]
2358 cls.add_constructor([])
2359 ## random-variable.h (module 'core'): ns3::UniformVariable::UniformVariable(double s, double l) [constructor]
2360 cls.add_constructor([param('double', 's'), param('double', 'l')])
2361 ## random-variable.h (module 'core'): uint32_t ns3::UniformVariable::GetInteger(uint32_t s, uint32_t l) [member function]
2362 cls.add_method('GetInteger',
2363 'uint32_t',
2364 [param('uint32_t', 's'), param('uint32_t', 'l')])
2365 ## random-variable.h (module 'core'): double ns3::UniformVariable::GetValue() const [member function]
2366 cls.add_method('GetValue',
2367 'double',
2368 [],
2369 is_const=True)
2370 ## random-variable.h (module 'core'): double ns3::UniformVariable::GetValue(double s, double l) [member function]
2371 cls.add_method('GetValue',
2372 'double',
2373 [param('double', 's'), param('double', 'l')])
2374 return
2375
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07002376def register_Ns3WeibullVariable_methods(root_module, cls):
2377 ## random-variable.h (module 'core'): ns3::WeibullVariable::WeibullVariable(ns3::WeibullVariable const & arg0) [copy constructor]
2378 cls.add_constructor([param('ns3::WeibullVariable const &', 'arg0')])
2379 ## random-variable.h (module 'core'): ns3::WeibullVariable::WeibullVariable() [constructor]
2380 cls.add_constructor([])
2381 ## random-variable.h (module 'core'): ns3::WeibullVariable::WeibullVariable(double m) [constructor]
2382 cls.add_constructor([param('double', 'm')])
2383 ## random-variable.h (module 'core'): ns3::WeibullVariable::WeibullVariable(double m, double s) [constructor]
2384 cls.add_constructor([param('double', 'm'), param('double', 's')])
2385 ## random-variable.h (module 'core'): ns3::WeibullVariable::WeibullVariable(double m, double s, double b) [constructor]
2386 cls.add_constructor([param('double', 'm'), param('double', 's'), param('double', 'b')])
2387 return
2388
2389def register_Ns3ZetaVariable_methods(root_module, cls):
2390 ## random-variable.h (module 'core'): ns3::ZetaVariable::ZetaVariable(ns3::ZetaVariable const & arg0) [copy constructor]
2391 cls.add_constructor([param('ns3::ZetaVariable const &', 'arg0')])
2392 ## random-variable.h (module 'core'): ns3::ZetaVariable::ZetaVariable(double alpha) [constructor]
2393 cls.add_constructor([param('double', 'alpha')])
2394 ## random-variable.h (module 'core'): ns3::ZetaVariable::ZetaVariable() [constructor]
2395 cls.add_constructor([])
2396 return
2397
2398def register_Ns3ZipfVariable_methods(root_module, cls):
2399 ## random-variable.h (module 'core'): ns3::ZipfVariable::ZipfVariable(ns3::ZipfVariable const & arg0) [copy constructor]
2400 cls.add_constructor([param('ns3::ZipfVariable const &', 'arg0')])
2401 ## random-variable.h (module 'core'): ns3::ZipfVariable::ZipfVariable(long int N, double alpha) [constructor]
2402 cls.add_constructor([param('long int', 'N'), param('double', 'alpha')])
2403 ## random-variable.h (module 'core'): ns3::ZipfVariable::ZipfVariable() [constructor]
2404 cls.add_constructor([])
2405 return
2406
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002407def register_Ns3Empty_methods(root_module, cls):
2408 ## empty.h (module 'core'): ns3::empty::empty() [constructor]
2409 cls.add_constructor([])
2410 ## empty.h (module 'core'): ns3::empty::empty(ns3::empty const & arg0) [copy constructor]
2411 cls.add_constructor([param('ns3::empty const &', 'arg0')])
2412 return
2413
2414def register_Ns3Int64x64_t_methods(root_module, cls):
2415 cls.add_binary_comparison_operator('!=')
2416 cls.add_inplace_numeric_operator('*=', param('ns3::int64x64_t const &', 'right'))
2417 cls.add_inplace_numeric_operator('+=', param('ns3::int64x64_t const &', 'right'))
2418 cls.add_inplace_numeric_operator('-=', param('ns3::int64x64_t const &', 'right'))
Alexander Afanasyeva28ec562012-10-25 14:07:32 -07002419 cls.add_output_stream_operator()
Alexander Afanasyeva8f5d882012-11-09 14:22:48 -08002420 cls.add_binary_comparison_operator('<=')
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002421 cls.add_binary_comparison_operator('==')
2422 cls.add_binary_comparison_operator('>=')
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07002423 cls.add_inplace_numeric_operator('/=', param('ns3::int64x64_t const &', 'right'))
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002424 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long unsigned int const', 'right'))
2425 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long unsigned int const', 'right'))
2426 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned int const', 'right'))
2427 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short unsigned int const', 'right'))
2428 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned char const', 'right'))
2429 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long int const', 'right'))
2430 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long int const', 'right'))
2431 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('int const', 'right'))
2432 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short int const', 'right'))
2433 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('signed char const', 'right'))
2434 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('double const', 'right'))
2435 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('ns3::int64x64_t const &', 'right'))
2436 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long unsigned int const', 'right'))
2437 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long unsigned int const', 'right'))
2438 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned int const', 'right'))
2439 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short unsigned int const', 'right'))
2440 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned char const', 'right'))
2441 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long int const', 'right'))
2442 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long int const', 'right'))
2443 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('int const', 'right'))
2444 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short int const', 'right'))
2445 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('signed char const', 'right'))
2446 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('double const', 'right'))
2447 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('ns3::int64x64_t const &', 'right'))
2448 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long unsigned int const', 'right'))
2449 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long unsigned int const', 'right'))
2450 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned int const', 'right'))
2451 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short unsigned int const', 'right'))
2452 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned char const', 'right'))
2453 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long int const', 'right'))
2454 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long int const', 'right'))
2455 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('int const', 'right'))
2456 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short int const', 'right'))
2457 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('signed char const', 'right'))
2458 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('double const', 'right'))
2459 cls.add_unary_numeric_operator('-')
2460 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('ns3::int64x64_t const &', 'right'))
2461 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long unsigned int const', 'right'))
2462 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long unsigned int const', 'right'))
2463 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned int const', 'right'))
2464 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short unsigned int const', 'right'))
2465 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned char const', 'right'))
2466 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long int const', 'right'))
2467 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long int const', 'right'))
2468 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('int const', 'right'))
2469 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short int const', 'right'))
2470 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('signed char const', 'right'))
2471 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('double const', 'right'))
2472 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('ns3::int64x64_t const &', 'right'))
2473 cls.add_binary_comparison_operator('<')
2474 cls.add_binary_comparison_operator('>')
2475 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t() [constructor]
2476 cls.add_constructor([])
2477 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(double v) [constructor]
2478 cls.add_constructor([param('double', 'v')])
2479 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(int v) [constructor]
2480 cls.add_constructor([param('int', 'v')])
2481 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(long int v) [constructor]
2482 cls.add_constructor([param('long int', 'v')])
2483 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(long long int v) [constructor]
2484 cls.add_constructor([param('long long int', 'v')])
2485 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(unsigned int v) [constructor]
2486 cls.add_constructor([param('unsigned int', 'v')])
2487 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(long unsigned int v) [constructor]
2488 cls.add_constructor([param('long unsigned int', 'v')])
2489 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(long long unsigned int v) [constructor]
2490 cls.add_constructor([param('long long unsigned int', 'v')])
2491 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(int64_t hi, uint64_t lo) [constructor]
2492 cls.add_constructor([param('int64_t', 'hi'), param('uint64_t', 'lo')])
2493 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(ns3::int64x64_t const & o) [copy constructor]
2494 cls.add_constructor([param('ns3::int64x64_t const &', 'o')])
2495 ## int64x64-double.h (module 'core'): double ns3::int64x64_t::GetDouble() const [member function]
2496 cls.add_method('GetDouble',
2497 'double',
2498 [],
2499 is_const=True)
2500 ## int64x64-double.h (module 'core'): int64_t ns3::int64x64_t::GetHigh() const [member function]
2501 cls.add_method('GetHigh',
2502 'int64_t',
2503 [],
2504 is_const=True)
2505 ## int64x64-double.h (module 'core'): uint64_t ns3::int64x64_t::GetLow() const [member function]
2506 cls.add_method('GetLow',
2507 'uint64_t',
2508 [],
2509 is_const=True)
2510 ## int64x64-double.h (module 'core'): static ns3::int64x64_t ns3::int64x64_t::Invert(uint64_t v) [member function]
2511 cls.add_method('Invert',
2512 'ns3::int64x64_t',
2513 [param('uint64_t', 'v')],
2514 is_static=True)
2515 ## int64x64-double.h (module 'core'): void ns3::int64x64_t::MulByInvert(ns3::int64x64_t const & o) [member function]
2516 cls.add_method('MulByInvert',
2517 'void',
2518 [param('ns3::int64x64_t const &', 'o')])
2519 return
2520
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002521def register_Ns3Chunk_methods(root_module, cls):
2522 ## chunk.h (module 'network'): ns3::Chunk::Chunk() [constructor]
2523 cls.add_constructor([])
2524 ## chunk.h (module 'network'): ns3::Chunk::Chunk(ns3::Chunk const & arg0) [copy constructor]
2525 cls.add_constructor([param('ns3::Chunk const &', 'arg0')])
2526 ## chunk.h (module 'network'): uint32_t ns3::Chunk::Deserialize(ns3::Buffer::Iterator start) [member function]
2527 cls.add_method('Deserialize',
2528 'uint32_t',
2529 [param('ns3::Buffer::Iterator', 'start')],
2530 is_pure_virtual=True, is_virtual=True)
2531 ## chunk.h (module 'network'): static ns3::TypeId ns3::Chunk::GetTypeId() [member function]
2532 cls.add_method('GetTypeId',
2533 'ns3::TypeId',
2534 [],
2535 is_static=True)
2536 ## chunk.h (module 'network'): void ns3::Chunk::Print(std::ostream & os) const [member function]
2537 cls.add_method('Print',
2538 'void',
2539 [param('std::ostream &', 'os')],
2540 is_pure_virtual=True, is_const=True, is_virtual=True)
2541 return
2542
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07002543def register_Ns3ConstantVariable_methods(root_module, cls):
2544 ## random-variable.h (module 'core'): ns3::ConstantVariable::ConstantVariable(ns3::ConstantVariable const & arg0) [copy constructor]
2545 cls.add_constructor([param('ns3::ConstantVariable const &', 'arg0')])
2546 ## random-variable.h (module 'core'): ns3::ConstantVariable::ConstantVariable() [constructor]
2547 cls.add_constructor([])
2548 ## random-variable.h (module 'core'): ns3::ConstantVariable::ConstantVariable(double c) [constructor]
2549 cls.add_constructor([param('double', 'c')])
2550 ## random-variable.h (module 'core'): void ns3::ConstantVariable::SetConstant(double c) [member function]
2551 cls.add_method('SetConstant',
2552 'void',
2553 [param('double', 'c')])
2554 return
2555
2556def register_Ns3DeterministicVariable_methods(root_module, cls):
2557 ## random-variable.h (module 'core'): ns3::DeterministicVariable::DeterministicVariable(ns3::DeterministicVariable const & arg0) [copy constructor]
2558 cls.add_constructor([param('ns3::DeterministicVariable const &', 'arg0')])
2559 ## random-variable.h (module 'core'): ns3::DeterministicVariable::DeterministicVariable(double * d, uint32_t c) [constructor]
2560 cls.add_constructor([param('double *', 'd'), param('uint32_t', 'c')])
2561 return
2562
2563def register_Ns3EmpiricalVariable_methods(root_module, cls):
2564 ## random-variable.h (module 'core'): ns3::EmpiricalVariable::EmpiricalVariable(ns3::EmpiricalVariable const & arg0) [copy constructor]
2565 cls.add_constructor([param('ns3::EmpiricalVariable const &', 'arg0')])
2566 ## random-variable.h (module 'core'): ns3::EmpiricalVariable::EmpiricalVariable() [constructor]
2567 cls.add_constructor([])
2568 ## random-variable.h (module 'core'): void ns3::EmpiricalVariable::CDF(double v, double c) [member function]
2569 cls.add_method('CDF',
2570 'void',
2571 [param('double', 'v'), param('double', 'c')])
2572 return
2573
2574def register_Ns3ErlangVariable_methods(root_module, cls):
2575 ## random-variable.h (module 'core'): ns3::ErlangVariable::ErlangVariable(ns3::ErlangVariable const & arg0) [copy constructor]
2576 cls.add_constructor([param('ns3::ErlangVariable const &', 'arg0')])
2577 ## random-variable.h (module 'core'): ns3::ErlangVariable::ErlangVariable() [constructor]
2578 cls.add_constructor([])
2579 ## random-variable.h (module 'core'): ns3::ErlangVariable::ErlangVariable(unsigned int k, double lambda) [constructor]
2580 cls.add_constructor([param('unsigned int', 'k'), param('double', 'lambda')])
2581 ## random-variable.h (module 'core'): double ns3::ErlangVariable::GetValue() const [member function]
2582 cls.add_method('GetValue',
2583 'double',
2584 [],
2585 is_const=True)
2586 ## random-variable.h (module 'core'): double ns3::ErlangVariable::GetValue(unsigned int k, double lambda) const [member function]
2587 cls.add_method('GetValue',
2588 'double',
2589 [param('unsigned int', 'k'), param('double', 'lambda')],
2590 is_const=True)
2591 return
2592
2593def register_Ns3ExponentialVariable_methods(root_module, cls):
2594 ## random-variable.h (module 'core'): ns3::ExponentialVariable::ExponentialVariable(ns3::ExponentialVariable const & arg0) [copy constructor]
2595 cls.add_constructor([param('ns3::ExponentialVariable const &', 'arg0')])
2596 ## random-variable.h (module 'core'): ns3::ExponentialVariable::ExponentialVariable() [constructor]
2597 cls.add_constructor([])
2598 ## random-variable.h (module 'core'): ns3::ExponentialVariable::ExponentialVariable(double m) [constructor]
2599 cls.add_constructor([param('double', 'm')])
2600 ## random-variable.h (module 'core'): ns3::ExponentialVariable::ExponentialVariable(double m, double b) [constructor]
2601 cls.add_constructor([param('double', 'm'), param('double', 'b')])
2602 return
2603
2604def register_Ns3GammaVariable_methods(root_module, cls):
2605 ## random-variable.h (module 'core'): ns3::GammaVariable::GammaVariable(ns3::GammaVariable const & arg0) [copy constructor]
2606 cls.add_constructor([param('ns3::GammaVariable const &', 'arg0')])
2607 ## random-variable.h (module 'core'): ns3::GammaVariable::GammaVariable() [constructor]
2608 cls.add_constructor([])
2609 ## random-variable.h (module 'core'): ns3::GammaVariable::GammaVariable(double alpha, double beta) [constructor]
2610 cls.add_constructor([param('double', 'alpha'), param('double', 'beta')])
2611 ## random-variable.h (module 'core'): double ns3::GammaVariable::GetValue() const [member function]
2612 cls.add_method('GetValue',
2613 'double',
2614 [],
2615 is_const=True)
2616 ## random-variable.h (module 'core'): double ns3::GammaVariable::GetValue(double alpha, double beta) const [member function]
2617 cls.add_method('GetValue',
2618 'double',
2619 [param('double', 'alpha'), param('double', 'beta')],
2620 is_const=True)
2621 return
2622
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002623def register_Ns3Header_methods(root_module, cls):
2624 cls.add_output_stream_operator()
2625 ## header.h (module 'network'): ns3::Header::Header() [constructor]
2626 cls.add_constructor([])
2627 ## header.h (module 'network'): ns3::Header::Header(ns3::Header const & arg0) [copy constructor]
2628 cls.add_constructor([param('ns3::Header const &', 'arg0')])
2629 ## header.h (module 'network'): uint32_t ns3::Header::Deserialize(ns3::Buffer::Iterator start) [member function]
2630 cls.add_method('Deserialize',
2631 'uint32_t',
2632 [param('ns3::Buffer::Iterator', 'start')],
2633 is_pure_virtual=True, is_virtual=True)
2634 ## header.h (module 'network'): uint32_t ns3::Header::GetSerializedSize() const [member function]
2635 cls.add_method('GetSerializedSize',
2636 'uint32_t',
2637 [],
2638 is_pure_virtual=True, is_const=True, is_virtual=True)
2639 ## header.h (module 'network'): static ns3::TypeId ns3::Header::GetTypeId() [member function]
2640 cls.add_method('GetTypeId',
2641 'ns3::TypeId',
2642 [],
2643 is_static=True)
2644 ## header.h (module 'network'): void ns3::Header::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 ## header.h (module 'network'): void ns3::Header::Serialize(ns3::Buffer::Iterator start) const [member function]
2650 cls.add_method('Serialize',
2651 'void',
2652 [param('ns3::Buffer::Iterator', 'start')],
2653 is_pure_virtual=True, is_const=True, is_virtual=True)
2654 return
2655
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07002656def register_Ns3IntEmpiricalVariable_methods(root_module, cls):
2657 ## random-variable.h (module 'core'): ns3::IntEmpiricalVariable::IntEmpiricalVariable(ns3::IntEmpiricalVariable const & arg0) [copy constructor]
2658 cls.add_constructor([param('ns3::IntEmpiricalVariable const &', 'arg0')])
2659 ## random-variable.h (module 'core'): ns3::IntEmpiricalVariable::IntEmpiricalVariable() [constructor]
2660 cls.add_constructor([])
2661 return
2662
2663def register_Ns3LogNormalVariable_methods(root_module, cls):
2664 ## random-variable.h (module 'core'): ns3::LogNormalVariable::LogNormalVariable(ns3::LogNormalVariable const & arg0) [copy constructor]
2665 cls.add_constructor([param('ns3::LogNormalVariable const &', 'arg0')])
2666 ## random-variable.h (module 'core'): ns3::LogNormalVariable::LogNormalVariable(double mu, double sigma) [constructor]
2667 cls.add_constructor([param('double', 'mu'), param('double', 'sigma')])
2668 return
2669
2670def register_Ns3NormalVariable_methods(root_module, cls):
2671 ## random-variable.h (module 'core'): ns3::NormalVariable::NormalVariable(ns3::NormalVariable const & arg0) [copy constructor]
2672 cls.add_constructor([param('ns3::NormalVariable const &', 'arg0')])
2673 ## random-variable.h (module 'core'): ns3::NormalVariable::NormalVariable() [constructor]
2674 cls.add_constructor([])
2675 ## random-variable.h (module 'core'): ns3::NormalVariable::NormalVariable(double m, double v) [constructor]
2676 cls.add_constructor([param('double', 'm'), param('double', 'v')])
2677 ## random-variable.h (module 'core'): ns3::NormalVariable::NormalVariable(double m, double v, double b) [constructor]
2678 cls.add_constructor([param('double', 'm'), param('double', 'v'), param('double', 'b')])
2679 return
2680
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002681def register_Ns3Object_methods(root_module, cls):
2682 ## object.h (module 'core'): ns3::Object::Object() [constructor]
2683 cls.add_constructor([])
2684 ## object.h (module 'core'): void ns3::Object::AggregateObject(ns3::Ptr<ns3::Object> other) [member function]
2685 cls.add_method('AggregateObject',
2686 'void',
2687 [param('ns3::Ptr< ns3::Object >', 'other')])
2688 ## object.h (module 'core'): void ns3::Object::Dispose() [member function]
2689 cls.add_method('Dispose',
2690 'void',
2691 [])
2692 ## object.h (module 'core'): ns3::Object::AggregateIterator ns3::Object::GetAggregateIterator() const [member function]
2693 cls.add_method('GetAggregateIterator',
2694 'ns3::Object::AggregateIterator',
2695 [],
2696 is_const=True)
2697 ## object.h (module 'core'): ns3::TypeId ns3::Object::GetInstanceTypeId() const [member function]
2698 cls.add_method('GetInstanceTypeId',
2699 'ns3::TypeId',
2700 [],
2701 is_const=True, is_virtual=True)
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07002702 ## object.h (module 'core'): ns3::Ptr<ns3::ndn::ContentStore> ns3::Object::GetObject() const [member function]
2703 cls.add_method('GetObject',
2704 'ns3::Ptr< ns3::ndn::ContentStore >',
2705 [],
2706 is_const=True, template_parameters=['ns3::ndn::ContentStore'])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07002707 ## object.h (module 'core'): ns3::Ptr<ns3::ndn::Fib> ns3::Object::GetObject() const [member function]
Alexander Afanasyev1c0248b2012-07-24 15:59:50 -07002708 cls.add_method('GetObject',
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07002709 'ns3::Ptr< ns3::ndn::Fib >',
Alexander Afanasyev1c0248b2012-07-24 15:59:50 -07002710 [],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07002711 is_const=True, template_parameters=['ns3::ndn::Fib'])
2712 ## object.h (module 'core'): ns3::Ptr<ns3::ndn::Pit> ns3::Object::GetObject() const [member function]
Alexander Afanasyev5feb38b2012-08-09 11:01:43 -07002713 cls.add_method('GetObject',
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07002714 'ns3::Ptr< ns3::ndn::Pit >',
Alexander Afanasyev5feb38b2012-08-09 11:01:43 -07002715 [],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07002716 is_const=True, template_parameters=['ns3::ndn::Pit'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002717 ## object.h (module 'core'): static ns3::TypeId ns3::Object::GetTypeId() [member function]
2718 cls.add_method('GetTypeId',
2719 'ns3::TypeId',
2720 [],
2721 is_static=True)
2722 ## object.h (module 'core'): void ns3::Object::Start() [member function]
2723 cls.add_method('Start',
2724 'void',
2725 [])
2726 ## object.h (module 'core'): ns3::Object::Object(ns3::Object const & o) [copy constructor]
2727 cls.add_constructor([param('ns3::Object const &', 'o')],
2728 visibility='protected')
2729 ## object.h (module 'core'): void ns3::Object::DoDispose() [member function]
2730 cls.add_method('DoDispose',
2731 'void',
2732 [],
2733 visibility='protected', is_virtual=True)
2734 ## object.h (module 'core'): void ns3::Object::DoStart() [member function]
2735 cls.add_method('DoStart',
2736 'void',
2737 [],
2738 visibility='protected', is_virtual=True)
2739 ## object.h (module 'core'): void ns3::Object::NotifyNewAggregate() [member function]
2740 cls.add_method('NotifyNewAggregate',
2741 'void',
2742 [],
2743 visibility='protected', is_virtual=True)
2744 return
2745
2746def register_Ns3ObjectAggregateIterator_methods(root_module, cls):
2747 ## object.h (module 'core'): ns3::Object::AggregateIterator::AggregateIterator(ns3::Object::AggregateIterator const & arg0) [copy constructor]
2748 cls.add_constructor([param('ns3::Object::AggregateIterator const &', 'arg0')])
2749 ## object.h (module 'core'): ns3::Object::AggregateIterator::AggregateIterator() [constructor]
2750 cls.add_constructor([])
2751 ## object.h (module 'core'): bool ns3::Object::AggregateIterator::HasNext() const [member function]
2752 cls.add_method('HasNext',
2753 'bool',
2754 [],
2755 is_const=True)
2756 ## object.h (module 'core'): ns3::Ptr<ns3::Object const> ns3::Object::AggregateIterator::Next() [member function]
2757 cls.add_method('Next',
2758 'ns3::Ptr< ns3::Object const >',
2759 [])
2760 return
2761
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07002762def register_Ns3ParetoVariable_methods(root_module, cls):
2763 ## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable(ns3::ParetoVariable const & arg0) [copy constructor]
2764 cls.add_constructor([param('ns3::ParetoVariable const &', 'arg0')])
2765 ## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable() [constructor]
2766 cls.add_constructor([])
2767 ## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable(double m) [constructor]
2768 cls.add_constructor([param('double', 'm')])
2769 ## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable(double m, double s) [constructor]
2770 cls.add_constructor([param('double', 'm'), param('double', 's')])
2771 ## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable(double m, double s, double b) [constructor]
2772 cls.add_constructor([param('double', 'm'), param('double', 's'), param('double', 'b')])
2773 ## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable(std::pair<double,double> params) [constructor]
2774 cls.add_constructor([param('std::pair< double, double >', 'params')])
2775 ## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable(std::pair<double,double> params, double b) [constructor]
2776 cls.add_constructor([param('std::pair< double, double >', 'params'), param('double', 'b')])
2777 return
2778
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002779def register_Ns3SimpleRefCount__Ns3AttributeAccessor_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeAccessor__gt___methods(root_module, cls):
2780 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> >::SimpleRefCount() [constructor]
2781 cls.add_constructor([])
2782 ## 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]
2783 cls.add_constructor([param('ns3::SimpleRefCount< ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter< ns3::AttributeAccessor > > const &', 'o')])
2784 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> >::Cleanup() [member function]
2785 cls.add_method('Cleanup',
2786 'void',
2787 [],
2788 is_static=True)
2789 return
2790
2791def register_Ns3SimpleRefCount__Ns3AttributeChecker_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeChecker__gt___methods(root_module, cls):
2792 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter<ns3::AttributeChecker> >::SimpleRefCount() [constructor]
2793 cls.add_constructor([])
2794 ## 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]
2795 cls.add_constructor([param('ns3::SimpleRefCount< ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter< ns3::AttributeChecker > > const &', 'o')])
2796 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter<ns3::AttributeChecker> >::Cleanup() [member function]
2797 cls.add_method('Cleanup',
2798 'void',
2799 [],
2800 is_static=True)
2801 return
2802
2803def register_Ns3SimpleRefCount__Ns3AttributeValue_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeValue__gt___methods(root_module, cls):
2804 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter<ns3::AttributeValue> >::SimpleRefCount() [constructor]
2805 cls.add_constructor([])
2806 ## 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]
2807 cls.add_constructor([param('ns3::SimpleRefCount< ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter< ns3::AttributeValue > > const &', 'o')])
2808 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter<ns3::AttributeValue> >::Cleanup() [member function]
2809 cls.add_method('Cleanup',
2810 'void',
2811 [],
2812 is_static=True)
2813 return
2814
2815def register_Ns3SimpleRefCount__Ns3CallbackImplBase_Ns3Empty_Ns3DefaultDeleter__lt__ns3CallbackImplBase__gt___methods(root_module, cls):
2816 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> >::SimpleRefCount() [constructor]
2817 cls.add_constructor([])
2818 ## 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]
2819 cls.add_constructor([param('ns3::SimpleRefCount< ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter< ns3::CallbackImplBase > > const &', 'o')])
2820 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> >::Cleanup() [member function]
2821 cls.add_method('Cleanup',
2822 'void',
2823 [],
2824 is_static=True)
2825 return
2826
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002827def register_Ns3SimpleRefCount__Ns3EventImpl_Ns3Empty_Ns3DefaultDeleter__lt__ns3EventImpl__gt___methods(root_module, cls):
2828 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::EventImpl, ns3::empty, ns3::DefaultDeleter<ns3::EventImpl> >::SimpleRefCount() [constructor]
2829 cls.add_constructor([])
2830 ## 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]
2831 cls.add_constructor([param('ns3::SimpleRefCount< ns3::EventImpl, ns3::empty, ns3::DefaultDeleter< ns3::EventImpl > > const &', 'o')])
2832 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::EventImpl, ns3::empty, ns3::DefaultDeleter<ns3::EventImpl> >::Cleanup() [member function]
2833 cls.add_method('Cleanup',
2834 'void',
2835 [],
2836 is_static=True)
2837 return
2838
2839def register_Ns3SimpleRefCount__Ns3NixVector_Ns3Empty_Ns3DefaultDeleter__lt__ns3NixVector__gt___methods(root_module, cls):
2840 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::NixVector, ns3::empty, ns3::DefaultDeleter<ns3::NixVector> >::SimpleRefCount() [constructor]
2841 cls.add_constructor([])
2842 ## 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]
2843 cls.add_constructor([param('ns3::SimpleRefCount< ns3::NixVector, ns3::empty, ns3::DefaultDeleter< ns3::NixVector > > const &', 'o')])
2844 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::NixVector, ns3::empty, ns3::DefaultDeleter<ns3::NixVector> >::Cleanup() [member function]
2845 cls.add_method('Cleanup',
2846 'void',
2847 [],
2848 is_static=True)
2849 return
2850
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002851def register_Ns3SimpleRefCount__Ns3Packet_Ns3Empty_Ns3DefaultDeleter__lt__ns3Packet__gt___methods(root_module, cls):
2852 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Packet, ns3::empty, ns3::DefaultDeleter<ns3::Packet> >::SimpleRefCount() [constructor]
2853 cls.add_constructor([])
2854 ## 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]
2855 cls.add_constructor([param('ns3::SimpleRefCount< ns3::Packet, ns3::empty, ns3::DefaultDeleter< ns3::Packet > > const &', 'o')])
2856 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::Packet, ns3::empty, ns3::DefaultDeleter<ns3::Packet> >::Cleanup() [member function]
2857 cls.add_method('Cleanup',
2858 'void',
2859 [],
2860 is_static=True)
2861 return
2862
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07002863def register_Ns3SimpleRefCount__Ns3TopologyReader_Ns3Empty_Ns3DefaultDeleter__lt__ns3TopologyReader__gt___methods(root_module, cls):
2864 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::TopologyReader, ns3::empty, ns3::DefaultDeleter<ns3::TopologyReader> >::SimpleRefCount() [constructor]
2865 cls.add_constructor([])
2866 ## 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]
2867 cls.add_constructor([param('ns3::SimpleRefCount< ns3::TopologyReader, ns3::empty, ns3::DefaultDeleter< ns3::TopologyReader > > const &', 'o')])
2868 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::TopologyReader, ns3::empty, ns3::DefaultDeleter<ns3::TopologyReader> >::Cleanup() [member function]
2869 cls.add_method('Cleanup',
2870 'void',
2871 [],
2872 is_static=True)
2873 return
2874
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002875def register_Ns3SimpleRefCount__Ns3TraceSourceAccessor_Ns3Empty_Ns3DefaultDeleter__lt__ns3TraceSourceAccessor__gt___methods(root_module, cls):
2876 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter<ns3::TraceSourceAccessor> >::SimpleRefCount() [constructor]
2877 cls.add_constructor([])
2878 ## 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]
2879 cls.add_constructor([param('ns3::SimpleRefCount< ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter< ns3::TraceSourceAccessor > > const &', 'o')])
2880 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter<ns3::TraceSourceAccessor> >::Cleanup() [member function]
2881 cls.add_method('Cleanup',
2882 'void',
2883 [],
2884 is_static=True)
2885 return
2886
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07002887def register_Ns3SimpleRefCount__Ns3NdnContentObjectHeader_Ns3Header_Ns3DefaultDeleter__lt__ns3NdnContentObjectHeader__gt___methods(root_module, cls):
2888 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::ndn::ContentObjectHeader, ns3::Header, ns3::DefaultDeleter<ns3::ndn::ContentObjectHeader> >::SimpleRefCount() [constructor]
2889 cls.add_constructor([])
2890 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::ndn::ContentObjectHeader, ns3::Header, ns3::DefaultDeleter<ns3::ndn::ContentObjectHeader> >::SimpleRefCount(ns3::SimpleRefCount<ns3::ndn::ContentObjectHeader, ns3::Header, ns3::DefaultDeleter<ns3::ndn::ContentObjectHeader> > const & o) [copy constructor]
2891 cls.add_constructor([param('ns3::SimpleRefCount< ns3::ndn::ContentObjectHeader, ns3::Header, ns3::DefaultDeleter< ns3::ndn::ContentObjectHeader > > const &', 'o')])
2892 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::ndn::ContentObjectHeader, ns3::Header, ns3::DefaultDeleter<ns3::ndn::ContentObjectHeader> >::Cleanup() [member function]
2893 cls.add_method('Cleanup',
2894 'void',
2895 [],
2896 is_static=True)
2897 return
2898
2899def register_Ns3SimpleRefCount__Ns3NdnFaceContainer_Ns3Empty_Ns3DefaultDeleter__lt__ns3NdnFaceContainer__gt___methods(root_module, cls):
2900 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::ndn::FaceContainer, ns3::empty, ns3::DefaultDeleter<ns3::ndn::FaceContainer> >::SimpleRefCount() [constructor]
2901 cls.add_constructor([])
2902 ## 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]
2903 cls.add_constructor([param('ns3::SimpleRefCount< ns3::ndn::FaceContainer, ns3::empty, ns3::DefaultDeleter< ns3::ndn::FaceContainer > > const &', 'o')])
2904 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::ndn::FaceContainer, ns3::empty, ns3::DefaultDeleter<ns3::ndn::FaceContainer> >::Cleanup() [member function]
2905 cls.add_method('Cleanup',
2906 'void',
2907 [],
2908 is_static=True)
2909 return
2910
2911def register_Ns3SimpleRefCount__Ns3NdnInterestHeader_Ns3Header_Ns3DefaultDeleter__lt__ns3NdnInterestHeader__gt___methods(root_module, cls):
2912 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::ndn::InterestHeader, ns3::Header, ns3::DefaultDeleter<ns3::ndn::InterestHeader> >::SimpleRefCount() [constructor]
2913 cls.add_constructor([])
2914 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::ndn::InterestHeader, ns3::Header, ns3::DefaultDeleter<ns3::ndn::InterestHeader> >::SimpleRefCount(ns3::SimpleRefCount<ns3::ndn::InterestHeader, ns3::Header, ns3::DefaultDeleter<ns3::ndn::InterestHeader> > const & o) [copy constructor]
2915 cls.add_constructor([param('ns3::SimpleRefCount< ns3::ndn::InterestHeader, ns3::Header, ns3::DefaultDeleter< ns3::ndn::InterestHeader > > const &', 'o')])
2916 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::ndn::InterestHeader, ns3::Header, ns3::DefaultDeleter<ns3::ndn::InterestHeader> >::Cleanup() [member function]
2917 cls.add_method('Cleanup',
2918 'void',
2919 [],
2920 is_static=True)
2921 return
2922
Alexander Afanasyev32c07562013-02-01 12:58:43 -08002923def register_Ns3SimpleRefCount__Ns3NdnName_Ns3Empty_Ns3DefaultDeleter__lt__ns3NdnName__gt___methods(root_module, cls):
2924 ## 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 -07002925 cls.add_constructor([])
Alexander Afanasyev32c07562013-02-01 12:58:43 -08002926 ## 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]
2927 cls.add_constructor([param('ns3::SimpleRefCount< ns3::ndn::Name, ns3::empty, ns3::DefaultDeleter< ns3::ndn::Name > > const &', 'o')])
2928 ## 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 -07002929 cls.add_method('Cleanup',
2930 'void',
2931 [],
2932 is_static=True)
2933 return
2934
2935def register_Ns3SimpleRefCount__Ns3NdnCsEntry_Ns3Empty_Ns3DefaultDeleter__lt__ns3NdnCsEntry__gt___methods(root_module, cls):
2936 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::ndn::cs::Entry, ns3::empty, ns3::DefaultDeleter<ns3::ndn::cs::Entry> >::SimpleRefCount() [constructor]
2937 cls.add_constructor([])
2938 ## 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]
2939 cls.add_constructor([param('ns3::SimpleRefCount< ns3::ndn::cs::Entry, ns3::empty, ns3::DefaultDeleter< ns3::ndn::cs::Entry > > const &', 'o')])
2940 ## 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]
2941 cls.add_method('Cleanup',
2942 'void',
2943 [],
2944 is_static=True)
2945 return
2946
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07002947def register_Ns3SimpleRefCount__Ns3NdnPitEntry_Ns3Empty_Ns3DefaultDeleter__lt__ns3NdnPitEntry__gt___methods(root_module, cls):
2948 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::ndn::pit::Entry, ns3::empty, ns3::DefaultDeleter<ns3::ndn::pit::Entry> >::SimpleRefCount() [constructor]
2949 cls.add_constructor([])
2950 ## 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]
2951 cls.add_constructor([param('ns3::SimpleRefCount< ns3::ndn::pit::Entry, ns3::empty, ns3::DefaultDeleter< ns3::ndn::pit::Entry > > const &', 'o')])
2952 ## 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]
2953 cls.add_method('Cleanup',
2954 'void',
2955 [],
2956 is_static=True)
2957 return
2958
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002959def register_Ns3Time_methods(root_module, cls):
2960 cls.add_binary_comparison_operator('!=')
2961 cls.add_inplace_numeric_operator('+=', param('ns3::Time const &', 'right'))
2962 cls.add_inplace_numeric_operator('-=', param('ns3::Time const &', 'right'))
Alexander Afanasyeva28ec562012-10-25 14:07:32 -07002963 cls.add_output_stream_operator()
Alexander Afanasyeva8f5d882012-11-09 14:22:48 -08002964 cls.add_binary_comparison_operator('<=')
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002965 cls.add_binary_comparison_operator('==')
2966 cls.add_binary_comparison_operator('>=')
2967 cls.add_binary_numeric_operator('+', root_module['ns3::Time'], root_module['ns3::Time'], param('ns3::Time const &', 'right'))
2968 cls.add_binary_numeric_operator('-', root_module['ns3::Time'], root_module['ns3::Time'], param('ns3::Time const &', 'right'))
2969 cls.add_binary_comparison_operator('<')
2970 cls.add_binary_comparison_operator('>')
2971 ## nstime.h (module 'core'): ns3::Time::Time() [constructor]
2972 cls.add_constructor([])
2973 ## nstime.h (module 'core'): ns3::Time::Time(ns3::Time const & o) [copy constructor]
2974 cls.add_constructor([param('ns3::Time const &', 'o')])
2975 ## nstime.h (module 'core'): ns3::Time::Time(double v) [constructor]
2976 cls.add_constructor([param('double', 'v')])
2977 ## nstime.h (module 'core'): ns3::Time::Time(int v) [constructor]
2978 cls.add_constructor([param('int', 'v')])
2979 ## nstime.h (module 'core'): ns3::Time::Time(long int v) [constructor]
2980 cls.add_constructor([param('long int', 'v')])
2981 ## nstime.h (module 'core'): ns3::Time::Time(long long int v) [constructor]
2982 cls.add_constructor([param('long long int', 'v')])
2983 ## nstime.h (module 'core'): ns3::Time::Time(unsigned int v) [constructor]
2984 cls.add_constructor([param('unsigned int', 'v')])
2985 ## nstime.h (module 'core'): ns3::Time::Time(long unsigned int v) [constructor]
2986 cls.add_constructor([param('long unsigned int', 'v')])
2987 ## nstime.h (module 'core'): ns3::Time::Time(long long unsigned int v) [constructor]
2988 cls.add_constructor([param('long long unsigned int', 'v')])
2989 ## nstime.h (module 'core'): ns3::Time::Time(std::string const & s) [constructor]
2990 cls.add_constructor([param('std::string const &', 's')])
2991 ## nstime.h (module 'core'): ns3::Time::Time(ns3::int64x64_t const & value) [constructor]
2992 cls.add_constructor([param('ns3::int64x64_t const &', 'value')])
2993 ## nstime.h (module 'core'): int ns3::Time::Compare(ns3::Time const & o) const [member function]
2994 cls.add_method('Compare',
2995 'int',
2996 [param('ns3::Time const &', 'o')],
2997 is_const=True)
2998 ## nstime.h (module 'core'): static ns3::Time ns3::Time::From(ns3::int64x64_t const & from, ns3::Time::Unit timeUnit) [member function]
2999 cls.add_method('From',
3000 'ns3::Time',
3001 [param('ns3::int64x64_t const &', 'from'), param('ns3::Time::Unit', 'timeUnit')],
3002 is_static=True)
3003 ## nstime.h (module 'core'): static ns3::Time ns3::Time::From(ns3::int64x64_t const & value) [member function]
3004 cls.add_method('From',
3005 'ns3::Time',
3006 [param('ns3::int64x64_t const &', 'value')],
3007 is_static=True)
3008 ## nstime.h (module 'core'): static ns3::Time ns3::Time::FromDouble(double value, ns3::Time::Unit timeUnit) [member function]
3009 cls.add_method('FromDouble',
3010 'ns3::Time',
3011 [param('double', 'value'), param('ns3::Time::Unit', 'timeUnit')],
3012 is_static=True)
3013 ## nstime.h (module 'core'): static ns3::Time ns3::Time::FromInteger(uint64_t value, ns3::Time::Unit timeUnit) [member function]
3014 cls.add_method('FromInteger',
3015 'ns3::Time',
3016 [param('uint64_t', 'value'), param('ns3::Time::Unit', 'timeUnit')],
3017 is_static=True)
3018 ## nstime.h (module 'core'): double ns3::Time::GetDouble() const [member function]
3019 cls.add_method('GetDouble',
3020 'double',
3021 [],
3022 is_const=True)
3023 ## nstime.h (module 'core'): int64_t ns3::Time::GetFemtoSeconds() const [member function]
3024 cls.add_method('GetFemtoSeconds',
3025 'int64_t',
3026 [],
3027 is_const=True)
3028 ## nstime.h (module 'core'): int64_t ns3::Time::GetInteger() const [member function]
3029 cls.add_method('GetInteger',
3030 'int64_t',
3031 [],
3032 is_const=True)
3033 ## nstime.h (module 'core'): int64_t ns3::Time::GetMicroSeconds() const [member function]
3034 cls.add_method('GetMicroSeconds',
3035 'int64_t',
3036 [],
3037 is_const=True)
3038 ## nstime.h (module 'core'): int64_t ns3::Time::GetMilliSeconds() const [member function]
3039 cls.add_method('GetMilliSeconds',
3040 'int64_t',
3041 [],
3042 is_const=True)
3043 ## nstime.h (module 'core'): int64_t ns3::Time::GetNanoSeconds() const [member function]
3044 cls.add_method('GetNanoSeconds',
3045 'int64_t',
3046 [],
3047 is_const=True)
3048 ## nstime.h (module 'core'): int64_t ns3::Time::GetPicoSeconds() const [member function]
3049 cls.add_method('GetPicoSeconds',
3050 'int64_t',
3051 [],
3052 is_const=True)
3053 ## nstime.h (module 'core'): static ns3::Time::Unit ns3::Time::GetResolution() [member function]
3054 cls.add_method('GetResolution',
3055 'ns3::Time::Unit',
3056 [],
3057 is_static=True)
3058 ## nstime.h (module 'core'): double ns3::Time::GetSeconds() const [member function]
3059 cls.add_method('GetSeconds',
3060 'double',
3061 [],
3062 is_const=True)
3063 ## nstime.h (module 'core'): int64_t ns3::Time::GetTimeStep() const [member function]
3064 cls.add_method('GetTimeStep',
3065 'int64_t',
3066 [],
3067 is_const=True)
3068 ## nstime.h (module 'core'): bool ns3::Time::IsNegative() const [member function]
3069 cls.add_method('IsNegative',
3070 'bool',
3071 [],
3072 is_const=True)
3073 ## nstime.h (module 'core'): bool ns3::Time::IsPositive() const [member function]
3074 cls.add_method('IsPositive',
3075 'bool',
3076 [],
3077 is_const=True)
3078 ## nstime.h (module 'core'): bool ns3::Time::IsStrictlyNegative() const [member function]
3079 cls.add_method('IsStrictlyNegative',
3080 'bool',
3081 [],
3082 is_const=True)
3083 ## nstime.h (module 'core'): bool ns3::Time::IsStrictlyPositive() const [member function]
3084 cls.add_method('IsStrictlyPositive',
3085 'bool',
3086 [],
3087 is_const=True)
3088 ## nstime.h (module 'core'): bool ns3::Time::IsZero() const [member function]
3089 cls.add_method('IsZero',
3090 'bool',
3091 [],
3092 is_const=True)
3093 ## nstime.h (module 'core'): static void ns3::Time::SetResolution(ns3::Time::Unit resolution) [member function]
3094 cls.add_method('SetResolution',
3095 'void',
3096 [param('ns3::Time::Unit', 'resolution')],
3097 is_static=True)
3098 ## nstime.h (module 'core'): ns3::int64x64_t ns3::Time::To(ns3::Time::Unit timeUnit) const [member function]
3099 cls.add_method('To',
3100 'ns3::int64x64_t',
3101 [param('ns3::Time::Unit', 'timeUnit')],
3102 is_const=True)
3103 ## nstime.h (module 'core'): double ns3::Time::ToDouble(ns3::Time::Unit timeUnit) const [member function]
3104 cls.add_method('ToDouble',
3105 'double',
3106 [param('ns3::Time::Unit', 'timeUnit')],
3107 is_const=True)
3108 ## nstime.h (module 'core'): int64_t ns3::Time::ToInteger(ns3::Time::Unit timeUnit) const [member function]
3109 cls.add_method('ToInteger',
3110 'int64_t',
3111 [param('ns3::Time::Unit', 'timeUnit')],
3112 is_const=True)
3113 return
3114
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07003115def register_Ns3TopologyReader_methods(root_module, cls):
3116 ## topology-reader.h (module 'topology-read'): ns3::TopologyReader::TopologyReader() [constructor]
3117 cls.add_constructor([])
3118 ## topology-reader.h (module 'topology-read'): void ns3::TopologyReader::AddLink(ns3::TopologyReader::Link link) [member function]
3119 cls.add_method('AddLink',
3120 'void',
3121 [param('ns3::TopologyReader::Link', 'link')])
3122 ## topology-reader.h (module 'topology-read'): std::string ns3::TopologyReader::GetFileName() const [member function]
3123 cls.add_method('GetFileName',
3124 'std::string',
3125 [],
3126 is_const=True)
3127 ## topology-reader.h (module 'topology-read'): std::_List_const_iterator<ns3::TopologyReader::Link> ns3::TopologyReader::LinksBegin() const [member function]
3128 cls.add_method('LinksBegin',
3129 'std::_List_const_iterator< ns3::TopologyReader::Link >',
3130 [],
3131 is_const=True)
3132 ## topology-reader.h (module 'topology-read'): bool ns3::TopologyReader::LinksEmpty() const [member function]
3133 cls.add_method('LinksEmpty',
3134 'bool',
3135 [],
3136 is_const=True)
3137 ## topology-reader.h (module 'topology-read'): std::_List_const_iterator<ns3::TopologyReader::Link> ns3::TopologyReader::LinksEnd() const [member function]
3138 cls.add_method('LinksEnd',
3139 'std::_List_const_iterator< ns3::TopologyReader::Link >',
3140 [],
3141 is_const=True)
3142 ## topology-reader.h (module 'topology-read'): int ns3::TopologyReader::LinksSize() const [member function]
3143 cls.add_method('LinksSize',
3144 'int',
3145 [],
3146 is_const=True)
3147 ## topology-reader.h (module 'topology-read'): ns3::NodeContainer ns3::TopologyReader::Read() [member function]
3148 cls.add_method('Read',
3149 'ns3::NodeContainer',
3150 [],
3151 is_pure_virtual=True, is_virtual=True)
3152 ## topology-reader.h (module 'topology-read'): void ns3::TopologyReader::SetFileName(std::string const & fileName) [member function]
3153 cls.add_method('SetFileName',
3154 'void',
3155 [param('std::string const &', 'fileName')])
3156 return
3157
3158def register_Ns3TopologyReaderLink_methods(root_module, cls):
3159 ## topology-reader.h (module 'topology-read'): ns3::TopologyReader::Link::Link(ns3::TopologyReader::Link const & arg0) [copy constructor]
3160 cls.add_constructor([param('ns3::TopologyReader::Link const &', 'arg0')])
3161 ## topology-reader.h (module 'topology-read'): ns3::TopologyReader::Link::Link() [constructor]
3162 cls.add_constructor([])
3163 ## 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]
3164 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')])
3165 ## 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]
3166 cls.add_method('AttributesBegin',
3167 '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 > > > >',
3168 [])
3169 ## 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]
3170 cls.add_method('AttributesEnd',
3171 '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 > > > >',
3172 [])
3173 ## topology-reader.h (module 'topology-read'): std::string ns3::TopologyReader::Link::GetAttribute(std::string const & name) const [member function]
3174 cls.add_method('GetAttribute',
3175 'std::string',
3176 [param('std::string const &', 'name')],
3177 is_const=True)
3178 ## topology-reader.h (module 'topology-read'): bool ns3::TopologyReader::Link::GetAttributeFailSafe(std::string const & name, std::string & value) const [member function]
3179 cls.add_method('GetAttributeFailSafe',
3180 'bool',
3181 [param('std::string const &', 'name'), param('std::string &', 'value')],
3182 is_const=True)
3183 ## topology-reader.h (module 'topology-read'): ns3::Ptr<ns3::NetDevice> ns3::TopologyReader::Link::GetFromNetDevice() const [member function]
3184 cls.add_method('GetFromNetDevice',
3185 'ns3::Ptr< ns3::NetDevice >',
3186 [],
3187 is_const=True)
3188 ## topology-reader.h (module 'topology-read'): ns3::Ptr<ns3::Node> ns3::TopologyReader::Link::GetFromNode() const [member function]
3189 cls.add_method('GetFromNode',
3190 'ns3::Ptr< ns3::Node >',
3191 [],
3192 is_const=True)
3193 ## topology-reader.h (module 'topology-read'): std::string ns3::TopologyReader::Link::GetFromNodeName() const [member function]
3194 cls.add_method('GetFromNodeName',
3195 'std::string',
3196 [],
3197 is_const=True)
3198 ## topology-reader.h (module 'topology-read'): ns3::Ptr<ns3::NetDevice> ns3::TopologyReader::Link::GetToNetDevice() const [member function]
3199 cls.add_method('GetToNetDevice',
3200 'ns3::Ptr< ns3::NetDevice >',
3201 [],
3202 is_const=True)
3203 ## topology-reader.h (module 'topology-read'): ns3::Ptr<ns3::Node> ns3::TopologyReader::Link::GetToNode() const [member function]
3204 cls.add_method('GetToNode',
3205 'ns3::Ptr< ns3::Node >',
3206 [],
3207 is_const=True)
3208 ## topology-reader.h (module 'topology-read'): std::string ns3::TopologyReader::Link::GetToNodeName() const [member function]
3209 cls.add_method('GetToNodeName',
3210 'std::string',
3211 [],
3212 is_const=True)
3213 ## topology-reader.h (module 'topology-read'): void ns3::TopologyReader::Link::SetAttribute(std::string const & name, std::string const & value) [member function]
3214 cls.add_method('SetAttribute',
3215 'void',
3216 [param('std::string const &', 'name'), param('std::string const &', 'value')])
3217 ## topology-reader.h (module 'topology-read'): void ns3::TopologyReader::Link::SetNetDevices(ns3::Ptr<ns3::NetDevice> from, ns3::Ptr<ns3::NetDevice> to) [member function]
3218 cls.add_method('SetNetDevices',
3219 'void',
3220 [param('ns3::Ptr< ns3::NetDevice >', 'from'), param('ns3::Ptr< ns3::NetDevice >', 'to')])
3221 return
3222
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08003223def register_Ns3TraceSourceAccessor_methods(root_module, cls):
3224 ## trace-source-accessor.h (module 'core'): ns3::TraceSourceAccessor::TraceSourceAccessor(ns3::TraceSourceAccessor const & arg0) [copy constructor]
3225 cls.add_constructor([param('ns3::TraceSourceAccessor const &', 'arg0')])
3226 ## trace-source-accessor.h (module 'core'): ns3::TraceSourceAccessor::TraceSourceAccessor() [constructor]
3227 cls.add_constructor([])
3228 ## trace-source-accessor.h (module 'core'): bool ns3::TraceSourceAccessor::Connect(ns3::ObjectBase * obj, std::string context, ns3::CallbackBase const & cb) const [member function]
3229 cls.add_method('Connect',
3230 'bool',
3231 [param('ns3::ObjectBase *', 'obj', transfer_ownership=False), param('std::string', 'context'), param('ns3::CallbackBase const &', 'cb')],
3232 is_pure_virtual=True, is_const=True, is_virtual=True)
3233 ## trace-source-accessor.h (module 'core'): bool ns3::TraceSourceAccessor::ConnectWithoutContext(ns3::ObjectBase * obj, ns3::CallbackBase const & cb) const [member function]
3234 cls.add_method('ConnectWithoutContext',
3235 'bool',
3236 [param('ns3::ObjectBase *', 'obj', transfer_ownership=False), param('ns3::CallbackBase const &', 'cb')],
3237 is_pure_virtual=True, is_const=True, is_virtual=True)
3238 ## trace-source-accessor.h (module 'core'): bool ns3::TraceSourceAccessor::Disconnect(ns3::ObjectBase * obj, std::string context, ns3::CallbackBase const & cb) const [member function]
3239 cls.add_method('Disconnect',
3240 'bool',
3241 [param('ns3::ObjectBase *', 'obj', transfer_ownership=False), param('std::string', 'context'), param('ns3::CallbackBase const &', 'cb')],
3242 is_pure_virtual=True, is_const=True, is_virtual=True)
3243 ## trace-source-accessor.h (module 'core'): bool ns3::TraceSourceAccessor::DisconnectWithoutContext(ns3::ObjectBase * obj, ns3::CallbackBase const & cb) const [member function]
3244 cls.add_method('DisconnectWithoutContext',
3245 'bool',
3246 [param('ns3::ObjectBase *', 'obj', transfer_ownership=False), param('ns3::CallbackBase const &', 'cb')],
3247 is_pure_virtual=True, is_const=True, is_virtual=True)
3248 return
3249
3250def register_Ns3Trailer_methods(root_module, cls):
3251 cls.add_output_stream_operator()
3252 ## trailer.h (module 'network'): ns3::Trailer::Trailer() [constructor]
3253 cls.add_constructor([])
3254 ## trailer.h (module 'network'): ns3::Trailer::Trailer(ns3::Trailer const & arg0) [copy constructor]
3255 cls.add_constructor([param('ns3::Trailer const &', 'arg0')])
3256 ## trailer.h (module 'network'): uint32_t ns3::Trailer::Deserialize(ns3::Buffer::Iterator end) [member function]
3257 cls.add_method('Deserialize',
3258 'uint32_t',
3259 [param('ns3::Buffer::Iterator', 'end')],
3260 is_pure_virtual=True, is_virtual=True)
3261 ## trailer.h (module 'network'): uint32_t ns3::Trailer::GetSerializedSize() const [member function]
3262 cls.add_method('GetSerializedSize',
3263 'uint32_t',
3264 [],
3265 is_pure_virtual=True, is_const=True, is_virtual=True)
3266 ## trailer.h (module 'network'): static ns3::TypeId ns3::Trailer::GetTypeId() [member function]
3267 cls.add_method('GetTypeId',
3268 'ns3::TypeId',
3269 [],
3270 is_static=True)
3271 ## trailer.h (module 'network'): void ns3::Trailer::Print(std::ostream & os) const [member function]
3272 cls.add_method('Print',
3273 'void',
3274 [param('std::ostream &', 'os')],
3275 is_pure_virtual=True, is_const=True, is_virtual=True)
3276 ## trailer.h (module 'network'): void ns3::Trailer::Serialize(ns3::Buffer::Iterator start) const [member function]
3277 cls.add_method('Serialize',
3278 'void',
3279 [param('ns3::Buffer::Iterator', 'start')],
3280 is_pure_virtual=True, is_const=True, is_virtual=True)
3281 return
3282
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07003283def register_Ns3AnnotatedTopologyReader_methods(root_module, cls):
3284 ## annotated-topology-reader.h (module 'ndnSIM'): ns3::AnnotatedTopologyReader::AnnotatedTopologyReader(std::string const & path="", double scale=1.0e+0) [constructor]
3285 cls.add_constructor([param('std::string const &', 'path', default_value='""'), param('double', 'scale', default_value='1.0e+0')])
3286 ## annotated-topology-reader.h (module 'ndnSIM'): ns3::NodeContainer ns3::AnnotatedTopologyReader::Read() [member function]
3287 cls.add_method('Read',
3288 'ns3::NodeContainer',
3289 [],
3290 is_virtual=True)
3291 ## annotated-topology-reader.h (module 'ndnSIM'): ns3::NodeContainer ns3::AnnotatedTopologyReader::GetNodes() const [member function]
3292 cls.add_method('GetNodes',
3293 'ns3::NodeContainer',
3294 [],
3295 is_const=True)
3296 ## annotated-topology-reader.h (module 'ndnSIM'): std::list<ns3::TopologyReader::Link, std::allocator<ns3::TopologyReader::Link> > const & ns3::AnnotatedTopologyReader::GetLinks() const [member function]
3297 cls.add_method('GetLinks',
3298 'std::list< ns3::TopologyReader::Link > const &',
3299 [],
3300 is_const=True)
3301 ## annotated-topology-reader.h (module 'ndnSIM'): void ns3::AnnotatedTopologyReader::AssignIpv4Addresses(ns3::Ipv4Address base) [member function]
3302 cls.add_method('AssignIpv4Addresses',
3303 'void',
3304 [param('ns3::Ipv4Address', 'base')])
3305 ## annotated-topology-reader.h (module 'ndnSIM'): void ns3::AnnotatedTopologyReader::SetBoundingBox(double ulx, double uly, double lrx, double lry) [member function]
3306 cls.add_method('SetBoundingBox',
3307 'void',
3308 [param('double', 'ulx'), param('double', 'uly'), param('double', 'lrx'), param('double', 'lry')])
3309 ## annotated-topology-reader.h (module 'ndnSIM'): void ns3::AnnotatedTopologyReader::SetMobilityModel(std::string const & model) [member function]
3310 cls.add_method('SetMobilityModel',
3311 'void',
3312 [param('std::string const &', 'model')])
3313 ## annotated-topology-reader.h (module 'ndnSIM'): void ns3::AnnotatedTopologyReader::ApplyOspfMetric() [member function]
3314 cls.add_method('ApplyOspfMetric',
3315 'void',
3316 [])
Alexander Afanasyev71029732012-11-19 23:50:52 -08003317 ## annotated-topology-reader.h (module 'ndnSIM'): void ns3::AnnotatedTopologyReader::SaveTopology(std::string const & file) const [member function]
3318 cls.add_method('SaveTopology',
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07003319 'void',
3320 [param('std::string const &', 'file')],
3321 is_const=True)
3322 ## annotated-topology-reader.h (module 'ndnSIM'): ns3::Ptr<ns3::Node> ns3::AnnotatedTopologyReader::CreateNode(std::string const name, uint32_t systemId) [member function]
3323 cls.add_method('CreateNode',
3324 'ns3::Ptr< ns3::Node >',
3325 [param('std::string const', 'name'), param('uint32_t', 'systemId')],
3326 visibility='protected')
3327 ## 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]
3328 cls.add_method('CreateNode',
3329 'ns3::Ptr< ns3::Node >',
3330 [param('std::string const', 'name'), param('double', 'posX'), param('double', 'posY'), param('uint32_t', 'systemId')],
3331 visibility='protected')
3332 ## annotated-topology-reader.h (module 'ndnSIM'): void ns3::AnnotatedTopologyReader::ApplySettings() [member function]
3333 cls.add_method('ApplySettings',
3334 'void',
3335 [],
3336 visibility='protected')
3337 return
3338
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08003339def register_Ns3Application_methods(root_module, cls):
3340 ## application.h (module 'network'): ns3::Application::Application(ns3::Application const & arg0) [copy constructor]
3341 cls.add_constructor([param('ns3::Application const &', 'arg0')])
3342 ## application.h (module 'network'): ns3::Application::Application() [constructor]
3343 cls.add_constructor([])
3344 ## application.h (module 'network'): ns3::Ptr<ns3::Node> ns3::Application::GetNode() const [member function]
3345 cls.add_method('GetNode',
3346 'ns3::Ptr< ns3::Node >',
3347 [],
3348 is_const=True)
3349 ## application.h (module 'network'): static ns3::TypeId ns3::Application::GetTypeId() [member function]
3350 cls.add_method('GetTypeId',
3351 'ns3::TypeId',
3352 [],
3353 is_static=True)
3354 ## application.h (module 'network'): void ns3::Application::SetNode(ns3::Ptr<ns3::Node> node) [member function]
3355 cls.add_method('SetNode',
3356 'void',
3357 [param('ns3::Ptr< ns3::Node >', 'node')])
3358 ## application.h (module 'network'): void ns3::Application::SetStartTime(ns3::Time start) [member function]
3359 cls.add_method('SetStartTime',
3360 'void',
3361 [param('ns3::Time', 'start')])
3362 ## application.h (module 'network'): void ns3::Application::SetStopTime(ns3::Time stop) [member function]
3363 cls.add_method('SetStopTime',
3364 'void',
3365 [param('ns3::Time', 'stop')])
3366 ## application.h (module 'network'): void ns3::Application::DoDispose() [member function]
3367 cls.add_method('DoDispose',
3368 'void',
3369 [],
3370 visibility='protected', is_virtual=True)
3371 ## application.h (module 'network'): void ns3::Application::DoStart() [member function]
3372 cls.add_method('DoStart',
3373 'void',
3374 [],
3375 visibility='protected', is_virtual=True)
3376 ## application.h (module 'network'): void ns3::Application::StartApplication() [member function]
3377 cls.add_method('StartApplication',
3378 'void',
3379 [],
Alexander Afanasyev06d3a612012-04-17 22:25:40 -07003380 visibility='private', is_virtual=True)
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08003381 ## application.h (module 'network'): void ns3::Application::StopApplication() [member function]
3382 cls.add_method('StopApplication',
3383 'void',
3384 [],
Alexander Afanasyev06d3a612012-04-17 22:25:40 -07003385 visibility='private', is_virtual=True)
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08003386 return
3387
3388def register_Ns3AttributeAccessor_methods(root_module, cls):
3389 ## attribute.h (module 'core'): ns3::AttributeAccessor::AttributeAccessor(ns3::AttributeAccessor const & arg0) [copy constructor]
3390 cls.add_constructor([param('ns3::AttributeAccessor const &', 'arg0')])
3391 ## attribute.h (module 'core'): ns3::AttributeAccessor::AttributeAccessor() [constructor]
3392 cls.add_constructor([])
3393 ## attribute.h (module 'core'): bool ns3::AttributeAccessor::Get(ns3::ObjectBase const * object, ns3::AttributeValue & attribute) const [member function]
3394 cls.add_method('Get',
3395 'bool',
3396 [param('ns3::ObjectBase const *', 'object'), param('ns3::AttributeValue &', 'attribute')],
3397 is_pure_virtual=True, is_const=True, is_virtual=True)
3398 ## attribute.h (module 'core'): bool ns3::AttributeAccessor::HasGetter() const [member function]
3399 cls.add_method('HasGetter',
3400 'bool',
3401 [],
3402 is_pure_virtual=True, is_const=True, is_virtual=True)
3403 ## attribute.h (module 'core'): bool ns3::AttributeAccessor::HasSetter() const [member function]
3404 cls.add_method('HasSetter',
3405 'bool',
3406 [],
3407 is_pure_virtual=True, is_const=True, is_virtual=True)
3408 ## attribute.h (module 'core'): bool ns3::AttributeAccessor::Set(ns3::ObjectBase * object, ns3::AttributeValue const & value) const [member function]
3409 cls.add_method('Set',
3410 'bool',
3411 [param('ns3::ObjectBase *', 'object', transfer_ownership=False), param('ns3::AttributeValue const &', 'value')],
3412 is_pure_virtual=True, is_const=True, is_virtual=True)
3413 return
3414
3415def register_Ns3AttributeChecker_methods(root_module, cls):
3416 ## attribute.h (module 'core'): ns3::AttributeChecker::AttributeChecker(ns3::AttributeChecker const & arg0) [copy constructor]
3417 cls.add_constructor([param('ns3::AttributeChecker const &', 'arg0')])
3418 ## attribute.h (module 'core'): ns3::AttributeChecker::AttributeChecker() [constructor]
3419 cls.add_constructor([])
3420 ## attribute.h (module 'core'): bool ns3::AttributeChecker::Check(ns3::AttributeValue const & value) const [member function]
3421 cls.add_method('Check',
3422 'bool',
3423 [param('ns3::AttributeValue const &', 'value')],
3424 is_pure_virtual=True, is_const=True, is_virtual=True)
3425 ## attribute.h (module 'core'): bool ns3::AttributeChecker::Copy(ns3::AttributeValue const & source, ns3::AttributeValue & destination) const [member function]
3426 cls.add_method('Copy',
3427 'bool',
3428 [param('ns3::AttributeValue const &', 'source'), param('ns3::AttributeValue &', 'destination')],
3429 is_pure_virtual=True, is_const=True, is_virtual=True)
3430 ## attribute.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::AttributeChecker::Create() const [member function]
3431 cls.add_method('Create',
3432 'ns3::Ptr< ns3::AttributeValue >',
3433 [],
3434 is_pure_virtual=True, is_const=True, is_virtual=True)
3435 ## attribute.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::AttributeChecker::CreateValidValue(ns3::AttributeValue const & value) const [member function]
3436 cls.add_method('CreateValidValue',
3437 'ns3::Ptr< ns3::AttributeValue >',
3438 [param('ns3::AttributeValue const &', 'value')],
3439 is_const=True)
3440 ## attribute.h (module 'core'): std::string ns3::AttributeChecker::GetUnderlyingTypeInformation() const [member function]
3441 cls.add_method('GetUnderlyingTypeInformation',
3442 'std::string',
3443 [],
3444 is_pure_virtual=True, is_const=True, is_virtual=True)
3445 ## attribute.h (module 'core'): std::string ns3::AttributeChecker::GetValueTypeName() const [member function]
3446 cls.add_method('GetValueTypeName',
3447 'std::string',
3448 [],
3449 is_pure_virtual=True, is_const=True, is_virtual=True)
3450 ## attribute.h (module 'core'): bool ns3::AttributeChecker::HasUnderlyingTypeInformation() const [member function]
3451 cls.add_method('HasUnderlyingTypeInformation',
3452 'bool',
3453 [],
3454 is_pure_virtual=True, is_const=True, is_virtual=True)
3455 return
3456
3457def register_Ns3AttributeValue_methods(root_module, cls):
3458 ## attribute.h (module 'core'): ns3::AttributeValue::AttributeValue(ns3::AttributeValue const & arg0) [copy constructor]
3459 cls.add_constructor([param('ns3::AttributeValue const &', 'arg0')])
3460 ## attribute.h (module 'core'): ns3::AttributeValue::AttributeValue() [constructor]
3461 cls.add_constructor([])
3462 ## attribute.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::AttributeValue::Copy() const [member function]
3463 cls.add_method('Copy',
3464 'ns3::Ptr< ns3::AttributeValue >',
3465 [],
3466 is_pure_virtual=True, is_const=True, is_virtual=True)
3467 ## attribute.h (module 'core'): bool ns3::AttributeValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
3468 cls.add_method('DeserializeFromString',
3469 'bool',
3470 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3471 is_pure_virtual=True, is_virtual=True)
3472 ## attribute.h (module 'core'): std::string ns3::AttributeValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
3473 cls.add_method('SerializeToString',
3474 'std::string',
3475 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3476 is_pure_virtual=True, is_const=True, is_virtual=True)
3477 return
3478
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07003479def register_Ns3BooleanChecker_methods(root_module, cls):
3480 ## boolean.h (module 'core'): ns3::BooleanChecker::BooleanChecker() [constructor]
3481 cls.add_constructor([])
3482 ## boolean.h (module 'core'): ns3::BooleanChecker::BooleanChecker(ns3::BooleanChecker const & arg0) [copy constructor]
3483 cls.add_constructor([param('ns3::BooleanChecker const &', 'arg0')])
3484 return
3485
3486def register_Ns3BooleanValue_methods(root_module, cls):
3487 cls.add_output_stream_operator()
3488 ## boolean.h (module 'core'): ns3::BooleanValue::BooleanValue(ns3::BooleanValue const & arg0) [copy constructor]
3489 cls.add_constructor([param('ns3::BooleanValue const &', 'arg0')])
3490 ## boolean.h (module 'core'): ns3::BooleanValue::BooleanValue() [constructor]
3491 cls.add_constructor([])
3492 ## boolean.h (module 'core'): ns3::BooleanValue::BooleanValue(bool value) [constructor]
3493 cls.add_constructor([param('bool', 'value')])
3494 ## boolean.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::BooleanValue::Copy() const [member function]
3495 cls.add_method('Copy',
3496 'ns3::Ptr< ns3::AttributeValue >',
3497 [],
3498 is_const=True, is_virtual=True)
3499 ## boolean.h (module 'core'): bool ns3::BooleanValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
3500 cls.add_method('DeserializeFromString',
3501 'bool',
3502 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3503 is_virtual=True)
3504 ## boolean.h (module 'core'): bool ns3::BooleanValue::Get() const [member function]
3505 cls.add_method('Get',
3506 'bool',
3507 [],
3508 is_const=True)
3509 ## boolean.h (module 'core'): std::string ns3::BooleanValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
3510 cls.add_method('SerializeToString',
3511 'std::string',
3512 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3513 is_const=True, is_virtual=True)
3514 ## boolean.h (module 'core'): void ns3::BooleanValue::Set(bool value) [member function]
3515 cls.add_method('Set',
3516 'void',
3517 [param('bool', 'value')])
3518 return
3519
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08003520def register_Ns3CallbackChecker_methods(root_module, cls):
3521 ## callback.h (module 'core'): ns3::CallbackChecker::CallbackChecker() [constructor]
3522 cls.add_constructor([])
3523 ## callback.h (module 'core'): ns3::CallbackChecker::CallbackChecker(ns3::CallbackChecker const & arg0) [copy constructor]
3524 cls.add_constructor([param('ns3::CallbackChecker const &', 'arg0')])
3525 return
3526
3527def register_Ns3CallbackImplBase_methods(root_module, cls):
3528 ## callback.h (module 'core'): ns3::CallbackImplBase::CallbackImplBase() [constructor]
3529 cls.add_constructor([])
3530 ## callback.h (module 'core'): ns3::CallbackImplBase::CallbackImplBase(ns3::CallbackImplBase const & arg0) [copy constructor]
3531 cls.add_constructor([param('ns3::CallbackImplBase const &', 'arg0')])
3532 ## callback.h (module 'core'): bool ns3::CallbackImplBase::IsEqual(ns3::Ptr<ns3::CallbackImplBase const> other) const [member function]
3533 cls.add_method('IsEqual',
3534 'bool',
3535 [param('ns3::Ptr< ns3::CallbackImplBase const >', 'other')],
3536 is_pure_virtual=True, is_const=True, is_virtual=True)
3537 return
3538
3539def register_Ns3CallbackValue_methods(root_module, cls):
3540 ## callback.h (module 'core'): ns3::CallbackValue::CallbackValue(ns3::CallbackValue const & arg0) [copy constructor]
3541 cls.add_constructor([param('ns3::CallbackValue const &', 'arg0')])
3542 ## callback.h (module 'core'): ns3::CallbackValue::CallbackValue() [constructor]
3543 cls.add_constructor([])
3544 ## callback.h (module 'core'): ns3::CallbackValue::CallbackValue(ns3::CallbackBase const & base) [constructor]
3545 cls.add_constructor([param('ns3::CallbackBase const &', 'base')])
3546 ## callback.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::CallbackValue::Copy() const [member function]
3547 cls.add_method('Copy',
3548 'ns3::Ptr< ns3::AttributeValue >',
3549 [],
3550 is_const=True, is_virtual=True)
3551 ## callback.h (module 'core'): bool ns3::CallbackValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
3552 cls.add_method('DeserializeFromString',
3553 'bool',
3554 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3555 is_virtual=True)
3556 ## callback.h (module 'core'): std::string ns3::CallbackValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
3557 cls.add_method('SerializeToString',
3558 'std::string',
3559 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3560 is_const=True, is_virtual=True)
3561 ## callback.h (module 'core'): void ns3::CallbackValue::Set(ns3::CallbackBase base) [member function]
3562 cls.add_method('Set',
3563 'void',
3564 [param('ns3::CallbackBase', 'base')])
3565 return
3566
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07003567def register_Ns3DoubleValue_methods(root_module, cls):
3568 ## double.h (module 'core'): ns3::DoubleValue::DoubleValue() [constructor]
3569 cls.add_constructor([])
3570 ## double.h (module 'core'): ns3::DoubleValue::DoubleValue(ns3::DoubleValue const & arg0) [copy constructor]
3571 cls.add_constructor([param('ns3::DoubleValue const &', 'arg0')])
3572 ## double.h (module 'core'): ns3::DoubleValue::DoubleValue(double const & value) [constructor]
3573 cls.add_constructor([param('double const &', 'value')])
3574 ## double.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::DoubleValue::Copy() const [member function]
3575 cls.add_method('Copy',
3576 'ns3::Ptr< ns3::AttributeValue >',
3577 [],
3578 is_const=True, is_virtual=True)
3579 ## double.h (module 'core'): bool ns3::DoubleValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
3580 cls.add_method('DeserializeFromString',
3581 'bool',
3582 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3583 is_virtual=True)
3584 ## double.h (module 'core'): double ns3::DoubleValue::Get() const [member function]
3585 cls.add_method('Get',
3586 'double',
3587 [],
3588 is_const=True)
3589 ## double.h (module 'core'): std::string ns3::DoubleValue::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_const=True, is_virtual=True)
3594 ## double.h (module 'core'): void ns3::DoubleValue::Set(double const & value) [member function]
3595 cls.add_method('Set',
3596 'void',
3597 [param('double const &', 'value')])
3598 return
3599
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08003600def register_Ns3EmptyAttributeValue_methods(root_module, cls):
3601 ## attribute.h (module 'core'): ns3::EmptyAttributeValue::EmptyAttributeValue(ns3::EmptyAttributeValue const & arg0) [copy constructor]
3602 cls.add_constructor([param('ns3::EmptyAttributeValue const &', 'arg0')])
3603 ## attribute.h (module 'core'): ns3::EmptyAttributeValue::EmptyAttributeValue() [constructor]
3604 cls.add_constructor([])
3605 ## attribute.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::EmptyAttributeValue::Copy() const [member function]
3606 cls.add_method('Copy',
3607 'ns3::Ptr< ns3::AttributeValue >',
3608 [],
3609 is_const=True, visibility='private', is_virtual=True)
3610 ## attribute.h (module 'core'): bool ns3::EmptyAttributeValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
3611 cls.add_method('DeserializeFromString',
3612 'bool',
3613 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3614 visibility='private', is_virtual=True)
3615 ## attribute.h (module 'core'): std::string ns3::EmptyAttributeValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
3616 cls.add_method('SerializeToString',
3617 'std::string',
3618 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3619 is_const=True, visibility='private', is_virtual=True)
3620 return
3621
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07003622def register_Ns3EnumChecker_methods(root_module, cls):
3623 ## enum.h (module 'core'): ns3::EnumChecker::EnumChecker(ns3::EnumChecker const & arg0) [copy constructor]
3624 cls.add_constructor([param('ns3::EnumChecker const &', 'arg0')])
3625 ## enum.h (module 'core'): ns3::EnumChecker::EnumChecker() [constructor]
3626 cls.add_constructor([])
3627 ## enum.h (module 'core'): void ns3::EnumChecker::Add(int v, std::string name) [member function]
3628 cls.add_method('Add',
3629 'void',
3630 [param('int', 'v'), param('std::string', 'name')])
3631 ## enum.h (module 'core'): void ns3::EnumChecker::AddDefault(int v, std::string name) [member function]
3632 cls.add_method('AddDefault',
3633 'void',
3634 [param('int', 'v'), param('std::string', 'name')])
3635 ## enum.h (module 'core'): bool ns3::EnumChecker::Check(ns3::AttributeValue const & value) const [member function]
3636 cls.add_method('Check',
3637 'bool',
3638 [param('ns3::AttributeValue const &', 'value')],
3639 is_const=True, is_virtual=True)
3640 ## enum.h (module 'core'): bool ns3::EnumChecker::Copy(ns3::AttributeValue const & src, ns3::AttributeValue & dst) const [member function]
3641 cls.add_method('Copy',
3642 'bool',
3643 [param('ns3::AttributeValue const &', 'src'), param('ns3::AttributeValue &', 'dst')],
3644 is_const=True, is_virtual=True)
3645 ## enum.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::EnumChecker::Create() const [member function]
3646 cls.add_method('Create',
3647 'ns3::Ptr< ns3::AttributeValue >',
3648 [],
3649 is_const=True, is_virtual=True)
3650 ## enum.h (module 'core'): std::string ns3::EnumChecker::GetUnderlyingTypeInformation() const [member function]
3651 cls.add_method('GetUnderlyingTypeInformation',
3652 'std::string',
3653 [],
3654 is_const=True, is_virtual=True)
3655 ## enum.h (module 'core'): std::string ns3::EnumChecker::GetValueTypeName() const [member function]
3656 cls.add_method('GetValueTypeName',
3657 'std::string',
3658 [],
3659 is_const=True, is_virtual=True)
3660 ## enum.h (module 'core'): bool ns3::EnumChecker::HasUnderlyingTypeInformation() const [member function]
3661 cls.add_method('HasUnderlyingTypeInformation',
3662 'bool',
3663 [],
3664 is_const=True, is_virtual=True)
3665 return
3666
3667def register_Ns3EnumValue_methods(root_module, cls):
3668 ## enum.h (module 'core'): ns3::EnumValue::EnumValue(ns3::EnumValue const & arg0) [copy constructor]
3669 cls.add_constructor([param('ns3::EnumValue const &', 'arg0')])
3670 ## enum.h (module 'core'): ns3::EnumValue::EnumValue() [constructor]
3671 cls.add_constructor([])
3672 ## enum.h (module 'core'): ns3::EnumValue::EnumValue(int v) [constructor]
3673 cls.add_constructor([param('int', 'v')])
3674 ## enum.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::EnumValue::Copy() const [member function]
3675 cls.add_method('Copy',
3676 'ns3::Ptr< ns3::AttributeValue >',
3677 [],
3678 is_const=True, is_virtual=True)
3679 ## enum.h (module 'core'): bool ns3::EnumValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
3680 cls.add_method('DeserializeFromString',
3681 'bool',
3682 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3683 is_virtual=True)
3684 ## enum.h (module 'core'): int ns3::EnumValue::Get() const [member function]
3685 cls.add_method('Get',
3686 'int',
3687 [],
3688 is_const=True)
3689 ## enum.h (module 'core'): std::string ns3::EnumValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
3690 cls.add_method('SerializeToString',
3691 'std::string',
3692 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3693 is_const=True, is_virtual=True)
3694 ## enum.h (module 'core'): void ns3::EnumValue::Set(int v) [member function]
3695 cls.add_method('Set',
3696 'void',
3697 [param('int', 'v')])
3698 return
3699
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08003700def register_Ns3EventImpl_methods(root_module, cls):
3701 ## event-impl.h (module 'core'): ns3::EventImpl::EventImpl(ns3::EventImpl const & arg0) [copy constructor]
3702 cls.add_constructor([param('ns3::EventImpl const &', 'arg0')])
3703 ## event-impl.h (module 'core'): ns3::EventImpl::EventImpl() [constructor]
3704 cls.add_constructor([])
3705 ## event-impl.h (module 'core'): void ns3::EventImpl::Cancel() [member function]
3706 cls.add_method('Cancel',
3707 'void',
3708 [])
3709 ## event-impl.h (module 'core'): void ns3::EventImpl::Invoke() [member function]
3710 cls.add_method('Invoke',
3711 'void',
3712 [])
3713 ## event-impl.h (module 'core'): bool ns3::EventImpl::IsCancelled() [member function]
3714 cls.add_method('IsCancelled',
3715 'bool',
3716 [])
3717 ## event-impl.h (module 'core'): void ns3::EventImpl::Notify() [member function]
3718 cls.add_method('Notify',
3719 'void',
3720 [],
3721 is_pure_virtual=True, visibility='protected', is_virtual=True)
3722 return
3723
3724def register_Ns3IntegerValue_methods(root_module, cls):
3725 ## integer.h (module 'core'): ns3::IntegerValue::IntegerValue() [constructor]
3726 cls.add_constructor([])
3727 ## integer.h (module 'core'): ns3::IntegerValue::IntegerValue(ns3::IntegerValue const & arg0) [copy constructor]
3728 cls.add_constructor([param('ns3::IntegerValue const &', 'arg0')])
3729 ## integer.h (module 'core'): ns3::IntegerValue::IntegerValue(int64_t const & value) [constructor]
3730 cls.add_constructor([param('int64_t const &', 'value')])
3731 ## integer.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::IntegerValue::Copy() const [member function]
3732 cls.add_method('Copy',
3733 'ns3::Ptr< ns3::AttributeValue >',
3734 [],
3735 is_const=True, is_virtual=True)
3736 ## integer.h (module 'core'): bool ns3::IntegerValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
3737 cls.add_method('DeserializeFromString',
3738 'bool',
3739 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3740 is_virtual=True)
3741 ## integer.h (module 'core'): int64_t ns3::IntegerValue::Get() const [member function]
3742 cls.add_method('Get',
3743 'int64_t',
3744 [],
3745 is_const=True)
3746 ## integer.h (module 'core'): std::string ns3::IntegerValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
3747 cls.add_method('SerializeToString',
3748 'std::string',
3749 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3750 is_const=True, is_virtual=True)
3751 ## integer.h (module 'core'): void ns3::IntegerValue::Set(int64_t const & value) [member function]
3752 cls.add_method('Set',
3753 'void',
3754 [param('int64_t const &', 'value')])
3755 return
3756
3757def register_Ns3Ipv4AddressChecker_methods(root_module, cls):
3758 ## ipv4-address.h (module 'network'): ns3::Ipv4AddressChecker::Ipv4AddressChecker() [constructor]
3759 cls.add_constructor([])
3760 ## ipv4-address.h (module 'network'): ns3::Ipv4AddressChecker::Ipv4AddressChecker(ns3::Ipv4AddressChecker const & arg0) [copy constructor]
3761 cls.add_constructor([param('ns3::Ipv4AddressChecker const &', 'arg0')])
3762 return
3763
3764def register_Ns3Ipv4AddressValue_methods(root_module, cls):
3765 ## ipv4-address.h (module 'network'): ns3::Ipv4AddressValue::Ipv4AddressValue() [constructor]
3766 cls.add_constructor([])
3767 ## ipv4-address.h (module 'network'): ns3::Ipv4AddressValue::Ipv4AddressValue(ns3::Ipv4AddressValue const & arg0) [copy constructor]
3768 cls.add_constructor([param('ns3::Ipv4AddressValue const &', 'arg0')])
3769 ## ipv4-address.h (module 'network'): ns3::Ipv4AddressValue::Ipv4AddressValue(ns3::Ipv4Address const & value) [constructor]
3770 cls.add_constructor([param('ns3::Ipv4Address const &', 'value')])
3771 ## ipv4-address.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::Ipv4AddressValue::Copy() const [member function]
3772 cls.add_method('Copy',
3773 'ns3::Ptr< ns3::AttributeValue >',
3774 [],
3775 is_const=True, is_virtual=True)
3776 ## ipv4-address.h (module 'network'): bool ns3::Ipv4AddressValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
3777 cls.add_method('DeserializeFromString',
3778 'bool',
3779 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3780 is_virtual=True)
3781 ## ipv4-address.h (module 'network'): ns3::Ipv4Address ns3::Ipv4AddressValue::Get() const [member function]
3782 cls.add_method('Get',
3783 'ns3::Ipv4Address',
3784 [],
3785 is_const=True)
3786 ## ipv4-address.h (module 'network'): std::string ns3::Ipv4AddressValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
3787 cls.add_method('SerializeToString',
3788 'std::string',
3789 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3790 is_const=True, is_virtual=True)
3791 ## ipv4-address.h (module 'network'): void ns3::Ipv4AddressValue::Set(ns3::Ipv4Address const & value) [member function]
3792 cls.add_method('Set',
3793 'void',
3794 [param('ns3::Ipv4Address const &', 'value')])
3795 return
3796
3797def register_Ns3Ipv4MaskChecker_methods(root_module, cls):
3798 ## ipv4-address.h (module 'network'): ns3::Ipv4MaskChecker::Ipv4MaskChecker() [constructor]
3799 cls.add_constructor([])
3800 ## ipv4-address.h (module 'network'): ns3::Ipv4MaskChecker::Ipv4MaskChecker(ns3::Ipv4MaskChecker const & arg0) [copy constructor]
3801 cls.add_constructor([param('ns3::Ipv4MaskChecker const &', 'arg0')])
3802 return
3803
3804def register_Ns3Ipv4MaskValue_methods(root_module, cls):
3805 ## ipv4-address.h (module 'network'): ns3::Ipv4MaskValue::Ipv4MaskValue() [constructor]
3806 cls.add_constructor([])
3807 ## ipv4-address.h (module 'network'): ns3::Ipv4MaskValue::Ipv4MaskValue(ns3::Ipv4MaskValue const & arg0) [copy constructor]
3808 cls.add_constructor([param('ns3::Ipv4MaskValue const &', 'arg0')])
3809 ## ipv4-address.h (module 'network'): ns3::Ipv4MaskValue::Ipv4MaskValue(ns3::Ipv4Mask const & value) [constructor]
3810 cls.add_constructor([param('ns3::Ipv4Mask const &', 'value')])
3811 ## ipv4-address.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::Ipv4MaskValue::Copy() const [member function]
3812 cls.add_method('Copy',
3813 'ns3::Ptr< ns3::AttributeValue >',
3814 [],
3815 is_const=True, is_virtual=True)
3816 ## ipv4-address.h (module 'network'): bool ns3::Ipv4MaskValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
3817 cls.add_method('DeserializeFromString',
3818 'bool',
3819 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3820 is_virtual=True)
3821 ## ipv4-address.h (module 'network'): ns3::Ipv4Mask ns3::Ipv4MaskValue::Get() const [member function]
3822 cls.add_method('Get',
3823 'ns3::Ipv4Mask',
3824 [],
3825 is_const=True)
3826 ## ipv4-address.h (module 'network'): std::string ns3::Ipv4MaskValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
3827 cls.add_method('SerializeToString',
3828 'std::string',
3829 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3830 is_const=True, is_virtual=True)
3831 ## ipv4-address.h (module 'network'): void ns3::Ipv4MaskValue::Set(ns3::Ipv4Mask const & value) [member function]
3832 cls.add_method('Set',
3833 'void',
3834 [param('ns3::Ipv4Mask const &', 'value')])
3835 return
3836
3837def register_Ns3Ipv6AddressChecker_methods(root_module, cls):
3838 ## ipv6-address.h (module 'network'): ns3::Ipv6AddressChecker::Ipv6AddressChecker() [constructor]
3839 cls.add_constructor([])
3840 ## ipv6-address.h (module 'network'): ns3::Ipv6AddressChecker::Ipv6AddressChecker(ns3::Ipv6AddressChecker const & arg0) [copy constructor]
3841 cls.add_constructor([param('ns3::Ipv6AddressChecker const &', 'arg0')])
3842 return
3843
3844def register_Ns3Ipv6AddressValue_methods(root_module, cls):
3845 ## ipv6-address.h (module 'network'): ns3::Ipv6AddressValue::Ipv6AddressValue() [constructor]
3846 cls.add_constructor([])
3847 ## ipv6-address.h (module 'network'): ns3::Ipv6AddressValue::Ipv6AddressValue(ns3::Ipv6AddressValue const & arg0) [copy constructor]
3848 cls.add_constructor([param('ns3::Ipv6AddressValue const &', 'arg0')])
3849 ## ipv6-address.h (module 'network'): ns3::Ipv6AddressValue::Ipv6AddressValue(ns3::Ipv6Address const & value) [constructor]
3850 cls.add_constructor([param('ns3::Ipv6Address const &', 'value')])
3851 ## ipv6-address.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::Ipv6AddressValue::Copy() const [member function]
3852 cls.add_method('Copy',
3853 'ns3::Ptr< ns3::AttributeValue >',
3854 [],
3855 is_const=True, is_virtual=True)
3856 ## ipv6-address.h (module 'network'): bool ns3::Ipv6AddressValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
3857 cls.add_method('DeserializeFromString',
3858 'bool',
3859 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3860 is_virtual=True)
3861 ## ipv6-address.h (module 'network'): ns3::Ipv6Address ns3::Ipv6AddressValue::Get() const [member function]
3862 cls.add_method('Get',
3863 'ns3::Ipv6Address',
3864 [],
3865 is_const=True)
3866 ## ipv6-address.h (module 'network'): std::string ns3::Ipv6AddressValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
3867 cls.add_method('SerializeToString',
3868 'std::string',
3869 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3870 is_const=True, is_virtual=True)
3871 ## ipv6-address.h (module 'network'): void ns3::Ipv6AddressValue::Set(ns3::Ipv6Address const & value) [member function]
3872 cls.add_method('Set',
3873 'void',
3874 [param('ns3::Ipv6Address const &', 'value')])
3875 return
3876
3877def register_Ns3Ipv6PrefixChecker_methods(root_module, cls):
3878 ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixChecker::Ipv6PrefixChecker() [constructor]
3879 cls.add_constructor([])
3880 ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixChecker::Ipv6PrefixChecker(ns3::Ipv6PrefixChecker const & arg0) [copy constructor]
3881 cls.add_constructor([param('ns3::Ipv6PrefixChecker const &', 'arg0')])
3882 return
3883
3884def register_Ns3Ipv6PrefixValue_methods(root_module, cls):
3885 ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixValue::Ipv6PrefixValue() [constructor]
3886 cls.add_constructor([])
3887 ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixValue::Ipv6PrefixValue(ns3::Ipv6PrefixValue const & arg0) [copy constructor]
3888 cls.add_constructor([param('ns3::Ipv6PrefixValue const &', 'arg0')])
3889 ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixValue::Ipv6PrefixValue(ns3::Ipv6Prefix const & value) [constructor]
3890 cls.add_constructor([param('ns3::Ipv6Prefix const &', 'value')])
3891 ## ipv6-address.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::Ipv6PrefixValue::Copy() const [member function]
3892 cls.add_method('Copy',
3893 'ns3::Ptr< ns3::AttributeValue >',
3894 [],
3895 is_const=True, is_virtual=True)
3896 ## ipv6-address.h (module 'network'): bool ns3::Ipv6PrefixValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
3897 cls.add_method('DeserializeFromString',
3898 'bool',
3899 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3900 is_virtual=True)
3901 ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix ns3::Ipv6PrefixValue::Get() const [member function]
3902 cls.add_method('Get',
3903 'ns3::Ipv6Prefix',
3904 [],
3905 is_const=True)
3906 ## ipv6-address.h (module 'network'): std::string ns3::Ipv6PrefixValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
3907 cls.add_method('SerializeToString',
3908 'std::string',
3909 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3910 is_const=True, is_virtual=True)
3911 ## ipv6-address.h (module 'network'): void ns3::Ipv6PrefixValue::Set(ns3::Ipv6Prefix const & value) [member function]
3912 cls.add_method('Set',
3913 'void',
3914 [param('ns3::Ipv6Prefix const &', 'value')])
3915 return
3916
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08003917def register_Ns3NetDevice_methods(root_module, cls):
3918 ## net-device.h (module 'network'): ns3::NetDevice::NetDevice() [constructor]
3919 cls.add_constructor([])
3920 ## net-device.h (module 'network'): ns3::NetDevice::NetDevice(ns3::NetDevice const & arg0) [copy constructor]
3921 cls.add_constructor([param('ns3::NetDevice const &', 'arg0')])
Alexander Afanasyeva8f5d882012-11-09 14:22:48 -08003922 ## net-device.h (module 'network'): void ns3::NetDevice::AddLinkChangeCallback(ns3::Callback<void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> callback) [member function]
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08003923 cls.add_method('AddLinkChangeCallback',
3924 'void',
3925 [param('ns3::Callback< void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'callback')],
3926 is_pure_virtual=True, is_virtual=True)
3927 ## net-device.h (module 'network'): ns3::Address ns3::NetDevice::GetAddress() const [member function]
3928 cls.add_method('GetAddress',
3929 'ns3::Address',
3930 [],
3931 is_pure_virtual=True, is_const=True, is_virtual=True)
3932 ## net-device.h (module 'network'): ns3::Address ns3::NetDevice::GetBroadcast() const [member function]
3933 cls.add_method('GetBroadcast',
3934 'ns3::Address',
3935 [],
3936 is_pure_virtual=True, is_const=True, is_virtual=True)
3937 ## net-device.h (module 'network'): ns3::Ptr<ns3::Channel> ns3::NetDevice::GetChannel() const [member function]
3938 cls.add_method('GetChannel',
3939 'ns3::Ptr< ns3::Channel >',
3940 [],
3941 is_pure_virtual=True, is_const=True, is_virtual=True)
3942 ## net-device.h (module 'network'): uint32_t ns3::NetDevice::GetIfIndex() const [member function]
3943 cls.add_method('GetIfIndex',
3944 'uint32_t',
3945 [],
3946 is_pure_virtual=True, is_const=True, is_virtual=True)
3947 ## net-device.h (module 'network'): uint16_t ns3::NetDevice::GetMtu() const [member function]
3948 cls.add_method('GetMtu',
3949 'uint16_t',
3950 [],
3951 is_pure_virtual=True, is_const=True, is_virtual=True)
3952 ## net-device.h (module 'network'): ns3::Address ns3::NetDevice::GetMulticast(ns3::Ipv4Address multicastGroup) const [member function]
3953 cls.add_method('GetMulticast',
3954 'ns3::Address',
3955 [param('ns3::Ipv4Address', 'multicastGroup')],
3956 is_pure_virtual=True, is_const=True, is_virtual=True)
3957 ## net-device.h (module 'network'): ns3::Address ns3::NetDevice::GetMulticast(ns3::Ipv6Address addr) const [member function]
3958 cls.add_method('GetMulticast',
3959 'ns3::Address',
3960 [param('ns3::Ipv6Address', 'addr')],
3961 is_pure_virtual=True, is_const=True, is_virtual=True)
3962 ## net-device.h (module 'network'): ns3::Ptr<ns3::Node> ns3::NetDevice::GetNode() const [member function]
3963 cls.add_method('GetNode',
3964 'ns3::Ptr< ns3::Node >',
3965 [],
3966 is_pure_virtual=True, is_const=True, is_virtual=True)
3967 ## net-device.h (module 'network'): static ns3::TypeId ns3::NetDevice::GetTypeId() [member function]
3968 cls.add_method('GetTypeId',
3969 'ns3::TypeId',
3970 [],
3971 is_static=True)
3972 ## net-device.h (module 'network'): bool ns3::NetDevice::IsBridge() const [member function]
3973 cls.add_method('IsBridge',
3974 'bool',
3975 [],
3976 is_pure_virtual=True, is_const=True, is_virtual=True)
3977 ## net-device.h (module 'network'): bool ns3::NetDevice::IsBroadcast() const [member function]
3978 cls.add_method('IsBroadcast',
3979 'bool',
3980 [],
3981 is_pure_virtual=True, is_const=True, is_virtual=True)
3982 ## net-device.h (module 'network'): bool ns3::NetDevice::IsLinkUp() const [member function]
3983 cls.add_method('IsLinkUp',
3984 'bool',
3985 [],
3986 is_pure_virtual=True, is_const=True, is_virtual=True)
3987 ## net-device.h (module 'network'): bool ns3::NetDevice::IsMulticast() const [member function]
3988 cls.add_method('IsMulticast',
3989 'bool',
3990 [],
3991 is_pure_virtual=True, is_const=True, is_virtual=True)
3992 ## net-device.h (module 'network'): bool ns3::NetDevice::IsPointToPoint() const [member function]
3993 cls.add_method('IsPointToPoint',
3994 'bool',
3995 [],
3996 is_pure_virtual=True, is_const=True, is_virtual=True)
3997 ## net-device.h (module 'network'): bool ns3::NetDevice::NeedsArp() const [member function]
3998 cls.add_method('NeedsArp',
3999 'bool',
4000 [],
4001 is_pure_virtual=True, is_const=True, is_virtual=True)
4002 ## net-device.h (module 'network'): bool ns3::NetDevice::Send(ns3::Ptr<ns3::Packet> packet, ns3::Address const & dest, uint16_t protocolNumber) [member function]
4003 cls.add_method('Send',
4004 'bool',
4005 [param('ns3::Ptr< ns3::Packet >', 'packet'), param('ns3::Address const &', 'dest'), param('uint16_t', 'protocolNumber')],
4006 is_pure_virtual=True, is_virtual=True)
4007 ## 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]
4008 cls.add_method('SendFrom',
4009 'bool',
4010 [param('ns3::Ptr< ns3::Packet >', 'packet'), param('ns3::Address const &', 'source'), param('ns3::Address const &', 'dest'), param('uint16_t', 'protocolNumber')],
4011 is_pure_virtual=True, is_virtual=True)
4012 ## net-device.h (module 'network'): void ns3::NetDevice::SetAddress(ns3::Address address) [member function]
4013 cls.add_method('SetAddress',
4014 'void',
4015 [param('ns3::Address', 'address')],
4016 is_pure_virtual=True, is_virtual=True)
4017 ## net-device.h (module 'network'): void ns3::NetDevice::SetIfIndex(uint32_t const index) [member function]
4018 cls.add_method('SetIfIndex',
4019 'void',
4020 [param('uint32_t const', 'index')],
4021 is_pure_virtual=True, is_virtual=True)
4022 ## net-device.h (module 'network'): bool ns3::NetDevice::SetMtu(uint16_t const mtu) [member function]
4023 cls.add_method('SetMtu',
4024 'bool',
4025 [param('uint16_t const', 'mtu')],
4026 is_pure_virtual=True, is_virtual=True)
4027 ## net-device.h (module 'network'): void ns3::NetDevice::SetNode(ns3::Ptr<ns3::Node> node) [member function]
4028 cls.add_method('SetNode',
4029 'void',
4030 [param('ns3::Ptr< ns3::Node >', 'node')],
4031 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -08004032 ## net-device.h (module 'network'): void ns3::NetDevice::SetPromiscReceiveCallback(ns3::Callback<bool,ns3::Ptr<ns3::NetDevice>,ns3::Ptr<const ns3::Packet>,short unsigned int,const ns3::Address&,const ns3::Address&,ns3::NetDevice::PacketType,ns3::empty,ns3::empty,ns3::empty> cb) [member function]
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004033 cls.add_method('SetPromiscReceiveCallback',
4034 'void',
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -08004035 [param('ns3::Callback< bool, ns3::Ptr< ns3::NetDevice >, ns3::Ptr< ns3::Packet const >, short unsigned int, ns3::Address const &, ns3::Address const &, ns3::NetDevice::PacketType, ns3::empty, ns3::empty, ns3::empty >', 'cb')],
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004036 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -08004037 ## net-device.h (module 'network'): void ns3::NetDevice::SetReceiveCallback(ns3::Callback<bool,ns3::Ptr<ns3::NetDevice>,ns3::Ptr<const ns3::Packet>,short unsigned int,const ns3::Address&,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty> cb) [member function]
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004038 cls.add_method('SetReceiveCallback',
4039 'void',
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -08004040 [param('ns3::Callback< bool, ns3::Ptr< ns3::NetDevice >, ns3::Ptr< ns3::Packet const >, short unsigned int, ns3::Address const &, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'cb')],
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004041 is_pure_virtual=True, is_virtual=True)
4042 ## net-device.h (module 'network'): bool ns3::NetDevice::SupportsSendFrom() const [member function]
4043 cls.add_method('SupportsSendFrom',
4044 'bool',
4045 [],
4046 is_pure_virtual=True, is_const=True, is_virtual=True)
4047 return
4048
4049def register_Ns3NixVector_methods(root_module, cls):
4050 cls.add_output_stream_operator()
4051 ## nix-vector.h (module 'network'): ns3::NixVector::NixVector() [constructor]
4052 cls.add_constructor([])
4053 ## nix-vector.h (module 'network'): ns3::NixVector::NixVector(ns3::NixVector const & o) [copy constructor]
4054 cls.add_constructor([param('ns3::NixVector const &', 'o')])
4055 ## nix-vector.h (module 'network'): void ns3::NixVector::AddNeighborIndex(uint32_t newBits, uint32_t numberOfBits) [member function]
4056 cls.add_method('AddNeighborIndex',
4057 'void',
4058 [param('uint32_t', 'newBits'), param('uint32_t', 'numberOfBits')])
4059 ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::BitCount(uint32_t numberOfNeighbors) const [member function]
4060 cls.add_method('BitCount',
4061 'uint32_t',
4062 [param('uint32_t', 'numberOfNeighbors')],
4063 is_const=True)
4064 ## nix-vector.h (module 'network'): ns3::Ptr<ns3::NixVector> ns3::NixVector::Copy() const [member function]
4065 cls.add_method('Copy',
4066 'ns3::Ptr< ns3::NixVector >',
4067 [],
4068 is_const=True)
4069 ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::Deserialize(uint32_t const * buffer, uint32_t size) [member function]
4070 cls.add_method('Deserialize',
4071 'uint32_t',
4072 [param('uint32_t const *', 'buffer'), param('uint32_t', 'size')])
4073 ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::ExtractNeighborIndex(uint32_t numberOfBits) [member function]
4074 cls.add_method('ExtractNeighborIndex',
4075 'uint32_t',
4076 [param('uint32_t', 'numberOfBits')])
4077 ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::GetRemainingBits() [member function]
4078 cls.add_method('GetRemainingBits',
4079 'uint32_t',
4080 [])
4081 ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::GetSerializedSize() const [member function]
4082 cls.add_method('GetSerializedSize',
4083 'uint32_t',
4084 [],
4085 is_const=True)
4086 ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::Serialize(uint32_t * buffer, uint32_t maxSize) const [member function]
4087 cls.add_method('Serialize',
4088 'uint32_t',
4089 [param('uint32_t *', 'buffer'), param('uint32_t', 'maxSize')],
4090 is_const=True)
4091 return
4092
4093def register_Ns3Node_methods(root_module, cls):
4094 ## node.h (module 'network'): ns3::Node::Node(ns3::Node const & arg0) [copy constructor]
4095 cls.add_constructor([param('ns3::Node const &', 'arg0')])
4096 ## node.h (module 'network'): ns3::Node::Node() [constructor]
4097 cls.add_constructor([])
4098 ## node.h (module 'network'): ns3::Node::Node(uint32_t systemId) [constructor]
4099 cls.add_constructor([param('uint32_t', 'systemId')])
4100 ## node.h (module 'network'): uint32_t ns3::Node::AddApplication(ns3::Ptr<ns3::Application> application) [member function]
4101 cls.add_method('AddApplication',
4102 'uint32_t',
4103 [param('ns3::Ptr< ns3::Application >', 'application')])
4104 ## node.h (module 'network'): uint32_t ns3::Node::AddDevice(ns3::Ptr<ns3::NetDevice> device) [member function]
4105 cls.add_method('AddDevice',
4106 'uint32_t',
4107 [param('ns3::Ptr< ns3::NetDevice >', 'device')])
4108 ## node.h (module 'network'): static bool ns3::Node::ChecksumEnabled() [member function]
4109 cls.add_method('ChecksumEnabled',
4110 'bool',
4111 [],
4112 is_static=True)
4113 ## node.h (module 'network'): ns3::Ptr<ns3::Application> ns3::Node::GetApplication(uint32_t index) const [member function]
4114 cls.add_method('GetApplication',
4115 'ns3::Ptr< ns3::Application >',
4116 [param('uint32_t', 'index')],
4117 is_const=True)
4118 ## node.h (module 'network'): ns3::Ptr<ns3::NetDevice> ns3::Node::GetDevice(uint32_t index) const [member function]
4119 cls.add_method('GetDevice',
4120 'ns3::Ptr< ns3::NetDevice >',
4121 [param('uint32_t', 'index')],
4122 is_const=True)
4123 ## node.h (module 'network'): uint32_t ns3::Node::GetId() const [member function]
4124 cls.add_method('GetId',
4125 'uint32_t',
4126 [],
4127 is_const=True)
4128 ## node.h (module 'network'): uint32_t ns3::Node::GetNApplications() const [member function]
4129 cls.add_method('GetNApplications',
4130 'uint32_t',
4131 [],
4132 is_const=True)
4133 ## node.h (module 'network'): uint32_t ns3::Node::GetNDevices() const [member function]
4134 cls.add_method('GetNDevices',
4135 'uint32_t',
4136 [],
4137 is_const=True)
4138 ## node.h (module 'network'): uint32_t ns3::Node::GetSystemId() const [member function]
4139 cls.add_method('GetSystemId',
4140 'uint32_t',
4141 [],
4142 is_const=True)
4143 ## node.h (module 'network'): static ns3::TypeId ns3::Node::GetTypeId() [member function]
4144 cls.add_method('GetTypeId',
4145 'ns3::TypeId',
4146 [],
4147 is_static=True)
4148 ## 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]
4149 cls.add_method('RegisterDeviceAdditionListener',
4150 'void',
4151 [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')])
4152 ## 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]
4153 cls.add_method('RegisterProtocolHandler',
4154 'void',
4155 [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')])
4156 ## 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]
4157 cls.add_method('UnregisterDeviceAdditionListener',
4158 'void',
4159 [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')])
4160 ## 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]
4161 cls.add_method('UnregisterProtocolHandler',
4162 'void',
4163 [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')])
4164 ## node.h (module 'network'): void ns3::Node::DoDispose() [member function]
4165 cls.add_method('DoDispose',
4166 'void',
4167 [],
4168 visibility='protected', is_virtual=True)
4169 ## node.h (module 'network'): void ns3::Node::DoStart() [member function]
4170 cls.add_method('DoStart',
4171 'void',
4172 [],
4173 visibility='protected', is_virtual=True)
4174 return
4175
4176def register_Ns3ObjectFactoryChecker_methods(root_module, cls):
4177 ## object-factory.h (module 'core'): ns3::ObjectFactoryChecker::ObjectFactoryChecker() [constructor]
4178 cls.add_constructor([])
4179 ## object-factory.h (module 'core'): ns3::ObjectFactoryChecker::ObjectFactoryChecker(ns3::ObjectFactoryChecker const & arg0) [copy constructor]
4180 cls.add_constructor([param('ns3::ObjectFactoryChecker const &', 'arg0')])
4181 return
4182
4183def register_Ns3ObjectFactoryValue_methods(root_module, cls):
4184 ## object-factory.h (module 'core'): ns3::ObjectFactoryValue::ObjectFactoryValue() [constructor]
4185 cls.add_constructor([])
4186 ## object-factory.h (module 'core'): ns3::ObjectFactoryValue::ObjectFactoryValue(ns3::ObjectFactoryValue const & arg0) [copy constructor]
4187 cls.add_constructor([param('ns3::ObjectFactoryValue const &', 'arg0')])
4188 ## object-factory.h (module 'core'): ns3::ObjectFactoryValue::ObjectFactoryValue(ns3::ObjectFactory const & value) [constructor]
4189 cls.add_constructor([param('ns3::ObjectFactory const &', 'value')])
4190 ## object-factory.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::ObjectFactoryValue::Copy() const [member function]
4191 cls.add_method('Copy',
4192 'ns3::Ptr< ns3::AttributeValue >',
4193 [],
4194 is_const=True, is_virtual=True)
4195 ## object-factory.h (module 'core'): bool ns3::ObjectFactoryValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
4196 cls.add_method('DeserializeFromString',
4197 'bool',
4198 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4199 is_virtual=True)
4200 ## object-factory.h (module 'core'): ns3::ObjectFactory ns3::ObjectFactoryValue::Get() const [member function]
4201 cls.add_method('Get',
4202 'ns3::ObjectFactory',
4203 [],
4204 is_const=True)
4205 ## object-factory.h (module 'core'): std::string ns3::ObjectFactoryValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
4206 cls.add_method('SerializeToString',
4207 'std::string',
4208 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4209 is_const=True, is_virtual=True)
4210 ## object-factory.h (module 'core'): void ns3::ObjectFactoryValue::Set(ns3::ObjectFactory const & value) [member function]
4211 cls.add_method('Set',
4212 'void',
4213 [param('ns3::ObjectFactory const &', 'value')])
4214 return
4215
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004216def register_Ns3Packet_methods(root_module, cls):
4217 cls.add_output_stream_operator()
4218 ## packet.h (module 'network'): ns3::Packet::Packet() [constructor]
4219 cls.add_constructor([])
4220 ## packet.h (module 'network'): ns3::Packet::Packet(ns3::Packet const & o) [copy constructor]
4221 cls.add_constructor([param('ns3::Packet const &', 'o')])
4222 ## packet.h (module 'network'): ns3::Packet::Packet(uint32_t size) [constructor]
4223 cls.add_constructor([param('uint32_t', 'size')])
4224 ## packet.h (module 'network'): ns3::Packet::Packet(uint8_t const * buffer, uint32_t size, bool magic) [constructor]
4225 cls.add_constructor([param('uint8_t const *', 'buffer'), param('uint32_t', 'size'), param('bool', 'magic')])
4226 ## packet.h (module 'network'): ns3::Packet::Packet(uint8_t const * buffer, uint32_t size) [constructor]
4227 cls.add_constructor([param('uint8_t const *', 'buffer'), param('uint32_t', 'size')])
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -08004228 ## packet.h (module 'network'): void ns3::Packet::AddAtEnd(ns3::Ptr<const ns3::Packet> packet) [member function]
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004229 cls.add_method('AddAtEnd',
4230 'void',
4231 [param('ns3::Ptr< ns3::Packet const >', 'packet')])
4232 ## packet.h (module 'network'): void ns3::Packet::AddByteTag(ns3::Tag const & tag) const [member function]
4233 cls.add_method('AddByteTag',
4234 'void',
4235 [param('ns3::Tag const &', 'tag')],
4236 is_const=True)
4237 ## packet.h (module 'network'): void ns3::Packet::AddHeader(ns3::Header const & header) [member function]
4238 cls.add_method('AddHeader',
4239 'void',
4240 [param('ns3::Header const &', 'header')])
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07004241 ## packet.h (module 'network'): void ns3::Packet::AddPacketTag(ns3::Tag const & tag) const [member function]
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004242 cls.add_method('AddPacketTag',
4243 'void',
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07004244 [param('ns3::Tag const &', 'tag')],
4245 is_const=True)
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004246 ## packet.h (module 'network'): void ns3::Packet::AddPaddingAtEnd(uint32_t size) [member function]
4247 cls.add_method('AddPaddingAtEnd',
4248 'void',
4249 [param('uint32_t', 'size')])
4250 ## packet.h (module 'network'): void ns3::Packet::AddTrailer(ns3::Trailer const & trailer) [member function]
4251 cls.add_method('AddTrailer',
4252 'void',
4253 [param('ns3::Trailer const &', 'trailer')])
4254 ## packet.h (module 'network'): ns3::PacketMetadata::ItemIterator ns3::Packet::BeginItem() const [member function]
4255 cls.add_method('BeginItem',
4256 'ns3::PacketMetadata::ItemIterator',
4257 [],
4258 is_const=True)
4259 ## packet.h (module 'network'): ns3::Ptr<ns3::Packet> ns3::Packet::Copy() const [member function]
4260 cls.add_method('Copy',
4261 'ns3::Ptr< ns3::Packet >',
4262 [],
4263 is_const=True)
4264 ## packet.h (module 'network'): uint32_t ns3::Packet::CopyData(uint8_t * buffer, uint32_t size) const [member function]
4265 cls.add_method('CopyData',
4266 'uint32_t',
4267 [param('uint8_t *', 'buffer'), param('uint32_t', 'size')],
4268 is_const=True)
4269 ## packet.h (module 'network'): void ns3::Packet::CopyData(std::ostream * os, uint32_t size) const [member function]
4270 cls.add_method('CopyData',
4271 'void',
4272 [param('std::ostream *', 'os'), param('uint32_t', 'size')],
4273 is_const=True)
4274 ## packet.h (module 'network'): ns3::Ptr<ns3::Packet> ns3::Packet::CreateFragment(uint32_t start, uint32_t length) const [member function]
4275 cls.add_method('CreateFragment',
4276 'ns3::Ptr< ns3::Packet >',
4277 [param('uint32_t', 'start'), param('uint32_t', 'length')],
4278 is_const=True)
4279 ## packet.h (module 'network'): static void ns3::Packet::EnableChecking() [member function]
4280 cls.add_method('EnableChecking',
4281 'void',
4282 [],
4283 is_static=True)
4284 ## packet.h (module 'network'): static void ns3::Packet::EnablePrinting() [member function]
4285 cls.add_method('EnablePrinting',
4286 'void',
4287 [],
4288 is_static=True)
4289 ## packet.h (module 'network'): bool ns3::Packet::FindFirstMatchingByteTag(ns3::Tag & tag) const [member function]
4290 cls.add_method('FindFirstMatchingByteTag',
4291 'bool',
4292 [param('ns3::Tag &', 'tag')],
4293 is_const=True)
4294 ## packet.h (module 'network'): ns3::ByteTagIterator ns3::Packet::GetByteTagIterator() const [member function]
4295 cls.add_method('GetByteTagIterator',
4296 'ns3::ByteTagIterator',
4297 [],
4298 is_const=True)
4299 ## packet.h (module 'network'): ns3::Ptr<ns3::NixVector> ns3::Packet::GetNixVector() const [member function]
4300 cls.add_method('GetNixVector',
4301 'ns3::Ptr< ns3::NixVector >',
4302 [],
4303 is_const=True)
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07004304 ## packet.h (module 'network'): ns3::PacketTagIterator ns3::Packet::GetPacketTagIterator() const [member function]
4305 cls.add_method('GetPacketTagIterator',
4306 'ns3::PacketTagIterator',
4307 [],
4308 is_const=True)
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004309 ## packet.h (module 'network'): uint32_t ns3::Packet::GetSerializedSize() const [member function]
4310 cls.add_method('GetSerializedSize',
4311 'uint32_t',
4312 [],
4313 is_const=True)
4314 ## packet.h (module 'network'): uint32_t ns3::Packet::GetSize() const [member function]
4315 cls.add_method('GetSize',
4316 'uint32_t',
4317 [],
4318 is_const=True)
4319 ## packet.h (module 'network'): uint64_t ns3::Packet::GetUid() const [member function]
4320 cls.add_method('GetUid',
4321 'uint64_t',
4322 [],
4323 is_const=True)
4324 ## packet.h (module 'network'): uint8_t const * ns3::Packet::PeekData() const [member function]
4325 cls.add_method('PeekData',
4326 'uint8_t const *',
4327 [],
4328 deprecated=True, is_const=True)
4329 ## packet.h (module 'network'): uint32_t ns3::Packet::PeekHeader(ns3::Header & header) const [member function]
4330 cls.add_method('PeekHeader',
4331 'uint32_t',
4332 [param('ns3::Header &', 'header')],
4333 is_const=True)
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07004334 ## packet.h (module 'network'): bool ns3::Packet::PeekPacketTag(ns3::Tag & tag) const [member function]
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004335 cls.add_method('PeekPacketTag',
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07004336 'bool',
4337 [param('ns3::Tag &', 'tag')],
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004338 is_const=True)
4339 ## packet.h (module 'network'): uint32_t ns3::Packet::PeekTrailer(ns3::Trailer & trailer) [member function]
4340 cls.add_method('PeekTrailer',
4341 'uint32_t',
4342 [param('ns3::Trailer &', 'trailer')])
4343 ## packet.h (module 'network'): void ns3::Packet::Print(std::ostream & os) const [member function]
4344 cls.add_method('Print',
4345 'void',
4346 [param('std::ostream &', 'os')],
4347 is_const=True)
4348 ## packet.h (module 'network'): void ns3::Packet::PrintByteTags(std::ostream & os) const [member function]
4349 cls.add_method('PrintByteTags',
4350 'void',
4351 [param('std::ostream &', 'os')],
4352 is_const=True)
4353 ## packet.h (module 'network'): void ns3::Packet::PrintPacketTags(std::ostream & os) const [member function]
4354 cls.add_method('PrintPacketTags',
4355 'void',
4356 [param('std::ostream &', 'os')],
4357 is_const=True)
4358 ## packet.h (module 'network'): void ns3::Packet::RemoveAllByteTags() [member function]
4359 cls.add_method('RemoveAllByteTags',
4360 'void',
4361 [])
4362 ## packet.h (module 'network'): void ns3::Packet::RemoveAllPacketTags() [member function]
4363 cls.add_method('RemoveAllPacketTags',
4364 'void',
4365 [])
4366 ## packet.h (module 'network'): void ns3::Packet::RemoveAtEnd(uint32_t size) [member function]
4367 cls.add_method('RemoveAtEnd',
4368 'void',
4369 [param('uint32_t', 'size')])
4370 ## packet.h (module 'network'): void ns3::Packet::RemoveAtStart(uint32_t size) [member function]
4371 cls.add_method('RemoveAtStart',
4372 'void',
4373 [param('uint32_t', 'size')])
4374 ## packet.h (module 'network'): uint32_t ns3::Packet::RemoveHeader(ns3::Header & header) [member function]
4375 cls.add_method('RemoveHeader',
4376 'uint32_t',
4377 [param('ns3::Header &', 'header')])
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07004378 ## packet.h (module 'network'): bool ns3::Packet::RemovePacketTag(ns3::Tag & tag) [member function]
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004379 cls.add_method('RemovePacketTag',
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07004380 'bool',
4381 [param('ns3::Tag &', 'tag')])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004382 ## packet.h (module 'network'): uint32_t ns3::Packet::RemoveTrailer(ns3::Trailer & trailer) [member function]
4383 cls.add_method('RemoveTrailer',
4384 'uint32_t',
4385 [param('ns3::Trailer &', 'trailer')])
4386 ## packet.h (module 'network'): uint32_t ns3::Packet::Serialize(uint8_t * buffer, uint32_t maxSize) const [member function]
4387 cls.add_method('Serialize',
4388 'uint32_t',
4389 [param('uint8_t *', 'buffer'), param('uint32_t', 'maxSize')],
4390 is_const=True)
4391 ## packet.h (module 'network'): void ns3::Packet::SetNixVector(ns3::Ptr<ns3::NixVector> arg0) [member function]
4392 cls.add_method('SetNixVector',
4393 'void',
4394 [param('ns3::Ptr< ns3::NixVector >', 'arg0')])
4395 return
4396
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07004397def register_Ns3RandomVariableChecker_methods(root_module, cls):
4398 ## random-variable.h (module 'core'): ns3::RandomVariableChecker::RandomVariableChecker() [constructor]
4399 cls.add_constructor([])
4400 ## random-variable.h (module 'core'): ns3::RandomVariableChecker::RandomVariableChecker(ns3::RandomVariableChecker const & arg0) [copy constructor]
4401 cls.add_constructor([param('ns3::RandomVariableChecker const &', 'arg0')])
4402 return
4403
4404def register_Ns3RandomVariableValue_methods(root_module, cls):
4405 ## random-variable.h (module 'core'): ns3::RandomVariableValue::RandomVariableValue() [constructor]
4406 cls.add_constructor([])
4407 ## random-variable.h (module 'core'): ns3::RandomVariableValue::RandomVariableValue(ns3::RandomVariableValue const & arg0) [copy constructor]
4408 cls.add_constructor([param('ns3::RandomVariableValue const &', 'arg0')])
4409 ## random-variable.h (module 'core'): ns3::RandomVariableValue::RandomVariableValue(ns3::RandomVariable const & value) [constructor]
4410 cls.add_constructor([param('ns3::RandomVariable const &', 'value')])
4411 ## random-variable.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::RandomVariableValue::Copy() const [member function]
4412 cls.add_method('Copy',
4413 'ns3::Ptr< ns3::AttributeValue >',
4414 [],
4415 is_const=True, is_virtual=True)
4416 ## random-variable.h (module 'core'): bool ns3::RandomVariableValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
4417 cls.add_method('DeserializeFromString',
4418 'bool',
4419 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4420 is_virtual=True)
4421 ## random-variable.h (module 'core'): ns3::RandomVariable ns3::RandomVariableValue::Get() const [member function]
4422 cls.add_method('Get',
4423 'ns3::RandomVariable',
4424 [],
4425 is_const=True)
4426 ## random-variable.h (module 'core'): std::string ns3::RandomVariableValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
4427 cls.add_method('SerializeToString',
4428 'std::string',
4429 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4430 is_const=True, is_virtual=True)
4431 ## random-variable.h (module 'core'): void ns3::RandomVariableValue::Set(ns3::RandomVariable const & value) [member function]
4432 cls.add_method('Set',
4433 'void',
4434 [param('ns3::RandomVariable const &', 'value')])
4435 return
4436
4437def register_Ns3RocketfuelWeightsReader_methods(root_module, cls):
4438 ## rocketfuel-weights-reader.h (module 'ndnSIM'): ns3::RocketfuelWeightsReader::RocketfuelWeightsReader(std::string const & path="", double scale=1.0e+0) [constructor]
4439 cls.add_constructor([param('std::string const &', 'path', default_value='""'), param('double', 'scale', default_value='1.0e+0')])
4440 ## rocketfuel-weights-reader.h (module 'ndnSIM'): void ns3::RocketfuelWeightsReader::SetFileType(uint8_t inputType) [member function]
4441 cls.add_method('SetFileType',
4442 'void',
4443 [param('uint8_t', 'inputType')])
4444 ## rocketfuel-weights-reader.h (module 'ndnSIM'): ns3::NodeContainer ns3::RocketfuelWeightsReader::Read() [member function]
4445 cls.add_method('Read',
4446 'ns3::NodeContainer',
4447 [],
4448 is_virtual=True)
4449 ## rocketfuel-weights-reader.h (module 'ndnSIM'): void ns3::RocketfuelWeightsReader::Commit() [member function]
4450 cls.add_method('Commit',
4451 'void',
4452 [])
4453 return
4454
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004455def register_Ns3TimeChecker_methods(root_module, cls):
4456 ## nstime.h (module 'core'): ns3::TimeChecker::TimeChecker() [constructor]
4457 cls.add_constructor([])
4458 ## nstime.h (module 'core'): ns3::TimeChecker::TimeChecker(ns3::TimeChecker const & arg0) [copy constructor]
4459 cls.add_constructor([param('ns3::TimeChecker const &', 'arg0')])
4460 return
4461
4462def register_Ns3TimeValue_methods(root_module, cls):
4463 ## nstime.h (module 'core'): ns3::TimeValue::TimeValue() [constructor]
4464 cls.add_constructor([])
4465 ## nstime.h (module 'core'): ns3::TimeValue::TimeValue(ns3::TimeValue const & arg0) [copy constructor]
4466 cls.add_constructor([param('ns3::TimeValue const &', 'arg0')])
4467 ## nstime.h (module 'core'): ns3::TimeValue::TimeValue(ns3::Time const & value) [constructor]
4468 cls.add_constructor([param('ns3::Time const &', 'value')])
4469 ## nstime.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::TimeValue::Copy() const [member function]
4470 cls.add_method('Copy',
4471 'ns3::Ptr< ns3::AttributeValue >',
4472 [],
4473 is_const=True, is_virtual=True)
4474 ## nstime.h (module 'core'): bool ns3::TimeValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
4475 cls.add_method('DeserializeFromString',
4476 'bool',
4477 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4478 is_virtual=True)
4479 ## nstime.h (module 'core'): ns3::Time ns3::TimeValue::Get() const [member function]
4480 cls.add_method('Get',
4481 'ns3::Time',
4482 [],
4483 is_const=True)
4484 ## nstime.h (module 'core'): std::string ns3::TimeValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
4485 cls.add_method('SerializeToString',
4486 'std::string',
4487 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4488 is_const=True, is_virtual=True)
4489 ## nstime.h (module 'core'): void ns3::TimeValue::Set(ns3::Time const & value) [member function]
4490 cls.add_method('Set',
4491 'void',
4492 [param('ns3::Time const &', 'value')])
4493 return
4494
4495def register_Ns3TypeIdChecker_methods(root_module, cls):
4496 ## type-id.h (module 'core'): ns3::TypeIdChecker::TypeIdChecker() [constructor]
4497 cls.add_constructor([])
4498 ## type-id.h (module 'core'): ns3::TypeIdChecker::TypeIdChecker(ns3::TypeIdChecker const & arg0) [copy constructor]
4499 cls.add_constructor([param('ns3::TypeIdChecker const &', 'arg0')])
4500 return
4501
4502def register_Ns3TypeIdValue_methods(root_module, cls):
4503 ## type-id.h (module 'core'): ns3::TypeIdValue::TypeIdValue() [constructor]
4504 cls.add_constructor([])
4505 ## type-id.h (module 'core'): ns3::TypeIdValue::TypeIdValue(ns3::TypeIdValue const & arg0) [copy constructor]
4506 cls.add_constructor([param('ns3::TypeIdValue const &', 'arg0')])
4507 ## type-id.h (module 'core'): ns3::TypeIdValue::TypeIdValue(ns3::TypeId const & value) [constructor]
4508 cls.add_constructor([param('ns3::TypeId const &', 'value')])
4509 ## type-id.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::TypeIdValue::Copy() const [member function]
4510 cls.add_method('Copy',
4511 'ns3::Ptr< ns3::AttributeValue >',
4512 [],
4513 is_const=True, is_virtual=True)
4514 ## type-id.h (module 'core'): bool ns3::TypeIdValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
4515 cls.add_method('DeserializeFromString',
4516 'bool',
4517 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4518 is_virtual=True)
4519 ## type-id.h (module 'core'): ns3::TypeId ns3::TypeIdValue::Get() const [member function]
4520 cls.add_method('Get',
4521 'ns3::TypeId',
4522 [],
4523 is_const=True)
4524 ## type-id.h (module 'core'): std::string ns3::TypeIdValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
4525 cls.add_method('SerializeToString',
4526 'std::string',
4527 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4528 is_const=True, is_virtual=True)
4529 ## type-id.h (module 'core'): void ns3::TypeIdValue::Set(ns3::TypeId const & value) [member function]
4530 cls.add_method('Set',
4531 'void',
4532 [param('ns3::TypeId const &', 'value')])
4533 return
4534
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07004535def register_Ns3UintegerValue_methods(root_module, cls):
4536 ## uinteger.h (module 'core'): ns3::UintegerValue::UintegerValue() [constructor]
4537 cls.add_constructor([])
4538 ## uinteger.h (module 'core'): ns3::UintegerValue::UintegerValue(ns3::UintegerValue const & arg0) [copy constructor]
4539 cls.add_constructor([param('ns3::UintegerValue const &', 'arg0')])
4540 ## uinteger.h (module 'core'): ns3::UintegerValue::UintegerValue(uint64_t const & value) [constructor]
4541 cls.add_constructor([param('uint64_t const &', 'value')])
4542 ## uinteger.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::UintegerValue::Copy() const [member function]
4543 cls.add_method('Copy',
4544 'ns3::Ptr< ns3::AttributeValue >',
4545 [],
4546 is_const=True, is_virtual=True)
4547 ## uinteger.h (module 'core'): bool ns3::UintegerValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
4548 cls.add_method('DeserializeFromString',
4549 'bool',
4550 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4551 is_virtual=True)
4552 ## uinteger.h (module 'core'): uint64_t ns3::UintegerValue::Get() const [member function]
4553 cls.add_method('Get',
4554 'uint64_t',
4555 [],
4556 is_const=True)
4557 ## uinteger.h (module 'core'): std::string ns3::UintegerValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
4558 cls.add_method('SerializeToString',
4559 'std::string',
4560 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4561 is_const=True, is_virtual=True)
4562 ## uinteger.h (module 'core'): void ns3::UintegerValue::Set(uint64_t const & value) [member function]
4563 cls.add_method('Set',
4564 'void',
4565 [param('uint64_t const &', 'value')])
4566 return
4567
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004568def register_Ns3AddressChecker_methods(root_module, cls):
4569 ## address.h (module 'network'): ns3::AddressChecker::AddressChecker() [constructor]
4570 cls.add_constructor([])
4571 ## address.h (module 'network'): ns3::AddressChecker::AddressChecker(ns3::AddressChecker const & arg0) [copy constructor]
4572 cls.add_constructor([param('ns3::AddressChecker const &', 'arg0')])
4573 return
4574
4575def register_Ns3AddressValue_methods(root_module, cls):
4576 ## address.h (module 'network'): ns3::AddressValue::AddressValue() [constructor]
4577 cls.add_constructor([])
4578 ## address.h (module 'network'): ns3::AddressValue::AddressValue(ns3::AddressValue const & arg0) [copy constructor]
4579 cls.add_constructor([param('ns3::AddressValue const &', 'arg0')])
4580 ## address.h (module 'network'): ns3::AddressValue::AddressValue(ns3::Address const & value) [constructor]
4581 cls.add_constructor([param('ns3::Address const &', 'value')])
4582 ## address.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::AddressValue::Copy() const [member function]
4583 cls.add_method('Copy',
4584 'ns3::Ptr< ns3::AttributeValue >',
4585 [],
4586 is_const=True, is_virtual=True)
4587 ## address.h (module 'network'): bool ns3::AddressValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
4588 cls.add_method('DeserializeFromString',
4589 'bool',
4590 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4591 is_virtual=True)
4592 ## address.h (module 'network'): ns3::Address ns3::AddressValue::Get() const [member function]
4593 cls.add_method('Get',
4594 'ns3::Address',
4595 [],
4596 is_const=True)
4597 ## address.h (module 'network'): std::string ns3::AddressValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
4598 cls.add_method('SerializeToString',
4599 'std::string',
4600 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4601 is_const=True, is_virtual=True)
4602 ## address.h (module 'network'): void ns3::AddressValue::Set(ns3::Address const & value) [member function]
4603 cls.add_method('Set',
4604 'void',
4605 [param('ns3::Address const &', 'value')])
4606 return
4607
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004608def register_Ns3NdnApp_methods(root_module, cls):
4609 ## ndn-app.h (module 'ndnSIM'): ns3::ndn::App::App(ns3::ndn::App const & arg0) [copy constructor]
4610 cls.add_constructor([param('ns3::ndn::App const &', 'arg0')])
4611 ## ndn-app.h (module 'ndnSIM'): ns3::ndn::App::App() [constructor]
4612 cls.add_constructor([])
Alexander Afanasyev32c07562013-02-01 12:58:43 -08004613 ## ndn-app.h (module 'ndnSIM'): uint32_t ns3::ndn::App::GetId() const [member function]
4614 cls.add_method('GetId',
4615 'uint32_t',
4616 [],
4617 is_const=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004618 ## ndn-app.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::App::GetTypeId() [member function]
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07004619 cls.add_method('GetTypeId',
4620 'ns3::TypeId',
4621 [],
4622 is_static=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004623 ## ndn-app.h (module 'ndnSIM'): void ns3::ndn::App::OnContentObject(ns3::Ptr<ns3::ndn::ContentObjectHeader const> const & contentObject, ns3::Ptr<ns3::Packet> payload) [member function]
4624 cls.add_method('OnContentObject',
4625 'void',
4626 [param('ns3::Ptr< ns3::ndn::ContentObjectHeader const > const &', 'contentObject'), param('ns3::Ptr< ns3::Packet >', 'payload')],
4627 is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07004628 ## ndn-app.h (module 'ndnSIM'): void ns3::ndn::App::OnInterest(ns3::Ptr<ns3::ndn::InterestHeader const> const & interest, ns3::Ptr<ns3::Packet> packet) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004629 cls.add_method('OnInterest',
4630 'void',
4631 [param('ns3::Ptr< ns3::ndn::InterestHeader const > const &', 'interest'), param('ns3::Ptr< ns3::Packet >', 'packet')],
4632 is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07004633 ## ndn-app.h (module 'ndnSIM'): void ns3::ndn::App::OnNack(ns3::Ptr<ns3::ndn::InterestHeader const> const & interest, ns3::Ptr<ns3::Packet> packet) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004634 cls.add_method('OnNack',
4635 'void',
4636 [param('ns3::Ptr< ns3::ndn::InterestHeader const > const &', 'interest'), param('ns3::Ptr< ns3::Packet >', 'packet')],
4637 is_virtual=True)
4638 ## ndn-app.h (module 'ndnSIM'): void ns3::ndn::App::RegisterProtocolHandler(ns3::Callback<bool, ns3::Ptr<ns3::Packet const> const&, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> handler) [member function]
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07004639 cls.add_method('RegisterProtocolHandler',
4640 'void',
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004641 [param('ns3::Callback< bool, ns3::Ptr< ns3::Packet const >, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'handler')])
4642 ## ndn-app.h (module 'ndnSIM'): void ns3::ndn::App::DoDispose() [member function]
4643 cls.add_method('DoDispose',
4644 'void',
4645 [],
4646 visibility='protected', is_virtual=True)
4647 ## ndn-app.h (module 'ndnSIM'): void ns3::ndn::App::StartApplication() [member function]
4648 cls.add_method('StartApplication',
4649 'void',
4650 [],
4651 visibility='protected', is_virtual=True)
4652 ## ndn-app.h (module 'ndnSIM'): void ns3::ndn::App::StopApplication() [member function]
4653 cls.add_method('StopApplication',
4654 'void',
4655 [],
4656 visibility='protected', is_virtual=True)
4657 return
4658
4659def register_Ns3NdnAppHelper_methods(root_module, cls):
4660 ## ndn-app-helper.h (module 'ndnSIM'): ns3::ndn::AppHelper::AppHelper(ns3::ndn::AppHelper const & arg0) [copy constructor]
4661 cls.add_constructor([param('ns3::ndn::AppHelper const &', 'arg0')])
4662 ## ndn-app-helper.h (module 'ndnSIM'): ns3::ndn::AppHelper::AppHelper(std::string const & prefix) [constructor]
4663 cls.add_constructor([param('std::string const &', 'prefix')])
4664 ## ndn-app-helper.h (module 'ndnSIM'): ns3::ApplicationContainer ns3::ndn::AppHelper::Install(ns3::NodeContainer c) [member function]
4665 cls.add_method('Install',
4666 'ns3::ApplicationContainer',
4667 [param('ns3::NodeContainer', 'c')])
4668 ## ndn-app-helper.h (module 'ndnSIM'): ns3::ApplicationContainer ns3::ndn::AppHelper::Install(ns3::Ptr<ns3::Node> node) [member function]
4669 cls.add_method('Install',
4670 'ns3::ApplicationContainer',
4671 [param('ns3::Ptr< ns3::Node >', 'node')])
4672 ## ndn-app-helper.h (module 'ndnSIM'): ns3::ApplicationContainer ns3::ndn::AppHelper::Install(std::string nodeName) [member function]
4673 cls.add_method('Install',
4674 'ns3::ApplicationContainer',
4675 [param('std::string', 'nodeName')])
4676 ## ndn-app-helper.h (module 'ndnSIM'): void ns3::ndn::AppHelper::SetAttribute(std::string name, ns3::AttributeValue const & value) [member function]
4677 cls.add_method('SetAttribute',
4678 'void',
4679 [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')])
4680 ## ndn-app-helper.h (module 'ndnSIM'): void ns3::ndn::AppHelper::SetPrefix(std::string const & prefix) [member function]
4681 cls.add_method('SetPrefix',
4682 'void',
4683 [param('std::string const &', 'prefix')])
4684 return
4685
4686def register_Ns3NdnContentObjectHeader_methods(root_module, cls):
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08004687 ## ndn-content-object.h (module 'ndnSIM'): ns3::ndn::ContentObjectHeader::ContentObjectHeader(ns3::ndn::ContentObjectHeader const & arg0) [copy constructor]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004688 cls.add_constructor([param('ns3::ndn::ContentObjectHeader const &', 'arg0')])
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08004689 ## ndn-content-object.h (module 'ndnSIM'): ns3::ndn::ContentObjectHeader::ContentObjectHeader() [constructor]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004690 cls.add_constructor([])
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08004691 ## ndn-content-object.h (module 'ndnSIM'): uint32_t ns3::ndn::ContentObjectHeader::Deserialize(ns3::Buffer::Iterator start) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004692 cls.add_method('Deserialize',
4693 'uint32_t',
4694 [param('ns3::Buffer::Iterator', 'start')],
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07004695 is_virtual=True)
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08004696 ## ndn-content-object.h (module 'ndnSIM'): ns3::Time ns3::ndn::ContentObjectHeader::GetFreshness() const [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004697 cls.add_method('GetFreshness',
4698 'ns3::Time',
4699 [],
4700 is_const=True)
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08004701 ## ndn-content-object.h (module 'ndnSIM'): ns3::TypeId ns3::ndn::ContentObjectHeader::GetInstanceTypeId() const [member function]
4702 cls.add_method('GetInstanceTypeId',
4703 'ns3::TypeId',
4704 [],
4705 is_const=True, is_virtual=True)
4706 ## ndn-content-object.h (module 'ndnSIM'): ns3::ndn::NameComponents const & ns3::ndn::ContentObjectHeader::GetName() const [member function]
4707 cls.add_method('GetName',
4708 'ns3::ndn::NameComponents const &',
4709 [],
4710 is_const=True)
4711 ## ndn-content-object.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::NameComponents const> ns3::ndn::ContentObjectHeader::GetNamePtr() const [member function]
4712 cls.add_method('GetNamePtr',
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004713 'ns3::Ptr< ns3::ndn::NameComponents const >',
4714 [],
4715 is_const=True)
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08004716 ## ndn-content-object.h (module 'ndnSIM'): uint32_t ns3::ndn::ContentObjectHeader::GetSerializedSize() const [member function]
4717 cls.add_method('GetSerializedSize',
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004718 'uint32_t',
4719 [],
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08004720 is_const=True, is_virtual=True)
4721 ## ndn-content-object.h (module 'ndnSIM'): ns3::Time ns3::ndn::ContentObjectHeader::GetTimestamp() const [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004722 cls.add_method('GetTimestamp',
4723 'ns3::Time',
4724 [],
4725 is_const=True)
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08004726 ## ndn-content-object.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::ContentObjectHeader::GetTypeId() [member function]
4727 cls.add_method('GetTypeId',
4728 'ns3::TypeId',
4729 [],
4730 is_static=True)
4731 ## ndn-content-object.h (module 'ndnSIM'): void ns3::ndn::ContentObjectHeader::Print(std::ostream & os) const [member function]
4732 cls.add_method('Print',
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004733 'void',
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08004734 [param('std::ostream &', 'os')],
4735 is_const=True, is_virtual=True)
4736 ## ndn-content-object.h (module 'ndnSIM'): void ns3::ndn::ContentObjectHeader::Serialize(ns3::Buffer::Iterator start) const [member function]
4737 cls.add_method('Serialize',
4738 'void',
4739 [param('ns3::Buffer::Iterator', 'start')],
4740 is_const=True, is_virtual=True)
4741 ## ndn-content-object.h (module 'ndnSIM'): void ns3::ndn::ContentObjectHeader::SetFreshness(ns3::Time const & freshness) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004742 cls.add_method('SetFreshness',
4743 'void',
4744 [param('ns3::Time const &', 'freshness')])
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08004745 ## ndn-content-object.h (module 'ndnSIM'): void ns3::ndn::ContentObjectHeader::SetName(ns3::Ptr<ns3::ndn::NameComponents> const & name) [member function]
4746 cls.add_method('SetName',
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004747 'void',
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08004748 [param('ns3::Ptr< ns3::ndn::NameComponents > const &', 'name')])
4749 ## ndn-content-object.h (module 'ndnSIM'): void ns3::ndn::ContentObjectHeader::SetTimestamp(ns3::Time const & timestamp) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004750 cls.add_method('SetTimestamp',
4751 'void',
4752 [param('ns3::Time const &', 'timestamp')])
4753 return
4754
4755def register_Ns3NdnContentObjectHeaderException_methods(root_module, cls):
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08004756 ## ndn-content-object.h (module 'ndnSIM'): ns3::ndn::ContentObjectHeaderException::ContentObjectHeaderException() [constructor]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004757 cls.add_constructor([])
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08004758 ## ndn-content-object.h (module 'ndnSIM'): ns3::ndn::ContentObjectHeaderException::ContentObjectHeaderException(ns3::ndn::ContentObjectHeaderException const & arg0) [copy constructor]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004759 cls.add_constructor([param('ns3::ndn::ContentObjectHeaderException const &', 'arg0')])
4760 return
4761
4762def register_Ns3NdnContentObjectTail_methods(root_module, cls):
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08004763 ## ndn-content-object.h (module 'ndnSIM'): ns3::ndn::ContentObjectTail::ContentObjectTail(ns3::ndn::ContentObjectTail const & arg0) [copy constructor]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004764 cls.add_constructor([param('ns3::ndn::ContentObjectTail const &', 'arg0')])
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08004765 ## ndn-content-object.h (module 'ndnSIM'): ns3::ndn::ContentObjectTail::ContentObjectTail() [constructor]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004766 cls.add_constructor([])
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08004767 ## ndn-content-object.h (module 'ndnSIM'): uint32_t ns3::ndn::ContentObjectTail::Deserialize(ns3::Buffer::Iterator start) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004768 cls.add_method('Deserialize',
4769 'uint32_t',
4770 [param('ns3::Buffer::Iterator', 'start')],
4771 is_virtual=True)
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08004772 ## ndn-content-object.h (module 'ndnSIM'): ns3::TypeId ns3::ndn::ContentObjectTail::GetInstanceTypeId() const [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004773 cls.add_method('GetInstanceTypeId',
4774 'ns3::TypeId',
4775 [],
4776 is_const=True, is_virtual=True)
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08004777 ## ndn-content-object.h (module 'ndnSIM'): uint32_t ns3::ndn::ContentObjectTail::GetSerializedSize() const [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004778 cls.add_method('GetSerializedSize',
4779 'uint32_t',
4780 [],
4781 is_const=True, is_virtual=True)
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08004782 ## ndn-content-object.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::ContentObjectTail::GetTypeId() [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004783 cls.add_method('GetTypeId',
4784 'ns3::TypeId',
4785 [],
4786 is_static=True)
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08004787 ## ndn-content-object.h (module 'ndnSIM'): void ns3::ndn::ContentObjectTail::Print(std::ostream & os) const [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004788 cls.add_method('Print',
4789 'void',
4790 [param('std::ostream &', 'os')],
4791 is_const=True, is_virtual=True)
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08004792 ## ndn-content-object.h (module 'ndnSIM'): void ns3::ndn::ContentObjectTail::Serialize(ns3::Buffer::Iterator start) const [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004793 cls.add_method('Serialize',
4794 'void',
4795 [param('ns3::Buffer::Iterator', 'start')],
4796 is_const=True, is_virtual=True)
4797 return
4798
4799def register_Ns3NdnContentStore_methods(root_module, cls):
4800 cls.add_output_stream_operator()
4801 ## ndn-content-store.h (module 'ndnSIM'): ns3::ndn::ContentStore::ContentStore() [constructor]
4802 cls.add_constructor([])
4803 ## ndn-content-store.h (module 'ndnSIM'): ns3::ndn::ContentStore::ContentStore(ns3::ndn::ContentStore const & arg0) [copy constructor]
4804 cls.add_constructor([param('ns3::ndn::ContentStore const &', 'arg0')])
4805 ## ndn-content-store.h (module 'ndnSIM'): bool ns3::ndn::ContentStore::Add(ns3::Ptr<ns3::ndn::ContentObjectHeader const> header, ns3::Ptr<const ns3::Packet> packet) [member function]
4806 cls.add_method('Add',
4807 'bool',
4808 [param('ns3::Ptr< ns3::ndn::ContentObjectHeader const >', 'header'), param('ns3::Ptr< ns3::Packet const >', 'packet')],
4809 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07004810 ## ndn-content-store.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::cs::Entry> ns3::ndn::ContentStore::Begin() [member function]
4811 cls.add_method('Begin',
4812 'ns3::Ptr< ns3::ndn::cs::Entry >',
4813 [],
4814 is_pure_virtual=True, is_virtual=True)
4815 ## ndn-content-store.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::cs::Entry> ns3::ndn::ContentStore::End() [member function]
4816 cls.add_method('End',
4817 'ns3::Ptr< ns3::ndn::cs::Entry >',
4818 [],
4819 is_pure_virtual=True, is_virtual=True)
4820 ## ndn-content-store.h (module 'ndnSIM'): static ns3::Ptr<ns3::ndn::ContentStore> ns3::ndn::ContentStore::GetContentStore(ns3::Ptr<ns3::Object> node) [member function]
4821 cls.add_method('GetContentStore',
4822 'ns3::Ptr< ns3::ndn::ContentStore >',
4823 [param('ns3::Ptr< ns3::Object >', 'node')],
4824 is_static=True)
4825 ## ndn-content-store.h (module 'ndnSIM'): uint32_t ns3::ndn::ContentStore::GetSize() const [member function]
4826 cls.add_method('GetSize',
4827 'uint32_t',
4828 [],
4829 is_pure_virtual=True, is_const=True, is_virtual=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004830 ## ndn-content-store.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::ContentStore::GetTypeId() [member function]
4831 cls.add_method('GetTypeId',
4832 'ns3::TypeId',
4833 [],
4834 is_static=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07004835 ## ndn-content-store.h (module 'ndnSIM'): boost::tuples::tuple<ns3::Ptr<ns3::Packet>,ns3::Ptr<const ns3::ndn::ContentObjectHeader>,ns3::Ptr<const ns3::Packet>,boost::tuples::null_type,boost::tuples::null_type,boost::tuples::null_type,boost::tuples::null_type,boost::tuples::null_type,boost::tuples::null_type,boost::tuples::null_type> ns3::ndn::ContentStore::Lookup(ns3::Ptr<ns3::ndn::InterestHeader const> interest) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004836 cls.add_method('Lookup',
4837 'boost::tuples::tuple< ns3::Ptr< ns3::Packet >, ns3::Ptr< ns3::ndn::ContentObjectHeader const >, ns3::Ptr< ns3::Packet const >, boost::tuples::null_type, boost::tuples::null_type, boost::tuples::null_type, boost::tuples::null_type, boost::tuples::null_type, boost::tuples::null_type, boost::tuples::null_type >',
4838 [param('ns3::Ptr< ns3::ndn::InterestHeader const >', 'interest')],
4839 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07004840 ## 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]
4841 cls.add_method('Next',
4842 'ns3::Ptr< ns3::ndn::cs::Entry >',
4843 [param('ns3::Ptr< ns3::ndn::cs::Entry >', 'arg0')],
4844 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004845 ## ndn-content-store.h (module 'ndnSIM'): void ns3::ndn::ContentStore::Print(std::ostream & os) const [member function]
4846 cls.add_method('Print',
4847 'void',
4848 [param('std::ostream &', 'os')],
4849 is_pure_virtual=True, is_const=True, is_virtual=True)
4850 return
4851
4852def register_Ns3NdnFace_methods(root_module, cls):
4853 cls.add_output_stream_operator()
4854 cls.add_binary_comparison_operator('!=')
4855 cls.add_binary_comparison_operator('<')
4856 cls.add_binary_comparison_operator('==')
4857 ## ndn-face.h (module 'ndnSIM'): ns3::ndn::Face::Face(ns3::Ptr<ns3::Node> node) [constructor]
4858 cls.add_constructor([param('ns3::Ptr< ns3::Node >', 'node')])
4859 ## ndn-face.h (module 'ndnSIM'): uint32_t ns3::ndn::Face::GetId() const [member function]
4860 cls.add_method('GetId',
4861 'uint32_t',
4862 [],
4863 is_const=True)
4864 ## ndn-face.h (module 'ndnSIM'): uint16_t ns3::ndn::Face::GetMetric() const [member function]
4865 cls.add_method('GetMetric',
4866 'uint16_t',
4867 [],
4868 is_const=True, is_virtual=True)
4869 ## ndn-face.h (module 'ndnSIM'): ns3::Ptr<ns3::Node> ns3::ndn::Face::GetNode() const [member function]
4870 cls.add_method('GetNode',
4871 'ns3::Ptr< ns3::Node >',
4872 [],
4873 is_const=True)
4874 ## ndn-face.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::Face::GetTypeId() [member function]
4875 cls.add_method('GetTypeId',
4876 'ns3::TypeId',
4877 [],
4878 is_static=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004879 ## ndn-face.h (module 'ndnSIM'): bool ns3::ndn::Face::IsUp() const [member function]
4880 cls.add_method('IsUp',
4881 'bool',
4882 [],
4883 is_const=True, is_virtual=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004884 ## ndn-face.h (module 'ndnSIM'): std::ostream & ns3::ndn::Face::Print(std::ostream & os) const [member function]
Alexander Afanasyev3073da82012-06-19 14:57:43 -07004885 cls.add_method('Print',
4886 'std::ostream &',
4887 [param('std::ostream &', 'os')],
4888 is_const=True, is_virtual=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004889 ## ndn-face.h (module 'ndnSIM'): bool ns3::ndn::Face::Receive(ns3::Ptr<const ns3::Packet> const & p) [member function]
4890 cls.add_method('Receive',
4891 'bool',
4892 [param('ns3::Ptr< ns3::Packet const > const &', 'p')])
4893 ## ndn-face.h (module 'ndnSIM'): void ns3::ndn::Face::RegisterProtocolHandler(ns3::Callback<void, ns3::Ptr<ns3::ndn::Face> const&, ns3::Ptr<ns3::Packet const> const&, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> handler) [member function]
4894 cls.add_method('RegisterProtocolHandler',
4895 'void',
4896 [param('ns3::Callback< void, ns3::Ptr< ns3::ndn::Face >, ns3::Ptr< ns3::Packet const >, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'handler')],
4897 is_virtual=True)
4898 ## ndn-face.h (module 'ndnSIM'): bool ns3::ndn::Face::Send(ns3::Ptr<ns3::Packet> p) [member function]
4899 cls.add_method('Send',
4900 'bool',
4901 [param('ns3::Ptr< ns3::Packet >', 'p')])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004902 ## ndn-face.h (module 'ndnSIM'): void ns3::ndn::Face::SetId(uint32_t id) [member function]
4903 cls.add_method('SetId',
4904 'void',
4905 [param('uint32_t', 'id')])
4906 ## ndn-face.h (module 'ndnSIM'): void ns3::ndn::Face::SetMetric(uint16_t metric) [member function]
4907 cls.add_method('SetMetric',
4908 'void',
4909 [param('uint16_t', 'metric')],
4910 is_virtual=True)
4911 ## ndn-face.h (module 'ndnSIM'): void ns3::ndn::Face::SetUp(bool up=true) [member function]
4912 cls.add_method('SetUp',
4913 'void',
4914 [param('bool', 'up', default_value='true')],
4915 is_virtual=True)
4916 ## ndn-face.h (module 'ndnSIM'): bool ns3::ndn::Face::SendImpl(ns3::Ptr<ns3::Packet> p) [member function]
4917 cls.add_method('SendImpl',
4918 'bool',
4919 [param('ns3::Ptr< ns3::Packet >', 'p')],
4920 is_pure_virtual=True, visibility='protected', is_virtual=True)
4921 return
4922
4923def register_Ns3NdnFaceContainer_methods(root_module, cls):
4924 ## ndn-face-container.h (module 'ndnSIM'): ns3::ndn::FaceContainer::FaceContainer() [constructor]
4925 cls.add_constructor([])
4926 ## ndn-face-container.h (module 'ndnSIM'): ns3::ndn::FaceContainer::FaceContainer(ns3::ndn::FaceContainer const & other) [copy constructor]
4927 cls.add_constructor([param('ns3::ndn::FaceContainer const &', 'other')])
4928 ## ndn-face-container.h (module 'ndnSIM'): void ns3::ndn::FaceContainer::Add(ns3::Ptr<ns3::ndn::Face> const & face) [member function]
4929 cls.add_method('Add',
4930 'void',
4931 [param('ns3::Ptr< ns3::ndn::Face > const &', 'face')])
4932 ## ndn-face-container.h (module 'ndnSIM'): void ns3::ndn::FaceContainer::AddAll(ns3::Ptr<ns3::ndn::FaceContainer> other) [member function]
4933 cls.add_method('AddAll',
4934 'void',
4935 [param('ns3::Ptr< ns3::ndn::FaceContainer >', 'other')])
4936 ## ndn-face-container.h (module 'ndnSIM'): void ns3::ndn::FaceContainer::AddAll(ns3::ndn::FaceContainer const & other) [member function]
4937 cls.add_method('AddAll',
4938 'void',
4939 [param('ns3::ndn::FaceContainer const &', 'other')])
4940 ## 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]
4941 cls.add_method('Begin',
4942 '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::ndn::Face > const, std::vector< ns3::Ptr< ns3::ndn::Face > > >',
4943 [],
4944 is_const=True)
4945 ## 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]
4946 cls.add_method('End',
4947 '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::ndn::Face > const, std::vector< ns3::Ptr< ns3::ndn::Face > > >',
4948 [],
4949 is_const=True)
4950 ## 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]
4951 cls.add_method('Get',
4952 'ns3::Ptr< ns3::ndn::Face >',
4953 [param('__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::ndn::Face > const, std::vector< ns3::Ptr< ns3::ndn::Face > > >', 'i')],
4954 is_const=True)
4955 ## ndn-face-container.h (module 'ndnSIM'): uint32_t ns3::ndn::FaceContainer::GetN() const [member function]
4956 cls.add_method('GetN',
4957 'uint32_t',
4958 [],
4959 is_const=True)
4960 return
4961
4962def register_Ns3NdnFib_methods(root_module, cls):
4963 cls.add_output_stream_operator()
4964 ## ndn-fib.h (module 'ndnSIM'): ns3::ndn::Fib::Fib() [constructor]
4965 cls.add_constructor([])
4966 ## ndn-fib.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::fib::Entry> ns3::ndn::Fib::Add(ns3::ndn::NameComponents const & prefix, ns3::Ptr<ns3::ndn::Face> face, int32_t metric) [member function]
4967 cls.add_method('Add',
4968 'ns3::Ptr< ns3::ndn::fib::Entry >',
4969 [param('ns3::ndn::NameComponents const &', 'prefix'), param('ns3::Ptr< ns3::ndn::Face >', 'face'), param('int32_t', 'metric')],
4970 is_pure_virtual=True, is_virtual=True)
4971 ## ndn-fib.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::fib::Entry> ns3::ndn::Fib::Add(ns3::Ptr<ns3::ndn::NameComponents const> const & prefix, ns3::Ptr<ns3::ndn::Face> face, int32_t metric) [member function]
4972 cls.add_method('Add',
4973 'ns3::Ptr< ns3::ndn::fib::Entry >',
4974 [param('ns3::Ptr< ns3::ndn::NameComponents const > const &', 'prefix'), param('ns3::Ptr< ns3::ndn::Face >', 'face'), param('int32_t', 'metric')],
4975 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07004976 ## 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 -07004977 cls.add_method('Begin',
4978 'ns3::Ptr< ns3::ndn::fib::Entry const >',
4979 [],
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07004980 is_pure_virtual=True, is_const=True, is_virtual=True)
4981 ## ndn-fib.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::fib::Entry> ns3::ndn::Fib::Begin() [member function]
4982 cls.add_method('Begin',
4983 'ns3::Ptr< ns3::ndn::fib::Entry >',
4984 [],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004985 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07004986 ## 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 -07004987 cls.add_method('End',
4988 'ns3::Ptr< ns3::ndn::fib::Entry const >',
4989 [],
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07004990 is_pure_virtual=True, is_const=True, is_virtual=True)
4991 ## ndn-fib.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::fib::Entry> ns3::ndn::Fib::End() [member function]
4992 cls.add_method('End',
4993 'ns3::Ptr< ns3::ndn::fib::Entry >',
4994 [],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004995 is_pure_virtual=True, is_virtual=True)
4996 ## ndn-fib.h (module 'ndnSIM'): static ns3::Ptr<ns3::ndn::Fib> ns3::ndn::Fib::GetFib(ns3::Ptr<ns3::Object> node) [member function]
4997 cls.add_method('GetFib',
4998 'ns3::Ptr< ns3::ndn::Fib >',
4999 [param('ns3::Ptr< ns3::Object >', 'node')],
5000 is_static=True)
5001 ## ndn-fib.h (module 'ndnSIM'): uint32_t ns3::ndn::Fib::GetSize() const [member function]
5002 cls.add_method('GetSize',
5003 'uint32_t',
5004 [],
5005 is_pure_virtual=True, is_const=True, is_virtual=True)
5006 ## ndn-fib.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::Fib::GetTypeId() [member function]
5007 cls.add_method('GetTypeId',
5008 'ns3::TypeId',
5009 [],
5010 is_static=True)
5011 ## ndn-fib.h (module 'ndnSIM'): void ns3::ndn::Fib::InvalidateAll() [member function]
5012 cls.add_method('InvalidateAll',
5013 'void',
5014 [],
5015 is_pure_virtual=True, is_virtual=True)
5016 ## ndn-fib.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::fib::Entry> ns3::ndn::Fib::LongestPrefixMatch(ns3::ndn::InterestHeader const & interest) [member function]
5017 cls.add_method('LongestPrefixMatch',
5018 'ns3::Ptr< ns3::ndn::fib::Entry >',
5019 [param('ns3::ndn::InterestHeader const &', 'interest')],
5020 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005021 ## 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 -07005022 cls.add_method('Next',
5023 'ns3::Ptr< ns3::ndn::fib::Entry const >',
5024 [param('ns3::Ptr< ns3::ndn::fib::Entry const >', 'arg0')],
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005025 is_pure_virtual=True, is_const=True, is_virtual=True)
5026 ## ndn-fib.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::fib::Entry> ns3::ndn::Fib::Next(ns3::Ptr<ns3::ndn::fib::Entry> arg0) [member function]
5027 cls.add_method('Next',
5028 'ns3::Ptr< ns3::ndn::fib::Entry >',
5029 [param('ns3::Ptr< ns3::ndn::fib::Entry >', 'arg0')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005030 is_pure_virtual=True, is_virtual=True)
5031 ## ndn-fib.h (module 'ndnSIM'): void ns3::ndn::Fib::Print(std::ostream & os) const [member function]
5032 cls.add_method('Print',
5033 'void',
5034 [param('std::ostream &', 'os')],
5035 is_pure_virtual=True, is_const=True, is_virtual=True)
5036 ## ndn-fib.h (module 'ndnSIM'): void ns3::ndn::Fib::Remove(ns3::Ptr<ns3::ndn::NameComponents const> const & prefix) [member function]
5037 cls.add_method('Remove',
5038 'void',
5039 [param('ns3::Ptr< ns3::ndn::NameComponents const > const &', 'prefix')],
5040 is_pure_virtual=True, is_virtual=True)
5041 ## ndn-fib.h (module 'ndnSIM'): void ns3::ndn::Fib::RemoveFromAll(ns3::Ptr<ns3::ndn::Face> face) [member function]
5042 cls.add_method('RemoveFromAll',
5043 'void',
5044 [param('ns3::Ptr< ns3::ndn::Face >', 'face')],
5045 is_pure_virtual=True, is_virtual=True)
5046 return
5047
5048def register_Ns3NdnForwardingStrategy_methods(root_module, cls):
5049 ## ndn-forwarding-strategy.h (module 'ndnSIM'): ns3::ndn::ForwardingStrategy::ForwardingStrategy(ns3::ndn::ForwardingStrategy const & arg0) [copy constructor]
5050 cls.add_constructor([param('ns3::ndn::ForwardingStrategy const &', 'arg0')])
5051 ## ndn-forwarding-strategy.h (module 'ndnSIM'): ns3::ndn::ForwardingStrategy::ForwardingStrategy() [constructor]
5052 cls.add_constructor([])
Alexander Afanasyevf5c07742012-10-31 13:13:05 -07005053 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::AddFace(ns3::Ptr<ns3::ndn::Face> face) [member function]
5054 cls.add_method('AddFace',
5055 'void',
5056 [param('ns3::Ptr< ns3::ndn::Face >', 'face')],
5057 is_virtual=True)
Alexander Afanasyev32c07562013-02-01 12:58:43 -08005058 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::DidAddFibEntry(ns3::Ptr<ns3::ndn::fib::Entry> fibEntry) [member function]
5059 cls.add_method('DidAddFibEntry',
5060 'void',
5061 [param('ns3::Ptr< ns3::ndn::fib::Entry >', 'fibEntry')],
5062 is_virtual=True)
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08005063 ## ndn-forwarding-strategy.h (module 'ndnSIM'): static std::string ns3::ndn::ForwardingStrategy::GetLogName() [member function]
5064 cls.add_method('GetLogName',
5065 'std::string',
5066 [],
5067 is_static=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005068 ## ndn-forwarding-strategy.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::ForwardingStrategy::GetTypeId() [member function]
5069 cls.add_method('GetTypeId',
5070 'ns3::TypeId',
5071 [],
5072 is_static=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005073 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::OnData(ns3::Ptr<ns3::ndn::Face> face, ns3::Ptr<ns3::ndn::ContentObjectHeader const> header, ns3::Ptr<ns3::Packet> payload, ns3::Ptr<const ns3::Packet> origPacket) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005074 cls.add_method('OnData',
5075 'void',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005076 [param('ns3::Ptr< ns3::ndn::Face >', 'face'), param('ns3::Ptr< ns3::ndn::ContentObjectHeader const >', 'header'), param('ns3::Ptr< ns3::Packet >', 'payload'), param('ns3::Ptr< ns3::Packet const >', 'origPacket')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005077 is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005078 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::OnInterest(ns3::Ptr<ns3::ndn::Face> face, ns3::Ptr<ns3::ndn::InterestHeader const> header, ns3::Ptr<const ns3::Packet> origPacket) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005079 cls.add_method('OnInterest',
5080 'void',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005081 [param('ns3::Ptr< ns3::ndn::Face >', 'face'), param('ns3::Ptr< ns3::ndn::InterestHeader const >', 'header'), param('ns3::Ptr< ns3::Packet const >', 'origPacket')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005082 is_virtual=True)
5083 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::RemoveFace(ns3::Ptr<ns3::ndn::Face> face) [member function]
5084 cls.add_method('RemoveFace',
5085 'void',
5086 [param('ns3::Ptr< ns3::ndn::Face >', 'face')],
5087 is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005088 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::WillEraseTimedOutPendingInterest(ns3::Ptr<ns3::ndn::pit::Entry> pitEntry) [member function]
5089 cls.add_method('WillEraseTimedOutPendingInterest',
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005090 'void',
5091 [param('ns3::Ptr< ns3::ndn::pit::Entry >', 'pitEntry')],
5092 is_virtual=True)
Alexander Afanasyev32c07562013-02-01 12:58:43 -08005093 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::WillRemoveFibEntry(ns3::Ptr<ns3::ndn::fib::Entry> fibEntry) [member function]
5094 cls.add_method('WillRemoveFibEntry',
5095 'void',
5096 [param('ns3::Ptr< ns3::ndn::fib::Entry >', 'fibEntry')],
5097 is_virtual=True)
Alexander Afanasyeva8f5d882012-11-09 14:22:48 -08005098 ## ndn-forwarding-strategy.h (module 'ndnSIM'): bool ns3::ndn::ForwardingStrategy::CanSendOutInterest(ns3::Ptr<ns3::ndn::Face> inFace, ns3::Ptr<ns3::ndn::Face> outFace, ns3::Ptr<ns3::ndn::InterestHeader const> header, ns3::Ptr<const ns3::Packet> origPacket, ns3::Ptr<ns3::ndn::pit::Entry> pitEntry) [member function]
5099 cls.add_method('CanSendOutInterest',
5100 'bool',
5101 [param('ns3::Ptr< ns3::ndn::Face >', 'inFace'), param('ns3::Ptr< ns3::ndn::Face >', 'outFace'), param('ns3::Ptr< ns3::ndn::InterestHeader const >', 'header'), param('ns3::Ptr< ns3::Packet const >', 'origPacket'), param('ns3::Ptr< ns3::ndn::pit::Entry >', 'pitEntry')],
5102 visibility='protected', is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005103 ## ndn-forwarding-strategy.h (module 'ndnSIM'): bool ns3::ndn::ForwardingStrategy::DetectRetransmittedInterest(ns3::Ptr<ns3::ndn::Face> inFace, ns3::Ptr<ns3::ndn::InterestHeader const> header, ns3::Ptr<const ns3::Packet> origPacket, ns3::Ptr<ns3::ndn::pit::Entry> pitEntry) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005104 cls.add_method('DetectRetransmittedInterest',
5105 'bool',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005106 [param('ns3::Ptr< ns3::ndn::Face >', 'inFace'), param('ns3::Ptr< ns3::ndn::InterestHeader const >', 'header'), param('ns3::Ptr< ns3::Packet const >', 'origPacket'), param('ns3::Ptr< ns3::ndn::pit::Entry >', 'pitEntry')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005107 visibility='protected', is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005108 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::DidCreatePitEntry(ns3::Ptr<ns3::ndn::Face> inFace, ns3::Ptr<ns3::ndn::InterestHeader const> header, ns3::Ptr<const ns3::Packet> origPacket, ns3::Ptr<ns3::ndn::pit::Entry> pitEntry) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005109 cls.add_method('DidCreatePitEntry',
5110 'void',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005111 [param('ns3::Ptr< ns3::ndn::Face >', 'inFace'), param('ns3::Ptr< ns3::ndn::InterestHeader const >', 'header'), param('ns3::Ptr< ns3::Packet const >', 'origPacket'), param('ns3::Ptr< ns3::ndn::pit::Entry >', 'pitEntry')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005112 visibility='protected', is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005113 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::DidExhaustForwardingOptions(ns3::Ptr<ns3::ndn::Face> inFace, ns3::Ptr<ns3::ndn::InterestHeader const> header, ns3::Ptr<const ns3::Packet> origPacket, ns3::Ptr<ns3::ndn::pit::Entry> pitEntry) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005114 cls.add_method('DidExhaustForwardingOptions',
5115 'void',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005116 [param('ns3::Ptr< ns3::ndn::Face >', 'inFace'), param('ns3::Ptr< ns3::ndn::InterestHeader const >', 'header'), param('ns3::Ptr< ns3::Packet const >', 'origPacket'), param('ns3::Ptr< ns3::ndn::pit::Entry >', 'pitEntry')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005117 visibility='protected', is_virtual=True)
Alexander Afanasyeva28ec562012-10-25 14:07:32 -07005118 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::DidForwardSimilarInterest(ns3::Ptr<ns3::ndn::Face> inFace, ns3::Ptr<ns3::ndn::InterestHeader const> header, ns3::Ptr<const ns3::Packet> origPacket, ns3::Ptr<ns3::ndn::pit::Entry> pitEntry) [member function]
5119 cls.add_method('DidForwardSimilarInterest',
5120 'void',
5121 [param('ns3::Ptr< ns3::ndn::Face >', 'inFace'), param('ns3::Ptr< ns3::ndn::InterestHeader const >', 'header'), param('ns3::Ptr< ns3::Packet const >', 'origPacket'), param('ns3::Ptr< ns3::ndn::pit::Entry >', 'pitEntry')],
5122 visibility='protected', is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005123 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::DidReceiveDuplicateInterest(ns3::Ptr<ns3::ndn::Face> inFace, ns3::Ptr<ns3::ndn::InterestHeader const> header, ns3::Ptr<const ns3::Packet> origPacket, ns3::Ptr<ns3::ndn::pit::Entry> pitEntry) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005124 cls.add_method('DidReceiveDuplicateInterest',
5125 'void',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005126 [param('ns3::Ptr< ns3::ndn::Face >', 'inFace'), param('ns3::Ptr< ns3::ndn::InterestHeader const >', 'header'), param('ns3::Ptr< ns3::Packet const >', 'origPacket'), param('ns3::Ptr< ns3::ndn::pit::Entry >', 'pitEntry')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005127 visibility='protected', is_virtual=True)
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08005128 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::DidReceiveSolicitedData(ns3::Ptr<ns3::ndn::Face> inFace, ns3::Ptr<ns3::ndn::ContentObjectHeader const> header, ns3::Ptr<const ns3::Packet> payload, ns3::Ptr<const ns3::Packet> origPacket, bool didCreateCacheEntry) [member function]
5129 cls.add_method('DidReceiveSolicitedData',
5130 'void',
5131 [param('ns3::Ptr< ns3::ndn::Face >', 'inFace'), param('ns3::Ptr< ns3::ndn::ContentObjectHeader const >', 'header'), param('ns3::Ptr< ns3::Packet const >', 'payload'), param('ns3::Ptr< ns3::Packet const >', 'origPacket'), param('bool', 'didCreateCacheEntry')],
5132 visibility='protected', is_virtual=True)
5133 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::DidReceiveUnsolicitedData(ns3::Ptr<ns3::ndn::Face> inFace, ns3::Ptr<ns3::ndn::ContentObjectHeader const> header, ns3::Ptr<const ns3::Packet> payload, ns3::Ptr<const ns3::Packet> origPacket, bool didCreateCacheEntry) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005134 cls.add_method('DidReceiveUnsolicitedData',
5135 'void',
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08005136 [param('ns3::Ptr< ns3::ndn::Face >', 'inFace'), param('ns3::Ptr< ns3::ndn::ContentObjectHeader const >', 'header'), param('ns3::Ptr< ns3::Packet const >', 'payload'), param('ns3::Ptr< ns3::Packet const >', 'origPacket'), param('bool', 'didCreateCacheEntry')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005137 visibility='protected', is_virtual=True)
Alexander Afanasyev67f4a4a2012-11-24 17:18:17 -08005138 ## 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::ContentObjectHeader const> header, ns3::Ptr<const ns3::Packet> payload, ns3::Ptr<const ns3::Packet> origPacket, ns3::Ptr<ns3::ndn::pit::Entry> pitEntry) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005139 cls.add_method('DidSendOutData',
5140 'void',
Alexander Afanasyev67f4a4a2012-11-24 17:18:17 -08005141 [param('ns3::Ptr< ns3::ndn::Face >', 'inFace'), param('ns3::Ptr< ns3::ndn::Face >', 'outFace'), param('ns3::Ptr< ns3::ndn::ContentObjectHeader const >', 'header'), param('ns3::Ptr< ns3::Packet const >', 'payload'), param('ns3::Ptr< ns3::Packet const >', 'origPacket'), param('ns3::Ptr< ns3::ndn::pit::Entry >', 'pitEntry')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005142 visibility='protected', is_virtual=True)
Alexander Afanasyev67f4a4a2012-11-24 17:18:17 -08005143 ## 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::InterestHeader const> header, ns3::Ptr<const ns3::Packet> origPacket, ns3::Ptr<ns3::ndn::pit::Entry> pitEntry) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005144 cls.add_method('DidSendOutInterest',
5145 'void',
Alexander Afanasyev67f4a4a2012-11-24 17:18:17 -08005146 [param('ns3::Ptr< ns3::ndn::Face >', 'inFace'), param('ns3::Ptr< ns3::ndn::Face >', 'outFace'), param('ns3::Ptr< ns3::ndn::InterestHeader const >', 'header'), param('ns3::Ptr< ns3::Packet const >', 'origPacket'), param('ns3::Ptr< ns3::ndn::pit::Entry >', 'pitEntry')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005147 visibility='protected', is_virtual=True)
Alexander Afanasyeva28ec562012-10-25 14:07:32 -07005148 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::DidSuppressSimilarInterest(ns3::Ptr<ns3::ndn::Face> inFace, ns3::Ptr<ns3::ndn::InterestHeader const> header, ns3::Ptr<const ns3::Packet> origPacket, ns3::Ptr<ns3::ndn::pit::Entry> pitEntry) [member function]
5149 cls.add_method('DidSuppressSimilarInterest',
5150 'void',
5151 [param('ns3::Ptr< ns3::ndn::Face >', 'inFace'), param('ns3::Ptr< ns3::ndn::InterestHeader const >', 'header'), param('ns3::Ptr< ns3::Packet const >', 'origPacket'), param('ns3::Ptr< ns3::ndn::pit::Entry >', 'pitEntry')],
5152 visibility='protected', is_virtual=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005153 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::DoDispose() [member function]
5154 cls.add_method('DoDispose',
5155 'void',
5156 [],
5157 visibility='protected', is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005158 ## ndn-forwarding-strategy.h (module 'ndnSIM'): bool ns3::ndn::ForwardingStrategy::DoPropagateInterest(ns3::Ptr<ns3::ndn::Face> inFace, ns3::Ptr<ns3::ndn::InterestHeader const> header, ns3::Ptr<const ns3::Packet> origPacket, ns3::Ptr<ns3::ndn::pit::Entry> pitEntry) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005159 cls.add_method('DoPropagateInterest',
5160 'bool',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005161 [param('ns3::Ptr< ns3::ndn::Face >', 'inFace'), param('ns3::Ptr< ns3::ndn::InterestHeader const >', 'header'), param('ns3::Ptr< ns3::Packet const >', 'origPacket'), param('ns3::Ptr< ns3::ndn::pit::Entry >', 'pitEntry')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005162 is_pure_virtual=True, visibility='protected', is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005163 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::FailedToCreatePitEntry(ns3::Ptr<ns3::ndn::Face> inFace, ns3::Ptr<ns3::ndn::InterestHeader const> header, ns3::Ptr<const ns3::Packet> origPacket) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005164 cls.add_method('FailedToCreatePitEntry',
5165 'void',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005166 [param('ns3::Ptr< ns3::ndn::Face >', 'inFace'), param('ns3::Ptr< ns3::ndn::InterestHeader const >', 'header'), param('ns3::Ptr< ns3::Packet const >', 'origPacket')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005167 visibility='protected', is_virtual=True)
5168 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::NotifyNewAggregate() [member function]
5169 cls.add_method('NotifyNewAggregate',
5170 'void',
5171 [],
5172 visibility='protected', is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005173 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::PropagateInterest(ns3::Ptr<ns3::ndn::Face> inFace, ns3::Ptr<ns3::ndn::InterestHeader const> header, ns3::Ptr<const ns3::Packet> origPacket, ns3::Ptr<ns3::ndn::pit::Entry> pitEntry) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005174 cls.add_method('PropagateInterest',
5175 'void',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005176 [param('ns3::Ptr< ns3::ndn::Face >', 'inFace'), param('ns3::Ptr< ns3::ndn::InterestHeader const >', 'header'), param('ns3::Ptr< ns3::Packet const >', 'origPacket'), param('ns3::Ptr< ns3::ndn::pit::Entry >', 'pitEntry')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005177 visibility='protected', is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005178 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::SatisfyPendingInterest(ns3::Ptr<ns3::ndn::Face> inFace, ns3::Ptr<ns3::ndn::ContentObjectHeader const> header, ns3::Ptr<const ns3::Packet> payload, ns3::Ptr<const ns3::Packet> origPacket, ns3::Ptr<ns3::ndn::pit::Entry> pitEntry) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005179 cls.add_method('SatisfyPendingInterest',
5180 'void',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005181 [param('ns3::Ptr< ns3::ndn::Face >', 'inFace'), param('ns3::Ptr< ns3::ndn::ContentObjectHeader const >', 'header'), param('ns3::Ptr< ns3::Packet const >', 'payload'), param('ns3::Ptr< ns3::Packet const >', 'origPacket'), param('ns3::Ptr< ns3::ndn::pit::Entry >', 'pitEntry')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005182 visibility='protected', is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005183 ## ndn-forwarding-strategy.h (module 'ndnSIM'): bool ns3::ndn::ForwardingStrategy::ShouldSuppressIncomingInterest(ns3::Ptr<ns3::ndn::Face> inFace, ns3::Ptr<ns3::ndn::InterestHeader const> header, ns3::Ptr<const ns3::Packet> origPacket, ns3::Ptr<ns3::ndn::pit::Entry> pitEntry) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005184 cls.add_method('ShouldSuppressIncomingInterest',
5185 'bool',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005186 [param('ns3::Ptr< ns3::ndn::Face >', 'inFace'), param('ns3::Ptr< ns3::ndn::InterestHeader const >', 'header'), param('ns3::Ptr< ns3::Packet const >', 'origPacket'), param('ns3::Ptr< ns3::ndn::pit::Entry >', 'pitEntry')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005187 visibility='protected', is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005188 ## ndn-forwarding-strategy.h (module 'ndnSIM'): bool ns3::ndn::ForwardingStrategy::TrySendOutInterest(ns3::Ptr<ns3::ndn::Face> inFace, ns3::Ptr<ns3::ndn::Face> outFace, ns3::Ptr<ns3::ndn::InterestHeader const> header, ns3::Ptr<const ns3::Packet> origPacket, ns3::Ptr<ns3::ndn::pit::Entry> pitEntry) [member function]
5189 cls.add_method('TrySendOutInterest',
5190 'bool',
5191 [param('ns3::Ptr< ns3::ndn::Face >', 'inFace'), param('ns3::Ptr< ns3::ndn::Face >', 'outFace'), param('ns3::Ptr< ns3::ndn::InterestHeader const >', 'header'), param('ns3::Ptr< ns3::Packet const >', 'origPacket'), param('ns3::Ptr< ns3::ndn::pit::Entry >', 'pitEntry')],
5192 visibility='protected', is_virtual=True)
5193 ## 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 -07005194 cls.add_method('WillSatisfyPendingInterest',
5195 'void',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005196 [param('ns3::Ptr< ns3::ndn::Face >', 'inFace'), param('ns3::Ptr< ns3::ndn::pit::Entry >', 'pitEntry')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005197 visibility='protected', is_virtual=True)
5198 return
5199
5200def register_Ns3NdnGlobalRoutingHelper_methods(root_module, cls):
5201 ## ndn-global-routing-helper.h (module 'ndnSIM'): ns3::ndn::GlobalRoutingHelper::GlobalRoutingHelper() [constructor]
5202 cls.add_constructor([])
5203 ## ndn-global-routing-helper.h (module 'ndnSIM'): ns3::ndn::GlobalRoutingHelper::GlobalRoutingHelper(ns3::ndn::GlobalRoutingHelper const & arg0) [copy constructor]
5204 cls.add_constructor([param('ns3::ndn::GlobalRoutingHelper const &', 'arg0')])
5205 ## ndn-global-routing-helper.h (module 'ndnSIM'): void ns3::ndn::GlobalRoutingHelper::AddOrigin(std::string const & prefix, ns3::Ptr<ns3::Node> node) [member function]
5206 cls.add_method('AddOrigin',
5207 'void',
5208 [param('std::string const &', 'prefix'), param('ns3::Ptr< ns3::Node >', 'node')])
5209 ## ndn-global-routing-helper.h (module 'ndnSIM'): void ns3::ndn::GlobalRoutingHelper::AddOrigin(std::string const & prefix, std::string const & nodeName) [member function]
5210 cls.add_method('AddOrigin',
5211 'void',
5212 [param('std::string const &', 'prefix'), param('std::string const &', 'nodeName')])
5213 ## ndn-global-routing-helper.h (module 'ndnSIM'): void ns3::ndn::GlobalRoutingHelper::AddOrigins(std::string const & prefix, ns3::NodeContainer const & nodes) [member function]
5214 cls.add_method('AddOrigins',
5215 'void',
5216 [param('std::string const &', 'prefix'), param('ns3::NodeContainer const &', 'nodes')])
Alexander Afanasyev32c07562013-02-01 12:58:43 -08005217 ## ndn-global-routing-helper.h (module 'ndnSIM'): void ns3::ndn::GlobalRoutingHelper::AddOriginsForAll() [member function]
5218 cls.add_method('AddOriginsForAll',
5219 'void',
5220 [])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005221 ## ndn-global-routing-helper.h (module 'ndnSIM'): void ns3::ndn::GlobalRoutingHelper::CalculateRoutes() [member function]
5222 cls.add_method('CalculateRoutes',
5223 'void',
5224 [])
5225 ## ndn-global-routing-helper.h (module 'ndnSIM'): void ns3::ndn::GlobalRoutingHelper::Install(ns3::Ptr<ns3::Node> node) [member function]
5226 cls.add_method('Install',
5227 'void',
5228 [param('ns3::Ptr< ns3::Node >', 'node')])
5229 ## ndn-global-routing-helper.h (module 'ndnSIM'): void ns3::ndn::GlobalRoutingHelper::Install(ns3::NodeContainer const & nodes) [member function]
5230 cls.add_method('Install',
5231 'void',
5232 [param('ns3::NodeContainer const &', 'nodes')])
5233 ## ndn-global-routing-helper.h (module 'ndnSIM'): void ns3::ndn::GlobalRoutingHelper::InstallAll() [member function]
5234 cls.add_method('InstallAll',
5235 'void',
5236 [])
5237 return
5238
5239def register_Ns3NdnHeaderHelper_methods(root_module, cls):
5240 ## ndn-header-helper.h (module 'ndnSIM'): ns3::ndn::HeaderHelper::HeaderHelper() [constructor]
5241 cls.add_constructor([])
5242 ## ndn-header-helper.h (module 'ndnSIM'): ns3::ndn::HeaderHelper::HeaderHelper(ns3::ndn::HeaderHelper const & arg0) [copy constructor]
5243 cls.add_constructor([param('ns3::ndn::HeaderHelper const &', 'arg0')])
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08005244 ## ndn-header-helper.h (module 'ndnSIM'): static ns3::Ptr<const ns3::ndn::Name> ns3::ndn::HeaderHelper::GetName(ns3::Ptr<const ns3::Packet> packet) [member function]
Alexander Afanasyev32c07562013-02-01 12:58:43 -08005245 cls.add_method('GetName',
5246 'ns3::Ptr< ns3::ndn::Name const >',
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08005247 [param('ns3::Ptr< ns3::Packet const >', 'packet')],
5248 is_static=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005249 ## ndn-header-helper.h (module 'ndnSIM'): static ns3::ndn::HeaderHelper::Type ns3::ndn::HeaderHelper::GetNdnHeaderType(ns3::Ptr<const ns3::Packet> packet) [member function]
5250 cls.add_method('GetNdnHeaderType',
5251 'ns3::ndn::HeaderHelper::Type',
5252 [param('ns3::Ptr< ns3::Packet const >', 'packet')],
5253 is_static=True)
5254 return
5255
5256def register_Ns3NdnInterestHeader_methods(root_module, cls):
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08005257 ## ndn-interest.h (module 'ndnSIM'): ns3::ndn::InterestHeader::InterestHeader() [constructor]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005258 cls.add_constructor([])
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08005259 ## ndn-interest.h (module 'ndnSIM'): ns3::ndn::InterestHeader::InterestHeader(ns3::ndn::InterestHeader const & interest) [copy constructor]
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005260 cls.add_constructor([param('ns3::ndn::InterestHeader const &', 'interest')])
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08005261 ## ndn-interest.h (module 'ndnSIM'): uint32_t ns3::ndn::InterestHeader::Deserialize(ns3::Buffer::Iterator start) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005262 cls.add_method('Deserialize',
5263 'uint32_t',
5264 [param('ns3::Buffer::Iterator', 'start')],
5265 is_virtual=True)
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08005266 ## ndn-interest.h (module 'ndnSIM'): ns3::TypeId ns3::ndn::InterestHeader::GetInstanceTypeId() const [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005267 cls.add_method('GetInstanceTypeId',
5268 'ns3::TypeId',
5269 [],
5270 is_const=True, is_virtual=True)
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08005271 ## ndn-interest.h (module 'ndnSIM'): static ns3::Ptr<ns3::ndn::InterestHeader> ns3::ndn::InterestHeader::GetInterest(ns3::Ptr<ns3::Packet> packet) [member function]
Alexander Afanasyev663d63f2012-09-09 11:55:36 -07005272 cls.add_method('GetInterest',
5273 'ns3::Ptr< ns3::ndn::InterestHeader >',
5274 [param('ns3::Ptr< ns3::Packet >', 'packet')],
5275 is_static=True)
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08005276 ## ndn-interest.h (module 'ndnSIM'): ns3::Time ns3::ndn::InterestHeader::GetInterestLifetime() const [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005277 cls.add_method('GetInterestLifetime',
5278 'ns3::Time',
5279 [],
5280 is_const=True)
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08005281 ## ndn-interest.h (module 'ndnSIM'): uint8_t ns3::ndn::InterestHeader::GetNack() const [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005282 cls.add_method('GetNack',
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08005283 'uint8_t',
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005284 [],
5285 is_const=True)
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08005286 ## ndn-interest.h (module 'ndnSIM'): ns3::ndn::NameComponents const & ns3::ndn::InterestHeader::GetName() const [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005287 cls.add_method('GetName',
5288 'ns3::ndn::NameComponents const &',
5289 [],
5290 is_const=True)
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08005291 ## ndn-interest.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::NameComponents const> ns3::ndn::InterestHeader::GetNamePtr() const [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005292 cls.add_method('GetNamePtr',
5293 'ns3::Ptr< ns3::ndn::NameComponents const >',
5294 [],
5295 is_const=True)
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08005296 ## ndn-interest.h (module 'ndnSIM'): uint32_t ns3::ndn::InterestHeader::GetNonce() const [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005297 cls.add_method('GetNonce',
5298 'uint32_t',
5299 [],
5300 is_const=True)
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08005301 ## ndn-interest.h (module 'ndnSIM'): int8_t ns3::ndn::InterestHeader::GetScope() const [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005302 cls.add_method('GetScope',
5303 'int8_t',
5304 [],
5305 is_const=True)
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08005306 ## ndn-interest.h (module 'ndnSIM'): uint32_t ns3::ndn::InterestHeader::GetSerializedSize() const [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005307 cls.add_method('GetSerializedSize',
5308 'uint32_t',
5309 [],
5310 is_const=True, is_virtual=True)
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08005311 ## ndn-interest.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::InterestHeader::GetTypeId() [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005312 cls.add_method('GetTypeId',
5313 'ns3::TypeId',
5314 [],
5315 is_static=True)
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08005316 ## ndn-interest.h (module 'ndnSIM'): void ns3::ndn::InterestHeader::Print(std::ostream & os) const [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005317 cls.add_method('Print',
5318 'void',
5319 [param('std::ostream &', 'os')],
5320 is_const=True, is_virtual=True)
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08005321 ## ndn-interest.h (module 'ndnSIM'): void ns3::ndn::InterestHeader::Serialize(ns3::Buffer::Iterator start) const [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005322 cls.add_method('Serialize',
5323 'void',
5324 [param('ns3::Buffer::Iterator', 'start')],
5325 is_const=True, is_virtual=True)
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08005326 ## ndn-interest.h (module 'ndnSIM'): void ns3::ndn::InterestHeader::SetInterestLifetime(ns3::Time time) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005327 cls.add_method('SetInterestLifetime',
5328 'void',
5329 [param('ns3::Time', 'time')])
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08005330 ## ndn-interest.h (module 'ndnSIM'): void ns3::ndn::InterestHeader::SetNack(uint8_t nackType) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005331 cls.add_method('SetNack',
5332 'void',
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08005333 [param('uint8_t', 'nackType')])
5334 ## ndn-interest.h (module 'ndnSIM'): void ns3::ndn::InterestHeader::SetName(ns3::Ptr<ns3::ndn::NameComponents> name) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005335 cls.add_method('SetName',
5336 'void',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005337 [param('ns3::Ptr< ns3::ndn::NameComponents >', 'name')])
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08005338 ## ndn-interest.h (module 'ndnSIM'): void ns3::ndn::InterestHeader::SetNonce(uint32_t nonce) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005339 cls.add_method('SetNonce',
5340 'void',
5341 [param('uint32_t', 'nonce')])
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08005342 ## ndn-interest.h (module 'ndnSIM'): void ns3::ndn::InterestHeader::SetScope(int8_t scope) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005343 cls.add_method('SetScope',
5344 'void',
5345 [param('int8_t', 'scope')])
5346 return
5347
5348def register_Ns3NdnInterestHeaderException_methods(root_module, cls):
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08005349 ## ndn-interest.h (module 'ndnSIM'): ns3::ndn::InterestHeaderException::InterestHeaderException() [constructor]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005350 cls.add_constructor([])
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08005351 ## ndn-interest.h (module 'ndnSIM'): ns3::ndn::InterestHeaderException::InterestHeaderException(ns3::ndn::InterestHeaderException const & arg0) [copy constructor]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005352 cls.add_constructor([param('ns3::ndn::InterestHeaderException const &', 'arg0')])
5353 return
5354
5355def register_Ns3NdnL3Protocol_methods(root_module, cls):
5356 ## ndn-l3-protocol.h (module 'ndnSIM'): ns3::ndn::L3Protocol::ETHERNET_FRAME_TYPE [variable]
5357 cls.add_static_attribute('ETHERNET_FRAME_TYPE', 'uint16_t const', is_const=True)
5358 ## ndn-l3-protocol.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::L3Protocol::GetTypeId() [member function]
5359 cls.add_method('GetTypeId',
5360 'ns3::TypeId',
5361 [],
5362 is_static=True)
5363 ## ndn-l3-protocol.h (module 'ndnSIM'): ns3::ndn::L3Protocol::L3Protocol() [constructor]
5364 cls.add_constructor([])
5365 ## ndn-l3-protocol.h (module 'ndnSIM'): uint32_t ns3::ndn::L3Protocol::AddFace(ns3::Ptr<ns3::ndn::Face> const & face) [member function]
5366 cls.add_method('AddFace',
5367 'uint32_t',
5368 [param('ns3::Ptr< ns3::ndn::Face > const &', 'face')],
5369 is_virtual=True)
5370 ## ndn-l3-protocol.h (module 'ndnSIM'): uint32_t ns3::ndn::L3Protocol::GetNFaces() const [member function]
5371 cls.add_method('GetNFaces',
5372 'uint32_t',
5373 [],
5374 is_const=True, is_virtual=True)
5375 ## ndn-l3-protocol.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::Face> ns3::ndn::L3Protocol::GetFace(uint32_t face) const [member function]
5376 cls.add_method('GetFace',
5377 'ns3::Ptr< ns3::ndn::Face >',
5378 [param('uint32_t', 'face')],
5379 is_const=True, is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005380 ## ndn-l3-protocol.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::Face> ns3::ndn::L3Protocol::GetFaceById(uint32_t face) const [member function]
5381 cls.add_method('GetFaceById',
5382 'ns3::Ptr< ns3::ndn::Face >',
5383 [param('uint32_t', 'face')],
5384 is_const=True, is_virtual=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005385 ## ndn-l3-protocol.h (module 'ndnSIM'): void ns3::ndn::L3Protocol::RemoveFace(ns3::Ptr<ns3::ndn::Face> face) [member function]
5386 cls.add_method('RemoveFace',
5387 'void',
5388 [param('ns3::Ptr< ns3::ndn::Face >', 'face')],
5389 is_virtual=True)
5390 ## ndn-l3-protocol.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::Face> ns3::ndn::L3Protocol::GetFaceByNetDevice(ns3::Ptr<ns3::NetDevice> netDevice) const [member function]
5391 cls.add_method('GetFaceByNetDevice',
5392 'ns3::Ptr< ns3::ndn::Face >',
5393 [param('ns3::Ptr< ns3::NetDevice >', 'netDevice')],
5394 is_const=True, is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005395 ## ndn-l3-protocol.h (module 'ndnSIM'): static uint64_t ns3::ndn::L3Protocol::GetInterestCounter() [member function]
5396 cls.add_method('GetInterestCounter',
5397 'uint64_t',
5398 [],
5399 is_static=True)
5400 ## ndn-l3-protocol.h (module 'ndnSIM'): static uint64_t ns3::ndn::L3Protocol::GetDataCounter() [member function]
5401 cls.add_method('GetDataCounter',
5402 'uint64_t',
5403 [],
5404 is_static=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005405 ## ndn-l3-protocol.h (module 'ndnSIM'): void ns3::ndn::L3Protocol::DoDispose() [member function]
5406 cls.add_method('DoDispose',
5407 'void',
5408 [],
5409 visibility='protected', is_virtual=True)
5410 ## ndn-l3-protocol.h (module 'ndnSIM'): void ns3::ndn::L3Protocol::NotifyNewAggregate() [member function]
5411 cls.add_method('NotifyNewAggregate',
5412 'void',
5413 [],
5414 visibility='protected', is_virtual=True)
5415 return
5416
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005417def register_Ns3NdnLimits_methods(root_module, cls):
5418 ## ndn-limits.h (module 'ndnSIM'): ns3::ndn::Limits::Limits(ns3::ndn::Limits const & arg0) [copy constructor]
5419 cls.add_constructor([param('ns3::ndn::Limits const &', 'arg0')])
5420 ## ndn-limits.h (module 'ndnSIM'): ns3::ndn::Limits::Limits() [constructor]
5421 cls.add_constructor([])
Alexander Afanasyev7e4235a2012-10-31 16:58:44 -07005422 ## ndn-limits.h (module 'ndnSIM'): void ns3::ndn::Limits::BorrowLimit() [member function]
5423 cls.add_method('BorrowLimit',
5424 'void',
5425 [],
5426 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyevf5c07742012-10-31 13:13:05 -07005427 ## ndn-limits.h (module 'ndnSIM'): double ns3::ndn::Limits::GetCurrentLimit() const [member function]
5428 cls.add_method('GetCurrentLimit',
5429 'double',
5430 [],
Alexander Afanasyev7e4235a2012-10-31 16:58:44 -07005431 is_pure_virtual=True, is_const=True, is_virtual=True)
Alexander Afanasyeva8f5d882012-11-09 14:22:48 -08005432 ## ndn-limits.h (module 'ndnSIM'): double ns3::ndn::Limits::GetCurrentLimitRate() const [member function]
5433 cls.add_method('GetCurrentLimitRate',
5434 'double',
5435 [],
5436 is_pure_virtual=True, is_const=True, is_virtual=True)
5437 ## ndn-limits.h (module 'ndnSIM'): double ns3::ndn::Limits::GetLinkDelay() const [member function]
5438 cls.add_method('GetLinkDelay',
5439 'double',
5440 [],
5441 is_const=True, is_virtual=True)
Alexander Afanasyev7e4235a2012-10-31 16:58:44 -07005442 ## ndn-limits.h (module 'ndnSIM'): double ns3::ndn::Limits::GetMaxDelay() const [member function]
5443 cls.add_method('GetMaxDelay',
5444 'double',
5445 [],
5446 is_const=True, is_virtual=True)
Alexander Afanasyeva8f5d882012-11-09 14:22:48 -08005447 ## ndn-limits.h (module 'ndnSIM'): double ns3::ndn::Limits::GetMaxLimit() const [member function]
5448 cls.add_method('GetMaxLimit',
5449 'double',
5450 [],
5451 is_pure_virtual=True, is_const=True, is_virtual=True)
Alexander Afanasyev7e4235a2012-10-31 16:58:44 -07005452 ## ndn-limits.h (module 'ndnSIM'): double ns3::ndn::Limits::GetMaxRate() const [member function]
5453 cls.add_method('GetMaxRate',
Alexander Afanasyeva28ec562012-10-25 14:07:32 -07005454 'double',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005455 [],
Alexander Afanasyevf5c07742012-10-31 13:13:05 -07005456 is_const=True, is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005457 ## ndn-limits.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::Limits::GetTypeId() [member function]
5458 cls.add_method('GetTypeId',
5459 'ns3::TypeId',
5460 [],
5461 is_static=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005462 ## ndn-limits.h (module 'ndnSIM'): bool ns3::ndn::Limits::IsBelowLimit() [member function]
5463 cls.add_method('IsBelowLimit',
5464 'bool',
Alexander Afanasyevf5c07742012-10-31 13:13:05 -07005465 [],
5466 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005467 ## ndn-limits.h (module 'ndnSIM'): bool ns3::ndn::Limits::IsEnabled() const [member function]
5468 cls.add_method('IsEnabled',
5469 'bool',
5470 [],
Alexander Afanasyevf5c07742012-10-31 13:13:05 -07005471 is_const=True, is_virtual=True)
Alexander Afanasyeva8f5d882012-11-09 14:22:48 -08005472 ## 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]
5473 cls.add_method('RegisterAvailableSlotCallback',
5474 'void',
5475 [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 -07005476 ## ndn-limits.h (module 'ndnSIM'): void ns3::ndn::Limits::ReturnLimit() [member function]
5477 cls.add_method('ReturnLimit',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005478 'void',
Alexander Afanasyev7e4235a2012-10-31 16:58:44 -07005479 [],
5480 is_pure_virtual=True, is_virtual=True)
5481 ## ndn-limits.h (module 'ndnSIM'): void ns3::ndn::Limits::SetLimits(double rate, double delay) [member function]
5482 cls.add_method('SetLimits',
5483 'void',
5484 [param('double', 'rate'), param('double', 'delay')],
Alexander Afanasyevf5c07742012-10-31 13:13:05 -07005485 is_virtual=True)
Alexander Afanasyeva8f5d882012-11-09 14:22:48 -08005486 ## ndn-limits.h (module 'ndnSIM'): void ns3::ndn::Limits::SetLinkDelay(double delay) [member function]
5487 cls.add_method('SetLinkDelay',
5488 'void',
5489 [param('double', 'delay')],
5490 is_virtual=True)
Alexander Afanasyeva28ec562012-10-25 14:07:32 -07005491 ## ndn-limits.h (module 'ndnSIM'): void ns3::ndn::Limits::UpdateCurrentLimit(double limit) [member function]
5492 cls.add_method('UpdateCurrentLimit',
5493 'void',
Alexander Afanasyev7e4235a2012-10-31 16:58:44 -07005494 [param('double', 'limit')],
5495 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyeva8f5d882012-11-09 14:22:48 -08005496 ## ndn-limits.h (module 'ndnSIM'): void ns3::ndn::Limits::FireAvailableSlotCallback() [member function]
5497 cls.add_method('FireAvailableSlotCallback',
5498 'void',
5499 [],
5500 visibility='protected')
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005501 return
5502
Alexander Afanasyev32c07562013-02-01 12:58:43 -08005503def register_Ns3NdnName_methods(root_module, cls):
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005504 cls.add_output_stream_operator()
5505 cls.add_binary_comparison_operator('<')
5506 cls.add_binary_comparison_operator('==')
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08005507 ## ndn-name.h (module 'ndnSIM'): ns3::ndn::Name::Name(ns3::ndn::Name const & arg0) [copy constructor]
Alexander Afanasyev32c07562013-02-01 12:58:43 -08005508 cls.add_constructor([param('ns3::ndn::Name const &', 'arg0')])
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08005509 ## ndn-name.h (module 'ndnSIM'): ns3::ndn::Name::Name() [constructor]
Alexander Afanasyev32c07562013-02-01 12:58:43 -08005510 cls.add_constructor([])
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08005511 ## ndn-name.h (module 'ndnSIM'): ns3::ndn::Name::Name(std::list<boost::reference_wrapper<std::string const>, std::allocator<boost::reference_wrapper<std::string const> > > const & components) [constructor]
Alexander Afanasyev32c07562013-02-01 12:58:43 -08005512 cls.add_constructor([param('std::list< boost::reference_wrapper< std::string const > > const &', 'components')])
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08005513 ## ndn-name.h (module 'ndnSIM'): ns3::ndn::Name::Name(std::string const & prefix) [constructor]
Alexander Afanasyev32c07562013-02-01 12:58:43 -08005514 cls.add_constructor([param('std::string const &', 'prefix')])
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08005515 ## ndn-name.h (module 'ndnSIM'): ns3::ndn::Name::Name(char const * prefix) [constructor]
Alexander Afanasyev32c07562013-02-01 12:58:43 -08005516 cls.add_constructor([param('char const *', 'prefix')])
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08005517 ## ndn-name.h (module 'ndnSIM'): uint32_t ns3::ndn::Name::Deserialize(ns3::Buffer::Iterator start) [member function]
Alexander Afanasyev32c07562013-02-01 12:58:43 -08005518 cls.add_method('Deserialize',
5519 'uint32_t',
5520 [param('ns3::Buffer::Iterator', 'start')])
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08005521 ## 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 -08005522 cls.add_method('GetComponents',
5523 'std::list< std::string > const &',
5524 [],
5525 is_const=True)
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08005526 ## ndn-name.h (module 'ndnSIM'): std::string ns3::ndn::Name::GetLastComponent() const [member function]
Alexander Afanasyev32c07562013-02-01 12:58:43 -08005527 cls.add_method('GetLastComponent',
5528 'std::string',
5529 [],
5530 is_const=True)
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08005531 ## ndn-name.h (module 'ndnSIM'): size_t ns3::ndn::Name::GetSerializedSize() const [member function]
Alexander Afanasyev32c07562013-02-01 12:58:43 -08005532 cls.add_method('GetSerializedSize',
5533 'size_t',
5534 [],
5535 is_const=True)
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08005536 ## ndn-name.h (module 'ndnSIM'): std::list<boost::reference_wrapper<std::string const>, std::allocator<boost::reference_wrapper<std::string const> > > ns3::ndn::Name::GetSubComponents(size_t num) const [member function]
Alexander Afanasyev32c07562013-02-01 12:58:43 -08005537 cls.add_method('GetSubComponents',
5538 'std::list< boost::reference_wrapper< std::string const > >',
5539 [param('size_t', 'num')],
5540 is_const=True)
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08005541 ## ndn-name.h (module 'ndnSIM'): void ns3::ndn::Name::Print(std::ostream & os) const [member function]
Alexander Afanasyev32c07562013-02-01 12:58:43 -08005542 cls.add_method('Print',
5543 'void',
5544 [param('std::ostream &', 'os')],
5545 is_const=True)
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08005546 ## ndn-name.h (module 'ndnSIM'): uint32_t ns3::ndn::Name::Serialize(ns3::Buffer::Iterator start) const [member function]
Alexander Afanasyev32c07562013-02-01 12:58:43 -08005547 cls.add_method('Serialize',
5548 'uint32_t',
5549 [param('ns3::Buffer::Iterator', 'start')],
5550 is_const=True)
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08005551 ## ndn-name.h (module 'ndnSIM'): std::_List_iterator<std::string> ns3::ndn::Name::begin() [member function]
Alexander Afanasyev32c07562013-02-01 12:58:43 -08005552 cls.add_method('begin',
5553 'std::_List_iterator< std::string >',
5554 [])
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08005555 ## 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 -08005556 cls.add_method('begin',
5557 'std::_List_const_iterator< std::string >',
5558 [],
5559 is_const=True)
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08005560 ## 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 -08005561 cls.add_method('cut',
5562 'ns3::ndn::Name',
5563 [param('size_t', 'minusComponents')],
5564 is_const=True)
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08005565 ## ndn-name.h (module 'ndnSIM'): std::_List_iterator<std::string> ns3::ndn::Name::end() [member function]
Alexander Afanasyev32c07562013-02-01 12:58:43 -08005566 cls.add_method('end',
5567 'std::_List_iterator< std::string >',
5568 [])
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08005569 ## 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 -08005570 cls.add_method('end',
5571 'std::_List_const_iterator< std::string >',
5572 [],
5573 is_const=True)
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08005574 ## ndn-name.h (module 'ndnSIM'): size_t ns3::ndn::Name::size() const [member function]
Alexander Afanasyev32c07562013-02-01 12:58:43 -08005575 cls.add_method('size',
5576 'size_t',
5577 [],
5578 is_const=True)
5579 return
5580
5581def register_Ns3NdnNameChecker_methods(root_module, cls):
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08005582 ## ndn-name.h (module 'ndnSIM'): ns3::ndn::NameChecker::NameChecker() [constructor]
Alexander Afanasyev32c07562013-02-01 12:58:43 -08005583 cls.add_constructor([])
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08005584 ## ndn-name.h (module 'ndnSIM'): ns3::ndn::NameChecker::NameChecker(ns3::ndn::NameChecker const & arg0) [copy constructor]
Alexander Afanasyev32c07562013-02-01 12:58:43 -08005585 cls.add_constructor([param('ns3::ndn::NameChecker const &', 'arg0')])
5586 return
5587
5588def register_Ns3NdnNameComponents_methods(root_module, cls):
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08005589 ## ndn-name.h (module 'ndnSIM'): ns3::ndn::NameComponents::NameComponents(ns3::ndn::NameComponents const & arg0) [copy constructor]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005590 cls.add_constructor([param('ns3::ndn::NameComponents const &', 'arg0')])
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08005591 ## ndn-name.h (module 'ndnSIM'): ns3::ndn::NameComponents::NameComponents() [constructor]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005592 cls.add_constructor([])
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08005593 ## ndn-name.h (module 'ndnSIM'): ns3::ndn::NameComponents::NameComponents(std::list<boost::reference_wrapper<std::string const>, std::allocator<boost::reference_wrapper<std::string const> > > const & components) [constructor]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005594 cls.add_constructor([param('std::list< boost::reference_wrapper< std::string const > > const &', 'components')])
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08005595 ## ndn-name.h (module 'ndnSIM'): ns3::ndn::NameComponents::NameComponents(std::string const & prefix) [constructor]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005596 cls.add_constructor([param('std::string const &', 'prefix')])
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08005597 ## ndn-name.h (module 'ndnSIM'): ns3::ndn::NameComponents::NameComponents(char const * prefix) [constructor]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005598 cls.add_constructor([param('char const *', 'prefix')])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005599 return
5600
5601def register_Ns3NdnNameComponentsChecker_methods(root_module, cls):
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08005602 ## ndn-name.h (module 'ndnSIM'): ns3::ndn::NameComponentsChecker::NameComponentsChecker() [constructor]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005603 cls.add_constructor([])
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08005604 ## ndn-name.h (module 'ndnSIM'): ns3::ndn::NameComponentsChecker::NameComponentsChecker(ns3::ndn::NameComponentsChecker const & arg0) [copy constructor]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005605 cls.add_constructor([param('ns3::ndn::NameComponentsChecker const &', 'arg0')])
5606 return
5607
5608def register_Ns3NdnNameComponentsValue_methods(root_module, cls):
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08005609 ## ndn-name.h (module 'ndnSIM'): ns3::ndn::NameComponentsValue::NameComponentsValue() [constructor]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005610 cls.add_constructor([])
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08005611 ## ndn-name.h (module 'ndnSIM'): ns3::ndn::NameComponentsValue::NameComponentsValue(ns3::ndn::NameComponentsValue const & arg0) [copy constructor]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005612 cls.add_constructor([param('ns3::ndn::NameComponentsValue const &', 'arg0')])
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08005613 ## ndn-name.h (module 'ndnSIM'): ns3::ndn::NameComponentsValue::NameComponentsValue(ns3::ndn::NameComponents const & value) [constructor]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005614 cls.add_constructor([param('ns3::ndn::NameComponents const &', 'value')])
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08005615 ## ndn-name.h (module 'ndnSIM'): ns3::Ptr<ns3::AttributeValue> ns3::ndn::NameComponentsValue::Copy() const [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005616 cls.add_method('Copy',
5617 'ns3::Ptr< ns3::AttributeValue >',
5618 [],
5619 is_const=True, is_virtual=True)
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08005620 ## ndn-name.h (module 'ndnSIM'): bool ns3::ndn::NameComponentsValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005621 cls.add_method('DeserializeFromString',
5622 'bool',
5623 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
5624 is_virtual=True)
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08005625 ## ndn-name.h (module 'ndnSIM'): ns3::ndn::NameComponents ns3::ndn::NameComponentsValue::Get() const [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005626 cls.add_method('Get',
5627 'ns3::ndn::NameComponents',
5628 [],
5629 is_const=True)
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08005630 ## ndn-name.h (module 'ndnSIM'): std::string ns3::ndn::NameComponentsValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005631 cls.add_method('SerializeToString',
5632 'std::string',
5633 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
5634 is_const=True, is_virtual=True)
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08005635 ## ndn-name.h (module 'ndnSIM'): void ns3::ndn::NameComponentsValue::Set(ns3::ndn::NameComponents const & value) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005636 cls.add_method('Set',
5637 'void',
5638 [param('ns3::ndn::NameComponents const &', 'value')])
5639 return
5640
Alexander Afanasyev32c07562013-02-01 12:58:43 -08005641def register_Ns3NdnNameValue_methods(root_module, cls):
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08005642 ## ndn-name.h (module 'ndnSIM'): ns3::ndn::NameValue::NameValue() [constructor]
Alexander Afanasyev32c07562013-02-01 12:58:43 -08005643 cls.add_constructor([])
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08005644 ## ndn-name.h (module 'ndnSIM'): ns3::ndn::NameValue::NameValue(ns3::ndn::NameValue const & arg0) [copy constructor]
Alexander Afanasyev32c07562013-02-01 12:58:43 -08005645 cls.add_constructor([param('ns3::ndn::NameValue const &', 'arg0')])
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08005646 ## ndn-name.h (module 'ndnSIM'): ns3::ndn::NameValue::NameValue(ns3::ndn::Name const & value) [constructor]
Alexander Afanasyev32c07562013-02-01 12:58:43 -08005647 cls.add_constructor([param('ns3::ndn::Name const &', 'value')])
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08005648 ## ndn-name.h (module 'ndnSIM'): ns3::Ptr<ns3::AttributeValue> ns3::ndn::NameValue::Copy() const [member function]
Alexander Afanasyev32c07562013-02-01 12:58:43 -08005649 cls.add_method('Copy',
5650 'ns3::Ptr< ns3::AttributeValue >',
5651 [],
5652 is_const=True, is_virtual=True)
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08005653 ## 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 -08005654 cls.add_method('DeserializeFromString',
5655 'bool',
5656 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
5657 is_virtual=True)
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08005658 ## ndn-name.h (module 'ndnSIM'): ns3::ndn::Name ns3::ndn::NameValue::Get() const [member function]
Alexander Afanasyev32c07562013-02-01 12:58:43 -08005659 cls.add_method('Get',
5660 'ns3::ndn::Name',
5661 [],
5662 is_const=True)
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08005663 ## 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 -08005664 cls.add_method('SerializeToString',
5665 'std::string',
5666 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
5667 is_const=True, is_virtual=True)
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08005668 ## ndn-name.h (module 'ndnSIM'): void ns3::ndn::NameValue::Set(ns3::ndn::Name const & value) [member function]
Alexander Afanasyev32c07562013-02-01 12:58:43 -08005669 cls.add_method('Set',
5670 'void',
5671 [param('ns3::ndn::Name const &', 'value')])
5672 return
5673
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005674def register_Ns3NdnNetDeviceFace_methods(root_module, cls):
5675 ## ndn-net-device-face.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::NetDeviceFace::GetTypeId() [member function]
5676 cls.add_method('GetTypeId',
5677 'ns3::TypeId',
5678 [],
5679 is_static=True)
5680 ## ndn-net-device-face.h (module 'ndnSIM'): ns3::ndn::NetDeviceFace::NetDeviceFace(ns3::Ptr<ns3::Node> node, ns3::Ptr<ns3::NetDevice> const & netDevice) [constructor]
5681 cls.add_constructor([param('ns3::Ptr< ns3::Node >', 'node'), param('ns3::Ptr< ns3::NetDevice > const &', 'netDevice')])
5682 ## ndn-net-device-face.h (module 'ndnSIM'): void ns3::ndn::NetDeviceFace::RegisterProtocolHandler(ns3::Callback<void, ns3::Ptr<ns3::ndn::Face> const&, ns3::Ptr<ns3::Packet const> const&, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> handler) [member function]
5683 cls.add_method('RegisterProtocolHandler',
5684 'void',
5685 [param('ns3::Callback< void, ns3::Ptr< ns3::ndn::Face >, ns3::Ptr< ns3::Packet const >, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'handler')],
5686 is_virtual=True)
5687 ## ndn-net-device-face.h (module 'ndnSIM'): std::ostream & ns3::ndn::NetDeviceFace::Print(std::ostream & os) const [member function]
5688 cls.add_method('Print',
5689 'std::ostream &',
5690 [param('std::ostream &', 'os')],
5691 is_const=True, is_virtual=True)
5692 ## ndn-net-device-face.h (module 'ndnSIM'): ns3::Ptr<ns3::NetDevice> ns3::ndn::NetDeviceFace::GetNetDevice() const [member function]
5693 cls.add_method('GetNetDevice',
5694 'ns3::Ptr< ns3::NetDevice >',
5695 [],
5696 is_const=True)
5697 ## ndn-net-device-face.h (module 'ndnSIM'): bool ns3::ndn::NetDeviceFace::SendImpl(ns3::Ptr<ns3::Packet> p) [member function]
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07005698 cls.add_method('SendImpl',
Alexander Afanasyev1c0248b2012-07-24 15:59:50 -07005699 'bool',
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07005700 [param('ns3::Ptr< ns3::Packet >', 'p')],
5701 visibility='protected', is_virtual=True)
5702 return
5703
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005704def register_Ns3NdnPit_methods(root_module, cls):
5705 cls.add_output_stream_operator()
5706 ## ndn-pit.h (module 'ndnSIM'): ns3::ndn::Pit::Pit(ns3::ndn::Pit const & arg0) [copy constructor]
5707 cls.add_constructor([param('ns3::ndn::Pit const &', 'arg0')])
5708 ## ndn-pit.h (module 'ndnSIM'): ns3::ndn::Pit::Pit() [constructor]
5709 cls.add_constructor([])
5710 ## ndn-pit.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::pit::Entry> ns3::ndn::Pit::Begin() [member function]
5711 cls.add_method('Begin',
5712 'ns3::Ptr< ns3::ndn::pit::Entry >',
5713 [],
5714 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005715 ## ndn-pit.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::pit::Entry> ns3::ndn::Pit::Create(ns3::Ptr<ns3::ndn::InterestHeader const> header) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005716 cls.add_method('Create',
5717 'ns3::Ptr< ns3::ndn::pit::Entry >',
5718 [param('ns3::Ptr< ns3::ndn::InterestHeader const >', 'header')],
5719 is_pure_virtual=True, is_virtual=True)
5720 ## ndn-pit.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::pit::Entry> ns3::ndn::Pit::End() [member function]
5721 cls.add_method('End',
5722 'ns3::Ptr< ns3::ndn::pit::Entry >',
5723 [],
5724 is_pure_virtual=True, is_virtual=True)
5725 ## ndn-pit.h (module 'ndnSIM'): static ns3::Ptr<ns3::ndn::Pit> ns3::ndn::Pit::GetPit(ns3::Ptr<ns3::Object> node) [member function]
5726 cls.add_method('GetPit',
5727 'ns3::Ptr< ns3::ndn::Pit >',
5728 [param('ns3::Ptr< ns3::Object >', 'node')],
5729 is_static=True)
5730 ## ndn-pit.h (module 'ndnSIM'): uint32_t ns3::ndn::Pit::GetSize() const [member function]
5731 cls.add_method('GetSize',
5732 'uint32_t',
5733 [],
5734 is_pure_virtual=True, is_const=True, is_virtual=True)
5735 ## ndn-pit.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::Pit::GetTypeId() [member function]
5736 cls.add_method('GetTypeId',
5737 'ns3::TypeId',
5738 [],
5739 is_static=True)
5740 ## ndn-pit.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::pit::Entry> ns3::ndn::Pit::Lookup(ns3::ndn::ContentObjectHeader const & header) [member function]
5741 cls.add_method('Lookup',
5742 'ns3::Ptr< ns3::ndn::pit::Entry >',
5743 [param('ns3::ndn::ContentObjectHeader const &', 'header')],
5744 is_pure_virtual=True, is_virtual=True)
5745 ## ndn-pit.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::pit::Entry> ns3::ndn::Pit::Lookup(ns3::ndn::InterestHeader const & header) [member function]
5746 cls.add_method('Lookup',
5747 'ns3::Ptr< ns3::ndn::pit::Entry >',
5748 [param('ns3::ndn::InterestHeader const &', 'header')],
5749 is_pure_virtual=True, is_virtual=True)
5750 ## ndn-pit.h (module 'ndnSIM'): void ns3::ndn::Pit::MarkErased(ns3::Ptr<ns3::ndn::pit::Entry> entry) [member function]
5751 cls.add_method('MarkErased',
5752 'void',
5753 [param('ns3::Ptr< ns3::ndn::pit::Entry >', 'entry')],
5754 is_pure_virtual=True, is_virtual=True)
5755 ## ndn-pit.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::pit::Entry> ns3::ndn::Pit::Next(ns3::Ptr<ns3::ndn::pit::Entry> arg0) [member function]
5756 cls.add_method('Next',
5757 'ns3::Ptr< ns3::ndn::pit::Entry >',
5758 [param('ns3::Ptr< ns3::ndn::pit::Entry >', 'arg0')],
5759 is_pure_virtual=True, is_virtual=True)
5760 ## ndn-pit.h (module 'ndnSIM'): void ns3::ndn::Pit::Print(std::ostream & os) const [member function]
5761 cls.add_method('Print',
5762 'void',
5763 [param('std::ostream &', 'os')],
5764 is_pure_virtual=True, is_const=True, is_virtual=True)
5765 return
5766
5767def register_Ns3NdnStackHelper_methods(root_module, cls):
5768 ## ndn-stack-helper.h (module 'ndnSIM'): ns3::ndn::StackHelper::StackHelper() [constructor]
5769 cls.add_constructor([])
5770 ## 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]
5771 cls.add_method('SetStackAttributes',
5772 'void',
5773 [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='""')])
5774 ## 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]
5775 cls.add_method('SetForwardingStrategy',
5776 'void',
5777 [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='""')])
5778 ## 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]
5779 cls.add_method('SetContentStore',
5780 'void',
5781 [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='""')])
5782 ## 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]
5783 cls.add_method('SetPit',
5784 'void',
5785 [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='""')])
5786 ## 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]
5787 cls.add_method('SetFib',
5788 'void',
5789 [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 -08005790 ## 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 -08005791 cls.add_method('AddNetDeviceFaceCreateCallback',
5792 'void',
Alexander Afanasyevc17e4bd2013-02-17 14:31:56 -08005793 [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 -07005794 ## 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]
5795 cls.add_method('EnableLimits',
5796 'void',
5797 [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 -08005798 ## 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 -07005799 cls.add_method('Install',
5800 'ns3::Ptr< ns3::ndn::FaceContainer >',
Alexander Afanasyev67f4a4a2012-11-24 17:18:17 -08005801 [param('std::string const &', 'nodeName')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005802 is_const=True)
5803 ## ndn-stack-helper.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::FaceContainer> ns3::ndn::StackHelper::Install(ns3::Ptr<ns3::Node> node) const [member function]
5804 cls.add_method('Install',
5805 'ns3::Ptr< ns3::ndn::FaceContainer >',
5806 [param('ns3::Ptr< ns3::Node >', 'node')],
5807 is_const=True)
Alexander Afanasyev67f4a4a2012-11-24 17:18:17 -08005808 ## 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 -07005809 cls.add_method('Install',
5810 'ns3::Ptr< ns3::ndn::FaceContainer >',
Alexander Afanasyev67f4a4a2012-11-24 17:18:17 -08005811 [param('ns3::NodeContainer const &', 'c')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005812 is_const=True)
5813 ## ndn-stack-helper.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::FaceContainer> ns3::ndn::StackHelper::InstallAll() const [member function]
5814 cls.add_method('InstallAll',
5815 'ns3::Ptr< ns3::ndn::FaceContainer >',
5816 [],
5817 is_const=True)
Alexander Afanasyev67f4a4a2012-11-24 17:18:17 -08005818 ## 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 -07005819 cls.add_method('AddRoute',
5820 'void',
Alexander Afanasyev67f4a4a2012-11-24 17:18:17 -08005821 [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 -07005822 is_static=True)
Alexander Afanasyev67f4a4a2012-11-24 17:18:17 -08005823 ## 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 -07005824 cls.add_method('AddRoute',
5825 'void',
Alexander Afanasyev67f4a4a2012-11-24 17:18:17 -08005826 [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 -07005827 is_static=True)
Alexander Afanasyev67f4a4a2012-11-24 17:18:17 -08005828 ## 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 -07005829 cls.add_method('AddRoute',
5830 'void',
Alexander Afanasyev67f4a4a2012-11-24 17:18:17 -08005831 [param('ns3::Ptr< ns3::Node >', 'node'), param('std::string const &', 'prefix'), param('ns3::Ptr< ns3::ndn::Face >', 'face'), param('int32_t', 'metric')],
5832 is_static=True)
5833 ## 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]
5834 cls.add_method('AddRoute',
5835 'void',
5836 [param('ns3::Ptr< ns3::Node >', 'node'), param('std::string const &', 'prefix'), param('ns3::Ptr< ns3::Node >', 'otherNode'), param('int32_t', 'metric')],
5837 is_static=True)
5838 ## 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]
5839 cls.add_method('AddRoute',
5840 'void',
5841 [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 -07005842 is_static=True)
5843 ## ndn-stack-helper.h (module 'ndnSIM'): void ns3::ndn::StackHelper::SetDefaultRoutes(bool needSet) [member function]
5844 cls.add_method('SetDefaultRoutes',
5845 'void',
5846 [param('bool', 'needSet')])
5847 return
5848
5849def register_Ns3NdnUnknownHeaderException_methods(root_module, cls):
5850 ## ndn-header-helper.h (module 'ndnSIM'): ns3::ndn::UnknownHeaderException::UnknownHeaderException() [constructor]
5851 cls.add_constructor([])
5852 ## ndn-header-helper.h (module 'ndnSIM'): ns3::ndn::UnknownHeaderException::UnknownHeaderException(ns3::ndn::UnknownHeaderException const & arg0) [copy constructor]
5853 cls.add_constructor([param('ns3::ndn::UnknownHeaderException const &', 'arg0')])
5854 return
5855
5856def register_Ns3NdnAppFace_methods(root_module, cls):
5857 ## ndn-app-face.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::AppFace::GetTypeId() [member function]
5858 cls.add_method('GetTypeId',
5859 'ns3::TypeId',
5860 [],
5861 is_static=True)
5862 ## ndn-app-face.h (module 'ndnSIM'): ns3::ndn::AppFace::AppFace(ns3::Ptr<ns3::ndn::App> app) [constructor]
5863 cls.add_constructor([param('ns3::Ptr< ns3::ndn::App >', 'app')])
5864 ## ndn-app-face.h (module 'ndnSIM'): void ns3::ndn::AppFace::RegisterProtocolHandler(ns3::Callback<void, ns3::Ptr<ns3::ndn::Face> const&, ns3::Ptr<ns3::Packet const> const&, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> handler) [member function]
5865 cls.add_method('RegisterProtocolHandler',
5866 'void',
5867 [param('ns3::Callback< void, ns3::Ptr< ns3::ndn::Face >, ns3::Ptr< ns3::Packet const >, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'handler')],
5868 is_virtual=True)
5869 ## ndn-app-face.h (module 'ndnSIM'): std::ostream & ns3::ndn::AppFace::Print(std::ostream & os) const [member function]
5870 cls.add_method('Print',
5871 'std::ostream &',
5872 [param('std::ostream &', 'os')],
5873 is_const=True, is_virtual=True)
5874 ## ndn-app-face.h (module 'ndnSIM'): bool ns3::ndn::AppFace::SendImpl(ns3::Ptr<ns3::Packet> p) [member function]
5875 cls.add_method('SendImpl',
5876 'bool',
5877 [param('ns3::Ptr< ns3::Packet >', 'p')],
5878 visibility='protected', is_virtual=True)
5879 return
5880
5881def register_Ns3NdnCsEntry_methods(root_module, cls):
5882 ## ndn-content-store.h (module 'ndnSIM'): ns3::ndn::cs::Entry::Entry(ns3::ndn::cs::Entry const & arg0) [copy constructor]
5883 cls.add_constructor([param('ns3::ndn::cs::Entry const &', 'arg0')])
5884 ## ndn-content-store.h (module 'ndnSIM'): ns3::ndn::cs::Entry::Entry(ns3::Ptr<ns3::ndn::ContentObjectHeader const> header, ns3::Ptr<const ns3::Packet> packet) [constructor]
5885 cls.add_constructor([param('ns3::Ptr< ns3::ndn::ContentObjectHeader const >', 'header'), param('ns3::Ptr< ns3::Packet const >', 'packet')])
5886 ## ndn-content-store.h (module 'ndnSIM'): ns3::Ptr<ns3::Packet> ns3::ndn::cs::Entry::GetFullyFormedNdnPacket() const [member function]
5887 cls.add_method('GetFullyFormedNdnPacket',
5888 'ns3::Ptr< ns3::Packet >',
5889 [],
5890 is_const=True)
5891 ## ndn-content-store.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::ContentObjectHeader const> ns3::ndn::cs::Entry::GetHeader() const [member function]
5892 cls.add_method('GetHeader',
5893 'ns3::Ptr< ns3::ndn::ContentObjectHeader const >',
5894 [],
5895 is_const=True)
5896 ## ndn-content-store.h (module 'ndnSIM'): ns3::ndn::NameComponents const & ns3::ndn::cs::Entry::GetName() const [member function]
5897 cls.add_method('GetName',
5898 'ns3::ndn::NameComponents const &',
5899 [],
5900 is_const=True)
5901 ## ndn-content-store.h (module 'ndnSIM'): ns3::Ptr<const ns3::Packet> ns3::ndn::cs::Entry::GetPacket() const [member function]
5902 cls.add_method('GetPacket',
5903 'ns3::Ptr< ns3::Packet const >',
5904 [],
5905 is_const=True)
5906 return
5907
5908def register_Ns3NdnFibEntry_methods(root_module, cls):
5909 cls.add_output_stream_operator()
5910 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::Entry::Entry(ns3::ndn::fib::Entry const & arg0) [copy constructor]
5911 cls.add_constructor([param('ns3::ndn::fib::Entry const &', 'arg0')])
5912 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::Entry::Entry(ns3::Ptr<ns3::ndn::NameComponents const> const & prefix) [constructor]
5913 cls.add_constructor([param('ns3::Ptr< ns3::ndn::NameComponents const > const &', 'prefix')])
5914 ## ndn-fib-entry.h (module 'ndnSIM'): void ns3::ndn::fib::Entry::AddOrUpdateRoutingMetric(ns3::Ptr<ns3::ndn::Face> face, int32_t metric) [member function]
5915 cls.add_method('AddOrUpdateRoutingMetric',
5916 'void',
5917 [param('ns3::Ptr< ns3::ndn::Face >', 'face'), param('int32_t', 'metric')])
5918 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::FaceMetric const & ns3::ndn::fib::Entry::FindBestCandidate(uint32_t skip=0) const [member function]
5919 cls.add_method('FindBestCandidate',
5920 'ns3::ndn::fib::FaceMetric const &',
5921 [param('uint32_t', 'skip', default_value='0')],
5922 is_const=True)
5923 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::NameComponents const & ns3::ndn::fib::Entry::GetPrefix() const [member function]
5924 cls.add_method('GetPrefix',
5925 'ns3::ndn::NameComponents const &',
5926 [],
5927 is_const=True)
5928 ## ndn-fib-entry.h (module 'ndnSIM'): void ns3::ndn::fib::Entry::Invalidate() [member function]
5929 cls.add_method('Invalidate',
5930 'void',
5931 [])
5932 ## ndn-fib-entry.h (module 'ndnSIM'): void ns3::ndn::fib::Entry::RemoveFace(ns3::Ptr<ns3::ndn::Face> const & face) [member function]
5933 cls.add_method('RemoveFace',
5934 'void',
5935 [param('ns3::Ptr< ns3::ndn::Face > const &', 'face')])
Alexander Afanasyev32c07562013-02-01 12:58:43 -08005936 ## ndn-fib-entry.h (module 'ndnSIM'): void ns3::ndn::fib::Entry::SetRealDelayToProducer(ns3::Ptr<ns3::ndn::Face> face, ns3::Time delay) [member function]
5937 cls.add_method('SetRealDelayToProducer',
5938 'void',
5939 [param('ns3::Ptr< ns3::ndn::Face >', 'face'), param('ns3::Time', 'delay')])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005940 ## ndn-fib-entry.h (module 'ndnSIM'): void ns3::ndn::fib::Entry::UpdateFaceRtt(ns3::Ptr<ns3::ndn::Face> face, ns3::Time const & sample) [member function]
5941 cls.add_method('UpdateFaceRtt',
5942 'void',
5943 [param('ns3::Ptr< ns3::ndn::Face >', 'face'), param('ns3::Time const &', 'sample')])
5944 ## 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]
5945 cls.add_method('UpdateStatus',
5946 'void',
5947 [param('ns3::Ptr< ns3::ndn::Face >', 'face'), param('ns3::ndn::fib::FaceMetric::Status', 'status')])
5948 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::Entry::m_faces [variable]
Alexander Afanasyev06dba7c2013-02-21 11:36:26 -08005949 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 Afanasyevcf6dc922012-08-10 16:55:27 -07005950 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::Entry::m_needsProbing [variable]
5951 cls.add_instance_attribute('m_needsProbing', 'bool', is_const=False)
5952 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::Entry::m_prefix [variable]
5953 cls.add_instance_attribute('m_prefix', 'ns3::Ptr< ns3::ndn::NameComponents const >', is_const=False)
5954 return
5955
5956def register_Ns3NdnFibEntryNoFaces_methods(root_module, cls):
5957 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::Entry::NoFaces::NoFaces() [constructor]
5958 cls.add_constructor([])
5959 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::Entry::NoFaces::NoFaces(ns3::ndn::fib::Entry::NoFaces const & arg0) [copy constructor]
5960 cls.add_constructor([param('ns3::ndn::fib::Entry::NoFaces const &', 'arg0')])
5961 return
5962
5963def register_Ns3NdnFibFaceMetric_methods(root_module, cls):
5964 cls.add_output_stream_operator()
5965 cls.add_binary_comparison_operator('<')
5966 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::FaceMetric::FaceMetric(ns3::ndn::fib::FaceMetric const & arg0) [copy constructor]
5967 cls.add_constructor([param('ns3::ndn::fib::FaceMetric const &', 'arg0')])
5968 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::FaceMetric::FaceMetric(ns3::Ptr<ns3::ndn::Face> face, int32_t cost) [constructor]
5969 cls.add_constructor([param('ns3::Ptr< ns3::ndn::Face >', 'face'), param('int32_t', 'cost')])
5970 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::Face> ns3::ndn::fib::FaceMetric::GetFace() const [member function]
5971 cls.add_method('GetFace',
5972 'ns3::Ptr< ns3::ndn::Face >',
5973 [],
5974 is_const=True)
Alexander Afanasyev06dba7c2013-02-21 11:36:26 -08005975 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::Time ns3::ndn::fib::FaceMetric::GetRealDelay() const [member function]
5976 cls.add_method('GetRealDelay',
5977 'ns3::Time',
5978 [],
5979 is_const=True)
5980 ## ndn-fib-entry.h (module 'ndnSIM'): int32_t ns3::ndn::fib::FaceMetric::GetRoutingCost() const [member function]
5981 cls.add_method('GetRoutingCost',
5982 'int32_t',
5983 [],
5984 is_const=True)
5985 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::FaceMetric::Status ns3::ndn::fib::FaceMetric::GetStatus() const [member function]
5986 cls.add_method('GetStatus',
5987 'ns3::ndn::fib::FaceMetric::Status',
5988 [],
5989 is_const=True)
5990 ## ndn-fib-entry.h (module 'ndnSIM'): void ns3::ndn::fib::FaceMetric::SetRealDelay(ns3::Time realDelay) [member function]
5991 cls.add_method('SetRealDelay',
5992 'void',
5993 [param('ns3::Time', 'realDelay')])
5994 ## ndn-fib-entry.h (module 'ndnSIM'): void ns3::ndn::fib::FaceMetric::SetRoutingCost(int32_t routingCost) [member function]
5995 cls.add_method('SetRoutingCost',
5996 'void',
5997 [param('int32_t', 'routingCost')])
5998 ## ndn-fib-entry.h (module 'ndnSIM'): void ns3::ndn::fib::FaceMetric::SetStatus(ns3::ndn::fib::FaceMetric::Status status) [member function]
5999 cls.add_method('SetStatus',
6000 'void',
6001 [param('ns3::ndn::fib::FaceMetric::Status', 'status')])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006002 ## ndn-fib-entry.h (module 'ndnSIM'): void ns3::ndn::fib::FaceMetric::UpdateRtt(ns3::Time const & rttSample) [member function]
6003 cls.add_method('UpdateRtt',
6004 'void',
6005 [param('ns3::Time const &', 'rttSample')])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006006 return
6007
6008def register_Ns3NdnFibFaceMetricContainer_methods(root_module, cls):
6009 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::FaceMetricContainer::FaceMetricContainer() [constructor]
6010 cls.add_constructor([])
6011 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::FaceMetricContainer::FaceMetricContainer(ns3::ndn::fib::FaceMetricContainer const & arg0) [copy constructor]
6012 cls.add_constructor([param('ns3::ndn::fib::FaceMetricContainer const &', 'arg0')])
6013 return
6014
6015def register_Ns3NdnFibI_face_methods(root_module, cls):
6016 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::i_face::i_face() [constructor]
6017 cls.add_constructor([])
6018 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::i_face::i_face(ns3::ndn::fib::i_face const & arg0) [copy constructor]
6019 cls.add_constructor([param('ns3::ndn::fib::i_face const &', 'arg0')])
6020 return
6021
6022def register_Ns3NdnFibI_metric_methods(root_module, cls):
6023 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::i_metric::i_metric() [constructor]
6024 cls.add_constructor([])
6025 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::i_metric::i_metric(ns3::ndn::fib::i_metric const & arg0) [copy constructor]
6026 cls.add_constructor([param('ns3::ndn::fib::i_metric const &', 'arg0')])
6027 return
6028
6029def register_Ns3NdnFibI_nth_methods(root_module, cls):
6030 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::i_nth::i_nth() [constructor]
6031 cls.add_constructor([])
6032 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::i_nth::i_nth(ns3::ndn::fib::i_nth const & arg0) [copy constructor]
6033 cls.add_constructor([param('ns3::ndn::fib::i_nth const &', 'arg0')])
6034 return
6035
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07006036def register_Ns3NdnFwTag_methods(root_module, cls):
6037 ## ndn-fw-tag.h (module 'ndnSIM'): ns3::ndn::fw::Tag::Tag() [constructor]
6038 cls.add_constructor([])
6039 ## ndn-fw-tag.h (module 'ndnSIM'): ns3::ndn::fw::Tag::Tag(ns3::ndn::fw::Tag const & arg0) [copy constructor]
6040 cls.add_constructor([param('ns3::ndn::fw::Tag const &', 'arg0')])
6041 return
6042
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006043def register_Ns3NdnPitEntry_methods(root_module, cls):
6044 cls.add_output_stream_operator()
6045 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::ndn::pit::Entry::Entry(ns3::ndn::pit::Entry const & arg0) [copy constructor]
6046 cls.add_constructor([param('ns3::ndn::pit::Entry const &', 'arg0')])
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07006047 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::ndn::pit::Entry::Entry(ns3::ndn::Pit & container, ns3::Ptr<ns3::ndn::InterestHeader const> header, ns3::Ptr<ns3::ndn::fib::Entry> fibEntry) [constructor]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006048 cls.add_constructor([param('ns3::ndn::Pit &', 'container'), param('ns3::Ptr< ns3::ndn::InterestHeader const >', 'header'), param('ns3::Ptr< ns3::ndn::fib::Entry >', 'fibEntry')])
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07006049 ## ndn-pit-entry.h (module 'ndnSIM'): void ns3::ndn::pit::Entry::AddFwTag(boost::shared_ptr<ns3::ndn::fw::Tag> tag) [member function]
6050 cls.add_method('AddFwTag',
6051 'void',
6052 [param('boost::shared_ptr< ns3::ndn::fw::Tag >', 'tag')])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006053 ## 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]
6054 cls.add_method('AddIncoming',
6055 'std::_Rb_tree_const_iterator< ns3::ndn::pit::IncomingFace >',
6056 [param('ns3::Ptr< ns3::ndn::Face >', 'face')],
6057 is_virtual=True)
Alexander Afanasyevc202fd92012-09-03 21:46:00 -07006058 ## 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 -07006059 cls.add_method('AddOutgoing',
Alexander Afanasyevc202fd92012-09-03 21:46:00 -07006060 'std::_Rb_tree_const_iterator< ns3::ndn::pit::OutgoingFace >',
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006061 [param('ns3::Ptr< ns3::ndn::Face >', 'face')],
6062 is_virtual=True)
6063 ## ndn-pit-entry.h (module 'ndnSIM'): void ns3::ndn::pit::Entry::AddSeenNonce(uint32_t nonce) [member function]
6064 cls.add_method('AddSeenNonce',
6065 'void',
6066 [param('uint32_t', 'nonce')],
6067 is_virtual=True)
6068 ## ndn-pit-entry.h (module 'ndnSIM'): bool ns3::ndn::pit::Entry::AreAllOutgoingInVain() const [member function]
6069 cls.add_method('AreAllOutgoingInVain',
6070 'bool',
6071 [],
6072 is_const=True)
6073 ## ndn-pit-entry.h (module 'ndnSIM'): bool ns3::ndn::pit::Entry::AreTherePromisingOutgoingFacesExcept(ns3::Ptr<ns3::ndn::Face> face) const [member function]
6074 cls.add_method('AreTherePromisingOutgoingFacesExcept',
6075 'bool',
6076 [param('ns3::Ptr< ns3::ndn::Face >', 'face')],
6077 is_const=True)
6078 ## ndn-pit-entry.h (module 'ndnSIM'): void ns3::ndn::pit::Entry::ClearIncoming() [member function]
6079 cls.add_method('ClearIncoming',
6080 'void',
6081 [],
6082 is_virtual=True)
6083 ## ndn-pit-entry.h (module 'ndnSIM'): void ns3::ndn::pit::Entry::ClearOutgoing() [member function]
6084 cls.add_method('ClearOutgoing',
6085 'void',
6086 [],
6087 is_virtual=True)
6088 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::Time const & ns3::ndn::pit::Entry::GetExpireTime() const [member function]
6089 cls.add_method('GetExpireTime',
6090 'ns3::Time const &',
6091 [],
6092 is_const=True)
6093 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::fib::Entry> ns3::ndn::pit::Entry::GetFibEntry() [member function]
6094 cls.add_method('GetFibEntry',
6095 'ns3::Ptr< ns3::ndn::fib::Entry >',
6096 [])
6097 ## 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]
6098 cls.add_method('GetIncoming',
6099 'std::set< ns3::ndn::pit::IncomingFace > const &',
6100 [],
6101 is_const=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07006102 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::InterestHeader const> ns3::ndn::pit::Entry::GetInterest() const [member function]
6103 cls.add_method('GetInterest',
6104 'ns3::Ptr< ns3::ndn::InterestHeader const >',
6105 [],
6106 is_const=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006107 ## ndn-pit-entry.h (module 'ndnSIM'): uint32_t ns3::ndn::pit::Entry::GetMaxRetxCount() const [member function]
6108 cls.add_method('GetMaxRetxCount',
6109 'uint32_t',
6110 [],
6111 is_const=True)
Alexander Afanasyevc202fd92012-09-03 21:46:00 -07006112 ## 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 -07006113 cls.add_method('GetOutgoing',
Alexander Afanasyevc202fd92012-09-03 21:46:00 -07006114 'std::set< ns3::ndn::pit::OutgoingFace > const &',
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006115 [],
6116 is_const=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07006117 ## ndn-pit-entry.h (module 'ndnSIM'): uint32_t ns3::ndn::pit::Entry::GetOutgoingCount() const [member function]
6118 cls.add_method('GetOutgoingCount',
6119 'uint32_t',
6120 [],
6121 is_const=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006122 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::ndn::NameComponents const & ns3::ndn::pit::Entry::GetPrefix() const [member function]
6123 cls.add_method('GetPrefix',
6124 'ns3::ndn::NameComponents const &',
6125 [],
6126 is_const=True)
6127 ## ndn-pit-entry.h (module 'ndnSIM'): void ns3::ndn::pit::Entry::IncreaseAllowedRetxCount() [member function]
6128 cls.add_method('IncreaseAllowedRetxCount',
6129 'void',
6130 [],
6131 is_virtual=True)
6132 ## ndn-pit-entry.h (module 'ndnSIM'): bool ns3::ndn::pit::Entry::IsNonceSeen(uint32_t nonce) const [member function]
6133 cls.add_method('IsNonceSeen',
6134 'bool',
6135 [param('uint32_t', 'nonce')],
6136 is_const=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07006137 ## ndn-pit-entry.h (module 'ndnSIM'): void ns3::ndn::pit::Entry::OffsetLifetime(ns3::Time const & offsetTime) [member function]
6138 cls.add_method('OffsetLifetime',
6139 'void',
6140 [param('ns3::Time const &', 'offsetTime')],
6141 is_virtual=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006142 ## ndn-pit-entry.h (module 'ndnSIM'): void ns3::ndn::pit::Entry::RemoveAllReferencesToFace(ns3::Ptr<ns3::ndn::Face> face) [member function]
6143 cls.add_method('RemoveAllReferencesToFace',
6144 'void',
6145 [param('ns3::Ptr< ns3::ndn::Face >', 'face')],
6146 is_virtual=True)
6147 ## ndn-pit-entry.h (module 'ndnSIM'): void ns3::ndn::pit::Entry::RemoveIncoming(ns3::Ptr<ns3::ndn::Face> face) [member function]
6148 cls.add_method('RemoveIncoming',
6149 'void',
6150 [param('ns3::Ptr< ns3::ndn::Face >', 'face')],
6151 is_virtual=True)
6152 ## ndn-pit-entry.h (module 'ndnSIM'): void ns3::ndn::pit::Entry::SetWaitingInVain(ns3::Ptr<ns3::ndn::Face> face) [member function]
6153 cls.add_method('SetWaitingInVain',
6154 'void',
6155 [param('ns3::Ptr< ns3::ndn::Face >', 'face')],
6156 is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07006157 ## 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 -07006158 cls.add_method('UpdateLifetime',
6159 'void',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07006160 [param('ns3::Time const &', 'lifetime')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006161 is_virtual=True)
6162 return
6163
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08006164def register_Ns3NdnPitEntryIsNotEmpty_methods(root_module, cls):
6165 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::ndn::pit::EntryIsNotEmpty::EntryIsNotEmpty() [constructor]
6166 cls.add_constructor([])
6167 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::ndn::pit::EntryIsNotEmpty::EntryIsNotEmpty(ns3::ndn::pit::EntryIsNotEmpty const & arg0) [copy constructor]
6168 cls.add_constructor([param('ns3::ndn::pit::EntryIsNotEmpty const &', 'arg0')])
6169 ## ndn-pit-entry.h (module 'ndnSIM'): bool ns3::ndn::pit::EntryIsNotEmpty::operator()(ns3::Ptr<ns3::ndn::pit::Entry> entry) [member operator]
6170 cls.add_method('operator()',
6171 'bool',
6172 [param('ns3::Ptr< ns3::ndn::pit::Entry >', 'entry')],
6173 custom_name='__call__')
6174 return
6175
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006176def register_Ns3NdnPitIncomingFace_methods(root_module, cls):
6177 cls.add_binary_comparison_operator('==')
6178 cls.add_binary_comparison_operator('<')
6179 ## ndn-pit-entry-incoming-face.h (module 'ndnSIM'): ns3::ndn::pit::IncomingFace::IncomingFace(ns3::ndn::pit::IncomingFace const & arg0) [copy constructor]
6180 cls.add_constructor([param('ns3::ndn::pit::IncomingFace const &', 'arg0')])
6181 ## ndn-pit-entry-incoming-face.h (module 'ndnSIM'): ns3::ndn::pit::IncomingFace::IncomingFace(ns3::Ptr<ns3::ndn::Face> face) [constructor]
6182 cls.add_constructor([param('ns3::Ptr< ns3::ndn::Face >', 'face')])
6183 ## ndn-pit-entry-incoming-face.h (module 'ndnSIM'): ns3::ndn::pit::IncomingFace::IncomingFace() [constructor]
6184 cls.add_constructor([])
6185 ## ndn-pit-entry-incoming-face.h (module 'ndnSIM'): ns3::ndn::pit::IncomingFace::m_arrivalTime [variable]
6186 cls.add_instance_attribute('m_arrivalTime', 'ns3::Time', is_const=False)
6187 ## ndn-pit-entry-incoming-face.h (module 'ndnSIM'): ns3::ndn::pit::IncomingFace::m_face [variable]
6188 cls.add_instance_attribute('m_face', 'ns3::Ptr< ns3::ndn::Face >', is_const=False)
6189 return
6190
6191def register_Ns3NdnPitOutgoingFace_methods(root_module, cls):
6192 cls.add_binary_comparison_operator('==')
6193 cls.add_binary_comparison_operator('<')
6194 ## ndn-pit-entry-outgoing-face.h (module 'ndnSIM'): ns3::ndn::pit::OutgoingFace::OutgoingFace(ns3::ndn::pit::OutgoingFace const & arg0) [copy constructor]
6195 cls.add_constructor([param('ns3::ndn::pit::OutgoingFace const &', 'arg0')])
6196 ## ndn-pit-entry-outgoing-face.h (module 'ndnSIM'): ns3::ndn::pit::OutgoingFace::OutgoingFace(ns3::Ptr<ns3::ndn::Face> face) [constructor]
6197 cls.add_constructor([param('ns3::Ptr< ns3::ndn::Face >', 'face')])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07006198 ## ndn-pit-entry-outgoing-face.h (module 'ndnSIM'): ns3::ndn::pit::OutgoingFace::OutgoingFace() [constructor]
6199 cls.add_constructor([])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006200 ## ndn-pit-entry-outgoing-face.h (module 'ndnSIM'): void ns3::ndn::pit::OutgoingFace::UpdateOnRetransmit() [member function]
6201 cls.add_method('UpdateOnRetransmit',
6202 'void',
6203 [])
6204 ## ndn-pit-entry-outgoing-face.h (module 'ndnSIM'): ns3::ndn::pit::OutgoingFace::m_face [variable]
6205 cls.add_instance_attribute('m_face', 'ns3::Ptr< ns3::ndn::Face >', is_const=False)
6206 ## ndn-pit-entry-outgoing-face.h (module 'ndnSIM'): ns3::ndn::pit::OutgoingFace::m_retxCount [variable]
6207 cls.add_instance_attribute('m_retxCount', 'uint32_t', is_const=False)
6208 ## ndn-pit-entry-outgoing-face.h (module 'ndnSIM'): ns3::ndn::pit::OutgoingFace::m_sendTime [variable]
6209 cls.add_instance_attribute('m_sendTime', 'ns3::Time', is_const=False)
6210 ## ndn-pit-entry-outgoing-face.h (module 'ndnSIM'): ns3::ndn::pit::OutgoingFace::m_waitingInVain [variable]
6211 cls.add_instance_attribute('m_waitingInVain', 'bool', is_const=False)
6212 return
6213
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006214def register_Ns3NdnPitI_face_methods(root_module, cls):
6215 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::ndn::pit::i_face::i_face() [constructor]
6216 cls.add_constructor([])
6217 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::ndn::pit::i_face::i_face(ns3::ndn::pit::i_face const & arg0) [copy constructor]
6218 cls.add_constructor([param('ns3::ndn::pit::i_face const &', 'arg0')])
6219 return
6220
6221def register_Ns3NdnPitI_retx_methods(root_module, cls):
6222 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::ndn::pit::i_retx::i_retx() [constructor]
6223 cls.add_constructor([])
6224 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::ndn::pit::i_retx::i_retx(ns3::ndn::pit::i_retx const & arg0) [copy constructor]
6225 cls.add_constructor([param('ns3::ndn::pit::i_retx const &', 'arg0')])
6226 return
6227
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08006228def register_functions(root_module):
6229 module = root_module
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08006230 register_functions_ns3_FatalImpl(module.get_submodule('FatalImpl'), root_module)
6231 register_functions_ns3_internal(module.get_submodule('internal'), root_module)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006232 register_functions_ns3_ndn(module.get_submodule('ndn'), root_module)
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08006233 return
6234
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08006235def register_functions_ns3_FatalImpl(module, root_module):
6236 return
6237
6238def register_functions_ns3_internal(module, root_module):
6239 return
6240
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006241def register_functions_ns3_ndn(module, root_module):
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08006242 ## ndn-name.h (module 'ndnSIM'): extern ns3::Ptr<ns3::AttributeChecker const> ns3::ndn::MakeNameChecker() [free function]
Alexander Afanasyev32c07562013-02-01 12:58:43 -08006243 module.add_function('MakeNameChecker',
6244 'ns3::Ptr< ns3::AttributeChecker const >',
6245 [])
Alexander Afanasyeve6c07b52013-02-12 11:05:14 -08006246 ## ndn-name.h (module 'ndnSIM'): extern ns3::Ptr<ns3::AttributeChecker const> ns3::ndn::MakeNameComponentsChecker() [free function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006247 module.add_function('MakeNameComponentsChecker',
6248 'ns3::Ptr< ns3::AttributeChecker const >',
6249 [])
6250 register_functions_ns3_ndn_cs(module.get_submodule('cs'), root_module)
6251 register_functions_ns3_ndn_fib(module.get_submodule('fib'), root_module)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07006252 register_functions_ns3_ndn_fw(module.get_submodule('fw'), root_module)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006253 register_functions_ns3_ndn_pit(module.get_submodule('pit'), root_module)
6254 return
6255
6256def register_functions_ns3_ndn_cs(module, root_module):
6257 return
6258
6259def register_functions_ns3_ndn_fib(module, root_module):
6260 return
6261
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07006262def register_functions_ns3_ndn_fw(module, root_module):
6263 return
6264
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006265def register_functions_ns3_ndn_pit(module, root_module):
6266 return
6267
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08006268def main():
6269 out = FileCodeSink(sys.stdout)
6270 root_module = module_init()
6271 register_types(root_module)
6272 register_methods(root_module)
6273 register_functions(root_module)
6274 root_module.generate(out)
6275
6276if __name__ == '__main__':
6277 main()
6278