blob: db32877fb3b7d57650b978fb72f98858e0bbc749 [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'))
175 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::ndn::NameComponents, ns3::empty, ns3::DefaultDeleter<ns3::ndn::NameComponents> > [class]
176 module.add_class('SimpleRefCount', automatic_type_narrowing=True, template_parameters=['ns3::ndn::NameComponents', 'ns3::empty', 'ns3::DefaultDeleter<ns3::ndn::NameComponents>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
177 ## 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 Afanasyevcf6dc922012-08-10 16:55:27 -0700351 ## ndn-name-components.h (module 'ndnSIM'): ns3::ndn::NameComponents [class]
352 module.add_class('NameComponents', parent=root_module['ns3::SimpleRefCount< ns3::ndn::NameComponents, ns3::empty, ns3::DefaultDeleter<ns3::ndn::NameComponents> >'])
353 ## ndn-name-components.h (module 'ndnSIM'): ns3::ndn::NameComponentsChecker [class]
354 module.add_class('NameComponentsChecker', parent=root_module['ns3::AttributeChecker'])
355 ## ndn-name-components.h (module 'ndnSIM'): ns3::ndn::NameComponentsValue [class]
356 module.add_class('NameComponentsValue', parent=root_module['ns3::AttributeValue'])
357 ## ndn-net-device-face.h (module 'ndnSIM'): ns3::ndn::NetDeviceFace [class]
358 module.add_class('NetDeviceFace', parent=root_module['ns3::ndn::Face'])
359 ## ndn-pit.h (module 'ndnSIM'): ns3::ndn::Pit [class]
360 module.add_class('Pit', parent=root_module['ns3::Object'])
361 ## ndn-stack-helper.h (module 'ndnSIM'): ns3::ndn::StackHelper [class]
362 module.add_class('StackHelper')
363 ## ndn-header-helper.h (module 'ndnSIM'): ns3::ndn::UnknownHeaderException [class]
364 module.add_class('UnknownHeaderException')
365 ## ndn-app-face.h (module 'ndnSIM'): ns3::ndn::AppFace [class]
366 module.add_class('AppFace', parent=root_module['ns3::ndn::Face'])
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -0700367 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 -0700368 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')
369 module.add_container('std::list< std::string >', 'std::string', container_type='list')
370
371 ## Register a nested module for the namespace cs
372
373 nested_module = module.add_cpp_namespace('cs')
374 register_types_ns3_ndn_cs(nested_module)
375
376
377 ## Register a nested module for the namespace fib
378
379 nested_module = module.add_cpp_namespace('fib')
380 register_types_ns3_ndn_fib(nested_module)
381
382
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -0700383 ## Register a nested module for the namespace fw
384
385 nested_module = module.add_cpp_namespace('fw')
386 register_types_ns3_ndn_fw(nested_module)
387
388
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700389 ## Register a nested module for the namespace pit
390
391 nested_module = module.add_cpp_namespace('pit')
392 register_types_ns3_ndn_pit(nested_module)
393
394
395def register_types_ns3_ndn_cs(module):
396 root_module = module.get_root()
397
398 ## ndn-content-store.h (module 'ndnSIM'): ns3::ndn::cs::Entry [class]
399 module.add_class('Entry', parent=root_module['ns3::SimpleRefCount< ns3::ndn::cs::Entry, ns3::empty, ns3::DefaultDeleter<ns3::ndn::cs::Entry> >'])
400
401def register_types_ns3_ndn_fib(module):
402 root_module = module.get_root()
403
404 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::Entry [class]
Alexander Afanasyevf5c07742012-10-31 13:13:05 -0700405 module.add_class('Entry', parent=root_module['ns3::Object'])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700406 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::Entry::NoFaces [class]
407 module.add_class('NoFaces', outer_class=root_module['ns3::ndn::fib::Entry'])
408 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::FaceMetric [class]
409 module.add_class('FaceMetric')
410 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::FaceMetric::Status [enumeration]
411 module.add_enum('Status', ['NDN_FIB_GREEN', 'NDN_FIB_YELLOW', 'NDN_FIB_RED'], outer_class=root_module['ns3::ndn::fib::FaceMetric'])
412 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::FaceMetricContainer [struct]
413 module.add_class('FaceMetricContainer')
414 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::i_face [class]
415 module.add_class('i_face')
416 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::i_metric [class]
417 module.add_class('i_metric')
418 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::i_nth [class]
419 module.add_class('i_nth')
420
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -0700421def register_types_ns3_ndn_fw(module):
422 root_module = module.get_root()
423
424 ## ndn-fw-tag.h (module 'ndnSIM'): ns3::ndn::fw::Tag [class]
425 module.add_class('Tag')
426
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700427def register_types_ns3_ndn_pit(module):
428 root_module = module.get_root()
429
430 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::ndn::pit::Entry [class]
431 module.add_class('Entry', parent=root_module['ns3::SimpleRefCount< ns3::ndn::pit::Entry, ns3::empty, ns3::DefaultDeleter<ns3::ndn::pit::Entry> >'])
432 ## ndn-pit-entry-incoming-face.h (module 'ndnSIM'): ns3::ndn::pit::IncomingFace [struct]
433 module.add_class('IncomingFace')
434 ## ndn-pit-entry-outgoing-face.h (module 'ndnSIM'): ns3::ndn::pit::OutgoingFace [struct]
435 module.add_class('OutgoingFace')
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700436 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::ndn::pit::i_face [class]
437 module.add_class('i_face')
438 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::ndn::pit::i_retx [class]
439 module.add_class('i_retx')
440 module.add_container('std::set< ns3::ndn::pit::IncomingFace >', 'ns3::ndn::pit::IncomingFace', container_type='set')
Alexander Afanasyevc202fd92012-09-03 21:46:00 -0700441 module.add_container('std::set< ns3::ndn::pit::OutgoingFace >', 'ns3::ndn::pit::OutgoingFace', container_type='set')
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700442 module.add_container('std::set< unsigned int >', 'unsigned int', container_type='set')
443
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800444def register_methods(root_module):
445 register_Ns3Address_methods(root_module, root_module['ns3::Address'])
446 register_Ns3ApplicationContainer_methods(root_module, root_module['ns3::ApplicationContainer'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800447 register_Ns3AttributeConstructionList_methods(root_module, root_module['ns3::AttributeConstructionList'])
448 register_Ns3AttributeConstructionListItem_methods(root_module, root_module['ns3::AttributeConstructionList::Item'])
449 register_Ns3Buffer_methods(root_module, root_module['ns3::Buffer'])
450 register_Ns3BufferIterator_methods(root_module, root_module['ns3::Buffer::Iterator'])
451 register_Ns3ByteTagIterator_methods(root_module, root_module['ns3::ByteTagIterator'])
452 register_Ns3ByteTagIteratorItem_methods(root_module, root_module['ns3::ByteTagIterator::Item'])
453 register_Ns3ByteTagList_methods(root_module, root_module['ns3::ByteTagList'])
454 register_Ns3ByteTagListIterator_methods(root_module, root_module['ns3::ByteTagList::Iterator'])
455 register_Ns3ByteTagListIteratorItem_methods(root_module, root_module['ns3::ByteTagList::Iterator::Item'])
456 register_Ns3CallbackBase_methods(root_module, root_module['ns3::CallbackBase'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800457 register_Ns3EventId_methods(root_module, root_module['ns3::EventId'])
458 register_Ns3Ipv4Address_methods(root_module, root_module['ns3::Ipv4Address'])
459 register_Ns3Ipv4Mask_methods(root_module, root_module['ns3::Ipv4Mask'])
460 register_Ns3Ipv6Address_methods(root_module, root_module['ns3::Ipv6Address'])
461 register_Ns3Ipv6Prefix_methods(root_module, root_module['ns3::Ipv6Prefix'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700462 register_Ns3NetDeviceContainer_methods(root_module, root_module['ns3::NetDeviceContainer'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800463 register_Ns3NodeContainer_methods(root_module, root_module['ns3::NodeContainer'])
464 register_Ns3ObjectBase_methods(root_module, root_module['ns3::ObjectBase'])
465 register_Ns3ObjectDeleter_methods(root_module, root_module['ns3::ObjectDeleter'])
466 register_Ns3ObjectFactory_methods(root_module, root_module['ns3::ObjectFactory'])
467 register_Ns3PacketMetadata_methods(root_module, root_module['ns3::PacketMetadata'])
468 register_Ns3PacketMetadataItem_methods(root_module, root_module['ns3::PacketMetadata::Item'])
469 register_Ns3PacketMetadataItemIterator_methods(root_module, root_module['ns3::PacketMetadata::ItemIterator'])
Alexander Afanasyevad5acce2012-05-31 12:43:08 -0700470 register_Ns3PacketTagIterator_methods(root_module, root_module['ns3::PacketTagIterator'])
471 register_Ns3PacketTagIteratorItem_methods(root_module, root_module['ns3::PacketTagIterator::Item'])
472 register_Ns3PacketTagList_methods(root_module, root_module['ns3::PacketTagList'])
473 register_Ns3PacketTagListTagData_methods(root_module, root_module['ns3::PacketTagList::TagData'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700474 register_Ns3RandomVariable_methods(root_module, root_module['ns3::RandomVariable'])
475 register_Ns3RngSeedManager_methods(root_module, root_module['ns3::RngSeedManager'])
476 register_Ns3SequentialVariable_methods(root_module, root_module['ns3::SequentialVariable'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800477 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 -0700478 register_Ns3Tag_methods(root_module, root_module['ns3::Tag'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800479 register_Ns3TagBuffer_methods(root_module, root_module['ns3::TagBuffer'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700480 register_Ns3TriangularVariable_methods(root_module, root_module['ns3::TriangularVariable'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800481 register_Ns3TypeId_methods(root_module, root_module['ns3::TypeId'])
482 register_Ns3TypeIdAttributeInformation_methods(root_module, root_module['ns3::TypeId::AttributeInformation'])
483 register_Ns3TypeIdTraceSourceInformation_methods(root_module, root_module['ns3::TypeId::TraceSourceInformation'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700484 register_Ns3UniformVariable_methods(root_module, root_module['ns3::UniformVariable'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700485 register_Ns3WeibullVariable_methods(root_module, root_module['ns3::WeibullVariable'])
486 register_Ns3ZetaVariable_methods(root_module, root_module['ns3::ZetaVariable'])
487 register_Ns3ZipfVariable_methods(root_module, root_module['ns3::ZipfVariable'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800488 register_Ns3Empty_methods(root_module, root_module['ns3::empty'])
489 register_Ns3Int64x64_t_methods(root_module, root_module['ns3::int64x64_t'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800490 register_Ns3Chunk_methods(root_module, root_module['ns3::Chunk'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700491 register_Ns3ConstantVariable_methods(root_module, root_module['ns3::ConstantVariable'])
492 register_Ns3DeterministicVariable_methods(root_module, root_module['ns3::DeterministicVariable'])
493 register_Ns3EmpiricalVariable_methods(root_module, root_module['ns3::EmpiricalVariable'])
494 register_Ns3ErlangVariable_methods(root_module, root_module['ns3::ErlangVariable'])
495 register_Ns3ExponentialVariable_methods(root_module, root_module['ns3::ExponentialVariable'])
496 register_Ns3GammaVariable_methods(root_module, root_module['ns3::GammaVariable'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800497 register_Ns3Header_methods(root_module, root_module['ns3::Header'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700498 register_Ns3IntEmpiricalVariable_methods(root_module, root_module['ns3::IntEmpiricalVariable'])
499 register_Ns3LogNormalVariable_methods(root_module, root_module['ns3::LogNormalVariable'])
500 register_Ns3NormalVariable_methods(root_module, root_module['ns3::NormalVariable'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800501 register_Ns3Object_methods(root_module, root_module['ns3::Object'])
502 register_Ns3ObjectAggregateIterator_methods(root_module, root_module['ns3::Object::AggregateIterator'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700503 register_Ns3ParetoVariable_methods(root_module, root_module['ns3::ParetoVariable'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800504 register_Ns3SimpleRefCount__Ns3AttributeAccessor_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeAccessor__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> >'])
505 register_Ns3SimpleRefCount__Ns3AttributeChecker_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeChecker__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter<ns3::AttributeChecker> >'])
506 register_Ns3SimpleRefCount__Ns3AttributeValue_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeValue__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter<ns3::AttributeValue> >'])
507 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 -0800508 register_Ns3SimpleRefCount__Ns3EventImpl_Ns3Empty_Ns3DefaultDeleter__lt__ns3EventImpl__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::EventImpl, ns3::empty, ns3::DefaultDeleter<ns3::EventImpl> >'])
509 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 -0800510 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 -0700511 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 -0800512 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 -0700513 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> >'])
514 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> >'])
515 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> >'])
516 register_Ns3SimpleRefCount__Ns3NdnNameComponents_Ns3Empty_Ns3DefaultDeleter__lt__ns3NdnNameComponents__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::ndn::NameComponents, ns3::empty, ns3::DefaultDeleter<ns3::ndn::NameComponents> >'])
517 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 -0700518 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 -0800519 register_Ns3Time_methods(root_module, root_module['ns3::Time'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700520 register_Ns3TopologyReader_methods(root_module, root_module['ns3::TopologyReader'])
521 register_Ns3TopologyReaderLink_methods(root_module, root_module['ns3::TopologyReader::Link'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800522 register_Ns3TraceSourceAccessor_methods(root_module, root_module['ns3::TraceSourceAccessor'])
523 register_Ns3Trailer_methods(root_module, root_module['ns3::Trailer'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700524 register_Ns3AnnotatedTopologyReader_methods(root_module, root_module['ns3::AnnotatedTopologyReader'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800525 register_Ns3Application_methods(root_module, root_module['ns3::Application'])
526 register_Ns3AttributeAccessor_methods(root_module, root_module['ns3::AttributeAccessor'])
527 register_Ns3AttributeChecker_methods(root_module, root_module['ns3::AttributeChecker'])
528 register_Ns3AttributeValue_methods(root_module, root_module['ns3::AttributeValue'])
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -0700529 register_Ns3BooleanChecker_methods(root_module, root_module['ns3::BooleanChecker'])
530 register_Ns3BooleanValue_methods(root_module, root_module['ns3::BooleanValue'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800531 register_Ns3CallbackChecker_methods(root_module, root_module['ns3::CallbackChecker'])
532 register_Ns3CallbackImplBase_methods(root_module, root_module['ns3::CallbackImplBase'])
533 register_Ns3CallbackValue_methods(root_module, root_module['ns3::CallbackValue'])
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -0700534 register_Ns3DoubleValue_methods(root_module, root_module['ns3::DoubleValue'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800535 register_Ns3EmptyAttributeValue_methods(root_module, root_module['ns3::EmptyAttributeValue'])
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -0700536 register_Ns3EnumChecker_methods(root_module, root_module['ns3::EnumChecker'])
537 register_Ns3EnumValue_methods(root_module, root_module['ns3::EnumValue'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800538 register_Ns3EventImpl_methods(root_module, root_module['ns3::EventImpl'])
539 register_Ns3IntegerValue_methods(root_module, root_module['ns3::IntegerValue'])
540 register_Ns3Ipv4AddressChecker_methods(root_module, root_module['ns3::Ipv4AddressChecker'])
541 register_Ns3Ipv4AddressValue_methods(root_module, root_module['ns3::Ipv4AddressValue'])
542 register_Ns3Ipv4MaskChecker_methods(root_module, root_module['ns3::Ipv4MaskChecker'])
543 register_Ns3Ipv4MaskValue_methods(root_module, root_module['ns3::Ipv4MaskValue'])
544 register_Ns3Ipv6AddressChecker_methods(root_module, root_module['ns3::Ipv6AddressChecker'])
545 register_Ns3Ipv6AddressValue_methods(root_module, root_module['ns3::Ipv6AddressValue'])
546 register_Ns3Ipv6PrefixChecker_methods(root_module, root_module['ns3::Ipv6PrefixChecker'])
547 register_Ns3Ipv6PrefixValue_methods(root_module, root_module['ns3::Ipv6PrefixValue'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800548 register_Ns3NetDevice_methods(root_module, root_module['ns3::NetDevice'])
549 register_Ns3NixVector_methods(root_module, root_module['ns3::NixVector'])
550 register_Ns3Node_methods(root_module, root_module['ns3::Node'])
551 register_Ns3ObjectFactoryChecker_methods(root_module, root_module['ns3::ObjectFactoryChecker'])
552 register_Ns3ObjectFactoryValue_methods(root_module, root_module['ns3::ObjectFactoryValue'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800553 register_Ns3Packet_methods(root_module, root_module['ns3::Packet'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700554 register_Ns3RandomVariableChecker_methods(root_module, root_module['ns3::RandomVariableChecker'])
555 register_Ns3RandomVariableValue_methods(root_module, root_module['ns3::RandomVariableValue'])
556 register_Ns3RocketfuelWeightsReader_methods(root_module, root_module['ns3::RocketfuelWeightsReader'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800557 register_Ns3TimeChecker_methods(root_module, root_module['ns3::TimeChecker'])
558 register_Ns3TimeValue_methods(root_module, root_module['ns3::TimeValue'])
559 register_Ns3TypeIdChecker_methods(root_module, root_module['ns3::TypeIdChecker'])
560 register_Ns3TypeIdValue_methods(root_module, root_module['ns3::TypeIdValue'])
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -0700561 register_Ns3UintegerValue_methods(root_module, root_module['ns3::UintegerValue'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800562 register_Ns3AddressChecker_methods(root_module, root_module['ns3::AddressChecker'])
563 register_Ns3AddressValue_methods(root_module, root_module['ns3::AddressValue'])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700564 register_Ns3NdnApp_methods(root_module, root_module['ns3::ndn::App'])
565 register_Ns3NdnAppHelper_methods(root_module, root_module['ns3::ndn::AppHelper'])
566 register_Ns3NdnContentObjectHeader_methods(root_module, root_module['ns3::ndn::ContentObjectHeader'])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700567 register_Ns3NdnContentObjectHeaderException_methods(root_module, root_module['ns3::ndn::ContentObjectHeaderException'])
568 register_Ns3NdnContentObjectTail_methods(root_module, root_module['ns3::ndn::ContentObjectTail'])
569 register_Ns3NdnContentStore_methods(root_module, root_module['ns3::ndn::ContentStore'])
570 register_Ns3NdnFace_methods(root_module, root_module['ns3::ndn::Face'])
571 register_Ns3NdnFaceContainer_methods(root_module, root_module['ns3::ndn::FaceContainer'])
572 register_Ns3NdnFib_methods(root_module, root_module['ns3::ndn::Fib'])
573 register_Ns3NdnForwardingStrategy_methods(root_module, root_module['ns3::ndn::ForwardingStrategy'])
574 register_Ns3NdnGlobalRoutingHelper_methods(root_module, root_module['ns3::ndn::GlobalRoutingHelper'])
575 register_Ns3NdnHeaderHelper_methods(root_module, root_module['ns3::ndn::HeaderHelper'])
576 register_Ns3NdnInterestHeader_methods(root_module, root_module['ns3::ndn::InterestHeader'])
577 register_Ns3NdnInterestHeaderException_methods(root_module, root_module['ns3::ndn::InterestHeaderException'])
578 register_Ns3NdnL3Protocol_methods(root_module, root_module['ns3::ndn::L3Protocol'])
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -0700579 register_Ns3NdnLimits_methods(root_module, root_module['ns3::ndn::Limits'])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700580 register_Ns3NdnNameComponents_methods(root_module, root_module['ns3::ndn::NameComponents'])
581 register_Ns3NdnNameComponentsChecker_methods(root_module, root_module['ns3::ndn::NameComponentsChecker'])
582 register_Ns3NdnNameComponentsValue_methods(root_module, root_module['ns3::ndn::NameComponentsValue'])
583 register_Ns3NdnNetDeviceFace_methods(root_module, root_module['ns3::ndn::NetDeviceFace'])
584 register_Ns3NdnPit_methods(root_module, root_module['ns3::ndn::Pit'])
585 register_Ns3NdnStackHelper_methods(root_module, root_module['ns3::ndn::StackHelper'])
586 register_Ns3NdnUnknownHeaderException_methods(root_module, root_module['ns3::ndn::UnknownHeaderException'])
587 register_Ns3NdnAppFace_methods(root_module, root_module['ns3::ndn::AppFace'])
588 register_Ns3NdnCsEntry_methods(root_module, root_module['ns3::ndn::cs::Entry'])
589 register_Ns3NdnFibEntry_methods(root_module, root_module['ns3::ndn::fib::Entry'])
590 register_Ns3NdnFibEntryNoFaces_methods(root_module, root_module['ns3::ndn::fib::Entry::NoFaces'])
591 register_Ns3NdnFibFaceMetric_methods(root_module, root_module['ns3::ndn::fib::FaceMetric'])
592 register_Ns3NdnFibFaceMetricContainer_methods(root_module, root_module['ns3::ndn::fib::FaceMetricContainer'])
593 register_Ns3NdnFibI_face_methods(root_module, root_module['ns3::ndn::fib::i_face'])
594 register_Ns3NdnFibI_metric_methods(root_module, root_module['ns3::ndn::fib::i_metric'])
595 register_Ns3NdnFibI_nth_methods(root_module, root_module['ns3::ndn::fib::i_nth'])
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -0700596 register_Ns3NdnFwTag_methods(root_module, root_module['ns3::ndn::fw::Tag'])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700597 register_Ns3NdnPitEntry_methods(root_module, root_module['ns3::ndn::pit::Entry'])
598 register_Ns3NdnPitIncomingFace_methods(root_module, root_module['ns3::ndn::pit::IncomingFace'])
599 register_Ns3NdnPitOutgoingFace_methods(root_module, root_module['ns3::ndn::pit::OutgoingFace'])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700600 register_Ns3NdnPitI_face_methods(root_module, root_module['ns3::ndn::pit::i_face'])
601 register_Ns3NdnPitI_retx_methods(root_module, root_module['ns3::ndn::pit::i_retx'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800602 return
603
604def register_Ns3Address_methods(root_module, cls):
605 cls.add_binary_comparison_operator('!=')
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -0700606 cls.add_output_stream_operator()
Alexander Afanasyeva28ec562012-10-25 14:07:32 -0700607 cls.add_binary_comparison_operator('==')
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800608 cls.add_binary_comparison_operator('<')
609 ## address.h (module 'network'): ns3::Address::Address() [constructor]
610 cls.add_constructor([])
611 ## address.h (module 'network'): ns3::Address::Address(uint8_t type, uint8_t const * buffer, uint8_t len) [constructor]
612 cls.add_constructor([param('uint8_t', 'type'), param('uint8_t const *', 'buffer'), param('uint8_t', 'len')])
613 ## address.h (module 'network'): ns3::Address::Address(ns3::Address const & address) [copy constructor]
614 cls.add_constructor([param('ns3::Address const &', 'address')])
615 ## address.h (module 'network'): bool ns3::Address::CheckCompatible(uint8_t type, uint8_t len) const [member function]
616 cls.add_method('CheckCompatible',
617 'bool',
618 [param('uint8_t', 'type'), param('uint8_t', 'len')],
619 is_const=True)
620 ## address.h (module 'network'): uint32_t ns3::Address::CopyAllFrom(uint8_t const * buffer, uint8_t len) [member function]
621 cls.add_method('CopyAllFrom',
622 'uint32_t',
623 [param('uint8_t const *', 'buffer'), param('uint8_t', 'len')])
624 ## address.h (module 'network'): uint32_t ns3::Address::CopyAllTo(uint8_t * buffer, uint8_t len) const [member function]
625 cls.add_method('CopyAllTo',
626 'uint32_t',
627 [param('uint8_t *', 'buffer'), param('uint8_t', 'len')],
628 is_const=True)
629 ## address.h (module 'network'): uint32_t ns3::Address::CopyFrom(uint8_t const * buffer, uint8_t len) [member function]
630 cls.add_method('CopyFrom',
631 'uint32_t',
632 [param('uint8_t const *', 'buffer'), param('uint8_t', 'len')])
633 ## address.h (module 'network'): uint32_t ns3::Address::CopyTo(uint8_t * buffer) const [member function]
634 cls.add_method('CopyTo',
635 'uint32_t',
636 [param('uint8_t *', 'buffer')],
637 is_const=True)
638 ## address.h (module 'network'): void ns3::Address::Deserialize(ns3::TagBuffer buffer) [member function]
639 cls.add_method('Deserialize',
640 'void',
641 [param('ns3::TagBuffer', 'buffer')])
642 ## address.h (module 'network'): uint8_t ns3::Address::GetLength() const [member function]
643 cls.add_method('GetLength',
644 'uint8_t',
645 [],
646 is_const=True)
647 ## address.h (module 'network'): uint32_t ns3::Address::GetSerializedSize() const [member function]
648 cls.add_method('GetSerializedSize',
649 'uint32_t',
650 [],
651 is_const=True)
652 ## address.h (module 'network'): bool ns3::Address::IsInvalid() const [member function]
653 cls.add_method('IsInvalid',
654 'bool',
655 [],
656 is_const=True)
657 ## address.h (module 'network'): bool ns3::Address::IsMatchingType(uint8_t type) const [member function]
658 cls.add_method('IsMatchingType',
659 'bool',
660 [param('uint8_t', 'type')],
661 is_const=True)
662 ## address.h (module 'network'): static uint8_t ns3::Address::Register() [member function]
663 cls.add_method('Register',
664 'uint8_t',
665 [],
666 is_static=True)
667 ## address.h (module 'network'): void ns3::Address::Serialize(ns3::TagBuffer buffer) const [member function]
668 cls.add_method('Serialize',
669 'void',
670 [param('ns3::TagBuffer', 'buffer')],
671 is_const=True)
672 return
673
674def register_Ns3ApplicationContainer_methods(root_module, cls):
675 ## application-container.h (module 'network'): ns3::ApplicationContainer::ApplicationContainer(ns3::ApplicationContainer const & arg0) [copy constructor]
676 cls.add_constructor([param('ns3::ApplicationContainer const &', 'arg0')])
677 ## application-container.h (module 'network'): ns3::ApplicationContainer::ApplicationContainer() [constructor]
678 cls.add_constructor([])
679 ## application-container.h (module 'network'): ns3::ApplicationContainer::ApplicationContainer(ns3::Ptr<ns3::Application> application) [constructor]
680 cls.add_constructor([param('ns3::Ptr< ns3::Application >', 'application')])
681 ## application-container.h (module 'network'): ns3::ApplicationContainer::ApplicationContainer(std::string name) [constructor]
682 cls.add_constructor([param('std::string', 'name')])
683 ## application-container.h (module 'network'): void ns3::ApplicationContainer::Add(ns3::ApplicationContainer other) [member function]
684 cls.add_method('Add',
685 'void',
686 [param('ns3::ApplicationContainer', 'other')])
687 ## application-container.h (module 'network'): void ns3::ApplicationContainer::Add(ns3::Ptr<ns3::Application> application) [member function]
688 cls.add_method('Add',
689 'void',
690 [param('ns3::Ptr< ns3::Application >', 'application')])
691 ## application-container.h (module 'network'): void ns3::ApplicationContainer::Add(std::string name) [member function]
692 cls.add_method('Add',
693 'void',
694 [param('std::string', 'name')])
695 ## 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]
696 cls.add_method('Begin',
697 '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Application > const, std::vector< ns3::Ptr< ns3::Application > > >',
698 [],
699 is_const=True)
700 ## 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]
701 cls.add_method('End',
702 '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Application > const, std::vector< ns3::Ptr< ns3::Application > > >',
703 [],
704 is_const=True)
705 ## application-container.h (module 'network'): ns3::Ptr<ns3::Application> ns3::ApplicationContainer::Get(uint32_t i) const [member function]
706 cls.add_method('Get',
707 'ns3::Ptr< ns3::Application >',
708 [param('uint32_t', 'i')],
709 is_const=True)
710 ## application-container.h (module 'network'): uint32_t ns3::ApplicationContainer::GetN() const [member function]
711 cls.add_method('GetN',
712 'uint32_t',
713 [],
714 is_const=True)
715 ## application-container.h (module 'network'): void ns3::ApplicationContainer::Start(ns3::Time start) [member function]
716 cls.add_method('Start',
717 'void',
718 [param('ns3::Time', 'start')])
719 ## application-container.h (module 'network'): void ns3::ApplicationContainer::Stop(ns3::Time stop) [member function]
720 cls.add_method('Stop',
721 'void',
722 [param('ns3::Time', 'stop')])
723 return
724
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800725def register_Ns3AttributeConstructionList_methods(root_module, cls):
726 ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::AttributeConstructionList(ns3::AttributeConstructionList const & arg0) [copy constructor]
727 cls.add_constructor([param('ns3::AttributeConstructionList const &', 'arg0')])
728 ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::AttributeConstructionList() [constructor]
729 cls.add_constructor([])
730 ## 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]
731 cls.add_method('Add',
732 'void',
733 [param('std::string', 'name'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker'), param('ns3::Ptr< ns3::AttributeValue >', 'value')])
734 ## attribute-construction-list.h (module 'core'): std::_List_const_iterator<ns3::AttributeConstructionList::Item> ns3::AttributeConstructionList::Begin() const [member function]
735 cls.add_method('Begin',
736 'std::_List_const_iterator< ns3::AttributeConstructionList::Item >',
737 [],
738 is_const=True)
739 ## attribute-construction-list.h (module 'core'): std::_List_const_iterator<ns3::AttributeConstructionList::Item> ns3::AttributeConstructionList::End() const [member function]
740 cls.add_method('End',
741 'std::_List_const_iterator< ns3::AttributeConstructionList::Item >',
742 [],
743 is_const=True)
744 ## attribute-construction-list.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::AttributeConstructionList::Find(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
745 cls.add_method('Find',
746 'ns3::Ptr< ns3::AttributeValue >',
747 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
748 is_const=True)
749 return
750
751def register_Ns3AttributeConstructionListItem_methods(root_module, cls):
752 ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item::Item() [constructor]
753 cls.add_constructor([])
754 ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item::Item(ns3::AttributeConstructionList::Item const & arg0) [copy constructor]
755 cls.add_constructor([param('ns3::AttributeConstructionList::Item const &', 'arg0')])
756 ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item::checker [variable]
757 cls.add_instance_attribute('checker', 'ns3::Ptr< ns3::AttributeChecker const >', is_const=False)
758 ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item::name [variable]
759 cls.add_instance_attribute('name', 'std::string', is_const=False)
760 ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item::value [variable]
761 cls.add_instance_attribute('value', 'ns3::Ptr< ns3::AttributeValue >', is_const=False)
762 return
763
764def register_Ns3Buffer_methods(root_module, cls):
765 ## buffer.h (module 'network'): ns3::Buffer::Buffer() [constructor]
766 cls.add_constructor([])
767 ## buffer.h (module 'network'): ns3::Buffer::Buffer(uint32_t dataSize) [constructor]
768 cls.add_constructor([param('uint32_t', 'dataSize')])
769 ## buffer.h (module 'network'): ns3::Buffer::Buffer(uint32_t dataSize, bool initialize) [constructor]
770 cls.add_constructor([param('uint32_t', 'dataSize'), param('bool', 'initialize')])
771 ## buffer.h (module 'network'): ns3::Buffer::Buffer(ns3::Buffer const & o) [copy constructor]
772 cls.add_constructor([param('ns3::Buffer const &', 'o')])
773 ## buffer.h (module 'network'): bool ns3::Buffer::AddAtEnd(uint32_t end) [member function]
774 cls.add_method('AddAtEnd',
775 'bool',
776 [param('uint32_t', 'end')])
777 ## buffer.h (module 'network'): void ns3::Buffer::AddAtEnd(ns3::Buffer const & o) [member function]
778 cls.add_method('AddAtEnd',
779 'void',
780 [param('ns3::Buffer const &', 'o')])
781 ## buffer.h (module 'network'): bool ns3::Buffer::AddAtStart(uint32_t start) [member function]
782 cls.add_method('AddAtStart',
783 'bool',
784 [param('uint32_t', 'start')])
785 ## buffer.h (module 'network'): ns3::Buffer::Iterator ns3::Buffer::Begin() const [member function]
786 cls.add_method('Begin',
787 'ns3::Buffer::Iterator',
788 [],
789 is_const=True)
790 ## buffer.h (module 'network'): void ns3::Buffer::CopyData(std::ostream * os, uint32_t size) const [member function]
791 cls.add_method('CopyData',
792 'void',
793 [param('std::ostream *', 'os'), param('uint32_t', 'size')],
794 is_const=True)
795 ## buffer.h (module 'network'): uint32_t ns3::Buffer::CopyData(uint8_t * buffer, uint32_t size) const [member function]
796 cls.add_method('CopyData',
797 'uint32_t',
798 [param('uint8_t *', 'buffer'), param('uint32_t', 'size')],
799 is_const=True)
800 ## buffer.h (module 'network'): ns3::Buffer ns3::Buffer::CreateFragment(uint32_t start, uint32_t length) const [member function]
801 cls.add_method('CreateFragment',
802 'ns3::Buffer',
803 [param('uint32_t', 'start'), param('uint32_t', 'length')],
804 is_const=True)
805 ## buffer.h (module 'network'): ns3::Buffer ns3::Buffer::CreateFullCopy() const [member function]
806 cls.add_method('CreateFullCopy',
807 'ns3::Buffer',
808 [],
809 is_const=True)
810 ## buffer.h (module 'network'): uint32_t ns3::Buffer::Deserialize(uint8_t const * buffer, uint32_t size) [member function]
811 cls.add_method('Deserialize',
812 'uint32_t',
813 [param('uint8_t const *', 'buffer'), param('uint32_t', 'size')])
814 ## buffer.h (module 'network'): ns3::Buffer::Iterator ns3::Buffer::End() const [member function]
815 cls.add_method('End',
816 'ns3::Buffer::Iterator',
817 [],
818 is_const=True)
819 ## buffer.h (module 'network'): int32_t ns3::Buffer::GetCurrentEndOffset() const [member function]
820 cls.add_method('GetCurrentEndOffset',
821 'int32_t',
822 [],
823 is_const=True)
824 ## buffer.h (module 'network'): int32_t ns3::Buffer::GetCurrentStartOffset() const [member function]
825 cls.add_method('GetCurrentStartOffset',
826 'int32_t',
827 [],
828 is_const=True)
829 ## buffer.h (module 'network'): uint32_t ns3::Buffer::GetSerializedSize() const [member function]
830 cls.add_method('GetSerializedSize',
831 'uint32_t',
832 [],
833 is_const=True)
834 ## buffer.h (module 'network'): uint32_t ns3::Buffer::GetSize() const [member function]
835 cls.add_method('GetSize',
836 'uint32_t',
837 [],
838 is_const=True)
839 ## buffer.h (module 'network'): uint8_t const * ns3::Buffer::PeekData() const [member function]
840 cls.add_method('PeekData',
841 'uint8_t const *',
842 [],
843 is_const=True)
844 ## buffer.h (module 'network'): void ns3::Buffer::RemoveAtEnd(uint32_t end) [member function]
845 cls.add_method('RemoveAtEnd',
846 'void',
847 [param('uint32_t', 'end')])
848 ## buffer.h (module 'network'): void ns3::Buffer::RemoveAtStart(uint32_t start) [member function]
849 cls.add_method('RemoveAtStart',
850 'void',
851 [param('uint32_t', 'start')])
852 ## buffer.h (module 'network'): uint32_t ns3::Buffer::Serialize(uint8_t * buffer, uint32_t maxSize) const [member function]
853 cls.add_method('Serialize',
854 'uint32_t',
855 [param('uint8_t *', 'buffer'), param('uint32_t', 'maxSize')],
856 is_const=True)
857 return
858
859def register_Ns3BufferIterator_methods(root_module, cls):
860 ## buffer.h (module 'network'): ns3::Buffer::Iterator::Iterator(ns3::Buffer::Iterator const & arg0) [copy constructor]
861 cls.add_constructor([param('ns3::Buffer::Iterator const &', 'arg0')])
862 ## buffer.h (module 'network'): ns3::Buffer::Iterator::Iterator() [constructor]
863 cls.add_constructor([])
864 ## buffer.h (module 'network'): uint16_t ns3::Buffer::Iterator::CalculateIpChecksum(uint16_t size) [member function]
865 cls.add_method('CalculateIpChecksum',
866 'uint16_t',
867 [param('uint16_t', 'size')])
868 ## buffer.h (module 'network'): uint16_t ns3::Buffer::Iterator::CalculateIpChecksum(uint16_t size, uint32_t initialChecksum) [member function]
869 cls.add_method('CalculateIpChecksum',
870 'uint16_t',
871 [param('uint16_t', 'size'), param('uint32_t', 'initialChecksum')])
872 ## buffer.h (module 'network'): uint32_t ns3::Buffer::Iterator::GetDistanceFrom(ns3::Buffer::Iterator const & o) const [member function]
873 cls.add_method('GetDistanceFrom',
874 'uint32_t',
875 [param('ns3::Buffer::Iterator const &', 'o')],
876 is_const=True)
877 ## buffer.h (module 'network'): uint32_t ns3::Buffer::Iterator::GetSize() const [member function]
878 cls.add_method('GetSize',
879 'uint32_t',
880 [],
881 is_const=True)
882 ## buffer.h (module 'network'): bool ns3::Buffer::Iterator::IsEnd() const [member function]
883 cls.add_method('IsEnd',
884 'bool',
885 [],
886 is_const=True)
887 ## buffer.h (module 'network'): bool ns3::Buffer::Iterator::IsStart() const [member function]
888 cls.add_method('IsStart',
889 'bool',
890 [],
891 is_const=True)
892 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Next() [member function]
893 cls.add_method('Next',
894 'void',
895 [])
896 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Next(uint32_t delta) [member function]
897 cls.add_method('Next',
898 'void',
899 [param('uint32_t', 'delta')])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -0700900 ## buffer.h (module 'network'): uint8_t ns3::Buffer::Iterator::PeekU8() [member function]
901 cls.add_method('PeekU8',
902 'uint8_t',
903 [])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800904 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Prev() [member function]
905 cls.add_method('Prev',
906 'void',
907 [])
908 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Prev(uint32_t delta) [member function]
909 cls.add_method('Prev',
910 'void',
911 [param('uint32_t', 'delta')])
912 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Read(uint8_t * buffer, uint32_t size) [member function]
913 cls.add_method('Read',
914 'void',
915 [param('uint8_t *', 'buffer'), param('uint32_t', 'size')])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -0700916 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Read(ns3::Buffer::Iterator start, uint32_t size) [member function]
917 cls.add_method('Read',
918 'void',
919 [param('ns3::Buffer::Iterator', 'start'), param('uint32_t', 'size')])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800920 ## buffer.h (module 'network'): uint16_t ns3::Buffer::Iterator::ReadLsbtohU16() [member function]
921 cls.add_method('ReadLsbtohU16',
922 'uint16_t',
923 [])
924 ## buffer.h (module 'network'): uint32_t ns3::Buffer::Iterator::ReadLsbtohU32() [member function]
925 cls.add_method('ReadLsbtohU32',
926 'uint32_t',
927 [])
928 ## buffer.h (module 'network'): uint64_t ns3::Buffer::Iterator::ReadLsbtohU64() [member function]
929 cls.add_method('ReadLsbtohU64',
930 'uint64_t',
931 [])
932 ## buffer.h (module 'network'): uint16_t ns3::Buffer::Iterator::ReadNtohU16() [member function]
933 cls.add_method('ReadNtohU16',
934 'uint16_t',
935 [])
936 ## buffer.h (module 'network'): uint32_t ns3::Buffer::Iterator::ReadNtohU32() [member function]
937 cls.add_method('ReadNtohU32',
938 'uint32_t',
939 [])
940 ## buffer.h (module 'network'): uint64_t ns3::Buffer::Iterator::ReadNtohU64() [member function]
941 cls.add_method('ReadNtohU64',
942 'uint64_t',
943 [])
944 ## buffer.h (module 'network'): uint16_t ns3::Buffer::Iterator::ReadU16() [member function]
945 cls.add_method('ReadU16',
946 'uint16_t',
947 [])
948 ## buffer.h (module 'network'): uint32_t ns3::Buffer::Iterator::ReadU32() [member function]
949 cls.add_method('ReadU32',
950 'uint32_t',
951 [])
952 ## buffer.h (module 'network'): uint64_t ns3::Buffer::Iterator::ReadU64() [member function]
953 cls.add_method('ReadU64',
954 'uint64_t',
955 [])
956 ## buffer.h (module 'network'): uint8_t ns3::Buffer::Iterator::ReadU8() [member function]
957 cls.add_method('ReadU8',
958 'uint8_t',
959 [])
960 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Write(uint8_t const * buffer, uint32_t size) [member function]
961 cls.add_method('Write',
962 'void',
963 [param('uint8_t const *', 'buffer'), param('uint32_t', 'size')])
964 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Write(ns3::Buffer::Iterator start, ns3::Buffer::Iterator end) [member function]
965 cls.add_method('Write',
966 'void',
967 [param('ns3::Buffer::Iterator', 'start'), param('ns3::Buffer::Iterator', 'end')])
968 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteHtolsbU16(uint16_t data) [member function]
969 cls.add_method('WriteHtolsbU16',
970 'void',
971 [param('uint16_t', 'data')])
972 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteHtolsbU32(uint32_t data) [member function]
973 cls.add_method('WriteHtolsbU32',
974 'void',
975 [param('uint32_t', 'data')])
976 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteHtolsbU64(uint64_t data) [member function]
977 cls.add_method('WriteHtolsbU64',
978 'void',
979 [param('uint64_t', 'data')])
980 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteHtonU16(uint16_t data) [member function]
981 cls.add_method('WriteHtonU16',
982 'void',
983 [param('uint16_t', 'data')])
984 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteHtonU32(uint32_t data) [member function]
985 cls.add_method('WriteHtonU32',
986 'void',
987 [param('uint32_t', 'data')])
988 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteHtonU64(uint64_t data) [member function]
989 cls.add_method('WriteHtonU64',
990 'void',
991 [param('uint64_t', 'data')])
992 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteU16(uint16_t data) [member function]
993 cls.add_method('WriteU16',
994 'void',
995 [param('uint16_t', 'data')])
996 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteU32(uint32_t data) [member function]
997 cls.add_method('WriteU32',
998 'void',
999 [param('uint32_t', 'data')])
1000 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteU64(uint64_t data) [member function]
1001 cls.add_method('WriteU64',
1002 'void',
1003 [param('uint64_t', 'data')])
1004 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteU8(uint8_t data) [member function]
1005 cls.add_method('WriteU8',
1006 'void',
1007 [param('uint8_t', 'data')])
1008 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteU8(uint8_t data, uint32_t len) [member function]
1009 cls.add_method('WriteU8',
1010 'void',
1011 [param('uint8_t', 'data'), param('uint32_t', 'len')])
1012 return
1013
1014def register_Ns3ByteTagIterator_methods(root_module, cls):
1015 ## packet.h (module 'network'): ns3::ByteTagIterator::ByteTagIterator(ns3::ByteTagIterator const & arg0) [copy constructor]
1016 cls.add_constructor([param('ns3::ByteTagIterator const &', 'arg0')])
1017 ## packet.h (module 'network'): bool ns3::ByteTagIterator::HasNext() const [member function]
1018 cls.add_method('HasNext',
1019 'bool',
1020 [],
1021 is_const=True)
1022 ## packet.h (module 'network'): ns3::ByteTagIterator::Item ns3::ByteTagIterator::Next() [member function]
1023 cls.add_method('Next',
1024 'ns3::ByteTagIterator::Item',
1025 [])
1026 return
1027
1028def register_Ns3ByteTagIteratorItem_methods(root_module, cls):
1029 ## packet.h (module 'network'): ns3::ByteTagIterator::Item::Item(ns3::ByteTagIterator::Item const & arg0) [copy constructor]
1030 cls.add_constructor([param('ns3::ByteTagIterator::Item const &', 'arg0')])
1031 ## packet.h (module 'network'): uint32_t ns3::ByteTagIterator::Item::GetEnd() const [member function]
1032 cls.add_method('GetEnd',
1033 'uint32_t',
1034 [],
1035 is_const=True)
1036 ## packet.h (module 'network'): uint32_t ns3::ByteTagIterator::Item::GetStart() const [member function]
1037 cls.add_method('GetStart',
1038 'uint32_t',
1039 [],
1040 is_const=True)
1041 ## packet.h (module 'network'): void ns3::ByteTagIterator::Item::GetTag(ns3::Tag & tag) const [member function]
1042 cls.add_method('GetTag',
1043 'void',
1044 [param('ns3::Tag &', 'tag')],
1045 is_const=True)
1046 ## packet.h (module 'network'): ns3::TypeId ns3::ByteTagIterator::Item::GetTypeId() const [member function]
1047 cls.add_method('GetTypeId',
1048 'ns3::TypeId',
1049 [],
1050 is_const=True)
1051 return
1052
1053def register_Ns3ByteTagList_methods(root_module, cls):
1054 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::ByteTagList() [constructor]
1055 cls.add_constructor([])
1056 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::ByteTagList(ns3::ByteTagList const & o) [copy constructor]
1057 cls.add_constructor([param('ns3::ByteTagList const &', 'o')])
1058 ## 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]
1059 cls.add_method('Add',
1060 'ns3::TagBuffer',
1061 [param('ns3::TypeId', 'tid'), param('uint32_t', 'bufferSize'), param('int32_t', 'start'), param('int32_t', 'end')])
1062 ## byte-tag-list.h (module 'network'): void ns3::ByteTagList::Add(ns3::ByteTagList const & o) [member function]
1063 cls.add_method('Add',
1064 'void',
1065 [param('ns3::ByteTagList const &', 'o')])
1066 ## byte-tag-list.h (module 'network'): void ns3::ByteTagList::AddAtEnd(int32_t adjustment, int32_t appendOffset) [member function]
1067 cls.add_method('AddAtEnd',
1068 'void',
1069 [param('int32_t', 'adjustment'), param('int32_t', 'appendOffset')])
1070 ## byte-tag-list.h (module 'network'): void ns3::ByteTagList::AddAtStart(int32_t adjustment, int32_t prependOffset) [member function]
1071 cls.add_method('AddAtStart',
1072 'void',
1073 [param('int32_t', 'adjustment'), param('int32_t', 'prependOffset')])
1074 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator ns3::ByteTagList::Begin(int32_t offsetStart, int32_t offsetEnd) const [member function]
1075 cls.add_method('Begin',
1076 'ns3::ByteTagList::Iterator',
1077 [param('int32_t', 'offsetStart'), param('int32_t', 'offsetEnd')],
1078 is_const=True)
1079 ## byte-tag-list.h (module 'network'): void ns3::ByteTagList::RemoveAll() [member function]
1080 cls.add_method('RemoveAll',
1081 'void',
1082 [])
1083 return
1084
1085def register_Ns3ByteTagListIterator_methods(root_module, cls):
1086 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Iterator(ns3::ByteTagList::Iterator const & arg0) [copy constructor]
1087 cls.add_constructor([param('ns3::ByteTagList::Iterator const &', 'arg0')])
1088 ## byte-tag-list.h (module 'network'): uint32_t ns3::ByteTagList::Iterator::GetOffsetStart() const [member function]
1089 cls.add_method('GetOffsetStart',
1090 'uint32_t',
1091 [],
1092 is_const=True)
1093 ## byte-tag-list.h (module 'network'): bool ns3::ByteTagList::Iterator::HasNext() const [member function]
1094 cls.add_method('HasNext',
1095 'bool',
1096 [],
1097 is_const=True)
1098 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item ns3::ByteTagList::Iterator::Next() [member function]
1099 cls.add_method('Next',
1100 'ns3::ByteTagList::Iterator::Item',
1101 [])
1102 return
1103
1104def register_Ns3ByteTagListIteratorItem_methods(root_module, cls):
1105 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::Item(ns3::ByteTagList::Iterator::Item const & arg0) [copy constructor]
1106 cls.add_constructor([param('ns3::ByteTagList::Iterator::Item const &', 'arg0')])
1107 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::Item(ns3::TagBuffer buf) [constructor]
1108 cls.add_constructor([param('ns3::TagBuffer', 'buf')])
1109 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::buf [variable]
1110 cls.add_instance_attribute('buf', 'ns3::TagBuffer', is_const=False)
1111 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::end [variable]
1112 cls.add_instance_attribute('end', 'int32_t', is_const=False)
1113 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::size [variable]
1114 cls.add_instance_attribute('size', 'uint32_t', is_const=False)
1115 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::start [variable]
1116 cls.add_instance_attribute('start', 'int32_t', is_const=False)
1117 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::tid [variable]
1118 cls.add_instance_attribute('tid', 'ns3::TypeId', is_const=False)
1119 return
1120
1121def register_Ns3CallbackBase_methods(root_module, cls):
1122 ## callback.h (module 'core'): ns3::CallbackBase::CallbackBase(ns3::CallbackBase const & arg0) [copy constructor]
1123 cls.add_constructor([param('ns3::CallbackBase const &', 'arg0')])
1124 ## callback.h (module 'core'): ns3::CallbackBase::CallbackBase() [constructor]
1125 cls.add_constructor([])
1126 ## callback.h (module 'core'): ns3::Ptr<ns3::CallbackImplBase> ns3::CallbackBase::GetImpl() const [member function]
1127 cls.add_method('GetImpl',
1128 'ns3::Ptr< ns3::CallbackImplBase >',
1129 [],
1130 is_const=True)
1131 ## callback.h (module 'core'): ns3::CallbackBase::CallbackBase(ns3::Ptr<ns3::CallbackImplBase> impl) [constructor]
1132 cls.add_constructor([param('ns3::Ptr< ns3::CallbackImplBase >', 'impl')],
1133 visibility='protected')
1134 ## callback.h (module 'core'): static std::string ns3::CallbackBase::Demangle(std::string const & mangled) [member function]
1135 cls.add_method('Demangle',
1136 'std::string',
1137 [param('std::string const &', 'mangled')],
1138 is_static=True, visibility='protected')
1139 return
1140
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001141def register_Ns3EventId_methods(root_module, cls):
1142 cls.add_binary_comparison_operator('!=')
1143 cls.add_binary_comparison_operator('==')
1144 ## event-id.h (module 'core'): ns3::EventId::EventId(ns3::EventId const & arg0) [copy constructor]
1145 cls.add_constructor([param('ns3::EventId const &', 'arg0')])
1146 ## event-id.h (module 'core'): ns3::EventId::EventId() [constructor]
1147 cls.add_constructor([])
1148 ## event-id.h (module 'core'): ns3::EventId::EventId(ns3::Ptr<ns3::EventImpl> const & impl, uint64_t ts, uint32_t context, uint32_t uid) [constructor]
1149 cls.add_constructor([param('ns3::Ptr< ns3::EventImpl > const &', 'impl'), param('uint64_t', 'ts'), param('uint32_t', 'context'), param('uint32_t', 'uid')])
1150 ## event-id.h (module 'core'): void ns3::EventId::Cancel() [member function]
1151 cls.add_method('Cancel',
1152 'void',
1153 [])
1154 ## event-id.h (module 'core'): uint32_t ns3::EventId::GetContext() const [member function]
1155 cls.add_method('GetContext',
1156 'uint32_t',
1157 [],
1158 is_const=True)
1159 ## event-id.h (module 'core'): uint64_t ns3::EventId::GetTs() const [member function]
1160 cls.add_method('GetTs',
1161 'uint64_t',
1162 [],
1163 is_const=True)
1164 ## event-id.h (module 'core'): uint32_t ns3::EventId::GetUid() const [member function]
1165 cls.add_method('GetUid',
1166 'uint32_t',
1167 [],
1168 is_const=True)
1169 ## event-id.h (module 'core'): bool ns3::EventId::IsExpired() const [member function]
1170 cls.add_method('IsExpired',
1171 'bool',
1172 [],
1173 is_const=True)
1174 ## event-id.h (module 'core'): bool ns3::EventId::IsRunning() const [member function]
1175 cls.add_method('IsRunning',
1176 'bool',
1177 [],
1178 is_const=True)
1179 ## event-id.h (module 'core'): ns3::EventImpl * ns3::EventId::PeekEventImpl() const [member function]
1180 cls.add_method('PeekEventImpl',
1181 'ns3::EventImpl *',
1182 [],
1183 is_const=True)
1184 return
1185
1186def register_Ns3Ipv4Address_methods(root_module, cls):
1187 cls.add_binary_comparison_operator('!=')
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07001188 cls.add_output_stream_operator()
Alexander Afanasyeva28ec562012-10-25 14:07:32 -07001189 cls.add_binary_comparison_operator('==')
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001190 cls.add_binary_comparison_operator('<')
1191 ## ipv4-address.h (module 'network'): ns3::Ipv4Address::Ipv4Address(ns3::Ipv4Address const & arg0) [copy constructor]
1192 cls.add_constructor([param('ns3::Ipv4Address const &', 'arg0')])
1193 ## ipv4-address.h (module 'network'): ns3::Ipv4Address::Ipv4Address() [constructor]
1194 cls.add_constructor([])
1195 ## ipv4-address.h (module 'network'): ns3::Ipv4Address::Ipv4Address(uint32_t address) [constructor]
1196 cls.add_constructor([param('uint32_t', 'address')])
1197 ## ipv4-address.h (module 'network'): ns3::Ipv4Address::Ipv4Address(char const * address) [constructor]
1198 cls.add_constructor([param('char const *', 'address')])
1199 ## ipv4-address.h (module 'network'): ns3::Ipv4Address ns3::Ipv4Address::CombineMask(ns3::Ipv4Mask const & mask) const [member function]
1200 cls.add_method('CombineMask',
1201 'ns3::Ipv4Address',
1202 [param('ns3::Ipv4Mask const &', 'mask')],
1203 is_const=True)
1204 ## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::ConvertFrom(ns3::Address const & address) [member function]
1205 cls.add_method('ConvertFrom',
1206 'ns3::Ipv4Address',
1207 [param('ns3::Address const &', 'address')],
1208 is_static=True)
1209 ## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::Deserialize(uint8_t const * buf) [member function]
1210 cls.add_method('Deserialize',
1211 'ns3::Ipv4Address',
1212 [param('uint8_t const *', 'buf')],
1213 is_static=True)
Alexander Afanasyev4052f952012-06-08 17:57:59 -07001214 ## ipv4-address.h (module 'network'): uint32_t ns3::Ipv4Address::Get() const [member function]
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001215 cls.add_method('Get',
Alexander Afanasyev4052f952012-06-08 17:57:59 -07001216 'uint32_t',
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001217 [],
1218 is_const=True)
1219 ## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::GetAny() [member function]
1220 cls.add_method('GetAny',
1221 'ns3::Ipv4Address',
1222 [],
1223 is_static=True)
1224 ## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::GetBroadcast() [member function]
1225 cls.add_method('GetBroadcast',
1226 'ns3::Ipv4Address',
1227 [],
1228 is_static=True)
1229 ## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::GetLoopback() [member function]
1230 cls.add_method('GetLoopback',
1231 'ns3::Ipv4Address',
1232 [],
1233 is_static=True)
1234 ## ipv4-address.h (module 'network'): ns3::Ipv4Address ns3::Ipv4Address::GetSubnetDirectedBroadcast(ns3::Ipv4Mask const & mask) const [member function]
1235 cls.add_method('GetSubnetDirectedBroadcast',
1236 'ns3::Ipv4Address',
1237 [param('ns3::Ipv4Mask const &', 'mask')],
1238 is_const=True)
1239 ## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::GetZero() [member function]
1240 cls.add_method('GetZero',
1241 'ns3::Ipv4Address',
1242 [],
1243 is_static=True)
1244 ## ipv4-address.h (module 'network'): bool ns3::Ipv4Address::IsBroadcast() const [member function]
1245 cls.add_method('IsBroadcast',
1246 'bool',
1247 [],
1248 is_const=True)
1249 ## ipv4-address.h (module 'network'): bool ns3::Ipv4Address::IsEqual(ns3::Ipv4Address const & other) const [member function]
1250 cls.add_method('IsEqual',
1251 'bool',
1252 [param('ns3::Ipv4Address const &', 'other')],
1253 is_const=True)
1254 ## ipv4-address.h (module 'network'): bool ns3::Ipv4Address::IsLocalMulticast() const [member function]
1255 cls.add_method('IsLocalMulticast',
1256 'bool',
1257 [],
1258 is_const=True)
1259 ## ipv4-address.h (module 'network'): static bool ns3::Ipv4Address::IsMatchingType(ns3::Address const & address) [member function]
1260 cls.add_method('IsMatchingType',
1261 'bool',
1262 [param('ns3::Address const &', 'address')],
1263 is_static=True)
1264 ## ipv4-address.h (module 'network'): bool ns3::Ipv4Address::IsMulticast() const [member function]
1265 cls.add_method('IsMulticast',
1266 'bool',
1267 [],
1268 is_const=True)
1269 ## ipv4-address.h (module 'network'): bool ns3::Ipv4Address::IsSubnetDirectedBroadcast(ns3::Ipv4Mask const & mask) const [member function]
1270 cls.add_method('IsSubnetDirectedBroadcast',
1271 'bool',
1272 [param('ns3::Ipv4Mask const &', 'mask')],
1273 is_const=True)
1274 ## ipv4-address.h (module 'network'): void ns3::Ipv4Address::Print(std::ostream & os) const [member function]
1275 cls.add_method('Print',
1276 'void',
1277 [param('std::ostream &', 'os')],
1278 is_const=True)
1279 ## ipv4-address.h (module 'network'): void ns3::Ipv4Address::Serialize(uint8_t * buf) const [member function]
1280 cls.add_method('Serialize',
1281 'void',
1282 [param('uint8_t *', 'buf')],
1283 is_const=True)
1284 ## ipv4-address.h (module 'network'): void ns3::Ipv4Address::Set(uint32_t address) [member function]
1285 cls.add_method('Set',
1286 'void',
1287 [param('uint32_t', 'address')])
1288 ## ipv4-address.h (module 'network'): void ns3::Ipv4Address::Set(char const * address) [member function]
1289 cls.add_method('Set',
1290 'void',
1291 [param('char const *', 'address')])
1292 return
1293
1294def register_Ns3Ipv4Mask_methods(root_module, cls):
1295 cls.add_binary_comparison_operator('!=')
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07001296 cls.add_output_stream_operator()
Alexander Afanasyeva28ec562012-10-25 14:07:32 -07001297 cls.add_binary_comparison_operator('==')
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001298 ## ipv4-address.h (module 'network'): ns3::Ipv4Mask::Ipv4Mask(ns3::Ipv4Mask const & arg0) [copy constructor]
1299 cls.add_constructor([param('ns3::Ipv4Mask const &', 'arg0')])
1300 ## ipv4-address.h (module 'network'): ns3::Ipv4Mask::Ipv4Mask() [constructor]
1301 cls.add_constructor([])
1302 ## ipv4-address.h (module 'network'): ns3::Ipv4Mask::Ipv4Mask(uint32_t mask) [constructor]
1303 cls.add_constructor([param('uint32_t', 'mask')])
1304 ## ipv4-address.h (module 'network'): ns3::Ipv4Mask::Ipv4Mask(char const * mask) [constructor]
1305 cls.add_constructor([param('char const *', 'mask')])
1306 ## ipv4-address.h (module 'network'): uint32_t ns3::Ipv4Mask::Get() const [member function]
1307 cls.add_method('Get',
1308 'uint32_t',
1309 [],
1310 is_const=True)
1311 ## ipv4-address.h (module 'network'): uint32_t ns3::Ipv4Mask::GetInverse() const [member function]
1312 cls.add_method('GetInverse',
1313 'uint32_t',
1314 [],
1315 is_const=True)
1316 ## ipv4-address.h (module 'network'): static ns3::Ipv4Mask ns3::Ipv4Mask::GetLoopback() [member function]
1317 cls.add_method('GetLoopback',
1318 'ns3::Ipv4Mask',
1319 [],
1320 is_static=True)
1321 ## ipv4-address.h (module 'network'): static ns3::Ipv4Mask ns3::Ipv4Mask::GetOnes() [member function]
1322 cls.add_method('GetOnes',
1323 'ns3::Ipv4Mask',
1324 [],
1325 is_static=True)
1326 ## ipv4-address.h (module 'network'): uint16_t ns3::Ipv4Mask::GetPrefixLength() const [member function]
1327 cls.add_method('GetPrefixLength',
1328 'uint16_t',
1329 [],
1330 is_const=True)
1331 ## ipv4-address.h (module 'network'): static ns3::Ipv4Mask ns3::Ipv4Mask::GetZero() [member function]
1332 cls.add_method('GetZero',
1333 'ns3::Ipv4Mask',
1334 [],
1335 is_static=True)
1336 ## ipv4-address.h (module 'network'): bool ns3::Ipv4Mask::IsEqual(ns3::Ipv4Mask other) const [member function]
1337 cls.add_method('IsEqual',
1338 'bool',
1339 [param('ns3::Ipv4Mask', 'other')],
1340 is_const=True)
1341 ## ipv4-address.h (module 'network'): bool ns3::Ipv4Mask::IsMatch(ns3::Ipv4Address a, ns3::Ipv4Address b) const [member function]
1342 cls.add_method('IsMatch',
1343 'bool',
1344 [param('ns3::Ipv4Address', 'a'), param('ns3::Ipv4Address', 'b')],
1345 is_const=True)
1346 ## ipv4-address.h (module 'network'): void ns3::Ipv4Mask::Print(std::ostream & os) const [member function]
1347 cls.add_method('Print',
1348 'void',
1349 [param('std::ostream &', 'os')],
1350 is_const=True)
1351 ## ipv4-address.h (module 'network'): void ns3::Ipv4Mask::Set(uint32_t mask) [member function]
1352 cls.add_method('Set',
1353 'void',
1354 [param('uint32_t', 'mask')])
1355 return
1356
1357def register_Ns3Ipv6Address_methods(root_module, cls):
1358 cls.add_binary_comparison_operator('!=')
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07001359 cls.add_output_stream_operator()
Alexander Afanasyeva28ec562012-10-25 14:07:32 -07001360 cls.add_binary_comparison_operator('==')
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001361 cls.add_binary_comparison_operator('<')
1362 ## ipv6-address.h (module 'network'): ns3::Ipv6Address::Ipv6Address() [constructor]
1363 cls.add_constructor([])
1364 ## ipv6-address.h (module 'network'): ns3::Ipv6Address::Ipv6Address(char const * address) [constructor]
1365 cls.add_constructor([param('char const *', 'address')])
1366 ## ipv6-address.h (module 'network'): ns3::Ipv6Address::Ipv6Address(uint8_t * address) [constructor]
1367 cls.add_constructor([param('uint8_t *', 'address')])
1368 ## ipv6-address.h (module 'network'): ns3::Ipv6Address::Ipv6Address(ns3::Ipv6Address const & addr) [copy constructor]
1369 cls.add_constructor([param('ns3::Ipv6Address const &', 'addr')])
1370 ## ipv6-address.h (module 'network'): ns3::Ipv6Address::Ipv6Address(ns3::Ipv6Address const * addr) [constructor]
1371 cls.add_constructor([param('ns3::Ipv6Address const *', 'addr')])
1372 ## ipv6-address.h (module 'network'): ns3::Ipv6Address ns3::Ipv6Address::CombinePrefix(ns3::Ipv6Prefix const & prefix) [member function]
1373 cls.add_method('CombinePrefix',
1374 'ns3::Ipv6Address',
1375 [param('ns3::Ipv6Prefix const &', 'prefix')])
1376 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::ConvertFrom(ns3::Address const & address) [member function]
1377 cls.add_method('ConvertFrom',
1378 'ns3::Ipv6Address',
1379 [param('ns3::Address const &', 'address')],
1380 is_static=True)
1381 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::Deserialize(uint8_t const * buf) [member function]
1382 cls.add_method('Deserialize',
1383 'ns3::Ipv6Address',
1384 [param('uint8_t const *', 'buf')],
1385 is_static=True)
1386 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetAllHostsMulticast() [member function]
1387 cls.add_method('GetAllHostsMulticast',
1388 'ns3::Ipv6Address',
1389 [],
1390 is_static=True)
1391 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetAllNodesMulticast() [member function]
1392 cls.add_method('GetAllNodesMulticast',
1393 'ns3::Ipv6Address',
1394 [],
1395 is_static=True)
1396 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetAllRoutersMulticast() [member function]
1397 cls.add_method('GetAllRoutersMulticast',
1398 'ns3::Ipv6Address',
1399 [],
1400 is_static=True)
1401 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetAny() [member function]
1402 cls.add_method('GetAny',
1403 'ns3::Ipv6Address',
1404 [],
1405 is_static=True)
1406 ## ipv6-address.h (module 'network'): void ns3::Ipv6Address::GetBytes(uint8_t * buf) const [member function]
1407 cls.add_method('GetBytes',
1408 'void',
1409 [param('uint8_t *', 'buf')],
1410 is_const=True)
Alexander Afanasyev6f933532012-02-29 13:30:37 -08001411 ## ipv6-address.h (module 'network'): ns3::Ipv4Address ns3::Ipv6Address::GetIpv4MappedAddress() const [member function]
1412 cls.add_method('GetIpv4MappedAddress',
1413 'ns3::Ipv4Address',
1414 [],
1415 is_const=True)
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001416 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetLoopback() [member function]
1417 cls.add_method('GetLoopback',
1418 'ns3::Ipv6Address',
1419 [],
1420 is_static=True)
1421 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetOnes() [member function]
1422 cls.add_method('GetOnes',
1423 'ns3::Ipv6Address',
1424 [],
1425 is_static=True)
1426 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetZero() [member function]
1427 cls.add_method('GetZero',
1428 'ns3::Ipv6Address',
1429 [],
1430 is_static=True)
1431 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsAllHostsMulticast() const [member function]
1432 cls.add_method('IsAllHostsMulticast',
1433 'bool',
1434 [],
1435 is_const=True)
1436 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsAllNodesMulticast() const [member function]
1437 cls.add_method('IsAllNodesMulticast',
1438 'bool',
1439 [],
1440 is_const=True)
1441 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsAllRoutersMulticast() const [member function]
1442 cls.add_method('IsAllRoutersMulticast',
1443 'bool',
1444 [],
1445 is_const=True)
1446 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsAny() const [member function]
1447 cls.add_method('IsAny',
1448 'bool',
1449 [],
1450 is_const=True)
1451 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsEqual(ns3::Ipv6Address const & other) const [member function]
1452 cls.add_method('IsEqual',
1453 'bool',
1454 [param('ns3::Ipv6Address const &', 'other')],
1455 is_const=True)
Alexander Afanasyev6f933532012-02-29 13:30:37 -08001456 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsIpv4MappedAddress() [member function]
1457 cls.add_method('IsIpv4MappedAddress',
1458 'bool',
1459 [])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001460 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsLinkLocal() const [member function]
1461 cls.add_method('IsLinkLocal',
1462 'bool',
1463 [],
1464 is_const=True)
Alexander Afanasyev6f933532012-02-29 13:30:37 -08001465 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsLinkLocalMulticast() const [member function]
1466 cls.add_method('IsLinkLocalMulticast',
1467 'bool',
1468 [],
1469 is_const=True)
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001470 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsLocalhost() const [member function]
1471 cls.add_method('IsLocalhost',
1472 'bool',
1473 [],
1474 is_const=True)
1475 ## ipv6-address.h (module 'network'): static bool ns3::Ipv6Address::IsMatchingType(ns3::Address const & address) [member function]
1476 cls.add_method('IsMatchingType',
1477 'bool',
1478 [param('ns3::Address const &', 'address')],
1479 is_static=True)
1480 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsMulticast() const [member function]
1481 cls.add_method('IsMulticast',
1482 'bool',
1483 [],
1484 is_const=True)
1485 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsSolicitedMulticast() const [member function]
1486 cls.add_method('IsSolicitedMulticast',
1487 'bool',
1488 [],
1489 is_const=True)
1490 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::MakeAutoconfiguredAddress(ns3::Mac48Address addr, ns3::Ipv6Address prefix) [member function]
1491 cls.add_method('MakeAutoconfiguredAddress',
1492 'ns3::Ipv6Address',
1493 [param('ns3::Mac48Address', 'addr'), param('ns3::Ipv6Address', 'prefix')],
1494 is_static=True)
1495 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::MakeAutoconfiguredLinkLocalAddress(ns3::Mac48Address mac) [member function]
1496 cls.add_method('MakeAutoconfiguredLinkLocalAddress',
1497 'ns3::Ipv6Address',
1498 [param('ns3::Mac48Address', 'mac')],
1499 is_static=True)
Alexander Afanasyev6f933532012-02-29 13:30:37 -08001500 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::MakeIpv4MappedAddress(ns3::Ipv4Address addr) [member function]
1501 cls.add_method('MakeIpv4MappedAddress',
1502 'ns3::Ipv6Address',
1503 [param('ns3::Ipv4Address', 'addr')],
1504 is_static=True)
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001505 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::MakeSolicitedAddress(ns3::Ipv6Address addr) [member function]
1506 cls.add_method('MakeSolicitedAddress',
1507 'ns3::Ipv6Address',
1508 [param('ns3::Ipv6Address', 'addr')],
1509 is_static=True)
1510 ## ipv6-address.h (module 'network'): void ns3::Ipv6Address::Print(std::ostream & os) const [member function]
1511 cls.add_method('Print',
1512 'void',
1513 [param('std::ostream &', 'os')],
1514 is_const=True)
1515 ## ipv6-address.h (module 'network'): void ns3::Ipv6Address::Serialize(uint8_t * buf) const [member function]
1516 cls.add_method('Serialize',
1517 'void',
1518 [param('uint8_t *', 'buf')],
1519 is_const=True)
1520 ## ipv6-address.h (module 'network'): void ns3::Ipv6Address::Set(char const * address) [member function]
1521 cls.add_method('Set',
1522 'void',
1523 [param('char const *', 'address')])
1524 ## ipv6-address.h (module 'network'): void ns3::Ipv6Address::Set(uint8_t * address) [member function]
1525 cls.add_method('Set',
1526 'void',
1527 [param('uint8_t *', 'address')])
1528 return
1529
1530def register_Ns3Ipv6Prefix_methods(root_module, cls):
1531 cls.add_binary_comparison_operator('!=')
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07001532 cls.add_output_stream_operator()
Alexander Afanasyeva28ec562012-10-25 14:07:32 -07001533 cls.add_binary_comparison_operator('==')
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001534 ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix() [constructor]
1535 cls.add_constructor([])
1536 ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix(uint8_t * prefix) [constructor]
1537 cls.add_constructor([param('uint8_t *', 'prefix')])
1538 ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix(char const * prefix) [constructor]
1539 cls.add_constructor([param('char const *', 'prefix')])
1540 ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix(uint8_t prefix) [constructor]
1541 cls.add_constructor([param('uint8_t', 'prefix')])
1542 ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix(ns3::Ipv6Prefix const & prefix) [copy constructor]
1543 cls.add_constructor([param('ns3::Ipv6Prefix const &', 'prefix')])
1544 ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix(ns3::Ipv6Prefix const * prefix) [constructor]
1545 cls.add_constructor([param('ns3::Ipv6Prefix const *', 'prefix')])
1546 ## ipv6-address.h (module 'network'): void ns3::Ipv6Prefix::GetBytes(uint8_t * buf) const [member function]
1547 cls.add_method('GetBytes',
1548 'void',
1549 [param('uint8_t *', 'buf')],
1550 is_const=True)
1551 ## ipv6-address.h (module 'network'): static ns3::Ipv6Prefix ns3::Ipv6Prefix::GetLoopback() [member function]
1552 cls.add_method('GetLoopback',
1553 'ns3::Ipv6Prefix',
1554 [],
1555 is_static=True)
1556 ## ipv6-address.h (module 'network'): static ns3::Ipv6Prefix ns3::Ipv6Prefix::GetOnes() [member function]
1557 cls.add_method('GetOnes',
1558 'ns3::Ipv6Prefix',
1559 [],
1560 is_static=True)
1561 ## ipv6-address.h (module 'network'): uint8_t ns3::Ipv6Prefix::GetPrefixLength() const [member function]
1562 cls.add_method('GetPrefixLength',
1563 'uint8_t',
1564 [],
1565 is_const=True)
1566 ## ipv6-address.h (module 'network'): static ns3::Ipv6Prefix ns3::Ipv6Prefix::GetZero() [member function]
1567 cls.add_method('GetZero',
1568 'ns3::Ipv6Prefix',
1569 [],
1570 is_static=True)
1571 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Prefix::IsEqual(ns3::Ipv6Prefix const & other) const [member function]
1572 cls.add_method('IsEqual',
1573 'bool',
1574 [param('ns3::Ipv6Prefix const &', 'other')],
1575 is_const=True)
1576 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Prefix::IsMatch(ns3::Ipv6Address a, ns3::Ipv6Address b) const [member function]
1577 cls.add_method('IsMatch',
1578 'bool',
1579 [param('ns3::Ipv6Address', 'a'), param('ns3::Ipv6Address', 'b')],
1580 is_const=True)
1581 ## ipv6-address.h (module 'network'): void ns3::Ipv6Prefix::Print(std::ostream & os) const [member function]
1582 cls.add_method('Print',
1583 'void',
1584 [param('std::ostream &', 'os')],
1585 is_const=True)
1586 return
1587
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07001588def register_Ns3NetDeviceContainer_methods(root_module, cls):
1589 ## net-device-container.h (module 'network'): ns3::NetDeviceContainer::NetDeviceContainer(ns3::NetDeviceContainer const & arg0) [copy constructor]
1590 cls.add_constructor([param('ns3::NetDeviceContainer const &', 'arg0')])
1591 ## net-device-container.h (module 'network'): ns3::NetDeviceContainer::NetDeviceContainer() [constructor]
1592 cls.add_constructor([])
1593 ## net-device-container.h (module 'network'): ns3::NetDeviceContainer::NetDeviceContainer(ns3::Ptr<ns3::NetDevice> dev) [constructor]
1594 cls.add_constructor([param('ns3::Ptr< ns3::NetDevice >', 'dev')])
1595 ## net-device-container.h (module 'network'): ns3::NetDeviceContainer::NetDeviceContainer(std::string devName) [constructor]
1596 cls.add_constructor([param('std::string', 'devName')])
1597 ## net-device-container.h (module 'network'): ns3::NetDeviceContainer::NetDeviceContainer(ns3::NetDeviceContainer const & a, ns3::NetDeviceContainer const & b) [constructor]
1598 cls.add_constructor([param('ns3::NetDeviceContainer const &', 'a'), param('ns3::NetDeviceContainer const &', 'b')])
1599 ## net-device-container.h (module 'network'): void ns3::NetDeviceContainer::Add(ns3::NetDeviceContainer other) [member function]
1600 cls.add_method('Add',
1601 'void',
1602 [param('ns3::NetDeviceContainer', 'other')])
1603 ## net-device-container.h (module 'network'): void ns3::NetDeviceContainer::Add(ns3::Ptr<ns3::NetDevice> device) [member function]
1604 cls.add_method('Add',
1605 'void',
1606 [param('ns3::Ptr< ns3::NetDevice >', 'device')])
1607 ## net-device-container.h (module 'network'): void ns3::NetDeviceContainer::Add(std::string deviceName) [member function]
1608 cls.add_method('Add',
1609 'void',
1610 [param('std::string', 'deviceName')])
1611 ## 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]
1612 cls.add_method('Begin',
1613 '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::NetDevice > const, std::vector< ns3::Ptr< ns3::NetDevice > > >',
1614 [],
1615 is_const=True)
1616 ## 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]
1617 cls.add_method('End',
1618 '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::NetDevice > const, std::vector< ns3::Ptr< ns3::NetDevice > > >',
1619 [],
1620 is_const=True)
1621 ## net-device-container.h (module 'network'): ns3::Ptr<ns3::NetDevice> ns3::NetDeviceContainer::Get(uint32_t i) const [member function]
1622 cls.add_method('Get',
1623 'ns3::Ptr< ns3::NetDevice >',
1624 [param('uint32_t', 'i')],
1625 is_const=True)
1626 ## net-device-container.h (module 'network'): uint32_t ns3::NetDeviceContainer::GetN() const [member function]
1627 cls.add_method('GetN',
1628 'uint32_t',
1629 [],
1630 is_const=True)
1631 return
1632
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001633def register_Ns3NodeContainer_methods(root_module, cls):
1634 ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer(ns3::NodeContainer const & arg0) [copy constructor]
1635 cls.add_constructor([param('ns3::NodeContainer const &', 'arg0')])
1636 ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer() [constructor]
1637 cls.add_constructor([])
1638 ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer(ns3::Ptr<ns3::Node> node) [constructor]
1639 cls.add_constructor([param('ns3::Ptr< ns3::Node >', 'node')])
1640 ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer(std::string nodeName) [constructor]
1641 cls.add_constructor([param('std::string', 'nodeName')])
1642 ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer(ns3::NodeContainer const & a, ns3::NodeContainer const & b) [constructor]
1643 cls.add_constructor([param('ns3::NodeContainer const &', 'a'), param('ns3::NodeContainer const &', 'b')])
1644 ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer(ns3::NodeContainer const & a, ns3::NodeContainer const & b, ns3::NodeContainer const & c) [constructor]
1645 cls.add_constructor([param('ns3::NodeContainer const &', 'a'), param('ns3::NodeContainer const &', 'b'), param('ns3::NodeContainer const &', 'c')])
1646 ## 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]
1647 cls.add_constructor([param('ns3::NodeContainer const &', 'a'), param('ns3::NodeContainer const &', 'b'), param('ns3::NodeContainer const &', 'c'), param('ns3::NodeContainer const &', 'd')])
1648 ## 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]
1649 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')])
1650 ## node-container.h (module 'network'): void ns3::NodeContainer::Add(ns3::NodeContainer other) [member function]
1651 cls.add_method('Add',
1652 'void',
1653 [param('ns3::NodeContainer', 'other')])
1654 ## node-container.h (module 'network'): void ns3::NodeContainer::Add(ns3::Ptr<ns3::Node> node) [member function]
1655 cls.add_method('Add',
1656 'void',
1657 [param('ns3::Ptr< ns3::Node >', 'node')])
1658 ## node-container.h (module 'network'): void ns3::NodeContainer::Add(std::string nodeName) [member function]
1659 cls.add_method('Add',
1660 'void',
1661 [param('std::string', 'nodeName')])
1662 ## 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]
1663 cls.add_method('Begin',
1664 '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Node > const, std::vector< ns3::Ptr< ns3::Node > > >',
1665 [],
1666 is_const=True)
1667 ## node-container.h (module 'network'): void ns3::NodeContainer::Create(uint32_t n) [member function]
1668 cls.add_method('Create',
1669 'void',
1670 [param('uint32_t', 'n')])
1671 ## node-container.h (module 'network'): void ns3::NodeContainer::Create(uint32_t n, uint32_t systemId) [member function]
1672 cls.add_method('Create',
1673 'void',
1674 [param('uint32_t', 'n'), param('uint32_t', 'systemId')])
1675 ## 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]
1676 cls.add_method('End',
1677 '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Node > const, std::vector< ns3::Ptr< ns3::Node > > >',
1678 [],
1679 is_const=True)
1680 ## node-container.h (module 'network'): ns3::Ptr<ns3::Node> ns3::NodeContainer::Get(uint32_t i) const [member function]
1681 cls.add_method('Get',
1682 'ns3::Ptr< ns3::Node >',
1683 [param('uint32_t', 'i')],
1684 is_const=True)
1685 ## node-container.h (module 'network'): static ns3::NodeContainer ns3::NodeContainer::GetGlobal() [member function]
1686 cls.add_method('GetGlobal',
1687 'ns3::NodeContainer',
1688 [],
1689 is_static=True)
1690 ## node-container.h (module 'network'): uint32_t ns3::NodeContainer::GetN() const [member function]
1691 cls.add_method('GetN',
1692 'uint32_t',
1693 [],
1694 is_const=True)
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001695 return
1696
1697def register_Ns3ObjectBase_methods(root_module, cls):
1698 ## object-base.h (module 'core'): ns3::ObjectBase::ObjectBase() [constructor]
1699 cls.add_constructor([])
1700 ## object-base.h (module 'core'): ns3::ObjectBase::ObjectBase(ns3::ObjectBase const & arg0) [copy constructor]
1701 cls.add_constructor([param('ns3::ObjectBase const &', 'arg0')])
1702 ## object-base.h (module 'core'): void ns3::ObjectBase::GetAttribute(std::string name, ns3::AttributeValue & value) const [member function]
1703 cls.add_method('GetAttribute',
1704 'void',
1705 [param('std::string', 'name'), param('ns3::AttributeValue &', 'value')],
1706 is_const=True)
1707 ## object-base.h (module 'core'): bool ns3::ObjectBase::GetAttributeFailSafe(std::string name, ns3::AttributeValue & attribute) const [member function]
1708 cls.add_method('GetAttributeFailSafe',
1709 'bool',
1710 [param('std::string', 'name'), param('ns3::AttributeValue &', 'attribute')],
1711 is_const=True)
1712 ## object-base.h (module 'core'): ns3::TypeId ns3::ObjectBase::GetInstanceTypeId() const [member function]
1713 cls.add_method('GetInstanceTypeId',
1714 'ns3::TypeId',
1715 [],
1716 is_pure_virtual=True, is_const=True, is_virtual=True)
1717 ## object-base.h (module 'core'): static ns3::TypeId ns3::ObjectBase::GetTypeId() [member function]
1718 cls.add_method('GetTypeId',
1719 'ns3::TypeId',
1720 [],
1721 is_static=True)
1722 ## object-base.h (module 'core'): void ns3::ObjectBase::SetAttribute(std::string name, ns3::AttributeValue const & value) [member function]
1723 cls.add_method('SetAttribute',
1724 'void',
1725 [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')])
1726 ## object-base.h (module 'core'): bool ns3::ObjectBase::SetAttributeFailSafe(std::string name, ns3::AttributeValue const & value) [member function]
1727 cls.add_method('SetAttributeFailSafe',
1728 'bool',
1729 [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')])
1730 ## object-base.h (module 'core'): bool ns3::ObjectBase::TraceConnect(std::string name, std::string context, ns3::CallbackBase const & cb) [member function]
1731 cls.add_method('TraceConnect',
1732 'bool',
1733 [param('std::string', 'name'), param('std::string', 'context'), param('ns3::CallbackBase const &', 'cb')])
1734 ## object-base.h (module 'core'): bool ns3::ObjectBase::TraceConnectWithoutContext(std::string name, ns3::CallbackBase const & cb) [member function]
1735 cls.add_method('TraceConnectWithoutContext',
1736 'bool',
1737 [param('std::string', 'name'), param('ns3::CallbackBase const &', 'cb')])
1738 ## object-base.h (module 'core'): bool ns3::ObjectBase::TraceDisconnect(std::string name, std::string context, ns3::CallbackBase const & cb) [member function]
1739 cls.add_method('TraceDisconnect',
1740 'bool',
1741 [param('std::string', 'name'), param('std::string', 'context'), param('ns3::CallbackBase const &', 'cb')])
1742 ## object-base.h (module 'core'): bool ns3::ObjectBase::TraceDisconnectWithoutContext(std::string name, ns3::CallbackBase const & cb) [member function]
1743 cls.add_method('TraceDisconnectWithoutContext',
1744 'bool',
1745 [param('std::string', 'name'), param('ns3::CallbackBase const &', 'cb')])
1746 ## object-base.h (module 'core'): void ns3::ObjectBase::ConstructSelf(ns3::AttributeConstructionList const & attributes) [member function]
1747 cls.add_method('ConstructSelf',
1748 'void',
1749 [param('ns3::AttributeConstructionList const &', 'attributes')],
1750 visibility='protected')
1751 ## object-base.h (module 'core'): void ns3::ObjectBase::NotifyConstructionCompleted() [member function]
1752 cls.add_method('NotifyConstructionCompleted',
1753 'void',
1754 [],
1755 visibility='protected', is_virtual=True)
1756 return
1757
1758def register_Ns3ObjectDeleter_methods(root_module, cls):
1759 ## object.h (module 'core'): ns3::ObjectDeleter::ObjectDeleter() [constructor]
1760 cls.add_constructor([])
1761 ## object.h (module 'core'): ns3::ObjectDeleter::ObjectDeleter(ns3::ObjectDeleter const & arg0) [copy constructor]
1762 cls.add_constructor([param('ns3::ObjectDeleter const &', 'arg0')])
1763 ## object.h (module 'core'): static void ns3::ObjectDeleter::Delete(ns3::Object * object) [member function]
1764 cls.add_method('Delete',
1765 'void',
1766 [param('ns3::Object *', 'object')],
1767 is_static=True)
1768 return
1769
1770def register_Ns3ObjectFactory_methods(root_module, cls):
1771 cls.add_output_stream_operator()
1772 ## object-factory.h (module 'core'): ns3::ObjectFactory::ObjectFactory(ns3::ObjectFactory const & arg0) [copy constructor]
1773 cls.add_constructor([param('ns3::ObjectFactory const &', 'arg0')])
1774 ## object-factory.h (module 'core'): ns3::ObjectFactory::ObjectFactory() [constructor]
1775 cls.add_constructor([])
1776 ## object-factory.h (module 'core'): ns3::ObjectFactory::ObjectFactory(std::string typeId) [constructor]
1777 cls.add_constructor([param('std::string', 'typeId')])
1778 ## object-factory.h (module 'core'): ns3::Ptr<ns3::Object> ns3::ObjectFactory::Create() const [member function]
1779 cls.add_method('Create',
1780 'ns3::Ptr< ns3::Object >',
1781 [],
1782 is_const=True)
1783 ## object-factory.h (module 'core'): ns3::TypeId ns3::ObjectFactory::GetTypeId() const [member function]
1784 cls.add_method('GetTypeId',
1785 'ns3::TypeId',
1786 [],
1787 is_const=True)
1788 ## object-factory.h (module 'core'): void ns3::ObjectFactory::Set(std::string name, ns3::AttributeValue const & value) [member function]
1789 cls.add_method('Set',
1790 'void',
1791 [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')])
1792 ## object-factory.h (module 'core'): void ns3::ObjectFactory::SetTypeId(ns3::TypeId tid) [member function]
1793 cls.add_method('SetTypeId',
1794 'void',
1795 [param('ns3::TypeId', 'tid')])
1796 ## object-factory.h (module 'core'): void ns3::ObjectFactory::SetTypeId(char const * tid) [member function]
1797 cls.add_method('SetTypeId',
1798 'void',
1799 [param('char const *', 'tid')])
1800 ## object-factory.h (module 'core'): void ns3::ObjectFactory::SetTypeId(std::string tid) [member function]
1801 cls.add_method('SetTypeId',
1802 'void',
1803 [param('std::string', 'tid')])
1804 return
1805
1806def register_Ns3PacketMetadata_methods(root_module, cls):
1807 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::PacketMetadata(uint64_t uid, uint32_t size) [constructor]
1808 cls.add_constructor([param('uint64_t', 'uid'), param('uint32_t', 'size')])
1809 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::PacketMetadata(ns3::PacketMetadata const & o) [copy constructor]
1810 cls.add_constructor([param('ns3::PacketMetadata const &', 'o')])
1811 ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::AddAtEnd(ns3::PacketMetadata const & o) [member function]
1812 cls.add_method('AddAtEnd',
1813 'void',
1814 [param('ns3::PacketMetadata const &', 'o')])
1815 ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::AddHeader(ns3::Header const & header, uint32_t size) [member function]
1816 cls.add_method('AddHeader',
1817 'void',
1818 [param('ns3::Header const &', 'header'), param('uint32_t', 'size')])
1819 ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::AddPaddingAtEnd(uint32_t end) [member function]
1820 cls.add_method('AddPaddingAtEnd',
1821 'void',
1822 [param('uint32_t', 'end')])
1823 ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::AddTrailer(ns3::Trailer const & trailer, uint32_t size) [member function]
1824 cls.add_method('AddTrailer',
1825 'void',
1826 [param('ns3::Trailer const &', 'trailer'), param('uint32_t', 'size')])
1827 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::ItemIterator ns3::PacketMetadata::BeginItem(ns3::Buffer buffer) const [member function]
1828 cls.add_method('BeginItem',
1829 'ns3::PacketMetadata::ItemIterator',
1830 [param('ns3::Buffer', 'buffer')],
1831 is_const=True)
1832 ## packet-metadata.h (module 'network'): ns3::PacketMetadata ns3::PacketMetadata::CreateFragment(uint32_t start, uint32_t end) const [member function]
1833 cls.add_method('CreateFragment',
1834 'ns3::PacketMetadata',
1835 [param('uint32_t', 'start'), param('uint32_t', 'end')],
1836 is_const=True)
1837 ## packet-metadata.h (module 'network'): uint32_t ns3::PacketMetadata::Deserialize(uint8_t const * buffer, uint32_t size) [member function]
1838 cls.add_method('Deserialize',
1839 'uint32_t',
1840 [param('uint8_t const *', 'buffer'), param('uint32_t', 'size')])
1841 ## packet-metadata.h (module 'network'): static void ns3::PacketMetadata::Enable() [member function]
1842 cls.add_method('Enable',
1843 'void',
1844 [],
1845 is_static=True)
1846 ## packet-metadata.h (module 'network'): static void ns3::PacketMetadata::EnableChecking() [member function]
1847 cls.add_method('EnableChecking',
1848 'void',
1849 [],
1850 is_static=True)
1851 ## packet-metadata.h (module 'network'): uint32_t ns3::PacketMetadata::GetSerializedSize() const [member function]
1852 cls.add_method('GetSerializedSize',
1853 'uint32_t',
1854 [],
1855 is_const=True)
1856 ## packet-metadata.h (module 'network'): uint64_t ns3::PacketMetadata::GetUid() const [member function]
1857 cls.add_method('GetUid',
1858 'uint64_t',
1859 [],
1860 is_const=True)
1861 ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::RemoveAtEnd(uint32_t end) [member function]
1862 cls.add_method('RemoveAtEnd',
1863 'void',
1864 [param('uint32_t', 'end')])
1865 ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::RemoveAtStart(uint32_t start) [member function]
1866 cls.add_method('RemoveAtStart',
1867 'void',
1868 [param('uint32_t', 'start')])
1869 ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::RemoveHeader(ns3::Header const & header, uint32_t size) [member function]
1870 cls.add_method('RemoveHeader',
1871 'void',
1872 [param('ns3::Header const &', 'header'), param('uint32_t', 'size')])
1873 ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::RemoveTrailer(ns3::Trailer const & trailer, uint32_t size) [member function]
1874 cls.add_method('RemoveTrailer',
1875 'void',
1876 [param('ns3::Trailer const &', 'trailer'), param('uint32_t', 'size')])
1877 ## packet-metadata.h (module 'network'): uint32_t ns3::PacketMetadata::Serialize(uint8_t * buffer, uint32_t maxSize) const [member function]
1878 cls.add_method('Serialize',
1879 'uint32_t',
1880 [param('uint8_t *', 'buffer'), param('uint32_t', 'maxSize')],
1881 is_const=True)
1882 return
1883
1884def register_Ns3PacketMetadataItem_methods(root_module, cls):
1885 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::Item() [constructor]
1886 cls.add_constructor([])
1887 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::Item(ns3::PacketMetadata::Item const & arg0) [copy constructor]
1888 cls.add_constructor([param('ns3::PacketMetadata::Item const &', 'arg0')])
1889 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::current [variable]
1890 cls.add_instance_attribute('current', 'ns3::Buffer::Iterator', is_const=False)
1891 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::currentSize [variable]
1892 cls.add_instance_attribute('currentSize', 'uint32_t', is_const=False)
1893 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::currentTrimedFromEnd [variable]
1894 cls.add_instance_attribute('currentTrimedFromEnd', 'uint32_t', is_const=False)
1895 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::currentTrimedFromStart [variable]
1896 cls.add_instance_attribute('currentTrimedFromStart', 'uint32_t', is_const=False)
1897 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::isFragment [variable]
1898 cls.add_instance_attribute('isFragment', 'bool', is_const=False)
1899 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::tid [variable]
1900 cls.add_instance_attribute('tid', 'ns3::TypeId', is_const=False)
1901 return
1902
1903def register_Ns3PacketMetadataItemIterator_methods(root_module, cls):
1904 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::ItemIterator::ItemIterator(ns3::PacketMetadata::ItemIterator const & arg0) [copy constructor]
1905 cls.add_constructor([param('ns3::PacketMetadata::ItemIterator const &', 'arg0')])
1906 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::ItemIterator::ItemIterator(ns3::PacketMetadata const * metadata, ns3::Buffer buffer) [constructor]
1907 cls.add_constructor([param('ns3::PacketMetadata const *', 'metadata'), param('ns3::Buffer', 'buffer')])
1908 ## packet-metadata.h (module 'network'): bool ns3::PacketMetadata::ItemIterator::HasNext() const [member function]
1909 cls.add_method('HasNext',
1910 'bool',
1911 [],
1912 is_const=True)
1913 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item ns3::PacketMetadata::ItemIterator::Next() [member function]
1914 cls.add_method('Next',
1915 'ns3::PacketMetadata::Item',
1916 [])
1917 return
1918
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07001919def register_Ns3PacketTagIterator_methods(root_module, cls):
1920 ## packet.h (module 'network'): ns3::PacketTagIterator::PacketTagIterator(ns3::PacketTagIterator const & arg0) [copy constructor]
1921 cls.add_constructor([param('ns3::PacketTagIterator const &', 'arg0')])
1922 ## packet.h (module 'network'): bool ns3::PacketTagIterator::HasNext() const [member function]
1923 cls.add_method('HasNext',
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001924 'bool',
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001925 [],
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07001926 is_const=True)
1927 ## packet.h (module 'network'): ns3::PacketTagIterator::Item ns3::PacketTagIterator::Next() [member function]
1928 cls.add_method('Next',
1929 'ns3::PacketTagIterator::Item',
1930 [])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001931 return
1932
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07001933def register_Ns3PacketTagIteratorItem_methods(root_module, cls):
1934 ## packet.h (module 'network'): ns3::PacketTagIterator::Item::Item(ns3::PacketTagIterator::Item const & arg0) [copy constructor]
1935 cls.add_constructor([param('ns3::PacketTagIterator::Item const &', 'arg0')])
1936 ## packet.h (module 'network'): void ns3::PacketTagIterator::Item::GetTag(ns3::Tag & tag) const [member function]
1937 cls.add_method('GetTag',
1938 'void',
1939 [param('ns3::Tag &', 'tag')],
1940 is_const=True)
1941 ## packet.h (module 'network'): ns3::TypeId ns3::PacketTagIterator::Item::GetTypeId() const [member function]
1942 cls.add_method('GetTypeId',
1943 'ns3::TypeId',
1944 [],
1945 is_const=True)
1946 return
1947
1948def register_Ns3PacketTagList_methods(root_module, cls):
1949 ## packet-tag-list.h (module 'network'): ns3::PacketTagList::PacketTagList() [constructor]
1950 cls.add_constructor([])
1951 ## packet-tag-list.h (module 'network'): ns3::PacketTagList::PacketTagList(ns3::PacketTagList const & o) [copy constructor]
1952 cls.add_constructor([param('ns3::PacketTagList const &', 'o')])
1953 ## packet-tag-list.h (module 'network'): void ns3::PacketTagList::Add(ns3::Tag const & tag) const [member function]
1954 cls.add_method('Add',
1955 'void',
1956 [param('ns3::Tag const &', 'tag')],
1957 is_const=True)
1958 ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData const * ns3::PacketTagList::Head() const [member function]
1959 cls.add_method('Head',
1960 'ns3::PacketTagList::TagData const *',
1961 [],
1962 is_const=True)
1963 ## packet-tag-list.h (module 'network'): bool ns3::PacketTagList::Peek(ns3::Tag & tag) const [member function]
1964 cls.add_method('Peek',
1965 'bool',
1966 [param('ns3::Tag &', 'tag')],
1967 is_const=True)
1968 ## packet-tag-list.h (module 'network'): bool ns3::PacketTagList::Remove(ns3::Tag & tag) [member function]
1969 cls.add_method('Remove',
1970 'bool',
1971 [param('ns3::Tag &', 'tag')])
1972 ## packet-tag-list.h (module 'network'): void ns3::PacketTagList::RemoveAll() [member function]
1973 cls.add_method('RemoveAll',
1974 'void',
1975 [])
1976 return
1977
1978def register_Ns3PacketTagListTagData_methods(root_module, cls):
1979 ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData::TagData() [constructor]
1980 cls.add_constructor([])
1981 ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData::TagData(ns3::PacketTagList::TagData const & arg0) [copy constructor]
1982 cls.add_constructor([param('ns3::PacketTagList::TagData const &', 'arg0')])
1983 ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData::count [variable]
1984 cls.add_instance_attribute('count', 'uint32_t', is_const=False)
1985 ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData::data [variable]
1986 cls.add_instance_attribute('data', 'uint8_t [ 20 ]', is_const=False)
1987 ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData::next [variable]
1988 cls.add_instance_attribute('next', 'ns3::PacketTagList::TagData *', is_const=False)
1989 ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData::tid [variable]
1990 cls.add_instance_attribute('tid', 'ns3::TypeId', is_const=False)
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001991 return
1992
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07001993def register_Ns3RandomVariable_methods(root_module, cls):
1994 cls.add_output_stream_operator()
1995 ## random-variable.h (module 'core'): ns3::RandomVariable::RandomVariable() [constructor]
1996 cls.add_constructor([])
1997 ## random-variable.h (module 'core'): ns3::RandomVariable::RandomVariable(ns3::RandomVariable const & o) [copy constructor]
1998 cls.add_constructor([param('ns3::RandomVariable const &', 'o')])
1999 ## random-variable.h (module 'core'): uint32_t ns3::RandomVariable::GetInteger() const [member function]
2000 cls.add_method('GetInteger',
2001 'uint32_t',
2002 [],
2003 is_const=True)
2004 ## random-variable.h (module 'core'): double ns3::RandomVariable::GetValue() const [member function]
2005 cls.add_method('GetValue',
2006 'double',
2007 [],
2008 is_const=True)
2009 return
2010
2011def register_Ns3RngSeedManager_methods(root_module, cls):
2012 ## rng-seed-manager.h (module 'core'): ns3::RngSeedManager::RngSeedManager() [constructor]
2013 cls.add_constructor([])
2014 ## rng-seed-manager.h (module 'core'): ns3::RngSeedManager::RngSeedManager(ns3::RngSeedManager const & arg0) [copy constructor]
2015 cls.add_constructor([param('ns3::RngSeedManager const &', 'arg0')])
2016 ## rng-seed-manager.h (module 'core'): static uint64_t ns3::RngSeedManager::GetNextStreamIndex() [member function]
2017 cls.add_method('GetNextStreamIndex',
2018 'uint64_t',
2019 [],
2020 is_static=True)
2021 ## rng-seed-manager.h (module 'core'): static uint64_t ns3::RngSeedManager::GetRun() [member function]
2022 cls.add_method('GetRun',
2023 'uint64_t',
2024 [],
2025 is_static=True)
2026 ## rng-seed-manager.h (module 'core'): static uint32_t ns3::RngSeedManager::GetSeed() [member function]
2027 cls.add_method('GetSeed',
2028 'uint32_t',
2029 [],
2030 is_static=True)
2031 ## rng-seed-manager.h (module 'core'): static void ns3::RngSeedManager::SetRun(uint64_t run) [member function]
2032 cls.add_method('SetRun',
2033 'void',
2034 [param('uint64_t', 'run')],
2035 is_static=True)
2036 ## rng-seed-manager.h (module 'core'): static void ns3::RngSeedManager::SetSeed(uint32_t seed) [member function]
2037 cls.add_method('SetSeed',
2038 'void',
2039 [param('uint32_t', 'seed')],
2040 is_static=True)
2041 return
2042
2043def register_Ns3SequentialVariable_methods(root_module, cls):
2044 ## random-variable.h (module 'core'): ns3::SequentialVariable::SequentialVariable(ns3::SequentialVariable const & arg0) [copy constructor]
2045 cls.add_constructor([param('ns3::SequentialVariable const &', 'arg0')])
2046 ## random-variable.h (module 'core'): ns3::SequentialVariable::SequentialVariable(double f, double l, double i=1, uint32_t c=1) [constructor]
2047 cls.add_constructor([param('double', 'f'), param('double', 'l'), param('double', 'i', default_value='1'), param('uint32_t', 'c', default_value='1')])
2048 ## random-variable.h (module 'core'): ns3::SequentialVariable::SequentialVariable(double f, double l, ns3::RandomVariable const & i, uint32_t c=1) [constructor]
2049 cls.add_constructor([param('double', 'f'), param('double', 'l'), param('ns3::RandomVariable const &', 'i'), param('uint32_t', 'c', default_value='1')])
2050 return
2051
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002052def register_Ns3SimpleRefCount__Ns3Object_Ns3ObjectBase_Ns3ObjectDeleter_methods(root_module, cls):
2053 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter>::SimpleRefCount() [constructor]
2054 cls.add_constructor([])
2055 ## 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]
2056 cls.add_constructor([param('ns3::SimpleRefCount< ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter > const &', 'o')])
2057 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter>::Cleanup() [member function]
2058 cls.add_method('Cleanup',
2059 'void',
2060 [],
2061 is_static=True)
2062 return
2063
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07002064def register_Ns3Tag_methods(root_module, cls):
2065 ## tag.h (module 'network'): ns3::Tag::Tag() [constructor]
Alexander Afanasyev4975f732011-12-20 17:52:19 -08002066 cls.add_constructor([])
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07002067 ## tag.h (module 'network'): ns3::Tag::Tag(ns3::Tag const & arg0) [copy constructor]
2068 cls.add_constructor([param('ns3::Tag const &', 'arg0')])
2069 ## tag.h (module 'network'): void ns3::Tag::Deserialize(ns3::TagBuffer i) [member function]
2070 cls.add_method('Deserialize',
Alexander Afanasyev4975f732011-12-20 17:52:19 -08002071 'void',
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07002072 [param('ns3::TagBuffer', 'i')],
2073 is_pure_virtual=True, is_virtual=True)
2074 ## tag.h (module 'network'): uint32_t ns3::Tag::GetSerializedSize() const [member function]
2075 cls.add_method('GetSerializedSize',
2076 'uint32_t',
2077 [],
2078 is_pure_virtual=True, is_const=True, is_virtual=True)
2079 ## tag.h (module 'network'): static ns3::TypeId ns3::Tag::GetTypeId() [member function]
2080 cls.add_method('GetTypeId',
2081 'ns3::TypeId',
2082 [],
Alexander Afanasyev4975f732011-12-20 17:52:19 -08002083 is_static=True)
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07002084 ## tag.h (module 'network'): void ns3::Tag::Print(std::ostream & os) const [member function]
2085 cls.add_method('Print',
Alexander Afanasyev4975f732011-12-20 17:52:19 -08002086 'void',
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07002087 [param('std::ostream &', 'os')],
2088 is_pure_virtual=True, is_const=True, is_virtual=True)
2089 ## tag.h (module 'network'): void ns3::Tag::Serialize(ns3::TagBuffer i) const [member function]
2090 cls.add_method('Serialize',
2091 'void',
2092 [param('ns3::TagBuffer', 'i')],
2093 is_pure_virtual=True, is_const=True, is_virtual=True)
Alexander Afanasyev4975f732011-12-20 17:52:19 -08002094 return
2095
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002096def register_Ns3TagBuffer_methods(root_module, cls):
2097 ## tag-buffer.h (module 'network'): ns3::TagBuffer::TagBuffer(ns3::TagBuffer const & arg0) [copy constructor]
2098 cls.add_constructor([param('ns3::TagBuffer const &', 'arg0')])
2099 ## tag-buffer.h (module 'network'): ns3::TagBuffer::TagBuffer(uint8_t * start, uint8_t * end) [constructor]
2100 cls.add_constructor([param('uint8_t *', 'start'), param('uint8_t *', 'end')])
2101 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::CopyFrom(ns3::TagBuffer o) [member function]
2102 cls.add_method('CopyFrom',
2103 'void',
2104 [param('ns3::TagBuffer', 'o')])
2105 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::Read(uint8_t * buffer, uint32_t size) [member function]
2106 cls.add_method('Read',
2107 'void',
2108 [param('uint8_t *', 'buffer'), param('uint32_t', 'size')])
2109 ## tag-buffer.h (module 'network'): double ns3::TagBuffer::ReadDouble() [member function]
2110 cls.add_method('ReadDouble',
2111 'double',
2112 [])
2113 ## tag-buffer.h (module 'network'): uint16_t ns3::TagBuffer::ReadU16() [member function]
2114 cls.add_method('ReadU16',
2115 'uint16_t',
2116 [])
2117 ## tag-buffer.h (module 'network'): uint32_t ns3::TagBuffer::ReadU32() [member function]
2118 cls.add_method('ReadU32',
2119 'uint32_t',
2120 [])
2121 ## tag-buffer.h (module 'network'): uint64_t ns3::TagBuffer::ReadU64() [member function]
2122 cls.add_method('ReadU64',
2123 'uint64_t',
2124 [])
2125 ## tag-buffer.h (module 'network'): uint8_t ns3::TagBuffer::ReadU8() [member function]
2126 cls.add_method('ReadU8',
2127 'uint8_t',
2128 [])
2129 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::TrimAtEnd(uint32_t trim) [member function]
2130 cls.add_method('TrimAtEnd',
2131 'void',
2132 [param('uint32_t', 'trim')])
2133 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::Write(uint8_t const * buffer, uint32_t size) [member function]
2134 cls.add_method('Write',
2135 'void',
2136 [param('uint8_t const *', 'buffer'), param('uint32_t', 'size')])
2137 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::WriteDouble(double v) [member function]
2138 cls.add_method('WriteDouble',
2139 'void',
2140 [param('double', 'v')])
2141 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::WriteU16(uint16_t data) [member function]
2142 cls.add_method('WriteU16',
2143 'void',
2144 [param('uint16_t', 'data')])
2145 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::WriteU32(uint32_t data) [member function]
2146 cls.add_method('WriteU32',
2147 'void',
2148 [param('uint32_t', 'data')])
2149 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::WriteU64(uint64_t v) [member function]
2150 cls.add_method('WriteU64',
2151 'void',
2152 [param('uint64_t', 'v')])
2153 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::WriteU8(uint8_t v) [member function]
2154 cls.add_method('WriteU8',
2155 'void',
2156 [param('uint8_t', 'v')])
2157 return
2158
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07002159def register_Ns3TriangularVariable_methods(root_module, cls):
2160 ## random-variable.h (module 'core'): ns3::TriangularVariable::TriangularVariable(ns3::TriangularVariable const & arg0) [copy constructor]
2161 cls.add_constructor([param('ns3::TriangularVariable const &', 'arg0')])
2162 ## random-variable.h (module 'core'): ns3::TriangularVariable::TriangularVariable() [constructor]
2163 cls.add_constructor([])
2164 ## random-variable.h (module 'core'): ns3::TriangularVariable::TriangularVariable(double s, double l, double mean) [constructor]
2165 cls.add_constructor([param('double', 's'), param('double', 'l'), param('double', 'mean')])
2166 return
2167
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002168def register_Ns3TypeId_methods(root_module, cls):
2169 cls.add_binary_comparison_operator('!=')
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07002170 cls.add_output_stream_operator()
Alexander Afanasyeva28ec562012-10-25 14:07:32 -07002171 cls.add_binary_comparison_operator('==')
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002172 cls.add_binary_comparison_operator('<')
2173 ## type-id.h (module 'core'): ns3::TypeId::TypeId(char const * name) [constructor]
2174 cls.add_constructor([param('char const *', 'name')])
2175 ## type-id.h (module 'core'): ns3::TypeId::TypeId() [constructor]
2176 cls.add_constructor([])
2177 ## type-id.h (module 'core'): ns3::TypeId::TypeId(ns3::TypeId const & o) [copy constructor]
2178 cls.add_constructor([param('ns3::TypeId const &', 'o')])
2179 ## 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]
2180 cls.add_method('AddAttribute',
2181 'ns3::TypeId',
2182 [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')])
2183 ## 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]
2184 cls.add_method('AddAttribute',
2185 'ns3::TypeId',
2186 [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')])
2187 ## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::AddTraceSource(std::string name, std::string help, ns3::Ptr<ns3::TraceSourceAccessor const> accessor) [member function]
2188 cls.add_method('AddTraceSource',
2189 'ns3::TypeId',
2190 [param('std::string', 'name'), param('std::string', 'help'), param('ns3::Ptr< ns3::TraceSourceAccessor const >', 'accessor')])
2191 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation ns3::TypeId::GetAttribute(uint32_t i) const [member function]
2192 cls.add_method('GetAttribute',
2193 'ns3::TypeId::AttributeInformation',
2194 [param('uint32_t', 'i')],
2195 is_const=True)
2196 ## type-id.h (module 'core'): std::string ns3::TypeId::GetAttributeFullName(uint32_t i) const [member function]
2197 cls.add_method('GetAttributeFullName',
2198 'std::string',
2199 [param('uint32_t', 'i')],
2200 is_const=True)
2201 ## type-id.h (module 'core'): uint32_t ns3::TypeId::GetAttributeN() const [member function]
2202 cls.add_method('GetAttributeN',
2203 'uint32_t',
2204 [],
2205 is_const=True)
2206 ## 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]
2207 cls.add_method('GetConstructor',
2208 'ns3::Callback< ns3::ObjectBase *, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >',
2209 [],
2210 is_const=True)
2211 ## type-id.h (module 'core'): std::string ns3::TypeId::GetGroupName() const [member function]
2212 cls.add_method('GetGroupName',
2213 'std::string',
2214 [],
2215 is_const=True)
2216 ## type-id.h (module 'core'): std::string ns3::TypeId::GetName() const [member function]
2217 cls.add_method('GetName',
2218 'std::string',
2219 [],
2220 is_const=True)
2221 ## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::GetParent() const [member function]
2222 cls.add_method('GetParent',
2223 'ns3::TypeId',
2224 [],
2225 is_const=True)
2226 ## type-id.h (module 'core'): static ns3::TypeId ns3::TypeId::GetRegistered(uint32_t i) [member function]
2227 cls.add_method('GetRegistered',
2228 'ns3::TypeId',
2229 [param('uint32_t', 'i')],
2230 is_static=True)
2231 ## type-id.h (module 'core'): static uint32_t ns3::TypeId::GetRegisteredN() [member function]
2232 cls.add_method('GetRegisteredN',
2233 'uint32_t',
2234 [],
2235 is_static=True)
2236 ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation ns3::TypeId::GetTraceSource(uint32_t i) const [member function]
2237 cls.add_method('GetTraceSource',
2238 'ns3::TypeId::TraceSourceInformation',
2239 [param('uint32_t', 'i')],
2240 is_const=True)
2241 ## type-id.h (module 'core'): uint32_t ns3::TypeId::GetTraceSourceN() const [member function]
2242 cls.add_method('GetTraceSourceN',
2243 'uint32_t',
2244 [],
2245 is_const=True)
2246 ## type-id.h (module 'core'): uint16_t ns3::TypeId::GetUid() const [member function]
2247 cls.add_method('GetUid',
2248 'uint16_t',
2249 [],
2250 is_const=True)
2251 ## type-id.h (module 'core'): bool ns3::TypeId::HasConstructor() const [member function]
2252 cls.add_method('HasConstructor',
2253 'bool',
2254 [],
2255 is_const=True)
2256 ## type-id.h (module 'core'): bool ns3::TypeId::HasParent() const [member function]
2257 cls.add_method('HasParent',
2258 'bool',
2259 [],
2260 is_const=True)
2261 ## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::HideFromDocumentation() [member function]
2262 cls.add_method('HideFromDocumentation',
2263 'ns3::TypeId',
2264 [])
2265 ## type-id.h (module 'core'): bool ns3::TypeId::IsChildOf(ns3::TypeId other) const [member function]
2266 cls.add_method('IsChildOf',
2267 'bool',
2268 [param('ns3::TypeId', 'other')],
2269 is_const=True)
2270 ## type-id.h (module 'core'): bool ns3::TypeId::LookupAttributeByName(std::string name, ns3::TypeId::AttributeInformation * info) const [member function]
2271 cls.add_method('LookupAttributeByName',
2272 'bool',
Alexander Afanasyev6f933532012-02-29 13:30:37 -08002273 [param('std::string', 'name'), param('ns3::TypeId::AttributeInformation *', 'info', transfer_ownership=False)],
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002274 is_const=True)
2275 ## type-id.h (module 'core'): static ns3::TypeId ns3::TypeId::LookupByName(std::string name) [member function]
2276 cls.add_method('LookupByName',
2277 'ns3::TypeId',
2278 [param('std::string', 'name')],
2279 is_static=True)
2280 ## type-id.h (module 'core'): ns3::Ptr<ns3::TraceSourceAccessor const> ns3::TypeId::LookupTraceSourceByName(std::string name) const [member function]
2281 cls.add_method('LookupTraceSourceByName',
2282 'ns3::Ptr< ns3::TraceSourceAccessor const >',
2283 [param('std::string', 'name')],
2284 is_const=True)
2285 ## type-id.h (module 'core'): bool ns3::TypeId::MustHideFromDocumentation() const [member function]
2286 cls.add_method('MustHideFromDocumentation',
2287 'bool',
2288 [],
2289 is_const=True)
2290 ## type-id.h (module 'core'): bool ns3::TypeId::SetAttributeInitialValue(uint32_t i, ns3::Ptr<ns3::AttributeValue const> initialValue) [member function]
2291 cls.add_method('SetAttributeInitialValue',
2292 'bool',
2293 [param('uint32_t', 'i'), param('ns3::Ptr< ns3::AttributeValue const >', 'initialValue')])
2294 ## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::SetGroupName(std::string groupName) [member function]
2295 cls.add_method('SetGroupName',
2296 'ns3::TypeId',
2297 [param('std::string', 'groupName')])
2298 ## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::SetParent(ns3::TypeId tid) [member function]
2299 cls.add_method('SetParent',
2300 'ns3::TypeId',
2301 [param('ns3::TypeId', 'tid')])
2302 ## type-id.h (module 'core'): void ns3::TypeId::SetUid(uint16_t tid) [member function]
2303 cls.add_method('SetUid',
2304 'void',
2305 [param('uint16_t', 'tid')])
2306 return
2307
2308def register_Ns3TypeIdAttributeInformation_methods(root_module, cls):
2309 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::AttributeInformation() [constructor]
2310 cls.add_constructor([])
2311 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::AttributeInformation(ns3::TypeId::AttributeInformation const & arg0) [copy constructor]
2312 cls.add_constructor([param('ns3::TypeId::AttributeInformation const &', 'arg0')])
2313 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::accessor [variable]
2314 cls.add_instance_attribute('accessor', 'ns3::Ptr< ns3::AttributeAccessor const >', is_const=False)
2315 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::checker [variable]
2316 cls.add_instance_attribute('checker', 'ns3::Ptr< ns3::AttributeChecker const >', is_const=False)
2317 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::flags [variable]
2318 cls.add_instance_attribute('flags', 'uint32_t', is_const=False)
2319 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::help [variable]
2320 cls.add_instance_attribute('help', 'std::string', is_const=False)
2321 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::initialValue [variable]
2322 cls.add_instance_attribute('initialValue', 'ns3::Ptr< ns3::AttributeValue const >', is_const=False)
2323 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::name [variable]
2324 cls.add_instance_attribute('name', 'std::string', is_const=False)
2325 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::originalInitialValue [variable]
2326 cls.add_instance_attribute('originalInitialValue', 'ns3::Ptr< ns3::AttributeValue const >', is_const=False)
2327 return
2328
2329def register_Ns3TypeIdTraceSourceInformation_methods(root_module, cls):
2330 ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation::TraceSourceInformation() [constructor]
2331 cls.add_constructor([])
2332 ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation::TraceSourceInformation(ns3::TypeId::TraceSourceInformation const & arg0) [copy constructor]
2333 cls.add_constructor([param('ns3::TypeId::TraceSourceInformation const &', 'arg0')])
2334 ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation::accessor [variable]
2335 cls.add_instance_attribute('accessor', 'ns3::Ptr< ns3::TraceSourceAccessor const >', is_const=False)
2336 ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation::help [variable]
2337 cls.add_instance_attribute('help', 'std::string', is_const=False)
2338 ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation::name [variable]
2339 cls.add_instance_attribute('name', 'std::string', is_const=False)
2340 return
2341
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07002342def register_Ns3UniformVariable_methods(root_module, cls):
2343 ## random-variable.h (module 'core'): ns3::UniformVariable::UniformVariable(ns3::UniformVariable const & arg0) [copy constructor]
2344 cls.add_constructor([param('ns3::UniformVariable const &', 'arg0')])
2345 ## random-variable.h (module 'core'): ns3::UniformVariable::UniformVariable() [constructor]
2346 cls.add_constructor([])
2347 ## random-variable.h (module 'core'): ns3::UniformVariable::UniformVariable(double s, double l) [constructor]
2348 cls.add_constructor([param('double', 's'), param('double', 'l')])
2349 ## random-variable.h (module 'core'): uint32_t ns3::UniformVariable::GetInteger(uint32_t s, uint32_t l) [member function]
2350 cls.add_method('GetInteger',
2351 'uint32_t',
2352 [param('uint32_t', 's'), param('uint32_t', 'l')])
2353 ## random-variable.h (module 'core'): double ns3::UniformVariable::GetValue() const [member function]
2354 cls.add_method('GetValue',
2355 'double',
2356 [],
2357 is_const=True)
2358 ## random-variable.h (module 'core'): double ns3::UniformVariable::GetValue(double s, double l) [member function]
2359 cls.add_method('GetValue',
2360 'double',
2361 [param('double', 's'), param('double', 'l')])
2362 return
2363
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07002364def register_Ns3WeibullVariable_methods(root_module, cls):
2365 ## random-variable.h (module 'core'): ns3::WeibullVariable::WeibullVariable(ns3::WeibullVariable const & arg0) [copy constructor]
2366 cls.add_constructor([param('ns3::WeibullVariable const &', 'arg0')])
2367 ## random-variable.h (module 'core'): ns3::WeibullVariable::WeibullVariable() [constructor]
2368 cls.add_constructor([])
2369 ## random-variable.h (module 'core'): ns3::WeibullVariable::WeibullVariable(double m) [constructor]
2370 cls.add_constructor([param('double', 'm')])
2371 ## random-variable.h (module 'core'): ns3::WeibullVariable::WeibullVariable(double m, double s) [constructor]
2372 cls.add_constructor([param('double', 'm'), param('double', 's')])
2373 ## random-variable.h (module 'core'): ns3::WeibullVariable::WeibullVariable(double m, double s, double b) [constructor]
2374 cls.add_constructor([param('double', 'm'), param('double', 's'), param('double', 'b')])
2375 return
2376
2377def register_Ns3ZetaVariable_methods(root_module, cls):
2378 ## random-variable.h (module 'core'): ns3::ZetaVariable::ZetaVariable(ns3::ZetaVariable const & arg0) [copy constructor]
2379 cls.add_constructor([param('ns3::ZetaVariable const &', 'arg0')])
2380 ## random-variable.h (module 'core'): ns3::ZetaVariable::ZetaVariable(double alpha) [constructor]
2381 cls.add_constructor([param('double', 'alpha')])
2382 ## random-variable.h (module 'core'): ns3::ZetaVariable::ZetaVariable() [constructor]
2383 cls.add_constructor([])
2384 return
2385
2386def register_Ns3ZipfVariable_methods(root_module, cls):
2387 ## random-variable.h (module 'core'): ns3::ZipfVariable::ZipfVariable(ns3::ZipfVariable const & arg0) [copy constructor]
2388 cls.add_constructor([param('ns3::ZipfVariable const &', 'arg0')])
2389 ## random-variable.h (module 'core'): ns3::ZipfVariable::ZipfVariable(long int N, double alpha) [constructor]
2390 cls.add_constructor([param('long int', 'N'), param('double', 'alpha')])
2391 ## random-variable.h (module 'core'): ns3::ZipfVariable::ZipfVariable() [constructor]
2392 cls.add_constructor([])
2393 return
2394
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002395def register_Ns3Empty_methods(root_module, cls):
2396 ## empty.h (module 'core'): ns3::empty::empty() [constructor]
2397 cls.add_constructor([])
2398 ## empty.h (module 'core'): ns3::empty::empty(ns3::empty const & arg0) [copy constructor]
2399 cls.add_constructor([param('ns3::empty const &', 'arg0')])
2400 return
2401
2402def register_Ns3Int64x64_t_methods(root_module, cls):
2403 cls.add_binary_comparison_operator('!=')
2404 cls.add_inplace_numeric_operator('*=', param('ns3::int64x64_t const &', 'right'))
2405 cls.add_inplace_numeric_operator('+=', param('ns3::int64x64_t const &', 'right'))
2406 cls.add_inplace_numeric_operator('-=', param('ns3::int64x64_t const &', 'right'))
Alexander Afanasyeva28ec562012-10-25 14:07:32 -07002407 cls.add_output_stream_operator()
Alexander Afanasyeva8f5d882012-11-09 14:22:48 -08002408 cls.add_binary_comparison_operator('<=')
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002409 cls.add_binary_comparison_operator('==')
2410 cls.add_binary_comparison_operator('>=')
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07002411 cls.add_inplace_numeric_operator('/=', param('ns3::int64x64_t const &', 'right'))
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002412 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long unsigned int const', 'right'))
2413 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long unsigned int const', 'right'))
2414 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned int const', 'right'))
2415 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short unsigned int const', 'right'))
2416 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned char const', 'right'))
2417 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long int const', 'right'))
2418 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long int const', 'right'))
2419 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('int const', 'right'))
2420 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short int const', 'right'))
2421 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('signed char const', 'right'))
2422 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('double const', 'right'))
2423 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('ns3::int64x64_t const &', 'right'))
2424 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_unary_numeric_operator('-')
2448 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('ns3::int64x64_t const &', 'right'))
2449 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long unsigned int const', 'right'))
2450 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long unsigned int const', 'right'))
2451 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned int const', 'right'))
2452 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short unsigned int const', 'right'))
2453 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned char const', 'right'))
2454 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long int const', 'right'))
2455 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long int const', 'right'))
2456 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('int const', 'right'))
2457 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short int const', 'right'))
2458 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('signed char const', 'right'))
2459 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('double const', 'right'))
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_comparison_operator('<')
2462 cls.add_binary_comparison_operator('>')
2463 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t() [constructor]
2464 cls.add_constructor([])
2465 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(double v) [constructor]
2466 cls.add_constructor([param('double', 'v')])
2467 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(int v) [constructor]
2468 cls.add_constructor([param('int', 'v')])
2469 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(long int v) [constructor]
2470 cls.add_constructor([param('long int', 'v')])
2471 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(long long int v) [constructor]
2472 cls.add_constructor([param('long long int', 'v')])
2473 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(unsigned int v) [constructor]
2474 cls.add_constructor([param('unsigned int', 'v')])
2475 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(long unsigned int v) [constructor]
2476 cls.add_constructor([param('long unsigned int', 'v')])
2477 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(long long unsigned int v) [constructor]
2478 cls.add_constructor([param('long long unsigned int', 'v')])
2479 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(int64_t hi, uint64_t lo) [constructor]
2480 cls.add_constructor([param('int64_t', 'hi'), param('uint64_t', 'lo')])
2481 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(ns3::int64x64_t const & o) [copy constructor]
2482 cls.add_constructor([param('ns3::int64x64_t const &', 'o')])
2483 ## int64x64-double.h (module 'core'): double ns3::int64x64_t::GetDouble() const [member function]
2484 cls.add_method('GetDouble',
2485 'double',
2486 [],
2487 is_const=True)
2488 ## int64x64-double.h (module 'core'): int64_t ns3::int64x64_t::GetHigh() const [member function]
2489 cls.add_method('GetHigh',
2490 'int64_t',
2491 [],
2492 is_const=True)
2493 ## int64x64-double.h (module 'core'): uint64_t ns3::int64x64_t::GetLow() const [member function]
2494 cls.add_method('GetLow',
2495 'uint64_t',
2496 [],
2497 is_const=True)
2498 ## int64x64-double.h (module 'core'): static ns3::int64x64_t ns3::int64x64_t::Invert(uint64_t v) [member function]
2499 cls.add_method('Invert',
2500 'ns3::int64x64_t',
2501 [param('uint64_t', 'v')],
2502 is_static=True)
2503 ## int64x64-double.h (module 'core'): void ns3::int64x64_t::MulByInvert(ns3::int64x64_t const & o) [member function]
2504 cls.add_method('MulByInvert',
2505 'void',
2506 [param('ns3::int64x64_t const &', 'o')])
2507 return
2508
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002509def register_Ns3Chunk_methods(root_module, cls):
2510 ## chunk.h (module 'network'): ns3::Chunk::Chunk() [constructor]
2511 cls.add_constructor([])
2512 ## chunk.h (module 'network'): ns3::Chunk::Chunk(ns3::Chunk const & arg0) [copy constructor]
2513 cls.add_constructor([param('ns3::Chunk const &', 'arg0')])
2514 ## chunk.h (module 'network'): uint32_t ns3::Chunk::Deserialize(ns3::Buffer::Iterator start) [member function]
2515 cls.add_method('Deserialize',
2516 'uint32_t',
2517 [param('ns3::Buffer::Iterator', 'start')],
2518 is_pure_virtual=True, is_virtual=True)
2519 ## chunk.h (module 'network'): static ns3::TypeId ns3::Chunk::GetTypeId() [member function]
2520 cls.add_method('GetTypeId',
2521 'ns3::TypeId',
2522 [],
2523 is_static=True)
2524 ## chunk.h (module 'network'): void ns3::Chunk::Print(std::ostream & os) const [member function]
2525 cls.add_method('Print',
2526 'void',
2527 [param('std::ostream &', 'os')],
2528 is_pure_virtual=True, is_const=True, is_virtual=True)
2529 return
2530
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07002531def register_Ns3ConstantVariable_methods(root_module, cls):
2532 ## random-variable.h (module 'core'): ns3::ConstantVariable::ConstantVariable(ns3::ConstantVariable const & arg0) [copy constructor]
2533 cls.add_constructor([param('ns3::ConstantVariable const &', 'arg0')])
2534 ## random-variable.h (module 'core'): ns3::ConstantVariable::ConstantVariable() [constructor]
2535 cls.add_constructor([])
2536 ## random-variable.h (module 'core'): ns3::ConstantVariable::ConstantVariable(double c) [constructor]
2537 cls.add_constructor([param('double', 'c')])
2538 ## random-variable.h (module 'core'): void ns3::ConstantVariable::SetConstant(double c) [member function]
2539 cls.add_method('SetConstant',
2540 'void',
2541 [param('double', 'c')])
2542 return
2543
2544def register_Ns3DeterministicVariable_methods(root_module, cls):
2545 ## random-variable.h (module 'core'): ns3::DeterministicVariable::DeterministicVariable(ns3::DeterministicVariable const & arg0) [copy constructor]
2546 cls.add_constructor([param('ns3::DeterministicVariable const &', 'arg0')])
2547 ## random-variable.h (module 'core'): ns3::DeterministicVariable::DeterministicVariable(double * d, uint32_t c) [constructor]
2548 cls.add_constructor([param('double *', 'd'), param('uint32_t', 'c')])
2549 return
2550
2551def register_Ns3EmpiricalVariable_methods(root_module, cls):
2552 ## random-variable.h (module 'core'): ns3::EmpiricalVariable::EmpiricalVariable(ns3::EmpiricalVariable const & arg0) [copy constructor]
2553 cls.add_constructor([param('ns3::EmpiricalVariable const &', 'arg0')])
2554 ## random-variable.h (module 'core'): ns3::EmpiricalVariable::EmpiricalVariable() [constructor]
2555 cls.add_constructor([])
2556 ## random-variable.h (module 'core'): void ns3::EmpiricalVariable::CDF(double v, double c) [member function]
2557 cls.add_method('CDF',
2558 'void',
2559 [param('double', 'v'), param('double', 'c')])
2560 return
2561
2562def register_Ns3ErlangVariable_methods(root_module, cls):
2563 ## random-variable.h (module 'core'): ns3::ErlangVariable::ErlangVariable(ns3::ErlangVariable const & arg0) [copy constructor]
2564 cls.add_constructor([param('ns3::ErlangVariable const &', 'arg0')])
2565 ## random-variable.h (module 'core'): ns3::ErlangVariable::ErlangVariable() [constructor]
2566 cls.add_constructor([])
2567 ## random-variable.h (module 'core'): ns3::ErlangVariable::ErlangVariable(unsigned int k, double lambda) [constructor]
2568 cls.add_constructor([param('unsigned int', 'k'), param('double', 'lambda')])
2569 ## random-variable.h (module 'core'): double ns3::ErlangVariable::GetValue() const [member function]
2570 cls.add_method('GetValue',
2571 'double',
2572 [],
2573 is_const=True)
2574 ## random-variable.h (module 'core'): double ns3::ErlangVariable::GetValue(unsigned int k, double lambda) const [member function]
2575 cls.add_method('GetValue',
2576 'double',
2577 [param('unsigned int', 'k'), param('double', 'lambda')],
2578 is_const=True)
2579 return
2580
2581def register_Ns3ExponentialVariable_methods(root_module, cls):
2582 ## random-variable.h (module 'core'): ns3::ExponentialVariable::ExponentialVariable(ns3::ExponentialVariable const & arg0) [copy constructor]
2583 cls.add_constructor([param('ns3::ExponentialVariable const &', 'arg0')])
2584 ## random-variable.h (module 'core'): ns3::ExponentialVariable::ExponentialVariable() [constructor]
2585 cls.add_constructor([])
2586 ## random-variable.h (module 'core'): ns3::ExponentialVariable::ExponentialVariable(double m) [constructor]
2587 cls.add_constructor([param('double', 'm')])
2588 ## random-variable.h (module 'core'): ns3::ExponentialVariable::ExponentialVariable(double m, double b) [constructor]
2589 cls.add_constructor([param('double', 'm'), param('double', 'b')])
2590 return
2591
2592def register_Ns3GammaVariable_methods(root_module, cls):
2593 ## random-variable.h (module 'core'): ns3::GammaVariable::GammaVariable(ns3::GammaVariable const & arg0) [copy constructor]
2594 cls.add_constructor([param('ns3::GammaVariable const &', 'arg0')])
2595 ## random-variable.h (module 'core'): ns3::GammaVariable::GammaVariable() [constructor]
2596 cls.add_constructor([])
2597 ## random-variable.h (module 'core'): ns3::GammaVariable::GammaVariable(double alpha, double beta) [constructor]
2598 cls.add_constructor([param('double', 'alpha'), param('double', 'beta')])
2599 ## random-variable.h (module 'core'): double ns3::GammaVariable::GetValue() const [member function]
2600 cls.add_method('GetValue',
2601 'double',
2602 [],
2603 is_const=True)
2604 ## random-variable.h (module 'core'): double ns3::GammaVariable::GetValue(double alpha, double beta) const [member function]
2605 cls.add_method('GetValue',
2606 'double',
2607 [param('double', 'alpha'), param('double', 'beta')],
2608 is_const=True)
2609 return
2610
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002611def register_Ns3Header_methods(root_module, cls):
2612 cls.add_output_stream_operator()
2613 ## header.h (module 'network'): ns3::Header::Header() [constructor]
2614 cls.add_constructor([])
2615 ## header.h (module 'network'): ns3::Header::Header(ns3::Header const & arg0) [copy constructor]
2616 cls.add_constructor([param('ns3::Header const &', 'arg0')])
2617 ## header.h (module 'network'): uint32_t ns3::Header::Deserialize(ns3::Buffer::Iterator start) [member function]
2618 cls.add_method('Deserialize',
2619 'uint32_t',
2620 [param('ns3::Buffer::Iterator', 'start')],
2621 is_pure_virtual=True, is_virtual=True)
2622 ## header.h (module 'network'): uint32_t ns3::Header::GetSerializedSize() const [member function]
2623 cls.add_method('GetSerializedSize',
2624 'uint32_t',
2625 [],
2626 is_pure_virtual=True, is_const=True, is_virtual=True)
2627 ## header.h (module 'network'): static ns3::TypeId ns3::Header::GetTypeId() [member function]
2628 cls.add_method('GetTypeId',
2629 'ns3::TypeId',
2630 [],
2631 is_static=True)
2632 ## header.h (module 'network'): void ns3::Header::Print(std::ostream & os) const [member function]
2633 cls.add_method('Print',
2634 'void',
2635 [param('std::ostream &', 'os')],
2636 is_pure_virtual=True, is_const=True, is_virtual=True)
2637 ## header.h (module 'network'): void ns3::Header::Serialize(ns3::Buffer::Iterator start) const [member function]
2638 cls.add_method('Serialize',
2639 'void',
2640 [param('ns3::Buffer::Iterator', 'start')],
2641 is_pure_virtual=True, is_const=True, is_virtual=True)
2642 return
2643
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07002644def register_Ns3IntEmpiricalVariable_methods(root_module, cls):
2645 ## random-variable.h (module 'core'): ns3::IntEmpiricalVariable::IntEmpiricalVariable(ns3::IntEmpiricalVariable const & arg0) [copy constructor]
2646 cls.add_constructor([param('ns3::IntEmpiricalVariable const &', 'arg0')])
2647 ## random-variable.h (module 'core'): ns3::IntEmpiricalVariable::IntEmpiricalVariable() [constructor]
2648 cls.add_constructor([])
2649 return
2650
2651def register_Ns3LogNormalVariable_methods(root_module, cls):
2652 ## random-variable.h (module 'core'): ns3::LogNormalVariable::LogNormalVariable(ns3::LogNormalVariable const & arg0) [copy constructor]
2653 cls.add_constructor([param('ns3::LogNormalVariable const &', 'arg0')])
2654 ## random-variable.h (module 'core'): ns3::LogNormalVariable::LogNormalVariable(double mu, double sigma) [constructor]
2655 cls.add_constructor([param('double', 'mu'), param('double', 'sigma')])
2656 return
2657
2658def register_Ns3NormalVariable_methods(root_module, cls):
2659 ## random-variable.h (module 'core'): ns3::NormalVariable::NormalVariable(ns3::NormalVariable const & arg0) [copy constructor]
2660 cls.add_constructor([param('ns3::NormalVariable const &', 'arg0')])
2661 ## random-variable.h (module 'core'): ns3::NormalVariable::NormalVariable() [constructor]
2662 cls.add_constructor([])
2663 ## random-variable.h (module 'core'): ns3::NormalVariable::NormalVariable(double m, double v) [constructor]
2664 cls.add_constructor([param('double', 'm'), param('double', 'v')])
2665 ## random-variable.h (module 'core'): ns3::NormalVariable::NormalVariable(double m, double v, double b) [constructor]
2666 cls.add_constructor([param('double', 'm'), param('double', 'v'), param('double', 'b')])
2667 return
2668
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002669def register_Ns3Object_methods(root_module, cls):
2670 ## object.h (module 'core'): ns3::Object::Object() [constructor]
2671 cls.add_constructor([])
2672 ## object.h (module 'core'): void ns3::Object::AggregateObject(ns3::Ptr<ns3::Object> other) [member function]
2673 cls.add_method('AggregateObject',
2674 'void',
2675 [param('ns3::Ptr< ns3::Object >', 'other')])
2676 ## object.h (module 'core'): void ns3::Object::Dispose() [member function]
2677 cls.add_method('Dispose',
2678 'void',
2679 [])
2680 ## object.h (module 'core'): ns3::Object::AggregateIterator ns3::Object::GetAggregateIterator() const [member function]
2681 cls.add_method('GetAggregateIterator',
2682 'ns3::Object::AggregateIterator',
2683 [],
2684 is_const=True)
2685 ## object.h (module 'core'): ns3::TypeId ns3::Object::GetInstanceTypeId() const [member function]
2686 cls.add_method('GetInstanceTypeId',
2687 'ns3::TypeId',
2688 [],
2689 is_const=True, is_virtual=True)
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07002690 ## object.h (module 'core'): ns3::Ptr<ns3::ndn::ContentStore> ns3::Object::GetObject() const [member function]
2691 cls.add_method('GetObject',
2692 'ns3::Ptr< ns3::ndn::ContentStore >',
2693 [],
2694 is_const=True, template_parameters=['ns3::ndn::ContentStore'])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07002695 ## object.h (module 'core'): ns3::Ptr<ns3::ndn::Fib> ns3::Object::GetObject() const [member function]
Alexander Afanasyev1c0248b2012-07-24 15:59:50 -07002696 cls.add_method('GetObject',
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07002697 'ns3::Ptr< ns3::ndn::Fib >',
Alexander Afanasyev1c0248b2012-07-24 15:59:50 -07002698 [],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07002699 is_const=True, template_parameters=['ns3::ndn::Fib'])
2700 ## object.h (module 'core'): ns3::Ptr<ns3::ndn::Pit> ns3::Object::GetObject() const [member function]
Alexander Afanasyev5feb38b2012-08-09 11:01:43 -07002701 cls.add_method('GetObject',
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07002702 'ns3::Ptr< ns3::ndn::Pit >',
Alexander Afanasyev5feb38b2012-08-09 11:01:43 -07002703 [],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07002704 is_const=True, template_parameters=['ns3::ndn::Pit'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002705 ## object.h (module 'core'): static ns3::TypeId ns3::Object::GetTypeId() [member function]
2706 cls.add_method('GetTypeId',
2707 'ns3::TypeId',
2708 [],
2709 is_static=True)
2710 ## object.h (module 'core'): void ns3::Object::Start() [member function]
2711 cls.add_method('Start',
2712 'void',
2713 [])
2714 ## object.h (module 'core'): ns3::Object::Object(ns3::Object const & o) [copy constructor]
2715 cls.add_constructor([param('ns3::Object const &', 'o')],
2716 visibility='protected')
2717 ## object.h (module 'core'): void ns3::Object::DoDispose() [member function]
2718 cls.add_method('DoDispose',
2719 'void',
2720 [],
2721 visibility='protected', is_virtual=True)
2722 ## object.h (module 'core'): void ns3::Object::DoStart() [member function]
2723 cls.add_method('DoStart',
2724 'void',
2725 [],
2726 visibility='protected', is_virtual=True)
2727 ## object.h (module 'core'): void ns3::Object::NotifyNewAggregate() [member function]
2728 cls.add_method('NotifyNewAggregate',
2729 'void',
2730 [],
2731 visibility='protected', is_virtual=True)
2732 return
2733
2734def register_Ns3ObjectAggregateIterator_methods(root_module, cls):
2735 ## object.h (module 'core'): ns3::Object::AggregateIterator::AggregateIterator(ns3::Object::AggregateIterator const & arg0) [copy constructor]
2736 cls.add_constructor([param('ns3::Object::AggregateIterator const &', 'arg0')])
2737 ## object.h (module 'core'): ns3::Object::AggregateIterator::AggregateIterator() [constructor]
2738 cls.add_constructor([])
2739 ## object.h (module 'core'): bool ns3::Object::AggregateIterator::HasNext() const [member function]
2740 cls.add_method('HasNext',
2741 'bool',
2742 [],
2743 is_const=True)
2744 ## object.h (module 'core'): ns3::Ptr<ns3::Object const> ns3::Object::AggregateIterator::Next() [member function]
2745 cls.add_method('Next',
2746 'ns3::Ptr< ns3::Object const >',
2747 [])
2748 return
2749
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07002750def register_Ns3ParetoVariable_methods(root_module, cls):
2751 ## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable(ns3::ParetoVariable const & arg0) [copy constructor]
2752 cls.add_constructor([param('ns3::ParetoVariable const &', 'arg0')])
2753 ## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable() [constructor]
2754 cls.add_constructor([])
2755 ## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable(double m) [constructor]
2756 cls.add_constructor([param('double', 'm')])
2757 ## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable(double m, double s) [constructor]
2758 cls.add_constructor([param('double', 'm'), param('double', 's')])
2759 ## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable(double m, double s, double b) [constructor]
2760 cls.add_constructor([param('double', 'm'), param('double', 's'), param('double', 'b')])
2761 ## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable(std::pair<double,double> params) [constructor]
2762 cls.add_constructor([param('std::pair< double, double >', 'params')])
2763 ## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable(std::pair<double,double> params, double b) [constructor]
2764 cls.add_constructor([param('std::pair< double, double >', 'params'), param('double', 'b')])
2765 return
2766
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002767def register_Ns3SimpleRefCount__Ns3AttributeAccessor_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeAccessor__gt___methods(root_module, cls):
2768 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> >::SimpleRefCount() [constructor]
2769 cls.add_constructor([])
2770 ## 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]
2771 cls.add_constructor([param('ns3::SimpleRefCount< ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter< ns3::AttributeAccessor > > const &', 'o')])
2772 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> >::Cleanup() [member function]
2773 cls.add_method('Cleanup',
2774 'void',
2775 [],
2776 is_static=True)
2777 return
2778
2779def register_Ns3SimpleRefCount__Ns3AttributeChecker_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeChecker__gt___methods(root_module, cls):
2780 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter<ns3::AttributeChecker> >::SimpleRefCount() [constructor]
2781 cls.add_constructor([])
2782 ## 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]
2783 cls.add_constructor([param('ns3::SimpleRefCount< ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter< ns3::AttributeChecker > > const &', 'o')])
2784 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter<ns3::AttributeChecker> >::Cleanup() [member function]
2785 cls.add_method('Cleanup',
2786 'void',
2787 [],
2788 is_static=True)
2789 return
2790
2791def register_Ns3SimpleRefCount__Ns3AttributeValue_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeValue__gt___methods(root_module, cls):
2792 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter<ns3::AttributeValue> >::SimpleRefCount() [constructor]
2793 cls.add_constructor([])
2794 ## 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]
2795 cls.add_constructor([param('ns3::SimpleRefCount< ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter< ns3::AttributeValue > > const &', 'o')])
2796 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter<ns3::AttributeValue> >::Cleanup() [member function]
2797 cls.add_method('Cleanup',
2798 'void',
2799 [],
2800 is_static=True)
2801 return
2802
2803def register_Ns3SimpleRefCount__Ns3CallbackImplBase_Ns3Empty_Ns3DefaultDeleter__lt__ns3CallbackImplBase__gt___methods(root_module, cls):
2804 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> >::SimpleRefCount() [constructor]
2805 cls.add_constructor([])
2806 ## 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]
2807 cls.add_constructor([param('ns3::SimpleRefCount< ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter< ns3::CallbackImplBase > > const &', 'o')])
2808 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> >::Cleanup() [member function]
2809 cls.add_method('Cleanup',
2810 'void',
2811 [],
2812 is_static=True)
2813 return
2814
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002815def register_Ns3SimpleRefCount__Ns3EventImpl_Ns3Empty_Ns3DefaultDeleter__lt__ns3EventImpl__gt___methods(root_module, cls):
2816 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::EventImpl, ns3::empty, ns3::DefaultDeleter<ns3::EventImpl> >::SimpleRefCount() [constructor]
2817 cls.add_constructor([])
2818 ## 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]
2819 cls.add_constructor([param('ns3::SimpleRefCount< ns3::EventImpl, ns3::empty, ns3::DefaultDeleter< ns3::EventImpl > > const &', 'o')])
2820 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::EventImpl, ns3::empty, ns3::DefaultDeleter<ns3::EventImpl> >::Cleanup() [member function]
2821 cls.add_method('Cleanup',
2822 'void',
2823 [],
2824 is_static=True)
2825 return
2826
2827def register_Ns3SimpleRefCount__Ns3NixVector_Ns3Empty_Ns3DefaultDeleter__lt__ns3NixVector__gt___methods(root_module, cls):
2828 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::NixVector, ns3::empty, ns3::DefaultDeleter<ns3::NixVector> >::SimpleRefCount() [constructor]
2829 cls.add_constructor([])
2830 ## 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]
2831 cls.add_constructor([param('ns3::SimpleRefCount< ns3::NixVector, ns3::empty, ns3::DefaultDeleter< ns3::NixVector > > const &', 'o')])
2832 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::NixVector, ns3::empty, ns3::DefaultDeleter<ns3::NixVector> >::Cleanup() [member function]
2833 cls.add_method('Cleanup',
2834 'void',
2835 [],
2836 is_static=True)
2837 return
2838
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002839def register_Ns3SimpleRefCount__Ns3Packet_Ns3Empty_Ns3DefaultDeleter__lt__ns3Packet__gt___methods(root_module, cls):
2840 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Packet, ns3::empty, ns3::DefaultDeleter<ns3::Packet> >::SimpleRefCount() [constructor]
2841 cls.add_constructor([])
2842 ## 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]
2843 cls.add_constructor([param('ns3::SimpleRefCount< ns3::Packet, ns3::empty, ns3::DefaultDeleter< ns3::Packet > > const &', 'o')])
2844 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::Packet, ns3::empty, ns3::DefaultDeleter<ns3::Packet> >::Cleanup() [member function]
2845 cls.add_method('Cleanup',
2846 'void',
2847 [],
2848 is_static=True)
2849 return
2850
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07002851def register_Ns3SimpleRefCount__Ns3TopologyReader_Ns3Empty_Ns3DefaultDeleter__lt__ns3TopologyReader__gt___methods(root_module, cls):
2852 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::TopologyReader, ns3::empty, ns3::DefaultDeleter<ns3::TopologyReader> >::SimpleRefCount() [constructor]
2853 cls.add_constructor([])
2854 ## 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]
2855 cls.add_constructor([param('ns3::SimpleRefCount< ns3::TopologyReader, ns3::empty, ns3::DefaultDeleter< ns3::TopologyReader > > const &', 'o')])
2856 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::TopologyReader, ns3::empty, ns3::DefaultDeleter<ns3::TopologyReader> >::Cleanup() [member function]
2857 cls.add_method('Cleanup',
2858 'void',
2859 [],
2860 is_static=True)
2861 return
2862
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002863def register_Ns3SimpleRefCount__Ns3TraceSourceAccessor_Ns3Empty_Ns3DefaultDeleter__lt__ns3TraceSourceAccessor__gt___methods(root_module, cls):
2864 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter<ns3::TraceSourceAccessor> >::SimpleRefCount() [constructor]
2865 cls.add_constructor([])
2866 ## 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]
2867 cls.add_constructor([param('ns3::SimpleRefCount< ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter< ns3::TraceSourceAccessor > > const &', 'o')])
2868 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter<ns3::TraceSourceAccessor> >::Cleanup() [member function]
2869 cls.add_method('Cleanup',
2870 'void',
2871 [],
2872 is_static=True)
2873 return
2874
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07002875def register_Ns3SimpleRefCount__Ns3NdnContentObjectHeader_Ns3Header_Ns3DefaultDeleter__lt__ns3NdnContentObjectHeader__gt___methods(root_module, cls):
2876 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::ndn::ContentObjectHeader, ns3::Header, ns3::DefaultDeleter<ns3::ndn::ContentObjectHeader> >::SimpleRefCount() [constructor]
2877 cls.add_constructor([])
2878 ## 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]
2879 cls.add_constructor([param('ns3::SimpleRefCount< ns3::ndn::ContentObjectHeader, ns3::Header, ns3::DefaultDeleter< ns3::ndn::ContentObjectHeader > > const &', 'o')])
2880 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::ndn::ContentObjectHeader, ns3::Header, ns3::DefaultDeleter<ns3::ndn::ContentObjectHeader> >::Cleanup() [member function]
2881 cls.add_method('Cleanup',
2882 'void',
2883 [],
2884 is_static=True)
2885 return
2886
2887def register_Ns3SimpleRefCount__Ns3NdnFaceContainer_Ns3Empty_Ns3DefaultDeleter__lt__ns3NdnFaceContainer__gt___methods(root_module, cls):
2888 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::ndn::FaceContainer, ns3::empty, ns3::DefaultDeleter<ns3::ndn::FaceContainer> >::SimpleRefCount() [constructor]
2889 cls.add_constructor([])
2890 ## 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]
2891 cls.add_constructor([param('ns3::SimpleRefCount< ns3::ndn::FaceContainer, ns3::empty, ns3::DefaultDeleter< ns3::ndn::FaceContainer > > const &', 'o')])
2892 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::ndn::FaceContainer, ns3::empty, ns3::DefaultDeleter<ns3::ndn::FaceContainer> >::Cleanup() [member function]
2893 cls.add_method('Cleanup',
2894 'void',
2895 [],
2896 is_static=True)
2897 return
2898
2899def register_Ns3SimpleRefCount__Ns3NdnInterestHeader_Ns3Header_Ns3DefaultDeleter__lt__ns3NdnInterestHeader__gt___methods(root_module, cls):
2900 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::ndn::InterestHeader, ns3::Header, ns3::DefaultDeleter<ns3::ndn::InterestHeader> >::SimpleRefCount() [constructor]
2901 cls.add_constructor([])
2902 ## 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]
2903 cls.add_constructor([param('ns3::SimpleRefCount< ns3::ndn::InterestHeader, ns3::Header, ns3::DefaultDeleter< ns3::ndn::InterestHeader > > const &', 'o')])
2904 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::ndn::InterestHeader, ns3::Header, ns3::DefaultDeleter<ns3::ndn::InterestHeader> >::Cleanup() [member function]
2905 cls.add_method('Cleanup',
2906 'void',
2907 [],
2908 is_static=True)
2909 return
2910
2911def register_Ns3SimpleRefCount__Ns3NdnNameComponents_Ns3Empty_Ns3DefaultDeleter__lt__ns3NdnNameComponents__gt___methods(root_module, cls):
2912 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::ndn::NameComponents, ns3::empty, ns3::DefaultDeleter<ns3::ndn::NameComponents> >::SimpleRefCount() [constructor]
2913 cls.add_constructor([])
2914 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::ndn::NameComponents, ns3::empty, ns3::DefaultDeleter<ns3::ndn::NameComponents> >::SimpleRefCount(ns3::SimpleRefCount<ns3::ndn::NameComponents, ns3::empty, ns3::DefaultDeleter<ns3::ndn::NameComponents> > const & o) [copy constructor]
2915 cls.add_constructor([param('ns3::SimpleRefCount< ns3::ndn::NameComponents, ns3::empty, ns3::DefaultDeleter< ns3::ndn::NameComponents > > const &', 'o')])
2916 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::ndn::NameComponents, ns3::empty, ns3::DefaultDeleter<ns3::ndn::NameComponents> >::Cleanup() [member function]
2917 cls.add_method('Cleanup',
2918 'void',
2919 [],
2920 is_static=True)
2921 return
2922
2923def register_Ns3SimpleRefCount__Ns3NdnCsEntry_Ns3Empty_Ns3DefaultDeleter__lt__ns3NdnCsEntry__gt___methods(root_module, cls):
2924 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::ndn::cs::Entry, ns3::empty, ns3::DefaultDeleter<ns3::ndn::cs::Entry> >::SimpleRefCount() [constructor]
2925 cls.add_constructor([])
2926 ## 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]
2927 cls.add_constructor([param('ns3::SimpleRefCount< ns3::ndn::cs::Entry, ns3::empty, ns3::DefaultDeleter< ns3::ndn::cs::Entry > > const &', 'o')])
2928 ## 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]
2929 cls.add_method('Cleanup',
2930 'void',
2931 [],
2932 is_static=True)
2933 return
2934
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07002935def register_Ns3SimpleRefCount__Ns3NdnPitEntry_Ns3Empty_Ns3DefaultDeleter__lt__ns3NdnPitEntry__gt___methods(root_module, cls):
2936 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::ndn::pit::Entry, ns3::empty, ns3::DefaultDeleter<ns3::ndn::pit::Entry> >::SimpleRefCount() [constructor]
2937 cls.add_constructor([])
2938 ## 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]
2939 cls.add_constructor([param('ns3::SimpleRefCount< ns3::ndn::pit::Entry, ns3::empty, ns3::DefaultDeleter< ns3::ndn::pit::Entry > > const &', 'o')])
2940 ## 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]
2941 cls.add_method('Cleanup',
2942 'void',
2943 [],
2944 is_static=True)
2945 return
2946
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002947def register_Ns3Time_methods(root_module, cls):
2948 cls.add_binary_comparison_operator('!=')
2949 cls.add_inplace_numeric_operator('+=', param('ns3::Time const &', 'right'))
2950 cls.add_inplace_numeric_operator('-=', param('ns3::Time const &', 'right'))
Alexander Afanasyeva28ec562012-10-25 14:07:32 -07002951 cls.add_output_stream_operator()
Alexander Afanasyeva8f5d882012-11-09 14:22:48 -08002952 cls.add_binary_comparison_operator('<=')
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002953 cls.add_binary_comparison_operator('==')
2954 cls.add_binary_comparison_operator('>=')
2955 cls.add_binary_numeric_operator('+', root_module['ns3::Time'], root_module['ns3::Time'], param('ns3::Time const &', 'right'))
2956 cls.add_binary_numeric_operator('-', root_module['ns3::Time'], root_module['ns3::Time'], param('ns3::Time const &', 'right'))
2957 cls.add_binary_comparison_operator('<')
2958 cls.add_binary_comparison_operator('>')
2959 ## nstime.h (module 'core'): ns3::Time::Time() [constructor]
2960 cls.add_constructor([])
2961 ## nstime.h (module 'core'): ns3::Time::Time(ns3::Time const & o) [copy constructor]
2962 cls.add_constructor([param('ns3::Time const &', 'o')])
2963 ## nstime.h (module 'core'): ns3::Time::Time(double v) [constructor]
2964 cls.add_constructor([param('double', 'v')])
2965 ## nstime.h (module 'core'): ns3::Time::Time(int v) [constructor]
2966 cls.add_constructor([param('int', 'v')])
2967 ## nstime.h (module 'core'): ns3::Time::Time(long int v) [constructor]
2968 cls.add_constructor([param('long int', 'v')])
2969 ## nstime.h (module 'core'): ns3::Time::Time(long long int v) [constructor]
2970 cls.add_constructor([param('long long int', 'v')])
2971 ## nstime.h (module 'core'): ns3::Time::Time(unsigned int v) [constructor]
2972 cls.add_constructor([param('unsigned int', 'v')])
2973 ## nstime.h (module 'core'): ns3::Time::Time(long unsigned int v) [constructor]
2974 cls.add_constructor([param('long unsigned int', 'v')])
2975 ## nstime.h (module 'core'): ns3::Time::Time(long long unsigned int v) [constructor]
2976 cls.add_constructor([param('long long unsigned int', 'v')])
2977 ## nstime.h (module 'core'): ns3::Time::Time(std::string const & s) [constructor]
2978 cls.add_constructor([param('std::string const &', 's')])
2979 ## nstime.h (module 'core'): ns3::Time::Time(ns3::int64x64_t const & value) [constructor]
2980 cls.add_constructor([param('ns3::int64x64_t const &', 'value')])
2981 ## nstime.h (module 'core'): int ns3::Time::Compare(ns3::Time const & o) const [member function]
2982 cls.add_method('Compare',
2983 'int',
2984 [param('ns3::Time const &', 'o')],
2985 is_const=True)
2986 ## nstime.h (module 'core'): static ns3::Time ns3::Time::From(ns3::int64x64_t const & from, ns3::Time::Unit timeUnit) [member function]
2987 cls.add_method('From',
2988 'ns3::Time',
2989 [param('ns3::int64x64_t const &', 'from'), param('ns3::Time::Unit', 'timeUnit')],
2990 is_static=True)
2991 ## nstime.h (module 'core'): static ns3::Time ns3::Time::From(ns3::int64x64_t const & value) [member function]
2992 cls.add_method('From',
2993 'ns3::Time',
2994 [param('ns3::int64x64_t const &', 'value')],
2995 is_static=True)
2996 ## nstime.h (module 'core'): static ns3::Time ns3::Time::FromDouble(double value, ns3::Time::Unit timeUnit) [member function]
2997 cls.add_method('FromDouble',
2998 'ns3::Time',
2999 [param('double', 'value'), param('ns3::Time::Unit', 'timeUnit')],
3000 is_static=True)
3001 ## nstime.h (module 'core'): static ns3::Time ns3::Time::FromInteger(uint64_t value, ns3::Time::Unit timeUnit) [member function]
3002 cls.add_method('FromInteger',
3003 'ns3::Time',
3004 [param('uint64_t', 'value'), param('ns3::Time::Unit', 'timeUnit')],
3005 is_static=True)
3006 ## nstime.h (module 'core'): double ns3::Time::GetDouble() const [member function]
3007 cls.add_method('GetDouble',
3008 'double',
3009 [],
3010 is_const=True)
3011 ## nstime.h (module 'core'): int64_t ns3::Time::GetFemtoSeconds() const [member function]
3012 cls.add_method('GetFemtoSeconds',
3013 'int64_t',
3014 [],
3015 is_const=True)
3016 ## nstime.h (module 'core'): int64_t ns3::Time::GetInteger() const [member function]
3017 cls.add_method('GetInteger',
3018 'int64_t',
3019 [],
3020 is_const=True)
3021 ## nstime.h (module 'core'): int64_t ns3::Time::GetMicroSeconds() const [member function]
3022 cls.add_method('GetMicroSeconds',
3023 'int64_t',
3024 [],
3025 is_const=True)
3026 ## nstime.h (module 'core'): int64_t ns3::Time::GetMilliSeconds() const [member function]
3027 cls.add_method('GetMilliSeconds',
3028 'int64_t',
3029 [],
3030 is_const=True)
3031 ## nstime.h (module 'core'): int64_t ns3::Time::GetNanoSeconds() const [member function]
3032 cls.add_method('GetNanoSeconds',
3033 'int64_t',
3034 [],
3035 is_const=True)
3036 ## nstime.h (module 'core'): int64_t ns3::Time::GetPicoSeconds() const [member function]
3037 cls.add_method('GetPicoSeconds',
3038 'int64_t',
3039 [],
3040 is_const=True)
3041 ## nstime.h (module 'core'): static ns3::Time::Unit ns3::Time::GetResolution() [member function]
3042 cls.add_method('GetResolution',
3043 'ns3::Time::Unit',
3044 [],
3045 is_static=True)
3046 ## nstime.h (module 'core'): double ns3::Time::GetSeconds() const [member function]
3047 cls.add_method('GetSeconds',
3048 'double',
3049 [],
3050 is_const=True)
3051 ## nstime.h (module 'core'): int64_t ns3::Time::GetTimeStep() const [member function]
3052 cls.add_method('GetTimeStep',
3053 'int64_t',
3054 [],
3055 is_const=True)
3056 ## nstime.h (module 'core'): bool ns3::Time::IsNegative() const [member function]
3057 cls.add_method('IsNegative',
3058 'bool',
3059 [],
3060 is_const=True)
3061 ## nstime.h (module 'core'): bool ns3::Time::IsPositive() const [member function]
3062 cls.add_method('IsPositive',
3063 'bool',
3064 [],
3065 is_const=True)
3066 ## nstime.h (module 'core'): bool ns3::Time::IsStrictlyNegative() const [member function]
3067 cls.add_method('IsStrictlyNegative',
3068 'bool',
3069 [],
3070 is_const=True)
3071 ## nstime.h (module 'core'): bool ns3::Time::IsStrictlyPositive() const [member function]
3072 cls.add_method('IsStrictlyPositive',
3073 'bool',
3074 [],
3075 is_const=True)
3076 ## nstime.h (module 'core'): bool ns3::Time::IsZero() const [member function]
3077 cls.add_method('IsZero',
3078 'bool',
3079 [],
3080 is_const=True)
3081 ## nstime.h (module 'core'): static void ns3::Time::SetResolution(ns3::Time::Unit resolution) [member function]
3082 cls.add_method('SetResolution',
3083 'void',
3084 [param('ns3::Time::Unit', 'resolution')],
3085 is_static=True)
3086 ## nstime.h (module 'core'): ns3::int64x64_t ns3::Time::To(ns3::Time::Unit timeUnit) const [member function]
3087 cls.add_method('To',
3088 'ns3::int64x64_t',
3089 [param('ns3::Time::Unit', 'timeUnit')],
3090 is_const=True)
3091 ## nstime.h (module 'core'): double ns3::Time::ToDouble(ns3::Time::Unit timeUnit) const [member function]
3092 cls.add_method('ToDouble',
3093 'double',
3094 [param('ns3::Time::Unit', 'timeUnit')],
3095 is_const=True)
3096 ## nstime.h (module 'core'): int64_t ns3::Time::ToInteger(ns3::Time::Unit timeUnit) const [member function]
3097 cls.add_method('ToInteger',
3098 'int64_t',
3099 [param('ns3::Time::Unit', 'timeUnit')],
3100 is_const=True)
3101 return
3102
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07003103def register_Ns3TopologyReader_methods(root_module, cls):
3104 ## topology-reader.h (module 'topology-read'): ns3::TopologyReader::TopologyReader() [constructor]
3105 cls.add_constructor([])
3106 ## topology-reader.h (module 'topology-read'): void ns3::TopologyReader::AddLink(ns3::TopologyReader::Link link) [member function]
3107 cls.add_method('AddLink',
3108 'void',
3109 [param('ns3::TopologyReader::Link', 'link')])
3110 ## topology-reader.h (module 'topology-read'): std::string ns3::TopologyReader::GetFileName() const [member function]
3111 cls.add_method('GetFileName',
3112 'std::string',
3113 [],
3114 is_const=True)
3115 ## topology-reader.h (module 'topology-read'): std::_List_const_iterator<ns3::TopologyReader::Link> ns3::TopologyReader::LinksBegin() const [member function]
3116 cls.add_method('LinksBegin',
3117 'std::_List_const_iterator< ns3::TopologyReader::Link >',
3118 [],
3119 is_const=True)
3120 ## topology-reader.h (module 'topology-read'): bool ns3::TopologyReader::LinksEmpty() const [member function]
3121 cls.add_method('LinksEmpty',
3122 'bool',
3123 [],
3124 is_const=True)
3125 ## topology-reader.h (module 'topology-read'): std::_List_const_iterator<ns3::TopologyReader::Link> ns3::TopologyReader::LinksEnd() const [member function]
3126 cls.add_method('LinksEnd',
3127 'std::_List_const_iterator< ns3::TopologyReader::Link >',
3128 [],
3129 is_const=True)
3130 ## topology-reader.h (module 'topology-read'): int ns3::TopologyReader::LinksSize() const [member function]
3131 cls.add_method('LinksSize',
3132 'int',
3133 [],
3134 is_const=True)
3135 ## topology-reader.h (module 'topology-read'): ns3::NodeContainer ns3::TopologyReader::Read() [member function]
3136 cls.add_method('Read',
3137 'ns3::NodeContainer',
3138 [],
3139 is_pure_virtual=True, is_virtual=True)
3140 ## topology-reader.h (module 'topology-read'): void ns3::TopologyReader::SetFileName(std::string const & fileName) [member function]
3141 cls.add_method('SetFileName',
3142 'void',
3143 [param('std::string const &', 'fileName')])
3144 return
3145
3146def register_Ns3TopologyReaderLink_methods(root_module, cls):
3147 ## topology-reader.h (module 'topology-read'): ns3::TopologyReader::Link::Link(ns3::TopologyReader::Link const & arg0) [copy constructor]
3148 cls.add_constructor([param('ns3::TopologyReader::Link const &', 'arg0')])
3149 ## topology-reader.h (module 'topology-read'): ns3::TopologyReader::Link::Link() [constructor]
3150 cls.add_constructor([])
3151 ## 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]
3152 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')])
3153 ## 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]
3154 cls.add_method('AttributesBegin',
3155 '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 > > > >',
3156 [])
3157 ## 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]
3158 cls.add_method('AttributesEnd',
3159 '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 > > > >',
3160 [])
3161 ## topology-reader.h (module 'topology-read'): std::string ns3::TopologyReader::Link::GetAttribute(std::string const & name) const [member function]
3162 cls.add_method('GetAttribute',
3163 'std::string',
3164 [param('std::string const &', 'name')],
3165 is_const=True)
3166 ## topology-reader.h (module 'topology-read'): bool ns3::TopologyReader::Link::GetAttributeFailSafe(std::string const & name, std::string & value) const [member function]
3167 cls.add_method('GetAttributeFailSafe',
3168 'bool',
3169 [param('std::string const &', 'name'), param('std::string &', 'value')],
3170 is_const=True)
3171 ## topology-reader.h (module 'topology-read'): ns3::Ptr<ns3::NetDevice> ns3::TopologyReader::Link::GetFromNetDevice() const [member function]
3172 cls.add_method('GetFromNetDevice',
3173 'ns3::Ptr< ns3::NetDevice >',
3174 [],
3175 is_const=True)
3176 ## topology-reader.h (module 'topology-read'): ns3::Ptr<ns3::Node> ns3::TopologyReader::Link::GetFromNode() const [member function]
3177 cls.add_method('GetFromNode',
3178 'ns3::Ptr< ns3::Node >',
3179 [],
3180 is_const=True)
3181 ## topology-reader.h (module 'topology-read'): std::string ns3::TopologyReader::Link::GetFromNodeName() const [member function]
3182 cls.add_method('GetFromNodeName',
3183 'std::string',
3184 [],
3185 is_const=True)
3186 ## topology-reader.h (module 'topology-read'): ns3::Ptr<ns3::NetDevice> ns3::TopologyReader::Link::GetToNetDevice() const [member function]
3187 cls.add_method('GetToNetDevice',
3188 'ns3::Ptr< ns3::NetDevice >',
3189 [],
3190 is_const=True)
3191 ## topology-reader.h (module 'topology-read'): ns3::Ptr<ns3::Node> ns3::TopologyReader::Link::GetToNode() const [member function]
3192 cls.add_method('GetToNode',
3193 'ns3::Ptr< ns3::Node >',
3194 [],
3195 is_const=True)
3196 ## topology-reader.h (module 'topology-read'): std::string ns3::TopologyReader::Link::GetToNodeName() const [member function]
3197 cls.add_method('GetToNodeName',
3198 'std::string',
3199 [],
3200 is_const=True)
3201 ## topology-reader.h (module 'topology-read'): void ns3::TopologyReader::Link::SetAttribute(std::string const & name, std::string const & value) [member function]
3202 cls.add_method('SetAttribute',
3203 'void',
3204 [param('std::string const &', 'name'), param('std::string const &', 'value')])
3205 ## topology-reader.h (module 'topology-read'): void ns3::TopologyReader::Link::SetNetDevices(ns3::Ptr<ns3::NetDevice> from, ns3::Ptr<ns3::NetDevice> to) [member function]
3206 cls.add_method('SetNetDevices',
3207 'void',
3208 [param('ns3::Ptr< ns3::NetDevice >', 'from'), param('ns3::Ptr< ns3::NetDevice >', 'to')])
3209 return
3210
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08003211def register_Ns3TraceSourceAccessor_methods(root_module, cls):
3212 ## trace-source-accessor.h (module 'core'): ns3::TraceSourceAccessor::TraceSourceAccessor(ns3::TraceSourceAccessor const & arg0) [copy constructor]
3213 cls.add_constructor([param('ns3::TraceSourceAccessor const &', 'arg0')])
3214 ## trace-source-accessor.h (module 'core'): ns3::TraceSourceAccessor::TraceSourceAccessor() [constructor]
3215 cls.add_constructor([])
3216 ## trace-source-accessor.h (module 'core'): bool ns3::TraceSourceAccessor::Connect(ns3::ObjectBase * obj, std::string context, ns3::CallbackBase const & cb) const [member function]
3217 cls.add_method('Connect',
3218 'bool',
3219 [param('ns3::ObjectBase *', 'obj', transfer_ownership=False), param('std::string', 'context'), param('ns3::CallbackBase const &', 'cb')],
3220 is_pure_virtual=True, is_const=True, is_virtual=True)
3221 ## trace-source-accessor.h (module 'core'): bool ns3::TraceSourceAccessor::ConnectWithoutContext(ns3::ObjectBase * obj, ns3::CallbackBase const & cb) const [member function]
3222 cls.add_method('ConnectWithoutContext',
3223 'bool',
3224 [param('ns3::ObjectBase *', 'obj', transfer_ownership=False), param('ns3::CallbackBase const &', 'cb')],
3225 is_pure_virtual=True, is_const=True, is_virtual=True)
3226 ## trace-source-accessor.h (module 'core'): bool ns3::TraceSourceAccessor::Disconnect(ns3::ObjectBase * obj, std::string context, ns3::CallbackBase const & cb) const [member function]
3227 cls.add_method('Disconnect',
3228 'bool',
3229 [param('ns3::ObjectBase *', 'obj', transfer_ownership=False), param('std::string', 'context'), param('ns3::CallbackBase const &', 'cb')],
3230 is_pure_virtual=True, is_const=True, is_virtual=True)
3231 ## trace-source-accessor.h (module 'core'): bool ns3::TraceSourceAccessor::DisconnectWithoutContext(ns3::ObjectBase * obj, ns3::CallbackBase const & cb) const [member function]
3232 cls.add_method('DisconnectWithoutContext',
3233 'bool',
3234 [param('ns3::ObjectBase *', 'obj', transfer_ownership=False), param('ns3::CallbackBase const &', 'cb')],
3235 is_pure_virtual=True, is_const=True, is_virtual=True)
3236 return
3237
3238def register_Ns3Trailer_methods(root_module, cls):
3239 cls.add_output_stream_operator()
3240 ## trailer.h (module 'network'): ns3::Trailer::Trailer() [constructor]
3241 cls.add_constructor([])
3242 ## trailer.h (module 'network'): ns3::Trailer::Trailer(ns3::Trailer const & arg0) [copy constructor]
3243 cls.add_constructor([param('ns3::Trailer const &', 'arg0')])
3244 ## trailer.h (module 'network'): uint32_t ns3::Trailer::Deserialize(ns3::Buffer::Iterator end) [member function]
3245 cls.add_method('Deserialize',
3246 'uint32_t',
3247 [param('ns3::Buffer::Iterator', 'end')],
3248 is_pure_virtual=True, is_virtual=True)
3249 ## trailer.h (module 'network'): uint32_t ns3::Trailer::GetSerializedSize() const [member function]
3250 cls.add_method('GetSerializedSize',
3251 'uint32_t',
3252 [],
3253 is_pure_virtual=True, is_const=True, is_virtual=True)
3254 ## trailer.h (module 'network'): static ns3::TypeId ns3::Trailer::GetTypeId() [member function]
3255 cls.add_method('GetTypeId',
3256 'ns3::TypeId',
3257 [],
3258 is_static=True)
3259 ## trailer.h (module 'network'): void ns3::Trailer::Print(std::ostream & os) const [member function]
3260 cls.add_method('Print',
3261 'void',
3262 [param('std::ostream &', 'os')],
3263 is_pure_virtual=True, is_const=True, is_virtual=True)
3264 ## trailer.h (module 'network'): void ns3::Trailer::Serialize(ns3::Buffer::Iterator start) const [member function]
3265 cls.add_method('Serialize',
3266 'void',
3267 [param('ns3::Buffer::Iterator', 'start')],
3268 is_pure_virtual=True, is_const=True, is_virtual=True)
3269 return
3270
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07003271def register_Ns3AnnotatedTopologyReader_methods(root_module, cls):
3272 ## annotated-topology-reader.h (module 'ndnSIM'): ns3::AnnotatedTopologyReader::AnnotatedTopologyReader(std::string const & path="", double scale=1.0e+0) [constructor]
3273 cls.add_constructor([param('std::string const &', 'path', default_value='""'), param('double', 'scale', default_value='1.0e+0')])
3274 ## annotated-topology-reader.h (module 'ndnSIM'): ns3::NodeContainer ns3::AnnotatedTopologyReader::Read() [member function]
3275 cls.add_method('Read',
3276 'ns3::NodeContainer',
3277 [],
3278 is_virtual=True)
3279 ## annotated-topology-reader.h (module 'ndnSIM'): ns3::NodeContainer ns3::AnnotatedTopologyReader::GetNodes() const [member function]
3280 cls.add_method('GetNodes',
3281 'ns3::NodeContainer',
3282 [],
3283 is_const=True)
3284 ## annotated-topology-reader.h (module 'ndnSIM'): std::list<ns3::TopologyReader::Link, std::allocator<ns3::TopologyReader::Link> > const & ns3::AnnotatedTopologyReader::GetLinks() const [member function]
3285 cls.add_method('GetLinks',
3286 'std::list< ns3::TopologyReader::Link > const &',
3287 [],
3288 is_const=True)
3289 ## annotated-topology-reader.h (module 'ndnSIM'): void ns3::AnnotatedTopologyReader::AssignIpv4Addresses(ns3::Ipv4Address base) [member function]
3290 cls.add_method('AssignIpv4Addresses',
3291 'void',
3292 [param('ns3::Ipv4Address', 'base')])
3293 ## annotated-topology-reader.h (module 'ndnSIM'): void ns3::AnnotatedTopologyReader::SetBoundingBox(double ulx, double uly, double lrx, double lry) [member function]
3294 cls.add_method('SetBoundingBox',
3295 'void',
3296 [param('double', 'ulx'), param('double', 'uly'), param('double', 'lrx'), param('double', 'lry')])
3297 ## annotated-topology-reader.h (module 'ndnSIM'): void ns3::AnnotatedTopologyReader::SetMobilityModel(std::string const & model) [member function]
3298 cls.add_method('SetMobilityModel',
3299 'void',
3300 [param('std::string const &', 'model')])
3301 ## annotated-topology-reader.h (module 'ndnSIM'): void ns3::AnnotatedTopologyReader::ApplyOspfMetric() [member function]
3302 cls.add_method('ApplyOspfMetric',
3303 'void',
3304 [])
Alexander Afanasyev71029732012-11-19 23:50:52 -08003305 ## annotated-topology-reader.h (module 'ndnSIM'): void ns3::AnnotatedTopologyReader::SaveTopology(std::string const & file) const [member function]
3306 cls.add_method('SaveTopology',
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07003307 'void',
3308 [param('std::string const &', 'file')],
3309 is_const=True)
3310 ## annotated-topology-reader.h (module 'ndnSIM'): ns3::Ptr<ns3::Node> ns3::AnnotatedTopologyReader::CreateNode(std::string const name, uint32_t systemId) [member function]
3311 cls.add_method('CreateNode',
3312 'ns3::Ptr< ns3::Node >',
3313 [param('std::string const', 'name'), param('uint32_t', 'systemId')],
3314 visibility='protected')
3315 ## 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]
3316 cls.add_method('CreateNode',
3317 'ns3::Ptr< ns3::Node >',
3318 [param('std::string const', 'name'), param('double', 'posX'), param('double', 'posY'), param('uint32_t', 'systemId')],
3319 visibility='protected')
3320 ## annotated-topology-reader.h (module 'ndnSIM'): void ns3::AnnotatedTopologyReader::ApplySettings() [member function]
3321 cls.add_method('ApplySettings',
3322 'void',
3323 [],
3324 visibility='protected')
3325 return
3326
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08003327def register_Ns3Application_methods(root_module, cls):
3328 ## application.h (module 'network'): ns3::Application::Application(ns3::Application const & arg0) [copy constructor]
3329 cls.add_constructor([param('ns3::Application const &', 'arg0')])
3330 ## application.h (module 'network'): ns3::Application::Application() [constructor]
3331 cls.add_constructor([])
3332 ## application.h (module 'network'): ns3::Ptr<ns3::Node> ns3::Application::GetNode() const [member function]
3333 cls.add_method('GetNode',
3334 'ns3::Ptr< ns3::Node >',
3335 [],
3336 is_const=True)
3337 ## application.h (module 'network'): static ns3::TypeId ns3::Application::GetTypeId() [member function]
3338 cls.add_method('GetTypeId',
3339 'ns3::TypeId',
3340 [],
3341 is_static=True)
3342 ## application.h (module 'network'): void ns3::Application::SetNode(ns3::Ptr<ns3::Node> node) [member function]
3343 cls.add_method('SetNode',
3344 'void',
3345 [param('ns3::Ptr< ns3::Node >', 'node')])
3346 ## application.h (module 'network'): void ns3::Application::SetStartTime(ns3::Time start) [member function]
3347 cls.add_method('SetStartTime',
3348 'void',
3349 [param('ns3::Time', 'start')])
3350 ## application.h (module 'network'): void ns3::Application::SetStopTime(ns3::Time stop) [member function]
3351 cls.add_method('SetStopTime',
3352 'void',
3353 [param('ns3::Time', 'stop')])
3354 ## application.h (module 'network'): void ns3::Application::DoDispose() [member function]
3355 cls.add_method('DoDispose',
3356 'void',
3357 [],
3358 visibility='protected', is_virtual=True)
3359 ## application.h (module 'network'): void ns3::Application::DoStart() [member function]
3360 cls.add_method('DoStart',
3361 'void',
3362 [],
3363 visibility='protected', is_virtual=True)
3364 ## application.h (module 'network'): void ns3::Application::StartApplication() [member function]
3365 cls.add_method('StartApplication',
3366 'void',
3367 [],
Alexander Afanasyev06d3a612012-04-17 22:25:40 -07003368 visibility='private', is_virtual=True)
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08003369 ## application.h (module 'network'): void ns3::Application::StopApplication() [member function]
3370 cls.add_method('StopApplication',
3371 'void',
3372 [],
Alexander Afanasyev06d3a612012-04-17 22:25:40 -07003373 visibility='private', is_virtual=True)
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08003374 return
3375
3376def register_Ns3AttributeAccessor_methods(root_module, cls):
3377 ## attribute.h (module 'core'): ns3::AttributeAccessor::AttributeAccessor(ns3::AttributeAccessor const & arg0) [copy constructor]
3378 cls.add_constructor([param('ns3::AttributeAccessor const &', 'arg0')])
3379 ## attribute.h (module 'core'): ns3::AttributeAccessor::AttributeAccessor() [constructor]
3380 cls.add_constructor([])
3381 ## attribute.h (module 'core'): bool ns3::AttributeAccessor::Get(ns3::ObjectBase const * object, ns3::AttributeValue & attribute) const [member function]
3382 cls.add_method('Get',
3383 'bool',
3384 [param('ns3::ObjectBase const *', 'object'), param('ns3::AttributeValue &', 'attribute')],
3385 is_pure_virtual=True, is_const=True, is_virtual=True)
3386 ## attribute.h (module 'core'): bool ns3::AttributeAccessor::HasGetter() const [member function]
3387 cls.add_method('HasGetter',
3388 'bool',
3389 [],
3390 is_pure_virtual=True, is_const=True, is_virtual=True)
3391 ## attribute.h (module 'core'): bool ns3::AttributeAccessor::HasSetter() const [member function]
3392 cls.add_method('HasSetter',
3393 'bool',
3394 [],
3395 is_pure_virtual=True, is_const=True, is_virtual=True)
3396 ## attribute.h (module 'core'): bool ns3::AttributeAccessor::Set(ns3::ObjectBase * object, ns3::AttributeValue const & value) const [member function]
3397 cls.add_method('Set',
3398 'bool',
3399 [param('ns3::ObjectBase *', 'object', transfer_ownership=False), param('ns3::AttributeValue const &', 'value')],
3400 is_pure_virtual=True, is_const=True, is_virtual=True)
3401 return
3402
3403def register_Ns3AttributeChecker_methods(root_module, cls):
3404 ## attribute.h (module 'core'): ns3::AttributeChecker::AttributeChecker(ns3::AttributeChecker const & arg0) [copy constructor]
3405 cls.add_constructor([param('ns3::AttributeChecker const &', 'arg0')])
3406 ## attribute.h (module 'core'): ns3::AttributeChecker::AttributeChecker() [constructor]
3407 cls.add_constructor([])
3408 ## attribute.h (module 'core'): bool ns3::AttributeChecker::Check(ns3::AttributeValue const & value) const [member function]
3409 cls.add_method('Check',
3410 'bool',
3411 [param('ns3::AttributeValue const &', 'value')],
3412 is_pure_virtual=True, is_const=True, is_virtual=True)
3413 ## attribute.h (module 'core'): bool ns3::AttributeChecker::Copy(ns3::AttributeValue const & source, ns3::AttributeValue & destination) const [member function]
3414 cls.add_method('Copy',
3415 'bool',
3416 [param('ns3::AttributeValue const &', 'source'), param('ns3::AttributeValue &', 'destination')],
3417 is_pure_virtual=True, is_const=True, is_virtual=True)
3418 ## attribute.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::AttributeChecker::Create() const [member function]
3419 cls.add_method('Create',
3420 'ns3::Ptr< ns3::AttributeValue >',
3421 [],
3422 is_pure_virtual=True, is_const=True, is_virtual=True)
3423 ## attribute.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::AttributeChecker::CreateValidValue(ns3::AttributeValue const & value) const [member function]
3424 cls.add_method('CreateValidValue',
3425 'ns3::Ptr< ns3::AttributeValue >',
3426 [param('ns3::AttributeValue const &', 'value')],
3427 is_const=True)
3428 ## attribute.h (module 'core'): std::string ns3::AttributeChecker::GetUnderlyingTypeInformation() const [member function]
3429 cls.add_method('GetUnderlyingTypeInformation',
3430 'std::string',
3431 [],
3432 is_pure_virtual=True, is_const=True, is_virtual=True)
3433 ## attribute.h (module 'core'): std::string ns3::AttributeChecker::GetValueTypeName() const [member function]
3434 cls.add_method('GetValueTypeName',
3435 'std::string',
3436 [],
3437 is_pure_virtual=True, is_const=True, is_virtual=True)
3438 ## attribute.h (module 'core'): bool ns3::AttributeChecker::HasUnderlyingTypeInformation() const [member function]
3439 cls.add_method('HasUnderlyingTypeInformation',
3440 'bool',
3441 [],
3442 is_pure_virtual=True, is_const=True, is_virtual=True)
3443 return
3444
3445def register_Ns3AttributeValue_methods(root_module, cls):
3446 ## attribute.h (module 'core'): ns3::AttributeValue::AttributeValue(ns3::AttributeValue const & arg0) [copy constructor]
3447 cls.add_constructor([param('ns3::AttributeValue const &', 'arg0')])
3448 ## attribute.h (module 'core'): ns3::AttributeValue::AttributeValue() [constructor]
3449 cls.add_constructor([])
3450 ## attribute.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::AttributeValue::Copy() const [member function]
3451 cls.add_method('Copy',
3452 'ns3::Ptr< ns3::AttributeValue >',
3453 [],
3454 is_pure_virtual=True, is_const=True, is_virtual=True)
3455 ## attribute.h (module 'core'): bool ns3::AttributeValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
3456 cls.add_method('DeserializeFromString',
3457 'bool',
3458 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3459 is_pure_virtual=True, is_virtual=True)
3460 ## attribute.h (module 'core'): std::string ns3::AttributeValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
3461 cls.add_method('SerializeToString',
3462 'std::string',
3463 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3464 is_pure_virtual=True, is_const=True, is_virtual=True)
3465 return
3466
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07003467def register_Ns3BooleanChecker_methods(root_module, cls):
3468 ## boolean.h (module 'core'): ns3::BooleanChecker::BooleanChecker() [constructor]
3469 cls.add_constructor([])
3470 ## boolean.h (module 'core'): ns3::BooleanChecker::BooleanChecker(ns3::BooleanChecker const & arg0) [copy constructor]
3471 cls.add_constructor([param('ns3::BooleanChecker const &', 'arg0')])
3472 return
3473
3474def register_Ns3BooleanValue_methods(root_module, cls):
3475 cls.add_output_stream_operator()
3476 ## boolean.h (module 'core'): ns3::BooleanValue::BooleanValue(ns3::BooleanValue const & arg0) [copy constructor]
3477 cls.add_constructor([param('ns3::BooleanValue const &', 'arg0')])
3478 ## boolean.h (module 'core'): ns3::BooleanValue::BooleanValue() [constructor]
3479 cls.add_constructor([])
3480 ## boolean.h (module 'core'): ns3::BooleanValue::BooleanValue(bool value) [constructor]
3481 cls.add_constructor([param('bool', 'value')])
3482 ## boolean.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::BooleanValue::Copy() const [member function]
3483 cls.add_method('Copy',
3484 'ns3::Ptr< ns3::AttributeValue >',
3485 [],
3486 is_const=True, is_virtual=True)
3487 ## boolean.h (module 'core'): bool ns3::BooleanValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
3488 cls.add_method('DeserializeFromString',
3489 'bool',
3490 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3491 is_virtual=True)
3492 ## boolean.h (module 'core'): bool ns3::BooleanValue::Get() const [member function]
3493 cls.add_method('Get',
3494 'bool',
3495 [],
3496 is_const=True)
3497 ## boolean.h (module 'core'): std::string ns3::BooleanValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
3498 cls.add_method('SerializeToString',
3499 'std::string',
3500 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3501 is_const=True, is_virtual=True)
3502 ## boolean.h (module 'core'): void ns3::BooleanValue::Set(bool value) [member function]
3503 cls.add_method('Set',
3504 'void',
3505 [param('bool', 'value')])
3506 return
3507
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08003508def register_Ns3CallbackChecker_methods(root_module, cls):
3509 ## callback.h (module 'core'): ns3::CallbackChecker::CallbackChecker() [constructor]
3510 cls.add_constructor([])
3511 ## callback.h (module 'core'): ns3::CallbackChecker::CallbackChecker(ns3::CallbackChecker const & arg0) [copy constructor]
3512 cls.add_constructor([param('ns3::CallbackChecker const &', 'arg0')])
3513 return
3514
3515def register_Ns3CallbackImplBase_methods(root_module, cls):
3516 ## callback.h (module 'core'): ns3::CallbackImplBase::CallbackImplBase() [constructor]
3517 cls.add_constructor([])
3518 ## callback.h (module 'core'): ns3::CallbackImplBase::CallbackImplBase(ns3::CallbackImplBase const & arg0) [copy constructor]
3519 cls.add_constructor([param('ns3::CallbackImplBase const &', 'arg0')])
3520 ## callback.h (module 'core'): bool ns3::CallbackImplBase::IsEqual(ns3::Ptr<ns3::CallbackImplBase const> other) const [member function]
3521 cls.add_method('IsEqual',
3522 'bool',
3523 [param('ns3::Ptr< ns3::CallbackImplBase const >', 'other')],
3524 is_pure_virtual=True, is_const=True, is_virtual=True)
3525 return
3526
3527def register_Ns3CallbackValue_methods(root_module, cls):
3528 ## callback.h (module 'core'): ns3::CallbackValue::CallbackValue(ns3::CallbackValue const & arg0) [copy constructor]
3529 cls.add_constructor([param('ns3::CallbackValue const &', 'arg0')])
3530 ## callback.h (module 'core'): ns3::CallbackValue::CallbackValue() [constructor]
3531 cls.add_constructor([])
3532 ## callback.h (module 'core'): ns3::CallbackValue::CallbackValue(ns3::CallbackBase const & base) [constructor]
3533 cls.add_constructor([param('ns3::CallbackBase const &', 'base')])
3534 ## callback.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::CallbackValue::Copy() const [member function]
3535 cls.add_method('Copy',
3536 'ns3::Ptr< ns3::AttributeValue >',
3537 [],
3538 is_const=True, is_virtual=True)
3539 ## callback.h (module 'core'): bool ns3::CallbackValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
3540 cls.add_method('DeserializeFromString',
3541 'bool',
3542 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3543 is_virtual=True)
3544 ## callback.h (module 'core'): std::string ns3::CallbackValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
3545 cls.add_method('SerializeToString',
3546 'std::string',
3547 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3548 is_const=True, is_virtual=True)
3549 ## callback.h (module 'core'): void ns3::CallbackValue::Set(ns3::CallbackBase base) [member function]
3550 cls.add_method('Set',
3551 'void',
3552 [param('ns3::CallbackBase', 'base')])
3553 return
3554
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07003555def register_Ns3DoubleValue_methods(root_module, cls):
3556 ## double.h (module 'core'): ns3::DoubleValue::DoubleValue() [constructor]
3557 cls.add_constructor([])
3558 ## double.h (module 'core'): ns3::DoubleValue::DoubleValue(ns3::DoubleValue const & arg0) [copy constructor]
3559 cls.add_constructor([param('ns3::DoubleValue const &', 'arg0')])
3560 ## double.h (module 'core'): ns3::DoubleValue::DoubleValue(double const & value) [constructor]
3561 cls.add_constructor([param('double const &', 'value')])
3562 ## double.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::DoubleValue::Copy() const [member function]
3563 cls.add_method('Copy',
3564 'ns3::Ptr< ns3::AttributeValue >',
3565 [],
3566 is_const=True, is_virtual=True)
3567 ## double.h (module 'core'): bool ns3::DoubleValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
3568 cls.add_method('DeserializeFromString',
3569 'bool',
3570 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3571 is_virtual=True)
3572 ## double.h (module 'core'): double ns3::DoubleValue::Get() const [member function]
3573 cls.add_method('Get',
3574 'double',
3575 [],
3576 is_const=True)
3577 ## double.h (module 'core'): std::string ns3::DoubleValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
3578 cls.add_method('SerializeToString',
3579 'std::string',
3580 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3581 is_const=True, is_virtual=True)
3582 ## double.h (module 'core'): void ns3::DoubleValue::Set(double const & value) [member function]
3583 cls.add_method('Set',
3584 'void',
3585 [param('double const &', 'value')])
3586 return
3587
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08003588def register_Ns3EmptyAttributeValue_methods(root_module, cls):
3589 ## attribute.h (module 'core'): ns3::EmptyAttributeValue::EmptyAttributeValue(ns3::EmptyAttributeValue const & arg0) [copy constructor]
3590 cls.add_constructor([param('ns3::EmptyAttributeValue const &', 'arg0')])
3591 ## attribute.h (module 'core'): ns3::EmptyAttributeValue::EmptyAttributeValue() [constructor]
3592 cls.add_constructor([])
3593 ## attribute.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::EmptyAttributeValue::Copy() const [member function]
3594 cls.add_method('Copy',
3595 'ns3::Ptr< ns3::AttributeValue >',
3596 [],
3597 is_const=True, visibility='private', is_virtual=True)
3598 ## attribute.h (module 'core'): bool ns3::EmptyAttributeValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
3599 cls.add_method('DeserializeFromString',
3600 'bool',
3601 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3602 visibility='private', is_virtual=True)
3603 ## attribute.h (module 'core'): std::string ns3::EmptyAttributeValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
3604 cls.add_method('SerializeToString',
3605 'std::string',
3606 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3607 is_const=True, visibility='private', is_virtual=True)
3608 return
3609
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07003610def register_Ns3EnumChecker_methods(root_module, cls):
3611 ## enum.h (module 'core'): ns3::EnumChecker::EnumChecker(ns3::EnumChecker const & arg0) [copy constructor]
3612 cls.add_constructor([param('ns3::EnumChecker const &', 'arg0')])
3613 ## enum.h (module 'core'): ns3::EnumChecker::EnumChecker() [constructor]
3614 cls.add_constructor([])
3615 ## enum.h (module 'core'): void ns3::EnumChecker::Add(int v, std::string name) [member function]
3616 cls.add_method('Add',
3617 'void',
3618 [param('int', 'v'), param('std::string', 'name')])
3619 ## enum.h (module 'core'): void ns3::EnumChecker::AddDefault(int v, std::string name) [member function]
3620 cls.add_method('AddDefault',
3621 'void',
3622 [param('int', 'v'), param('std::string', 'name')])
3623 ## enum.h (module 'core'): bool ns3::EnumChecker::Check(ns3::AttributeValue const & value) const [member function]
3624 cls.add_method('Check',
3625 'bool',
3626 [param('ns3::AttributeValue const &', 'value')],
3627 is_const=True, is_virtual=True)
3628 ## enum.h (module 'core'): bool ns3::EnumChecker::Copy(ns3::AttributeValue const & src, ns3::AttributeValue & dst) const [member function]
3629 cls.add_method('Copy',
3630 'bool',
3631 [param('ns3::AttributeValue const &', 'src'), param('ns3::AttributeValue &', 'dst')],
3632 is_const=True, is_virtual=True)
3633 ## enum.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::EnumChecker::Create() const [member function]
3634 cls.add_method('Create',
3635 'ns3::Ptr< ns3::AttributeValue >',
3636 [],
3637 is_const=True, is_virtual=True)
3638 ## enum.h (module 'core'): std::string ns3::EnumChecker::GetUnderlyingTypeInformation() const [member function]
3639 cls.add_method('GetUnderlyingTypeInformation',
3640 'std::string',
3641 [],
3642 is_const=True, is_virtual=True)
3643 ## enum.h (module 'core'): std::string ns3::EnumChecker::GetValueTypeName() const [member function]
3644 cls.add_method('GetValueTypeName',
3645 'std::string',
3646 [],
3647 is_const=True, is_virtual=True)
3648 ## enum.h (module 'core'): bool ns3::EnumChecker::HasUnderlyingTypeInformation() const [member function]
3649 cls.add_method('HasUnderlyingTypeInformation',
3650 'bool',
3651 [],
3652 is_const=True, is_virtual=True)
3653 return
3654
3655def register_Ns3EnumValue_methods(root_module, cls):
3656 ## enum.h (module 'core'): ns3::EnumValue::EnumValue(ns3::EnumValue const & arg0) [copy constructor]
3657 cls.add_constructor([param('ns3::EnumValue const &', 'arg0')])
3658 ## enum.h (module 'core'): ns3::EnumValue::EnumValue() [constructor]
3659 cls.add_constructor([])
3660 ## enum.h (module 'core'): ns3::EnumValue::EnumValue(int v) [constructor]
3661 cls.add_constructor([param('int', 'v')])
3662 ## enum.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::EnumValue::Copy() const [member function]
3663 cls.add_method('Copy',
3664 'ns3::Ptr< ns3::AttributeValue >',
3665 [],
3666 is_const=True, is_virtual=True)
3667 ## enum.h (module 'core'): bool ns3::EnumValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
3668 cls.add_method('DeserializeFromString',
3669 'bool',
3670 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3671 is_virtual=True)
3672 ## enum.h (module 'core'): int ns3::EnumValue::Get() const [member function]
3673 cls.add_method('Get',
3674 'int',
3675 [],
3676 is_const=True)
3677 ## enum.h (module 'core'): std::string ns3::EnumValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
3678 cls.add_method('SerializeToString',
3679 'std::string',
3680 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3681 is_const=True, is_virtual=True)
3682 ## enum.h (module 'core'): void ns3::EnumValue::Set(int v) [member function]
3683 cls.add_method('Set',
3684 'void',
3685 [param('int', 'v')])
3686 return
3687
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08003688def register_Ns3EventImpl_methods(root_module, cls):
3689 ## event-impl.h (module 'core'): ns3::EventImpl::EventImpl(ns3::EventImpl const & arg0) [copy constructor]
3690 cls.add_constructor([param('ns3::EventImpl const &', 'arg0')])
3691 ## event-impl.h (module 'core'): ns3::EventImpl::EventImpl() [constructor]
3692 cls.add_constructor([])
3693 ## event-impl.h (module 'core'): void ns3::EventImpl::Cancel() [member function]
3694 cls.add_method('Cancel',
3695 'void',
3696 [])
3697 ## event-impl.h (module 'core'): void ns3::EventImpl::Invoke() [member function]
3698 cls.add_method('Invoke',
3699 'void',
3700 [])
3701 ## event-impl.h (module 'core'): bool ns3::EventImpl::IsCancelled() [member function]
3702 cls.add_method('IsCancelled',
3703 'bool',
3704 [])
3705 ## event-impl.h (module 'core'): void ns3::EventImpl::Notify() [member function]
3706 cls.add_method('Notify',
3707 'void',
3708 [],
3709 is_pure_virtual=True, visibility='protected', is_virtual=True)
3710 return
3711
3712def register_Ns3IntegerValue_methods(root_module, cls):
3713 ## integer.h (module 'core'): ns3::IntegerValue::IntegerValue() [constructor]
3714 cls.add_constructor([])
3715 ## integer.h (module 'core'): ns3::IntegerValue::IntegerValue(ns3::IntegerValue const & arg0) [copy constructor]
3716 cls.add_constructor([param('ns3::IntegerValue const &', 'arg0')])
3717 ## integer.h (module 'core'): ns3::IntegerValue::IntegerValue(int64_t const & value) [constructor]
3718 cls.add_constructor([param('int64_t const &', 'value')])
3719 ## integer.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::IntegerValue::Copy() const [member function]
3720 cls.add_method('Copy',
3721 'ns3::Ptr< ns3::AttributeValue >',
3722 [],
3723 is_const=True, is_virtual=True)
3724 ## integer.h (module 'core'): bool ns3::IntegerValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
3725 cls.add_method('DeserializeFromString',
3726 'bool',
3727 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3728 is_virtual=True)
3729 ## integer.h (module 'core'): int64_t ns3::IntegerValue::Get() const [member function]
3730 cls.add_method('Get',
3731 'int64_t',
3732 [],
3733 is_const=True)
3734 ## integer.h (module 'core'): std::string ns3::IntegerValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
3735 cls.add_method('SerializeToString',
3736 'std::string',
3737 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3738 is_const=True, is_virtual=True)
3739 ## integer.h (module 'core'): void ns3::IntegerValue::Set(int64_t const & value) [member function]
3740 cls.add_method('Set',
3741 'void',
3742 [param('int64_t const &', 'value')])
3743 return
3744
3745def register_Ns3Ipv4AddressChecker_methods(root_module, cls):
3746 ## ipv4-address.h (module 'network'): ns3::Ipv4AddressChecker::Ipv4AddressChecker() [constructor]
3747 cls.add_constructor([])
3748 ## ipv4-address.h (module 'network'): ns3::Ipv4AddressChecker::Ipv4AddressChecker(ns3::Ipv4AddressChecker const & arg0) [copy constructor]
3749 cls.add_constructor([param('ns3::Ipv4AddressChecker const &', 'arg0')])
3750 return
3751
3752def register_Ns3Ipv4AddressValue_methods(root_module, cls):
3753 ## ipv4-address.h (module 'network'): ns3::Ipv4AddressValue::Ipv4AddressValue() [constructor]
3754 cls.add_constructor([])
3755 ## ipv4-address.h (module 'network'): ns3::Ipv4AddressValue::Ipv4AddressValue(ns3::Ipv4AddressValue const & arg0) [copy constructor]
3756 cls.add_constructor([param('ns3::Ipv4AddressValue const &', 'arg0')])
3757 ## ipv4-address.h (module 'network'): ns3::Ipv4AddressValue::Ipv4AddressValue(ns3::Ipv4Address const & value) [constructor]
3758 cls.add_constructor([param('ns3::Ipv4Address const &', 'value')])
3759 ## ipv4-address.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::Ipv4AddressValue::Copy() const [member function]
3760 cls.add_method('Copy',
3761 'ns3::Ptr< ns3::AttributeValue >',
3762 [],
3763 is_const=True, is_virtual=True)
3764 ## ipv4-address.h (module 'network'): bool ns3::Ipv4AddressValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
3765 cls.add_method('DeserializeFromString',
3766 'bool',
3767 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3768 is_virtual=True)
3769 ## ipv4-address.h (module 'network'): ns3::Ipv4Address ns3::Ipv4AddressValue::Get() const [member function]
3770 cls.add_method('Get',
3771 'ns3::Ipv4Address',
3772 [],
3773 is_const=True)
3774 ## ipv4-address.h (module 'network'): std::string ns3::Ipv4AddressValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
3775 cls.add_method('SerializeToString',
3776 'std::string',
3777 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3778 is_const=True, is_virtual=True)
3779 ## ipv4-address.h (module 'network'): void ns3::Ipv4AddressValue::Set(ns3::Ipv4Address const & value) [member function]
3780 cls.add_method('Set',
3781 'void',
3782 [param('ns3::Ipv4Address const &', 'value')])
3783 return
3784
3785def register_Ns3Ipv4MaskChecker_methods(root_module, cls):
3786 ## ipv4-address.h (module 'network'): ns3::Ipv4MaskChecker::Ipv4MaskChecker() [constructor]
3787 cls.add_constructor([])
3788 ## ipv4-address.h (module 'network'): ns3::Ipv4MaskChecker::Ipv4MaskChecker(ns3::Ipv4MaskChecker const & arg0) [copy constructor]
3789 cls.add_constructor([param('ns3::Ipv4MaskChecker const &', 'arg0')])
3790 return
3791
3792def register_Ns3Ipv4MaskValue_methods(root_module, cls):
3793 ## ipv4-address.h (module 'network'): ns3::Ipv4MaskValue::Ipv4MaskValue() [constructor]
3794 cls.add_constructor([])
3795 ## ipv4-address.h (module 'network'): ns3::Ipv4MaskValue::Ipv4MaskValue(ns3::Ipv4MaskValue const & arg0) [copy constructor]
3796 cls.add_constructor([param('ns3::Ipv4MaskValue const &', 'arg0')])
3797 ## ipv4-address.h (module 'network'): ns3::Ipv4MaskValue::Ipv4MaskValue(ns3::Ipv4Mask const & value) [constructor]
3798 cls.add_constructor([param('ns3::Ipv4Mask const &', 'value')])
3799 ## ipv4-address.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::Ipv4MaskValue::Copy() const [member function]
3800 cls.add_method('Copy',
3801 'ns3::Ptr< ns3::AttributeValue >',
3802 [],
3803 is_const=True, is_virtual=True)
3804 ## ipv4-address.h (module 'network'): bool ns3::Ipv4MaskValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
3805 cls.add_method('DeserializeFromString',
3806 'bool',
3807 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3808 is_virtual=True)
3809 ## ipv4-address.h (module 'network'): ns3::Ipv4Mask ns3::Ipv4MaskValue::Get() const [member function]
3810 cls.add_method('Get',
3811 'ns3::Ipv4Mask',
3812 [],
3813 is_const=True)
3814 ## ipv4-address.h (module 'network'): std::string ns3::Ipv4MaskValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
3815 cls.add_method('SerializeToString',
3816 'std::string',
3817 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3818 is_const=True, is_virtual=True)
3819 ## ipv4-address.h (module 'network'): void ns3::Ipv4MaskValue::Set(ns3::Ipv4Mask const & value) [member function]
3820 cls.add_method('Set',
3821 'void',
3822 [param('ns3::Ipv4Mask const &', 'value')])
3823 return
3824
3825def register_Ns3Ipv6AddressChecker_methods(root_module, cls):
3826 ## ipv6-address.h (module 'network'): ns3::Ipv6AddressChecker::Ipv6AddressChecker() [constructor]
3827 cls.add_constructor([])
3828 ## ipv6-address.h (module 'network'): ns3::Ipv6AddressChecker::Ipv6AddressChecker(ns3::Ipv6AddressChecker const & arg0) [copy constructor]
3829 cls.add_constructor([param('ns3::Ipv6AddressChecker const &', 'arg0')])
3830 return
3831
3832def register_Ns3Ipv6AddressValue_methods(root_module, cls):
3833 ## ipv6-address.h (module 'network'): ns3::Ipv6AddressValue::Ipv6AddressValue() [constructor]
3834 cls.add_constructor([])
3835 ## ipv6-address.h (module 'network'): ns3::Ipv6AddressValue::Ipv6AddressValue(ns3::Ipv6AddressValue const & arg0) [copy constructor]
3836 cls.add_constructor([param('ns3::Ipv6AddressValue const &', 'arg0')])
3837 ## ipv6-address.h (module 'network'): ns3::Ipv6AddressValue::Ipv6AddressValue(ns3::Ipv6Address const & value) [constructor]
3838 cls.add_constructor([param('ns3::Ipv6Address const &', 'value')])
3839 ## ipv6-address.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::Ipv6AddressValue::Copy() const [member function]
3840 cls.add_method('Copy',
3841 'ns3::Ptr< ns3::AttributeValue >',
3842 [],
3843 is_const=True, is_virtual=True)
3844 ## ipv6-address.h (module 'network'): bool ns3::Ipv6AddressValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
3845 cls.add_method('DeserializeFromString',
3846 'bool',
3847 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3848 is_virtual=True)
3849 ## ipv6-address.h (module 'network'): ns3::Ipv6Address ns3::Ipv6AddressValue::Get() const [member function]
3850 cls.add_method('Get',
3851 'ns3::Ipv6Address',
3852 [],
3853 is_const=True)
3854 ## ipv6-address.h (module 'network'): std::string ns3::Ipv6AddressValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
3855 cls.add_method('SerializeToString',
3856 'std::string',
3857 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3858 is_const=True, is_virtual=True)
3859 ## ipv6-address.h (module 'network'): void ns3::Ipv6AddressValue::Set(ns3::Ipv6Address const & value) [member function]
3860 cls.add_method('Set',
3861 'void',
3862 [param('ns3::Ipv6Address const &', 'value')])
3863 return
3864
3865def register_Ns3Ipv6PrefixChecker_methods(root_module, cls):
3866 ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixChecker::Ipv6PrefixChecker() [constructor]
3867 cls.add_constructor([])
3868 ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixChecker::Ipv6PrefixChecker(ns3::Ipv6PrefixChecker const & arg0) [copy constructor]
3869 cls.add_constructor([param('ns3::Ipv6PrefixChecker const &', 'arg0')])
3870 return
3871
3872def register_Ns3Ipv6PrefixValue_methods(root_module, cls):
3873 ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixValue::Ipv6PrefixValue() [constructor]
3874 cls.add_constructor([])
3875 ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixValue::Ipv6PrefixValue(ns3::Ipv6PrefixValue const & arg0) [copy constructor]
3876 cls.add_constructor([param('ns3::Ipv6PrefixValue const &', 'arg0')])
3877 ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixValue::Ipv6PrefixValue(ns3::Ipv6Prefix const & value) [constructor]
3878 cls.add_constructor([param('ns3::Ipv6Prefix const &', 'value')])
3879 ## ipv6-address.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::Ipv6PrefixValue::Copy() const [member function]
3880 cls.add_method('Copy',
3881 'ns3::Ptr< ns3::AttributeValue >',
3882 [],
3883 is_const=True, is_virtual=True)
3884 ## ipv6-address.h (module 'network'): bool ns3::Ipv6PrefixValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
3885 cls.add_method('DeserializeFromString',
3886 'bool',
3887 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3888 is_virtual=True)
3889 ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix ns3::Ipv6PrefixValue::Get() const [member function]
3890 cls.add_method('Get',
3891 'ns3::Ipv6Prefix',
3892 [],
3893 is_const=True)
3894 ## ipv6-address.h (module 'network'): std::string ns3::Ipv6PrefixValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
3895 cls.add_method('SerializeToString',
3896 'std::string',
3897 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3898 is_const=True, is_virtual=True)
3899 ## ipv6-address.h (module 'network'): void ns3::Ipv6PrefixValue::Set(ns3::Ipv6Prefix const & value) [member function]
3900 cls.add_method('Set',
3901 'void',
3902 [param('ns3::Ipv6Prefix const &', 'value')])
3903 return
3904
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08003905def register_Ns3NetDevice_methods(root_module, cls):
3906 ## net-device.h (module 'network'): ns3::NetDevice::NetDevice() [constructor]
3907 cls.add_constructor([])
3908 ## net-device.h (module 'network'): ns3::NetDevice::NetDevice(ns3::NetDevice const & arg0) [copy constructor]
3909 cls.add_constructor([param('ns3::NetDevice const &', 'arg0')])
Alexander Afanasyeva8f5d882012-11-09 14:22:48 -08003910 ## 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 -08003911 cls.add_method('AddLinkChangeCallback',
3912 'void',
3913 [param('ns3::Callback< void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'callback')],
3914 is_pure_virtual=True, is_virtual=True)
3915 ## net-device.h (module 'network'): ns3::Address ns3::NetDevice::GetAddress() const [member function]
3916 cls.add_method('GetAddress',
3917 'ns3::Address',
3918 [],
3919 is_pure_virtual=True, is_const=True, is_virtual=True)
3920 ## net-device.h (module 'network'): ns3::Address ns3::NetDevice::GetBroadcast() const [member function]
3921 cls.add_method('GetBroadcast',
3922 'ns3::Address',
3923 [],
3924 is_pure_virtual=True, is_const=True, is_virtual=True)
3925 ## net-device.h (module 'network'): ns3::Ptr<ns3::Channel> ns3::NetDevice::GetChannel() const [member function]
3926 cls.add_method('GetChannel',
3927 'ns3::Ptr< ns3::Channel >',
3928 [],
3929 is_pure_virtual=True, is_const=True, is_virtual=True)
3930 ## net-device.h (module 'network'): uint32_t ns3::NetDevice::GetIfIndex() const [member function]
3931 cls.add_method('GetIfIndex',
3932 'uint32_t',
3933 [],
3934 is_pure_virtual=True, is_const=True, is_virtual=True)
3935 ## net-device.h (module 'network'): uint16_t ns3::NetDevice::GetMtu() const [member function]
3936 cls.add_method('GetMtu',
3937 'uint16_t',
3938 [],
3939 is_pure_virtual=True, is_const=True, is_virtual=True)
3940 ## net-device.h (module 'network'): ns3::Address ns3::NetDevice::GetMulticast(ns3::Ipv4Address multicastGroup) const [member function]
3941 cls.add_method('GetMulticast',
3942 'ns3::Address',
3943 [param('ns3::Ipv4Address', 'multicastGroup')],
3944 is_pure_virtual=True, is_const=True, is_virtual=True)
3945 ## net-device.h (module 'network'): ns3::Address ns3::NetDevice::GetMulticast(ns3::Ipv6Address addr) const [member function]
3946 cls.add_method('GetMulticast',
3947 'ns3::Address',
3948 [param('ns3::Ipv6Address', 'addr')],
3949 is_pure_virtual=True, is_const=True, is_virtual=True)
3950 ## net-device.h (module 'network'): ns3::Ptr<ns3::Node> ns3::NetDevice::GetNode() const [member function]
3951 cls.add_method('GetNode',
3952 'ns3::Ptr< ns3::Node >',
3953 [],
3954 is_pure_virtual=True, is_const=True, is_virtual=True)
3955 ## net-device.h (module 'network'): static ns3::TypeId ns3::NetDevice::GetTypeId() [member function]
3956 cls.add_method('GetTypeId',
3957 'ns3::TypeId',
3958 [],
3959 is_static=True)
3960 ## net-device.h (module 'network'): bool ns3::NetDevice::IsBridge() const [member function]
3961 cls.add_method('IsBridge',
3962 'bool',
3963 [],
3964 is_pure_virtual=True, is_const=True, is_virtual=True)
3965 ## net-device.h (module 'network'): bool ns3::NetDevice::IsBroadcast() const [member function]
3966 cls.add_method('IsBroadcast',
3967 'bool',
3968 [],
3969 is_pure_virtual=True, is_const=True, is_virtual=True)
3970 ## net-device.h (module 'network'): bool ns3::NetDevice::IsLinkUp() const [member function]
3971 cls.add_method('IsLinkUp',
3972 'bool',
3973 [],
3974 is_pure_virtual=True, is_const=True, is_virtual=True)
3975 ## net-device.h (module 'network'): bool ns3::NetDevice::IsMulticast() const [member function]
3976 cls.add_method('IsMulticast',
3977 'bool',
3978 [],
3979 is_pure_virtual=True, is_const=True, is_virtual=True)
3980 ## net-device.h (module 'network'): bool ns3::NetDevice::IsPointToPoint() const [member function]
3981 cls.add_method('IsPointToPoint',
3982 'bool',
3983 [],
3984 is_pure_virtual=True, is_const=True, is_virtual=True)
3985 ## net-device.h (module 'network'): bool ns3::NetDevice::NeedsArp() const [member function]
3986 cls.add_method('NeedsArp',
3987 'bool',
3988 [],
3989 is_pure_virtual=True, is_const=True, is_virtual=True)
3990 ## net-device.h (module 'network'): bool ns3::NetDevice::Send(ns3::Ptr<ns3::Packet> packet, ns3::Address const & dest, uint16_t protocolNumber) [member function]
3991 cls.add_method('Send',
3992 'bool',
3993 [param('ns3::Ptr< ns3::Packet >', 'packet'), param('ns3::Address const &', 'dest'), param('uint16_t', 'protocolNumber')],
3994 is_pure_virtual=True, is_virtual=True)
3995 ## 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]
3996 cls.add_method('SendFrom',
3997 'bool',
3998 [param('ns3::Ptr< ns3::Packet >', 'packet'), param('ns3::Address const &', 'source'), param('ns3::Address const &', 'dest'), param('uint16_t', 'protocolNumber')],
3999 is_pure_virtual=True, is_virtual=True)
4000 ## net-device.h (module 'network'): void ns3::NetDevice::SetAddress(ns3::Address address) [member function]
4001 cls.add_method('SetAddress',
4002 'void',
4003 [param('ns3::Address', 'address')],
4004 is_pure_virtual=True, is_virtual=True)
4005 ## net-device.h (module 'network'): void ns3::NetDevice::SetIfIndex(uint32_t const index) [member function]
4006 cls.add_method('SetIfIndex',
4007 'void',
4008 [param('uint32_t const', 'index')],
4009 is_pure_virtual=True, is_virtual=True)
4010 ## net-device.h (module 'network'): bool ns3::NetDevice::SetMtu(uint16_t const mtu) [member function]
4011 cls.add_method('SetMtu',
4012 'bool',
4013 [param('uint16_t const', 'mtu')],
4014 is_pure_virtual=True, is_virtual=True)
4015 ## net-device.h (module 'network'): void ns3::NetDevice::SetNode(ns3::Ptr<ns3::Node> node) [member function]
4016 cls.add_method('SetNode',
4017 'void',
4018 [param('ns3::Ptr< ns3::Node >', 'node')],
4019 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -08004020 ## 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 -08004021 cls.add_method('SetPromiscReceiveCallback',
4022 'void',
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -08004023 [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 -08004024 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -08004025 ## 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 -08004026 cls.add_method('SetReceiveCallback',
4027 'void',
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -08004028 [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 -08004029 is_pure_virtual=True, is_virtual=True)
4030 ## net-device.h (module 'network'): bool ns3::NetDevice::SupportsSendFrom() const [member function]
4031 cls.add_method('SupportsSendFrom',
4032 'bool',
4033 [],
4034 is_pure_virtual=True, is_const=True, is_virtual=True)
4035 return
4036
4037def register_Ns3NixVector_methods(root_module, cls):
4038 cls.add_output_stream_operator()
4039 ## nix-vector.h (module 'network'): ns3::NixVector::NixVector() [constructor]
4040 cls.add_constructor([])
4041 ## nix-vector.h (module 'network'): ns3::NixVector::NixVector(ns3::NixVector const & o) [copy constructor]
4042 cls.add_constructor([param('ns3::NixVector const &', 'o')])
4043 ## nix-vector.h (module 'network'): void ns3::NixVector::AddNeighborIndex(uint32_t newBits, uint32_t numberOfBits) [member function]
4044 cls.add_method('AddNeighborIndex',
4045 'void',
4046 [param('uint32_t', 'newBits'), param('uint32_t', 'numberOfBits')])
4047 ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::BitCount(uint32_t numberOfNeighbors) const [member function]
4048 cls.add_method('BitCount',
4049 'uint32_t',
4050 [param('uint32_t', 'numberOfNeighbors')],
4051 is_const=True)
4052 ## nix-vector.h (module 'network'): ns3::Ptr<ns3::NixVector> ns3::NixVector::Copy() const [member function]
4053 cls.add_method('Copy',
4054 'ns3::Ptr< ns3::NixVector >',
4055 [],
4056 is_const=True)
4057 ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::Deserialize(uint32_t const * buffer, uint32_t size) [member function]
4058 cls.add_method('Deserialize',
4059 'uint32_t',
4060 [param('uint32_t const *', 'buffer'), param('uint32_t', 'size')])
4061 ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::ExtractNeighborIndex(uint32_t numberOfBits) [member function]
4062 cls.add_method('ExtractNeighborIndex',
4063 'uint32_t',
4064 [param('uint32_t', 'numberOfBits')])
4065 ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::GetRemainingBits() [member function]
4066 cls.add_method('GetRemainingBits',
4067 'uint32_t',
4068 [])
4069 ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::GetSerializedSize() const [member function]
4070 cls.add_method('GetSerializedSize',
4071 'uint32_t',
4072 [],
4073 is_const=True)
4074 ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::Serialize(uint32_t * buffer, uint32_t maxSize) const [member function]
4075 cls.add_method('Serialize',
4076 'uint32_t',
4077 [param('uint32_t *', 'buffer'), param('uint32_t', 'maxSize')],
4078 is_const=True)
4079 return
4080
4081def register_Ns3Node_methods(root_module, cls):
4082 ## node.h (module 'network'): ns3::Node::Node(ns3::Node const & arg0) [copy constructor]
4083 cls.add_constructor([param('ns3::Node const &', 'arg0')])
4084 ## node.h (module 'network'): ns3::Node::Node() [constructor]
4085 cls.add_constructor([])
4086 ## node.h (module 'network'): ns3::Node::Node(uint32_t systemId) [constructor]
4087 cls.add_constructor([param('uint32_t', 'systemId')])
4088 ## node.h (module 'network'): uint32_t ns3::Node::AddApplication(ns3::Ptr<ns3::Application> application) [member function]
4089 cls.add_method('AddApplication',
4090 'uint32_t',
4091 [param('ns3::Ptr< ns3::Application >', 'application')])
4092 ## node.h (module 'network'): uint32_t ns3::Node::AddDevice(ns3::Ptr<ns3::NetDevice> device) [member function]
4093 cls.add_method('AddDevice',
4094 'uint32_t',
4095 [param('ns3::Ptr< ns3::NetDevice >', 'device')])
4096 ## node.h (module 'network'): static bool ns3::Node::ChecksumEnabled() [member function]
4097 cls.add_method('ChecksumEnabled',
4098 'bool',
4099 [],
4100 is_static=True)
4101 ## node.h (module 'network'): ns3::Ptr<ns3::Application> ns3::Node::GetApplication(uint32_t index) const [member function]
4102 cls.add_method('GetApplication',
4103 'ns3::Ptr< ns3::Application >',
4104 [param('uint32_t', 'index')],
4105 is_const=True)
4106 ## node.h (module 'network'): ns3::Ptr<ns3::NetDevice> ns3::Node::GetDevice(uint32_t index) const [member function]
4107 cls.add_method('GetDevice',
4108 'ns3::Ptr< ns3::NetDevice >',
4109 [param('uint32_t', 'index')],
4110 is_const=True)
4111 ## node.h (module 'network'): uint32_t ns3::Node::GetId() const [member function]
4112 cls.add_method('GetId',
4113 'uint32_t',
4114 [],
4115 is_const=True)
4116 ## node.h (module 'network'): uint32_t ns3::Node::GetNApplications() const [member function]
4117 cls.add_method('GetNApplications',
4118 'uint32_t',
4119 [],
4120 is_const=True)
4121 ## node.h (module 'network'): uint32_t ns3::Node::GetNDevices() const [member function]
4122 cls.add_method('GetNDevices',
4123 'uint32_t',
4124 [],
4125 is_const=True)
4126 ## node.h (module 'network'): uint32_t ns3::Node::GetSystemId() const [member function]
4127 cls.add_method('GetSystemId',
4128 'uint32_t',
4129 [],
4130 is_const=True)
4131 ## node.h (module 'network'): static ns3::TypeId ns3::Node::GetTypeId() [member function]
4132 cls.add_method('GetTypeId',
4133 'ns3::TypeId',
4134 [],
4135 is_static=True)
4136 ## 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]
4137 cls.add_method('RegisterDeviceAdditionListener',
4138 'void',
4139 [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')])
4140 ## 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]
4141 cls.add_method('RegisterProtocolHandler',
4142 'void',
4143 [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')])
4144 ## 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]
4145 cls.add_method('UnregisterDeviceAdditionListener',
4146 'void',
4147 [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')])
4148 ## 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]
4149 cls.add_method('UnregisterProtocolHandler',
4150 'void',
4151 [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')])
4152 ## node.h (module 'network'): void ns3::Node::DoDispose() [member function]
4153 cls.add_method('DoDispose',
4154 'void',
4155 [],
4156 visibility='protected', is_virtual=True)
4157 ## node.h (module 'network'): void ns3::Node::DoStart() [member function]
4158 cls.add_method('DoStart',
4159 'void',
4160 [],
4161 visibility='protected', is_virtual=True)
4162 return
4163
4164def register_Ns3ObjectFactoryChecker_methods(root_module, cls):
4165 ## object-factory.h (module 'core'): ns3::ObjectFactoryChecker::ObjectFactoryChecker() [constructor]
4166 cls.add_constructor([])
4167 ## object-factory.h (module 'core'): ns3::ObjectFactoryChecker::ObjectFactoryChecker(ns3::ObjectFactoryChecker const & arg0) [copy constructor]
4168 cls.add_constructor([param('ns3::ObjectFactoryChecker const &', 'arg0')])
4169 return
4170
4171def register_Ns3ObjectFactoryValue_methods(root_module, cls):
4172 ## object-factory.h (module 'core'): ns3::ObjectFactoryValue::ObjectFactoryValue() [constructor]
4173 cls.add_constructor([])
4174 ## object-factory.h (module 'core'): ns3::ObjectFactoryValue::ObjectFactoryValue(ns3::ObjectFactoryValue const & arg0) [copy constructor]
4175 cls.add_constructor([param('ns3::ObjectFactoryValue const &', 'arg0')])
4176 ## object-factory.h (module 'core'): ns3::ObjectFactoryValue::ObjectFactoryValue(ns3::ObjectFactory const & value) [constructor]
4177 cls.add_constructor([param('ns3::ObjectFactory const &', 'value')])
4178 ## object-factory.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::ObjectFactoryValue::Copy() const [member function]
4179 cls.add_method('Copy',
4180 'ns3::Ptr< ns3::AttributeValue >',
4181 [],
4182 is_const=True, is_virtual=True)
4183 ## object-factory.h (module 'core'): bool ns3::ObjectFactoryValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
4184 cls.add_method('DeserializeFromString',
4185 'bool',
4186 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4187 is_virtual=True)
4188 ## object-factory.h (module 'core'): ns3::ObjectFactory ns3::ObjectFactoryValue::Get() const [member function]
4189 cls.add_method('Get',
4190 'ns3::ObjectFactory',
4191 [],
4192 is_const=True)
4193 ## object-factory.h (module 'core'): std::string ns3::ObjectFactoryValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
4194 cls.add_method('SerializeToString',
4195 'std::string',
4196 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4197 is_const=True, is_virtual=True)
4198 ## object-factory.h (module 'core'): void ns3::ObjectFactoryValue::Set(ns3::ObjectFactory const & value) [member function]
4199 cls.add_method('Set',
4200 'void',
4201 [param('ns3::ObjectFactory const &', 'value')])
4202 return
4203
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004204def register_Ns3Packet_methods(root_module, cls):
4205 cls.add_output_stream_operator()
4206 ## packet.h (module 'network'): ns3::Packet::Packet() [constructor]
4207 cls.add_constructor([])
4208 ## packet.h (module 'network'): ns3::Packet::Packet(ns3::Packet const & o) [copy constructor]
4209 cls.add_constructor([param('ns3::Packet const &', 'o')])
4210 ## packet.h (module 'network'): ns3::Packet::Packet(uint32_t size) [constructor]
4211 cls.add_constructor([param('uint32_t', 'size')])
4212 ## packet.h (module 'network'): ns3::Packet::Packet(uint8_t const * buffer, uint32_t size, bool magic) [constructor]
4213 cls.add_constructor([param('uint8_t const *', 'buffer'), param('uint32_t', 'size'), param('bool', 'magic')])
4214 ## packet.h (module 'network'): ns3::Packet::Packet(uint8_t const * buffer, uint32_t size) [constructor]
4215 cls.add_constructor([param('uint8_t const *', 'buffer'), param('uint32_t', 'size')])
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -08004216 ## packet.h (module 'network'): void ns3::Packet::AddAtEnd(ns3::Ptr<const ns3::Packet> packet) [member function]
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004217 cls.add_method('AddAtEnd',
4218 'void',
4219 [param('ns3::Ptr< ns3::Packet const >', 'packet')])
4220 ## packet.h (module 'network'): void ns3::Packet::AddByteTag(ns3::Tag const & tag) const [member function]
4221 cls.add_method('AddByteTag',
4222 'void',
4223 [param('ns3::Tag const &', 'tag')],
4224 is_const=True)
4225 ## packet.h (module 'network'): void ns3::Packet::AddHeader(ns3::Header const & header) [member function]
4226 cls.add_method('AddHeader',
4227 'void',
4228 [param('ns3::Header const &', 'header')])
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07004229 ## packet.h (module 'network'): void ns3::Packet::AddPacketTag(ns3::Tag const & tag) const [member function]
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004230 cls.add_method('AddPacketTag',
4231 'void',
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07004232 [param('ns3::Tag const &', 'tag')],
4233 is_const=True)
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004234 ## packet.h (module 'network'): void ns3::Packet::AddPaddingAtEnd(uint32_t size) [member function]
4235 cls.add_method('AddPaddingAtEnd',
4236 'void',
4237 [param('uint32_t', 'size')])
4238 ## packet.h (module 'network'): void ns3::Packet::AddTrailer(ns3::Trailer const & trailer) [member function]
4239 cls.add_method('AddTrailer',
4240 'void',
4241 [param('ns3::Trailer const &', 'trailer')])
4242 ## packet.h (module 'network'): ns3::PacketMetadata::ItemIterator ns3::Packet::BeginItem() const [member function]
4243 cls.add_method('BeginItem',
4244 'ns3::PacketMetadata::ItemIterator',
4245 [],
4246 is_const=True)
4247 ## packet.h (module 'network'): ns3::Ptr<ns3::Packet> ns3::Packet::Copy() const [member function]
4248 cls.add_method('Copy',
4249 'ns3::Ptr< ns3::Packet >',
4250 [],
4251 is_const=True)
4252 ## packet.h (module 'network'): uint32_t ns3::Packet::CopyData(uint8_t * buffer, uint32_t size) const [member function]
4253 cls.add_method('CopyData',
4254 'uint32_t',
4255 [param('uint8_t *', 'buffer'), param('uint32_t', 'size')],
4256 is_const=True)
4257 ## packet.h (module 'network'): void ns3::Packet::CopyData(std::ostream * os, uint32_t size) const [member function]
4258 cls.add_method('CopyData',
4259 'void',
4260 [param('std::ostream *', 'os'), param('uint32_t', 'size')],
4261 is_const=True)
4262 ## packet.h (module 'network'): ns3::Ptr<ns3::Packet> ns3::Packet::CreateFragment(uint32_t start, uint32_t length) const [member function]
4263 cls.add_method('CreateFragment',
4264 'ns3::Ptr< ns3::Packet >',
4265 [param('uint32_t', 'start'), param('uint32_t', 'length')],
4266 is_const=True)
4267 ## packet.h (module 'network'): static void ns3::Packet::EnableChecking() [member function]
4268 cls.add_method('EnableChecking',
4269 'void',
4270 [],
4271 is_static=True)
4272 ## packet.h (module 'network'): static void ns3::Packet::EnablePrinting() [member function]
4273 cls.add_method('EnablePrinting',
4274 'void',
4275 [],
4276 is_static=True)
4277 ## packet.h (module 'network'): bool ns3::Packet::FindFirstMatchingByteTag(ns3::Tag & tag) const [member function]
4278 cls.add_method('FindFirstMatchingByteTag',
4279 'bool',
4280 [param('ns3::Tag &', 'tag')],
4281 is_const=True)
4282 ## packet.h (module 'network'): ns3::ByteTagIterator ns3::Packet::GetByteTagIterator() const [member function]
4283 cls.add_method('GetByteTagIterator',
4284 'ns3::ByteTagIterator',
4285 [],
4286 is_const=True)
4287 ## packet.h (module 'network'): ns3::Ptr<ns3::NixVector> ns3::Packet::GetNixVector() const [member function]
4288 cls.add_method('GetNixVector',
4289 'ns3::Ptr< ns3::NixVector >',
4290 [],
4291 is_const=True)
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07004292 ## packet.h (module 'network'): ns3::PacketTagIterator ns3::Packet::GetPacketTagIterator() const [member function]
4293 cls.add_method('GetPacketTagIterator',
4294 'ns3::PacketTagIterator',
4295 [],
4296 is_const=True)
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004297 ## packet.h (module 'network'): uint32_t ns3::Packet::GetSerializedSize() const [member function]
4298 cls.add_method('GetSerializedSize',
4299 'uint32_t',
4300 [],
4301 is_const=True)
4302 ## packet.h (module 'network'): uint32_t ns3::Packet::GetSize() const [member function]
4303 cls.add_method('GetSize',
4304 'uint32_t',
4305 [],
4306 is_const=True)
4307 ## packet.h (module 'network'): uint64_t ns3::Packet::GetUid() const [member function]
4308 cls.add_method('GetUid',
4309 'uint64_t',
4310 [],
4311 is_const=True)
4312 ## packet.h (module 'network'): uint8_t const * ns3::Packet::PeekData() const [member function]
4313 cls.add_method('PeekData',
4314 'uint8_t const *',
4315 [],
4316 deprecated=True, is_const=True)
4317 ## packet.h (module 'network'): uint32_t ns3::Packet::PeekHeader(ns3::Header & header) const [member function]
4318 cls.add_method('PeekHeader',
4319 'uint32_t',
4320 [param('ns3::Header &', 'header')],
4321 is_const=True)
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07004322 ## packet.h (module 'network'): bool ns3::Packet::PeekPacketTag(ns3::Tag & tag) const [member function]
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004323 cls.add_method('PeekPacketTag',
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07004324 'bool',
4325 [param('ns3::Tag &', 'tag')],
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004326 is_const=True)
4327 ## packet.h (module 'network'): uint32_t ns3::Packet::PeekTrailer(ns3::Trailer & trailer) [member function]
4328 cls.add_method('PeekTrailer',
4329 'uint32_t',
4330 [param('ns3::Trailer &', 'trailer')])
4331 ## packet.h (module 'network'): void ns3::Packet::Print(std::ostream & os) const [member function]
4332 cls.add_method('Print',
4333 'void',
4334 [param('std::ostream &', 'os')],
4335 is_const=True)
4336 ## packet.h (module 'network'): void ns3::Packet::PrintByteTags(std::ostream & os) const [member function]
4337 cls.add_method('PrintByteTags',
4338 'void',
4339 [param('std::ostream &', 'os')],
4340 is_const=True)
4341 ## packet.h (module 'network'): void ns3::Packet::PrintPacketTags(std::ostream & os) const [member function]
4342 cls.add_method('PrintPacketTags',
4343 'void',
4344 [param('std::ostream &', 'os')],
4345 is_const=True)
4346 ## packet.h (module 'network'): void ns3::Packet::RemoveAllByteTags() [member function]
4347 cls.add_method('RemoveAllByteTags',
4348 'void',
4349 [])
4350 ## packet.h (module 'network'): void ns3::Packet::RemoveAllPacketTags() [member function]
4351 cls.add_method('RemoveAllPacketTags',
4352 'void',
4353 [])
4354 ## packet.h (module 'network'): void ns3::Packet::RemoveAtEnd(uint32_t size) [member function]
4355 cls.add_method('RemoveAtEnd',
4356 'void',
4357 [param('uint32_t', 'size')])
4358 ## packet.h (module 'network'): void ns3::Packet::RemoveAtStart(uint32_t size) [member function]
4359 cls.add_method('RemoveAtStart',
4360 'void',
4361 [param('uint32_t', 'size')])
4362 ## packet.h (module 'network'): uint32_t ns3::Packet::RemoveHeader(ns3::Header & header) [member function]
4363 cls.add_method('RemoveHeader',
4364 'uint32_t',
4365 [param('ns3::Header &', 'header')])
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07004366 ## packet.h (module 'network'): bool ns3::Packet::RemovePacketTag(ns3::Tag & tag) [member function]
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004367 cls.add_method('RemovePacketTag',
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07004368 'bool',
4369 [param('ns3::Tag &', 'tag')])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004370 ## packet.h (module 'network'): uint32_t ns3::Packet::RemoveTrailer(ns3::Trailer & trailer) [member function]
4371 cls.add_method('RemoveTrailer',
4372 'uint32_t',
4373 [param('ns3::Trailer &', 'trailer')])
4374 ## packet.h (module 'network'): uint32_t ns3::Packet::Serialize(uint8_t * buffer, uint32_t maxSize) const [member function]
4375 cls.add_method('Serialize',
4376 'uint32_t',
4377 [param('uint8_t *', 'buffer'), param('uint32_t', 'maxSize')],
4378 is_const=True)
4379 ## packet.h (module 'network'): void ns3::Packet::SetNixVector(ns3::Ptr<ns3::NixVector> arg0) [member function]
4380 cls.add_method('SetNixVector',
4381 'void',
4382 [param('ns3::Ptr< ns3::NixVector >', 'arg0')])
4383 return
4384
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07004385def register_Ns3RandomVariableChecker_methods(root_module, cls):
4386 ## random-variable.h (module 'core'): ns3::RandomVariableChecker::RandomVariableChecker() [constructor]
4387 cls.add_constructor([])
4388 ## random-variable.h (module 'core'): ns3::RandomVariableChecker::RandomVariableChecker(ns3::RandomVariableChecker const & arg0) [copy constructor]
4389 cls.add_constructor([param('ns3::RandomVariableChecker const &', 'arg0')])
4390 return
4391
4392def register_Ns3RandomVariableValue_methods(root_module, cls):
4393 ## random-variable.h (module 'core'): ns3::RandomVariableValue::RandomVariableValue() [constructor]
4394 cls.add_constructor([])
4395 ## random-variable.h (module 'core'): ns3::RandomVariableValue::RandomVariableValue(ns3::RandomVariableValue const & arg0) [copy constructor]
4396 cls.add_constructor([param('ns3::RandomVariableValue const &', 'arg0')])
4397 ## random-variable.h (module 'core'): ns3::RandomVariableValue::RandomVariableValue(ns3::RandomVariable const & value) [constructor]
4398 cls.add_constructor([param('ns3::RandomVariable const &', 'value')])
4399 ## random-variable.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::RandomVariableValue::Copy() const [member function]
4400 cls.add_method('Copy',
4401 'ns3::Ptr< ns3::AttributeValue >',
4402 [],
4403 is_const=True, is_virtual=True)
4404 ## random-variable.h (module 'core'): bool ns3::RandomVariableValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
4405 cls.add_method('DeserializeFromString',
4406 'bool',
4407 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4408 is_virtual=True)
4409 ## random-variable.h (module 'core'): ns3::RandomVariable ns3::RandomVariableValue::Get() const [member function]
4410 cls.add_method('Get',
4411 'ns3::RandomVariable',
4412 [],
4413 is_const=True)
4414 ## random-variable.h (module 'core'): std::string ns3::RandomVariableValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
4415 cls.add_method('SerializeToString',
4416 'std::string',
4417 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4418 is_const=True, is_virtual=True)
4419 ## random-variable.h (module 'core'): void ns3::RandomVariableValue::Set(ns3::RandomVariable const & value) [member function]
4420 cls.add_method('Set',
4421 'void',
4422 [param('ns3::RandomVariable const &', 'value')])
4423 return
4424
4425def register_Ns3RocketfuelWeightsReader_methods(root_module, cls):
4426 ## rocketfuel-weights-reader.h (module 'ndnSIM'): ns3::RocketfuelWeightsReader::RocketfuelWeightsReader(std::string const & path="", double scale=1.0e+0) [constructor]
4427 cls.add_constructor([param('std::string const &', 'path', default_value='""'), param('double', 'scale', default_value='1.0e+0')])
4428 ## rocketfuel-weights-reader.h (module 'ndnSIM'): void ns3::RocketfuelWeightsReader::SetFileType(uint8_t inputType) [member function]
4429 cls.add_method('SetFileType',
4430 'void',
4431 [param('uint8_t', 'inputType')])
4432 ## rocketfuel-weights-reader.h (module 'ndnSIM'): ns3::NodeContainer ns3::RocketfuelWeightsReader::Read() [member function]
4433 cls.add_method('Read',
4434 'ns3::NodeContainer',
4435 [],
4436 is_virtual=True)
4437 ## rocketfuel-weights-reader.h (module 'ndnSIM'): void ns3::RocketfuelWeightsReader::Commit() [member function]
4438 cls.add_method('Commit',
4439 'void',
4440 [])
4441 return
4442
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004443def register_Ns3TimeChecker_methods(root_module, cls):
4444 ## nstime.h (module 'core'): ns3::TimeChecker::TimeChecker() [constructor]
4445 cls.add_constructor([])
4446 ## nstime.h (module 'core'): ns3::TimeChecker::TimeChecker(ns3::TimeChecker const & arg0) [copy constructor]
4447 cls.add_constructor([param('ns3::TimeChecker const &', 'arg0')])
4448 return
4449
4450def register_Ns3TimeValue_methods(root_module, cls):
4451 ## nstime.h (module 'core'): ns3::TimeValue::TimeValue() [constructor]
4452 cls.add_constructor([])
4453 ## nstime.h (module 'core'): ns3::TimeValue::TimeValue(ns3::TimeValue const & arg0) [copy constructor]
4454 cls.add_constructor([param('ns3::TimeValue const &', 'arg0')])
4455 ## nstime.h (module 'core'): ns3::TimeValue::TimeValue(ns3::Time const & value) [constructor]
4456 cls.add_constructor([param('ns3::Time const &', 'value')])
4457 ## nstime.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::TimeValue::Copy() const [member function]
4458 cls.add_method('Copy',
4459 'ns3::Ptr< ns3::AttributeValue >',
4460 [],
4461 is_const=True, is_virtual=True)
4462 ## nstime.h (module 'core'): bool ns3::TimeValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
4463 cls.add_method('DeserializeFromString',
4464 'bool',
4465 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4466 is_virtual=True)
4467 ## nstime.h (module 'core'): ns3::Time ns3::TimeValue::Get() const [member function]
4468 cls.add_method('Get',
4469 'ns3::Time',
4470 [],
4471 is_const=True)
4472 ## nstime.h (module 'core'): std::string ns3::TimeValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
4473 cls.add_method('SerializeToString',
4474 'std::string',
4475 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4476 is_const=True, is_virtual=True)
4477 ## nstime.h (module 'core'): void ns3::TimeValue::Set(ns3::Time const & value) [member function]
4478 cls.add_method('Set',
4479 'void',
4480 [param('ns3::Time const &', 'value')])
4481 return
4482
4483def register_Ns3TypeIdChecker_methods(root_module, cls):
4484 ## type-id.h (module 'core'): ns3::TypeIdChecker::TypeIdChecker() [constructor]
4485 cls.add_constructor([])
4486 ## type-id.h (module 'core'): ns3::TypeIdChecker::TypeIdChecker(ns3::TypeIdChecker const & arg0) [copy constructor]
4487 cls.add_constructor([param('ns3::TypeIdChecker const &', 'arg0')])
4488 return
4489
4490def register_Ns3TypeIdValue_methods(root_module, cls):
4491 ## type-id.h (module 'core'): ns3::TypeIdValue::TypeIdValue() [constructor]
4492 cls.add_constructor([])
4493 ## type-id.h (module 'core'): ns3::TypeIdValue::TypeIdValue(ns3::TypeIdValue const & arg0) [copy constructor]
4494 cls.add_constructor([param('ns3::TypeIdValue const &', 'arg0')])
4495 ## type-id.h (module 'core'): ns3::TypeIdValue::TypeIdValue(ns3::TypeId const & value) [constructor]
4496 cls.add_constructor([param('ns3::TypeId const &', 'value')])
4497 ## type-id.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::TypeIdValue::Copy() const [member function]
4498 cls.add_method('Copy',
4499 'ns3::Ptr< ns3::AttributeValue >',
4500 [],
4501 is_const=True, is_virtual=True)
4502 ## type-id.h (module 'core'): bool ns3::TypeIdValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
4503 cls.add_method('DeserializeFromString',
4504 'bool',
4505 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4506 is_virtual=True)
4507 ## type-id.h (module 'core'): ns3::TypeId ns3::TypeIdValue::Get() const [member function]
4508 cls.add_method('Get',
4509 'ns3::TypeId',
4510 [],
4511 is_const=True)
4512 ## type-id.h (module 'core'): std::string ns3::TypeIdValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
4513 cls.add_method('SerializeToString',
4514 'std::string',
4515 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4516 is_const=True, is_virtual=True)
4517 ## type-id.h (module 'core'): void ns3::TypeIdValue::Set(ns3::TypeId const & value) [member function]
4518 cls.add_method('Set',
4519 'void',
4520 [param('ns3::TypeId const &', 'value')])
4521 return
4522
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07004523def register_Ns3UintegerValue_methods(root_module, cls):
4524 ## uinteger.h (module 'core'): ns3::UintegerValue::UintegerValue() [constructor]
4525 cls.add_constructor([])
4526 ## uinteger.h (module 'core'): ns3::UintegerValue::UintegerValue(ns3::UintegerValue const & arg0) [copy constructor]
4527 cls.add_constructor([param('ns3::UintegerValue const &', 'arg0')])
4528 ## uinteger.h (module 'core'): ns3::UintegerValue::UintegerValue(uint64_t const & value) [constructor]
4529 cls.add_constructor([param('uint64_t const &', 'value')])
4530 ## uinteger.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::UintegerValue::Copy() const [member function]
4531 cls.add_method('Copy',
4532 'ns3::Ptr< ns3::AttributeValue >',
4533 [],
4534 is_const=True, is_virtual=True)
4535 ## uinteger.h (module 'core'): bool ns3::UintegerValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
4536 cls.add_method('DeserializeFromString',
4537 'bool',
4538 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4539 is_virtual=True)
4540 ## uinteger.h (module 'core'): uint64_t ns3::UintegerValue::Get() const [member function]
4541 cls.add_method('Get',
4542 'uint64_t',
4543 [],
4544 is_const=True)
4545 ## uinteger.h (module 'core'): std::string ns3::UintegerValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
4546 cls.add_method('SerializeToString',
4547 'std::string',
4548 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4549 is_const=True, is_virtual=True)
4550 ## uinteger.h (module 'core'): void ns3::UintegerValue::Set(uint64_t const & value) [member function]
4551 cls.add_method('Set',
4552 'void',
4553 [param('uint64_t const &', 'value')])
4554 return
4555
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004556def register_Ns3AddressChecker_methods(root_module, cls):
4557 ## address.h (module 'network'): ns3::AddressChecker::AddressChecker() [constructor]
4558 cls.add_constructor([])
4559 ## address.h (module 'network'): ns3::AddressChecker::AddressChecker(ns3::AddressChecker const & arg0) [copy constructor]
4560 cls.add_constructor([param('ns3::AddressChecker const &', 'arg0')])
4561 return
4562
4563def register_Ns3AddressValue_methods(root_module, cls):
4564 ## address.h (module 'network'): ns3::AddressValue::AddressValue() [constructor]
4565 cls.add_constructor([])
4566 ## address.h (module 'network'): ns3::AddressValue::AddressValue(ns3::AddressValue const & arg0) [copy constructor]
4567 cls.add_constructor([param('ns3::AddressValue const &', 'arg0')])
4568 ## address.h (module 'network'): ns3::AddressValue::AddressValue(ns3::Address const & value) [constructor]
4569 cls.add_constructor([param('ns3::Address const &', 'value')])
4570 ## address.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::AddressValue::Copy() const [member function]
4571 cls.add_method('Copy',
4572 'ns3::Ptr< ns3::AttributeValue >',
4573 [],
4574 is_const=True, is_virtual=True)
4575 ## address.h (module 'network'): bool ns3::AddressValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
4576 cls.add_method('DeserializeFromString',
4577 'bool',
4578 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4579 is_virtual=True)
4580 ## address.h (module 'network'): ns3::Address ns3::AddressValue::Get() const [member function]
4581 cls.add_method('Get',
4582 'ns3::Address',
4583 [],
4584 is_const=True)
4585 ## address.h (module 'network'): std::string ns3::AddressValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
4586 cls.add_method('SerializeToString',
4587 'std::string',
4588 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4589 is_const=True, is_virtual=True)
4590 ## address.h (module 'network'): void ns3::AddressValue::Set(ns3::Address const & value) [member function]
4591 cls.add_method('Set',
4592 'void',
4593 [param('ns3::Address const &', 'value')])
4594 return
4595
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004596def register_Ns3NdnApp_methods(root_module, cls):
4597 ## ndn-app.h (module 'ndnSIM'): ns3::ndn::App::App(ns3::ndn::App const & arg0) [copy constructor]
4598 cls.add_constructor([param('ns3::ndn::App const &', 'arg0')])
4599 ## ndn-app.h (module 'ndnSIM'): ns3::ndn::App::App() [constructor]
4600 cls.add_constructor([])
4601 ## ndn-app.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::App::GetTypeId() [member function]
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07004602 cls.add_method('GetTypeId',
4603 'ns3::TypeId',
4604 [],
4605 is_static=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004606 ## 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]
4607 cls.add_method('OnContentObject',
4608 'void',
4609 [param('ns3::Ptr< ns3::ndn::ContentObjectHeader const > const &', 'contentObject'), param('ns3::Ptr< ns3::Packet >', 'payload')],
4610 is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07004611 ## 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 -07004612 cls.add_method('OnInterest',
4613 'void',
4614 [param('ns3::Ptr< ns3::ndn::InterestHeader const > const &', 'interest'), param('ns3::Ptr< ns3::Packet >', 'packet')],
4615 is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07004616 ## 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 -07004617 cls.add_method('OnNack',
4618 'void',
4619 [param('ns3::Ptr< ns3::ndn::InterestHeader const > const &', 'interest'), param('ns3::Ptr< ns3::Packet >', 'packet')],
4620 is_virtual=True)
4621 ## 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 -07004622 cls.add_method('RegisterProtocolHandler',
4623 'void',
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004624 [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')])
4625 ## ndn-app.h (module 'ndnSIM'): void ns3::ndn::App::DoDispose() [member function]
4626 cls.add_method('DoDispose',
4627 'void',
4628 [],
4629 visibility='protected', is_virtual=True)
4630 ## ndn-app.h (module 'ndnSIM'): void ns3::ndn::App::StartApplication() [member function]
4631 cls.add_method('StartApplication',
4632 'void',
4633 [],
4634 visibility='protected', is_virtual=True)
4635 ## ndn-app.h (module 'ndnSIM'): void ns3::ndn::App::StopApplication() [member function]
4636 cls.add_method('StopApplication',
4637 'void',
4638 [],
4639 visibility='protected', is_virtual=True)
4640 return
4641
4642def register_Ns3NdnAppHelper_methods(root_module, cls):
4643 ## ndn-app-helper.h (module 'ndnSIM'): ns3::ndn::AppHelper::AppHelper(ns3::ndn::AppHelper const & arg0) [copy constructor]
4644 cls.add_constructor([param('ns3::ndn::AppHelper const &', 'arg0')])
4645 ## ndn-app-helper.h (module 'ndnSIM'): ns3::ndn::AppHelper::AppHelper(std::string const & prefix) [constructor]
4646 cls.add_constructor([param('std::string const &', 'prefix')])
4647 ## ndn-app-helper.h (module 'ndnSIM'): ns3::ApplicationContainer ns3::ndn::AppHelper::Install(ns3::NodeContainer c) [member function]
4648 cls.add_method('Install',
4649 'ns3::ApplicationContainer',
4650 [param('ns3::NodeContainer', 'c')])
4651 ## ndn-app-helper.h (module 'ndnSIM'): ns3::ApplicationContainer ns3::ndn::AppHelper::Install(ns3::Ptr<ns3::Node> node) [member function]
4652 cls.add_method('Install',
4653 'ns3::ApplicationContainer',
4654 [param('ns3::Ptr< ns3::Node >', 'node')])
4655 ## ndn-app-helper.h (module 'ndnSIM'): ns3::ApplicationContainer ns3::ndn::AppHelper::Install(std::string nodeName) [member function]
4656 cls.add_method('Install',
4657 'ns3::ApplicationContainer',
4658 [param('std::string', 'nodeName')])
4659 ## ndn-app-helper.h (module 'ndnSIM'): void ns3::ndn::AppHelper::SetAttribute(std::string name, ns3::AttributeValue const & value) [member function]
4660 cls.add_method('SetAttribute',
4661 'void',
4662 [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')])
4663 ## ndn-app-helper.h (module 'ndnSIM'): void ns3::ndn::AppHelper::SetPrefix(std::string const & prefix) [member function]
4664 cls.add_method('SetPrefix',
4665 'void',
4666 [param('std::string const &', 'prefix')])
4667 return
4668
4669def register_Ns3NdnContentObjectHeader_methods(root_module, cls):
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08004670 ## ndn-content-object.h (module 'ndnSIM'): ns3::ndn::ContentObjectHeader::ContentObjectHeader(ns3::ndn::ContentObjectHeader const & arg0) [copy constructor]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004671 cls.add_constructor([param('ns3::ndn::ContentObjectHeader const &', 'arg0')])
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08004672 ## ndn-content-object.h (module 'ndnSIM'): ns3::ndn::ContentObjectHeader::ContentObjectHeader() [constructor]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004673 cls.add_constructor([])
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08004674 ## 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 -07004675 cls.add_method('Deserialize',
4676 'uint32_t',
4677 [param('ns3::Buffer::Iterator', 'start')],
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07004678 is_virtual=True)
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08004679 ## ndn-content-object.h (module 'ndnSIM'): ns3::Time ns3::ndn::ContentObjectHeader::GetFreshness() const [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004680 cls.add_method('GetFreshness',
4681 'ns3::Time',
4682 [],
4683 is_const=True)
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08004684 ## ndn-content-object.h (module 'ndnSIM'): ns3::TypeId ns3::ndn::ContentObjectHeader::GetInstanceTypeId() const [member function]
4685 cls.add_method('GetInstanceTypeId',
4686 'ns3::TypeId',
4687 [],
4688 is_const=True, is_virtual=True)
4689 ## ndn-content-object.h (module 'ndnSIM'): ns3::ndn::NameComponents const & ns3::ndn::ContentObjectHeader::GetName() const [member function]
4690 cls.add_method('GetName',
4691 'ns3::ndn::NameComponents const &',
4692 [],
4693 is_const=True)
4694 ## ndn-content-object.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::NameComponents const> ns3::ndn::ContentObjectHeader::GetNamePtr() const [member function]
4695 cls.add_method('GetNamePtr',
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004696 'ns3::Ptr< ns3::ndn::NameComponents const >',
4697 [],
4698 is_const=True)
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08004699 ## ndn-content-object.h (module 'ndnSIM'): uint32_t ns3::ndn::ContentObjectHeader::GetSerializedSize() const [member function]
4700 cls.add_method('GetSerializedSize',
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004701 'uint32_t',
4702 [],
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08004703 is_const=True, is_virtual=True)
4704 ## ndn-content-object.h (module 'ndnSIM'): ns3::Time ns3::ndn::ContentObjectHeader::GetTimestamp() const [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004705 cls.add_method('GetTimestamp',
4706 'ns3::Time',
4707 [],
4708 is_const=True)
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08004709 ## ndn-content-object.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::ContentObjectHeader::GetTypeId() [member function]
4710 cls.add_method('GetTypeId',
4711 'ns3::TypeId',
4712 [],
4713 is_static=True)
4714 ## ndn-content-object.h (module 'ndnSIM'): void ns3::ndn::ContentObjectHeader::Print(std::ostream & os) const [member function]
4715 cls.add_method('Print',
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004716 'void',
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08004717 [param('std::ostream &', 'os')],
4718 is_const=True, is_virtual=True)
4719 ## ndn-content-object.h (module 'ndnSIM'): void ns3::ndn::ContentObjectHeader::Serialize(ns3::Buffer::Iterator start) const [member function]
4720 cls.add_method('Serialize',
4721 'void',
4722 [param('ns3::Buffer::Iterator', 'start')],
4723 is_const=True, is_virtual=True)
4724 ## ndn-content-object.h (module 'ndnSIM'): void ns3::ndn::ContentObjectHeader::SetFreshness(ns3::Time const & freshness) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004725 cls.add_method('SetFreshness',
4726 'void',
4727 [param('ns3::Time const &', 'freshness')])
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08004728 ## ndn-content-object.h (module 'ndnSIM'): void ns3::ndn::ContentObjectHeader::SetName(ns3::Ptr<ns3::ndn::NameComponents> const & name) [member function]
4729 cls.add_method('SetName',
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004730 'void',
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08004731 [param('ns3::Ptr< ns3::ndn::NameComponents > const &', 'name')])
4732 ## ndn-content-object.h (module 'ndnSIM'): void ns3::ndn::ContentObjectHeader::SetTimestamp(ns3::Time const & timestamp) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004733 cls.add_method('SetTimestamp',
4734 'void',
4735 [param('ns3::Time const &', 'timestamp')])
4736 return
4737
4738def register_Ns3NdnContentObjectHeaderException_methods(root_module, cls):
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08004739 ## ndn-content-object.h (module 'ndnSIM'): ns3::ndn::ContentObjectHeaderException::ContentObjectHeaderException() [constructor]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004740 cls.add_constructor([])
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08004741 ## ndn-content-object.h (module 'ndnSIM'): ns3::ndn::ContentObjectHeaderException::ContentObjectHeaderException(ns3::ndn::ContentObjectHeaderException const & arg0) [copy constructor]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004742 cls.add_constructor([param('ns3::ndn::ContentObjectHeaderException const &', 'arg0')])
4743 return
4744
4745def register_Ns3NdnContentObjectTail_methods(root_module, cls):
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08004746 ## ndn-content-object.h (module 'ndnSIM'): ns3::ndn::ContentObjectTail::ContentObjectTail(ns3::ndn::ContentObjectTail const & arg0) [copy constructor]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004747 cls.add_constructor([param('ns3::ndn::ContentObjectTail const &', 'arg0')])
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08004748 ## ndn-content-object.h (module 'ndnSIM'): ns3::ndn::ContentObjectTail::ContentObjectTail() [constructor]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004749 cls.add_constructor([])
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08004750 ## 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 -07004751 cls.add_method('Deserialize',
4752 'uint32_t',
4753 [param('ns3::Buffer::Iterator', 'start')],
4754 is_virtual=True)
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08004755 ## ndn-content-object.h (module 'ndnSIM'): ns3::TypeId ns3::ndn::ContentObjectTail::GetInstanceTypeId() const [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004756 cls.add_method('GetInstanceTypeId',
4757 'ns3::TypeId',
4758 [],
4759 is_const=True, is_virtual=True)
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08004760 ## ndn-content-object.h (module 'ndnSIM'): uint32_t ns3::ndn::ContentObjectTail::GetSerializedSize() const [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004761 cls.add_method('GetSerializedSize',
4762 'uint32_t',
4763 [],
4764 is_const=True, is_virtual=True)
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08004765 ## ndn-content-object.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::ContentObjectTail::GetTypeId() [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004766 cls.add_method('GetTypeId',
4767 'ns3::TypeId',
4768 [],
4769 is_static=True)
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08004770 ## ndn-content-object.h (module 'ndnSIM'): void ns3::ndn::ContentObjectTail::Print(std::ostream & os) const [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004771 cls.add_method('Print',
4772 'void',
4773 [param('std::ostream &', 'os')],
4774 is_const=True, is_virtual=True)
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08004775 ## 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 -07004776 cls.add_method('Serialize',
4777 'void',
4778 [param('ns3::Buffer::Iterator', 'start')],
4779 is_const=True, is_virtual=True)
4780 return
4781
4782def register_Ns3NdnContentStore_methods(root_module, cls):
4783 cls.add_output_stream_operator()
4784 ## ndn-content-store.h (module 'ndnSIM'): ns3::ndn::ContentStore::ContentStore() [constructor]
4785 cls.add_constructor([])
4786 ## ndn-content-store.h (module 'ndnSIM'): ns3::ndn::ContentStore::ContentStore(ns3::ndn::ContentStore const & arg0) [copy constructor]
4787 cls.add_constructor([param('ns3::ndn::ContentStore const &', 'arg0')])
4788 ## 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]
4789 cls.add_method('Add',
4790 'bool',
4791 [param('ns3::Ptr< ns3::ndn::ContentObjectHeader const >', 'header'), param('ns3::Ptr< ns3::Packet const >', 'packet')],
4792 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07004793 ## ndn-content-store.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::cs::Entry> ns3::ndn::ContentStore::Begin() [member function]
4794 cls.add_method('Begin',
4795 'ns3::Ptr< ns3::ndn::cs::Entry >',
4796 [],
4797 is_pure_virtual=True, is_virtual=True)
4798 ## ndn-content-store.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::cs::Entry> ns3::ndn::ContentStore::End() [member function]
4799 cls.add_method('End',
4800 'ns3::Ptr< ns3::ndn::cs::Entry >',
4801 [],
4802 is_pure_virtual=True, is_virtual=True)
4803 ## ndn-content-store.h (module 'ndnSIM'): static ns3::Ptr<ns3::ndn::ContentStore> ns3::ndn::ContentStore::GetContentStore(ns3::Ptr<ns3::Object> node) [member function]
4804 cls.add_method('GetContentStore',
4805 'ns3::Ptr< ns3::ndn::ContentStore >',
4806 [param('ns3::Ptr< ns3::Object >', 'node')],
4807 is_static=True)
4808 ## ndn-content-store.h (module 'ndnSIM'): uint32_t ns3::ndn::ContentStore::GetSize() const [member function]
4809 cls.add_method('GetSize',
4810 'uint32_t',
4811 [],
4812 is_pure_virtual=True, is_const=True, is_virtual=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004813 ## ndn-content-store.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::ContentStore::GetTypeId() [member function]
4814 cls.add_method('GetTypeId',
4815 'ns3::TypeId',
4816 [],
4817 is_static=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07004818 ## 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 -07004819 cls.add_method('Lookup',
4820 '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 >',
4821 [param('ns3::Ptr< ns3::ndn::InterestHeader const >', 'interest')],
4822 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07004823 ## 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]
4824 cls.add_method('Next',
4825 'ns3::Ptr< ns3::ndn::cs::Entry >',
4826 [param('ns3::Ptr< ns3::ndn::cs::Entry >', 'arg0')],
4827 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004828 ## ndn-content-store.h (module 'ndnSIM'): void ns3::ndn::ContentStore::Print(std::ostream & os) const [member function]
4829 cls.add_method('Print',
4830 'void',
4831 [param('std::ostream &', 'os')],
4832 is_pure_virtual=True, is_const=True, is_virtual=True)
4833 return
4834
4835def register_Ns3NdnFace_methods(root_module, cls):
4836 cls.add_output_stream_operator()
4837 cls.add_binary_comparison_operator('!=')
4838 cls.add_binary_comparison_operator('<')
4839 cls.add_binary_comparison_operator('==')
4840 ## ndn-face.h (module 'ndnSIM'): ns3::ndn::Face::Face(ns3::Ptr<ns3::Node> node) [constructor]
4841 cls.add_constructor([param('ns3::Ptr< ns3::Node >', 'node')])
4842 ## ndn-face.h (module 'ndnSIM'): uint32_t ns3::ndn::Face::GetId() const [member function]
4843 cls.add_method('GetId',
4844 'uint32_t',
4845 [],
4846 is_const=True)
4847 ## ndn-face.h (module 'ndnSIM'): uint16_t ns3::ndn::Face::GetMetric() const [member function]
4848 cls.add_method('GetMetric',
4849 'uint16_t',
4850 [],
4851 is_const=True, is_virtual=True)
4852 ## ndn-face.h (module 'ndnSIM'): ns3::Ptr<ns3::Node> ns3::ndn::Face::GetNode() const [member function]
4853 cls.add_method('GetNode',
4854 'ns3::Ptr< ns3::Node >',
4855 [],
4856 is_const=True)
4857 ## ndn-face.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::Face::GetTypeId() [member function]
4858 cls.add_method('GetTypeId',
4859 'ns3::TypeId',
4860 [],
4861 is_static=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004862 ## ndn-face.h (module 'ndnSIM'): bool ns3::ndn::Face::IsUp() const [member function]
4863 cls.add_method('IsUp',
4864 'bool',
4865 [],
4866 is_const=True, is_virtual=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004867 ## ndn-face.h (module 'ndnSIM'): std::ostream & ns3::ndn::Face::Print(std::ostream & os) const [member function]
Alexander Afanasyev3073da82012-06-19 14:57:43 -07004868 cls.add_method('Print',
4869 'std::ostream &',
4870 [param('std::ostream &', 'os')],
4871 is_const=True, is_virtual=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004872 ## ndn-face.h (module 'ndnSIM'): bool ns3::ndn::Face::Receive(ns3::Ptr<const ns3::Packet> const & p) [member function]
4873 cls.add_method('Receive',
4874 'bool',
4875 [param('ns3::Ptr< ns3::Packet const > const &', 'p')])
4876 ## 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]
4877 cls.add_method('RegisterProtocolHandler',
4878 'void',
4879 [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')],
4880 is_virtual=True)
4881 ## ndn-face.h (module 'ndnSIM'): bool ns3::ndn::Face::Send(ns3::Ptr<ns3::Packet> p) [member function]
4882 cls.add_method('Send',
4883 'bool',
4884 [param('ns3::Ptr< ns3::Packet >', 'p')])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004885 ## ndn-face.h (module 'ndnSIM'): void ns3::ndn::Face::SetId(uint32_t id) [member function]
4886 cls.add_method('SetId',
4887 'void',
4888 [param('uint32_t', 'id')])
4889 ## ndn-face.h (module 'ndnSIM'): void ns3::ndn::Face::SetMetric(uint16_t metric) [member function]
4890 cls.add_method('SetMetric',
4891 'void',
4892 [param('uint16_t', 'metric')],
4893 is_virtual=True)
4894 ## ndn-face.h (module 'ndnSIM'): void ns3::ndn::Face::SetUp(bool up=true) [member function]
4895 cls.add_method('SetUp',
4896 'void',
4897 [param('bool', 'up', default_value='true')],
4898 is_virtual=True)
4899 ## ndn-face.h (module 'ndnSIM'): bool ns3::ndn::Face::SendImpl(ns3::Ptr<ns3::Packet> p) [member function]
4900 cls.add_method('SendImpl',
4901 'bool',
4902 [param('ns3::Ptr< ns3::Packet >', 'p')],
4903 is_pure_virtual=True, visibility='protected', is_virtual=True)
4904 return
4905
4906def register_Ns3NdnFaceContainer_methods(root_module, cls):
4907 ## ndn-face-container.h (module 'ndnSIM'): ns3::ndn::FaceContainer::FaceContainer() [constructor]
4908 cls.add_constructor([])
4909 ## ndn-face-container.h (module 'ndnSIM'): ns3::ndn::FaceContainer::FaceContainer(ns3::ndn::FaceContainer const & other) [copy constructor]
4910 cls.add_constructor([param('ns3::ndn::FaceContainer const &', 'other')])
4911 ## ndn-face-container.h (module 'ndnSIM'): void ns3::ndn::FaceContainer::Add(ns3::Ptr<ns3::ndn::Face> const & face) [member function]
4912 cls.add_method('Add',
4913 'void',
4914 [param('ns3::Ptr< ns3::ndn::Face > const &', 'face')])
4915 ## ndn-face-container.h (module 'ndnSIM'): void ns3::ndn::FaceContainer::AddAll(ns3::Ptr<ns3::ndn::FaceContainer> other) [member function]
4916 cls.add_method('AddAll',
4917 'void',
4918 [param('ns3::Ptr< ns3::ndn::FaceContainer >', 'other')])
4919 ## ndn-face-container.h (module 'ndnSIM'): void ns3::ndn::FaceContainer::AddAll(ns3::ndn::FaceContainer const & other) [member function]
4920 cls.add_method('AddAll',
4921 'void',
4922 [param('ns3::ndn::FaceContainer const &', 'other')])
4923 ## 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]
4924 cls.add_method('Begin',
4925 '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::ndn::Face > const, std::vector< ns3::Ptr< ns3::ndn::Face > > >',
4926 [],
4927 is_const=True)
4928 ## 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]
4929 cls.add_method('End',
4930 '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::ndn::Face > const, std::vector< ns3::Ptr< ns3::ndn::Face > > >',
4931 [],
4932 is_const=True)
4933 ## 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]
4934 cls.add_method('Get',
4935 'ns3::Ptr< ns3::ndn::Face >',
4936 [param('__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::ndn::Face > const, std::vector< ns3::Ptr< ns3::ndn::Face > > >', 'i')],
4937 is_const=True)
4938 ## ndn-face-container.h (module 'ndnSIM'): uint32_t ns3::ndn::FaceContainer::GetN() const [member function]
4939 cls.add_method('GetN',
4940 'uint32_t',
4941 [],
4942 is_const=True)
4943 return
4944
4945def register_Ns3NdnFib_methods(root_module, cls):
4946 cls.add_output_stream_operator()
4947 ## ndn-fib.h (module 'ndnSIM'): ns3::ndn::Fib::Fib() [constructor]
4948 cls.add_constructor([])
4949 ## 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]
4950 cls.add_method('Add',
4951 'ns3::Ptr< ns3::ndn::fib::Entry >',
4952 [param('ns3::ndn::NameComponents const &', 'prefix'), param('ns3::Ptr< ns3::ndn::Face >', 'face'), param('int32_t', 'metric')],
4953 is_pure_virtual=True, is_virtual=True)
4954 ## 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]
4955 cls.add_method('Add',
4956 'ns3::Ptr< ns3::ndn::fib::Entry >',
4957 [param('ns3::Ptr< ns3::ndn::NameComponents const > const &', 'prefix'), param('ns3::Ptr< ns3::ndn::Face >', 'face'), param('int32_t', 'metric')],
4958 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07004959 ## 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 -07004960 cls.add_method('Begin',
4961 'ns3::Ptr< ns3::ndn::fib::Entry const >',
4962 [],
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07004963 is_pure_virtual=True, is_const=True, is_virtual=True)
4964 ## ndn-fib.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::fib::Entry> ns3::ndn::Fib::Begin() [member function]
4965 cls.add_method('Begin',
4966 'ns3::Ptr< ns3::ndn::fib::Entry >',
4967 [],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004968 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07004969 ## 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 -07004970 cls.add_method('End',
4971 'ns3::Ptr< ns3::ndn::fib::Entry const >',
4972 [],
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07004973 is_pure_virtual=True, is_const=True, is_virtual=True)
4974 ## ndn-fib.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::fib::Entry> ns3::ndn::Fib::End() [member function]
4975 cls.add_method('End',
4976 'ns3::Ptr< ns3::ndn::fib::Entry >',
4977 [],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004978 is_pure_virtual=True, is_virtual=True)
4979 ## ndn-fib.h (module 'ndnSIM'): static ns3::Ptr<ns3::ndn::Fib> ns3::ndn::Fib::GetFib(ns3::Ptr<ns3::Object> node) [member function]
4980 cls.add_method('GetFib',
4981 'ns3::Ptr< ns3::ndn::Fib >',
4982 [param('ns3::Ptr< ns3::Object >', 'node')],
4983 is_static=True)
4984 ## ndn-fib.h (module 'ndnSIM'): uint32_t ns3::ndn::Fib::GetSize() const [member function]
4985 cls.add_method('GetSize',
4986 'uint32_t',
4987 [],
4988 is_pure_virtual=True, is_const=True, is_virtual=True)
4989 ## ndn-fib.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::Fib::GetTypeId() [member function]
4990 cls.add_method('GetTypeId',
4991 'ns3::TypeId',
4992 [],
4993 is_static=True)
4994 ## ndn-fib.h (module 'ndnSIM'): void ns3::ndn::Fib::InvalidateAll() [member function]
4995 cls.add_method('InvalidateAll',
4996 'void',
4997 [],
4998 is_pure_virtual=True, is_virtual=True)
4999 ## ndn-fib.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::fib::Entry> ns3::ndn::Fib::LongestPrefixMatch(ns3::ndn::InterestHeader const & interest) [member function]
5000 cls.add_method('LongestPrefixMatch',
5001 'ns3::Ptr< ns3::ndn::fib::Entry >',
5002 [param('ns3::ndn::InterestHeader const &', 'interest')],
5003 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005004 ## 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 -07005005 cls.add_method('Next',
5006 'ns3::Ptr< ns3::ndn::fib::Entry const >',
5007 [param('ns3::Ptr< ns3::ndn::fib::Entry const >', 'arg0')],
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005008 is_pure_virtual=True, is_const=True, is_virtual=True)
5009 ## ndn-fib.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::fib::Entry> ns3::ndn::Fib::Next(ns3::Ptr<ns3::ndn::fib::Entry> arg0) [member function]
5010 cls.add_method('Next',
5011 'ns3::Ptr< ns3::ndn::fib::Entry >',
5012 [param('ns3::Ptr< ns3::ndn::fib::Entry >', 'arg0')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005013 is_pure_virtual=True, is_virtual=True)
5014 ## ndn-fib.h (module 'ndnSIM'): void ns3::ndn::Fib::Print(std::ostream & os) const [member function]
5015 cls.add_method('Print',
5016 'void',
5017 [param('std::ostream &', 'os')],
5018 is_pure_virtual=True, is_const=True, is_virtual=True)
5019 ## ndn-fib.h (module 'ndnSIM'): void ns3::ndn::Fib::Remove(ns3::Ptr<ns3::ndn::NameComponents const> const & prefix) [member function]
5020 cls.add_method('Remove',
5021 'void',
5022 [param('ns3::Ptr< ns3::ndn::NameComponents const > const &', 'prefix')],
5023 is_pure_virtual=True, is_virtual=True)
5024 ## ndn-fib.h (module 'ndnSIM'): void ns3::ndn::Fib::RemoveFromAll(ns3::Ptr<ns3::ndn::Face> face) [member function]
5025 cls.add_method('RemoveFromAll',
5026 'void',
5027 [param('ns3::Ptr< ns3::ndn::Face >', 'face')],
5028 is_pure_virtual=True, is_virtual=True)
5029 return
5030
5031def register_Ns3NdnForwardingStrategy_methods(root_module, cls):
5032 ## ndn-forwarding-strategy.h (module 'ndnSIM'): ns3::ndn::ForwardingStrategy::ForwardingStrategy(ns3::ndn::ForwardingStrategy const & arg0) [copy constructor]
5033 cls.add_constructor([param('ns3::ndn::ForwardingStrategy const &', 'arg0')])
5034 ## ndn-forwarding-strategy.h (module 'ndnSIM'): ns3::ndn::ForwardingStrategy::ForwardingStrategy() [constructor]
5035 cls.add_constructor([])
Alexander Afanasyevf5c07742012-10-31 13:13:05 -07005036 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::AddFace(ns3::Ptr<ns3::ndn::Face> face) [member function]
5037 cls.add_method('AddFace',
5038 'void',
5039 [param('ns3::Ptr< ns3::ndn::Face >', 'face')],
5040 is_virtual=True)
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08005041 ## ndn-forwarding-strategy.h (module 'ndnSIM'): static std::string ns3::ndn::ForwardingStrategy::GetLogName() [member function]
5042 cls.add_method('GetLogName',
5043 'std::string',
5044 [],
5045 is_static=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005046 ## ndn-forwarding-strategy.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::ForwardingStrategy::GetTypeId() [member function]
5047 cls.add_method('GetTypeId',
5048 'ns3::TypeId',
5049 [],
5050 is_static=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005051 ## 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 -07005052 cls.add_method('OnData',
5053 'void',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005054 [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 -07005055 is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005056 ## 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 -07005057 cls.add_method('OnInterest',
5058 'void',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005059 [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 -07005060 is_virtual=True)
5061 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::RemoveFace(ns3::Ptr<ns3::ndn::Face> face) [member function]
5062 cls.add_method('RemoveFace',
5063 'void',
5064 [param('ns3::Ptr< ns3::ndn::Face >', 'face')],
5065 is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005066 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::WillEraseTimedOutPendingInterest(ns3::Ptr<ns3::ndn::pit::Entry> pitEntry) [member function]
5067 cls.add_method('WillEraseTimedOutPendingInterest',
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005068 'void',
5069 [param('ns3::Ptr< ns3::ndn::pit::Entry >', 'pitEntry')],
5070 is_virtual=True)
Alexander Afanasyeva8f5d882012-11-09 14:22:48 -08005071 ## 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]
5072 cls.add_method('CanSendOutInterest',
5073 'bool',
5074 [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')],
5075 visibility='protected', is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005076 ## 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 -07005077 cls.add_method('DetectRetransmittedInterest',
5078 'bool',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005079 [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 -07005080 visibility='protected', is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005081 ## 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 -07005082 cls.add_method('DidCreatePitEntry',
5083 'void',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005084 [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 -07005085 visibility='protected', is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005086 ## 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 -07005087 cls.add_method('DidExhaustForwardingOptions',
5088 'void',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005089 [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 -07005090 visibility='protected', is_virtual=True)
Alexander Afanasyeva28ec562012-10-25 14:07:32 -07005091 ## 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]
5092 cls.add_method('DidForwardSimilarInterest',
5093 'void',
5094 [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')],
5095 visibility='protected', is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005096 ## 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 -07005097 cls.add_method('DidReceiveDuplicateInterest',
5098 'void',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005099 [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 -07005100 visibility='protected', is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005101 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::DidReceiveUnsolicitedData(ns3::Ptr<ns3::ndn::Face> inFace, ns3::Ptr<ns3::ndn::ContentObjectHeader const> header, ns3::Ptr<const ns3::Packet> payload, ns3::Ptr<const ns3::Packet> origPacket) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005102 cls.add_method('DidReceiveUnsolicitedData',
5103 'void',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005104 [param('ns3::Ptr< ns3::ndn::Face >', 'inFace'), param('ns3::Ptr< ns3::ndn::ContentObjectHeader const >', 'header'), param('ns3::Ptr< ns3::Packet const >', 'payload'), param('ns3::Ptr< ns3::Packet const >', 'origPacket')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005105 visibility='protected', is_virtual=True)
Alexander Afanasyev67f4a4a2012-11-24 17:18:17 -08005106 ## 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 -07005107 cls.add_method('DidSendOutData',
5108 'void',
Alexander Afanasyev67f4a4a2012-11-24 17:18:17 -08005109 [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 -07005110 visibility='protected', is_virtual=True)
Alexander Afanasyev67f4a4a2012-11-24 17:18:17 -08005111 ## 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 -07005112 cls.add_method('DidSendOutInterest',
5113 'void',
Alexander Afanasyev67f4a4a2012-11-24 17:18:17 -08005114 [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 -07005115 visibility='protected', is_virtual=True)
Alexander Afanasyeva28ec562012-10-25 14:07:32 -07005116 ## 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]
5117 cls.add_method('DidSuppressSimilarInterest',
5118 'void',
5119 [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')],
5120 visibility='protected', is_virtual=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005121 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::DoDispose() [member function]
5122 cls.add_method('DoDispose',
5123 'void',
5124 [],
5125 visibility='protected', is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005126 ## 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 -07005127 cls.add_method('DoPropagateInterest',
5128 'bool',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005129 [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 -07005130 is_pure_virtual=True, visibility='protected', is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005131 ## 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 -07005132 cls.add_method('FailedToCreatePitEntry',
5133 'void',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005134 [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 -07005135 visibility='protected', is_virtual=True)
5136 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::NotifyNewAggregate() [member function]
5137 cls.add_method('NotifyNewAggregate',
5138 'void',
5139 [],
5140 visibility='protected', is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005141 ## 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 -07005142 cls.add_method('PropagateInterest',
5143 'void',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005144 [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 -07005145 visibility='protected', is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005146 ## 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 -07005147 cls.add_method('SatisfyPendingInterest',
5148 'void',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005149 [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 -07005150 visibility='protected', is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005151 ## 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 -07005152 cls.add_method('ShouldSuppressIncomingInterest',
5153 'bool',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005154 [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 -07005155 visibility='protected', is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005156 ## 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]
5157 cls.add_method('TrySendOutInterest',
5158 'bool',
5159 [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')],
5160 visibility='protected', is_virtual=True)
5161 ## 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 -07005162 cls.add_method('WillSatisfyPendingInterest',
5163 'void',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005164 [param('ns3::Ptr< ns3::ndn::Face >', 'inFace'), param('ns3::Ptr< ns3::ndn::pit::Entry >', 'pitEntry')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005165 visibility='protected', is_virtual=True)
5166 return
5167
5168def register_Ns3NdnGlobalRoutingHelper_methods(root_module, cls):
5169 ## ndn-global-routing-helper.h (module 'ndnSIM'): ns3::ndn::GlobalRoutingHelper::GlobalRoutingHelper() [constructor]
5170 cls.add_constructor([])
5171 ## ndn-global-routing-helper.h (module 'ndnSIM'): ns3::ndn::GlobalRoutingHelper::GlobalRoutingHelper(ns3::ndn::GlobalRoutingHelper const & arg0) [copy constructor]
5172 cls.add_constructor([param('ns3::ndn::GlobalRoutingHelper const &', 'arg0')])
5173 ## ndn-global-routing-helper.h (module 'ndnSIM'): void ns3::ndn::GlobalRoutingHelper::AddOrigin(std::string const & prefix, ns3::Ptr<ns3::Node> node) [member function]
5174 cls.add_method('AddOrigin',
5175 'void',
5176 [param('std::string const &', 'prefix'), param('ns3::Ptr< ns3::Node >', 'node')])
5177 ## ndn-global-routing-helper.h (module 'ndnSIM'): void ns3::ndn::GlobalRoutingHelper::AddOrigin(std::string const & prefix, std::string const & nodeName) [member function]
5178 cls.add_method('AddOrigin',
5179 'void',
5180 [param('std::string const &', 'prefix'), param('std::string const &', 'nodeName')])
5181 ## ndn-global-routing-helper.h (module 'ndnSIM'): void ns3::ndn::GlobalRoutingHelper::AddOrigins(std::string const & prefix, ns3::NodeContainer const & nodes) [member function]
5182 cls.add_method('AddOrigins',
5183 'void',
5184 [param('std::string const &', 'prefix'), param('ns3::NodeContainer const &', 'nodes')])
5185 ## ndn-global-routing-helper.h (module 'ndnSIM'): void ns3::ndn::GlobalRoutingHelper::CalculateRoutes() [member function]
5186 cls.add_method('CalculateRoutes',
5187 'void',
5188 [])
5189 ## ndn-global-routing-helper.h (module 'ndnSIM'): void ns3::ndn::GlobalRoutingHelper::Install(ns3::Ptr<ns3::Node> node) [member function]
5190 cls.add_method('Install',
5191 'void',
5192 [param('ns3::Ptr< ns3::Node >', 'node')])
5193 ## ndn-global-routing-helper.h (module 'ndnSIM'): void ns3::ndn::GlobalRoutingHelper::Install(ns3::NodeContainer const & nodes) [member function]
5194 cls.add_method('Install',
5195 'void',
5196 [param('ns3::NodeContainer const &', 'nodes')])
5197 ## ndn-global-routing-helper.h (module 'ndnSIM'): void ns3::ndn::GlobalRoutingHelper::InstallAll() [member function]
5198 cls.add_method('InstallAll',
5199 'void',
5200 [])
5201 return
5202
5203def register_Ns3NdnHeaderHelper_methods(root_module, cls):
5204 ## ndn-header-helper.h (module 'ndnSIM'): ns3::ndn::HeaderHelper::HeaderHelper() [constructor]
5205 cls.add_constructor([])
5206 ## ndn-header-helper.h (module 'ndnSIM'): ns3::ndn::HeaderHelper::HeaderHelper(ns3::ndn::HeaderHelper const & arg0) [copy constructor]
5207 cls.add_constructor([param('ns3::ndn::HeaderHelper const &', 'arg0')])
5208 ## ndn-header-helper.h (module 'ndnSIM'): static ns3::ndn::HeaderHelper::Type ns3::ndn::HeaderHelper::GetNdnHeaderType(ns3::Ptr<const ns3::Packet> packet) [member function]
5209 cls.add_method('GetNdnHeaderType',
5210 'ns3::ndn::HeaderHelper::Type',
5211 [param('ns3::Ptr< ns3::Packet const >', 'packet')],
5212 is_static=True)
5213 return
5214
5215def register_Ns3NdnInterestHeader_methods(root_module, cls):
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08005216 ## ndn-interest.h (module 'ndnSIM'): ns3::ndn::InterestHeader::InterestHeader() [constructor]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005217 cls.add_constructor([])
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08005218 ## ndn-interest.h (module 'ndnSIM'): ns3::ndn::InterestHeader::InterestHeader(ns3::ndn::InterestHeader const & interest) [copy constructor]
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005219 cls.add_constructor([param('ns3::ndn::InterestHeader const &', 'interest')])
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08005220 ## ndn-interest.h (module 'ndnSIM'): uint32_t ns3::ndn::InterestHeader::Deserialize(ns3::Buffer::Iterator start) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005221 cls.add_method('Deserialize',
5222 'uint32_t',
5223 [param('ns3::Buffer::Iterator', 'start')],
5224 is_virtual=True)
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08005225 ## ndn-interest.h (module 'ndnSIM'): ns3::TypeId ns3::ndn::InterestHeader::GetInstanceTypeId() const [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005226 cls.add_method('GetInstanceTypeId',
5227 'ns3::TypeId',
5228 [],
5229 is_const=True, is_virtual=True)
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08005230 ## 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 -07005231 cls.add_method('GetInterest',
5232 'ns3::Ptr< ns3::ndn::InterestHeader >',
5233 [param('ns3::Ptr< ns3::Packet >', 'packet')],
5234 is_static=True)
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08005235 ## ndn-interest.h (module 'ndnSIM'): ns3::Time ns3::ndn::InterestHeader::GetInterestLifetime() const [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005236 cls.add_method('GetInterestLifetime',
5237 'ns3::Time',
5238 [],
5239 is_const=True)
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08005240 ## ndn-interest.h (module 'ndnSIM'): uint8_t ns3::ndn::InterestHeader::GetNack() const [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005241 cls.add_method('GetNack',
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08005242 'uint8_t',
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005243 [],
5244 is_const=True)
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08005245 ## ndn-interest.h (module 'ndnSIM'): ns3::ndn::NameComponents const & ns3::ndn::InterestHeader::GetName() const [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005246 cls.add_method('GetName',
5247 'ns3::ndn::NameComponents const &',
5248 [],
5249 is_const=True)
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08005250 ## 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 -07005251 cls.add_method('GetNamePtr',
5252 'ns3::Ptr< ns3::ndn::NameComponents const >',
5253 [],
5254 is_const=True)
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08005255 ## ndn-interest.h (module 'ndnSIM'): uint32_t ns3::ndn::InterestHeader::GetNonce() const [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005256 cls.add_method('GetNonce',
5257 'uint32_t',
5258 [],
5259 is_const=True)
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08005260 ## ndn-interest.h (module 'ndnSIM'): int8_t ns3::ndn::InterestHeader::GetScope() const [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005261 cls.add_method('GetScope',
5262 'int8_t',
5263 [],
5264 is_const=True)
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08005265 ## ndn-interest.h (module 'ndnSIM'): uint32_t ns3::ndn::InterestHeader::GetSerializedSize() const [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005266 cls.add_method('GetSerializedSize',
5267 'uint32_t',
5268 [],
5269 is_const=True, is_virtual=True)
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08005270 ## ndn-interest.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::InterestHeader::GetTypeId() [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005271 cls.add_method('GetTypeId',
5272 'ns3::TypeId',
5273 [],
5274 is_static=True)
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08005275 ## ndn-interest.h (module 'ndnSIM'): void ns3::ndn::InterestHeader::Print(std::ostream & os) const [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005276 cls.add_method('Print',
5277 'void',
5278 [param('std::ostream &', 'os')],
5279 is_const=True, is_virtual=True)
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08005280 ## ndn-interest.h (module 'ndnSIM'): void ns3::ndn::InterestHeader::Serialize(ns3::Buffer::Iterator start) const [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005281 cls.add_method('Serialize',
5282 'void',
5283 [param('ns3::Buffer::Iterator', 'start')],
5284 is_const=True, is_virtual=True)
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08005285 ## ndn-interest.h (module 'ndnSIM'): void ns3::ndn::InterestHeader::SetInterestLifetime(ns3::Time time) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005286 cls.add_method('SetInterestLifetime',
5287 'void',
5288 [param('ns3::Time', 'time')])
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08005289 ## ndn-interest.h (module 'ndnSIM'): void ns3::ndn::InterestHeader::SetNack(uint8_t nackType) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005290 cls.add_method('SetNack',
5291 'void',
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08005292 [param('uint8_t', 'nackType')])
5293 ## 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 -07005294 cls.add_method('SetName',
5295 'void',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005296 [param('ns3::Ptr< ns3::ndn::NameComponents >', 'name')])
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08005297 ## ndn-interest.h (module 'ndnSIM'): void ns3::ndn::InterestHeader::SetNonce(uint32_t nonce) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005298 cls.add_method('SetNonce',
5299 'void',
5300 [param('uint32_t', 'nonce')])
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08005301 ## ndn-interest.h (module 'ndnSIM'): void ns3::ndn::InterestHeader::SetScope(int8_t scope) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005302 cls.add_method('SetScope',
5303 'void',
5304 [param('int8_t', 'scope')])
5305 return
5306
5307def register_Ns3NdnInterestHeaderException_methods(root_module, cls):
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08005308 ## ndn-interest.h (module 'ndnSIM'): ns3::ndn::InterestHeaderException::InterestHeaderException() [constructor]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005309 cls.add_constructor([])
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08005310 ## ndn-interest.h (module 'ndnSIM'): ns3::ndn::InterestHeaderException::InterestHeaderException(ns3::ndn::InterestHeaderException const & arg0) [copy constructor]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005311 cls.add_constructor([param('ns3::ndn::InterestHeaderException const &', 'arg0')])
5312 return
5313
5314def register_Ns3NdnL3Protocol_methods(root_module, cls):
5315 ## ndn-l3-protocol.h (module 'ndnSIM'): ns3::ndn::L3Protocol::ETHERNET_FRAME_TYPE [variable]
5316 cls.add_static_attribute('ETHERNET_FRAME_TYPE', 'uint16_t const', is_const=True)
5317 ## ndn-l3-protocol.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::L3Protocol::GetTypeId() [member function]
5318 cls.add_method('GetTypeId',
5319 'ns3::TypeId',
5320 [],
5321 is_static=True)
5322 ## ndn-l3-protocol.h (module 'ndnSIM'): ns3::ndn::L3Protocol::L3Protocol() [constructor]
5323 cls.add_constructor([])
5324 ## ndn-l3-protocol.h (module 'ndnSIM'): uint32_t ns3::ndn::L3Protocol::AddFace(ns3::Ptr<ns3::ndn::Face> const & face) [member function]
5325 cls.add_method('AddFace',
5326 'uint32_t',
5327 [param('ns3::Ptr< ns3::ndn::Face > const &', 'face')],
5328 is_virtual=True)
5329 ## ndn-l3-protocol.h (module 'ndnSIM'): uint32_t ns3::ndn::L3Protocol::GetNFaces() const [member function]
5330 cls.add_method('GetNFaces',
5331 'uint32_t',
5332 [],
5333 is_const=True, is_virtual=True)
5334 ## ndn-l3-protocol.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::Face> ns3::ndn::L3Protocol::GetFace(uint32_t face) const [member function]
5335 cls.add_method('GetFace',
5336 'ns3::Ptr< ns3::ndn::Face >',
5337 [param('uint32_t', 'face')],
5338 is_const=True, is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005339 ## ndn-l3-protocol.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::Face> ns3::ndn::L3Protocol::GetFaceById(uint32_t face) const [member function]
5340 cls.add_method('GetFaceById',
5341 'ns3::Ptr< ns3::ndn::Face >',
5342 [param('uint32_t', 'face')],
5343 is_const=True, is_virtual=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005344 ## ndn-l3-protocol.h (module 'ndnSIM'): void ns3::ndn::L3Protocol::RemoveFace(ns3::Ptr<ns3::ndn::Face> face) [member function]
5345 cls.add_method('RemoveFace',
5346 'void',
5347 [param('ns3::Ptr< ns3::ndn::Face >', 'face')],
5348 is_virtual=True)
5349 ## ndn-l3-protocol.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::Face> ns3::ndn::L3Protocol::GetFaceByNetDevice(ns3::Ptr<ns3::NetDevice> netDevice) const [member function]
5350 cls.add_method('GetFaceByNetDevice',
5351 'ns3::Ptr< ns3::ndn::Face >',
5352 [param('ns3::Ptr< ns3::NetDevice >', 'netDevice')],
5353 is_const=True, is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005354 ## ndn-l3-protocol.h (module 'ndnSIM'): static uint64_t ns3::ndn::L3Protocol::GetInterestCounter() [member function]
5355 cls.add_method('GetInterestCounter',
5356 'uint64_t',
5357 [],
5358 is_static=True)
5359 ## ndn-l3-protocol.h (module 'ndnSIM'): static uint64_t ns3::ndn::L3Protocol::GetDataCounter() [member function]
5360 cls.add_method('GetDataCounter',
5361 'uint64_t',
5362 [],
5363 is_static=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005364 ## ndn-l3-protocol.h (module 'ndnSIM'): void ns3::ndn::L3Protocol::DoDispose() [member function]
5365 cls.add_method('DoDispose',
5366 'void',
5367 [],
5368 visibility='protected', is_virtual=True)
5369 ## ndn-l3-protocol.h (module 'ndnSIM'): void ns3::ndn::L3Protocol::NotifyNewAggregate() [member function]
5370 cls.add_method('NotifyNewAggregate',
5371 'void',
5372 [],
5373 visibility='protected', is_virtual=True)
5374 return
5375
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005376def register_Ns3NdnLimits_methods(root_module, cls):
5377 ## ndn-limits.h (module 'ndnSIM'): ns3::ndn::Limits::Limits(ns3::ndn::Limits const & arg0) [copy constructor]
5378 cls.add_constructor([param('ns3::ndn::Limits const &', 'arg0')])
5379 ## ndn-limits.h (module 'ndnSIM'): ns3::ndn::Limits::Limits() [constructor]
5380 cls.add_constructor([])
Alexander Afanasyev7e4235a2012-10-31 16:58:44 -07005381 ## ndn-limits.h (module 'ndnSIM'): void ns3::ndn::Limits::BorrowLimit() [member function]
5382 cls.add_method('BorrowLimit',
5383 'void',
5384 [],
5385 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyevf5c07742012-10-31 13:13:05 -07005386 ## ndn-limits.h (module 'ndnSIM'): double ns3::ndn::Limits::GetCurrentLimit() const [member function]
5387 cls.add_method('GetCurrentLimit',
5388 'double',
5389 [],
Alexander Afanasyev7e4235a2012-10-31 16:58:44 -07005390 is_pure_virtual=True, is_const=True, is_virtual=True)
Alexander Afanasyeva8f5d882012-11-09 14:22:48 -08005391 ## ndn-limits.h (module 'ndnSIM'): double ns3::ndn::Limits::GetCurrentLimitRate() const [member function]
5392 cls.add_method('GetCurrentLimitRate',
5393 'double',
5394 [],
5395 is_pure_virtual=True, is_const=True, is_virtual=True)
5396 ## ndn-limits.h (module 'ndnSIM'): double ns3::ndn::Limits::GetLinkDelay() const [member function]
5397 cls.add_method('GetLinkDelay',
5398 'double',
5399 [],
5400 is_const=True, is_virtual=True)
Alexander Afanasyev7e4235a2012-10-31 16:58:44 -07005401 ## ndn-limits.h (module 'ndnSIM'): double ns3::ndn::Limits::GetMaxDelay() const [member function]
5402 cls.add_method('GetMaxDelay',
5403 'double',
5404 [],
5405 is_const=True, is_virtual=True)
Alexander Afanasyeva8f5d882012-11-09 14:22:48 -08005406 ## ndn-limits.h (module 'ndnSIM'): double ns3::ndn::Limits::GetMaxLimit() const [member function]
5407 cls.add_method('GetMaxLimit',
5408 'double',
5409 [],
5410 is_pure_virtual=True, is_const=True, is_virtual=True)
Alexander Afanasyev7e4235a2012-10-31 16:58:44 -07005411 ## ndn-limits.h (module 'ndnSIM'): double ns3::ndn::Limits::GetMaxRate() const [member function]
5412 cls.add_method('GetMaxRate',
Alexander Afanasyeva28ec562012-10-25 14:07:32 -07005413 'double',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005414 [],
Alexander Afanasyevf5c07742012-10-31 13:13:05 -07005415 is_const=True, is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005416 ## ndn-limits.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::Limits::GetTypeId() [member function]
5417 cls.add_method('GetTypeId',
5418 'ns3::TypeId',
5419 [],
5420 is_static=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005421 ## ndn-limits.h (module 'ndnSIM'): bool ns3::ndn::Limits::IsBelowLimit() [member function]
5422 cls.add_method('IsBelowLimit',
5423 'bool',
Alexander Afanasyevf5c07742012-10-31 13:13:05 -07005424 [],
5425 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005426 ## ndn-limits.h (module 'ndnSIM'): bool ns3::ndn::Limits::IsEnabled() const [member function]
5427 cls.add_method('IsEnabled',
5428 'bool',
5429 [],
Alexander Afanasyevf5c07742012-10-31 13:13:05 -07005430 is_const=True, is_virtual=True)
Alexander Afanasyeva8f5d882012-11-09 14:22:48 -08005431 ## 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]
5432 cls.add_method('RegisterAvailableSlotCallback',
5433 'void',
5434 [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 -07005435 ## ndn-limits.h (module 'ndnSIM'): void ns3::ndn::Limits::ReturnLimit() [member function]
5436 cls.add_method('ReturnLimit',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005437 'void',
Alexander Afanasyev7e4235a2012-10-31 16:58:44 -07005438 [],
5439 is_pure_virtual=True, is_virtual=True)
5440 ## ndn-limits.h (module 'ndnSIM'): void ns3::ndn::Limits::SetLimits(double rate, double delay) [member function]
5441 cls.add_method('SetLimits',
5442 'void',
5443 [param('double', 'rate'), param('double', 'delay')],
Alexander Afanasyevf5c07742012-10-31 13:13:05 -07005444 is_virtual=True)
Alexander Afanasyeva8f5d882012-11-09 14:22:48 -08005445 ## ndn-limits.h (module 'ndnSIM'): void ns3::ndn::Limits::SetLinkDelay(double delay) [member function]
5446 cls.add_method('SetLinkDelay',
5447 'void',
5448 [param('double', 'delay')],
5449 is_virtual=True)
Alexander Afanasyeva28ec562012-10-25 14:07:32 -07005450 ## ndn-limits.h (module 'ndnSIM'): void ns3::ndn::Limits::UpdateCurrentLimit(double limit) [member function]
5451 cls.add_method('UpdateCurrentLimit',
5452 'void',
Alexander Afanasyev7e4235a2012-10-31 16:58:44 -07005453 [param('double', 'limit')],
5454 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyeva8f5d882012-11-09 14:22:48 -08005455 ## ndn-limits.h (module 'ndnSIM'): void ns3::ndn::Limits::FireAvailableSlotCallback() [member function]
5456 cls.add_method('FireAvailableSlotCallback',
5457 'void',
5458 [],
5459 visibility='protected')
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005460 return
5461
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005462def register_Ns3NdnNameComponents_methods(root_module, cls):
5463 cls.add_output_stream_operator()
5464 cls.add_binary_comparison_operator('<')
5465 cls.add_binary_comparison_operator('==')
5466 ## ndn-name-components.h (module 'ndnSIM'): ns3::ndn::NameComponents::NameComponents(ns3::ndn::NameComponents const & arg0) [copy constructor]
5467 cls.add_constructor([param('ns3::ndn::NameComponents const &', 'arg0')])
5468 ## ndn-name-components.h (module 'ndnSIM'): ns3::ndn::NameComponents::NameComponents() [constructor]
5469 cls.add_constructor([])
5470 ## ndn-name-components.h (module 'ndnSIM'): ns3::ndn::NameComponents::NameComponents(std::list<boost::reference_wrapper<const std::basic_string<char, std::char_traits<char>, std::allocator<char> > >,std::allocator<boost::reference_wrapper<const std::basic_string<char, std::char_traits<char>, std::allocator<char> > > > > const & components) [constructor]
5471 cls.add_constructor([param('std::list< boost::reference_wrapper< std::string const > > const &', 'components')])
5472 ## ndn-name-components.h (module 'ndnSIM'): ns3::ndn::NameComponents::NameComponents(std::string const & prefix) [constructor]
5473 cls.add_constructor([param('std::string const &', 'prefix')])
5474 ## ndn-name-components.h (module 'ndnSIM'): ns3::ndn::NameComponents::NameComponents(char const * prefix) [constructor]
5475 cls.add_constructor([param('char const *', 'prefix')])
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08005476 ## ndn-name-components.h (module 'ndnSIM'): uint32_t ns3::ndn::NameComponents::Deserialize(ns3::Buffer::Iterator start) [member function]
5477 cls.add_method('Deserialize',
5478 'uint32_t',
5479 [param('ns3::Buffer::Iterator', 'start')])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005480 ## ndn-name-components.h (module 'ndnSIM'): std::list<std::string, std::allocator<std::string> > const & ns3::ndn::NameComponents::GetComponents() const [member function]
5481 cls.add_method('GetComponents',
5482 'std::list< std::string > const &',
5483 [],
5484 is_const=True)
5485 ## ndn-name-components.h (module 'ndnSIM'): std::string ns3::ndn::NameComponents::GetLastComponent() const [member function]
5486 cls.add_method('GetLastComponent',
5487 'std::string',
5488 [],
5489 is_const=True)
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08005490 ## ndn-name-components.h (module 'ndnSIM'): size_t ns3::ndn::NameComponents::GetSerializedSize() const [member function]
5491 cls.add_method('GetSerializedSize',
5492 'size_t',
5493 [],
5494 is_const=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005495 ## ndn-name-components.h (module 'ndnSIM'): std::list<boost::reference_wrapper<const std::basic_string<char, std::char_traits<char>, std::allocator<char> > >,std::allocator<boost::reference_wrapper<const std::basic_string<char, std::char_traits<char>, std::allocator<char> > > > > ns3::ndn::NameComponents::GetSubComponents(size_t num) const [member function]
5496 cls.add_method('GetSubComponents',
5497 'std::list< boost::reference_wrapper< std::string const > >',
5498 [param('size_t', 'num')],
5499 is_const=True)
5500 ## ndn-name-components.h (module 'ndnSIM'): void ns3::ndn::NameComponents::Print(std::ostream & os) const [member function]
5501 cls.add_method('Print',
5502 'void',
5503 [param('std::ostream &', 'os')],
5504 is_const=True)
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08005505 ## ndn-name-components.h (module 'ndnSIM'): uint32_t ns3::ndn::NameComponents::Serialize(ns3::Buffer::Iterator start) const [member function]
5506 cls.add_method('Serialize',
5507 'uint32_t',
5508 [param('ns3::Buffer::Iterator', 'start')],
5509 is_const=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005510 ## ndn-name-components.h (module 'ndnSIM'): std::_List_iterator<std::string> ns3::ndn::NameComponents::begin() [member function]
5511 cls.add_method('begin',
5512 'std::_List_iterator< std::string >',
5513 [])
5514 ## ndn-name-components.h (module 'ndnSIM'): std::_List_const_iterator<std::string> ns3::ndn::NameComponents::begin() const [member function]
5515 cls.add_method('begin',
5516 'std::_List_const_iterator< std::string >',
5517 [],
5518 is_const=True)
5519 ## ndn-name-components.h (module 'ndnSIM'): ns3::ndn::NameComponents ns3::ndn::NameComponents::cut(size_t minusComponents) const [member function]
5520 cls.add_method('cut',
5521 'ns3::ndn::NameComponents',
5522 [param('size_t', 'minusComponents')],
5523 is_const=True)
5524 ## ndn-name-components.h (module 'ndnSIM'): std::_List_iterator<std::string> ns3::ndn::NameComponents::end() [member function]
5525 cls.add_method('end',
5526 'std::_List_iterator< std::string >',
5527 [])
5528 ## ndn-name-components.h (module 'ndnSIM'): std::_List_const_iterator<std::string> ns3::ndn::NameComponents::end() const [member function]
5529 cls.add_method('end',
5530 'std::_List_const_iterator< std::string >',
5531 [],
5532 is_const=True)
5533 ## ndn-name-components.h (module 'ndnSIM'): size_t ns3::ndn::NameComponents::size() const [member function]
5534 cls.add_method('size',
5535 'size_t',
5536 [],
5537 is_const=True)
5538 return
5539
5540def register_Ns3NdnNameComponentsChecker_methods(root_module, cls):
5541 ## ndn-name-components.h (module 'ndnSIM'): ns3::ndn::NameComponentsChecker::NameComponentsChecker() [constructor]
5542 cls.add_constructor([])
5543 ## ndn-name-components.h (module 'ndnSIM'): ns3::ndn::NameComponentsChecker::NameComponentsChecker(ns3::ndn::NameComponentsChecker const & arg0) [copy constructor]
5544 cls.add_constructor([param('ns3::ndn::NameComponentsChecker const &', 'arg0')])
5545 return
5546
5547def register_Ns3NdnNameComponentsValue_methods(root_module, cls):
5548 ## ndn-name-components.h (module 'ndnSIM'): ns3::ndn::NameComponentsValue::NameComponentsValue() [constructor]
5549 cls.add_constructor([])
5550 ## ndn-name-components.h (module 'ndnSIM'): ns3::ndn::NameComponentsValue::NameComponentsValue(ns3::ndn::NameComponentsValue const & arg0) [copy constructor]
5551 cls.add_constructor([param('ns3::ndn::NameComponentsValue const &', 'arg0')])
5552 ## ndn-name-components.h (module 'ndnSIM'): ns3::ndn::NameComponentsValue::NameComponentsValue(ns3::ndn::NameComponents const & value) [constructor]
5553 cls.add_constructor([param('ns3::ndn::NameComponents const &', 'value')])
5554 ## ndn-name-components.h (module 'ndnSIM'): ns3::Ptr<ns3::AttributeValue> ns3::ndn::NameComponentsValue::Copy() const [member function]
5555 cls.add_method('Copy',
5556 'ns3::Ptr< ns3::AttributeValue >',
5557 [],
5558 is_const=True, is_virtual=True)
5559 ## ndn-name-components.h (module 'ndnSIM'): bool ns3::ndn::NameComponentsValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
5560 cls.add_method('DeserializeFromString',
5561 'bool',
5562 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
5563 is_virtual=True)
5564 ## ndn-name-components.h (module 'ndnSIM'): ns3::ndn::NameComponents ns3::ndn::NameComponentsValue::Get() const [member function]
5565 cls.add_method('Get',
5566 'ns3::ndn::NameComponents',
5567 [],
5568 is_const=True)
5569 ## ndn-name-components.h (module 'ndnSIM'): std::string ns3::ndn::NameComponentsValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
5570 cls.add_method('SerializeToString',
5571 'std::string',
5572 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
5573 is_const=True, is_virtual=True)
5574 ## ndn-name-components.h (module 'ndnSIM'): void ns3::ndn::NameComponentsValue::Set(ns3::ndn::NameComponents const & value) [member function]
5575 cls.add_method('Set',
5576 'void',
5577 [param('ns3::ndn::NameComponents const &', 'value')])
5578 return
5579
5580def register_Ns3NdnNetDeviceFace_methods(root_module, cls):
5581 ## ndn-net-device-face.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::NetDeviceFace::GetTypeId() [member function]
5582 cls.add_method('GetTypeId',
5583 'ns3::TypeId',
5584 [],
5585 is_static=True)
5586 ## ndn-net-device-face.h (module 'ndnSIM'): ns3::ndn::NetDeviceFace::NetDeviceFace(ns3::Ptr<ns3::Node> node, ns3::Ptr<ns3::NetDevice> const & netDevice) [constructor]
5587 cls.add_constructor([param('ns3::Ptr< ns3::Node >', 'node'), param('ns3::Ptr< ns3::NetDevice > const &', 'netDevice')])
5588 ## 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]
5589 cls.add_method('RegisterProtocolHandler',
5590 'void',
5591 [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')],
5592 is_virtual=True)
5593 ## ndn-net-device-face.h (module 'ndnSIM'): std::ostream & ns3::ndn::NetDeviceFace::Print(std::ostream & os) const [member function]
5594 cls.add_method('Print',
5595 'std::ostream &',
5596 [param('std::ostream &', 'os')],
5597 is_const=True, is_virtual=True)
5598 ## ndn-net-device-face.h (module 'ndnSIM'): ns3::Ptr<ns3::NetDevice> ns3::ndn::NetDeviceFace::GetNetDevice() const [member function]
5599 cls.add_method('GetNetDevice',
5600 'ns3::Ptr< ns3::NetDevice >',
5601 [],
5602 is_const=True)
5603 ## 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 -07005604 cls.add_method('SendImpl',
Alexander Afanasyev1c0248b2012-07-24 15:59:50 -07005605 'bool',
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07005606 [param('ns3::Ptr< ns3::Packet >', 'p')],
5607 visibility='protected', is_virtual=True)
5608 return
5609
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005610def register_Ns3NdnPit_methods(root_module, cls):
5611 cls.add_output_stream_operator()
5612 ## ndn-pit.h (module 'ndnSIM'): ns3::ndn::Pit::Pit(ns3::ndn::Pit const & arg0) [copy constructor]
5613 cls.add_constructor([param('ns3::ndn::Pit const &', 'arg0')])
5614 ## ndn-pit.h (module 'ndnSIM'): ns3::ndn::Pit::Pit() [constructor]
5615 cls.add_constructor([])
5616 ## ndn-pit.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::pit::Entry> ns3::ndn::Pit::Begin() [member function]
5617 cls.add_method('Begin',
5618 'ns3::Ptr< ns3::ndn::pit::Entry >',
5619 [],
5620 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005621 ## 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 -07005622 cls.add_method('Create',
5623 'ns3::Ptr< ns3::ndn::pit::Entry >',
5624 [param('ns3::Ptr< ns3::ndn::InterestHeader const >', 'header')],
5625 is_pure_virtual=True, is_virtual=True)
5626 ## ndn-pit.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::pit::Entry> ns3::ndn::Pit::End() [member function]
5627 cls.add_method('End',
5628 'ns3::Ptr< ns3::ndn::pit::Entry >',
5629 [],
5630 is_pure_virtual=True, is_virtual=True)
5631 ## ndn-pit.h (module 'ndnSIM'): static ns3::Ptr<ns3::ndn::Pit> ns3::ndn::Pit::GetPit(ns3::Ptr<ns3::Object> node) [member function]
5632 cls.add_method('GetPit',
5633 'ns3::Ptr< ns3::ndn::Pit >',
5634 [param('ns3::Ptr< ns3::Object >', 'node')],
5635 is_static=True)
5636 ## ndn-pit.h (module 'ndnSIM'): uint32_t ns3::ndn::Pit::GetSize() const [member function]
5637 cls.add_method('GetSize',
5638 'uint32_t',
5639 [],
5640 is_pure_virtual=True, is_const=True, is_virtual=True)
5641 ## ndn-pit.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::Pit::GetTypeId() [member function]
5642 cls.add_method('GetTypeId',
5643 'ns3::TypeId',
5644 [],
5645 is_static=True)
5646 ## ndn-pit.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::pit::Entry> ns3::ndn::Pit::Lookup(ns3::ndn::ContentObjectHeader const & header) [member function]
5647 cls.add_method('Lookup',
5648 'ns3::Ptr< ns3::ndn::pit::Entry >',
5649 [param('ns3::ndn::ContentObjectHeader const &', 'header')],
5650 is_pure_virtual=True, is_virtual=True)
5651 ## ndn-pit.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::pit::Entry> ns3::ndn::Pit::Lookup(ns3::ndn::InterestHeader const & header) [member function]
5652 cls.add_method('Lookup',
5653 'ns3::Ptr< ns3::ndn::pit::Entry >',
5654 [param('ns3::ndn::InterestHeader const &', 'header')],
5655 is_pure_virtual=True, is_virtual=True)
5656 ## ndn-pit.h (module 'ndnSIM'): void ns3::ndn::Pit::MarkErased(ns3::Ptr<ns3::ndn::pit::Entry> entry) [member function]
5657 cls.add_method('MarkErased',
5658 'void',
5659 [param('ns3::Ptr< ns3::ndn::pit::Entry >', 'entry')],
5660 is_pure_virtual=True, is_virtual=True)
5661 ## ndn-pit.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::pit::Entry> ns3::ndn::Pit::Next(ns3::Ptr<ns3::ndn::pit::Entry> arg0) [member function]
5662 cls.add_method('Next',
5663 'ns3::Ptr< ns3::ndn::pit::Entry >',
5664 [param('ns3::Ptr< ns3::ndn::pit::Entry >', 'arg0')],
5665 is_pure_virtual=True, is_virtual=True)
5666 ## ndn-pit.h (module 'ndnSIM'): void ns3::ndn::Pit::Print(std::ostream & os) const [member function]
5667 cls.add_method('Print',
5668 'void',
5669 [param('std::ostream &', 'os')],
5670 is_pure_virtual=True, is_const=True, is_virtual=True)
5671 return
5672
5673def register_Ns3NdnStackHelper_methods(root_module, cls):
5674 ## ndn-stack-helper.h (module 'ndnSIM'): ns3::ndn::StackHelper::StackHelper() [constructor]
5675 cls.add_constructor([])
5676 ## 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]
5677 cls.add_method('SetStackAttributes',
5678 'void',
5679 [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='""')])
5680 ## 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]
5681 cls.add_method('SetForwardingStrategy',
5682 'void',
5683 [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='""')])
5684 ## 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]
5685 cls.add_method('SetContentStore',
5686 'void',
5687 [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='""')])
5688 ## 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]
5689 cls.add_method('SetPit',
5690 'void',
5691 [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='""')])
5692 ## 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]
5693 cls.add_method('SetFib',
5694 'void',
5695 [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='""')])
5696 ## 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]
5697 cls.add_method('EnableLimits',
5698 'void',
5699 [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 -08005700 ## 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 -07005701 cls.add_method('Install',
5702 'ns3::Ptr< ns3::ndn::FaceContainer >',
Alexander Afanasyev67f4a4a2012-11-24 17:18:17 -08005703 [param('std::string const &', 'nodeName')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005704 is_const=True)
5705 ## ndn-stack-helper.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::FaceContainer> ns3::ndn::StackHelper::Install(ns3::Ptr<ns3::Node> node) const [member function]
5706 cls.add_method('Install',
5707 'ns3::Ptr< ns3::ndn::FaceContainer >',
5708 [param('ns3::Ptr< ns3::Node >', 'node')],
5709 is_const=True)
Alexander Afanasyev67f4a4a2012-11-24 17:18:17 -08005710 ## 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 -07005711 cls.add_method('Install',
5712 'ns3::Ptr< ns3::ndn::FaceContainer >',
Alexander Afanasyev67f4a4a2012-11-24 17:18:17 -08005713 [param('ns3::NodeContainer const &', 'c')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005714 is_const=True)
5715 ## ndn-stack-helper.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::FaceContainer> ns3::ndn::StackHelper::InstallAll() const [member function]
5716 cls.add_method('InstallAll',
5717 'ns3::Ptr< ns3::ndn::FaceContainer >',
5718 [],
5719 is_const=True)
Alexander Afanasyev67f4a4a2012-11-24 17:18:17 -08005720 ## 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 -07005721 cls.add_method('AddRoute',
5722 'void',
Alexander Afanasyev67f4a4a2012-11-24 17:18:17 -08005723 [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 -07005724 is_static=True)
Alexander Afanasyev67f4a4a2012-11-24 17:18:17 -08005725 ## 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 -07005726 cls.add_method('AddRoute',
5727 'void',
Alexander Afanasyev67f4a4a2012-11-24 17:18:17 -08005728 [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 -07005729 is_static=True)
Alexander Afanasyev67f4a4a2012-11-24 17:18:17 -08005730 ## 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 -07005731 cls.add_method('AddRoute',
5732 'void',
Alexander Afanasyev67f4a4a2012-11-24 17:18:17 -08005733 [param('ns3::Ptr< ns3::Node >', 'node'), param('std::string const &', 'prefix'), param('ns3::Ptr< ns3::ndn::Face >', 'face'), param('int32_t', 'metric')],
5734 is_static=True)
5735 ## 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]
5736 cls.add_method('AddRoute',
5737 'void',
5738 [param('ns3::Ptr< ns3::Node >', 'node'), param('std::string const &', 'prefix'), param('ns3::Ptr< ns3::Node >', 'otherNode'), param('int32_t', 'metric')],
5739 is_static=True)
5740 ## 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]
5741 cls.add_method('AddRoute',
5742 'void',
5743 [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 -07005744 is_static=True)
5745 ## ndn-stack-helper.h (module 'ndnSIM'): void ns3::ndn::StackHelper::SetDefaultRoutes(bool needSet) [member function]
5746 cls.add_method('SetDefaultRoutes',
5747 'void',
5748 [param('bool', 'needSet')])
5749 return
5750
5751def register_Ns3NdnUnknownHeaderException_methods(root_module, cls):
5752 ## ndn-header-helper.h (module 'ndnSIM'): ns3::ndn::UnknownHeaderException::UnknownHeaderException() [constructor]
5753 cls.add_constructor([])
5754 ## ndn-header-helper.h (module 'ndnSIM'): ns3::ndn::UnknownHeaderException::UnknownHeaderException(ns3::ndn::UnknownHeaderException const & arg0) [copy constructor]
5755 cls.add_constructor([param('ns3::ndn::UnknownHeaderException const &', 'arg0')])
5756 return
5757
5758def register_Ns3NdnAppFace_methods(root_module, cls):
5759 ## ndn-app-face.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::AppFace::GetTypeId() [member function]
5760 cls.add_method('GetTypeId',
5761 'ns3::TypeId',
5762 [],
5763 is_static=True)
5764 ## ndn-app-face.h (module 'ndnSIM'): ns3::ndn::AppFace::AppFace(ns3::Ptr<ns3::ndn::App> app) [constructor]
5765 cls.add_constructor([param('ns3::Ptr< ns3::ndn::App >', 'app')])
5766 ## 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]
5767 cls.add_method('RegisterProtocolHandler',
5768 'void',
5769 [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')],
5770 is_virtual=True)
5771 ## ndn-app-face.h (module 'ndnSIM'): std::ostream & ns3::ndn::AppFace::Print(std::ostream & os) const [member function]
5772 cls.add_method('Print',
5773 'std::ostream &',
5774 [param('std::ostream &', 'os')],
5775 is_const=True, is_virtual=True)
5776 ## ndn-app-face.h (module 'ndnSIM'): bool ns3::ndn::AppFace::SendImpl(ns3::Ptr<ns3::Packet> p) [member function]
5777 cls.add_method('SendImpl',
5778 'bool',
5779 [param('ns3::Ptr< ns3::Packet >', 'p')],
5780 visibility='protected', is_virtual=True)
5781 return
5782
5783def register_Ns3NdnCsEntry_methods(root_module, cls):
5784 ## ndn-content-store.h (module 'ndnSIM'): ns3::ndn::cs::Entry::Entry(ns3::ndn::cs::Entry const & arg0) [copy constructor]
5785 cls.add_constructor([param('ns3::ndn::cs::Entry const &', 'arg0')])
5786 ## 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]
5787 cls.add_constructor([param('ns3::Ptr< ns3::ndn::ContentObjectHeader const >', 'header'), param('ns3::Ptr< ns3::Packet const >', 'packet')])
5788 ## ndn-content-store.h (module 'ndnSIM'): ns3::Ptr<ns3::Packet> ns3::ndn::cs::Entry::GetFullyFormedNdnPacket() const [member function]
5789 cls.add_method('GetFullyFormedNdnPacket',
5790 'ns3::Ptr< ns3::Packet >',
5791 [],
5792 is_const=True)
5793 ## ndn-content-store.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::ContentObjectHeader const> ns3::ndn::cs::Entry::GetHeader() const [member function]
5794 cls.add_method('GetHeader',
5795 'ns3::Ptr< ns3::ndn::ContentObjectHeader const >',
5796 [],
5797 is_const=True)
5798 ## ndn-content-store.h (module 'ndnSIM'): ns3::ndn::NameComponents const & ns3::ndn::cs::Entry::GetName() const [member function]
5799 cls.add_method('GetName',
5800 'ns3::ndn::NameComponents const &',
5801 [],
5802 is_const=True)
5803 ## ndn-content-store.h (module 'ndnSIM'): ns3::Ptr<const ns3::Packet> ns3::ndn::cs::Entry::GetPacket() const [member function]
5804 cls.add_method('GetPacket',
5805 'ns3::Ptr< ns3::Packet const >',
5806 [],
5807 is_const=True)
5808 return
5809
5810def register_Ns3NdnFibEntry_methods(root_module, cls):
5811 cls.add_output_stream_operator()
5812 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::Entry::Entry(ns3::ndn::fib::Entry const & arg0) [copy constructor]
5813 cls.add_constructor([param('ns3::ndn::fib::Entry const &', 'arg0')])
5814 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::Entry::Entry(ns3::Ptr<ns3::ndn::NameComponents const> const & prefix) [constructor]
5815 cls.add_constructor([param('ns3::Ptr< ns3::ndn::NameComponents const > const &', 'prefix')])
5816 ## ndn-fib-entry.h (module 'ndnSIM'): void ns3::ndn::fib::Entry::AddOrUpdateRoutingMetric(ns3::Ptr<ns3::ndn::Face> face, int32_t metric) [member function]
5817 cls.add_method('AddOrUpdateRoutingMetric',
5818 'void',
5819 [param('ns3::Ptr< ns3::ndn::Face >', 'face'), param('int32_t', 'metric')])
5820 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::FaceMetric const & ns3::ndn::fib::Entry::FindBestCandidate(uint32_t skip=0) const [member function]
5821 cls.add_method('FindBestCandidate',
5822 'ns3::ndn::fib::FaceMetric const &',
5823 [param('uint32_t', 'skip', default_value='0')],
5824 is_const=True)
5825 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::NameComponents const & ns3::ndn::fib::Entry::GetPrefix() const [member function]
5826 cls.add_method('GetPrefix',
5827 'ns3::ndn::NameComponents const &',
5828 [],
5829 is_const=True)
5830 ## ndn-fib-entry.h (module 'ndnSIM'): void ns3::ndn::fib::Entry::Invalidate() [member function]
5831 cls.add_method('Invalidate',
5832 'void',
5833 [])
5834 ## ndn-fib-entry.h (module 'ndnSIM'): void ns3::ndn::fib::Entry::RemoveFace(ns3::Ptr<ns3::ndn::Face> const & face) [member function]
5835 cls.add_method('RemoveFace',
5836 'void',
5837 [param('ns3::Ptr< ns3::ndn::Face > const &', 'face')])
5838 ## ndn-fib-entry.h (module 'ndnSIM'): void ns3::ndn::fib::Entry::UpdateFaceRtt(ns3::Ptr<ns3::ndn::Face> face, ns3::Time const & sample) [member function]
5839 cls.add_method('UpdateFaceRtt',
5840 'void',
5841 [param('ns3::Ptr< ns3::ndn::Face >', 'face'), param('ns3::Time const &', 'sample')])
5842 ## 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]
5843 cls.add_method('UpdateStatus',
5844 'void',
5845 [param('ns3::Ptr< ns3::ndn::Face >', 'face'), param('ns3::ndn::fib::FaceMetric::Status', 'status')])
5846 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::Entry::m_faces [variable]
5847 cls.add_instance_attribute('m_faces', 'boost::multi_index::multi_index_container< ns3::ndn::fib::FaceMetric, boost::multi_index::indexed_by< boost::multi_index::ordered_unique< boost::multi_index::tag< ns3::ndn::fib::i_face, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na >, boost::multi_index::member< ns3::ndn::fib::FaceMetric, ns3::Ptr< ns3::ndn::Face >, & ( ns3::ndn::fib::FaceMetric::m_face ) >, mpl_::na >, boost::multi_index::ordered_non_unique< boost::multi_index::tag< ns3::ndn::fib::i_metric, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na >, boost::multi_index::composite_key< ns3::ndn::fib::FaceMetric, boost::multi_index::member< ns3::ndn::fib::FaceMetric, ns3::ndn::fib::FaceMetric::Status, & ( ns3::ndn::fib::FaceMetric::m_status ) >, boost::multi_index::member< ns3::ndn::fib::FaceMetric, int, & ( ns3::ndn::fib::FaceMetric::m_routingCost ) >, boost::tuples::null_type, boost::tuples::null_type, boost::tuples::null_type, boost::tuples::null_type, boost::tuples::null_type, boost::tuples::null_type, boost::tuples::null_type, boost::tuples::null_type >, mpl_::na >, boost::multi_index::random_access< boost::multi_index::tag< ns3::ndn::fib::i_nth, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na > >, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na >, std::allocator< ns3::ndn::fib::FaceMetric > >', is_const=False)
5848 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::Entry::m_needsProbing [variable]
5849 cls.add_instance_attribute('m_needsProbing', 'bool', is_const=False)
5850 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::Entry::m_prefix [variable]
5851 cls.add_instance_attribute('m_prefix', 'ns3::Ptr< ns3::ndn::NameComponents const >', is_const=False)
5852 return
5853
5854def register_Ns3NdnFibEntryNoFaces_methods(root_module, cls):
5855 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::Entry::NoFaces::NoFaces() [constructor]
5856 cls.add_constructor([])
5857 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::Entry::NoFaces::NoFaces(ns3::ndn::fib::Entry::NoFaces const & arg0) [copy constructor]
5858 cls.add_constructor([param('ns3::ndn::fib::Entry::NoFaces const &', 'arg0')])
5859 return
5860
5861def register_Ns3NdnFibFaceMetric_methods(root_module, cls):
5862 cls.add_output_stream_operator()
5863 cls.add_binary_comparison_operator('<')
5864 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::FaceMetric::FaceMetric(ns3::ndn::fib::FaceMetric const & arg0) [copy constructor]
5865 cls.add_constructor([param('ns3::ndn::fib::FaceMetric const &', 'arg0')])
5866 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::FaceMetric::FaceMetric(ns3::Ptr<ns3::ndn::Face> face, int32_t cost) [constructor]
5867 cls.add_constructor([param('ns3::Ptr< ns3::ndn::Face >', 'face'), param('int32_t', 'cost')])
5868 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::Face> ns3::ndn::fib::FaceMetric::GetFace() const [member function]
5869 cls.add_method('GetFace',
5870 'ns3::Ptr< ns3::ndn::Face >',
5871 [],
5872 is_const=True)
5873 ## ndn-fib-entry.h (module 'ndnSIM'): void ns3::ndn::fib::FaceMetric::UpdateRtt(ns3::Time const & rttSample) [member function]
5874 cls.add_method('UpdateRtt',
5875 'void',
5876 [param('ns3::Time const &', 'rttSample')])
5877 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::FaceMetric::m_face [variable]
5878 cls.add_instance_attribute('m_face', 'ns3::Ptr< ns3::ndn::Face >', is_const=False)
5879 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::FaceMetric::m_routingCost [variable]
5880 cls.add_instance_attribute('m_routingCost', 'int32_t', is_const=False)
5881 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::FaceMetric::m_rttVar [variable]
5882 cls.add_instance_attribute('m_rttVar', 'ns3::Time', is_const=False)
5883 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::FaceMetric::m_sRtt [variable]
5884 cls.add_instance_attribute('m_sRtt', 'ns3::Time', is_const=False)
5885 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::FaceMetric::m_status [variable]
5886 cls.add_instance_attribute('m_status', 'ns3::ndn::fib::FaceMetric::Status', is_const=False)
5887 return
5888
5889def register_Ns3NdnFibFaceMetricContainer_methods(root_module, cls):
5890 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::FaceMetricContainer::FaceMetricContainer() [constructor]
5891 cls.add_constructor([])
5892 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::FaceMetricContainer::FaceMetricContainer(ns3::ndn::fib::FaceMetricContainer const & arg0) [copy constructor]
5893 cls.add_constructor([param('ns3::ndn::fib::FaceMetricContainer const &', 'arg0')])
5894 return
5895
5896def register_Ns3NdnFibI_face_methods(root_module, cls):
5897 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::i_face::i_face() [constructor]
5898 cls.add_constructor([])
5899 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::i_face::i_face(ns3::ndn::fib::i_face const & arg0) [copy constructor]
5900 cls.add_constructor([param('ns3::ndn::fib::i_face const &', 'arg0')])
5901 return
5902
5903def register_Ns3NdnFibI_metric_methods(root_module, cls):
5904 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::i_metric::i_metric() [constructor]
5905 cls.add_constructor([])
5906 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::i_metric::i_metric(ns3::ndn::fib::i_metric const & arg0) [copy constructor]
5907 cls.add_constructor([param('ns3::ndn::fib::i_metric const &', 'arg0')])
5908 return
5909
5910def register_Ns3NdnFibI_nth_methods(root_module, cls):
5911 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::i_nth::i_nth() [constructor]
5912 cls.add_constructor([])
5913 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::i_nth::i_nth(ns3::ndn::fib::i_nth const & arg0) [copy constructor]
5914 cls.add_constructor([param('ns3::ndn::fib::i_nth const &', 'arg0')])
5915 return
5916
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005917def register_Ns3NdnFwTag_methods(root_module, cls):
5918 ## ndn-fw-tag.h (module 'ndnSIM'): ns3::ndn::fw::Tag::Tag() [constructor]
5919 cls.add_constructor([])
5920 ## ndn-fw-tag.h (module 'ndnSIM'): ns3::ndn::fw::Tag::Tag(ns3::ndn::fw::Tag const & arg0) [copy constructor]
5921 cls.add_constructor([param('ns3::ndn::fw::Tag const &', 'arg0')])
5922 return
5923
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005924def register_Ns3NdnPitEntry_methods(root_module, cls):
5925 cls.add_output_stream_operator()
5926 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::ndn::pit::Entry::Entry(ns3::ndn::pit::Entry const & arg0) [copy constructor]
5927 cls.add_constructor([param('ns3::ndn::pit::Entry const &', 'arg0')])
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005928 ## 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 -07005929 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 -07005930 ## ndn-pit-entry.h (module 'ndnSIM'): void ns3::ndn::pit::Entry::AddFwTag(boost::shared_ptr<ns3::ndn::fw::Tag> tag) [member function]
5931 cls.add_method('AddFwTag',
5932 'void',
5933 [param('boost::shared_ptr< ns3::ndn::fw::Tag >', 'tag')])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005934 ## 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]
5935 cls.add_method('AddIncoming',
5936 'std::_Rb_tree_const_iterator< ns3::ndn::pit::IncomingFace >',
5937 [param('ns3::Ptr< ns3::ndn::Face >', 'face')],
5938 is_virtual=True)
Alexander Afanasyevc202fd92012-09-03 21:46:00 -07005939 ## 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 -07005940 cls.add_method('AddOutgoing',
Alexander Afanasyevc202fd92012-09-03 21:46:00 -07005941 'std::_Rb_tree_const_iterator< ns3::ndn::pit::OutgoingFace >',
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005942 [param('ns3::Ptr< ns3::ndn::Face >', 'face')],
5943 is_virtual=True)
5944 ## ndn-pit-entry.h (module 'ndnSIM'): void ns3::ndn::pit::Entry::AddSeenNonce(uint32_t nonce) [member function]
5945 cls.add_method('AddSeenNonce',
5946 'void',
5947 [param('uint32_t', 'nonce')],
5948 is_virtual=True)
5949 ## ndn-pit-entry.h (module 'ndnSIM'): bool ns3::ndn::pit::Entry::AreAllOutgoingInVain() const [member function]
5950 cls.add_method('AreAllOutgoingInVain',
5951 'bool',
5952 [],
5953 is_const=True)
5954 ## ndn-pit-entry.h (module 'ndnSIM'): bool ns3::ndn::pit::Entry::AreTherePromisingOutgoingFacesExcept(ns3::Ptr<ns3::ndn::Face> face) const [member function]
5955 cls.add_method('AreTherePromisingOutgoingFacesExcept',
5956 'bool',
5957 [param('ns3::Ptr< ns3::ndn::Face >', 'face')],
5958 is_const=True)
5959 ## ndn-pit-entry.h (module 'ndnSIM'): void ns3::ndn::pit::Entry::ClearIncoming() [member function]
5960 cls.add_method('ClearIncoming',
5961 'void',
5962 [],
5963 is_virtual=True)
5964 ## ndn-pit-entry.h (module 'ndnSIM'): void ns3::ndn::pit::Entry::ClearOutgoing() [member function]
5965 cls.add_method('ClearOutgoing',
5966 'void',
5967 [],
5968 is_virtual=True)
5969 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::Time const & ns3::ndn::pit::Entry::GetExpireTime() const [member function]
5970 cls.add_method('GetExpireTime',
5971 'ns3::Time const &',
5972 [],
5973 is_const=True)
5974 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::fib::Entry> ns3::ndn::pit::Entry::GetFibEntry() [member function]
5975 cls.add_method('GetFibEntry',
5976 'ns3::Ptr< ns3::ndn::fib::Entry >',
5977 [])
5978 ## 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]
5979 cls.add_method('GetIncoming',
5980 'std::set< ns3::ndn::pit::IncomingFace > const &',
5981 [],
5982 is_const=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005983 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::InterestHeader const> ns3::ndn::pit::Entry::GetInterest() const [member function]
5984 cls.add_method('GetInterest',
5985 'ns3::Ptr< ns3::ndn::InterestHeader const >',
5986 [],
5987 is_const=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005988 ## ndn-pit-entry.h (module 'ndnSIM'): uint32_t ns3::ndn::pit::Entry::GetMaxRetxCount() const [member function]
5989 cls.add_method('GetMaxRetxCount',
5990 'uint32_t',
5991 [],
5992 is_const=True)
Alexander Afanasyevc202fd92012-09-03 21:46:00 -07005993 ## 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 -07005994 cls.add_method('GetOutgoing',
Alexander Afanasyevc202fd92012-09-03 21:46:00 -07005995 'std::set< ns3::ndn::pit::OutgoingFace > const &',
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005996 [],
5997 is_const=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005998 ## ndn-pit-entry.h (module 'ndnSIM'): uint32_t ns3::ndn::pit::Entry::GetOutgoingCount() const [member function]
5999 cls.add_method('GetOutgoingCount',
6000 'uint32_t',
6001 [],
6002 is_const=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006003 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::ndn::NameComponents const & ns3::ndn::pit::Entry::GetPrefix() const [member function]
6004 cls.add_method('GetPrefix',
6005 'ns3::ndn::NameComponents const &',
6006 [],
6007 is_const=True)
6008 ## ndn-pit-entry.h (module 'ndnSIM'): void ns3::ndn::pit::Entry::IncreaseAllowedRetxCount() [member function]
6009 cls.add_method('IncreaseAllowedRetxCount',
6010 'void',
6011 [],
6012 is_virtual=True)
6013 ## ndn-pit-entry.h (module 'ndnSIM'): bool ns3::ndn::pit::Entry::IsNonceSeen(uint32_t nonce) const [member function]
6014 cls.add_method('IsNonceSeen',
6015 'bool',
6016 [param('uint32_t', 'nonce')],
6017 is_const=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07006018 ## ndn-pit-entry.h (module 'ndnSIM'): void ns3::ndn::pit::Entry::OffsetLifetime(ns3::Time const & offsetTime) [member function]
6019 cls.add_method('OffsetLifetime',
6020 'void',
6021 [param('ns3::Time const &', 'offsetTime')],
6022 is_virtual=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006023 ## ndn-pit-entry.h (module 'ndnSIM'): void ns3::ndn::pit::Entry::RemoveAllReferencesToFace(ns3::Ptr<ns3::ndn::Face> face) [member function]
6024 cls.add_method('RemoveAllReferencesToFace',
6025 'void',
6026 [param('ns3::Ptr< ns3::ndn::Face >', 'face')],
6027 is_virtual=True)
6028 ## ndn-pit-entry.h (module 'ndnSIM'): void ns3::ndn::pit::Entry::RemoveIncoming(ns3::Ptr<ns3::ndn::Face> face) [member function]
6029 cls.add_method('RemoveIncoming',
6030 'void',
6031 [param('ns3::Ptr< ns3::ndn::Face >', 'face')],
6032 is_virtual=True)
6033 ## ndn-pit-entry.h (module 'ndnSIM'): void ns3::ndn::pit::Entry::SetWaitingInVain(ns3::Ptr<ns3::ndn::Face> face) [member function]
6034 cls.add_method('SetWaitingInVain',
6035 'void',
6036 [param('ns3::Ptr< ns3::ndn::Face >', 'face')],
6037 is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07006038 ## 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 -07006039 cls.add_method('UpdateLifetime',
6040 'void',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07006041 [param('ns3::Time const &', 'lifetime')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006042 is_virtual=True)
6043 return
6044
6045def register_Ns3NdnPitIncomingFace_methods(root_module, cls):
6046 cls.add_binary_comparison_operator('==')
6047 cls.add_binary_comparison_operator('<')
6048 ## ndn-pit-entry-incoming-face.h (module 'ndnSIM'): ns3::ndn::pit::IncomingFace::IncomingFace(ns3::ndn::pit::IncomingFace const & arg0) [copy constructor]
6049 cls.add_constructor([param('ns3::ndn::pit::IncomingFace const &', 'arg0')])
6050 ## ndn-pit-entry-incoming-face.h (module 'ndnSIM'): ns3::ndn::pit::IncomingFace::IncomingFace(ns3::Ptr<ns3::ndn::Face> face) [constructor]
6051 cls.add_constructor([param('ns3::Ptr< ns3::ndn::Face >', 'face')])
6052 ## ndn-pit-entry-incoming-face.h (module 'ndnSIM'): ns3::ndn::pit::IncomingFace::IncomingFace() [constructor]
6053 cls.add_constructor([])
6054 ## ndn-pit-entry-incoming-face.h (module 'ndnSIM'): ns3::ndn::pit::IncomingFace::m_arrivalTime [variable]
6055 cls.add_instance_attribute('m_arrivalTime', 'ns3::Time', is_const=False)
6056 ## ndn-pit-entry-incoming-face.h (module 'ndnSIM'): ns3::ndn::pit::IncomingFace::m_face [variable]
6057 cls.add_instance_attribute('m_face', 'ns3::Ptr< ns3::ndn::Face >', is_const=False)
6058 return
6059
6060def register_Ns3NdnPitOutgoingFace_methods(root_module, cls):
6061 cls.add_binary_comparison_operator('==')
6062 cls.add_binary_comparison_operator('<')
6063 ## ndn-pit-entry-outgoing-face.h (module 'ndnSIM'): ns3::ndn::pit::OutgoingFace::OutgoingFace(ns3::ndn::pit::OutgoingFace const & arg0) [copy constructor]
6064 cls.add_constructor([param('ns3::ndn::pit::OutgoingFace const &', 'arg0')])
6065 ## ndn-pit-entry-outgoing-face.h (module 'ndnSIM'): ns3::ndn::pit::OutgoingFace::OutgoingFace(ns3::Ptr<ns3::ndn::Face> face) [constructor]
6066 cls.add_constructor([param('ns3::Ptr< ns3::ndn::Face >', 'face')])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07006067 ## ndn-pit-entry-outgoing-face.h (module 'ndnSIM'): ns3::ndn::pit::OutgoingFace::OutgoingFace() [constructor]
6068 cls.add_constructor([])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006069 ## ndn-pit-entry-outgoing-face.h (module 'ndnSIM'): void ns3::ndn::pit::OutgoingFace::UpdateOnRetransmit() [member function]
6070 cls.add_method('UpdateOnRetransmit',
6071 'void',
6072 [])
6073 ## ndn-pit-entry-outgoing-face.h (module 'ndnSIM'): ns3::ndn::pit::OutgoingFace::m_face [variable]
6074 cls.add_instance_attribute('m_face', 'ns3::Ptr< ns3::ndn::Face >', is_const=False)
6075 ## ndn-pit-entry-outgoing-face.h (module 'ndnSIM'): ns3::ndn::pit::OutgoingFace::m_retxCount [variable]
6076 cls.add_instance_attribute('m_retxCount', 'uint32_t', is_const=False)
6077 ## ndn-pit-entry-outgoing-face.h (module 'ndnSIM'): ns3::ndn::pit::OutgoingFace::m_sendTime [variable]
6078 cls.add_instance_attribute('m_sendTime', 'ns3::Time', is_const=False)
6079 ## ndn-pit-entry-outgoing-face.h (module 'ndnSIM'): ns3::ndn::pit::OutgoingFace::m_waitingInVain [variable]
6080 cls.add_instance_attribute('m_waitingInVain', 'bool', is_const=False)
6081 return
6082
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006083def register_Ns3NdnPitI_face_methods(root_module, cls):
6084 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::ndn::pit::i_face::i_face() [constructor]
6085 cls.add_constructor([])
6086 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::ndn::pit::i_face::i_face(ns3::ndn::pit::i_face const & arg0) [copy constructor]
6087 cls.add_constructor([param('ns3::ndn::pit::i_face const &', 'arg0')])
6088 return
6089
6090def register_Ns3NdnPitI_retx_methods(root_module, cls):
6091 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::ndn::pit::i_retx::i_retx() [constructor]
6092 cls.add_constructor([])
6093 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::ndn::pit::i_retx::i_retx(ns3::ndn::pit::i_retx const & arg0) [copy constructor]
6094 cls.add_constructor([param('ns3::ndn::pit::i_retx const &', 'arg0')])
6095 return
6096
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08006097def register_functions(root_module):
6098 module = root_module
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08006099 register_functions_ns3_FatalImpl(module.get_submodule('FatalImpl'), root_module)
6100 register_functions_ns3_internal(module.get_submodule('internal'), root_module)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006101 register_functions_ns3_ndn(module.get_submodule('ndn'), root_module)
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08006102 return
6103
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08006104def register_functions_ns3_FatalImpl(module, root_module):
6105 return
6106
6107def register_functions_ns3_internal(module, root_module):
6108 return
6109
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006110def register_functions_ns3_ndn(module, root_module):
6111 ## ndn-name-components.h (module 'ndnSIM'): extern ns3::Ptr<ns3::AttributeChecker const> ns3::ndn::MakeNameComponentsChecker() [free function]
6112 module.add_function('MakeNameComponentsChecker',
6113 'ns3::Ptr< ns3::AttributeChecker const >',
6114 [])
6115 register_functions_ns3_ndn_cs(module.get_submodule('cs'), root_module)
6116 register_functions_ns3_ndn_fib(module.get_submodule('fib'), root_module)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07006117 register_functions_ns3_ndn_fw(module.get_submodule('fw'), root_module)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006118 register_functions_ns3_ndn_pit(module.get_submodule('pit'), root_module)
6119 return
6120
6121def register_functions_ns3_ndn_cs(module, root_module):
6122 return
6123
6124def register_functions_ns3_ndn_fib(module, root_module):
6125 return
6126
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07006127def register_functions_ns3_ndn_fw(module, root_module):
6128 return
6129
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006130def register_functions_ns3_ndn_pit(module, root_module):
6131 return
6132
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08006133def main():
6134 out = FileCodeSink(sys.stdout)
6135 root_module = module_init()
6136 register_types(root_module)
6137 register_methods(root_module)
6138 register_functions(root_module)
6139 root_module.generate(out)
6140
6141if __name__ == '__main__':
6142 main()
6143