blob: 3836b99d2e16ba06f9a6f3150f416ebc8eae047d [file] [log] [blame]
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001from pybindgen import Module, FileCodeSink, param, retval, cppclass, typehandlers
2
3
4import pybindgen.settings
5import warnings
6
7class ErrorHandler(pybindgen.settings.ErrorHandler):
8 def handle_error(self, wrapper, exception, traceback_):
9 warnings.warn("exception %r in wrapper %s" % (exception, wrapper))
10 return True
11pybindgen.settings.error_handler = ErrorHandler()
12
13
14import sys
15
16def module_init():
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -070017 root_module = Module('ns.ndnSIM', cpp_namespace='::ns3')
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -080018 return root_module
19
20def register_types(module):
21 root_module = module.get_root()
22
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -080023 ## address.h (module 'network'): ns3::Address [class]
24 module.add_class('Address', import_from_module='ns.network')
25 ## address.h (module 'network'): ns3::Address::MaxSize_e [enumeration]
26 module.add_enum('MaxSize_e', ['MAX_SIZE'], outer_class=root_module['ns3::Address'], import_from_module='ns.network')
27 ## application-container.h (module 'network'): ns3::ApplicationContainer [class]
28 module.add_class('ApplicationContainer', import_from_module='ns.network')
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -080029 ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList [class]
30 module.add_class('AttributeConstructionList', import_from_module='ns.core')
31 ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item [struct]
32 module.add_class('Item', import_from_module='ns.core', outer_class=root_module['ns3::AttributeConstructionList'])
33 ## buffer.h (module 'network'): ns3::Buffer [class]
34 module.add_class('Buffer', import_from_module='ns.network')
35 ## buffer.h (module 'network'): ns3::Buffer::Iterator [class]
36 module.add_class('Iterator', import_from_module='ns.network', outer_class=root_module['ns3::Buffer'])
37 ## packet.h (module 'network'): ns3::ByteTagIterator [class]
38 module.add_class('ByteTagIterator', import_from_module='ns.network')
39 ## packet.h (module 'network'): ns3::ByteTagIterator::Item [class]
40 module.add_class('Item', import_from_module='ns.network', outer_class=root_module['ns3::ByteTagIterator'])
41 ## byte-tag-list.h (module 'network'): ns3::ByteTagList [class]
42 module.add_class('ByteTagList', import_from_module='ns.network')
43 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator [class]
44 module.add_class('Iterator', import_from_module='ns.network', outer_class=root_module['ns3::ByteTagList'])
45 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item [struct]
46 module.add_class('Item', import_from_module='ns.network', outer_class=root_module['ns3::ByteTagList::Iterator'])
47 ## callback.h (module 'core'): ns3::CallbackBase [class]
48 module.add_class('CallbackBase', import_from_module='ns.core')
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -080049 ## event-id.h (module 'core'): ns3::EventId [class]
50 module.add_class('EventId', import_from_module='ns.core')
51 ## ipv4-address.h (module 'network'): ns3::Ipv4Address [class]
52 module.add_class('Ipv4Address', import_from_module='ns.network')
53 ## ipv4-address.h (module 'network'): ns3::Ipv4Address [class]
54 root_module['ns3::Ipv4Address'].implicitly_converts_to(root_module['ns3::Address'])
55 ## ipv4-address.h (module 'network'): ns3::Ipv4Mask [class]
56 module.add_class('Ipv4Mask', import_from_module='ns.network')
57 ## ipv6-address.h (module 'network'): ns3::Ipv6Address [class]
58 module.add_class('Ipv6Address', import_from_module='ns.network')
59 ## ipv6-address.h (module 'network'): ns3::Ipv6Address [class]
60 root_module['ns3::Ipv6Address'].implicitly_converts_to(root_module['ns3::Address'])
61 ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix [class]
62 module.add_class('Ipv6Prefix', import_from_module='ns.network')
Alexander Afanasyev29c19b92012-09-03 23:46:41 -070063 ## net-device-container.h (module 'network'): ns3::NetDeviceContainer [class]
64 module.add_class('NetDeviceContainer', import_from_module='ns.network')
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -080065 ## node-container.h (module 'network'): ns3::NodeContainer [class]
66 module.add_class('NodeContainer', import_from_module='ns.network')
67 ## object-base.h (module 'core'): ns3::ObjectBase [class]
68 module.add_class('ObjectBase', allow_subclassing=True, import_from_module='ns.core')
69 ## object.h (module 'core'): ns3::ObjectDeleter [struct]
70 module.add_class('ObjectDeleter', import_from_module='ns.core')
71 ## object-factory.h (module 'core'): ns3::ObjectFactory [class]
72 module.add_class('ObjectFactory', import_from_module='ns.core')
73 ## packet-metadata.h (module 'network'): ns3::PacketMetadata [class]
74 module.add_class('PacketMetadata', import_from_module='ns.network')
75 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item [struct]
76 module.add_class('Item', import_from_module='ns.network', outer_class=root_module['ns3::PacketMetadata'])
77 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item [enumeration]
78 module.add_enum('', ['PAYLOAD', 'HEADER', 'TRAILER'], outer_class=root_module['ns3::PacketMetadata::Item'], import_from_module='ns.network')
79 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::ItemIterator [class]
80 module.add_class('ItemIterator', import_from_module='ns.network', outer_class=root_module['ns3::PacketMetadata'])
Alexander Afanasyevad5acce2012-05-31 12:43:08 -070081 ## packet.h (module 'network'): ns3::PacketTagIterator [class]
82 module.add_class('PacketTagIterator', import_from_module='ns.network')
83 ## packet.h (module 'network'): ns3::PacketTagIterator::Item [class]
84 module.add_class('Item', import_from_module='ns.network', outer_class=root_module['ns3::PacketTagIterator'])
85 ## packet-tag-list.h (module 'network'): ns3::PacketTagList [class]
86 module.add_class('PacketTagList', import_from_module='ns.network')
87 ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData [struct]
88 module.add_class('TagData', import_from_module='ns.network', outer_class=root_module['ns3::PacketTagList'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -070089 ## random-variable.h (module 'core'): ns3::RandomVariable [class]
90 module.add_class('RandomVariable', import_from_module='ns.core')
91 ## rng-seed-manager.h (module 'core'): ns3::RngSeedManager [class]
92 module.add_class('RngSeedManager', import_from_module='ns.core')
93 ## random-variable.h (module 'core'): ns3::SequentialVariable [class]
94 module.add_class('SequentialVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -080095 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter> [class]
96 module.add_class('SimpleRefCount', automatic_type_narrowing=True, import_from_module='ns.core', template_parameters=['ns3::Object', 'ns3::ObjectBase', 'ns3::ObjectDeleter'], parent=root_module['ns3::ObjectBase'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
Alexander Afanasyevad5acce2012-05-31 12:43:08 -070097 ## tag.h (module 'network'): ns3::Tag [class]
98 module.add_class('Tag', import_from_module='ns.network', parent=root_module['ns3::ObjectBase'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -080099 ## tag-buffer.h (module 'network'): ns3::TagBuffer [class]
100 module.add_class('TagBuffer', import_from_module='ns.network')
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700101 ## random-variable.h (module 'core'): ns3::TriangularVariable [class]
102 module.add_class('TriangularVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800103 ## type-id.h (module 'core'): ns3::TypeId [class]
104 module.add_class('TypeId', import_from_module='ns.core')
105 ## type-id.h (module 'core'): ns3::TypeId::AttributeFlag [enumeration]
106 module.add_enum('AttributeFlag', ['ATTR_GET', 'ATTR_SET', 'ATTR_CONSTRUCT', 'ATTR_SGC'], outer_class=root_module['ns3::TypeId'], import_from_module='ns.core')
107 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation [struct]
108 module.add_class('AttributeInformation', import_from_module='ns.core', outer_class=root_module['ns3::TypeId'])
109 ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation [struct]
110 module.add_class('TraceSourceInformation', import_from_module='ns.core', outer_class=root_module['ns3::TypeId'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700111 ## random-variable.h (module 'core'): ns3::UniformVariable [class]
112 module.add_class('UniformVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700113 ## random-variable.h (module 'core'): ns3::WeibullVariable [class]
114 module.add_class('WeibullVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
115 ## random-variable.h (module 'core'): ns3::ZetaVariable [class]
116 module.add_class('ZetaVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
117 ## random-variable.h (module 'core'): ns3::ZipfVariable [class]
118 module.add_class('ZipfVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800119 ## empty.h (module 'core'): ns3::empty [class]
120 module.add_class('empty', import_from_module='ns.core')
121 ## int64x64-double.h (module 'core'): ns3::int64x64_t [class]
122 module.add_class('int64x64_t', import_from_module='ns.core')
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800123 ## chunk.h (module 'network'): ns3::Chunk [class]
Alexander Afanasyev4756b892012-04-18 14:48:43 -0700124 module.add_class('Chunk', import_from_module='ns.network', parent=root_module['ns3::ObjectBase'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700125 ## random-variable.h (module 'core'): ns3::ConstantVariable [class]
126 module.add_class('ConstantVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
127 ## random-variable.h (module 'core'): ns3::DeterministicVariable [class]
128 module.add_class('DeterministicVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
129 ## random-variable.h (module 'core'): ns3::EmpiricalVariable [class]
130 module.add_class('EmpiricalVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
131 ## random-variable.h (module 'core'): ns3::ErlangVariable [class]
132 module.add_class('ErlangVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
133 ## random-variable.h (module 'core'): ns3::ExponentialVariable [class]
134 module.add_class('ExponentialVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
135 ## random-variable.h (module 'core'): ns3::GammaVariable [class]
136 module.add_class('GammaVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800137 ## header.h (module 'network'): ns3::Header [class]
138 module.add_class('Header', import_from_module='ns.network', parent=root_module['ns3::Chunk'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700139 ## random-variable.h (module 'core'): ns3::IntEmpiricalVariable [class]
140 module.add_class('IntEmpiricalVariable', import_from_module='ns.core', parent=root_module['ns3::EmpiricalVariable'])
141 ## random-variable.h (module 'core'): ns3::LogNormalVariable [class]
142 module.add_class('LogNormalVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
143 ## random-variable.h (module 'core'): ns3::NormalVariable [class]
144 module.add_class('NormalVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800145 ## object.h (module 'core'): ns3::Object [class]
146 module.add_class('Object', import_from_module='ns.core', parent=root_module['ns3::SimpleRefCount< ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter >'])
147 ## object.h (module 'core'): ns3::Object::AggregateIterator [class]
148 module.add_class('AggregateIterator', import_from_module='ns.core', outer_class=root_module['ns3::Object'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700149 ## random-variable.h (module 'core'): ns3::ParetoVariable [class]
150 module.add_class('ParetoVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800151 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> > [class]
152 module.add_class('SimpleRefCount', automatic_type_narrowing=True, import_from_module='ns.core', template_parameters=['ns3::AttributeAccessor', 'ns3::empty', 'ns3::DefaultDeleter<ns3::AttributeAccessor>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
153 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter<ns3::AttributeChecker> > [class]
154 module.add_class('SimpleRefCount', automatic_type_narrowing=True, import_from_module='ns.core', template_parameters=['ns3::AttributeChecker', 'ns3::empty', 'ns3::DefaultDeleter<ns3::AttributeChecker>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
155 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter<ns3::AttributeValue> > [class]
156 module.add_class('SimpleRefCount', automatic_type_narrowing=True, import_from_module='ns.core', template_parameters=['ns3::AttributeValue', 'ns3::empty', 'ns3::DefaultDeleter<ns3::AttributeValue>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
157 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> > [class]
158 module.add_class('SimpleRefCount', automatic_type_narrowing=True, import_from_module='ns.core', template_parameters=['ns3::CallbackImplBase', 'ns3::empty', 'ns3::DefaultDeleter<ns3::CallbackImplBase>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800159 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::EventImpl, ns3::empty, ns3::DefaultDeleter<ns3::EventImpl> > [class]
160 module.add_class('SimpleRefCount', automatic_type_narrowing=True, import_from_module='ns.core', template_parameters=['ns3::EventImpl', 'ns3::empty', 'ns3::DefaultDeleter<ns3::EventImpl>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
161 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::NixVector, ns3::empty, ns3::DefaultDeleter<ns3::NixVector> > [class]
162 module.add_class('SimpleRefCount', automatic_type_narrowing=True, import_from_module='ns.core', template_parameters=['ns3::NixVector', 'ns3::empty', 'ns3::DefaultDeleter<ns3::NixVector>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800163 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Packet, ns3::empty, ns3::DefaultDeleter<ns3::Packet> > [class]
164 module.add_class('SimpleRefCount', automatic_type_narrowing=True, import_from_module='ns.core', template_parameters=['ns3::Packet', 'ns3::empty', 'ns3::DefaultDeleter<ns3::Packet>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700165 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::TopologyReader, ns3::empty, ns3::DefaultDeleter<ns3::TopologyReader> > [class]
166 module.add_class('SimpleRefCount', automatic_type_narrowing=True, import_from_module='ns.core', template_parameters=['ns3::TopologyReader', 'ns3::empty', 'ns3::DefaultDeleter<ns3::TopologyReader>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800167 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter<ns3::TraceSourceAccessor> > [class]
168 module.add_class('SimpleRefCount', automatic_type_narrowing=True, import_from_module='ns.core', template_parameters=['ns3::TraceSourceAccessor', 'ns3::empty', 'ns3::DefaultDeleter<ns3::TraceSourceAccessor>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700169 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::ndn::ContentObjectHeader, ns3::Header, ns3::DefaultDeleter<ns3::ndn::ContentObjectHeader> > [class]
170 module.add_class('SimpleRefCount', automatic_type_narrowing=True, template_parameters=['ns3::ndn::ContentObjectHeader', 'ns3::Header', 'ns3::DefaultDeleter<ns3::ndn::ContentObjectHeader>'], parent=root_module['ns3::Header'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
171 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::ndn::FaceContainer, ns3::empty, ns3::DefaultDeleter<ns3::ndn::FaceContainer> > [class]
172 module.add_class('SimpleRefCount', automatic_type_narrowing=True, template_parameters=['ns3::ndn::FaceContainer', 'ns3::empty', 'ns3::DefaultDeleter<ns3::ndn::FaceContainer>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
173 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::ndn::InterestHeader, ns3::Header, ns3::DefaultDeleter<ns3::ndn::InterestHeader> > [class]
174 module.add_class('SimpleRefCount', automatic_type_narrowing=True, import_from_module='ns.core', template_parameters=['ns3::ndn::InterestHeader', 'ns3::Header', 'ns3::DefaultDeleter<ns3::ndn::InterestHeader>'], parent=root_module['ns3::Header'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
Alexander Afanasyev32c07562013-02-01 12:58:43 -0800175 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::ndn::Name, ns3::empty, ns3::DefaultDeleter<ns3::ndn::Name> > [class]
176 module.add_class('SimpleRefCount', automatic_type_narrowing=True, template_parameters=['ns3::ndn::Name', 'ns3::empty', 'ns3::DefaultDeleter<ns3::ndn::Name>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700177 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::ndn::cs::Entry, ns3::empty, ns3::DefaultDeleter<ns3::ndn::cs::Entry> > [class]
178 module.add_class('SimpleRefCount', automatic_type_narrowing=True, template_parameters=['ns3::ndn::cs::Entry', 'ns3::empty', 'ns3::DefaultDeleter<ns3::ndn::cs::Entry>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700179 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::ndn::pit::Entry, ns3::empty, ns3::DefaultDeleter<ns3::ndn::pit::Entry> > [class]
180 module.add_class('SimpleRefCount', automatic_type_narrowing=True, template_parameters=['ns3::ndn::pit::Entry', 'ns3::empty', 'ns3::DefaultDeleter<ns3::ndn::pit::Entry>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800181 ## nstime.h (module 'core'): ns3::Time [class]
182 module.add_class('Time', import_from_module='ns.core')
183 ## nstime.h (module 'core'): ns3::Time::Unit [enumeration]
184 module.add_enum('Unit', ['S', 'MS', 'US', 'NS', 'PS', 'FS', 'LAST'], outer_class=root_module['ns3::Time'], import_from_module='ns.core')
185 ## nstime.h (module 'core'): ns3::Time [class]
186 root_module['ns3::Time'].implicitly_converts_to(root_module['ns3::int64x64_t'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700187 ## topology-reader.h (module 'topology-read'): ns3::TopologyReader [class]
188 module.add_class('TopologyReader', import_from_module='ns.topology_read', parent=root_module['ns3::SimpleRefCount< ns3::TopologyReader, ns3::empty, ns3::DefaultDeleter<ns3::TopologyReader> >'])
189 ## topology-reader.h (module 'topology-read'): ns3::TopologyReader::Link [class]
190 module.add_class('Link', import_from_module='ns.topology_read', outer_class=root_module['ns3::TopologyReader'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800191 ## trace-source-accessor.h (module 'core'): ns3::TraceSourceAccessor [class]
192 module.add_class('TraceSourceAccessor', import_from_module='ns.core', parent=root_module['ns3::SimpleRefCount< ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter<ns3::TraceSourceAccessor> >'])
193 ## trailer.h (module 'network'): ns3::Trailer [class]
194 module.add_class('Trailer', import_from_module='ns.network', parent=root_module['ns3::Chunk'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700195 ## annotated-topology-reader.h (module 'ndnSIM'): ns3::AnnotatedTopologyReader [class]
196 module.add_class('AnnotatedTopologyReader', parent=root_module['ns3::TopologyReader'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800197 ## application.h (module 'network'): ns3::Application [class]
198 module.add_class('Application', import_from_module='ns.network', parent=root_module['ns3::Object'])
199 ## attribute.h (module 'core'): ns3::AttributeAccessor [class]
200 module.add_class('AttributeAccessor', import_from_module='ns.core', parent=root_module['ns3::SimpleRefCount< ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> >'])
201 ## attribute.h (module 'core'): ns3::AttributeChecker [class]
202 module.add_class('AttributeChecker', allow_subclassing=False, automatic_type_narrowing=True, import_from_module='ns.core', parent=root_module['ns3::SimpleRefCount< ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter<ns3::AttributeChecker> >'])
203 ## attribute.h (module 'core'): ns3::AttributeValue [class]
204 module.add_class('AttributeValue', allow_subclassing=False, automatic_type_narrowing=True, import_from_module='ns.core', parent=root_module['ns3::SimpleRefCount< ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter<ns3::AttributeValue> >'])
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -0700205 ## boolean.h (module 'core'): ns3::BooleanChecker [class]
206 module.add_class('BooleanChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker'])
207 ## boolean.h (module 'core'): ns3::BooleanValue [class]
208 module.add_class('BooleanValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800209 ## callback.h (module 'core'): ns3::CallbackChecker [class]
210 module.add_class('CallbackChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker'])
211 ## callback.h (module 'core'): ns3::CallbackImplBase [class]
212 module.add_class('CallbackImplBase', import_from_module='ns.core', parent=root_module['ns3::SimpleRefCount< ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> >'])
213 ## callback.h (module 'core'): ns3::CallbackValue [class]
214 module.add_class('CallbackValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -0700215 ## double.h (module 'core'): ns3::DoubleValue [class]
216 module.add_class('DoubleValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800217 ## attribute.h (module 'core'): ns3::EmptyAttributeValue [class]
218 module.add_class('EmptyAttributeValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -0700219 ## enum.h (module 'core'): ns3::EnumChecker [class]
220 module.add_class('EnumChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker'])
221 ## enum.h (module 'core'): ns3::EnumValue [class]
222 module.add_class('EnumValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800223 ## event-impl.h (module 'core'): ns3::EventImpl [class]
224 module.add_class('EventImpl', import_from_module='ns.core', parent=root_module['ns3::SimpleRefCount< ns3::EventImpl, ns3::empty, ns3::DefaultDeleter<ns3::EventImpl> >'])
225 ## integer.h (module 'core'): ns3::IntegerValue [class]
226 module.add_class('IntegerValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
227 ## ipv4-address.h (module 'network'): ns3::Ipv4AddressChecker [class]
228 module.add_class('Ipv4AddressChecker', import_from_module='ns.network', parent=root_module['ns3::AttributeChecker'])
229 ## ipv4-address.h (module 'network'): ns3::Ipv4AddressValue [class]
230 module.add_class('Ipv4AddressValue', import_from_module='ns.network', parent=root_module['ns3::AttributeValue'])
231 ## ipv4-address.h (module 'network'): ns3::Ipv4MaskChecker [class]
232 module.add_class('Ipv4MaskChecker', import_from_module='ns.network', parent=root_module['ns3::AttributeChecker'])
233 ## ipv4-address.h (module 'network'): ns3::Ipv4MaskValue [class]
234 module.add_class('Ipv4MaskValue', import_from_module='ns.network', parent=root_module['ns3::AttributeValue'])
235 ## ipv6-address.h (module 'network'): ns3::Ipv6AddressChecker [class]
236 module.add_class('Ipv6AddressChecker', import_from_module='ns.network', parent=root_module['ns3::AttributeChecker'])
237 ## ipv6-address.h (module 'network'): ns3::Ipv6AddressValue [class]
238 module.add_class('Ipv6AddressValue', import_from_module='ns.network', parent=root_module['ns3::AttributeValue'])
239 ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixChecker [class]
240 module.add_class('Ipv6PrefixChecker', import_from_module='ns.network', parent=root_module['ns3::AttributeChecker'])
241 ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixValue [class]
242 module.add_class('Ipv6PrefixValue', import_from_module='ns.network', parent=root_module['ns3::AttributeValue'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800243 ## net-device.h (module 'network'): ns3::NetDevice [class]
244 module.add_class('NetDevice', import_from_module='ns.network', parent=root_module['ns3::Object'])
245 ## net-device.h (module 'network'): ns3::NetDevice::PacketType [enumeration]
246 module.add_enum('PacketType', ['PACKET_HOST', 'NS3_PACKET_HOST', 'PACKET_BROADCAST', 'NS3_PACKET_BROADCAST', 'PACKET_MULTICAST', 'NS3_PACKET_MULTICAST', 'PACKET_OTHERHOST', 'NS3_PACKET_OTHERHOST'], outer_class=root_module['ns3::NetDevice'], import_from_module='ns.network')
247 ## nix-vector.h (module 'network'): ns3::NixVector [class]
248 module.add_class('NixVector', import_from_module='ns.network', parent=root_module['ns3::SimpleRefCount< ns3::NixVector, ns3::empty, ns3::DefaultDeleter<ns3::NixVector> >'])
249 ## node.h (module 'network'): ns3::Node [class]
250 module.add_class('Node', import_from_module='ns.network', parent=root_module['ns3::Object'])
251 ## object-factory.h (module 'core'): ns3::ObjectFactoryChecker [class]
252 module.add_class('ObjectFactoryChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker'])
253 ## object-factory.h (module 'core'): ns3::ObjectFactoryValue [class]
254 module.add_class('ObjectFactoryValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800255 ## packet.h (module 'network'): ns3::Packet [class]
256 module.add_class('Packet', import_from_module='ns.network', parent=root_module['ns3::SimpleRefCount< ns3::Packet, ns3::empty, ns3::DefaultDeleter<ns3::Packet> >'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700257 ## random-variable.h (module 'core'): ns3::RandomVariableChecker [class]
258 module.add_class('RandomVariableChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker'])
259 ## random-variable.h (module 'core'): ns3::RandomVariableValue [class]
260 module.add_class('RandomVariableValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
261 ## rocketfuel-weights-reader.h (module 'ndnSIM'): ns3::RocketfuelWeightsReader [class]
262 module.add_class('RocketfuelWeightsReader', parent=root_module['ns3::AnnotatedTopologyReader'])
263 ## rocketfuel-weights-reader.h (module 'ndnSIM'): ns3::RocketfuelWeightsReader [enumeration]
264 module.add_enum('', ['LINKS', 'WEIGHTS', 'LATENCIES', 'POSITIONS'], outer_class=root_module['ns3::RocketfuelWeightsReader'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800265 ## nstime.h (module 'core'): ns3::TimeChecker [class]
266 module.add_class('TimeChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker'])
267 ## nstime.h (module 'core'): ns3::TimeValue [class]
268 module.add_class('TimeValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
269 ## type-id.h (module 'core'): ns3::TypeIdChecker [class]
270 module.add_class('TypeIdChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker'])
271 ## type-id.h (module 'core'): ns3::TypeIdValue [class]
272 module.add_class('TypeIdValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -0700273 ## uinteger.h (module 'core'): ns3::UintegerValue [class]
274 module.add_class('UintegerValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800275 ## address.h (module 'network'): ns3::AddressChecker [class]
276 module.add_class('AddressChecker', import_from_module='ns.network', parent=root_module['ns3::AttributeChecker'])
277 ## address.h (module 'network'): ns3::AddressValue [class]
278 module.add_class('AddressValue', import_from_module='ns.network', parent=root_module['ns3::AttributeValue'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700279 module.add_container('std::map< std::string, std::string >', ('std::string', 'std::string'), container_type='map')
280 module.add_container('std::list< ns3::TopologyReader::Link >', 'ns3::TopologyReader::Link', container_type='list')
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700281 typehandlers.add_type_alias('ns3::RngSeedManager', 'ns3::SeedManager')
282 typehandlers.add_type_alias('ns3::RngSeedManager*', 'ns3::SeedManager*')
283 typehandlers.add_type_alias('ns3::RngSeedManager&', 'ns3::SeedManager&')
284 module.add_typedef(root_module['ns3::RngSeedManager'], 'SeedManager')
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800285
286 ## Register a nested module for the namespace FatalImpl
287
288 nested_module = module.add_cpp_namespace('FatalImpl')
289 register_types_ns3_FatalImpl(nested_module)
290
291
292 ## Register a nested module for the namespace internal
293
294 nested_module = module.add_cpp_namespace('internal')
295 register_types_ns3_internal(nested_module)
296
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700297
298 ## Register a nested module for the namespace ndn
299
300 nested_module = module.add_cpp_namespace('ndn')
301 register_types_ns3_ndn(nested_module)
302
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800303
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800304def register_types_ns3_FatalImpl(module):
305 root_module = module.get_root()
306
307
308def register_types_ns3_internal(module):
309 root_module = module.get_root()
310
311
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700312def register_types_ns3_ndn(module):
313 root_module = module.get_root()
314
315 ## ndn-app.h (module 'ndnSIM'): ns3::ndn::App [class]
316 module.add_class('App', parent=root_module['ns3::Application'])
317 ## ndn-app-helper.h (module 'ndnSIM'): ns3::ndn::AppHelper [class]
318 module.add_class('AppHelper')
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -0800319 ## ndn-content-object.h (module 'ndnSIM'): ns3::ndn::ContentObjectHeader [class]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700320 module.add_class('ContentObjectHeader', parent=root_module['ns3::SimpleRefCount< ns3::ndn::ContentObjectHeader, ns3::Header, ns3::DefaultDeleter<ns3::ndn::ContentObjectHeader> >'])
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -0800321 ## ndn-content-object.h (module 'ndnSIM'): ns3::ndn::ContentObjectHeaderException [class]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700322 module.add_class('ContentObjectHeaderException')
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -0800323 ## ndn-content-object.h (module 'ndnSIM'): ns3::ndn::ContentObjectTail [class]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700324 module.add_class('ContentObjectTail', parent=root_module['ns3::Trailer'])
325 ## ndn-content-store.h (module 'ndnSIM'): ns3::ndn::ContentStore [class]
326 module.add_class('ContentStore', parent=root_module['ns3::Object'])
327 ## ndn-face.h (module 'ndnSIM'): ns3::ndn::Face [class]
328 module.add_class('Face', parent=root_module['ns3::Object'])
329 ## ndn-face-container.h (module 'ndnSIM'): ns3::ndn::FaceContainer [class]
330 module.add_class('FaceContainer', parent=root_module['ns3::SimpleRefCount< ns3::ndn::FaceContainer, ns3::empty, ns3::DefaultDeleter<ns3::ndn::FaceContainer> >'])
331 ## ndn-fib.h (module 'ndnSIM'): ns3::ndn::Fib [class]
332 module.add_class('Fib', parent=root_module['ns3::Object'])
333 ## ndn-forwarding-strategy.h (module 'ndnSIM'): ns3::ndn::ForwardingStrategy [class]
334 module.add_class('ForwardingStrategy', parent=root_module['ns3::Object'])
335 ## ndn-global-routing-helper.h (module 'ndnSIM'): ns3::ndn::GlobalRoutingHelper [class]
336 module.add_class('GlobalRoutingHelper')
337 ## ndn-header-helper.h (module 'ndnSIM'): ns3::ndn::HeaderHelper [class]
338 module.add_class('HeaderHelper')
339 ## ndn-header-helper.h (module 'ndnSIM'): ns3::ndn::HeaderHelper::Type [enumeration]
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -0800340 module.add_enum('Type', ['INTEREST_CCNB', 'CONTENT_OBJECT_CCNB', 'INTEREST_NDNSIM', 'CONTENT_OBJECT_NDNSIM'], outer_class=root_module['ns3::ndn::HeaderHelper'])
341 ## ndn-interest.h (module 'ndnSIM'): ns3::ndn::InterestHeader [class]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700342 module.add_class('InterestHeader', parent=root_module['ns3::SimpleRefCount< ns3::ndn::InterestHeader, ns3::Header, ns3::DefaultDeleter<ns3::ndn::InterestHeader> >'])
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -0800343 ## ndn-interest.h (module 'ndnSIM'): ns3::ndn::InterestHeader [enumeration]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700344 module.add_enum('', ['NORMAL_INTEREST', 'NACK_LOOP', 'NACK_CONGESTION', 'NACK_GIVEUP_PIT'], outer_class=root_module['ns3::ndn::InterestHeader'])
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -0800345 ## ndn-interest.h (module 'ndnSIM'): ns3::ndn::InterestHeaderException [class]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700346 module.add_class('InterestHeaderException')
347 ## ndn-l3-protocol.h (module 'ndnSIM'): ns3::ndn::L3Protocol [class]
348 module.add_class('L3Protocol', parent=root_module['ns3::Object'])
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -0700349 ## ndn-limits.h (module 'ndnSIM'): ns3::ndn::Limits [class]
350 module.add_class('Limits', parent=root_module['ns3::Object'])
Alexander Afanasyev32c07562013-02-01 12:58:43 -0800351 ## ndn-name-components.h (module 'ndnSIM'): ns3::ndn::Name [class]
352 module.add_class('Name', parent=root_module['ns3::SimpleRefCount< ns3::ndn::Name, ns3::empty, ns3::DefaultDeleter<ns3::ndn::Name> >'])
353 ## ndn-name-components.h (module 'ndnSIM'): ns3::ndn::NameChecker [class]
354 module.add_class('NameChecker', parent=root_module['ns3::AttributeChecker'])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700355 ## ndn-name-components.h (module 'ndnSIM'): ns3::ndn::NameComponents [class]
Alexander Afanasyev32c07562013-02-01 12:58:43 -0800356 module.add_class('NameComponents', parent=root_module['ns3::ndn::Name'])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700357 ## ndn-name-components.h (module 'ndnSIM'): ns3::ndn::NameComponentsChecker [class]
358 module.add_class('NameComponentsChecker', parent=root_module['ns3::AttributeChecker'])
359 ## ndn-name-components.h (module 'ndnSIM'): ns3::ndn::NameComponentsValue [class]
360 module.add_class('NameComponentsValue', parent=root_module['ns3::AttributeValue'])
Alexander Afanasyev32c07562013-02-01 12:58:43 -0800361 ## ndn-name-components.h (module 'ndnSIM'): ns3::ndn::NameValue [class]
362 module.add_class('NameValue', parent=root_module['ns3::AttributeValue'])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700363 ## ndn-net-device-face.h (module 'ndnSIM'): ns3::ndn::NetDeviceFace [class]
364 module.add_class('NetDeviceFace', parent=root_module['ns3::ndn::Face'])
365 ## ndn-pit.h (module 'ndnSIM'): ns3::ndn::Pit [class]
366 module.add_class('Pit', parent=root_module['ns3::Object'])
367 ## ndn-stack-helper.h (module 'ndnSIM'): ns3::ndn::StackHelper [class]
368 module.add_class('StackHelper')
369 ## ndn-header-helper.h (module 'ndnSIM'): ns3::ndn::UnknownHeaderException [class]
370 module.add_class('UnknownHeaderException')
371 ## ndn-app-face.h (module 'ndnSIM'): ns3::ndn::AppFace [class]
372 module.add_class('AppFace', parent=root_module['ns3::ndn::Face'])
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -0700373 module.add_container('std::vector< ns3::Ptr< ns3::ndn::Face > >', 'ns3::Ptr< ns3::ndn::Face >', container_type='vector')
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700374 module.add_container('std::list< boost::reference_wrapper< std::string const > >', 'boost::reference_wrapper< std::basic_string< char, std::char_traits< char >, std::allocator< char > > const >', container_type='list')
375 module.add_container('std::list< std::string >', 'std::string', container_type='list')
376
377 ## Register a nested module for the namespace cs
378
379 nested_module = module.add_cpp_namespace('cs')
380 register_types_ns3_ndn_cs(nested_module)
381
382
383 ## Register a nested module for the namespace fib
384
385 nested_module = module.add_cpp_namespace('fib')
386 register_types_ns3_ndn_fib(nested_module)
387
388
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -0700389 ## Register a nested module for the namespace fw
390
391 nested_module = module.add_cpp_namespace('fw')
392 register_types_ns3_ndn_fw(nested_module)
393
394
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700395 ## Register a nested module for the namespace pit
396
397 nested_module = module.add_cpp_namespace('pit')
398 register_types_ns3_ndn_pit(nested_module)
399
400
401def register_types_ns3_ndn_cs(module):
402 root_module = module.get_root()
403
404 ## ndn-content-store.h (module 'ndnSIM'): ns3::ndn::cs::Entry [class]
405 module.add_class('Entry', parent=root_module['ns3::SimpleRefCount< ns3::ndn::cs::Entry, ns3::empty, ns3::DefaultDeleter<ns3::ndn::cs::Entry> >'])
406
407def register_types_ns3_ndn_fib(module):
408 root_module = module.get_root()
409
410 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::Entry [class]
Alexander Afanasyevf5c07742012-10-31 13:13:05 -0700411 module.add_class('Entry', parent=root_module['ns3::Object'])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700412 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::Entry::NoFaces [class]
413 module.add_class('NoFaces', outer_class=root_module['ns3::ndn::fib::Entry'])
414 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::FaceMetric [class]
415 module.add_class('FaceMetric')
416 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::FaceMetric::Status [enumeration]
417 module.add_enum('Status', ['NDN_FIB_GREEN', 'NDN_FIB_YELLOW', 'NDN_FIB_RED'], outer_class=root_module['ns3::ndn::fib::FaceMetric'])
418 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::FaceMetricContainer [struct]
419 module.add_class('FaceMetricContainer')
420 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::i_face [class]
421 module.add_class('i_face')
422 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::i_metric [class]
423 module.add_class('i_metric')
424 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::i_nth [class]
425 module.add_class('i_nth')
426
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -0700427def register_types_ns3_ndn_fw(module):
428 root_module = module.get_root()
429
430 ## ndn-fw-tag.h (module 'ndnSIM'): ns3::ndn::fw::Tag [class]
431 module.add_class('Tag')
432
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700433def register_types_ns3_ndn_pit(module):
434 root_module = module.get_root()
435
436 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::ndn::pit::Entry [class]
437 module.add_class('Entry', parent=root_module['ns3::SimpleRefCount< ns3::ndn::pit::Entry, ns3::empty, ns3::DefaultDeleter<ns3::ndn::pit::Entry> >'])
438 ## ndn-pit-entry-incoming-face.h (module 'ndnSIM'): ns3::ndn::pit::IncomingFace [struct]
439 module.add_class('IncomingFace')
440 ## ndn-pit-entry-outgoing-face.h (module 'ndnSIM'): ns3::ndn::pit::OutgoingFace [struct]
441 module.add_class('OutgoingFace')
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700442 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::ndn::pit::i_face [class]
443 module.add_class('i_face')
444 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::ndn::pit::i_retx [class]
445 module.add_class('i_retx')
446 module.add_container('std::set< ns3::ndn::pit::IncomingFace >', 'ns3::ndn::pit::IncomingFace', container_type='set')
Alexander Afanasyevc202fd92012-09-03 21:46:00 -0700447 module.add_container('std::set< ns3::ndn::pit::OutgoingFace >', 'ns3::ndn::pit::OutgoingFace', container_type='set')
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700448 module.add_container('std::set< unsigned int >', 'unsigned int', container_type='set')
449
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800450def register_methods(root_module):
451 register_Ns3Address_methods(root_module, root_module['ns3::Address'])
452 register_Ns3ApplicationContainer_methods(root_module, root_module['ns3::ApplicationContainer'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800453 register_Ns3AttributeConstructionList_methods(root_module, root_module['ns3::AttributeConstructionList'])
454 register_Ns3AttributeConstructionListItem_methods(root_module, root_module['ns3::AttributeConstructionList::Item'])
455 register_Ns3Buffer_methods(root_module, root_module['ns3::Buffer'])
456 register_Ns3BufferIterator_methods(root_module, root_module['ns3::Buffer::Iterator'])
457 register_Ns3ByteTagIterator_methods(root_module, root_module['ns3::ByteTagIterator'])
458 register_Ns3ByteTagIteratorItem_methods(root_module, root_module['ns3::ByteTagIterator::Item'])
459 register_Ns3ByteTagList_methods(root_module, root_module['ns3::ByteTagList'])
460 register_Ns3ByteTagListIterator_methods(root_module, root_module['ns3::ByteTagList::Iterator'])
461 register_Ns3ByteTagListIteratorItem_methods(root_module, root_module['ns3::ByteTagList::Iterator::Item'])
462 register_Ns3CallbackBase_methods(root_module, root_module['ns3::CallbackBase'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800463 register_Ns3EventId_methods(root_module, root_module['ns3::EventId'])
464 register_Ns3Ipv4Address_methods(root_module, root_module['ns3::Ipv4Address'])
465 register_Ns3Ipv4Mask_methods(root_module, root_module['ns3::Ipv4Mask'])
466 register_Ns3Ipv6Address_methods(root_module, root_module['ns3::Ipv6Address'])
467 register_Ns3Ipv6Prefix_methods(root_module, root_module['ns3::Ipv6Prefix'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700468 register_Ns3NetDeviceContainer_methods(root_module, root_module['ns3::NetDeviceContainer'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800469 register_Ns3NodeContainer_methods(root_module, root_module['ns3::NodeContainer'])
470 register_Ns3ObjectBase_methods(root_module, root_module['ns3::ObjectBase'])
471 register_Ns3ObjectDeleter_methods(root_module, root_module['ns3::ObjectDeleter'])
472 register_Ns3ObjectFactory_methods(root_module, root_module['ns3::ObjectFactory'])
473 register_Ns3PacketMetadata_methods(root_module, root_module['ns3::PacketMetadata'])
474 register_Ns3PacketMetadataItem_methods(root_module, root_module['ns3::PacketMetadata::Item'])
475 register_Ns3PacketMetadataItemIterator_methods(root_module, root_module['ns3::PacketMetadata::ItemIterator'])
Alexander Afanasyevad5acce2012-05-31 12:43:08 -0700476 register_Ns3PacketTagIterator_methods(root_module, root_module['ns3::PacketTagIterator'])
477 register_Ns3PacketTagIteratorItem_methods(root_module, root_module['ns3::PacketTagIterator::Item'])
478 register_Ns3PacketTagList_methods(root_module, root_module['ns3::PacketTagList'])
479 register_Ns3PacketTagListTagData_methods(root_module, root_module['ns3::PacketTagList::TagData'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700480 register_Ns3RandomVariable_methods(root_module, root_module['ns3::RandomVariable'])
481 register_Ns3RngSeedManager_methods(root_module, root_module['ns3::RngSeedManager'])
482 register_Ns3SequentialVariable_methods(root_module, root_module['ns3::SequentialVariable'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800483 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 -0700484 register_Ns3Tag_methods(root_module, root_module['ns3::Tag'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800485 register_Ns3TagBuffer_methods(root_module, root_module['ns3::TagBuffer'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700486 register_Ns3TriangularVariable_methods(root_module, root_module['ns3::TriangularVariable'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800487 register_Ns3TypeId_methods(root_module, root_module['ns3::TypeId'])
488 register_Ns3TypeIdAttributeInformation_methods(root_module, root_module['ns3::TypeId::AttributeInformation'])
489 register_Ns3TypeIdTraceSourceInformation_methods(root_module, root_module['ns3::TypeId::TraceSourceInformation'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700490 register_Ns3UniformVariable_methods(root_module, root_module['ns3::UniformVariable'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700491 register_Ns3WeibullVariable_methods(root_module, root_module['ns3::WeibullVariable'])
492 register_Ns3ZetaVariable_methods(root_module, root_module['ns3::ZetaVariable'])
493 register_Ns3ZipfVariable_methods(root_module, root_module['ns3::ZipfVariable'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800494 register_Ns3Empty_methods(root_module, root_module['ns3::empty'])
495 register_Ns3Int64x64_t_methods(root_module, root_module['ns3::int64x64_t'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800496 register_Ns3Chunk_methods(root_module, root_module['ns3::Chunk'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700497 register_Ns3ConstantVariable_methods(root_module, root_module['ns3::ConstantVariable'])
498 register_Ns3DeterministicVariable_methods(root_module, root_module['ns3::DeterministicVariable'])
499 register_Ns3EmpiricalVariable_methods(root_module, root_module['ns3::EmpiricalVariable'])
500 register_Ns3ErlangVariable_methods(root_module, root_module['ns3::ErlangVariable'])
501 register_Ns3ExponentialVariable_methods(root_module, root_module['ns3::ExponentialVariable'])
502 register_Ns3GammaVariable_methods(root_module, root_module['ns3::GammaVariable'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800503 register_Ns3Header_methods(root_module, root_module['ns3::Header'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700504 register_Ns3IntEmpiricalVariable_methods(root_module, root_module['ns3::IntEmpiricalVariable'])
505 register_Ns3LogNormalVariable_methods(root_module, root_module['ns3::LogNormalVariable'])
506 register_Ns3NormalVariable_methods(root_module, root_module['ns3::NormalVariable'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800507 register_Ns3Object_methods(root_module, root_module['ns3::Object'])
508 register_Ns3ObjectAggregateIterator_methods(root_module, root_module['ns3::Object::AggregateIterator'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700509 register_Ns3ParetoVariable_methods(root_module, root_module['ns3::ParetoVariable'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800510 register_Ns3SimpleRefCount__Ns3AttributeAccessor_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeAccessor__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> >'])
511 register_Ns3SimpleRefCount__Ns3AttributeChecker_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeChecker__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter<ns3::AttributeChecker> >'])
512 register_Ns3SimpleRefCount__Ns3AttributeValue_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeValue__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter<ns3::AttributeValue> >'])
513 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 -0800514 register_Ns3SimpleRefCount__Ns3EventImpl_Ns3Empty_Ns3DefaultDeleter__lt__ns3EventImpl__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::EventImpl, ns3::empty, ns3::DefaultDeleter<ns3::EventImpl> >'])
515 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 -0800516 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 -0700517 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 -0800518 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 -0700519 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> >'])
520 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> >'])
521 register_Ns3SimpleRefCount__Ns3NdnInterestHeader_Ns3Header_Ns3DefaultDeleter__lt__ns3NdnInterestHeader__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::ndn::InterestHeader, ns3::Header, ns3::DefaultDeleter<ns3::ndn::InterestHeader> >'])
Alexander Afanasyev32c07562013-02-01 12:58:43 -0800522 register_Ns3SimpleRefCount__Ns3NdnName_Ns3Empty_Ns3DefaultDeleter__lt__ns3NdnName__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::ndn::Name, ns3::empty, ns3::DefaultDeleter<ns3::ndn::Name> >'])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700523 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 -0700524 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 -0800525 register_Ns3Time_methods(root_module, root_module['ns3::Time'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700526 register_Ns3TopologyReader_methods(root_module, root_module['ns3::TopologyReader'])
527 register_Ns3TopologyReaderLink_methods(root_module, root_module['ns3::TopologyReader::Link'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800528 register_Ns3TraceSourceAccessor_methods(root_module, root_module['ns3::TraceSourceAccessor'])
529 register_Ns3Trailer_methods(root_module, root_module['ns3::Trailer'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700530 register_Ns3AnnotatedTopologyReader_methods(root_module, root_module['ns3::AnnotatedTopologyReader'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800531 register_Ns3Application_methods(root_module, root_module['ns3::Application'])
532 register_Ns3AttributeAccessor_methods(root_module, root_module['ns3::AttributeAccessor'])
533 register_Ns3AttributeChecker_methods(root_module, root_module['ns3::AttributeChecker'])
534 register_Ns3AttributeValue_methods(root_module, root_module['ns3::AttributeValue'])
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -0700535 register_Ns3BooleanChecker_methods(root_module, root_module['ns3::BooleanChecker'])
536 register_Ns3BooleanValue_methods(root_module, root_module['ns3::BooleanValue'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800537 register_Ns3CallbackChecker_methods(root_module, root_module['ns3::CallbackChecker'])
538 register_Ns3CallbackImplBase_methods(root_module, root_module['ns3::CallbackImplBase'])
539 register_Ns3CallbackValue_methods(root_module, root_module['ns3::CallbackValue'])
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -0700540 register_Ns3DoubleValue_methods(root_module, root_module['ns3::DoubleValue'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800541 register_Ns3EmptyAttributeValue_methods(root_module, root_module['ns3::EmptyAttributeValue'])
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -0700542 register_Ns3EnumChecker_methods(root_module, root_module['ns3::EnumChecker'])
543 register_Ns3EnumValue_methods(root_module, root_module['ns3::EnumValue'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800544 register_Ns3EventImpl_methods(root_module, root_module['ns3::EventImpl'])
545 register_Ns3IntegerValue_methods(root_module, root_module['ns3::IntegerValue'])
546 register_Ns3Ipv4AddressChecker_methods(root_module, root_module['ns3::Ipv4AddressChecker'])
547 register_Ns3Ipv4AddressValue_methods(root_module, root_module['ns3::Ipv4AddressValue'])
548 register_Ns3Ipv4MaskChecker_methods(root_module, root_module['ns3::Ipv4MaskChecker'])
549 register_Ns3Ipv4MaskValue_methods(root_module, root_module['ns3::Ipv4MaskValue'])
550 register_Ns3Ipv6AddressChecker_methods(root_module, root_module['ns3::Ipv6AddressChecker'])
551 register_Ns3Ipv6AddressValue_methods(root_module, root_module['ns3::Ipv6AddressValue'])
552 register_Ns3Ipv6PrefixChecker_methods(root_module, root_module['ns3::Ipv6PrefixChecker'])
553 register_Ns3Ipv6PrefixValue_methods(root_module, root_module['ns3::Ipv6PrefixValue'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800554 register_Ns3NetDevice_methods(root_module, root_module['ns3::NetDevice'])
555 register_Ns3NixVector_methods(root_module, root_module['ns3::NixVector'])
556 register_Ns3Node_methods(root_module, root_module['ns3::Node'])
557 register_Ns3ObjectFactoryChecker_methods(root_module, root_module['ns3::ObjectFactoryChecker'])
558 register_Ns3ObjectFactoryValue_methods(root_module, root_module['ns3::ObjectFactoryValue'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800559 register_Ns3Packet_methods(root_module, root_module['ns3::Packet'])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -0700560 register_Ns3RandomVariableChecker_methods(root_module, root_module['ns3::RandomVariableChecker'])
561 register_Ns3RandomVariableValue_methods(root_module, root_module['ns3::RandomVariableValue'])
562 register_Ns3RocketfuelWeightsReader_methods(root_module, root_module['ns3::RocketfuelWeightsReader'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800563 register_Ns3TimeChecker_methods(root_module, root_module['ns3::TimeChecker'])
564 register_Ns3TimeValue_methods(root_module, root_module['ns3::TimeValue'])
565 register_Ns3TypeIdChecker_methods(root_module, root_module['ns3::TypeIdChecker'])
566 register_Ns3TypeIdValue_methods(root_module, root_module['ns3::TypeIdValue'])
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -0700567 register_Ns3UintegerValue_methods(root_module, root_module['ns3::UintegerValue'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800568 register_Ns3AddressChecker_methods(root_module, root_module['ns3::AddressChecker'])
569 register_Ns3AddressValue_methods(root_module, root_module['ns3::AddressValue'])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700570 register_Ns3NdnApp_methods(root_module, root_module['ns3::ndn::App'])
571 register_Ns3NdnAppHelper_methods(root_module, root_module['ns3::ndn::AppHelper'])
572 register_Ns3NdnContentObjectHeader_methods(root_module, root_module['ns3::ndn::ContentObjectHeader'])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700573 register_Ns3NdnContentObjectHeaderException_methods(root_module, root_module['ns3::ndn::ContentObjectHeaderException'])
574 register_Ns3NdnContentObjectTail_methods(root_module, root_module['ns3::ndn::ContentObjectTail'])
575 register_Ns3NdnContentStore_methods(root_module, root_module['ns3::ndn::ContentStore'])
576 register_Ns3NdnFace_methods(root_module, root_module['ns3::ndn::Face'])
577 register_Ns3NdnFaceContainer_methods(root_module, root_module['ns3::ndn::FaceContainer'])
578 register_Ns3NdnFib_methods(root_module, root_module['ns3::ndn::Fib'])
579 register_Ns3NdnForwardingStrategy_methods(root_module, root_module['ns3::ndn::ForwardingStrategy'])
580 register_Ns3NdnGlobalRoutingHelper_methods(root_module, root_module['ns3::ndn::GlobalRoutingHelper'])
581 register_Ns3NdnHeaderHelper_methods(root_module, root_module['ns3::ndn::HeaderHelper'])
582 register_Ns3NdnInterestHeader_methods(root_module, root_module['ns3::ndn::InterestHeader'])
583 register_Ns3NdnInterestHeaderException_methods(root_module, root_module['ns3::ndn::InterestHeaderException'])
584 register_Ns3NdnL3Protocol_methods(root_module, root_module['ns3::ndn::L3Protocol'])
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -0700585 register_Ns3NdnLimits_methods(root_module, root_module['ns3::ndn::Limits'])
Alexander Afanasyev32c07562013-02-01 12:58:43 -0800586 register_Ns3NdnName_methods(root_module, root_module['ns3::ndn::Name'])
587 register_Ns3NdnNameChecker_methods(root_module, root_module['ns3::ndn::NameChecker'])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700588 register_Ns3NdnNameComponents_methods(root_module, root_module['ns3::ndn::NameComponents'])
589 register_Ns3NdnNameComponentsChecker_methods(root_module, root_module['ns3::ndn::NameComponentsChecker'])
590 register_Ns3NdnNameComponentsValue_methods(root_module, root_module['ns3::ndn::NameComponentsValue'])
Alexander Afanasyev32c07562013-02-01 12:58:43 -0800591 register_Ns3NdnNameValue_methods(root_module, root_module['ns3::ndn::NameValue'])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700592 register_Ns3NdnNetDeviceFace_methods(root_module, root_module['ns3::ndn::NetDeviceFace'])
593 register_Ns3NdnPit_methods(root_module, root_module['ns3::ndn::Pit'])
594 register_Ns3NdnStackHelper_methods(root_module, root_module['ns3::ndn::StackHelper'])
595 register_Ns3NdnUnknownHeaderException_methods(root_module, root_module['ns3::ndn::UnknownHeaderException'])
596 register_Ns3NdnAppFace_methods(root_module, root_module['ns3::ndn::AppFace'])
597 register_Ns3NdnCsEntry_methods(root_module, root_module['ns3::ndn::cs::Entry'])
598 register_Ns3NdnFibEntry_methods(root_module, root_module['ns3::ndn::fib::Entry'])
599 register_Ns3NdnFibEntryNoFaces_methods(root_module, root_module['ns3::ndn::fib::Entry::NoFaces'])
600 register_Ns3NdnFibFaceMetric_methods(root_module, root_module['ns3::ndn::fib::FaceMetric'])
601 register_Ns3NdnFibFaceMetricContainer_methods(root_module, root_module['ns3::ndn::fib::FaceMetricContainer'])
602 register_Ns3NdnFibI_face_methods(root_module, root_module['ns3::ndn::fib::i_face'])
603 register_Ns3NdnFibI_metric_methods(root_module, root_module['ns3::ndn::fib::i_metric'])
604 register_Ns3NdnFibI_nth_methods(root_module, root_module['ns3::ndn::fib::i_nth'])
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -0700605 register_Ns3NdnFwTag_methods(root_module, root_module['ns3::ndn::fw::Tag'])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700606 register_Ns3NdnPitEntry_methods(root_module, root_module['ns3::ndn::pit::Entry'])
607 register_Ns3NdnPitIncomingFace_methods(root_module, root_module['ns3::ndn::pit::IncomingFace'])
608 register_Ns3NdnPitOutgoingFace_methods(root_module, root_module['ns3::ndn::pit::OutgoingFace'])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700609 register_Ns3NdnPitI_face_methods(root_module, root_module['ns3::ndn::pit::i_face'])
610 register_Ns3NdnPitI_retx_methods(root_module, root_module['ns3::ndn::pit::i_retx'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800611 return
612
613def register_Ns3Address_methods(root_module, cls):
614 cls.add_binary_comparison_operator('!=')
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -0700615 cls.add_output_stream_operator()
Alexander Afanasyeva28ec562012-10-25 14:07:32 -0700616 cls.add_binary_comparison_operator('==')
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800617 cls.add_binary_comparison_operator('<')
618 ## address.h (module 'network'): ns3::Address::Address() [constructor]
619 cls.add_constructor([])
620 ## address.h (module 'network'): ns3::Address::Address(uint8_t type, uint8_t const * buffer, uint8_t len) [constructor]
621 cls.add_constructor([param('uint8_t', 'type'), param('uint8_t const *', 'buffer'), param('uint8_t', 'len')])
622 ## address.h (module 'network'): ns3::Address::Address(ns3::Address const & address) [copy constructor]
623 cls.add_constructor([param('ns3::Address const &', 'address')])
624 ## address.h (module 'network'): bool ns3::Address::CheckCompatible(uint8_t type, uint8_t len) const [member function]
625 cls.add_method('CheckCompatible',
626 'bool',
627 [param('uint8_t', 'type'), param('uint8_t', 'len')],
628 is_const=True)
629 ## address.h (module 'network'): uint32_t ns3::Address::CopyAllFrom(uint8_t const * buffer, uint8_t len) [member function]
630 cls.add_method('CopyAllFrom',
631 'uint32_t',
632 [param('uint8_t const *', 'buffer'), param('uint8_t', 'len')])
633 ## address.h (module 'network'): uint32_t ns3::Address::CopyAllTo(uint8_t * buffer, uint8_t len) const [member function]
634 cls.add_method('CopyAllTo',
635 'uint32_t',
636 [param('uint8_t *', 'buffer'), param('uint8_t', 'len')],
637 is_const=True)
638 ## address.h (module 'network'): uint32_t ns3::Address::CopyFrom(uint8_t const * buffer, uint8_t len) [member function]
639 cls.add_method('CopyFrom',
640 'uint32_t',
641 [param('uint8_t const *', 'buffer'), param('uint8_t', 'len')])
642 ## address.h (module 'network'): uint32_t ns3::Address::CopyTo(uint8_t * buffer) const [member function]
643 cls.add_method('CopyTo',
644 'uint32_t',
645 [param('uint8_t *', 'buffer')],
646 is_const=True)
647 ## address.h (module 'network'): void ns3::Address::Deserialize(ns3::TagBuffer buffer) [member function]
648 cls.add_method('Deserialize',
649 'void',
650 [param('ns3::TagBuffer', 'buffer')])
651 ## address.h (module 'network'): uint8_t ns3::Address::GetLength() const [member function]
652 cls.add_method('GetLength',
653 'uint8_t',
654 [],
655 is_const=True)
656 ## address.h (module 'network'): uint32_t ns3::Address::GetSerializedSize() const [member function]
657 cls.add_method('GetSerializedSize',
658 'uint32_t',
659 [],
660 is_const=True)
661 ## address.h (module 'network'): bool ns3::Address::IsInvalid() const [member function]
662 cls.add_method('IsInvalid',
663 'bool',
664 [],
665 is_const=True)
666 ## address.h (module 'network'): bool ns3::Address::IsMatchingType(uint8_t type) const [member function]
667 cls.add_method('IsMatchingType',
668 'bool',
669 [param('uint8_t', 'type')],
670 is_const=True)
671 ## address.h (module 'network'): static uint8_t ns3::Address::Register() [member function]
672 cls.add_method('Register',
673 'uint8_t',
674 [],
675 is_static=True)
676 ## address.h (module 'network'): void ns3::Address::Serialize(ns3::TagBuffer buffer) const [member function]
677 cls.add_method('Serialize',
678 'void',
679 [param('ns3::TagBuffer', 'buffer')],
680 is_const=True)
681 return
682
683def register_Ns3ApplicationContainer_methods(root_module, cls):
684 ## application-container.h (module 'network'): ns3::ApplicationContainer::ApplicationContainer(ns3::ApplicationContainer const & arg0) [copy constructor]
685 cls.add_constructor([param('ns3::ApplicationContainer const &', 'arg0')])
686 ## application-container.h (module 'network'): ns3::ApplicationContainer::ApplicationContainer() [constructor]
687 cls.add_constructor([])
688 ## application-container.h (module 'network'): ns3::ApplicationContainer::ApplicationContainer(ns3::Ptr<ns3::Application> application) [constructor]
689 cls.add_constructor([param('ns3::Ptr< ns3::Application >', 'application')])
690 ## application-container.h (module 'network'): ns3::ApplicationContainer::ApplicationContainer(std::string name) [constructor]
691 cls.add_constructor([param('std::string', 'name')])
692 ## application-container.h (module 'network'): void ns3::ApplicationContainer::Add(ns3::ApplicationContainer other) [member function]
693 cls.add_method('Add',
694 'void',
695 [param('ns3::ApplicationContainer', 'other')])
696 ## application-container.h (module 'network'): void ns3::ApplicationContainer::Add(ns3::Ptr<ns3::Application> application) [member function]
697 cls.add_method('Add',
698 'void',
699 [param('ns3::Ptr< ns3::Application >', 'application')])
700 ## application-container.h (module 'network'): void ns3::ApplicationContainer::Add(std::string name) [member function]
701 cls.add_method('Add',
702 'void',
703 [param('std::string', 'name')])
704 ## 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]
705 cls.add_method('Begin',
706 '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Application > const, std::vector< ns3::Ptr< ns3::Application > > >',
707 [],
708 is_const=True)
709 ## 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]
710 cls.add_method('End',
711 '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Application > const, std::vector< ns3::Ptr< ns3::Application > > >',
712 [],
713 is_const=True)
714 ## application-container.h (module 'network'): ns3::Ptr<ns3::Application> ns3::ApplicationContainer::Get(uint32_t i) const [member function]
715 cls.add_method('Get',
716 'ns3::Ptr< ns3::Application >',
717 [param('uint32_t', 'i')],
718 is_const=True)
719 ## application-container.h (module 'network'): uint32_t ns3::ApplicationContainer::GetN() const [member function]
720 cls.add_method('GetN',
721 'uint32_t',
722 [],
723 is_const=True)
724 ## application-container.h (module 'network'): void ns3::ApplicationContainer::Start(ns3::Time start) [member function]
725 cls.add_method('Start',
726 'void',
727 [param('ns3::Time', 'start')])
728 ## application-container.h (module 'network'): void ns3::ApplicationContainer::Stop(ns3::Time stop) [member function]
729 cls.add_method('Stop',
730 'void',
731 [param('ns3::Time', 'stop')])
732 return
733
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800734def register_Ns3AttributeConstructionList_methods(root_module, cls):
735 ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::AttributeConstructionList(ns3::AttributeConstructionList const & arg0) [copy constructor]
736 cls.add_constructor([param('ns3::AttributeConstructionList const &', 'arg0')])
737 ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::AttributeConstructionList() [constructor]
738 cls.add_constructor([])
739 ## 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]
740 cls.add_method('Add',
741 'void',
742 [param('std::string', 'name'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker'), param('ns3::Ptr< ns3::AttributeValue >', 'value')])
743 ## attribute-construction-list.h (module 'core'): std::_List_const_iterator<ns3::AttributeConstructionList::Item> ns3::AttributeConstructionList::Begin() const [member function]
744 cls.add_method('Begin',
745 'std::_List_const_iterator< ns3::AttributeConstructionList::Item >',
746 [],
747 is_const=True)
748 ## attribute-construction-list.h (module 'core'): std::_List_const_iterator<ns3::AttributeConstructionList::Item> ns3::AttributeConstructionList::End() const [member function]
749 cls.add_method('End',
750 'std::_List_const_iterator< ns3::AttributeConstructionList::Item >',
751 [],
752 is_const=True)
753 ## attribute-construction-list.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::AttributeConstructionList::Find(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
754 cls.add_method('Find',
755 'ns3::Ptr< ns3::AttributeValue >',
756 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
757 is_const=True)
758 return
759
760def register_Ns3AttributeConstructionListItem_methods(root_module, cls):
761 ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item::Item() [constructor]
762 cls.add_constructor([])
763 ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item::Item(ns3::AttributeConstructionList::Item const & arg0) [copy constructor]
764 cls.add_constructor([param('ns3::AttributeConstructionList::Item const &', 'arg0')])
765 ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item::checker [variable]
766 cls.add_instance_attribute('checker', 'ns3::Ptr< ns3::AttributeChecker const >', is_const=False)
767 ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item::name [variable]
768 cls.add_instance_attribute('name', 'std::string', is_const=False)
769 ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item::value [variable]
770 cls.add_instance_attribute('value', 'ns3::Ptr< ns3::AttributeValue >', is_const=False)
771 return
772
773def register_Ns3Buffer_methods(root_module, cls):
774 ## buffer.h (module 'network'): ns3::Buffer::Buffer() [constructor]
775 cls.add_constructor([])
776 ## buffer.h (module 'network'): ns3::Buffer::Buffer(uint32_t dataSize) [constructor]
777 cls.add_constructor([param('uint32_t', 'dataSize')])
778 ## buffer.h (module 'network'): ns3::Buffer::Buffer(uint32_t dataSize, bool initialize) [constructor]
779 cls.add_constructor([param('uint32_t', 'dataSize'), param('bool', 'initialize')])
780 ## buffer.h (module 'network'): ns3::Buffer::Buffer(ns3::Buffer const & o) [copy constructor]
781 cls.add_constructor([param('ns3::Buffer const &', 'o')])
782 ## buffer.h (module 'network'): bool ns3::Buffer::AddAtEnd(uint32_t end) [member function]
783 cls.add_method('AddAtEnd',
784 'bool',
785 [param('uint32_t', 'end')])
786 ## buffer.h (module 'network'): void ns3::Buffer::AddAtEnd(ns3::Buffer const & o) [member function]
787 cls.add_method('AddAtEnd',
788 'void',
789 [param('ns3::Buffer const &', 'o')])
790 ## buffer.h (module 'network'): bool ns3::Buffer::AddAtStart(uint32_t start) [member function]
791 cls.add_method('AddAtStart',
792 'bool',
793 [param('uint32_t', 'start')])
794 ## buffer.h (module 'network'): ns3::Buffer::Iterator ns3::Buffer::Begin() const [member function]
795 cls.add_method('Begin',
796 'ns3::Buffer::Iterator',
797 [],
798 is_const=True)
799 ## buffer.h (module 'network'): void ns3::Buffer::CopyData(std::ostream * os, uint32_t size) const [member function]
800 cls.add_method('CopyData',
801 'void',
802 [param('std::ostream *', 'os'), param('uint32_t', 'size')],
803 is_const=True)
804 ## buffer.h (module 'network'): uint32_t ns3::Buffer::CopyData(uint8_t * buffer, uint32_t size) const [member function]
805 cls.add_method('CopyData',
806 'uint32_t',
807 [param('uint8_t *', 'buffer'), param('uint32_t', 'size')],
808 is_const=True)
809 ## buffer.h (module 'network'): ns3::Buffer ns3::Buffer::CreateFragment(uint32_t start, uint32_t length) const [member function]
810 cls.add_method('CreateFragment',
811 'ns3::Buffer',
812 [param('uint32_t', 'start'), param('uint32_t', 'length')],
813 is_const=True)
814 ## buffer.h (module 'network'): ns3::Buffer ns3::Buffer::CreateFullCopy() const [member function]
815 cls.add_method('CreateFullCopy',
816 'ns3::Buffer',
817 [],
818 is_const=True)
819 ## buffer.h (module 'network'): uint32_t ns3::Buffer::Deserialize(uint8_t const * buffer, uint32_t size) [member function]
820 cls.add_method('Deserialize',
821 'uint32_t',
822 [param('uint8_t const *', 'buffer'), param('uint32_t', 'size')])
823 ## buffer.h (module 'network'): ns3::Buffer::Iterator ns3::Buffer::End() const [member function]
824 cls.add_method('End',
825 'ns3::Buffer::Iterator',
826 [],
827 is_const=True)
828 ## buffer.h (module 'network'): int32_t ns3::Buffer::GetCurrentEndOffset() const [member function]
829 cls.add_method('GetCurrentEndOffset',
830 'int32_t',
831 [],
832 is_const=True)
833 ## buffer.h (module 'network'): int32_t ns3::Buffer::GetCurrentStartOffset() const [member function]
834 cls.add_method('GetCurrentStartOffset',
835 'int32_t',
836 [],
837 is_const=True)
838 ## buffer.h (module 'network'): uint32_t ns3::Buffer::GetSerializedSize() const [member function]
839 cls.add_method('GetSerializedSize',
840 'uint32_t',
841 [],
842 is_const=True)
843 ## buffer.h (module 'network'): uint32_t ns3::Buffer::GetSize() const [member function]
844 cls.add_method('GetSize',
845 'uint32_t',
846 [],
847 is_const=True)
848 ## buffer.h (module 'network'): uint8_t const * ns3::Buffer::PeekData() const [member function]
849 cls.add_method('PeekData',
850 'uint8_t const *',
851 [],
852 is_const=True)
853 ## buffer.h (module 'network'): void ns3::Buffer::RemoveAtEnd(uint32_t end) [member function]
854 cls.add_method('RemoveAtEnd',
855 'void',
856 [param('uint32_t', 'end')])
857 ## buffer.h (module 'network'): void ns3::Buffer::RemoveAtStart(uint32_t start) [member function]
858 cls.add_method('RemoveAtStart',
859 'void',
860 [param('uint32_t', 'start')])
861 ## buffer.h (module 'network'): uint32_t ns3::Buffer::Serialize(uint8_t * buffer, uint32_t maxSize) const [member function]
862 cls.add_method('Serialize',
863 'uint32_t',
864 [param('uint8_t *', 'buffer'), param('uint32_t', 'maxSize')],
865 is_const=True)
866 return
867
868def register_Ns3BufferIterator_methods(root_module, cls):
869 ## buffer.h (module 'network'): ns3::Buffer::Iterator::Iterator(ns3::Buffer::Iterator const & arg0) [copy constructor]
870 cls.add_constructor([param('ns3::Buffer::Iterator const &', 'arg0')])
871 ## buffer.h (module 'network'): ns3::Buffer::Iterator::Iterator() [constructor]
872 cls.add_constructor([])
873 ## buffer.h (module 'network'): uint16_t ns3::Buffer::Iterator::CalculateIpChecksum(uint16_t size) [member function]
874 cls.add_method('CalculateIpChecksum',
875 'uint16_t',
876 [param('uint16_t', 'size')])
877 ## buffer.h (module 'network'): uint16_t ns3::Buffer::Iterator::CalculateIpChecksum(uint16_t size, uint32_t initialChecksum) [member function]
878 cls.add_method('CalculateIpChecksum',
879 'uint16_t',
880 [param('uint16_t', 'size'), param('uint32_t', 'initialChecksum')])
881 ## buffer.h (module 'network'): uint32_t ns3::Buffer::Iterator::GetDistanceFrom(ns3::Buffer::Iterator const & o) const [member function]
882 cls.add_method('GetDistanceFrom',
883 'uint32_t',
884 [param('ns3::Buffer::Iterator const &', 'o')],
885 is_const=True)
886 ## buffer.h (module 'network'): uint32_t ns3::Buffer::Iterator::GetSize() const [member function]
887 cls.add_method('GetSize',
888 'uint32_t',
889 [],
890 is_const=True)
891 ## buffer.h (module 'network'): bool ns3::Buffer::Iterator::IsEnd() const [member function]
892 cls.add_method('IsEnd',
893 'bool',
894 [],
895 is_const=True)
896 ## buffer.h (module 'network'): bool ns3::Buffer::Iterator::IsStart() const [member function]
897 cls.add_method('IsStart',
898 'bool',
899 [],
900 is_const=True)
901 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Next() [member function]
902 cls.add_method('Next',
903 'void',
904 [])
905 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Next(uint32_t delta) [member function]
906 cls.add_method('Next',
907 'void',
908 [param('uint32_t', 'delta')])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -0700909 ## buffer.h (module 'network'): uint8_t ns3::Buffer::Iterator::PeekU8() [member function]
910 cls.add_method('PeekU8',
911 'uint8_t',
912 [])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800913 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Prev() [member function]
914 cls.add_method('Prev',
915 'void',
916 [])
917 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Prev(uint32_t delta) [member function]
918 cls.add_method('Prev',
919 'void',
920 [param('uint32_t', 'delta')])
921 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Read(uint8_t * buffer, uint32_t size) [member function]
922 cls.add_method('Read',
923 'void',
924 [param('uint8_t *', 'buffer'), param('uint32_t', 'size')])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -0700925 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Read(ns3::Buffer::Iterator start, uint32_t size) [member function]
926 cls.add_method('Read',
927 'void',
928 [param('ns3::Buffer::Iterator', 'start'), param('uint32_t', 'size')])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800929 ## buffer.h (module 'network'): uint16_t ns3::Buffer::Iterator::ReadLsbtohU16() [member function]
930 cls.add_method('ReadLsbtohU16',
931 'uint16_t',
932 [])
933 ## buffer.h (module 'network'): uint32_t ns3::Buffer::Iterator::ReadLsbtohU32() [member function]
934 cls.add_method('ReadLsbtohU32',
935 'uint32_t',
936 [])
937 ## buffer.h (module 'network'): uint64_t ns3::Buffer::Iterator::ReadLsbtohU64() [member function]
938 cls.add_method('ReadLsbtohU64',
939 'uint64_t',
940 [])
941 ## buffer.h (module 'network'): uint16_t ns3::Buffer::Iterator::ReadNtohU16() [member function]
942 cls.add_method('ReadNtohU16',
943 'uint16_t',
944 [])
945 ## buffer.h (module 'network'): uint32_t ns3::Buffer::Iterator::ReadNtohU32() [member function]
946 cls.add_method('ReadNtohU32',
947 'uint32_t',
948 [])
949 ## buffer.h (module 'network'): uint64_t ns3::Buffer::Iterator::ReadNtohU64() [member function]
950 cls.add_method('ReadNtohU64',
951 'uint64_t',
952 [])
953 ## buffer.h (module 'network'): uint16_t ns3::Buffer::Iterator::ReadU16() [member function]
954 cls.add_method('ReadU16',
955 'uint16_t',
956 [])
957 ## buffer.h (module 'network'): uint32_t ns3::Buffer::Iterator::ReadU32() [member function]
958 cls.add_method('ReadU32',
959 'uint32_t',
960 [])
961 ## buffer.h (module 'network'): uint64_t ns3::Buffer::Iterator::ReadU64() [member function]
962 cls.add_method('ReadU64',
963 'uint64_t',
964 [])
965 ## buffer.h (module 'network'): uint8_t ns3::Buffer::Iterator::ReadU8() [member function]
966 cls.add_method('ReadU8',
967 'uint8_t',
968 [])
969 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Write(uint8_t const * buffer, uint32_t size) [member function]
970 cls.add_method('Write',
971 'void',
972 [param('uint8_t const *', 'buffer'), param('uint32_t', 'size')])
973 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Write(ns3::Buffer::Iterator start, ns3::Buffer::Iterator end) [member function]
974 cls.add_method('Write',
975 'void',
976 [param('ns3::Buffer::Iterator', 'start'), param('ns3::Buffer::Iterator', 'end')])
977 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteHtolsbU16(uint16_t data) [member function]
978 cls.add_method('WriteHtolsbU16',
979 'void',
980 [param('uint16_t', 'data')])
981 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteHtolsbU32(uint32_t data) [member function]
982 cls.add_method('WriteHtolsbU32',
983 'void',
984 [param('uint32_t', 'data')])
985 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteHtolsbU64(uint64_t data) [member function]
986 cls.add_method('WriteHtolsbU64',
987 'void',
988 [param('uint64_t', 'data')])
989 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteHtonU16(uint16_t data) [member function]
990 cls.add_method('WriteHtonU16',
991 'void',
992 [param('uint16_t', 'data')])
993 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteHtonU32(uint32_t data) [member function]
994 cls.add_method('WriteHtonU32',
995 'void',
996 [param('uint32_t', 'data')])
997 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteHtonU64(uint64_t data) [member function]
998 cls.add_method('WriteHtonU64',
999 'void',
1000 [param('uint64_t', 'data')])
1001 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteU16(uint16_t data) [member function]
1002 cls.add_method('WriteU16',
1003 'void',
1004 [param('uint16_t', 'data')])
1005 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteU32(uint32_t data) [member function]
1006 cls.add_method('WriteU32',
1007 'void',
1008 [param('uint32_t', 'data')])
1009 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteU64(uint64_t data) [member function]
1010 cls.add_method('WriteU64',
1011 'void',
1012 [param('uint64_t', 'data')])
1013 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteU8(uint8_t data) [member function]
1014 cls.add_method('WriteU8',
1015 'void',
1016 [param('uint8_t', 'data')])
1017 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteU8(uint8_t data, uint32_t len) [member function]
1018 cls.add_method('WriteU8',
1019 'void',
1020 [param('uint8_t', 'data'), param('uint32_t', 'len')])
1021 return
1022
1023def register_Ns3ByteTagIterator_methods(root_module, cls):
1024 ## packet.h (module 'network'): ns3::ByteTagIterator::ByteTagIterator(ns3::ByteTagIterator const & arg0) [copy constructor]
1025 cls.add_constructor([param('ns3::ByteTagIterator const &', 'arg0')])
1026 ## packet.h (module 'network'): bool ns3::ByteTagIterator::HasNext() const [member function]
1027 cls.add_method('HasNext',
1028 'bool',
1029 [],
1030 is_const=True)
1031 ## packet.h (module 'network'): ns3::ByteTagIterator::Item ns3::ByteTagIterator::Next() [member function]
1032 cls.add_method('Next',
1033 'ns3::ByteTagIterator::Item',
1034 [])
1035 return
1036
1037def register_Ns3ByteTagIteratorItem_methods(root_module, cls):
1038 ## packet.h (module 'network'): ns3::ByteTagIterator::Item::Item(ns3::ByteTagIterator::Item const & arg0) [copy constructor]
1039 cls.add_constructor([param('ns3::ByteTagIterator::Item const &', 'arg0')])
1040 ## packet.h (module 'network'): uint32_t ns3::ByteTagIterator::Item::GetEnd() const [member function]
1041 cls.add_method('GetEnd',
1042 'uint32_t',
1043 [],
1044 is_const=True)
1045 ## packet.h (module 'network'): uint32_t ns3::ByteTagIterator::Item::GetStart() const [member function]
1046 cls.add_method('GetStart',
1047 'uint32_t',
1048 [],
1049 is_const=True)
1050 ## packet.h (module 'network'): void ns3::ByteTagIterator::Item::GetTag(ns3::Tag & tag) const [member function]
1051 cls.add_method('GetTag',
1052 'void',
1053 [param('ns3::Tag &', 'tag')],
1054 is_const=True)
1055 ## packet.h (module 'network'): ns3::TypeId ns3::ByteTagIterator::Item::GetTypeId() const [member function]
1056 cls.add_method('GetTypeId',
1057 'ns3::TypeId',
1058 [],
1059 is_const=True)
1060 return
1061
1062def register_Ns3ByteTagList_methods(root_module, cls):
1063 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::ByteTagList() [constructor]
1064 cls.add_constructor([])
1065 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::ByteTagList(ns3::ByteTagList const & o) [copy constructor]
1066 cls.add_constructor([param('ns3::ByteTagList const &', 'o')])
1067 ## 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]
1068 cls.add_method('Add',
1069 'ns3::TagBuffer',
1070 [param('ns3::TypeId', 'tid'), param('uint32_t', 'bufferSize'), param('int32_t', 'start'), param('int32_t', 'end')])
1071 ## byte-tag-list.h (module 'network'): void ns3::ByteTagList::Add(ns3::ByteTagList const & o) [member function]
1072 cls.add_method('Add',
1073 'void',
1074 [param('ns3::ByteTagList const &', 'o')])
1075 ## byte-tag-list.h (module 'network'): void ns3::ByteTagList::AddAtEnd(int32_t adjustment, int32_t appendOffset) [member function]
1076 cls.add_method('AddAtEnd',
1077 'void',
1078 [param('int32_t', 'adjustment'), param('int32_t', 'appendOffset')])
1079 ## byte-tag-list.h (module 'network'): void ns3::ByteTagList::AddAtStart(int32_t adjustment, int32_t prependOffset) [member function]
1080 cls.add_method('AddAtStart',
1081 'void',
1082 [param('int32_t', 'adjustment'), param('int32_t', 'prependOffset')])
1083 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator ns3::ByteTagList::Begin(int32_t offsetStart, int32_t offsetEnd) const [member function]
1084 cls.add_method('Begin',
1085 'ns3::ByteTagList::Iterator',
1086 [param('int32_t', 'offsetStart'), param('int32_t', 'offsetEnd')],
1087 is_const=True)
1088 ## byte-tag-list.h (module 'network'): void ns3::ByteTagList::RemoveAll() [member function]
1089 cls.add_method('RemoveAll',
1090 'void',
1091 [])
1092 return
1093
1094def register_Ns3ByteTagListIterator_methods(root_module, cls):
1095 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Iterator(ns3::ByteTagList::Iterator const & arg0) [copy constructor]
1096 cls.add_constructor([param('ns3::ByteTagList::Iterator const &', 'arg0')])
1097 ## byte-tag-list.h (module 'network'): uint32_t ns3::ByteTagList::Iterator::GetOffsetStart() const [member function]
1098 cls.add_method('GetOffsetStart',
1099 'uint32_t',
1100 [],
1101 is_const=True)
1102 ## byte-tag-list.h (module 'network'): bool ns3::ByteTagList::Iterator::HasNext() const [member function]
1103 cls.add_method('HasNext',
1104 'bool',
1105 [],
1106 is_const=True)
1107 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item ns3::ByteTagList::Iterator::Next() [member function]
1108 cls.add_method('Next',
1109 'ns3::ByteTagList::Iterator::Item',
1110 [])
1111 return
1112
1113def register_Ns3ByteTagListIteratorItem_methods(root_module, cls):
1114 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::Item(ns3::ByteTagList::Iterator::Item const & arg0) [copy constructor]
1115 cls.add_constructor([param('ns3::ByteTagList::Iterator::Item const &', 'arg0')])
1116 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::Item(ns3::TagBuffer buf) [constructor]
1117 cls.add_constructor([param('ns3::TagBuffer', 'buf')])
1118 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::buf [variable]
1119 cls.add_instance_attribute('buf', 'ns3::TagBuffer', is_const=False)
1120 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::end [variable]
1121 cls.add_instance_attribute('end', 'int32_t', is_const=False)
1122 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::size [variable]
1123 cls.add_instance_attribute('size', 'uint32_t', is_const=False)
1124 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::start [variable]
1125 cls.add_instance_attribute('start', 'int32_t', is_const=False)
1126 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::tid [variable]
1127 cls.add_instance_attribute('tid', 'ns3::TypeId', is_const=False)
1128 return
1129
1130def register_Ns3CallbackBase_methods(root_module, cls):
1131 ## callback.h (module 'core'): ns3::CallbackBase::CallbackBase(ns3::CallbackBase const & arg0) [copy constructor]
1132 cls.add_constructor([param('ns3::CallbackBase const &', 'arg0')])
1133 ## callback.h (module 'core'): ns3::CallbackBase::CallbackBase() [constructor]
1134 cls.add_constructor([])
1135 ## callback.h (module 'core'): ns3::Ptr<ns3::CallbackImplBase> ns3::CallbackBase::GetImpl() const [member function]
1136 cls.add_method('GetImpl',
1137 'ns3::Ptr< ns3::CallbackImplBase >',
1138 [],
1139 is_const=True)
1140 ## callback.h (module 'core'): ns3::CallbackBase::CallbackBase(ns3::Ptr<ns3::CallbackImplBase> impl) [constructor]
1141 cls.add_constructor([param('ns3::Ptr< ns3::CallbackImplBase >', 'impl')],
1142 visibility='protected')
1143 ## callback.h (module 'core'): static std::string ns3::CallbackBase::Demangle(std::string const & mangled) [member function]
1144 cls.add_method('Demangle',
1145 'std::string',
1146 [param('std::string const &', 'mangled')],
1147 is_static=True, visibility='protected')
1148 return
1149
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001150def register_Ns3EventId_methods(root_module, cls):
1151 cls.add_binary_comparison_operator('!=')
1152 cls.add_binary_comparison_operator('==')
1153 ## event-id.h (module 'core'): ns3::EventId::EventId(ns3::EventId const & arg0) [copy constructor]
1154 cls.add_constructor([param('ns3::EventId const &', 'arg0')])
1155 ## event-id.h (module 'core'): ns3::EventId::EventId() [constructor]
1156 cls.add_constructor([])
1157 ## event-id.h (module 'core'): ns3::EventId::EventId(ns3::Ptr<ns3::EventImpl> const & impl, uint64_t ts, uint32_t context, uint32_t uid) [constructor]
1158 cls.add_constructor([param('ns3::Ptr< ns3::EventImpl > const &', 'impl'), param('uint64_t', 'ts'), param('uint32_t', 'context'), param('uint32_t', 'uid')])
1159 ## event-id.h (module 'core'): void ns3::EventId::Cancel() [member function]
1160 cls.add_method('Cancel',
1161 'void',
1162 [])
1163 ## event-id.h (module 'core'): uint32_t ns3::EventId::GetContext() const [member function]
1164 cls.add_method('GetContext',
1165 'uint32_t',
1166 [],
1167 is_const=True)
1168 ## event-id.h (module 'core'): uint64_t ns3::EventId::GetTs() const [member function]
1169 cls.add_method('GetTs',
1170 'uint64_t',
1171 [],
1172 is_const=True)
1173 ## event-id.h (module 'core'): uint32_t ns3::EventId::GetUid() const [member function]
1174 cls.add_method('GetUid',
1175 'uint32_t',
1176 [],
1177 is_const=True)
1178 ## event-id.h (module 'core'): bool ns3::EventId::IsExpired() const [member function]
1179 cls.add_method('IsExpired',
1180 'bool',
1181 [],
1182 is_const=True)
1183 ## event-id.h (module 'core'): bool ns3::EventId::IsRunning() const [member function]
1184 cls.add_method('IsRunning',
1185 'bool',
1186 [],
1187 is_const=True)
1188 ## event-id.h (module 'core'): ns3::EventImpl * ns3::EventId::PeekEventImpl() const [member function]
1189 cls.add_method('PeekEventImpl',
1190 'ns3::EventImpl *',
1191 [],
1192 is_const=True)
1193 return
1194
1195def register_Ns3Ipv4Address_methods(root_module, cls):
1196 cls.add_binary_comparison_operator('!=')
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07001197 cls.add_output_stream_operator()
Alexander Afanasyeva28ec562012-10-25 14:07:32 -07001198 cls.add_binary_comparison_operator('==')
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001199 cls.add_binary_comparison_operator('<')
1200 ## ipv4-address.h (module 'network'): ns3::Ipv4Address::Ipv4Address(ns3::Ipv4Address const & arg0) [copy constructor]
1201 cls.add_constructor([param('ns3::Ipv4Address const &', 'arg0')])
1202 ## ipv4-address.h (module 'network'): ns3::Ipv4Address::Ipv4Address() [constructor]
1203 cls.add_constructor([])
1204 ## ipv4-address.h (module 'network'): ns3::Ipv4Address::Ipv4Address(uint32_t address) [constructor]
1205 cls.add_constructor([param('uint32_t', 'address')])
1206 ## ipv4-address.h (module 'network'): ns3::Ipv4Address::Ipv4Address(char const * address) [constructor]
1207 cls.add_constructor([param('char const *', 'address')])
1208 ## ipv4-address.h (module 'network'): ns3::Ipv4Address ns3::Ipv4Address::CombineMask(ns3::Ipv4Mask const & mask) const [member function]
1209 cls.add_method('CombineMask',
1210 'ns3::Ipv4Address',
1211 [param('ns3::Ipv4Mask const &', 'mask')],
1212 is_const=True)
1213 ## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::ConvertFrom(ns3::Address const & address) [member function]
1214 cls.add_method('ConvertFrom',
1215 'ns3::Ipv4Address',
1216 [param('ns3::Address const &', 'address')],
1217 is_static=True)
1218 ## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::Deserialize(uint8_t const * buf) [member function]
1219 cls.add_method('Deserialize',
1220 'ns3::Ipv4Address',
1221 [param('uint8_t const *', 'buf')],
1222 is_static=True)
Alexander Afanasyev4052f952012-06-08 17:57:59 -07001223 ## ipv4-address.h (module 'network'): uint32_t ns3::Ipv4Address::Get() const [member function]
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001224 cls.add_method('Get',
Alexander Afanasyev4052f952012-06-08 17:57:59 -07001225 'uint32_t',
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001226 [],
1227 is_const=True)
1228 ## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::GetAny() [member function]
1229 cls.add_method('GetAny',
1230 'ns3::Ipv4Address',
1231 [],
1232 is_static=True)
1233 ## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::GetBroadcast() [member function]
1234 cls.add_method('GetBroadcast',
1235 'ns3::Ipv4Address',
1236 [],
1237 is_static=True)
1238 ## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::GetLoopback() [member function]
1239 cls.add_method('GetLoopback',
1240 'ns3::Ipv4Address',
1241 [],
1242 is_static=True)
1243 ## ipv4-address.h (module 'network'): ns3::Ipv4Address ns3::Ipv4Address::GetSubnetDirectedBroadcast(ns3::Ipv4Mask const & mask) const [member function]
1244 cls.add_method('GetSubnetDirectedBroadcast',
1245 'ns3::Ipv4Address',
1246 [param('ns3::Ipv4Mask const &', 'mask')],
1247 is_const=True)
1248 ## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::GetZero() [member function]
1249 cls.add_method('GetZero',
1250 'ns3::Ipv4Address',
1251 [],
1252 is_static=True)
1253 ## ipv4-address.h (module 'network'): bool ns3::Ipv4Address::IsBroadcast() const [member function]
1254 cls.add_method('IsBroadcast',
1255 'bool',
1256 [],
1257 is_const=True)
1258 ## ipv4-address.h (module 'network'): bool ns3::Ipv4Address::IsEqual(ns3::Ipv4Address const & other) const [member function]
1259 cls.add_method('IsEqual',
1260 'bool',
1261 [param('ns3::Ipv4Address const &', 'other')],
1262 is_const=True)
1263 ## ipv4-address.h (module 'network'): bool ns3::Ipv4Address::IsLocalMulticast() const [member function]
1264 cls.add_method('IsLocalMulticast',
1265 'bool',
1266 [],
1267 is_const=True)
1268 ## ipv4-address.h (module 'network'): static bool ns3::Ipv4Address::IsMatchingType(ns3::Address const & address) [member function]
1269 cls.add_method('IsMatchingType',
1270 'bool',
1271 [param('ns3::Address const &', 'address')],
1272 is_static=True)
1273 ## ipv4-address.h (module 'network'): bool ns3::Ipv4Address::IsMulticast() const [member function]
1274 cls.add_method('IsMulticast',
1275 'bool',
1276 [],
1277 is_const=True)
1278 ## ipv4-address.h (module 'network'): bool ns3::Ipv4Address::IsSubnetDirectedBroadcast(ns3::Ipv4Mask const & mask) const [member function]
1279 cls.add_method('IsSubnetDirectedBroadcast',
1280 'bool',
1281 [param('ns3::Ipv4Mask const &', 'mask')],
1282 is_const=True)
1283 ## ipv4-address.h (module 'network'): void ns3::Ipv4Address::Print(std::ostream & os) const [member function]
1284 cls.add_method('Print',
1285 'void',
1286 [param('std::ostream &', 'os')],
1287 is_const=True)
1288 ## ipv4-address.h (module 'network'): void ns3::Ipv4Address::Serialize(uint8_t * buf) const [member function]
1289 cls.add_method('Serialize',
1290 'void',
1291 [param('uint8_t *', 'buf')],
1292 is_const=True)
1293 ## ipv4-address.h (module 'network'): void ns3::Ipv4Address::Set(uint32_t address) [member function]
1294 cls.add_method('Set',
1295 'void',
1296 [param('uint32_t', 'address')])
1297 ## ipv4-address.h (module 'network'): void ns3::Ipv4Address::Set(char const * address) [member function]
1298 cls.add_method('Set',
1299 'void',
1300 [param('char const *', 'address')])
1301 return
1302
1303def register_Ns3Ipv4Mask_methods(root_module, cls):
1304 cls.add_binary_comparison_operator('!=')
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07001305 cls.add_output_stream_operator()
Alexander Afanasyeva28ec562012-10-25 14:07:32 -07001306 cls.add_binary_comparison_operator('==')
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001307 ## ipv4-address.h (module 'network'): ns3::Ipv4Mask::Ipv4Mask(ns3::Ipv4Mask const & arg0) [copy constructor]
1308 cls.add_constructor([param('ns3::Ipv4Mask const &', 'arg0')])
1309 ## ipv4-address.h (module 'network'): ns3::Ipv4Mask::Ipv4Mask() [constructor]
1310 cls.add_constructor([])
1311 ## ipv4-address.h (module 'network'): ns3::Ipv4Mask::Ipv4Mask(uint32_t mask) [constructor]
1312 cls.add_constructor([param('uint32_t', 'mask')])
1313 ## ipv4-address.h (module 'network'): ns3::Ipv4Mask::Ipv4Mask(char const * mask) [constructor]
1314 cls.add_constructor([param('char const *', 'mask')])
1315 ## ipv4-address.h (module 'network'): uint32_t ns3::Ipv4Mask::Get() const [member function]
1316 cls.add_method('Get',
1317 'uint32_t',
1318 [],
1319 is_const=True)
1320 ## ipv4-address.h (module 'network'): uint32_t ns3::Ipv4Mask::GetInverse() const [member function]
1321 cls.add_method('GetInverse',
1322 'uint32_t',
1323 [],
1324 is_const=True)
1325 ## ipv4-address.h (module 'network'): static ns3::Ipv4Mask ns3::Ipv4Mask::GetLoopback() [member function]
1326 cls.add_method('GetLoopback',
1327 'ns3::Ipv4Mask',
1328 [],
1329 is_static=True)
1330 ## ipv4-address.h (module 'network'): static ns3::Ipv4Mask ns3::Ipv4Mask::GetOnes() [member function]
1331 cls.add_method('GetOnes',
1332 'ns3::Ipv4Mask',
1333 [],
1334 is_static=True)
1335 ## ipv4-address.h (module 'network'): uint16_t ns3::Ipv4Mask::GetPrefixLength() const [member function]
1336 cls.add_method('GetPrefixLength',
1337 'uint16_t',
1338 [],
1339 is_const=True)
1340 ## ipv4-address.h (module 'network'): static ns3::Ipv4Mask ns3::Ipv4Mask::GetZero() [member function]
1341 cls.add_method('GetZero',
1342 'ns3::Ipv4Mask',
1343 [],
1344 is_static=True)
1345 ## ipv4-address.h (module 'network'): bool ns3::Ipv4Mask::IsEqual(ns3::Ipv4Mask other) const [member function]
1346 cls.add_method('IsEqual',
1347 'bool',
1348 [param('ns3::Ipv4Mask', 'other')],
1349 is_const=True)
1350 ## ipv4-address.h (module 'network'): bool ns3::Ipv4Mask::IsMatch(ns3::Ipv4Address a, ns3::Ipv4Address b) const [member function]
1351 cls.add_method('IsMatch',
1352 'bool',
1353 [param('ns3::Ipv4Address', 'a'), param('ns3::Ipv4Address', 'b')],
1354 is_const=True)
1355 ## ipv4-address.h (module 'network'): void ns3::Ipv4Mask::Print(std::ostream & os) const [member function]
1356 cls.add_method('Print',
1357 'void',
1358 [param('std::ostream &', 'os')],
1359 is_const=True)
1360 ## ipv4-address.h (module 'network'): void ns3::Ipv4Mask::Set(uint32_t mask) [member function]
1361 cls.add_method('Set',
1362 'void',
1363 [param('uint32_t', 'mask')])
1364 return
1365
1366def register_Ns3Ipv6Address_methods(root_module, cls):
1367 cls.add_binary_comparison_operator('!=')
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07001368 cls.add_output_stream_operator()
Alexander Afanasyeva28ec562012-10-25 14:07:32 -07001369 cls.add_binary_comparison_operator('==')
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001370 cls.add_binary_comparison_operator('<')
1371 ## ipv6-address.h (module 'network'): ns3::Ipv6Address::Ipv6Address() [constructor]
1372 cls.add_constructor([])
1373 ## ipv6-address.h (module 'network'): ns3::Ipv6Address::Ipv6Address(char const * address) [constructor]
1374 cls.add_constructor([param('char const *', 'address')])
1375 ## ipv6-address.h (module 'network'): ns3::Ipv6Address::Ipv6Address(uint8_t * address) [constructor]
1376 cls.add_constructor([param('uint8_t *', 'address')])
1377 ## ipv6-address.h (module 'network'): ns3::Ipv6Address::Ipv6Address(ns3::Ipv6Address const & addr) [copy constructor]
1378 cls.add_constructor([param('ns3::Ipv6Address const &', 'addr')])
1379 ## ipv6-address.h (module 'network'): ns3::Ipv6Address::Ipv6Address(ns3::Ipv6Address const * addr) [constructor]
1380 cls.add_constructor([param('ns3::Ipv6Address const *', 'addr')])
1381 ## ipv6-address.h (module 'network'): ns3::Ipv6Address ns3::Ipv6Address::CombinePrefix(ns3::Ipv6Prefix const & prefix) [member function]
1382 cls.add_method('CombinePrefix',
1383 'ns3::Ipv6Address',
1384 [param('ns3::Ipv6Prefix const &', 'prefix')])
1385 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::ConvertFrom(ns3::Address const & address) [member function]
1386 cls.add_method('ConvertFrom',
1387 'ns3::Ipv6Address',
1388 [param('ns3::Address const &', 'address')],
1389 is_static=True)
1390 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::Deserialize(uint8_t const * buf) [member function]
1391 cls.add_method('Deserialize',
1392 'ns3::Ipv6Address',
1393 [param('uint8_t const *', 'buf')],
1394 is_static=True)
1395 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetAllHostsMulticast() [member function]
1396 cls.add_method('GetAllHostsMulticast',
1397 'ns3::Ipv6Address',
1398 [],
1399 is_static=True)
1400 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetAllNodesMulticast() [member function]
1401 cls.add_method('GetAllNodesMulticast',
1402 'ns3::Ipv6Address',
1403 [],
1404 is_static=True)
1405 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetAllRoutersMulticast() [member function]
1406 cls.add_method('GetAllRoutersMulticast',
1407 'ns3::Ipv6Address',
1408 [],
1409 is_static=True)
1410 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetAny() [member function]
1411 cls.add_method('GetAny',
1412 'ns3::Ipv6Address',
1413 [],
1414 is_static=True)
1415 ## ipv6-address.h (module 'network'): void ns3::Ipv6Address::GetBytes(uint8_t * buf) const [member function]
1416 cls.add_method('GetBytes',
1417 'void',
1418 [param('uint8_t *', 'buf')],
1419 is_const=True)
Alexander Afanasyev6f933532012-02-29 13:30:37 -08001420 ## ipv6-address.h (module 'network'): ns3::Ipv4Address ns3::Ipv6Address::GetIpv4MappedAddress() const [member function]
1421 cls.add_method('GetIpv4MappedAddress',
1422 'ns3::Ipv4Address',
1423 [],
1424 is_const=True)
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001425 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetLoopback() [member function]
1426 cls.add_method('GetLoopback',
1427 'ns3::Ipv6Address',
1428 [],
1429 is_static=True)
1430 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetOnes() [member function]
1431 cls.add_method('GetOnes',
1432 'ns3::Ipv6Address',
1433 [],
1434 is_static=True)
1435 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetZero() [member function]
1436 cls.add_method('GetZero',
1437 'ns3::Ipv6Address',
1438 [],
1439 is_static=True)
1440 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsAllHostsMulticast() const [member function]
1441 cls.add_method('IsAllHostsMulticast',
1442 'bool',
1443 [],
1444 is_const=True)
1445 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsAllNodesMulticast() const [member function]
1446 cls.add_method('IsAllNodesMulticast',
1447 'bool',
1448 [],
1449 is_const=True)
1450 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsAllRoutersMulticast() const [member function]
1451 cls.add_method('IsAllRoutersMulticast',
1452 'bool',
1453 [],
1454 is_const=True)
1455 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsAny() const [member function]
1456 cls.add_method('IsAny',
1457 'bool',
1458 [],
1459 is_const=True)
1460 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsEqual(ns3::Ipv6Address const & other) const [member function]
1461 cls.add_method('IsEqual',
1462 'bool',
1463 [param('ns3::Ipv6Address const &', 'other')],
1464 is_const=True)
Alexander Afanasyev6f933532012-02-29 13:30:37 -08001465 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsIpv4MappedAddress() [member function]
1466 cls.add_method('IsIpv4MappedAddress',
1467 'bool',
1468 [])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001469 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsLinkLocal() const [member function]
1470 cls.add_method('IsLinkLocal',
1471 'bool',
1472 [],
1473 is_const=True)
Alexander Afanasyev6f933532012-02-29 13:30:37 -08001474 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsLinkLocalMulticast() const [member function]
1475 cls.add_method('IsLinkLocalMulticast',
1476 'bool',
1477 [],
1478 is_const=True)
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001479 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsLocalhost() const [member function]
1480 cls.add_method('IsLocalhost',
1481 'bool',
1482 [],
1483 is_const=True)
1484 ## ipv6-address.h (module 'network'): static bool ns3::Ipv6Address::IsMatchingType(ns3::Address const & address) [member function]
1485 cls.add_method('IsMatchingType',
1486 'bool',
1487 [param('ns3::Address const &', 'address')],
1488 is_static=True)
1489 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsMulticast() const [member function]
1490 cls.add_method('IsMulticast',
1491 'bool',
1492 [],
1493 is_const=True)
1494 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsSolicitedMulticast() const [member function]
1495 cls.add_method('IsSolicitedMulticast',
1496 'bool',
1497 [],
1498 is_const=True)
1499 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::MakeAutoconfiguredAddress(ns3::Mac48Address addr, ns3::Ipv6Address prefix) [member function]
1500 cls.add_method('MakeAutoconfiguredAddress',
1501 'ns3::Ipv6Address',
1502 [param('ns3::Mac48Address', 'addr'), param('ns3::Ipv6Address', 'prefix')],
1503 is_static=True)
1504 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::MakeAutoconfiguredLinkLocalAddress(ns3::Mac48Address mac) [member function]
1505 cls.add_method('MakeAutoconfiguredLinkLocalAddress',
1506 'ns3::Ipv6Address',
1507 [param('ns3::Mac48Address', 'mac')],
1508 is_static=True)
Alexander Afanasyev6f933532012-02-29 13:30:37 -08001509 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::MakeIpv4MappedAddress(ns3::Ipv4Address addr) [member function]
1510 cls.add_method('MakeIpv4MappedAddress',
1511 'ns3::Ipv6Address',
1512 [param('ns3::Ipv4Address', 'addr')],
1513 is_static=True)
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001514 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::MakeSolicitedAddress(ns3::Ipv6Address addr) [member function]
1515 cls.add_method('MakeSolicitedAddress',
1516 'ns3::Ipv6Address',
1517 [param('ns3::Ipv6Address', 'addr')],
1518 is_static=True)
1519 ## ipv6-address.h (module 'network'): void ns3::Ipv6Address::Print(std::ostream & os) const [member function]
1520 cls.add_method('Print',
1521 'void',
1522 [param('std::ostream &', 'os')],
1523 is_const=True)
1524 ## ipv6-address.h (module 'network'): void ns3::Ipv6Address::Serialize(uint8_t * buf) const [member function]
1525 cls.add_method('Serialize',
1526 'void',
1527 [param('uint8_t *', 'buf')],
1528 is_const=True)
1529 ## ipv6-address.h (module 'network'): void ns3::Ipv6Address::Set(char const * address) [member function]
1530 cls.add_method('Set',
1531 'void',
1532 [param('char const *', 'address')])
1533 ## ipv6-address.h (module 'network'): void ns3::Ipv6Address::Set(uint8_t * address) [member function]
1534 cls.add_method('Set',
1535 'void',
1536 [param('uint8_t *', 'address')])
1537 return
1538
1539def register_Ns3Ipv6Prefix_methods(root_module, cls):
1540 cls.add_binary_comparison_operator('!=')
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07001541 cls.add_output_stream_operator()
Alexander Afanasyeva28ec562012-10-25 14:07:32 -07001542 cls.add_binary_comparison_operator('==')
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001543 ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix() [constructor]
1544 cls.add_constructor([])
1545 ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix(uint8_t * prefix) [constructor]
1546 cls.add_constructor([param('uint8_t *', 'prefix')])
1547 ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix(char const * prefix) [constructor]
1548 cls.add_constructor([param('char const *', 'prefix')])
1549 ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix(uint8_t prefix) [constructor]
1550 cls.add_constructor([param('uint8_t', 'prefix')])
1551 ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix(ns3::Ipv6Prefix const & prefix) [copy constructor]
1552 cls.add_constructor([param('ns3::Ipv6Prefix const &', 'prefix')])
1553 ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix(ns3::Ipv6Prefix const * prefix) [constructor]
1554 cls.add_constructor([param('ns3::Ipv6Prefix const *', 'prefix')])
1555 ## ipv6-address.h (module 'network'): void ns3::Ipv6Prefix::GetBytes(uint8_t * buf) const [member function]
1556 cls.add_method('GetBytes',
1557 'void',
1558 [param('uint8_t *', 'buf')],
1559 is_const=True)
1560 ## ipv6-address.h (module 'network'): static ns3::Ipv6Prefix ns3::Ipv6Prefix::GetLoopback() [member function]
1561 cls.add_method('GetLoopback',
1562 'ns3::Ipv6Prefix',
1563 [],
1564 is_static=True)
1565 ## ipv6-address.h (module 'network'): static ns3::Ipv6Prefix ns3::Ipv6Prefix::GetOnes() [member function]
1566 cls.add_method('GetOnes',
1567 'ns3::Ipv6Prefix',
1568 [],
1569 is_static=True)
1570 ## ipv6-address.h (module 'network'): uint8_t ns3::Ipv6Prefix::GetPrefixLength() const [member function]
1571 cls.add_method('GetPrefixLength',
1572 'uint8_t',
1573 [],
1574 is_const=True)
1575 ## ipv6-address.h (module 'network'): static ns3::Ipv6Prefix ns3::Ipv6Prefix::GetZero() [member function]
1576 cls.add_method('GetZero',
1577 'ns3::Ipv6Prefix',
1578 [],
1579 is_static=True)
1580 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Prefix::IsEqual(ns3::Ipv6Prefix const & other) const [member function]
1581 cls.add_method('IsEqual',
1582 'bool',
1583 [param('ns3::Ipv6Prefix const &', 'other')],
1584 is_const=True)
1585 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Prefix::IsMatch(ns3::Ipv6Address a, ns3::Ipv6Address b) const [member function]
1586 cls.add_method('IsMatch',
1587 'bool',
1588 [param('ns3::Ipv6Address', 'a'), param('ns3::Ipv6Address', 'b')],
1589 is_const=True)
1590 ## ipv6-address.h (module 'network'): void ns3::Ipv6Prefix::Print(std::ostream & os) const [member function]
1591 cls.add_method('Print',
1592 'void',
1593 [param('std::ostream &', 'os')],
1594 is_const=True)
1595 return
1596
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07001597def register_Ns3NetDeviceContainer_methods(root_module, cls):
1598 ## net-device-container.h (module 'network'): ns3::NetDeviceContainer::NetDeviceContainer(ns3::NetDeviceContainer const & arg0) [copy constructor]
1599 cls.add_constructor([param('ns3::NetDeviceContainer const &', 'arg0')])
1600 ## net-device-container.h (module 'network'): ns3::NetDeviceContainer::NetDeviceContainer() [constructor]
1601 cls.add_constructor([])
1602 ## net-device-container.h (module 'network'): ns3::NetDeviceContainer::NetDeviceContainer(ns3::Ptr<ns3::NetDevice> dev) [constructor]
1603 cls.add_constructor([param('ns3::Ptr< ns3::NetDevice >', 'dev')])
1604 ## net-device-container.h (module 'network'): ns3::NetDeviceContainer::NetDeviceContainer(std::string devName) [constructor]
1605 cls.add_constructor([param('std::string', 'devName')])
1606 ## net-device-container.h (module 'network'): ns3::NetDeviceContainer::NetDeviceContainer(ns3::NetDeviceContainer const & a, ns3::NetDeviceContainer const & b) [constructor]
1607 cls.add_constructor([param('ns3::NetDeviceContainer const &', 'a'), param('ns3::NetDeviceContainer const &', 'b')])
1608 ## net-device-container.h (module 'network'): void ns3::NetDeviceContainer::Add(ns3::NetDeviceContainer other) [member function]
1609 cls.add_method('Add',
1610 'void',
1611 [param('ns3::NetDeviceContainer', 'other')])
1612 ## net-device-container.h (module 'network'): void ns3::NetDeviceContainer::Add(ns3::Ptr<ns3::NetDevice> device) [member function]
1613 cls.add_method('Add',
1614 'void',
1615 [param('ns3::Ptr< ns3::NetDevice >', 'device')])
1616 ## net-device-container.h (module 'network'): void ns3::NetDeviceContainer::Add(std::string deviceName) [member function]
1617 cls.add_method('Add',
1618 'void',
1619 [param('std::string', 'deviceName')])
1620 ## 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]
1621 cls.add_method('Begin',
1622 '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::NetDevice > const, std::vector< ns3::Ptr< ns3::NetDevice > > >',
1623 [],
1624 is_const=True)
1625 ## 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]
1626 cls.add_method('End',
1627 '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::NetDevice > const, std::vector< ns3::Ptr< ns3::NetDevice > > >',
1628 [],
1629 is_const=True)
1630 ## net-device-container.h (module 'network'): ns3::Ptr<ns3::NetDevice> ns3::NetDeviceContainer::Get(uint32_t i) const [member function]
1631 cls.add_method('Get',
1632 'ns3::Ptr< ns3::NetDevice >',
1633 [param('uint32_t', 'i')],
1634 is_const=True)
1635 ## net-device-container.h (module 'network'): uint32_t ns3::NetDeviceContainer::GetN() const [member function]
1636 cls.add_method('GetN',
1637 'uint32_t',
1638 [],
1639 is_const=True)
1640 return
1641
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001642def register_Ns3NodeContainer_methods(root_module, cls):
1643 ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer(ns3::NodeContainer const & arg0) [copy constructor]
1644 cls.add_constructor([param('ns3::NodeContainer const &', 'arg0')])
1645 ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer() [constructor]
1646 cls.add_constructor([])
1647 ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer(ns3::Ptr<ns3::Node> node) [constructor]
1648 cls.add_constructor([param('ns3::Ptr< ns3::Node >', 'node')])
1649 ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer(std::string nodeName) [constructor]
1650 cls.add_constructor([param('std::string', 'nodeName')])
1651 ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer(ns3::NodeContainer const & a, ns3::NodeContainer const & b) [constructor]
1652 cls.add_constructor([param('ns3::NodeContainer const &', 'a'), param('ns3::NodeContainer const &', 'b')])
1653 ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer(ns3::NodeContainer const & a, ns3::NodeContainer const & b, ns3::NodeContainer const & c) [constructor]
1654 cls.add_constructor([param('ns3::NodeContainer const &', 'a'), param('ns3::NodeContainer const &', 'b'), param('ns3::NodeContainer const &', 'c')])
1655 ## 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]
1656 cls.add_constructor([param('ns3::NodeContainer const &', 'a'), param('ns3::NodeContainer const &', 'b'), param('ns3::NodeContainer const &', 'c'), param('ns3::NodeContainer const &', 'd')])
1657 ## 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]
1658 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')])
1659 ## node-container.h (module 'network'): void ns3::NodeContainer::Add(ns3::NodeContainer other) [member function]
1660 cls.add_method('Add',
1661 'void',
1662 [param('ns3::NodeContainer', 'other')])
1663 ## node-container.h (module 'network'): void ns3::NodeContainer::Add(ns3::Ptr<ns3::Node> node) [member function]
1664 cls.add_method('Add',
1665 'void',
1666 [param('ns3::Ptr< ns3::Node >', 'node')])
1667 ## node-container.h (module 'network'): void ns3::NodeContainer::Add(std::string nodeName) [member function]
1668 cls.add_method('Add',
1669 'void',
1670 [param('std::string', 'nodeName')])
1671 ## 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]
1672 cls.add_method('Begin',
1673 '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Node > const, std::vector< ns3::Ptr< ns3::Node > > >',
1674 [],
1675 is_const=True)
1676 ## node-container.h (module 'network'): void ns3::NodeContainer::Create(uint32_t n) [member function]
1677 cls.add_method('Create',
1678 'void',
1679 [param('uint32_t', 'n')])
1680 ## node-container.h (module 'network'): void ns3::NodeContainer::Create(uint32_t n, uint32_t systemId) [member function]
1681 cls.add_method('Create',
1682 'void',
1683 [param('uint32_t', 'n'), param('uint32_t', 'systemId')])
1684 ## 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]
1685 cls.add_method('End',
1686 '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Node > const, std::vector< ns3::Ptr< ns3::Node > > >',
1687 [],
1688 is_const=True)
1689 ## node-container.h (module 'network'): ns3::Ptr<ns3::Node> ns3::NodeContainer::Get(uint32_t i) const [member function]
1690 cls.add_method('Get',
1691 'ns3::Ptr< ns3::Node >',
1692 [param('uint32_t', 'i')],
1693 is_const=True)
1694 ## node-container.h (module 'network'): static ns3::NodeContainer ns3::NodeContainer::GetGlobal() [member function]
1695 cls.add_method('GetGlobal',
1696 'ns3::NodeContainer',
1697 [],
1698 is_static=True)
1699 ## node-container.h (module 'network'): uint32_t ns3::NodeContainer::GetN() const [member function]
1700 cls.add_method('GetN',
1701 'uint32_t',
1702 [],
1703 is_const=True)
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001704 return
1705
1706def register_Ns3ObjectBase_methods(root_module, cls):
1707 ## object-base.h (module 'core'): ns3::ObjectBase::ObjectBase() [constructor]
1708 cls.add_constructor([])
1709 ## object-base.h (module 'core'): ns3::ObjectBase::ObjectBase(ns3::ObjectBase const & arg0) [copy constructor]
1710 cls.add_constructor([param('ns3::ObjectBase const &', 'arg0')])
1711 ## object-base.h (module 'core'): void ns3::ObjectBase::GetAttribute(std::string name, ns3::AttributeValue & value) const [member function]
1712 cls.add_method('GetAttribute',
1713 'void',
1714 [param('std::string', 'name'), param('ns3::AttributeValue &', 'value')],
1715 is_const=True)
1716 ## object-base.h (module 'core'): bool ns3::ObjectBase::GetAttributeFailSafe(std::string name, ns3::AttributeValue & attribute) const [member function]
1717 cls.add_method('GetAttributeFailSafe',
1718 'bool',
1719 [param('std::string', 'name'), param('ns3::AttributeValue &', 'attribute')],
1720 is_const=True)
1721 ## object-base.h (module 'core'): ns3::TypeId ns3::ObjectBase::GetInstanceTypeId() const [member function]
1722 cls.add_method('GetInstanceTypeId',
1723 'ns3::TypeId',
1724 [],
1725 is_pure_virtual=True, is_const=True, is_virtual=True)
1726 ## object-base.h (module 'core'): static ns3::TypeId ns3::ObjectBase::GetTypeId() [member function]
1727 cls.add_method('GetTypeId',
1728 'ns3::TypeId',
1729 [],
1730 is_static=True)
1731 ## object-base.h (module 'core'): void ns3::ObjectBase::SetAttribute(std::string name, ns3::AttributeValue const & value) [member function]
1732 cls.add_method('SetAttribute',
1733 'void',
1734 [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')])
1735 ## object-base.h (module 'core'): bool ns3::ObjectBase::SetAttributeFailSafe(std::string name, ns3::AttributeValue const & value) [member function]
1736 cls.add_method('SetAttributeFailSafe',
1737 'bool',
1738 [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')])
1739 ## object-base.h (module 'core'): bool ns3::ObjectBase::TraceConnect(std::string name, std::string context, ns3::CallbackBase const & cb) [member function]
1740 cls.add_method('TraceConnect',
1741 'bool',
1742 [param('std::string', 'name'), param('std::string', 'context'), param('ns3::CallbackBase const &', 'cb')])
1743 ## object-base.h (module 'core'): bool ns3::ObjectBase::TraceConnectWithoutContext(std::string name, ns3::CallbackBase const & cb) [member function]
1744 cls.add_method('TraceConnectWithoutContext',
1745 'bool',
1746 [param('std::string', 'name'), param('ns3::CallbackBase const &', 'cb')])
1747 ## object-base.h (module 'core'): bool ns3::ObjectBase::TraceDisconnect(std::string name, std::string context, ns3::CallbackBase const & cb) [member function]
1748 cls.add_method('TraceDisconnect',
1749 'bool',
1750 [param('std::string', 'name'), param('std::string', 'context'), param('ns3::CallbackBase const &', 'cb')])
1751 ## object-base.h (module 'core'): bool ns3::ObjectBase::TraceDisconnectWithoutContext(std::string name, ns3::CallbackBase const & cb) [member function]
1752 cls.add_method('TraceDisconnectWithoutContext',
1753 'bool',
1754 [param('std::string', 'name'), param('ns3::CallbackBase const &', 'cb')])
1755 ## object-base.h (module 'core'): void ns3::ObjectBase::ConstructSelf(ns3::AttributeConstructionList const & attributes) [member function]
1756 cls.add_method('ConstructSelf',
1757 'void',
1758 [param('ns3::AttributeConstructionList const &', 'attributes')],
1759 visibility='protected')
1760 ## object-base.h (module 'core'): void ns3::ObjectBase::NotifyConstructionCompleted() [member function]
1761 cls.add_method('NotifyConstructionCompleted',
1762 'void',
1763 [],
1764 visibility='protected', is_virtual=True)
1765 return
1766
1767def register_Ns3ObjectDeleter_methods(root_module, cls):
1768 ## object.h (module 'core'): ns3::ObjectDeleter::ObjectDeleter() [constructor]
1769 cls.add_constructor([])
1770 ## object.h (module 'core'): ns3::ObjectDeleter::ObjectDeleter(ns3::ObjectDeleter const & arg0) [copy constructor]
1771 cls.add_constructor([param('ns3::ObjectDeleter const &', 'arg0')])
1772 ## object.h (module 'core'): static void ns3::ObjectDeleter::Delete(ns3::Object * object) [member function]
1773 cls.add_method('Delete',
1774 'void',
1775 [param('ns3::Object *', 'object')],
1776 is_static=True)
1777 return
1778
1779def register_Ns3ObjectFactory_methods(root_module, cls):
1780 cls.add_output_stream_operator()
1781 ## object-factory.h (module 'core'): ns3::ObjectFactory::ObjectFactory(ns3::ObjectFactory const & arg0) [copy constructor]
1782 cls.add_constructor([param('ns3::ObjectFactory const &', 'arg0')])
1783 ## object-factory.h (module 'core'): ns3::ObjectFactory::ObjectFactory() [constructor]
1784 cls.add_constructor([])
1785 ## object-factory.h (module 'core'): ns3::ObjectFactory::ObjectFactory(std::string typeId) [constructor]
1786 cls.add_constructor([param('std::string', 'typeId')])
1787 ## object-factory.h (module 'core'): ns3::Ptr<ns3::Object> ns3::ObjectFactory::Create() const [member function]
1788 cls.add_method('Create',
1789 'ns3::Ptr< ns3::Object >',
1790 [],
1791 is_const=True)
1792 ## object-factory.h (module 'core'): ns3::TypeId ns3::ObjectFactory::GetTypeId() const [member function]
1793 cls.add_method('GetTypeId',
1794 'ns3::TypeId',
1795 [],
1796 is_const=True)
1797 ## object-factory.h (module 'core'): void ns3::ObjectFactory::Set(std::string name, ns3::AttributeValue const & value) [member function]
1798 cls.add_method('Set',
1799 'void',
1800 [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')])
1801 ## object-factory.h (module 'core'): void ns3::ObjectFactory::SetTypeId(ns3::TypeId tid) [member function]
1802 cls.add_method('SetTypeId',
1803 'void',
1804 [param('ns3::TypeId', 'tid')])
1805 ## object-factory.h (module 'core'): void ns3::ObjectFactory::SetTypeId(char const * tid) [member function]
1806 cls.add_method('SetTypeId',
1807 'void',
1808 [param('char const *', 'tid')])
1809 ## object-factory.h (module 'core'): void ns3::ObjectFactory::SetTypeId(std::string tid) [member function]
1810 cls.add_method('SetTypeId',
1811 'void',
1812 [param('std::string', 'tid')])
1813 return
1814
1815def register_Ns3PacketMetadata_methods(root_module, cls):
1816 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::PacketMetadata(uint64_t uid, uint32_t size) [constructor]
1817 cls.add_constructor([param('uint64_t', 'uid'), param('uint32_t', 'size')])
1818 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::PacketMetadata(ns3::PacketMetadata const & o) [copy constructor]
1819 cls.add_constructor([param('ns3::PacketMetadata const &', 'o')])
1820 ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::AddAtEnd(ns3::PacketMetadata const & o) [member function]
1821 cls.add_method('AddAtEnd',
1822 'void',
1823 [param('ns3::PacketMetadata const &', 'o')])
1824 ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::AddHeader(ns3::Header const & header, uint32_t size) [member function]
1825 cls.add_method('AddHeader',
1826 'void',
1827 [param('ns3::Header const &', 'header'), param('uint32_t', 'size')])
1828 ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::AddPaddingAtEnd(uint32_t end) [member function]
1829 cls.add_method('AddPaddingAtEnd',
1830 'void',
1831 [param('uint32_t', 'end')])
1832 ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::AddTrailer(ns3::Trailer const & trailer, uint32_t size) [member function]
1833 cls.add_method('AddTrailer',
1834 'void',
1835 [param('ns3::Trailer const &', 'trailer'), param('uint32_t', 'size')])
1836 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::ItemIterator ns3::PacketMetadata::BeginItem(ns3::Buffer buffer) const [member function]
1837 cls.add_method('BeginItem',
1838 'ns3::PacketMetadata::ItemIterator',
1839 [param('ns3::Buffer', 'buffer')],
1840 is_const=True)
1841 ## packet-metadata.h (module 'network'): ns3::PacketMetadata ns3::PacketMetadata::CreateFragment(uint32_t start, uint32_t end) const [member function]
1842 cls.add_method('CreateFragment',
1843 'ns3::PacketMetadata',
1844 [param('uint32_t', 'start'), param('uint32_t', 'end')],
1845 is_const=True)
1846 ## packet-metadata.h (module 'network'): uint32_t ns3::PacketMetadata::Deserialize(uint8_t const * buffer, uint32_t size) [member function]
1847 cls.add_method('Deserialize',
1848 'uint32_t',
1849 [param('uint8_t const *', 'buffer'), param('uint32_t', 'size')])
1850 ## packet-metadata.h (module 'network'): static void ns3::PacketMetadata::Enable() [member function]
1851 cls.add_method('Enable',
1852 'void',
1853 [],
1854 is_static=True)
1855 ## packet-metadata.h (module 'network'): static void ns3::PacketMetadata::EnableChecking() [member function]
1856 cls.add_method('EnableChecking',
1857 'void',
1858 [],
1859 is_static=True)
1860 ## packet-metadata.h (module 'network'): uint32_t ns3::PacketMetadata::GetSerializedSize() const [member function]
1861 cls.add_method('GetSerializedSize',
1862 'uint32_t',
1863 [],
1864 is_const=True)
1865 ## packet-metadata.h (module 'network'): uint64_t ns3::PacketMetadata::GetUid() const [member function]
1866 cls.add_method('GetUid',
1867 'uint64_t',
1868 [],
1869 is_const=True)
1870 ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::RemoveAtEnd(uint32_t end) [member function]
1871 cls.add_method('RemoveAtEnd',
1872 'void',
1873 [param('uint32_t', 'end')])
1874 ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::RemoveAtStart(uint32_t start) [member function]
1875 cls.add_method('RemoveAtStart',
1876 'void',
1877 [param('uint32_t', 'start')])
1878 ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::RemoveHeader(ns3::Header const & header, uint32_t size) [member function]
1879 cls.add_method('RemoveHeader',
1880 'void',
1881 [param('ns3::Header const &', 'header'), param('uint32_t', 'size')])
1882 ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::RemoveTrailer(ns3::Trailer const & trailer, uint32_t size) [member function]
1883 cls.add_method('RemoveTrailer',
1884 'void',
1885 [param('ns3::Trailer const &', 'trailer'), param('uint32_t', 'size')])
1886 ## packet-metadata.h (module 'network'): uint32_t ns3::PacketMetadata::Serialize(uint8_t * buffer, uint32_t maxSize) const [member function]
1887 cls.add_method('Serialize',
1888 'uint32_t',
1889 [param('uint8_t *', 'buffer'), param('uint32_t', 'maxSize')],
1890 is_const=True)
1891 return
1892
1893def register_Ns3PacketMetadataItem_methods(root_module, cls):
1894 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::Item() [constructor]
1895 cls.add_constructor([])
1896 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::Item(ns3::PacketMetadata::Item const & arg0) [copy constructor]
1897 cls.add_constructor([param('ns3::PacketMetadata::Item const &', 'arg0')])
1898 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::current [variable]
1899 cls.add_instance_attribute('current', 'ns3::Buffer::Iterator', is_const=False)
1900 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::currentSize [variable]
1901 cls.add_instance_attribute('currentSize', 'uint32_t', is_const=False)
1902 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::currentTrimedFromEnd [variable]
1903 cls.add_instance_attribute('currentTrimedFromEnd', 'uint32_t', is_const=False)
1904 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::currentTrimedFromStart [variable]
1905 cls.add_instance_attribute('currentTrimedFromStart', 'uint32_t', is_const=False)
1906 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::isFragment [variable]
1907 cls.add_instance_attribute('isFragment', 'bool', is_const=False)
1908 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::tid [variable]
1909 cls.add_instance_attribute('tid', 'ns3::TypeId', is_const=False)
1910 return
1911
1912def register_Ns3PacketMetadataItemIterator_methods(root_module, cls):
1913 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::ItemIterator::ItemIterator(ns3::PacketMetadata::ItemIterator const & arg0) [copy constructor]
1914 cls.add_constructor([param('ns3::PacketMetadata::ItemIterator const &', 'arg0')])
1915 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::ItemIterator::ItemIterator(ns3::PacketMetadata const * metadata, ns3::Buffer buffer) [constructor]
1916 cls.add_constructor([param('ns3::PacketMetadata const *', 'metadata'), param('ns3::Buffer', 'buffer')])
1917 ## packet-metadata.h (module 'network'): bool ns3::PacketMetadata::ItemIterator::HasNext() const [member function]
1918 cls.add_method('HasNext',
1919 'bool',
1920 [],
1921 is_const=True)
1922 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item ns3::PacketMetadata::ItemIterator::Next() [member function]
1923 cls.add_method('Next',
1924 'ns3::PacketMetadata::Item',
1925 [])
1926 return
1927
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07001928def register_Ns3PacketTagIterator_methods(root_module, cls):
1929 ## packet.h (module 'network'): ns3::PacketTagIterator::PacketTagIterator(ns3::PacketTagIterator const & arg0) [copy constructor]
1930 cls.add_constructor([param('ns3::PacketTagIterator const &', 'arg0')])
1931 ## packet.h (module 'network'): bool ns3::PacketTagIterator::HasNext() const [member function]
1932 cls.add_method('HasNext',
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001933 'bool',
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001934 [],
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07001935 is_const=True)
1936 ## packet.h (module 'network'): ns3::PacketTagIterator::Item ns3::PacketTagIterator::Next() [member function]
1937 cls.add_method('Next',
1938 'ns3::PacketTagIterator::Item',
1939 [])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001940 return
1941
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07001942def register_Ns3PacketTagIteratorItem_methods(root_module, cls):
1943 ## packet.h (module 'network'): ns3::PacketTagIterator::Item::Item(ns3::PacketTagIterator::Item const & arg0) [copy constructor]
1944 cls.add_constructor([param('ns3::PacketTagIterator::Item const &', 'arg0')])
1945 ## packet.h (module 'network'): void ns3::PacketTagIterator::Item::GetTag(ns3::Tag & tag) const [member function]
1946 cls.add_method('GetTag',
1947 'void',
1948 [param('ns3::Tag &', 'tag')],
1949 is_const=True)
1950 ## packet.h (module 'network'): ns3::TypeId ns3::PacketTagIterator::Item::GetTypeId() const [member function]
1951 cls.add_method('GetTypeId',
1952 'ns3::TypeId',
1953 [],
1954 is_const=True)
1955 return
1956
1957def register_Ns3PacketTagList_methods(root_module, cls):
1958 ## packet-tag-list.h (module 'network'): ns3::PacketTagList::PacketTagList() [constructor]
1959 cls.add_constructor([])
1960 ## packet-tag-list.h (module 'network'): ns3::PacketTagList::PacketTagList(ns3::PacketTagList const & o) [copy constructor]
1961 cls.add_constructor([param('ns3::PacketTagList const &', 'o')])
1962 ## packet-tag-list.h (module 'network'): void ns3::PacketTagList::Add(ns3::Tag const & tag) const [member function]
1963 cls.add_method('Add',
1964 'void',
1965 [param('ns3::Tag const &', 'tag')],
1966 is_const=True)
1967 ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData const * ns3::PacketTagList::Head() const [member function]
1968 cls.add_method('Head',
1969 'ns3::PacketTagList::TagData const *',
1970 [],
1971 is_const=True)
1972 ## packet-tag-list.h (module 'network'): bool ns3::PacketTagList::Peek(ns3::Tag & tag) const [member function]
1973 cls.add_method('Peek',
1974 'bool',
1975 [param('ns3::Tag &', 'tag')],
1976 is_const=True)
1977 ## packet-tag-list.h (module 'network'): bool ns3::PacketTagList::Remove(ns3::Tag & tag) [member function]
1978 cls.add_method('Remove',
1979 'bool',
1980 [param('ns3::Tag &', 'tag')])
1981 ## packet-tag-list.h (module 'network'): void ns3::PacketTagList::RemoveAll() [member function]
1982 cls.add_method('RemoveAll',
1983 'void',
1984 [])
1985 return
1986
1987def register_Ns3PacketTagListTagData_methods(root_module, cls):
1988 ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData::TagData() [constructor]
1989 cls.add_constructor([])
1990 ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData::TagData(ns3::PacketTagList::TagData const & arg0) [copy constructor]
1991 cls.add_constructor([param('ns3::PacketTagList::TagData const &', 'arg0')])
1992 ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData::count [variable]
1993 cls.add_instance_attribute('count', 'uint32_t', is_const=False)
1994 ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData::data [variable]
1995 cls.add_instance_attribute('data', 'uint8_t [ 20 ]', is_const=False)
1996 ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData::next [variable]
1997 cls.add_instance_attribute('next', 'ns3::PacketTagList::TagData *', is_const=False)
1998 ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData::tid [variable]
1999 cls.add_instance_attribute('tid', 'ns3::TypeId', is_const=False)
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002000 return
2001
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07002002def register_Ns3RandomVariable_methods(root_module, cls):
2003 cls.add_output_stream_operator()
2004 ## random-variable.h (module 'core'): ns3::RandomVariable::RandomVariable() [constructor]
2005 cls.add_constructor([])
2006 ## random-variable.h (module 'core'): ns3::RandomVariable::RandomVariable(ns3::RandomVariable const & o) [copy constructor]
2007 cls.add_constructor([param('ns3::RandomVariable const &', 'o')])
2008 ## random-variable.h (module 'core'): uint32_t ns3::RandomVariable::GetInteger() const [member function]
2009 cls.add_method('GetInteger',
2010 'uint32_t',
2011 [],
2012 is_const=True)
2013 ## random-variable.h (module 'core'): double ns3::RandomVariable::GetValue() const [member function]
2014 cls.add_method('GetValue',
2015 'double',
2016 [],
2017 is_const=True)
2018 return
2019
2020def register_Ns3RngSeedManager_methods(root_module, cls):
2021 ## rng-seed-manager.h (module 'core'): ns3::RngSeedManager::RngSeedManager() [constructor]
2022 cls.add_constructor([])
2023 ## rng-seed-manager.h (module 'core'): ns3::RngSeedManager::RngSeedManager(ns3::RngSeedManager const & arg0) [copy constructor]
2024 cls.add_constructor([param('ns3::RngSeedManager const &', 'arg0')])
2025 ## rng-seed-manager.h (module 'core'): static uint64_t ns3::RngSeedManager::GetNextStreamIndex() [member function]
2026 cls.add_method('GetNextStreamIndex',
2027 'uint64_t',
2028 [],
2029 is_static=True)
2030 ## rng-seed-manager.h (module 'core'): static uint64_t ns3::RngSeedManager::GetRun() [member function]
2031 cls.add_method('GetRun',
2032 'uint64_t',
2033 [],
2034 is_static=True)
2035 ## rng-seed-manager.h (module 'core'): static uint32_t ns3::RngSeedManager::GetSeed() [member function]
2036 cls.add_method('GetSeed',
2037 'uint32_t',
2038 [],
2039 is_static=True)
2040 ## rng-seed-manager.h (module 'core'): static void ns3::RngSeedManager::SetRun(uint64_t run) [member function]
2041 cls.add_method('SetRun',
2042 'void',
2043 [param('uint64_t', 'run')],
2044 is_static=True)
2045 ## rng-seed-manager.h (module 'core'): static void ns3::RngSeedManager::SetSeed(uint32_t seed) [member function]
2046 cls.add_method('SetSeed',
2047 'void',
2048 [param('uint32_t', 'seed')],
2049 is_static=True)
2050 return
2051
2052def register_Ns3SequentialVariable_methods(root_module, cls):
2053 ## random-variable.h (module 'core'): ns3::SequentialVariable::SequentialVariable(ns3::SequentialVariable const & arg0) [copy constructor]
2054 cls.add_constructor([param('ns3::SequentialVariable const &', 'arg0')])
2055 ## random-variable.h (module 'core'): ns3::SequentialVariable::SequentialVariable(double f, double l, double i=1, uint32_t c=1) [constructor]
2056 cls.add_constructor([param('double', 'f'), param('double', 'l'), param('double', 'i', default_value='1'), param('uint32_t', 'c', default_value='1')])
2057 ## random-variable.h (module 'core'): ns3::SequentialVariable::SequentialVariable(double f, double l, ns3::RandomVariable const & i, uint32_t c=1) [constructor]
2058 cls.add_constructor([param('double', 'f'), param('double', 'l'), param('ns3::RandomVariable const &', 'i'), param('uint32_t', 'c', default_value='1')])
2059 return
2060
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002061def register_Ns3SimpleRefCount__Ns3Object_Ns3ObjectBase_Ns3ObjectDeleter_methods(root_module, cls):
2062 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter>::SimpleRefCount() [constructor]
2063 cls.add_constructor([])
2064 ## 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]
2065 cls.add_constructor([param('ns3::SimpleRefCount< ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter > const &', 'o')])
2066 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter>::Cleanup() [member function]
2067 cls.add_method('Cleanup',
2068 'void',
2069 [],
2070 is_static=True)
2071 return
2072
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07002073def register_Ns3Tag_methods(root_module, cls):
2074 ## tag.h (module 'network'): ns3::Tag::Tag() [constructor]
Alexander Afanasyev4975f732011-12-20 17:52:19 -08002075 cls.add_constructor([])
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07002076 ## tag.h (module 'network'): ns3::Tag::Tag(ns3::Tag const & arg0) [copy constructor]
2077 cls.add_constructor([param('ns3::Tag const &', 'arg0')])
2078 ## tag.h (module 'network'): void ns3::Tag::Deserialize(ns3::TagBuffer i) [member function]
2079 cls.add_method('Deserialize',
Alexander Afanasyev4975f732011-12-20 17:52:19 -08002080 'void',
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07002081 [param('ns3::TagBuffer', 'i')],
2082 is_pure_virtual=True, is_virtual=True)
2083 ## tag.h (module 'network'): uint32_t ns3::Tag::GetSerializedSize() const [member function]
2084 cls.add_method('GetSerializedSize',
2085 'uint32_t',
2086 [],
2087 is_pure_virtual=True, is_const=True, is_virtual=True)
2088 ## tag.h (module 'network'): static ns3::TypeId ns3::Tag::GetTypeId() [member function]
2089 cls.add_method('GetTypeId',
2090 'ns3::TypeId',
2091 [],
Alexander Afanasyev4975f732011-12-20 17:52:19 -08002092 is_static=True)
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07002093 ## tag.h (module 'network'): void ns3::Tag::Print(std::ostream & os) const [member function]
2094 cls.add_method('Print',
Alexander Afanasyev4975f732011-12-20 17:52:19 -08002095 'void',
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07002096 [param('std::ostream &', 'os')],
2097 is_pure_virtual=True, is_const=True, is_virtual=True)
2098 ## tag.h (module 'network'): void ns3::Tag::Serialize(ns3::TagBuffer i) const [member function]
2099 cls.add_method('Serialize',
2100 'void',
2101 [param('ns3::TagBuffer', 'i')],
2102 is_pure_virtual=True, is_const=True, is_virtual=True)
Alexander Afanasyev4975f732011-12-20 17:52:19 -08002103 return
2104
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002105def register_Ns3TagBuffer_methods(root_module, cls):
2106 ## tag-buffer.h (module 'network'): ns3::TagBuffer::TagBuffer(ns3::TagBuffer const & arg0) [copy constructor]
2107 cls.add_constructor([param('ns3::TagBuffer const &', 'arg0')])
2108 ## tag-buffer.h (module 'network'): ns3::TagBuffer::TagBuffer(uint8_t * start, uint8_t * end) [constructor]
2109 cls.add_constructor([param('uint8_t *', 'start'), param('uint8_t *', 'end')])
2110 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::CopyFrom(ns3::TagBuffer o) [member function]
2111 cls.add_method('CopyFrom',
2112 'void',
2113 [param('ns3::TagBuffer', 'o')])
2114 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::Read(uint8_t * buffer, uint32_t size) [member function]
2115 cls.add_method('Read',
2116 'void',
2117 [param('uint8_t *', 'buffer'), param('uint32_t', 'size')])
2118 ## tag-buffer.h (module 'network'): double ns3::TagBuffer::ReadDouble() [member function]
2119 cls.add_method('ReadDouble',
2120 'double',
2121 [])
2122 ## tag-buffer.h (module 'network'): uint16_t ns3::TagBuffer::ReadU16() [member function]
2123 cls.add_method('ReadU16',
2124 'uint16_t',
2125 [])
2126 ## tag-buffer.h (module 'network'): uint32_t ns3::TagBuffer::ReadU32() [member function]
2127 cls.add_method('ReadU32',
2128 'uint32_t',
2129 [])
2130 ## tag-buffer.h (module 'network'): uint64_t ns3::TagBuffer::ReadU64() [member function]
2131 cls.add_method('ReadU64',
2132 'uint64_t',
2133 [])
2134 ## tag-buffer.h (module 'network'): uint8_t ns3::TagBuffer::ReadU8() [member function]
2135 cls.add_method('ReadU8',
2136 'uint8_t',
2137 [])
2138 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::TrimAtEnd(uint32_t trim) [member function]
2139 cls.add_method('TrimAtEnd',
2140 'void',
2141 [param('uint32_t', 'trim')])
2142 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::Write(uint8_t const * buffer, uint32_t size) [member function]
2143 cls.add_method('Write',
2144 'void',
2145 [param('uint8_t const *', 'buffer'), param('uint32_t', 'size')])
2146 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::WriteDouble(double v) [member function]
2147 cls.add_method('WriteDouble',
2148 'void',
2149 [param('double', 'v')])
2150 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::WriteU16(uint16_t data) [member function]
2151 cls.add_method('WriteU16',
2152 'void',
2153 [param('uint16_t', 'data')])
2154 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::WriteU32(uint32_t data) [member function]
2155 cls.add_method('WriteU32',
2156 'void',
2157 [param('uint32_t', 'data')])
2158 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::WriteU64(uint64_t v) [member function]
2159 cls.add_method('WriteU64',
2160 'void',
2161 [param('uint64_t', 'v')])
2162 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::WriteU8(uint8_t v) [member function]
2163 cls.add_method('WriteU8',
2164 'void',
2165 [param('uint8_t', 'v')])
2166 return
2167
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07002168def register_Ns3TriangularVariable_methods(root_module, cls):
2169 ## random-variable.h (module 'core'): ns3::TriangularVariable::TriangularVariable(ns3::TriangularVariable const & arg0) [copy constructor]
2170 cls.add_constructor([param('ns3::TriangularVariable const &', 'arg0')])
2171 ## random-variable.h (module 'core'): ns3::TriangularVariable::TriangularVariable() [constructor]
2172 cls.add_constructor([])
2173 ## random-variable.h (module 'core'): ns3::TriangularVariable::TriangularVariable(double s, double l, double mean) [constructor]
2174 cls.add_constructor([param('double', 's'), param('double', 'l'), param('double', 'mean')])
2175 return
2176
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002177def register_Ns3TypeId_methods(root_module, cls):
2178 cls.add_binary_comparison_operator('!=')
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07002179 cls.add_output_stream_operator()
Alexander Afanasyeva28ec562012-10-25 14:07:32 -07002180 cls.add_binary_comparison_operator('==')
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002181 cls.add_binary_comparison_operator('<')
2182 ## type-id.h (module 'core'): ns3::TypeId::TypeId(char const * name) [constructor]
2183 cls.add_constructor([param('char const *', 'name')])
2184 ## type-id.h (module 'core'): ns3::TypeId::TypeId() [constructor]
2185 cls.add_constructor([])
2186 ## type-id.h (module 'core'): ns3::TypeId::TypeId(ns3::TypeId const & o) [copy constructor]
2187 cls.add_constructor([param('ns3::TypeId const &', 'o')])
2188 ## 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]
2189 cls.add_method('AddAttribute',
2190 'ns3::TypeId',
2191 [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')])
2192 ## 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]
2193 cls.add_method('AddAttribute',
2194 'ns3::TypeId',
2195 [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')])
2196 ## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::AddTraceSource(std::string name, std::string help, ns3::Ptr<ns3::TraceSourceAccessor const> accessor) [member function]
2197 cls.add_method('AddTraceSource',
2198 'ns3::TypeId',
2199 [param('std::string', 'name'), param('std::string', 'help'), param('ns3::Ptr< ns3::TraceSourceAccessor const >', 'accessor')])
2200 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation ns3::TypeId::GetAttribute(uint32_t i) const [member function]
2201 cls.add_method('GetAttribute',
2202 'ns3::TypeId::AttributeInformation',
2203 [param('uint32_t', 'i')],
2204 is_const=True)
2205 ## type-id.h (module 'core'): std::string ns3::TypeId::GetAttributeFullName(uint32_t i) const [member function]
2206 cls.add_method('GetAttributeFullName',
2207 'std::string',
2208 [param('uint32_t', 'i')],
2209 is_const=True)
2210 ## type-id.h (module 'core'): uint32_t ns3::TypeId::GetAttributeN() const [member function]
2211 cls.add_method('GetAttributeN',
2212 'uint32_t',
2213 [],
2214 is_const=True)
2215 ## 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]
2216 cls.add_method('GetConstructor',
2217 'ns3::Callback< ns3::ObjectBase *, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >',
2218 [],
2219 is_const=True)
2220 ## type-id.h (module 'core'): std::string ns3::TypeId::GetGroupName() const [member function]
2221 cls.add_method('GetGroupName',
2222 'std::string',
2223 [],
2224 is_const=True)
2225 ## type-id.h (module 'core'): std::string ns3::TypeId::GetName() const [member function]
2226 cls.add_method('GetName',
2227 'std::string',
2228 [],
2229 is_const=True)
2230 ## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::GetParent() const [member function]
2231 cls.add_method('GetParent',
2232 'ns3::TypeId',
2233 [],
2234 is_const=True)
2235 ## type-id.h (module 'core'): static ns3::TypeId ns3::TypeId::GetRegistered(uint32_t i) [member function]
2236 cls.add_method('GetRegistered',
2237 'ns3::TypeId',
2238 [param('uint32_t', 'i')],
2239 is_static=True)
2240 ## type-id.h (module 'core'): static uint32_t ns3::TypeId::GetRegisteredN() [member function]
2241 cls.add_method('GetRegisteredN',
2242 'uint32_t',
2243 [],
2244 is_static=True)
2245 ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation ns3::TypeId::GetTraceSource(uint32_t i) const [member function]
2246 cls.add_method('GetTraceSource',
2247 'ns3::TypeId::TraceSourceInformation',
2248 [param('uint32_t', 'i')],
2249 is_const=True)
2250 ## type-id.h (module 'core'): uint32_t ns3::TypeId::GetTraceSourceN() const [member function]
2251 cls.add_method('GetTraceSourceN',
2252 'uint32_t',
2253 [],
2254 is_const=True)
2255 ## type-id.h (module 'core'): uint16_t ns3::TypeId::GetUid() const [member function]
2256 cls.add_method('GetUid',
2257 'uint16_t',
2258 [],
2259 is_const=True)
2260 ## type-id.h (module 'core'): bool ns3::TypeId::HasConstructor() const [member function]
2261 cls.add_method('HasConstructor',
2262 'bool',
2263 [],
2264 is_const=True)
2265 ## type-id.h (module 'core'): bool ns3::TypeId::HasParent() const [member function]
2266 cls.add_method('HasParent',
2267 'bool',
2268 [],
2269 is_const=True)
2270 ## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::HideFromDocumentation() [member function]
2271 cls.add_method('HideFromDocumentation',
2272 'ns3::TypeId',
2273 [])
2274 ## type-id.h (module 'core'): bool ns3::TypeId::IsChildOf(ns3::TypeId other) const [member function]
2275 cls.add_method('IsChildOf',
2276 'bool',
2277 [param('ns3::TypeId', 'other')],
2278 is_const=True)
2279 ## type-id.h (module 'core'): bool ns3::TypeId::LookupAttributeByName(std::string name, ns3::TypeId::AttributeInformation * info) const [member function]
2280 cls.add_method('LookupAttributeByName',
2281 'bool',
Alexander Afanasyev6f933532012-02-29 13:30:37 -08002282 [param('std::string', 'name'), param('ns3::TypeId::AttributeInformation *', 'info', transfer_ownership=False)],
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002283 is_const=True)
2284 ## type-id.h (module 'core'): static ns3::TypeId ns3::TypeId::LookupByName(std::string name) [member function]
2285 cls.add_method('LookupByName',
2286 'ns3::TypeId',
2287 [param('std::string', 'name')],
2288 is_static=True)
2289 ## type-id.h (module 'core'): ns3::Ptr<ns3::TraceSourceAccessor const> ns3::TypeId::LookupTraceSourceByName(std::string name) const [member function]
2290 cls.add_method('LookupTraceSourceByName',
2291 'ns3::Ptr< ns3::TraceSourceAccessor const >',
2292 [param('std::string', 'name')],
2293 is_const=True)
2294 ## type-id.h (module 'core'): bool ns3::TypeId::MustHideFromDocumentation() const [member function]
2295 cls.add_method('MustHideFromDocumentation',
2296 'bool',
2297 [],
2298 is_const=True)
2299 ## type-id.h (module 'core'): bool ns3::TypeId::SetAttributeInitialValue(uint32_t i, ns3::Ptr<ns3::AttributeValue const> initialValue) [member function]
2300 cls.add_method('SetAttributeInitialValue',
2301 'bool',
2302 [param('uint32_t', 'i'), param('ns3::Ptr< ns3::AttributeValue const >', 'initialValue')])
2303 ## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::SetGroupName(std::string groupName) [member function]
2304 cls.add_method('SetGroupName',
2305 'ns3::TypeId',
2306 [param('std::string', 'groupName')])
2307 ## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::SetParent(ns3::TypeId tid) [member function]
2308 cls.add_method('SetParent',
2309 'ns3::TypeId',
2310 [param('ns3::TypeId', 'tid')])
2311 ## type-id.h (module 'core'): void ns3::TypeId::SetUid(uint16_t tid) [member function]
2312 cls.add_method('SetUid',
2313 'void',
2314 [param('uint16_t', 'tid')])
2315 return
2316
2317def register_Ns3TypeIdAttributeInformation_methods(root_module, cls):
2318 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::AttributeInformation() [constructor]
2319 cls.add_constructor([])
2320 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::AttributeInformation(ns3::TypeId::AttributeInformation const & arg0) [copy constructor]
2321 cls.add_constructor([param('ns3::TypeId::AttributeInformation const &', 'arg0')])
2322 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::accessor [variable]
2323 cls.add_instance_attribute('accessor', 'ns3::Ptr< ns3::AttributeAccessor const >', is_const=False)
2324 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::checker [variable]
2325 cls.add_instance_attribute('checker', 'ns3::Ptr< ns3::AttributeChecker const >', is_const=False)
2326 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::flags [variable]
2327 cls.add_instance_attribute('flags', 'uint32_t', is_const=False)
2328 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::help [variable]
2329 cls.add_instance_attribute('help', 'std::string', is_const=False)
2330 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::initialValue [variable]
2331 cls.add_instance_attribute('initialValue', 'ns3::Ptr< ns3::AttributeValue const >', is_const=False)
2332 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::name [variable]
2333 cls.add_instance_attribute('name', 'std::string', is_const=False)
2334 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::originalInitialValue [variable]
2335 cls.add_instance_attribute('originalInitialValue', 'ns3::Ptr< ns3::AttributeValue const >', is_const=False)
2336 return
2337
2338def register_Ns3TypeIdTraceSourceInformation_methods(root_module, cls):
2339 ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation::TraceSourceInformation() [constructor]
2340 cls.add_constructor([])
2341 ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation::TraceSourceInformation(ns3::TypeId::TraceSourceInformation const & arg0) [copy constructor]
2342 cls.add_constructor([param('ns3::TypeId::TraceSourceInformation const &', 'arg0')])
2343 ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation::accessor [variable]
2344 cls.add_instance_attribute('accessor', 'ns3::Ptr< ns3::TraceSourceAccessor const >', is_const=False)
2345 ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation::help [variable]
2346 cls.add_instance_attribute('help', 'std::string', is_const=False)
2347 ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation::name [variable]
2348 cls.add_instance_attribute('name', 'std::string', is_const=False)
2349 return
2350
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07002351def register_Ns3UniformVariable_methods(root_module, cls):
2352 ## random-variable.h (module 'core'): ns3::UniformVariable::UniformVariable(ns3::UniformVariable const & arg0) [copy constructor]
2353 cls.add_constructor([param('ns3::UniformVariable const &', 'arg0')])
2354 ## random-variable.h (module 'core'): ns3::UniformVariable::UniformVariable() [constructor]
2355 cls.add_constructor([])
2356 ## random-variable.h (module 'core'): ns3::UniformVariable::UniformVariable(double s, double l) [constructor]
2357 cls.add_constructor([param('double', 's'), param('double', 'l')])
2358 ## random-variable.h (module 'core'): uint32_t ns3::UniformVariable::GetInteger(uint32_t s, uint32_t l) [member function]
2359 cls.add_method('GetInteger',
2360 'uint32_t',
2361 [param('uint32_t', 's'), param('uint32_t', 'l')])
2362 ## random-variable.h (module 'core'): double ns3::UniformVariable::GetValue() const [member function]
2363 cls.add_method('GetValue',
2364 'double',
2365 [],
2366 is_const=True)
2367 ## random-variable.h (module 'core'): double ns3::UniformVariable::GetValue(double s, double l) [member function]
2368 cls.add_method('GetValue',
2369 'double',
2370 [param('double', 's'), param('double', 'l')])
2371 return
2372
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07002373def register_Ns3WeibullVariable_methods(root_module, cls):
2374 ## random-variable.h (module 'core'): ns3::WeibullVariable::WeibullVariable(ns3::WeibullVariable const & arg0) [copy constructor]
2375 cls.add_constructor([param('ns3::WeibullVariable const &', 'arg0')])
2376 ## random-variable.h (module 'core'): ns3::WeibullVariable::WeibullVariable() [constructor]
2377 cls.add_constructor([])
2378 ## random-variable.h (module 'core'): ns3::WeibullVariable::WeibullVariable(double m) [constructor]
2379 cls.add_constructor([param('double', 'm')])
2380 ## random-variable.h (module 'core'): ns3::WeibullVariable::WeibullVariable(double m, double s) [constructor]
2381 cls.add_constructor([param('double', 'm'), param('double', 's')])
2382 ## random-variable.h (module 'core'): ns3::WeibullVariable::WeibullVariable(double m, double s, double b) [constructor]
2383 cls.add_constructor([param('double', 'm'), param('double', 's'), param('double', 'b')])
2384 return
2385
2386def register_Ns3ZetaVariable_methods(root_module, cls):
2387 ## random-variable.h (module 'core'): ns3::ZetaVariable::ZetaVariable(ns3::ZetaVariable const & arg0) [copy constructor]
2388 cls.add_constructor([param('ns3::ZetaVariable const &', 'arg0')])
2389 ## random-variable.h (module 'core'): ns3::ZetaVariable::ZetaVariable(double alpha) [constructor]
2390 cls.add_constructor([param('double', 'alpha')])
2391 ## random-variable.h (module 'core'): ns3::ZetaVariable::ZetaVariable() [constructor]
2392 cls.add_constructor([])
2393 return
2394
2395def register_Ns3ZipfVariable_methods(root_module, cls):
2396 ## random-variable.h (module 'core'): ns3::ZipfVariable::ZipfVariable(ns3::ZipfVariable const & arg0) [copy constructor]
2397 cls.add_constructor([param('ns3::ZipfVariable const &', 'arg0')])
2398 ## random-variable.h (module 'core'): ns3::ZipfVariable::ZipfVariable(long int N, double alpha) [constructor]
2399 cls.add_constructor([param('long int', 'N'), param('double', 'alpha')])
2400 ## random-variable.h (module 'core'): ns3::ZipfVariable::ZipfVariable() [constructor]
2401 cls.add_constructor([])
2402 return
2403
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002404def register_Ns3Empty_methods(root_module, cls):
2405 ## empty.h (module 'core'): ns3::empty::empty() [constructor]
2406 cls.add_constructor([])
2407 ## empty.h (module 'core'): ns3::empty::empty(ns3::empty const & arg0) [copy constructor]
2408 cls.add_constructor([param('ns3::empty const &', 'arg0')])
2409 return
2410
2411def register_Ns3Int64x64_t_methods(root_module, cls):
2412 cls.add_binary_comparison_operator('!=')
2413 cls.add_inplace_numeric_operator('*=', param('ns3::int64x64_t const &', 'right'))
2414 cls.add_inplace_numeric_operator('+=', param('ns3::int64x64_t const &', 'right'))
2415 cls.add_inplace_numeric_operator('-=', param('ns3::int64x64_t const &', 'right'))
Alexander Afanasyeva28ec562012-10-25 14:07:32 -07002416 cls.add_output_stream_operator()
Alexander Afanasyeva8f5d882012-11-09 14:22:48 -08002417 cls.add_binary_comparison_operator('<=')
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002418 cls.add_binary_comparison_operator('==')
2419 cls.add_binary_comparison_operator('>=')
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07002420 cls.add_inplace_numeric_operator('/=', param('ns3::int64x64_t const &', 'right'))
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002421 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long unsigned int const', 'right'))
2422 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long unsigned int const', 'right'))
2423 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned int const', 'right'))
2424 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short unsigned int const', 'right'))
2425 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned char const', 'right'))
2426 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long int const', 'right'))
2427 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long int const', 'right'))
2428 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('int const', 'right'))
2429 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short int const', 'right'))
2430 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('signed char const', 'right'))
2431 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('double const', 'right'))
2432 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('ns3::int64x64_t const &', 'right'))
2433 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long unsigned int const', 'right'))
2434 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long unsigned int const', 'right'))
2435 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned int const', 'right'))
2436 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short unsigned int const', 'right'))
2437 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned char const', 'right'))
2438 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long int const', 'right'))
2439 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long int const', 'right'))
2440 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('int const', 'right'))
2441 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short int const', 'right'))
2442 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('signed char const', 'right'))
2443 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('double const', 'right'))
2444 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('ns3::int64x64_t const &', 'right'))
2445 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long unsigned int const', 'right'))
2446 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long unsigned int const', 'right'))
2447 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned int const', 'right'))
2448 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short unsigned int const', 'right'))
2449 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned char const', 'right'))
2450 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long int const', 'right'))
2451 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long int const', 'right'))
2452 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('int const', 'right'))
2453 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short int const', 'right'))
2454 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('signed char const', 'right'))
2455 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('double const', 'right'))
2456 cls.add_unary_numeric_operator('-')
2457 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('ns3::int64x64_t const &', 'right'))
2458 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long unsigned int const', 'right'))
2459 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long unsigned int const', 'right'))
2460 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned int const', 'right'))
2461 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short unsigned int const', 'right'))
2462 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned char const', 'right'))
2463 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long int const', 'right'))
2464 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long int const', 'right'))
2465 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('int const', 'right'))
2466 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short int const', 'right'))
2467 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('signed char const', 'right'))
2468 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('double const', 'right'))
2469 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('ns3::int64x64_t const &', 'right'))
2470 cls.add_binary_comparison_operator('<')
2471 cls.add_binary_comparison_operator('>')
2472 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t() [constructor]
2473 cls.add_constructor([])
2474 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(double v) [constructor]
2475 cls.add_constructor([param('double', 'v')])
2476 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(int v) [constructor]
2477 cls.add_constructor([param('int', 'v')])
2478 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(long int v) [constructor]
2479 cls.add_constructor([param('long int', 'v')])
2480 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(long long int v) [constructor]
2481 cls.add_constructor([param('long long int', 'v')])
2482 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(unsigned int v) [constructor]
2483 cls.add_constructor([param('unsigned int', 'v')])
2484 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(long unsigned int v) [constructor]
2485 cls.add_constructor([param('long unsigned int', 'v')])
2486 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(long long unsigned int v) [constructor]
2487 cls.add_constructor([param('long long unsigned int', 'v')])
2488 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(int64_t hi, uint64_t lo) [constructor]
2489 cls.add_constructor([param('int64_t', 'hi'), param('uint64_t', 'lo')])
2490 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(ns3::int64x64_t const & o) [copy constructor]
2491 cls.add_constructor([param('ns3::int64x64_t const &', 'o')])
2492 ## int64x64-double.h (module 'core'): double ns3::int64x64_t::GetDouble() const [member function]
2493 cls.add_method('GetDouble',
2494 'double',
2495 [],
2496 is_const=True)
2497 ## int64x64-double.h (module 'core'): int64_t ns3::int64x64_t::GetHigh() const [member function]
2498 cls.add_method('GetHigh',
2499 'int64_t',
2500 [],
2501 is_const=True)
2502 ## int64x64-double.h (module 'core'): uint64_t ns3::int64x64_t::GetLow() const [member function]
2503 cls.add_method('GetLow',
2504 'uint64_t',
2505 [],
2506 is_const=True)
2507 ## int64x64-double.h (module 'core'): static ns3::int64x64_t ns3::int64x64_t::Invert(uint64_t v) [member function]
2508 cls.add_method('Invert',
2509 'ns3::int64x64_t',
2510 [param('uint64_t', 'v')],
2511 is_static=True)
2512 ## int64x64-double.h (module 'core'): void ns3::int64x64_t::MulByInvert(ns3::int64x64_t const & o) [member function]
2513 cls.add_method('MulByInvert',
2514 'void',
2515 [param('ns3::int64x64_t const &', 'o')])
2516 return
2517
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002518def register_Ns3Chunk_methods(root_module, cls):
2519 ## chunk.h (module 'network'): ns3::Chunk::Chunk() [constructor]
2520 cls.add_constructor([])
2521 ## chunk.h (module 'network'): ns3::Chunk::Chunk(ns3::Chunk const & arg0) [copy constructor]
2522 cls.add_constructor([param('ns3::Chunk const &', 'arg0')])
2523 ## chunk.h (module 'network'): uint32_t ns3::Chunk::Deserialize(ns3::Buffer::Iterator start) [member function]
2524 cls.add_method('Deserialize',
2525 'uint32_t',
2526 [param('ns3::Buffer::Iterator', 'start')],
2527 is_pure_virtual=True, is_virtual=True)
2528 ## chunk.h (module 'network'): static ns3::TypeId ns3::Chunk::GetTypeId() [member function]
2529 cls.add_method('GetTypeId',
2530 'ns3::TypeId',
2531 [],
2532 is_static=True)
2533 ## chunk.h (module 'network'): void ns3::Chunk::Print(std::ostream & os) const [member function]
2534 cls.add_method('Print',
2535 'void',
2536 [param('std::ostream &', 'os')],
2537 is_pure_virtual=True, is_const=True, is_virtual=True)
2538 return
2539
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07002540def register_Ns3ConstantVariable_methods(root_module, cls):
2541 ## random-variable.h (module 'core'): ns3::ConstantVariable::ConstantVariable(ns3::ConstantVariable const & arg0) [copy constructor]
2542 cls.add_constructor([param('ns3::ConstantVariable const &', 'arg0')])
2543 ## random-variable.h (module 'core'): ns3::ConstantVariable::ConstantVariable() [constructor]
2544 cls.add_constructor([])
2545 ## random-variable.h (module 'core'): ns3::ConstantVariable::ConstantVariable(double c) [constructor]
2546 cls.add_constructor([param('double', 'c')])
2547 ## random-variable.h (module 'core'): void ns3::ConstantVariable::SetConstant(double c) [member function]
2548 cls.add_method('SetConstant',
2549 'void',
2550 [param('double', 'c')])
2551 return
2552
2553def register_Ns3DeterministicVariable_methods(root_module, cls):
2554 ## random-variable.h (module 'core'): ns3::DeterministicVariable::DeterministicVariable(ns3::DeterministicVariable const & arg0) [copy constructor]
2555 cls.add_constructor([param('ns3::DeterministicVariable const &', 'arg0')])
2556 ## random-variable.h (module 'core'): ns3::DeterministicVariable::DeterministicVariable(double * d, uint32_t c) [constructor]
2557 cls.add_constructor([param('double *', 'd'), param('uint32_t', 'c')])
2558 return
2559
2560def register_Ns3EmpiricalVariable_methods(root_module, cls):
2561 ## random-variable.h (module 'core'): ns3::EmpiricalVariable::EmpiricalVariable(ns3::EmpiricalVariable const & arg0) [copy constructor]
2562 cls.add_constructor([param('ns3::EmpiricalVariable const &', 'arg0')])
2563 ## random-variable.h (module 'core'): ns3::EmpiricalVariable::EmpiricalVariable() [constructor]
2564 cls.add_constructor([])
2565 ## random-variable.h (module 'core'): void ns3::EmpiricalVariable::CDF(double v, double c) [member function]
2566 cls.add_method('CDF',
2567 'void',
2568 [param('double', 'v'), param('double', 'c')])
2569 return
2570
2571def register_Ns3ErlangVariable_methods(root_module, cls):
2572 ## random-variable.h (module 'core'): ns3::ErlangVariable::ErlangVariable(ns3::ErlangVariable const & arg0) [copy constructor]
2573 cls.add_constructor([param('ns3::ErlangVariable const &', 'arg0')])
2574 ## random-variable.h (module 'core'): ns3::ErlangVariable::ErlangVariable() [constructor]
2575 cls.add_constructor([])
2576 ## random-variable.h (module 'core'): ns3::ErlangVariable::ErlangVariable(unsigned int k, double lambda) [constructor]
2577 cls.add_constructor([param('unsigned int', 'k'), param('double', 'lambda')])
2578 ## random-variable.h (module 'core'): double ns3::ErlangVariable::GetValue() const [member function]
2579 cls.add_method('GetValue',
2580 'double',
2581 [],
2582 is_const=True)
2583 ## random-variable.h (module 'core'): double ns3::ErlangVariable::GetValue(unsigned int k, double lambda) const [member function]
2584 cls.add_method('GetValue',
2585 'double',
2586 [param('unsigned int', 'k'), param('double', 'lambda')],
2587 is_const=True)
2588 return
2589
2590def register_Ns3ExponentialVariable_methods(root_module, cls):
2591 ## random-variable.h (module 'core'): ns3::ExponentialVariable::ExponentialVariable(ns3::ExponentialVariable const & arg0) [copy constructor]
2592 cls.add_constructor([param('ns3::ExponentialVariable const &', 'arg0')])
2593 ## random-variable.h (module 'core'): ns3::ExponentialVariable::ExponentialVariable() [constructor]
2594 cls.add_constructor([])
2595 ## random-variable.h (module 'core'): ns3::ExponentialVariable::ExponentialVariable(double m) [constructor]
2596 cls.add_constructor([param('double', 'm')])
2597 ## random-variable.h (module 'core'): ns3::ExponentialVariable::ExponentialVariable(double m, double b) [constructor]
2598 cls.add_constructor([param('double', 'm'), param('double', 'b')])
2599 return
2600
2601def register_Ns3GammaVariable_methods(root_module, cls):
2602 ## random-variable.h (module 'core'): ns3::GammaVariable::GammaVariable(ns3::GammaVariable const & arg0) [copy constructor]
2603 cls.add_constructor([param('ns3::GammaVariable const &', 'arg0')])
2604 ## random-variable.h (module 'core'): ns3::GammaVariable::GammaVariable() [constructor]
2605 cls.add_constructor([])
2606 ## random-variable.h (module 'core'): ns3::GammaVariable::GammaVariable(double alpha, double beta) [constructor]
2607 cls.add_constructor([param('double', 'alpha'), param('double', 'beta')])
2608 ## random-variable.h (module 'core'): double ns3::GammaVariable::GetValue() const [member function]
2609 cls.add_method('GetValue',
2610 'double',
2611 [],
2612 is_const=True)
2613 ## random-variable.h (module 'core'): double ns3::GammaVariable::GetValue(double alpha, double beta) const [member function]
2614 cls.add_method('GetValue',
2615 'double',
2616 [param('double', 'alpha'), param('double', 'beta')],
2617 is_const=True)
2618 return
2619
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002620def register_Ns3Header_methods(root_module, cls):
2621 cls.add_output_stream_operator()
2622 ## header.h (module 'network'): ns3::Header::Header() [constructor]
2623 cls.add_constructor([])
2624 ## header.h (module 'network'): ns3::Header::Header(ns3::Header const & arg0) [copy constructor]
2625 cls.add_constructor([param('ns3::Header const &', 'arg0')])
2626 ## header.h (module 'network'): uint32_t ns3::Header::Deserialize(ns3::Buffer::Iterator start) [member function]
2627 cls.add_method('Deserialize',
2628 'uint32_t',
2629 [param('ns3::Buffer::Iterator', 'start')],
2630 is_pure_virtual=True, is_virtual=True)
2631 ## header.h (module 'network'): uint32_t ns3::Header::GetSerializedSize() const [member function]
2632 cls.add_method('GetSerializedSize',
2633 'uint32_t',
2634 [],
2635 is_pure_virtual=True, is_const=True, is_virtual=True)
2636 ## header.h (module 'network'): static ns3::TypeId ns3::Header::GetTypeId() [member function]
2637 cls.add_method('GetTypeId',
2638 'ns3::TypeId',
2639 [],
2640 is_static=True)
2641 ## header.h (module 'network'): void ns3::Header::Print(std::ostream & os) const [member function]
2642 cls.add_method('Print',
2643 'void',
2644 [param('std::ostream &', 'os')],
2645 is_pure_virtual=True, is_const=True, is_virtual=True)
2646 ## header.h (module 'network'): void ns3::Header::Serialize(ns3::Buffer::Iterator start) const [member function]
2647 cls.add_method('Serialize',
2648 'void',
2649 [param('ns3::Buffer::Iterator', 'start')],
2650 is_pure_virtual=True, is_const=True, is_virtual=True)
2651 return
2652
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07002653def register_Ns3IntEmpiricalVariable_methods(root_module, cls):
2654 ## random-variable.h (module 'core'): ns3::IntEmpiricalVariable::IntEmpiricalVariable(ns3::IntEmpiricalVariable const & arg0) [copy constructor]
2655 cls.add_constructor([param('ns3::IntEmpiricalVariable const &', 'arg0')])
2656 ## random-variable.h (module 'core'): ns3::IntEmpiricalVariable::IntEmpiricalVariable() [constructor]
2657 cls.add_constructor([])
2658 return
2659
2660def register_Ns3LogNormalVariable_methods(root_module, cls):
2661 ## random-variable.h (module 'core'): ns3::LogNormalVariable::LogNormalVariable(ns3::LogNormalVariable const & arg0) [copy constructor]
2662 cls.add_constructor([param('ns3::LogNormalVariable const &', 'arg0')])
2663 ## random-variable.h (module 'core'): ns3::LogNormalVariable::LogNormalVariable(double mu, double sigma) [constructor]
2664 cls.add_constructor([param('double', 'mu'), param('double', 'sigma')])
2665 return
2666
2667def register_Ns3NormalVariable_methods(root_module, cls):
2668 ## random-variable.h (module 'core'): ns3::NormalVariable::NormalVariable(ns3::NormalVariable const & arg0) [copy constructor]
2669 cls.add_constructor([param('ns3::NormalVariable const &', 'arg0')])
2670 ## random-variable.h (module 'core'): ns3::NormalVariable::NormalVariable() [constructor]
2671 cls.add_constructor([])
2672 ## random-variable.h (module 'core'): ns3::NormalVariable::NormalVariable(double m, double v) [constructor]
2673 cls.add_constructor([param('double', 'm'), param('double', 'v')])
2674 ## random-variable.h (module 'core'): ns3::NormalVariable::NormalVariable(double m, double v, double b) [constructor]
2675 cls.add_constructor([param('double', 'm'), param('double', 'v'), param('double', 'b')])
2676 return
2677
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002678def register_Ns3Object_methods(root_module, cls):
2679 ## object.h (module 'core'): ns3::Object::Object() [constructor]
2680 cls.add_constructor([])
2681 ## object.h (module 'core'): void ns3::Object::AggregateObject(ns3::Ptr<ns3::Object> other) [member function]
2682 cls.add_method('AggregateObject',
2683 'void',
2684 [param('ns3::Ptr< ns3::Object >', 'other')])
2685 ## object.h (module 'core'): void ns3::Object::Dispose() [member function]
2686 cls.add_method('Dispose',
2687 'void',
2688 [])
2689 ## object.h (module 'core'): ns3::Object::AggregateIterator ns3::Object::GetAggregateIterator() const [member function]
2690 cls.add_method('GetAggregateIterator',
2691 'ns3::Object::AggregateIterator',
2692 [],
2693 is_const=True)
2694 ## object.h (module 'core'): ns3::TypeId ns3::Object::GetInstanceTypeId() const [member function]
2695 cls.add_method('GetInstanceTypeId',
2696 'ns3::TypeId',
2697 [],
2698 is_const=True, is_virtual=True)
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07002699 ## object.h (module 'core'): ns3::Ptr<ns3::ndn::ContentStore> ns3::Object::GetObject() const [member function]
2700 cls.add_method('GetObject',
2701 'ns3::Ptr< ns3::ndn::ContentStore >',
2702 [],
2703 is_const=True, template_parameters=['ns3::ndn::ContentStore'])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07002704 ## object.h (module 'core'): ns3::Ptr<ns3::ndn::Fib> ns3::Object::GetObject() const [member function]
Alexander Afanasyev1c0248b2012-07-24 15:59:50 -07002705 cls.add_method('GetObject',
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07002706 'ns3::Ptr< ns3::ndn::Fib >',
Alexander Afanasyev1c0248b2012-07-24 15:59:50 -07002707 [],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07002708 is_const=True, template_parameters=['ns3::ndn::Fib'])
2709 ## object.h (module 'core'): ns3::Ptr<ns3::ndn::Pit> ns3::Object::GetObject() const [member function]
Alexander Afanasyev5feb38b2012-08-09 11:01:43 -07002710 cls.add_method('GetObject',
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07002711 'ns3::Ptr< ns3::ndn::Pit >',
Alexander Afanasyev5feb38b2012-08-09 11:01:43 -07002712 [],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07002713 is_const=True, template_parameters=['ns3::ndn::Pit'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002714 ## object.h (module 'core'): static ns3::TypeId ns3::Object::GetTypeId() [member function]
2715 cls.add_method('GetTypeId',
2716 'ns3::TypeId',
2717 [],
2718 is_static=True)
2719 ## object.h (module 'core'): void ns3::Object::Start() [member function]
2720 cls.add_method('Start',
2721 'void',
2722 [])
2723 ## object.h (module 'core'): ns3::Object::Object(ns3::Object const & o) [copy constructor]
2724 cls.add_constructor([param('ns3::Object const &', 'o')],
2725 visibility='protected')
2726 ## object.h (module 'core'): void ns3::Object::DoDispose() [member function]
2727 cls.add_method('DoDispose',
2728 'void',
2729 [],
2730 visibility='protected', is_virtual=True)
2731 ## object.h (module 'core'): void ns3::Object::DoStart() [member function]
2732 cls.add_method('DoStart',
2733 'void',
2734 [],
2735 visibility='protected', is_virtual=True)
2736 ## object.h (module 'core'): void ns3::Object::NotifyNewAggregate() [member function]
2737 cls.add_method('NotifyNewAggregate',
2738 'void',
2739 [],
2740 visibility='protected', is_virtual=True)
2741 return
2742
2743def register_Ns3ObjectAggregateIterator_methods(root_module, cls):
2744 ## object.h (module 'core'): ns3::Object::AggregateIterator::AggregateIterator(ns3::Object::AggregateIterator const & arg0) [copy constructor]
2745 cls.add_constructor([param('ns3::Object::AggregateIterator const &', 'arg0')])
2746 ## object.h (module 'core'): ns3::Object::AggregateIterator::AggregateIterator() [constructor]
2747 cls.add_constructor([])
2748 ## object.h (module 'core'): bool ns3::Object::AggregateIterator::HasNext() const [member function]
2749 cls.add_method('HasNext',
2750 'bool',
2751 [],
2752 is_const=True)
2753 ## object.h (module 'core'): ns3::Ptr<ns3::Object const> ns3::Object::AggregateIterator::Next() [member function]
2754 cls.add_method('Next',
2755 'ns3::Ptr< ns3::Object const >',
2756 [])
2757 return
2758
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07002759def register_Ns3ParetoVariable_methods(root_module, cls):
2760 ## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable(ns3::ParetoVariable const & arg0) [copy constructor]
2761 cls.add_constructor([param('ns3::ParetoVariable const &', 'arg0')])
2762 ## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable() [constructor]
2763 cls.add_constructor([])
2764 ## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable(double m) [constructor]
2765 cls.add_constructor([param('double', 'm')])
2766 ## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable(double m, double s) [constructor]
2767 cls.add_constructor([param('double', 'm'), param('double', 's')])
2768 ## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable(double m, double s, double b) [constructor]
2769 cls.add_constructor([param('double', 'm'), param('double', 's'), param('double', 'b')])
2770 ## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable(std::pair<double,double> params) [constructor]
2771 cls.add_constructor([param('std::pair< double, double >', 'params')])
2772 ## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable(std::pair<double,double> params, double b) [constructor]
2773 cls.add_constructor([param('std::pair< double, double >', 'params'), param('double', 'b')])
2774 return
2775
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002776def register_Ns3SimpleRefCount__Ns3AttributeAccessor_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeAccessor__gt___methods(root_module, cls):
2777 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> >::SimpleRefCount() [constructor]
2778 cls.add_constructor([])
2779 ## 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]
2780 cls.add_constructor([param('ns3::SimpleRefCount< ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter< ns3::AttributeAccessor > > const &', 'o')])
2781 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> >::Cleanup() [member function]
2782 cls.add_method('Cleanup',
2783 'void',
2784 [],
2785 is_static=True)
2786 return
2787
2788def register_Ns3SimpleRefCount__Ns3AttributeChecker_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeChecker__gt___methods(root_module, cls):
2789 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter<ns3::AttributeChecker> >::SimpleRefCount() [constructor]
2790 cls.add_constructor([])
2791 ## 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]
2792 cls.add_constructor([param('ns3::SimpleRefCount< ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter< ns3::AttributeChecker > > const &', 'o')])
2793 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter<ns3::AttributeChecker> >::Cleanup() [member function]
2794 cls.add_method('Cleanup',
2795 'void',
2796 [],
2797 is_static=True)
2798 return
2799
2800def register_Ns3SimpleRefCount__Ns3AttributeValue_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeValue__gt___methods(root_module, cls):
2801 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter<ns3::AttributeValue> >::SimpleRefCount() [constructor]
2802 cls.add_constructor([])
2803 ## 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]
2804 cls.add_constructor([param('ns3::SimpleRefCount< ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter< ns3::AttributeValue > > const &', 'o')])
2805 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter<ns3::AttributeValue> >::Cleanup() [member function]
2806 cls.add_method('Cleanup',
2807 'void',
2808 [],
2809 is_static=True)
2810 return
2811
2812def register_Ns3SimpleRefCount__Ns3CallbackImplBase_Ns3Empty_Ns3DefaultDeleter__lt__ns3CallbackImplBase__gt___methods(root_module, cls):
2813 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> >::SimpleRefCount() [constructor]
2814 cls.add_constructor([])
2815 ## 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]
2816 cls.add_constructor([param('ns3::SimpleRefCount< ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter< ns3::CallbackImplBase > > const &', 'o')])
2817 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> >::Cleanup() [member function]
2818 cls.add_method('Cleanup',
2819 'void',
2820 [],
2821 is_static=True)
2822 return
2823
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002824def register_Ns3SimpleRefCount__Ns3EventImpl_Ns3Empty_Ns3DefaultDeleter__lt__ns3EventImpl__gt___methods(root_module, cls):
2825 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::EventImpl, ns3::empty, ns3::DefaultDeleter<ns3::EventImpl> >::SimpleRefCount() [constructor]
2826 cls.add_constructor([])
2827 ## 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]
2828 cls.add_constructor([param('ns3::SimpleRefCount< ns3::EventImpl, ns3::empty, ns3::DefaultDeleter< ns3::EventImpl > > const &', 'o')])
2829 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::EventImpl, ns3::empty, ns3::DefaultDeleter<ns3::EventImpl> >::Cleanup() [member function]
2830 cls.add_method('Cleanup',
2831 'void',
2832 [],
2833 is_static=True)
2834 return
2835
2836def register_Ns3SimpleRefCount__Ns3NixVector_Ns3Empty_Ns3DefaultDeleter__lt__ns3NixVector__gt___methods(root_module, cls):
2837 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::NixVector, ns3::empty, ns3::DefaultDeleter<ns3::NixVector> >::SimpleRefCount() [constructor]
2838 cls.add_constructor([])
2839 ## 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]
2840 cls.add_constructor([param('ns3::SimpleRefCount< ns3::NixVector, ns3::empty, ns3::DefaultDeleter< ns3::NixVector > > const &', 'o')])
2841 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::NixVector, ns3::empty, ns3::DefaultDeleter<ns3::NixVector> >::Cleanup() [member function]
2842 cls.add_method('Cleanup',
2843 'void',
2844 [],
2845 is_static=True)
2846 return
2847
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002848def register_Ns3SimpleRefCount__Ns3Packet_Ns3Empty_Ns3DefaultDeleter__lt__ns3Packet__gt___methods(root_module, cls):
2849 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Packet, ns3::empty, ns3::DefaultDeleter<ns3::Packet> >::SimpleRefCount() [constructor]
2850 cls.add_constructor([])
2851 ## 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]
2852 cls.add_constructor([param('ns3::SimpleRefCount< ns3::Packet, ns3::empty, ns3::DefaultDeleter< ns3::Packet > > const &', 'o')])
2853 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::Packet, ns3::empty, ns3::DefaultDeleter<ns3::Packet> >::Cleanup() [member function]
2854 cls.add_method('Cleanup',
2855 'void',
2856 [],
2857 is_static=True)
2858 return
2859
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07002860def register_Ns3SimpleRefCount__Ns3TopologyReader_Ns3Empty_Ns3DefaultDeleter__lt__ns3TopologyReader__gt___methods(root_module, cls):
2861 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::TopologyReader, ns3::empty, ns3::DefaultDeleter<ns3::TopologyReader> >::SimpleRefCount() [constructor]
2862 cls.add_constructor([])
2863 ## 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]
2864 cls.add_constructor([param('ns3::SimpleRefCount< ns3::TopologyReader, ns3::empty, ns3::DefaultDeleter< ns3::TopologyReader > > const &', 'o')])
2865 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::TopologyReader, ns3::empty, ns3::DefaultDeleter<ns3::TopologyReader> >::Cleanup() [member function]
2866 cls.add_method('Cleanup',
2867 'void',
2868 [],
2869 is_static=True)
2870 return
2871
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002872def register_Ns3SimpleRefCount__Ns3TraceSourceAccessor_Ns3Empty_Ns3DefaultDeleter__lt__ns3TraceSourceAccessor__gt___methods(root_module, cls):
2873 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter<ns3::TraceSourceAccessor> >::SimpleRefCount() [constructor]
2874 cls.add_constructor([])
2875 ## 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]
2876 cls.add_constructor([param('ns3::SimpleRefCount< ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter< ns3::TraceSourceAccessor > > const &', 'o')])
2877 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter<ns3::TraceSourceAccessor> >::Cleanup() [member function]
2878 cls.add_method('Cleanup',
2879 'void',
2880 [],
2881 is_static=True)
2882 return
2883
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07002884def register_Ns3SimpleRefCount__Ns3NdnContentObjectHeader_Ns3Header_Ns3DefaultDeleter__lt__ns3NdnContentObjectHeader__gt___methods(root_module, cls):
2885 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::ndn::ContentObjectHeader, ns3::Header, ns3::DefaultDeleter<ns3::ndn::ContentObjectHeader> >::SimpleRefCount() [constructor]
2886 cls.add_constructor([])
2887 ## 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]
2888 cls.add_constructor([param('ns3::SimpleRefCount< ns3::ndn::ContentObjectHeader, ns3::Header, ns3::DefaultDeleter< ns3::ndn::ContentObjectHeader > > const &', 'o')])
2889 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::ndn::ContentObjectHeader, ns3::Header, ns3::DefaultDeleter<ns3::ndn::ContentObjectHeader> >::Cleanup() [member function]
2890 cls.add_method('Cleanup',
2891 'void',
2892 [],
2893 is_static=True)
2894 return
2895
2896def register_Ns3SimpleRefCount__Ns3NdnFaceContainer_Ns3Empty_Ns3DefaultDeleter__lt__ns3NdnFaceContainer__gt___methods(root_module, cls):
2897 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::ndn::FaceContainer, ns3::empty, ns3::DefaultDeleter<ns3::ndn::FaceContainer> >::SimpleRefCount() [constructor]
2898 cls.add_constructor([])
2899 ## 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]
2900 cls.add_constructor([param('ns3::SimpleRefCount< ns3::ndn::FaceContainer, ns3::empty, ns3::DefaultDeleter< ns3::ndn::FaceContainer > > const &', 'o')])
2901 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::ndn::FaceContainer, ns3::empty, ns3::DefaultDeleter<ns3::ndn::FaceContainer> >::Cleanup() [member function]
2902 cls.add_method('Cleanup',
2903 'void',
2904 [],
2905 is_static=True)
2906 return
2907
2908def register_Ns3SimpleRefCount__Ns3NdnInterestHeader_Ns3Header_Ns3DefaultDeleter__lt__ns3NdnInterestHeader__gt___methods(root_module, cls):
2909 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::ndn::InterestHeader, ns3::Header, ns3::DefaultDeleter<ns3::ndn::InterestHeader> >::SimpleRefCount() [constructor]
2910 cls.add_constructor([])
2911 ## 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]
2912 cls.add_constructor([param('ns3::SimpleRefCount< ns3::ndn::InterestHeader, ns3::Header, ns3::DefaultDeleter< ns3::ndn::InterestHeader > > const &', 'o')])
2913 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::ndn::InterestHeader, ns3::Header, ns3::DefaultDeleter<ns3::ndn::InterestHeader> >::Cleanup() [member function]
2914 cls.add_method('Cleanup',
2915 'void',
2916 [],
2917 is_static=True)
2918 return
2919
Alexander Afanasyev32c07562013-02-01 12:58:43 -08002920def register_Ns3SimpleRefCount__Ns3NdnName_Ns3Empty_Ns3DefaultDeleter__lt__ns3NdnName__gt___methods(root_module, cls):
2921 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::ndn::Name, ns3::empty, ns3::DefaultDeleter<ns3::ndn::Name> >::SimpleRefCount() [constructor]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07002922 cls.add_constructor([])
Alexander Afanasyev32c07562013-02-01 12:58:43 -08002923 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::ndn::Name, ns3::empty, ns3::DefaultDeleter<ns3::ndn::Name> >::SimpleRefCount(ns3::SimpleRefCount<ns3::ndn::Name, ns3::empty, ns3::DefaultDeleter<ns3::ndn::Name> > const & o) [copy constructor]
2924 cls.add_constructor([param('ns3::SimpleRefCount< ns3::ndn::Name, ns3::empty, ns3::DefaultDeleter< ns3::ndn::Name > > const &', 'o')])
2925 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::ndn::Name, ns3::empty, ns3::DefaultDeleter<ns3::ndn::Name> >::Cleanup() [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07002926 cls.add_method('Cleanup',
2927 'void',
2928 [],
2929 is_static=True)
2930 return
2931
2932def register_Ns3SimpleRefCount__Ns3NdnCsEntry_Ns3Empty_Ns3DefaultDeleter__lt__ns3NdnCsEntry__gt___methods(root_module, cls):
2933 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::ndn::cs::Entry, ns3::empty, ns3::DefaultDeleter<ns3::ndn::cs::Entry> >::SimpleRefCount() [constructor]
2934 cls.add_constructor([])
2935 ## 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]
2936 cls.add_constructor([param('ns3::SimpleRefCount< ns3::ndn::cs::Entry, ns3::empty, ns3::DefaultDeleter< ns3::ndn::cs::Entry > > const &', 'o')])
2937 ## 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]
2938 cls.add_method('Cleanup',
2939 'void',
2940 [],
2941 is_static=True)
2942 return
2943
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07002944def register_Ns3SimpleRefCount__Ns3NdnPitEntry_Ns3Empty_Ns3DefaultDeleter__lt__ns3NdnPitEntry__gt___methods(root_module, cls):
2945 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::ndn::pit::Entry, ns3::empty, ns3::DefaultDeleter<ns3::ndn::pit::Entry> >::SimpleRefCount() [constructor]
2946 cls.add_constructor([])
2947 ## 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]
2948 cls.add_constructor([param('ns3::SimpleRefCount< ns3::ndn::pit::Entry, ns3::empty, ns3::DefaultDeleter< ns3::ndn::pit::Entry > > const &', 'o')])
2949 ## 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]
2950 cls.add_method('Cleanup',
2951 'void',
2952 [],
2953 is_static=True)
2954 return
2955
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002956def register_Ns3Time_methods(root_module, cls):
2957 cls.add_binary_comparison_operator('!=')
2958 cls.add_inplace_numeric_operator('+=', param('ns3::Time const &', 'right'))
2959 cls.add_inplace_numeric_operator('-=', param('ns3::Time const &', 'right'))
Alexander Afanasyeva28ec562012-10-25 14:07:32 -07002960 cls.add_output_stream_operator()
Alexander Afanasyeva8f5d882012-11-09 14:22:48 -08002961 cls.add_binary_comparison_operator('<=')
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002962 cls.add_binary_comparison_operator('==')
2963 cls.add_binary_comparison_operator('>=')
2964 cls.add_binary_numeric_operator('+', root_module['ns3::Time'], root_module['ns3::Time'], param('ns3::Time const &', 'right'))
2965 cls.add_binary_numeric_operator('-', root_module['ns3::Time'], root_module['ns3::Time'], param('ns3::Time const &', 'right'))
2966 cls.add_binary_comparison_operator('<')
2967 cls.add_binary_comparison_operator('>')
2968 ## nstime.h (module 'core'): ns3::Time::Time() [constructor]
2969 cls.add_constructor([])
2970 ## nstime.h (module 'core'): ns3::Time::Time(ns3::Time const & o) [copy constructor]
2971 cls.add_constructor([param('ns3::Time const &', 'o')])
2972 ## nstime.h (module 'core'): ns3::Time::Time(double v) [constructor]
2973 cls.add_constructor([param('double', 'v')])
2974 ## nstime.h (module 'core'): ns3::Time::Time(int v) [constructor]
2975 cls.add_constructor([param('int', 'v')])
2976 ## nstime.h (module 'core'): ns3::Time::Time(long int v) [constructor]
2977 cls.add_constructor([param('long int', 'v')])
2978 ## nstime.h (module 'core'): ns3::Time::Time(long long int v) [constructor]
2979 cls.add_constructor([param('long long int', 'v')])
2980 ## nstime.h (module 'core'): ns3::Time::Time(unsigned int v) [constructor]
2981 cls.add_constructor([param('unsigned int', 'v')])
2982 ## nstime.h (module 'core'): ns3::Time::Time(long unsigned int v) [constructor]
2983 cls.add_constructor([param('long unsigned int', 'v')])
2984 ## nstime.h (module 'core'): ns3::Time::Time(long long unsigned int v) [constructor]
2985 cls.add_constructor([param('long long unsigned int', 'v')])
2986 ## nstime.h (module 'core'): ns3::Time::Time(std::string const & s) [constructor]
2987 cls.add_constructor([param('std::string const &', 's')])
2988 ## nstime.h (module 'core'): ns3::Time::Time(ns3::int64x64_t const & value) [constructor]
2989 cls.add_constructor([param('ns3::int64x64_t const &', 'value')])
2990 ## nstime.h (module 'core'): int ns3::Time::Compare(ns3::Time const & o) const [member function]
2991 cls.add_method('Compare',
2992 'int',
2993 [param('ns3::Time const &', 'o')],
2994 is_const=True)
2995 ## nstime.h (module 'core'): static ns3::Time ns3::Time::From(ns3::int64x64_t const & from, ns3::Time::Unit timeUnit) [member function]
2996 cls.add_method('From',
2997 'ns3::Time',
2998 [param('ns3::int64x64_t const &', 'from'), param('ns3::Time::Unit', 'timeUnit')],
2999 is_static=True)
3000 ## nstime.h (module 'core'): static ns3::Time ns3::Time::From(ns3::int64x64_t const & value) [member function]
3001 cls.add_method('From',
3002 'ns3::Time',
3003 [param('ns3::int64x64_t const &', 'value')],
3004 is_static=True)
3005 ## nstime.h (module 'core'): static ns3::Time ns3::Time::FromDouble(double value, ns3::Time::Unit timeUnit) [member function]
3006 cls.add_method('FromDouble',
3007 'ns3::Time',
3008 [param('double', 'value'), param('ns3::Time::Unit', 'timeUnit')],
3009 is_static=True)
3010 ## nstime.h (module 'core'): static ns3::Time ns3::Time::FromInteger(uint64_t value, ns3::Time::Unit timeUnit) [member function]
3011 cls.add_method('FromInteger',
3012 'ns3::Time',
3013 [param('uint64_t', 'value'), param('ns3::Time::Unit', 'timeUnit')],
3014 is_static=True)
3015 ## nstime.h (module 'core'): double ns3::Time::GetDouble() const [member function]
3016 cls.add_method('GetDouble',
3017 'double',
3018 [],
3019 is_const=True)
3020 ## nstime.h (module 'core'): int64_t ns3::Time::GetFemtoSeconds() const [member function]
3021 cls.add_method('GetFemtoSeconds',
3022 'int64_t',
3023 [],
3024 is_const=True)
3025 ## nstime.h (module 'core'): int64_t ns3::Time::GetInteger() const [member function]
3026 cls.add_method('GetInteger',
3027 'int64_t',
3028 [],
3029 is_const=True)
3030 ## nstime.h (module 'core'): int64_t ns3::Time::GetMicroSeconds() const [member function]
3031 cls.add_method('GetMicroSeconds',
3032 'int64_t',
3033 [],
3034 is_const=True)
3035 ## nstime.h (module 'core'): int64_t ns3::Time::GetMilliSeconds() const [member function]
3036 cls.add_method('GetMilliSeconds',
3037 'int64_t',
3038 [],
3039 is_const=True)
3040 ## nstime.h (module 'core'): int64_t ns3::Time::GetNanoSeconds() const [member function]
3041 cls.add_method('GetNanoSeconds',
3042 'int64_t',
3043 [],
3044 is_const=True)
3045 ## nstime.h (module 'core'): int64_t ns3::Time::GetPicoSeconds() const [member function]
3046 cls.add_method('GetPicoSeconds',
3047 'int64_t',
3048 [],
3049 is_const=True)
3050 ## nstime.h (module 'core'): static ns3::Time::Unit ns3::Time::GetResolution() [member function]
3051 cls.add_method('GetResolution',
3052 'ns3::Time::Unit',
3053 [],
3054 is_static=True)
3055 ## nstime.h (module 'core'): double ns3::Time::GetSeconds() const [member function]
3056 cls.add_method('GetSeconds',
3057 'double',
3058 [],
3059 is_const=True)
3060 ## nstime.h (module 'core'): int64_t ns3::Time::GetTimeStep() const [member function]
3061 cls.add_method('GetTimeStep',
3062 'int64_t',
3063 [],
3064 is_const=True)
3065 ## nstime.h (module 'core'): bool ns3::Time::IsNegative() const [member function]
3066 cls.add_method('IsNegative',
3067 'bool',
3068 [],
3069 is_const=True)
3070 ## nstime.h (module 'core'): bool ns3::Time::IsPositive() const [member function]
3071 cls.add_method('IsPositive',
3072 'bool',
3073 [],
3074 is_const=True)
3075 ## nstime.h (module 'core'): bool ns3::Time::IsStrictlyNegative() const [member function]
3076 cls.add_method('IsStrictlyNegative',
3077 'bool',
3078 [],
3079 is_const=True)
3080 ## nstime.h (module 'core'): bool ns3::Time::IsStrictlyPositive() const [member function]
3081 cls.add_method('IsStrictlyPositive',
3082 'bool',
3083 [],
3084 is_const=True)
3085 ## nstime.h (module 'core'): bool ns3::Time::IsZero() const [member function]
3086 cls.add_method('IsZero',
3087 'bool',
3088 [],
3089 is_const=True)
3090 ## nstime.h (module 'core'): static void ns3::Time::SetResolution(ns3::Time::Unit resolution) [member function]
3091 cls.add_method('SetResolution',
3092 'void',
3093 [param('ns3::Time::Unit', 'resolution')],
3094 is_static=True)
3095 ## nstime.h (module 'core'): ns3::int64x64_t ns3::Time::To(ns3::Time::Unit timeUnit) const [member function]
3096 cls.add_method('To',
3097 'ns3::int64x64_t',
3098 [param('ns3::Time::Unit', 'timeUnit')],
3099 is_const=True)
3100 ## nstime.h (module 'core'): double ns3::Time::ToDouble(ns3::Time::Unit timeUnit) const [member function]
3101 cls.add_method('ToDouble',
3102 'double',
3103 [param('ns3::Time::Unit', 'timeUnit')],
3104 is_const=True)
3105 ## nstime.h (module 'core'): int64_t ns3::Time::ToInteger(ns3::Time::Unit timeUnit) const [member function]
3106 cls.add_method('ToInteger',
3107 'int64_t',
3108 [param('ns3::Time::Unit', 'timeUnit')],
3109 is_const=True)
3110 return
3111
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07003112def register_Ns3TopologyReader_methods(root_module, cls):
3113 ## topology-reader.h (module 'topology-read'): ns3::TopologyReader::TopologyReader() [constructor]
3114 cls.add_constructor([])
3115 ## topology-reader.h (module 'topology-read'): void ns3::TopologyReader::AddLink(ns3::TopologyReader::Link link) [member function]
3116 cls.add_method('AddLink',
3117 'void',
3118 [param('ns3::TopologyReader::Link', 'link')])
3119 ## topology-reader.h (module 'topology-read'): std::string ns3::TopologyReader::GetFileName() const [member function]
3120 cls.add_method('GetFileName',
3121 'std::string',
3122 [],
3123 is_const=True)
3124 ## topology-reader.h (module 'topology-read'): std::_List_const_iterator<ns3::TopologyReader::Link> ns3::TopologyReader::LinksBegin() const [member function]
3125 cls.add_method('LinksBegin',
3126 'std::_List_const_iterator< ns3::TopologyReader::Link >',
3127 [],
3128 is_const=True)
3129 ## topology-reader.h (module 'topology-read'): bool ns3::TopologyReader::LinksEmpty() const [member function]
3130 cls.add_method('LinksEmpty',
3131 'bool',
3132 [],
3133 is_const=True)
3134 ## topology-reader.h (module 'topology-read'): std::_List_const_iterator<ns3::TopologyReader::Link> ns3::TopologyReader::LinksEnd() const [member function]
3135 cls.add_method('LinksEnd',
3136 'std::_List_const_iterator< ns3::TopologyReader::Link >',
3137 [],
3138 is_const=True)
3139 ## topology-reader.h (module 'topology-read'): int ns3::TopologyReader::LinksSize() const [member function]
3140 cls.add_method('LinksSize',
3141 'int',
3142 [],
3143 is_const=True)
3144 ## topology-reader.h (module 'topology-read'): ns3::NodeContainer ns3::TopologyReader::Read() [member function]
3145 cls.add_method('Read',
3146 'ns3::NodeContainer',
3147 [],
3148 is_pure_virtual=True, is_virtual=True)
3149 ## topology-reader.h (module 'topology-read'): void ns3::TopologyReader::SetFileName(std::string const & fileName) [member function]
3150 cls.add_method('SetFileName',
3151 'void',
3152 [param('std::string const &', 'fileName')])
3153 return
3154
3155def register_Ns3TopologyReaderLink_methods(root_module, cls):
3156 ## topology-reader.h (module 'topology-read'): ns3::TopologyReader::Link::Link(ns3::TopologyReader::Link const & arg0) [copy constructor]
3157 cls.add_constructor([param('ns3::TopologyReader::Link const &', 'arg0')])
3158 ## topology-reader.h (module 'topology-read'): ns3::TopologyReader::Link::Link() [constructor]
3159 cls.add_constructor([])
3160 ## 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]
3161 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')])
3162 ## 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]
3163 cls.add_method('AttributesBegin',
3164 '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 > > > >',
3165 [])
3166 ## 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]
3167 cls.add_method('AttributesEnd',
3168 '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 > > > >',
3169 [])
3170 ## topology-reader.h (module 'topology-read'): std::string ns3::TopologyReader::Link::GetAttribute(std::string const & name) const [member function]
3171 cls.add_method('GetAttribute',
3172 'std::string',
3173 [param('std::string const &', 'name')],
3174 is_const=True)
3175 ## topology-reader.h (module 'topology-read'): bool ns3::TopologyReader::Link::GetAttributeFailSafe(std::string const & name, std::string & value) const [member function]
3176 cls.add_method('GetAttributeFailSafe',
3177 'bool',
3178 [param('std::string const &', 'name'), param('std::string &', 'value')],
3179 is_const=True)
3180 ## topology-reader.h (module 'topology-read'): ns3::Ptr<ns3::NetDevice> ns3::TopologyReader::Link::GetFromNetDevice() const [member function]
3181 cls.add_method('GetFromNetDevice',
3182 'ns3::Ptr< ns3::NetDevice >',
3183 [],
3184 is_const=True)
3185 ## topology-reader.h (module 'topology-read'): ns3::Ptr<ns3::Node> ns3::TopologyReader::Link::GetFromNode() const [member function]
3186 cls.add_method('GetFromNode',
3187 'ns3::Ptr< ns3::Node >',
3188 [],
3189 is_const=True)
3190 ## topology-reader.h (module 'topology-read'): std::string ns3::TopologyReader::Link::GetFromNodeName() const [member function]
3191 cls.add_method('GetFromNodeName',
3192 'std::string',
3193 [],
3194 is_const=True)
3195 ## topology-reader.h (module 'topology-read'): ns3::Ptr<ns3::NetDevice> ns3::TopologyReader::Link::GetToNetDevice() const [member function]
3196 cls.add_method('GetToNetDevice',
3197 'ns3::Ptr< ns3::NetDevice >',
3198 [],
3199 is_const=True)
3200 ## topology-reader.h (module 'topology-read'): ns3::Ptr<ns3::Node> ns3::TopologyReader::Link::GetToNode() const [member function]
3201 cls.add_method('GetToNode',
3202 'ns3::Ptr< ns3::Node >',
3203 [],
3204 is_const=True)
3205 ## topology-reader.h (module 'topology-read'): std::string ns3::TopologyReader::Link::GetToNodeName() const [member function]
3206 cls.add_method('GetToNodeName',
3207 'std::string',
3208 [],
3209 is_const=True)
3210 ## topology-reader.h (module 'topology-read'): void ns3::TopologyReader::Link::SetAttribute(std::string const & name, std::string const & value) [member function]
3211 cls.add_method('SetAttribute',
3212 'void',
3213 [param('std::string const &', 'name'), param('std::string const &', 'value')])
3214 ## topology-reader.h (module 'topology-read'): void ns3::TopologyReader::Link::SetNetDevices(ns3::Ptr<ns3::NetDevice> from, ns3::Ptr<ns3::NetDevice> to) [member function]
3215 cls.add_method('SetNetDevices',
3216 'void',
3217 [param('ns3::Ptr< ns3::NetDevice >', 'from'), param('ns3::Ptr< ns3::NetDevice >', 'to')])
3218 return
3219
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08003220def register_Ns3TraceSourceAccessor_methods(root_module, cls):
3221 ## trace-source-accessor.h (module 'core'): ns3::TraceSourceAccessor::TraceSourceAccessor(ns3::TraceSourceAccessor const & arg0) [copy constructor]
3222 cls.add_constructor([param('ns3::TraceSourceAccessor const &', 'arg0')])
3223 ## trace-source-accessor.h (module 'core'): ns3::TraceSourceAccessor::TraceSourceAccessor() [constructor]
3224 cls.add_constructor([])
3225 ## trace-source-accessor.h (module 'core'): bool ns3::TraceSourceAccessor::Connect(ns3::ObjectBase * obj, std::string context, ns3::CallbackBase const & cb) const [member function]
3226 cls.add_method('Connect',
3227 'bool',
3228 [param('ns3::ObjectBase *', 'obj', transfer_ownership=False), param('std::string', 'context'), param('ns3::CallbackBase const &', 'cb')],
3229 is_pure_virtual=True, is_const=True, is_virtual=True)
3230 ## trace-source-accessor.h (module 'core'): bool ns3::TraceSourceAccessor::ConnectWithoutContext(ns3::ObjectBase * obj, ns3::CallbackBase const & cb) const [member function]
3231 cls.add_method('ConnectWithoutContext',
3232 'bool',
3233 [param('ns3::ObjectBase *', 'obj', transfer_ownership=False), param('ns3::CallbackBase const &', 'cb')],
3234 is_pure_virtual=True, is_const=True, is_virtual=True)
3235 ## trace-source-accessor.h (module 'core'): bool ns3::TraceSourceAccessor::Disconnect(ns3::ObjectBase * obj, std::string context, ns3::CallbackBase const & cb) const [member function]
3236 cls.add_method('Disconnect',
3237 'bool',
3238 [param('ns3::ObjectBase *', 'obj', transfer_ownership=False), param('std::string', 'context'), param('ns3::CallbackBase const &', 'cb')],
3239 is_pure_virtual=True, is_const=True, is_virtual=True)
3240 ## trace-source-accessor.h (module 'core'): bool ns3::TraceSourceAccessor::DisconnectWithoutContext(ns3::ObjectBase * obj, ns3::CallbackBase const & cb) const [member function]
3241 cls.add_method('DisconnectWithoutContext',
3242 'bool',
3243 [param('ns3::ObjectBase *', 'obj', transfer_ownership=False), param('ns3::CallbackBase const &', 'cb')],
3244 is_pure_virtual=True, is_const=True, is_virtual=True)
3245 return
3246
3247def register_Ns3Trailer_methods(root_module, cls):
3248 cls.add_output_stream_operator()
3249 ## trailer.h (module 'network'): ns3::Trailer::Trailer() [constructor]
3250 cls.add_constructor([])
3251 ## trailer.h (module 'network'): ns3::Trailer::Trailer(ns3::Trailer const & arg0) [copy constructor]
3252 cls.add_constructor([param('ns3::Trailer const &', 'arg0')])
3253 ## trailer.h (module 'network'): uint32_t ns3::Trailer::Deserialize(ns3::Buffer::Iterator end) [member function]
3254 cls.add_method('Deserialize',
3255 'uint32_t',
3256 [param('ns3::Buffer::Iterator', 'end')],
3257 is_pure_virtual=True, is_virtual=True)
3258 ## trailer.h (module 'network'): uint32_t ns3::Trailer::GetSerializedSize() const [member function]
3259 cls.add_method('GetSerializedSize',
3260 'uint32_t',
3261 [],
3262 is_pure_virtual=True, is_const=True, is_virtual=True)
3263 ## trailer.h (module 'network'): static ns3::TypeId ns3::Trailer::GetTypeId() [member function]
3264 cls.add_method('GetTypeId',
3265 'ns3::TypeId',
3266 [],
3267 is_static=True)
3268 ## trailer.h (module 'network'): void ns3::Trailer::Print(std::ostream & os) const [member function]
3269 cls.add_method('Print',
3270 'void',
3271 [param('std::ostream &', 'os')],
3272 is_pure_virtual=True, is_const=True, is_virtual=True)
3273 ## trailer.h (module 'network'): void ns3::Trailer::Serialize(ns3::Buffer::Iterator start) const [member function]
3274 cls.add_method('Serialize',
3275 'void',
3276 [param('ns3::Buffer::Iterator', 'start')],
3277 is_pure_virtual=True, is_const=True, is_virtual=True)
3278 return
3279
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07003280def register_Ns3AnnotatedTopologyReader_methods(root_module, cls):
3281 ## annotated-topology-reader.h (module 'ndnSIM'): ns3::AnnotatedTopologyReader::AnnotatedTopologyReader(std::string const & path="", double scale=1.0e+0) [constructor]
3282 cls.add_constructor([param('std::string const &', 'path', default_value='""'), param('double', 'scale', default_value='1.0e+0')])
3283 ## annotated-topology-reader.h (module 'ndnSIM'): ns3::NodeContainer ns3::AnnotatedTopologyReader::Read() [member function]
3284 cls.add_method('Read',
3285 'ns3::NodeContainer',
3286 [],
3287 is_virtual=True)
3288 ## annotated-topology-reader.h (module 'ndnSIM'): ns3::NodeContainer ns3::AnnotatedTopologyReader::GetNodes() const [member function]
3289 cls.add_method('GetNodes',
3290 'ns3::NodeContainer',
3291 [],
3292 is_const=True)
3293 ## annotated-topology-reader.h (module 'ndnSIM'): std::list<ns3::TopologyReader::Link, std::allocator<ns3::TopologyReader::Link> > const & ns3::AnnotatedTopologyReader::GetLinks() const [member function]
3294 cls.add_method('GetLinks',
3295 'std::list< ns3::TopologyReader::Link > const &',
3296 [],
3297 is_const=True)
3298 ## annotated-topology-reader.h (module 'ndnSIM'): void ns3::AnnotatedTopologyReader::AssignIpv4Addresses(ns3::Ipv4Address base) [member function]
3299 cls.add_method('AssignIpv4Addresses',
3300 'void',
3301 [param('ns3::Ipv4Address', 'base')])
3302 ## annotated-topology-reader.h (module 'ndnSIM'): void ns3::AnnotatedTopologyReader::SetBoundingBox(double ulx, double uly, double lrx, double lry) [member function]
3303 cls.add_method('SetBoundingBox',
3304 'void',
3305 [param('double', 'ulx'), param('double', 'uly'), param('double', 'lrx'), param('double', 'lry')])
3306 ## annotated-topology-reader.h (module 'ndnSIM'): void ns3::AnnotatedTopologyReader::SetMobilityModel(std::string const & model) [member function]
3307 cls.add_method('SetMobilityModel',
3308 'void',
3309 [param('std::string const &', 'model')])
3310 ## annotated-topology-reader.h (module 'ndnSIM'): void ns3::AnnotatedTopologyReader::ApplyOspfMetric() [member function]
3311 cls.add_method('ApplyOspfMetric',
3312 'void',
3313 [])
Alexander Afanasyev71029732012-11-19 23:50:52 -08003314 ## annotated-topology-reader.h (module 'ndnSIM'): void ns3::AnnotatedTopologyReader::SaveTopology(std::string const & file) const [member function]
3315 cls.add_method('SaveTopology',
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07003316 'void',
3317 [param('std::string const &', 'file')],
3318 is_const=True)
3319 ## annotated-topology-reader.h (module 'ndnSIM'): ns3::Ptr<ns3::Node> ns3::AnnotatedTopologyReader::CreateNode(std::string const name, uint32_t systemId) [member function]
3320 cls.add_method('CreateNode',
3321 'ns3::Ptr< ns3::Node >',
3322 [param('std::string const', 'name'), param('uint32_t', 'systemId')],
3323 visibility='protected')
3324 ## 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]
3325 cls.add_method('CreateNode',
3326 'ns3::Ptr< ns3::Node >',
3327 [param('std::string const', 'name'), param('double', 'posX'), param('double', 'posY'), param('uint32_t', 'systemId')],
3328 visibility='protected')
3329 ## annotated-topology-reader.h (module 'ndnSIM'): void ns3::AnnotatedTopologyReader::ApplySettings() [member function]
3330 cls.add_method('ApplySettings',
3331 'void',
3332 [],
3333 visibility='protected')
3334 return
3335
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08003336def register_Ns3Application_methods(root_module, cls):
3337 ## application.h (module 'network'): ns3::Application::Application(ns3::Application const & arg0) [copy constructor]
3338 cls.add_constructor([param('ns3::Application const &', 'arg0')])
3339 ## application.h (module 'network'): ns3::Application::Application() [constructor]
3340 cls.add_constructor([])
3341 ## application.h (module 'network'): ns3::Ptr<ns3::Node> ns3::Application::GetNode() const [member function]
3342 cls.add_method('GetNode',
3343 'ns3::Ptr< ns3::Node >',
3344 [],
3345 is_const=True)
3346 ## application.h (module 'network'): static ns3::TypeId ns3::Application::GetTypeId() [member function]
3347 cls.add_method('GetTypeId',
3348 'ns3::TypeId',
3349 [],
3350 is_static=True)
3351 ## application.h (module 'network'): void ns3::Application::SetNode(ns3::Ptr<ns3::Node> node) [member function]
3352 cls.add_method('SetNode',
3353 'void',
3354 [param('ns3::Ptr< ns3::Node >', 'node')])
3355 ## application.h (module 'network'): void ns3::Application::SetStartTime(ns3::Time start) [member function]
3356 cls.add_method('SetStartTime',
3357 'void',
3358 [param('ns3::Time', 'start')])
3359 ## application.h (module 'network'): void ns3::Application::SetStopTime(ns3::Time stop) [member function]
3360 cls.add_method('SetStopTime',
3361 'void',
3362 [param('ns3::Time', 'stop')])
3363 ## application.h (module 'network'): void ns3::Application::DoDispose() [member function]
3364 cls.add_method('DoDispose',
3365 'void',
3366 [],
3367 visibility='protected', is_virtual=True)
3368 ## application.h (module 'network'): void ns3::Application::DoStart() [member function]
3369 cls.add_method('DoStart',
3370 'void',
3371 [],
3372 visibility='protected', is_virtual=True)
3373 ## application.h (module 'network'): void ns3::Application::StartApplication() [member function]
3374 cls.add_method('StartApplication',
3375 'void',
3376 [],
Alexander Afanasyev06d3a612012-04-17 22:25:40 -07003377 visibility='private', is_virtual=True)
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08003378 ## application.h (module 'network'): void ns3::Application::StopApplication() [member function]
3379 cls.add_method('StopApplication',
3380 'void',
3381 [],
Alexander Afanasyev06d3a612012-04-17 22:25:40 -07003382 visibility='private', is_virtual=True)
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08003383 return
3384
3385def register_Ns3AttributeAccessor_methods(root_module, cls):
3386 ## attribute.h (module 'core'): ns3::AttributeAccessor::AttributeAccessor(ns3::AttributeAccessor const & arg0) [copy constructor]
3387 cls.add_constructor([param('ns3::AttributeAccessor const &', 'arg0')])
3388 ## attribute.h (module 'core'): ns3::AttributeAccessor::AttributeAccessor() [constructor]
3389 cls.add_constructor([])
3390 ## attribute.h (module 'core'): bool ns3::AttributeAccessor::Get(ns3::ObjectBase const * object, ns3::AttributeValue & attribute) const [member function]
3391 cls.add_method('Get',
3392 'bool',
3393 [param('ns3::ObjectBase const *', 'object'), param('ns3::AttributeValue &', 'attribute')],
3394 is_pure_virtual=True, is_const=True, is_virtual=True)
3395 ## attribute.h (module 'core'): bool ns3::AttributeAccessor::HasGetter() const [member function]
3396 cls.add_method('HasGetter',
3397 'bool',
3398 [],
3399 is_pure_virtual=True, is_const=True, is_virtual=True)
3400 ## attribute.h (module 'core'): bool ns3::AttributeAccessor::HasSetter() const [member function]
3401 cls.add_method('HasSetter',
3402 'bool',
3403 [],
3404 is_pure_virtual=True, is_const=True, is_virtual=True)
3405 ## attribute.h (module 'core'): bool ns3::AttributeAccessor::Set(ns3::ObjectBase * object, ns3::AttributeValue const & value) const [member function]
3406 cls.add_method('Set',
3407 'bool',
3408 [param('ns3::ObjectBase *', 'object', transfer_ownership=False), param('ns3::AttributeValue const &', 'value')],
3409 is_pure_virtual=True, is_const=True, is_virtual=True)
3410 return
3411
3412def register_Ns3AttributeChecker_methods(root_module, cls):
3413 ## attribute.h (module 'core'): ns3::AttributeChecker::AttributeChecker(ns3::AttributeChecker const & arg0) [copy constructor]
3414 cls.add_constructor([param('ns3::AttributeChecker const &', 'arg0')])
3415 ## attribute.h (module 'core'): ns3::AttributeChecker::AttributeChecker() [constructor]
3416 cls.add_constructor([])
3417 ## attribute.h (module 'core'): bool ns3::AttributeChecker::Check(ns3::AttributeValue const & value) const [member function]
3418 cls.add_method('Check',
3419 'bool',
3420 [param('ns3::AttributeValue const &', 'value')],
3421 is_pure_virtual=True, is_const=True, is_virtual=True)
3422 ## attribute.h (module 'core'): bool ns3::AttributeChecker::Copy(ns3::AttributeValue const & source, ns3::AttributeValue & destination) const [member function]
3423 cls.add_method('Copy',
3424 'bool',
3425 [param('ns3::AttributeValue const &', 'source'), param('ns3::AttributeValue &', 'destination')],
3426 is_pure_virtual=True, is_const=True, is_virtual=True)
3427 ## attribute.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::AttributeChecker::Create() const [member function]
3428 cls.add_method('Create',
3429 'ns3::Ptr< ns3::AttributeValue >',
3430 [],
3431 is_pure_virtual=True, is_const=True, is_virtual=True)
3432 ## attribute.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::AttributeChecker::CreateValidValue(ns3::AttributeValue const & value) const [member function]
3433 cls.add_method('CreateValidValue',
3434 'ns3::Ptr< ns3::AttributeValue >',
3435 [param('ns3::AttributeValue const &', 'value')],
3436 is_const=True)
3437 ## attribute.h (module 'core'): std::string ns3::AttributeChecker::GetUnderlyingTypeInformation() const [member function]
3438 cls.add_method('GetUnderlyingTypeInformation',
3439 'std::string',
3440 [],
3441 is_pure_virtual=True, is_const=True, is_virtual=True)
3442 ## attribute.h (module 'core'): std::string ns3::AttributeChecker::GetValueTypeName() const [member function]
3443 cls.add_method('GetValueTypeName',
3444 'std::string',
3445 [],
3446 is_pure_virtual=True, is_const=True, is_virtual=True)
3447 ## attribute.h (module 'core'): bool ns3::AttributeChecker::HasUnderlyingTypeInformation() const [member function]
3448 cls.add_method('HasUnderlyingTypeInformation',
3449 'bool',
3450 [],
3451 is_pure_virtual=True, is_const=True, is_virtual=True)
3452 return
3453
3454def register_Ns3AttributeValue_methods(root_module, cls):
3455 ## attribute.h (module 'core'): ns3::AttributeValue::AttributeValue(ns3::AttributeValue const & arg0) [copy constructor]
3456 cls.add_constructor([param('ns3::AttributeValue const &', 'arg0')])
3457 ## attribute.h (module 'core'): ns3::AttributeValue::AttributeValue() [constructor]
3458 cls.add_constructor([])
3459 ## attribute.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::AttributeValue::Copy() const [member function]
3460 cls.add_method('Copy',
3461 'ns3::Ptr< ns3::AttributeValue >',
3462 [],
3463 is_pure_virtual=True, is_const=True, is_virtual=True)
3464 ## attribute.h (module 'core'): bool ns3::AttributeValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
3465 cls.add_method('DeserializeFromString',
3466 'bool',
3467 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3468 is_pure_virtual=True, is_virtual=True)
3469 ## attribute.h (module 'core'): std::string ns3::AttributeValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
3470 cls.add_method('SerializeToString',
3471 'std::string',
3472 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3473 is_pure_virtual=True, is_const=True, is_virtual=True)
3474 return
3475
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07003476def register_Ns3BooleanChecker_methods(root_module, cls):
3477 ## boolean.h (module 'core'): ns3::BooleanChecker::BooleanChecker() [constructor]
3478 cls.add_constructor([])
3479 ## boolean.h (module 'core'): ns3::BooleanChecker::BooleanChecker(ns3::BooleanChecker const & arg0) [copy constructor]
3480 cls.add_constructor([param('ns3::BooleanChecker const &', 'arg0')])
3481 return
3482
3483def register_Ns3BooleanValue_methods(root_module, cls):
3484 cls.add_output_stream_operator()
3485 ## boolean.h (module 'core'): ns3::BooleanValue::BooleanValue(ns3::BooleanValue const & arg0) [copy constructor]
3486 cls.add_constructor([param('ns3::BooleanValue const &', 'arg0')])
3487 ## boolean.h (module 'core'): ns3::BooleanValue::BooleanValue() [constructor]
3488 cls.add_constructor([])
3489 ## boolean.h (module 'core'): ns3::BooleanValue::BooleanValue(bool value) [constructor]
3490 cls.add_constructor([param('bool', 'value')])
3491 ## boolean.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::BooleanValue::Copy() const [member function]
3492 cls.add_method('Copy',
3493 'ns3::Ptr< ns3::AttributeValue >',
3494 [],
3495 is_const=True, is_virtual=True)
3496 ## boolean.h (module 'core'): bool ns3::BooleanValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
3497 cls.add_method('DeserializeFromString',
3498 'bool',
3499 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3500 is_virtual=True)
3501 ## boolean.h (module 'core'): bool ns3::BooleanValue::Get() const [member function]
3502 cls.add_method('Get',
3503 'bool',
3504 [],
3505 is_const=True)
3506 ## boolean.h (module 'core'): std::string ns3::BooleanValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
3507 cls.add_method('SerializeToString',
3508 'std::string',
3509 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3510 is_const=True, is_virtual=True)
3511 ## boolean.h (module 'core'): void ns3::BooleanValue::Set(bool value) [member function]
3512 cls.add_method('Set',
3513 'void',
3514 [param('bool', 'value')])
3515 return
3516
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08003517def register_Ns3CallbackChecker_methods(root_module, cls):
3518 ## callback.h (module 'core'): ns3::CallbackChecker::CallbackChecker() [constructor]
3519 cls.add_constructor([])
3520 ## callback.h (module 'core'): ns3::CallbackChecker::CallbackChecker(ns3::CallbackChecker const & arg0) [copy constructor]
3521 cls.add_constructor([param('ns3::CallbackChecker const &', 'arg0')])
3522 return
3523
3524def register_Ns3CallbackImplBase_methods(root_module, cls):
3525 ## callback.h (module 'core'): ns3::CallbackImplBase::CallbackImplBase() [constructor]
3526 cls.add_constructor([])
3527 ## callback.h (module 'core'): ns3::CallbackImplBase::CallbackImplBase(ns3::CallbackImplBase const & arg0) [copy constructor]
3528 cls.add_constructor([param('ns3::CallbackImplBase const &', 'arg0')])
3529 ## callback.h (module 'core'): bool ns3::CallbackImplBase::IsEqual(ns3::Ptr<ns3::CallbackImplBase const> other) const [member function]
3530 cls.add_method('IsEqual',
3531 'bool',
3532 [param('ns3::Ptr< ns3::CallbackImplBase const >', 'other')],
3533 is_pure_virtual=True, is_const=True, is_virtual=True)
3534 return
3535
3536def register_Ns3CallbackValue_methods(root_module, cls):
3537 ## callback.h (module 'core'): ns3::CallbackValue::CallbackValue(ns3::CallbackValue const & arg0) [copy constructor]
3538 cls.add_constructor([param('ns3::CallbackValue const &', 'arg0')])
3539 ## callback.h (module 'core'): ns3::CallbackValue::CallbackValue() [constructor]
3540 cls.add_constructor([])
3541 ## callback.h (module 'core'): ns3::CallbackValue::CallbackValue(ns3::CallbackBase const & base) [constructor]
3542 cls.add_constructor([param('ns3::CallbackBase const &', 'base')])
3543 ## callback.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::CallbackValue::Copy() const [member function]
3544 cls.add_method('Copy',
3545 'ns3::Ptr< ns3::AttributeValue >',
3546 [],
3547 is_const=True, is_virtual=True)
3548 ## callback.h (module 'core'): bool ns3::CallbackValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
3549 cls.add_method('DeserializeFromString',
3550 'bool',
3551 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3552 is_virtual=True)
3553 ## callback.h (module 'core'): std::string ns3::CallbackValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
3554 cls.add_method('SerializeToString',
3555 'std::string',
3556 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3557 is_const=True, is_virtual=True)
3558 ## callback.h (module 'core'): void ns3::CallbackValue::Set(ns3::CallbackBase base) [member function]
3559 cls.add_method('Set',
3560 'void',
3561 [param('ns3::CallbackBase', 'base')])
3562 return
3563
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07003564def register_Ns3DoubleValue_methods(root_module, cls):
3565 ## double.h (module 'core'): ns3::DoubleValue::DoubleValue() [constructor]
3566 cls.add_constructor([])
3567 ## double.h (module 'core'): ns3::DoubleValue::DoubleValue(ns3::DoubleValue const & arg0) [copy constructor]
3568 cls.add_constructor([param('ns3::DoubleValue const &', 'arg0')])
3569 ## double.h (module 'core'): ns3::DoubleValue::DoubleValue(double const & value) [constructor]
3570 cls.add_constructor([param('double const &', 'value')])
3571 ## double.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::DoubleValue::Copy() const [member function]
3572 cls.add_method('Copy',
3573 'ns3::Ptr< ns3::AttributeValue >',
3574 [],
3575 is_const=True, is_virtual=True)
3576 ## double.h (module 'core'): bool ns3::DoubleValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
3577 cls.add_method('DeserializeFromString',
3578 'bool',
3579 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3580 is_virtual=True)
3581 ## double.h (module 'core'): double ns3::DoubleValue::Get() const [member function]
3582 cls.add_method('Get',
3583 'double',
3584 [],
3585 is_const=True)
3586 ## double.h (module 'core'): std::string ns3::DoubleValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
3587 cls.add_method('SerializeToString',
3588 'std::string',
3589 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3590 is_const=True, is_virtual=True)
3591 ## double.h (module 'core'): void ns3::DoubleValue::Set(double const & value) [member function]
3592 cls.add_method('Set',
3593 'void',
3594 [param('double const &', 'value')])
3595 return
3596
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08003597def register_Ns3EmptyAttributeValue_methods(root_module, cls):
3598 ## attribute.h (module 'core'): ns3::EmptyAttributeValue::EmptyAttributeValue(ns3::EmptyAttributeValue const & arg0) [copy constructor]
3599 cls.add_constructor([param('ns3::EmptyAttributeValue const &', 'arg0')])
3600 ## attribute.h (module 'core'): ns3::EmptyAttributeValue::EmptyAttributeValue() [constructor]
3601 cls.add_constructor([])
3602 ## attribute.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::EmptyAttributeValue::Copy() const [member function]
3603 cls.add_method('Copy',
3604 'ns3::Ptr< ns3::AttributeValue >',
3605 [],
3606 is_const=True, visibility='private', is_virtual=True)
3607 ## attribute.h (module 'core'): bool ns3::EmptyAttributeValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
3608 cls.add_method('DeserializeFromString',
3609 'bool',
3610 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3611 visibility='private', is_virtual=True)
3612 ## attribute.h (module 'core'): std::string ns3::EmptyAttributeValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
3613 cls.add_method('SerializeToString',
3614 'std::string',
3615 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3616 is_const=True, visibility='private', is_virtual=True)
3617 return
3618
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07003619def register_Ns3EnumChecker_methods(root_module, cls):
3620 ## enum.h (module 'core'): ns3::EnumChecker::EnumChecker(ns3::EnumChecker const & arg0) [copy constructor]
3621 cls.add_constructor([param('ns3::EnumChecker const &', 'arg0')])
3622 ## enum.h (module 'core'): ns3::EnumChecker::EnumChecker() [constructor]
3623 cls.add_constructor([])
3624 ## enum.h (module 'core'): void ns3::EnumChecker::Add(int v, std::string name) [member function]
3625 cls.add_method('Add',
3626 'void',
3627 [param('int', 'v'), param('std::string', 'name')])
3628 ## enum.h (module 'core'): void ns3::EnumChecker::AddDefault(int v, std::string name) [member function]
3629 cls.add_method('AddDefault',
3630 'void',
3631 [param('int', 'v'), param('std::string', 'name')])
3632 ## enum.h (module 'core'): bool ns3::EnumChecker::Check(ns3::AttributeValue const & value) const [member function]
3633 cls.add_method('Check',
3634 'bool',
3635 [param('ns3::AttributeValue const &', 'value')],
3636 is_const=True, is_virtual=True)
3637 ## enum.h (module 'core'): bool ns3::EnumChecker::Copy(ns3::AttributeValue const & src, ns3::AttributeValue & dst) const [member function]
3638 cls.add_method('Copy',
3639 'bool',
3640 [param('ns3::AttributeValue const &', 'src'), param('ns3::AttributeValue &', 'dst')],
3641 is_const=True, is_virtual=True)
3642 ## enum.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::EnumChecker::Create() const [member function]
3643 cls.add_method('Create',
3644 'ns3::Ptr< ns3::AttributeValue >',
3645 [],
3646 is_const=True, is_virtual=True)
3647 ## enum.h (module 'core'): std::string ns3::EnumChecker::GetUnderlyingTypeInformation() const [member function]
3648 cls.add_method('GetUnderlyingTypeInformation',
3649 'std::string',
3650 [],
3651 is_const=True, is_virtual=True)
3652 ## enum.h (module 'core'): std::string ns3::EnumChecker::GetValueTypeName() const [member function]
3653 cls.add_method('GetValueTypeName',
3654 'std::string',
3655 [],
3656 is_const=True, is_virtual=True)
3657 ## enum.h (module 'core'): bool ns3::EnumChecker::HasUnderlyingTypeInformation() const [member function]
3658 cls.add_method('HasUnderlyingTypeInformation',
3659 'bool',
3660 [],
3661 is_const=True, is_virtual=True)
3662 return
3663
3664def register_Ns3EnumValue_methods(root_module, cls):
3665 ## enum.h (module 'core'): ns3::EnumValue::EnumValue(ns3::EnumValue const & arg0) [copy constructor]
3666 cls.add_constructor([param('ns3::EnumValue const &', 'arg0')])
3667 ## enum.h (module 'core'): ns3::EnumValue::EnumValue() [constructor]
3668 cls.add_constructor([])
3669 ## enum.h (module 'core'): ns3::EnumValue::EnumValue(int v) [constructor]
3670 cls.add_constructor([param('int', 'v')])
3671 ## enum.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::EnumValue::Copy() const [member function]
3672 cls.add_method('Copy',
3673 'ns3::Ptr< ns3::AttributeValue >',
3674 [],
3675 is_const=True, is_virtual=True)
3676 ## enum.h (module 'core'): bool ns3::EnumValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
3677 cls.add_method('DeserializeFromString',
3678 'bool',
3679 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3680 is_virtual=True)
3681 ## enum.h (module 'core'): int ns3::EnumValue::Get() const [member function]
3682 cls.add_method('Get',
3683 'int',
3684 [],
3685 is_const=True)
3686 ## enum.h (module 'core'): std::string ns3::EnumValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
3687 cls.add_method('SerializeToString',
3688 'std::string',
3689 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3690 is_const=True, is_virtual=True)
3691 ## enum.h (module 'core'): void ns3::EnumValue::Set(int v) [member function]
3692 cls.add_method('Set',
3693 'void',
3694 [param('int', 'v')])
3695 return
3696
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08003697def register_Ns3EventImpl_methods(root_module, cls):
3698 ## event-impl.h (module 'core'): ns3::EventImpl::EventImpl(ns3::EventImpl const & arg0) [copy constructor]
3699 cls.add_constructor([param('ns3::EventImpl const &', 'arg0')])
3700 ## event-impl.h (module 'core'): ns3::EventImpl::EventImpl() [constructor]
3701 cls.add_constructor([])
3702 ## event-impl.h (module 'core'): void ns3::EventImpl::Cancel() [member function]
3703 cls.add_method('Cancel',
3704 'void',
3705 [])
3706 ## event-impl.h (module 'core'): void ns3::EventImpl::Invoke() [member function]
3707 cls.add_method('Invoke',
3708 'void',
3709 [])
3710 ## event-impl.h (module 'core'): bool ns3::EventImpl::IsCancelled() [member function]
3711 cls.add_method('IsCancelled',
3712 'bool',
3713 [])
3714 ## event-impl.h (module 'core'): void ns3::EventImpl::Notify() [member function]
3715 cls.add_method('Notify',
3716 'void',
3717 [],
3718 is_pure_virtual=True, visibility='protected', is_virtual=True)
3719 return
3720
3721def register_Ns3IntegerValue_methods(root_module, cls):
3722 ## integer.h (module 'core'): ns3::IntegerValue::IntegerValue() [constructor]
3723 cls.add_constructor([])
3724 ## integer.h (module 'core'): ns3::IntegerValue::IntegerValue(ns3::IntegerValue const & arg0) [copy constructor]
3725 cls.add_constructor([param('ns3::IntegerValue const &', 'arg0')])
3726 ## integer.h (module 'core'): ns3::IntegerValue::IntegerValue(int64_t const & value) [constructor]
3727 cls.add_constructor([param('int64_t const &', 'value')])
3728 ## integer.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::IntegerValue::Copy() const [member function]
3729 cls.add_method('Copy',
3730 'ns3::Ptr< ns3::AttributeValue >',
3731 [],
3732 is_const=True, is_virtual=True)
3733 ## integer.h (module 'core'): bool ns3::IntegerValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
3734 cls.add_method('DeserializeFromString',
3735 'bool',
3736 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3737 is_virtual=True)
3738 ## integer.h (module 'core'): int64_t ns3::IntegerValue::Get() const [member function]
3739 cls.add_method('Get',
3740 'int64_t',
3741 [],
3742 is_const=True)
3743 ## integer.h (module 'core'): std::string ns3::IntegerValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
3744 cls.add_method('SerializeToString',
3745 'std::string',
3746 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3747 is_const=True, is_virtual=True)
3748 ## integer.h (module 'core'): void ns3::IntegerValue::Set(int64_t const & value) [member function]
3749 cls.add_method('Set',
3750 'void',
3751 [param('int64_t const &', 'value')])
3752 return
3753
3754def register_Ns3Ipv4AddressChecker_methods(root_module, cls):
3755 ## ipv4-address.h (module 'network'): ns3::Ipv4AddressChecker::Ipv4AddressChecker() [constructor]
3756 cls.add_constructor([])
3757 ## ipv4-address.h (module 'network'): ns3::Ipv4AddressChecker::Ipv4AddressChecker(ns3::Ipv4AddressChecker const & arg0) [copy constructor]
3758 cls.add_constructor([param('ns3::Ipv4AddressChecker const &', 'arg0')])
3759 return
3760
3761def register_Ns3Ipv4AddressValue_methods(root_module, cls):
3762 ## ipv4-address.h (module 'network'): ns3::Ipv4AddressValue::Ipv4AddressValue() [constructor]
3763 cls.add_constructor([])
3764 ## ipv4-address.h (module 'network'): ns3::Ipv4AddressValue::Ipv4AddressValue(ns3::Ipv4AddressValue const & arg0) [copy constructor]
3765 cls.add_constructor([param('ns3::Ipv4AddressValue const &', 'arg0')])
3766 ## ipv4-address.h (module 'network'): ns3::Ipv4AddressValue::Ipv4AddressValue(ns3::Ipv4Address const & value) [constructor]
3767 cls.add_constructor([param('ns3::Ipv4Address const &', 'value')])
3768 ## ipv4-address.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::Ipv4AddressValue::Copy() const [member function]
3769 cls.add_method('Copy',
3770 'ns3::Ptr< ns3::AttributeValue >',
3771 [],
3772 is_const=True, is_virtual=True)
3773 ## ipv4-address.h (module 'network'): bool ns3::Ipv4AddressValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
3774 cls.add_method('DeserializeFromString',
3775 'bool',
3776 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3777 is_virtual=True)
3778 ## ipv4-address.h (module 'network'): ns3::Ipv4Address ns3::Ipv4AddressValue::Get() const [member function]
3779 cls.add_method('Get',
3780 'ns3::Ipv4Address',
3781 [],
3782 is_const=True)
3783 ## ipv4-address.h (module 'network'): std::string ns3::Ipv4AddressValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
3784 cls.add_method('SerializeToString',
3785 'std::string',
3786 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3787 is_const=True, is_virtual=True)
3788 ## ipv4-address.h (module 'network'): void ns3::Ipv4AddressValue::Set(ns3::Ipv4Address const & value) [member function]
3789 cls.add_method('Set',
3790 'void',
3791 [param('ns3::Ipv4Address const &', 'value')])
3792 return
3793
3794def register_Ns3Ipv4MaskChecker_methods(root_module, cls):
3795 ## ipv4-address.h (module 'network'): ns3::Ipv4MaskChecker::Ipv4MaskChecker() [constructor]
3796 cls.add_constructor([])
3797 ## ipv4-address.h (module 'network'): ns3::Ipv4MaskChecker::Ipv4MaskChecker(ns3::Ipv4MaskChecker const & arg0) [copy constructor]
3798 cls.add_constructor([param('ns3::Ipv4MaskChecker const &', 'arg0')])
3799 return
3800
3801def register_Ns3Ipv4MaskValue_methods(root_module, cls):
3802 ## ipv4-address.h (module 'network'): ns3::Ipv4MaskValue::Ipv4MaskValue() [constructor]
3803 cls.add_constructor([])
3804 ## ipv4-address.h (module 'network'): ns3::Ipv4MaskValue::Ipv4MaskValue(ns3::Ipv4MaskValue const & arg0) [copy constructor]
3805 cls.add_constructor([param('ns3::Ipv4MaskValue const &', 'arg0')])
3806 ## ipv4-address.h (module 'network'): ns3::Ipv4MaskValue::Ipv4MaskValue(ns3::Ipv4Mask const & value) [constructor]
3807 cls.add_constructor([param('ns3::Ipv4Mask const &', 'value')])
3808 ## ipv4-address.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::Ipv4MaskValue::Copy() const [member function]
3809 cls.add_method('Copy',
3810 'ns3::Ptr< ns3::AttributeValue >',
3811 [],
3812 is_const=True, is_virtual=True)
3813 ## ipv4-address.h (module 'network'): bool ns3::Ipv4MaskValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
3814 cls.add_method('DeserializeFromString',
3815 'bool',
3816 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3817 is_virtual=True)
3818 ## ipv4-address.h (module 'network'): ns3::Ipv4Mask ns3::Ipv4MaskValue::Get() const [member function]
3819 cls.add_method('Get',
3820 'ns3::Ipv4Mask',
3821 [],
3822 is_const=True)
3823 ## ipv4-address.h (module 'network'): std::string ns3::Ipv4MaskValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
3824 cls.add_method('SerializeToString',
3825 'std::string',
3826 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3827 is_const=True, is_virtual=True)
3828 ## ipv4-address.h (module 'network'): void ns3::Ipv4MaskValue::Set(ns3::Ipv4Mask const & value) [member function]
3829 cls.add_method('Set',
3830 'void',
3831 [param('ns3::Ipv4Mask const &', 'value')])
3832 return
3833
3834def register_Ns3Ipv6AddressChecker_methods(root_module, cls):
3835 ## ipv6-address.h (module 'network'): ns3::Ipv6AddressChecker::Ipv6AddressChecker() [constructor]
3836 cls.add_constructor([])
3837 ## ipv6-address.h (module 'network'): ns3::Ipv6AddressChecker::Ipv6AddressChecker(ns3::Ipv6AddressChecker const & arg0) [copy constructor]
3838 cls.add_constructor([param('ns3::Ipv6AddressChecker const &', 'arg0')])
3839 return
3840
3841def register_Ns3Ipv6AddressValue_methods(root_module, cls):
3842 ## ipv6-address.h (module 'network'): ns3::Ipv6AddressValue::Ipv6AddressValue() [constructor]
3843 cls.add_constructor([])
3844 ## ipv6-address.h (module 'network'): ns3::Ipv6AddressValue::Ipv6AddressValue(ns3::Ipv6AddressValue const & arg0) [copy constructor]
3845 cls.add_constructor([param('ns3::Ipv6AddressValue const &', 'arg0')])
3846 ## ipv6-address.h (module 'network'): ns3::Ipv6AddressValue::Ipv6AddressValue(ns3::Ipv6Address const & value) [constructor]
3847 cls.add_constructor([param('ns3::Ipv6Address const &', 'value')])
3848 ## ipv6-address.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::Ipv6AddressValue::Copy() const [member function]
3849 cls.add_method('Copy',
3850 'ns3::Ptr< ns3::AttributeValue >',
3851 [],
3852 is_const=True, is_virtual=True)
3853 ## ipv6-address.h (module 'network'): bool ns3::Ipv6AddressValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
3854 cls.add_method('DeserializeFromString',
3855 'bool',
3856 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3857 is_virtual=True)
3858 ## ipv6-address.h (module 'network'): ns3::Ipv6Address ns3::Ipv6AddressValue::Get() const [member function]
3859 cls.add_method('Get',
3860 'ns3::Ipv6Address',
3861 [],
3862 is_const=True)
3863 ## ipv6-address.h (module 'network'): std::string ns3::Ipv6AddressValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
3864 cls.add_method('SerializeToString',
3865 'std::string',
3866 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3867 is_const=True, is_virtual=True)
3868 ## ipv6-address.h (module 'network'): void ns3::Ipv6AddressValue::Set(ns3::Ipv6Address const & value) [member function]
3869 cls.add_method('Set',
3870 'void',
3871 [param('ns3::Ipv6Address const &', 'value')])
3872 return
3873
3874def register_Ns3Ipv6PrefixChecker_methods(root_module, cls):
3875 ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixChecker::Ipv6PrefixChecker() [constructor]
3876 cls.add_constructor([])
3877 ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixChecker::Ipv6PrefixChecker(ns3::Ipv6PrefixChecker const & arg0) [copy constructor]
3878 cls.add_constructor([param('ns3::Ipv6PrefixChecker const &', 'arg0')])
3879 return
3880
3881def register_Ns3Ipv6PrefixValue_methods(root_module, cls):
3882 ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixValue::Ipv6PrefixValue() [constructor]
3883 cls.add_constructor([])
3884 ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixValue::Ipv6PrefixValue(ns3::Ipv6PrefixValue const & arg0) [copy constructor]
3885 cls.add_constructor([param('ns3::Ipv6PrefixValue const &', 'arg0')])
3886 ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixValue::Ipv6PrefixValue(ns3::Ipv6Prefix const & value) [constructor]
3887 cls.add_constructor([param('ns3::Ipv6Prefix const &', 'value')])
3888 ## ipv6-address.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::Ipv6PrefixValue::Copy() const [member function]
3889 cls.add_method('Copy',
3890 'ns3::Ptr< ns3::AttributeValue >',
3891 [],
3892 is_const=True, is_virtual=True)
3893 ## ipv6-address.h (module 'network'): bool ns3::Ipv6PrefixValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
3894 cls.add_method('DeserializeFromString',
3895 'bool',
3896 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3897 is_virtual=True)
3898 ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix ns3::Ipv6PrefixValue::Get() const [member function]
3899 cls.add_method('Get',
3900 'ns3::Ipv6Prefix',
3901 [],
3902 is_const=True)
3903 ## ipv6-address.h (module 'network'): std::string ns3::Ipv6PrefixValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
3904 cls.add_method('SerializeToString',
3905 'std::string',
3906 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3907 is_const=True, is_virtual=True)
3908 ## ipv6-address.h (module 'network'): void ns3::Ipv6PrefixValue::Set(ns3::Ipv6Prefix const & value) [member function]
3909 cls.add_method('Set',
3910 'void',
3911 [param('ns3::Ipv6Prefix const &', 'value')])
3912 return
3913
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08003914def register_Ns3NetDevice_methods(root_module, cls):
3915 ## net-device.h (module 'network'): ns3::NetDevice::NetDevice() [constructor]
3916 cls.add_constructor([])
3917 ## net-device.h (module 'network'): ns3::NetDevice::NetDevice(ns3::NetDevice const & arg0) [copy constructor]
3918 cls.add_constructor([param('ns3::NetDevice const &', 'arg0')])
Alexander Afanasyeva8f5d882012-11-09 14:22:48 -08003919 ## 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 -08003920 cls.add_method('AddLinkChangeCallback',
3921 'void',
3922 [param('ns3::Callback< void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'callback')],
3923 is_pure_virtual=True, is_virtual=True)
3924 ## net-device.h (module 'network'): ns3::Address ns3::NetDevice::GetAddress() const [member function]
3925 cls.add_method('GetAddress',
3926 'ns3::Address',
3927 [],
3928 is_pure_virtual=True, is_const=True, is_virtual=True)
3929 ## net-device.h (module 'network'): ns3::Address ns3::NetDevice::GetBroadcast() const [member function]
3930 cls.add_method('GetBroadcast',
3931 'ns3::Address',
3932 [],
3933 is_pure_virtual=True, is_const=True, is_virtual=True)
3934 ## net-device.h (module 'network'): ns3::Ptr<ns3::Channel> ns3::NetDevice::GetChannel() const [member function]
3935 cls.add_method('GetChannel',
3936 'ns3::Ptr< ns3::Channel >',
3937 [],
3938 is_pure_virtual=True, is_const=True, is_virtual=True)
3939 ## net-device.h (module 'network'): uint32_t ns3::NetDevice::GetIfIndex() const [member function]
3940 cls.add_method('GetIfIndex',
3941 'uint32_t',
3942 [],
3943 is_pure_virtual=True, is_const=True, is_virtual=True)
3944 ## net-device.h (module 'network'): uint16_t ns3::NetDevice::GetMtu() const [member function]
3945 cls.add_method('GetMtu',
3946 'uint16_t',
3947 [],
3948 is_pure_virtual=True, is_const=True, is_virtual=True)
3949 ## net-device.h (module 'network'): ns3::Address ns3::NetDevice::GetMulticast(ns3::Ipv4Address multicastGroup) const [member function]
3950 cls.add_method('GetMulticast',
3951 'ns3::Address',
3952 [param('ns3::Ipv4Address', 'multicastGroup')],
3953 is_pure_virtual=True, is_const=True, is_virtual=True)
3954 ## net-device.h (module 'network'): ns3::Address ns3::NetDevice::GetMulticast(ns3::Ipv6Address addr) const [member function]
3955 cls.add_method('GetMulticast',
3956 'ns3::Address',
3957 [param('ns3::Ipv6Address', 'addr')],
3958 is_pure_virtual=True, is_const=True, is_virtual=True)
3959 ## net-device.h (module 'network'): ns3::Ptr<ns3::Node> ns3::NetDevice::GetNode() const [member function]
3960 cls.add_method('GetNode',
3961 'ns3::Ptr< ns3::Node >',
3962 [],
3963 is_pure_virtual=True, is_const=True, is_virtual=True)
3964 ## net-device.h (module 'network'): static ns3::TypeId ns3::NetDevice::GetTypeId() [member function]
3965 cls.add_method('GetTypeId',
3966 'ns3::TypeId',
3967 [],
3968 is_static=True)
3969 ## net-device.h (module 'network'): bool ns3::NetDevice::IsBridge() const [member function]
3970 cls.add_method('IsBridge',
3971 'bool',
3972 [],
3973 is_pure_virtual=True, is_const=True, is_virtual=True)
3974 ## net-device.h (module 'network'): bool ns3::NetDevice::IsBroadcast() const [member function]
3975 cls.add_method('IsBroadcast',
3976 'bool',
3977 [],
3978 is_pure_virtual=True, is_const=True, is_virtual=True)
3979 ## net-device.h (module 'network'): bool ns3::NetDevice::IsLinkUp() const [member function]
3980 cls.add_method('IsLinkUp',
3981 'bool',
3982 [],
3983 is_pure_virtual=True, is_const=True, is_virtual=True)
3984 ## net-device.h (module 'network'): bool ns3::NetDevice::IsMulticast() const [member function]
3985 cls.add_method('IsMulticast',
3986 'bool',
3987 [],
3988 is_pure_virtual=True, is_const=True, is_virtual=True)
3989 ## net-device.h (module 'network'): bool ns3::NetDevice::IsPointToPoint() const [member function]
3990 cls.add_method('IsPointToPoint',
3991 'bool',
3992 [],
3993 is_pure_virtual=True, is_const=True, is_virtual=True)
3994 ## net-device.h (module 'network'): bool ns3::NetDevice::NeedsArp() const [member function]
3995 cls.add_method('NeedsArp',
3996 'bool',
3997 [],
3998 is_pure_virtual=True, is_const=True, is_virtual=True)
3999 ## net-device.h (module 'network'): bool ns3::NetDevice::Send(ns3::Ptr<ns3::Packet> packet, ns3::Address const & dest, uint16_t protocolNumber) [member function]
4000 cls.add_method('Send',
4001 'bool',
4002 [param('ns3::Ptr< ns3::Packet >', 'packet'), param('ns3::Address const &', 'dest'), param('uint16_t', 'protocolNumber')],
4003 is_pure_virtual=True, is_virtual=True)
4004 ## 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]
4005 cls.add_method('SendFrom',
4006 'bool',
4007 [param('ns3::Ptr< ns3::Packet >', 'packet'), param('ns3::Address const &', 'source'), param('ns3::Address const &', 'dest'), param('uint16_t', 'protocolNumber')],
4008 is_pure_virtual=True, is_virtual=True)
4009 ## net-device.h (module 'network'): void ns3::NetDevice::SetAddress(ns3::Address address) [member function]
4010 cls.add_method('SetAddress',
4011 'void',
4012 [param('ns3::Address', 'address')],
4013 is_pure_virtual=True, is_virtual=True)
4014 ## net-device.h (module 'network'): void ns3::NetDevice::SetIfIndex(uint32_t const index) [member function]
4015 cls.add_method('SetIfIndex',
4016 'void',
4017 [param('uint32_t const', 'index')],
4018 is_pure_virtual=True, is_virtual=True)
4019 ## net-device.h (module 'network'): bool ns3::NetDevice::SetMtu(uint16_t const mtu) [member function]
4020 cls.add_method('SetMtu',
4021 'bool',
4022 [param('uint16_t const', 'mtu')],
4023 is_pure_virtual=True, is_virtual=True)
4024 ## net-device.h (module 'network'): void ns3::NetDevice::SetNode(ns3::Ptr<ns3::Node> node) [member function]
4025 cls.add_method('SetNode',
4026 'void',
4027 [param('ns3::Ptr< ns3::Node >', 'node')],
4028 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -08004029 ## 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 -08004030 cls.add_method('SetPromiscReceiveCallback',
4031 'void',
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -08004032 [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 -08004033 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -08004034 ## 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 -08004035 cls.add_method('SetReceiveCallback',
4036 'void',
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -08004037 [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 -08004038 is_pure_virtual=True, is_virtual=True)
4039 ## net-device.h (module 'network'): bool ns3::NetDevice::SupportsSendFrom() const [member function]
4040 cls.add_method('SupportsSendFrom',
4041 'bool',
4042 [],
4043 is_pure_virtual=True, is_const=True, is_virtual=True)
4044 return
4045
4046def register_Ns3NixVector_methods(root_module, cls):
4047 cls.add_output_stream_operator()
4048 ## nix-vector.h (module 'network'): ns3::NixVector::NixVector() [constructor]
4049 cls.add_constructor([])
4050 ## nix-vector.h (module 'network'): ns3::NixVector::NixVector(ns3::NixVector const & o) [copy constructor]
4051 cls.add_constructor([param('ns3::NixVector const &', 'o')])
4052 ## nix-vector.h (module 'network'): void ns3::NixVector::AddNeighborIndex(uint32_t newBits, uint32_t numberOfBits) [member function]
4053 cls.add_method('AddNeighborIndex',
4054 'void',
4055 [param('uint32_t', 'newBits'), param('uint32_t', 'numberOfBits')])
4056 ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::BitCount(uint32_t numberOfNeighbors) const [member function]
4057 cls.add_method('BitCount',
4058 'uint32_t',
4059 [param('uint32_t', 'numberOfNeighbors')],
4060 is_const=True)
4061 ## nix-vector.h (module 'network'): ns3::Ptr<ns3::NixVector> ns3::NixVector::Copy() const [member function]
4062 cls.add_method('Copy',
4063 'ns3::Ptr< ns3::NixVector >',
4064 [],
4065 is_const=True)
4066 ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::Deserialize(uint32_t const * buffer, uint32_t size) [member function]
4067 cls.add_method('Deserialize',
4068 'uint32_t',
4069 [param('uint32_t const *', 'buffer'), param('uint32_t', 'size')])
4070 ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::ExtractNeighborIndex(uint32_t numberOfBits) [member function]
4071 cls.add_method('ExtractNeighborIndex',
4072 'uint32_t',
4073 [param('uint32_t', 'numberOfBits')])
4074 ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::GetRemainingBits() [member function]
4075 cls.add_method('GetRemainingBits',
4076 'uint32_t',
4077 [])
4078 ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::GetSerializedSize() const [member function]
4079 cls.add_method('GetSerializedSize',
4080 'uint32_t',
4081 [],
4082 is_const=True)
4083 ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::Serialize(uint32_t * buffer, uint32_t maxSize) const [member function]
4084 cls.add_method('Serialize',
4085 'uint32_t',
4086 [param('uint32_t *', 'buffer'), param('uint32_t', 'maxSize')],
4087 is_const=True)
4088 return
4089
4090def register_Ns3Node_methods(root_module, cls):
4091 ## node.h (module 'network'): ns3::Node::Node(ns3::Node const & arg0) [copy constructor]
4092 cls.add_constructor([param('ns3::Node const &', 'arg0')])
4093 ## node.h (module 'network'): ns3::Node::Node() [constructor]
4094 cls.add_constructor([])
4095 ## node.h (module 'network'): ns3::Node::Node(uint32_t systemId) [constructor]
4096 cls.add_constructor([param('uint32_t', 'systemId')])
4097 ## node.h (module 'network'): uint32_t ns3::Node::AddApplication(ns3::Ptr<ns3::Application> application) [member function]
4098 cls.add_method('AddApplication',
4099 'uint32_t',
4100 [param('ns3::Ptr< ns3::Application >', 'application')])
4101 ## node.h (module 'network'): uint32_t ns3::Node::AddDevice(ns3::Ptr<ns3::NetDevice> device) [member function]
4102 cls.add_method('AddDevice',
4103 'uint32_t',
4104 [param('ns3::Ptr< ns3::NetDevice >', 'device')])
4105 ## node.h (module 'network'): static bool ns3::Node::ChecksumEnabled() [member function]
4106 cls.add_method('ChecksumEnabled',
4107 'bool',
4108 [],
4109 is_static=True)
4110 ## node.h (module 'network'): ns3::Ptr<ns3::Application> ns3::Node::GetApplication(uint32_t index) const [member function]
4111 cls.add_method('GetApplication',
4112 'ns3::Ptr< ns3::Application >',
4113 [param('uint32_t', 'index')],
4114 is_const=True)
4115 ## node.h (module 'network'): ns3::Ptr<ns3::NetDevice> ns3::Node::GetDevice(uint32_t index) const [member function]
4116 cls.add_method('GetDevice',
4117 'ns3::Ptr< ns3::NetDevice >',
4118 [param('uint32_t', 'index')],
4119 is_const=True)
4120 ## node.h (module 'network'): uint32_t ns3::Node::GetId() const [member function]
4121 cls.add_method('GetId',
4122 'uint32_t',
4123 [],
4124 is_const=True)
4125 ## node.h (module 'network'): uint32_t ns3::Node::GetNApplications() const [member function]
4126 cls.add_method('GetNApplications',
4127 'uint32_t',
4128 [],
4129 is_const=True)
4130 ## node.h (module 'network'): uint32_t ns3::Node::GetNDevices() const [member function]
4131 cls.add_method('GetNDevices',
4132 'uint32_t',
4133 [],
4134 is_const=True)
4135 ## node.h (module 'network'): uint32_t ns3::Node::GetSystemId() const [member function]
4136 cls.add_method('GetSystemId',
4137 'uint32_t',
4138 [],
4139 is_const=True)
4140 ## node.h (module 'network'): static ns3::TypeId ns3::Node::GetTypeId() [member function]
4141 cls.add_method('GetTypeId',
4142 'ns3::TypeId',
4143 [],
4144 is_static=True)
4145 ## 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]
4146 cls.add_method('RegisterDeviceAdditionListener',
4147 'void',
4148 [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')])
4149 ## 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]
4150 cls.add_method('RegisterProtocolHandler',
4151 'void',
4152 [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')])
4153 ## 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]
4154 cls.add_method('UnregisterDeviceAdditionListener',
4155 'void',
4156 [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')])
4157 ## 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]
4158 cls.add_method('UnregisterProtocolHandler',
4159 'void',
4160 [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')])
4161 ## node.h (module 'network'): void ns3::Node::DoDispose() [member function]
4162 cls.add_method('DoDispose',
4163 'void',
4164 [],
4165 visibility='protected', is_virtual=True)
4166 ## node.h (module 'network'): void ns3::Node::DoStart() [member function]
4167 cls.add_method('DoStart',
4168 'void',
4169 [],
4170 visibility='protected', is_virtual=True)
4171 return
4172
4173def register_Ns3ObjectFactoryChecker_methods(root_module, cls):
4174 ## object-factory.h (module 'core'): ns3::ObjectFactoryChecker::ObjectFactoryChecker() [constructor]
4175 cls.add_constructor([])
4176 ## object-factory.h (module 'core'): ns3::ObjectFactoryChecker::ObjectFactoryChecker(ns3::ObjectFactoryChecker const & arg0) [copy constructor]
4177 cls.add_constructor([param('ns3::ObjectFactoryChecker const &', 'arg0')])
4178 return
4179
4180def register_Ns3ObjectFactoryValue_methods(root_module, cls):
4181 ## object-factory.h (module 'core'): ns3::ObjectFactoryValue::ObjectFactoryValue() [constructor]
4182 cls.add_constructor([])
4183 ## object-factory.h (module 'core'): ns3::ObjectFactoryValue::ObjectFactoryValue(ns3::ObjectFactoryValue const & arg0) [copy constructor]
4184 cls.add_constructor([param('ns3::ObjectFactoryValue const &', 'arg0')])
4185 ## object-factory.h (module 'core'): ns3::ObjectFactoryValue::ObjectFactoryValue(ns3::ObjectFactory const & value) [constructor]
4186 cls.add_constructor([param('ns3::ObjectFactory const &', 'value')])
4187 ## object-factory.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::ObjectFactoryValue::Copy() const [member function]
4188 cls.add_method('Copy',
4189 'ns3::Ptr< ns3::AttributeValue >',
4190 [],
4191 is_const=True, is_virtual=True)
4192 ## object-factory.h (module 'core'): bool ns3::ObjectFactoryValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
4193 cls.add_method('DeserializeFromString',
4194 'bool',
4195 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4196 is_virtual=True)
4197 ## object-factory.h (module 'core'): ns3::ObjectFactory ns3::ObjectFactoryValue::Get() const [member function]
4198 cls.add_method('Get',
4199 'ns3::ObjectFactory',
4200 [],
4201 is_const=True)
4202 ## object-factory.h (module 'core'): std::string ns3::ObjectFactoryValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
4203 cls.add_method('SerializeToString',
4204 'std::string',
4205 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4206 is_const=True, is_virtual=True)
4207 ## object-factory.h (module 'core'): void ns3::ObjectFactoryValue::Set(ns3::ObjectFactory const & value) [member function]
4208 cls.add_method('Set',
4209 'void',
4210 [param('ns3::ObjectFactory const &', 'value')])
4211 return
4212
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004213def register_Ns3Packet_methods(root_module, cls):
4214 cls.add_output_stream_operator()
4215 ## packet.h (module 'network'): ns3::Packet::Packet() [constructor]
4216 cls.add_constructor([])
4217 ## packet.h (module 'network'): ns3::Packet::Packet(ns3::Packet const & o) [copy constructor]
4218 cls.add_constructor([param('ns3::Packet const &', 'o')])
4219 ## packet.h (module 'network'): ns3::Packet::Packet(uint32_t size) [constructor]
4220 cls.add_constructor([param('uint32_t', 'size')])
4221 ## packet.h (module 'network'): ns3::Packet::Packet(uint8_t const * buffer, uint32_t size, bool magic) [constructor]
4222 cls.add_constructor([param('uint8_t const *', 'buffer'), param('uint32_t', 'size'), param('bool', 'magic')])
4223 ## packet.h (module 'network'): ns3::Packet::Packet(uint8_t const * buffer, uint32_t size) [constructor]
4224 cls.add_constructor([param('uint8_t const *', 'buffer'), param('uint32_t', 'size')])
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -08004225 ## packet.h (module 'network'): void ns3::Packet::AddAtEnd(ns3::Ptr<const ns3::Packet> packet) [member function]
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004226 cls.add_method('AddAtEnd',
4227 'void',
4228 [param('ns3::Ptr< ns3::Packet const >', 'packet')])
4229 ## packet.h (module 'network'): void ns3::Packet::AddByteTag(ns3::Tag const & tag) const [member function]
4230 cls.add_method('AddByteTag',
4231 'void',
4232 [param('ns3::Tag const &', 'tag')],
4233 is_const=True)
4234 ## packet.h (module 'network'): void ns3::Packet::AddHeader(ns3::Header const & header) [member function]
4235 cls.add_method('AddHeader',
4236 'void',
4237 [param('ns3::Header const &', 'header')])
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07004238 ## packet.h (module 'network'): void ns3::Packet::AddPacketTag(ns3::Tag const & tag) const [member function]
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004239 cls.add_method('AddPacketTag',
4240 'void',
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07004241 [param('ns3::Tag const &', 'tag')],
4242 is_const=True)
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004243 ## packet.h (module 'network'): void ns3::Packet::AddPaddingAtEnd(uint32_t size) [member function]
4244 cls.add_method('AddPaddingAtEnd',
4245 'void',
4246 [param('uint32_t', 'size')])
4247 ## packet.h (module 'network'): void ns3::Packet::AddTrailer(ns3::Trailer const & trailer) [member function]
4248 cls.add_method('AddTrailer',
4249 'void',
4250 [param('ns3::Trailer const &', 'trailer')])
4251 ## packet.h (module 'network'): ns3::PacketMetadata::ItemIterator ns3::Packet::BeginItem() const [member function]
4252 cls.add_method('BeginItem',
4253 'ns3::PacketMetadata::ItemIterator',
4254 [],
4255 is_const=True)
4256 ## packet.h (module 'network'): ns3::Ptr<ns3::Packet> ns3::Packet::Copy() const [member function]
4257 cls.add_method('Copy',
4258 'ns3::Ptr< ns3::Packet >',
4259 [],
4260 is_const=True)
4261 ## packet.h (module 'network'): uint32_t ns3::Packet::CopyData(uint8_t * buffer, uint32_t size) const [member function]
4262 cls.add_method('CopyData',
4263 'uint32_t',
4264 [param('uint8_t *', 'buffer'), param('uint32_t', 'size')],
4265 is_const=True)
4266 ## packet.h (module 'network'): void ns3::Packet::CopyData(std::ostream * os, uint32_t size) const [member function]
4267 cls.add_method('CopyData',
4268 'void',
4269 [param('std::ostream *', 'os'), param('uint32_t', 'size')],
4270 is_const=True)
4271 ## packet.h (module 'network'): ns3::Ptr<ns3::Packet> ns3::Packet::CreateFragment(uint32_t start, uint32_t length) const [member function]
4272 cls.add_method('CreateFragment',
4273 'ns3::Ptr< ns3::Packet >',
4274 [param('uint32_t', 'start'), param('uint32_t', 'length')],
4275 is_const=True)
4276 ## packet.h (module 'network'): static void ns3::Packet::EnableChecking() [member function]
4277 cls.add_method('EnableChecking',
4278 'void',
4279 [],
4280 is_static=True)
4281 ## packet.h (module 'network'): static void ns3::Packet::EnablePrinting() [member function]
4282 cls.add_method('EnablePrinting',
4283 'void',
4284 [],
4285 is_static=True)
4286 ## packet.h (module 'network'): bool ns3::Packet::FindFirstMatchingByteTag(ns3::Tag & tag) const [member function]
4287 cls.add_method('FindFirstMatchingByteTag',
4288 'bool',
4289 [param('ns3::Tag &', 'tag')],
4290 is_const=True)
4291 ## packet.h (module 'network'): ns3::ByteTagIterator ns3::Packet::GetByteTagIterator() const [member function]
4292 cls.add_method('GetByteTagIterator',
4293 'ns3::ByteTagIterator',
4294 [],
4295 is_const=True)
4296 ## packet.h (module 'network'): ns3::Ptr<ns3::NixVector> ns3::Packet::GetNixVector() const [member function]
4297 cls.add_method('GetNixVector',
4298 'ns3::Ptr< ns3::NixVector >',
4299 [],
4300 is_const=True)
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07004301 ## packet.h (module 'network'): ns3::PacketTagIterator ns3::Packet::GetPacketTagIterator() const [member function]
4302 cls.add_method('GetPacketTagIterator',
4303 'ns3::PacketTagIterator',
4304 [],
4305 is_const=True)
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004306 ## packet.h (module 'network'): uint32_t ns3::Packet::GetSerializedSize() const [member function]
4307 cls.add_method('GetSerializedSize',
4308 'uint32_t',
4309 [],
4310 is_const=True)
4311 ## packet.h (module 'network'): uint32_t ns3::Packet::GetSize() const [member function]
4312 cls.add_method('GetSize',
4313 'uint32_t',
4314 [],
4315 is_const=True)
4316 ## packet.h (module 'network'): uint64_t ns3::Packet::GetUid() const [member function]
4317 cls.add_method('GetUid',
4318 'uint64_t',
4319 [],
4320 is_const=True)
4321 ## packet.h (module 'network'): uint8_t const * ns3::Packet::PeekData() const [member function]
4322 cls.add_method('PeekData',
4323 'uint8_t const *',
4324 [],
4325 deprecated=True, is_const=True)
4326 ## packet.h (module 'network'): uint32_t ns3::Packet::PeekHeader(ns3::Header & header) const [member function]
4327 cls.add_method('PeekHeader',
4328 'uint32_t',
4329 [param('ns3::Header &', 'header')],
4330 is_const=True)
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07004331 ## packet.h (module 'network'): bool ns3::Packet::PeekPacketTag(ns3::Tag & tag) const [member function]
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004332 cls.add_method('PeekPacketTag',
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07004333 'bool',
4334 [param('ns3::Tag &', 'tag')],
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004335 is_const=True)
4336 ## packet.h (module 'network'): uint32_t ns3::Packet::PeekTrailer(ns3::Trailer & trailer) [member function]
4337 cls.add_method('PeekTrailer',
4338 'uint32_t',
4339 [param('ns3::Trailer &', 'trailer')])
4340 ## packet.h (module 'network'): void ns3::Packet::Print(std::ostream & os) const [member function]
4341 cls.add_method('Print',
4342 'void',
4343 [param('std::ostream &', 'os')],
4344 is_const=True)
4345 ## packet.h (module 'network'): void ns3::Packet::PrintByteTags(std::ostream & os) const [member function]
4346 cls.add_method('PrintByteTags',
4347 'void',
4348 [param('std::ostream &', 'os')],
4349 is_const=True)
4350 ## packet.h (module 'network'): void ns3::Packet::PrintPacketTags(std::ostream & os) const [member function]
4351 cls.add_method('PrintPacketTags',
4352 'void',
4353 [param('std::ostream &', 'os')],
4354 is_const=True)
4355 ## packet.h (module 'network'): void ns3::Packet::RemoveAllByteTags() [member function]
4356 cls.add_method('RemoveAllByteTags',
4357 'void',
4358 [])
4359 ## packet.h (module 'network'): void ns3::Packet::RemoveAllPacketTags() [member function]
4360 cls.add_method('RemoveAllPacketTags',
4361 'void',
4362 [])
4363 ## packet.h (module 'network'): void ns3::Packet::RemoveAtEnd(uint32_t size) [member function]
4364 cls.add_method('RemoveAtEnd',
4365 'void',
4366 [param('uint32_t', 'size')])
4367 ## packet.h (module 'network'): void ns3::Packet::RemoveAtStart(uint32_t size) [member function]
4368 cls.add_method('RemoveAtStart',
4369 'void',
4370 [param('uint32_t', 'size')])
4371 ## packet.h (module 'network'): uint32_t ns3::Packet::RemoveHeader(ns3::Header & header) [member function]
4372 cls.add_method('RemoveHeader',
4373 'uint32_t',
4374 [param('ns3::Header &', 'header')])
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07004375 ## packet.h (module 'network'): bool ns3::Packet::RemovePacketTag(ns3::Tag & tag) [member function]
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004376 cls.add_method('RemovePacketTag',
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07004377 'bool',
4378 [param('ns3::Tag &', 'tag')])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004379 ## packet.h (module 'network'): uint32_t ns3::Packet::RemoveTrailer(ns3::Trailer & trailer) [member function]
4380 cls.add_method('RemoveTrailer',
4381 'uint32_t',
4382 [param('ns3::Trailer &', 'trailer')])
4383 ## packet.h (module 'network'): uint32_t ns3::Packet::Serialize(uint8_t * buffer, uint32_t maxSize) const [member function]
4384 cls.add_method('Serialize',
4385 'uint32_t',
4386 [param('uint8_t *', 'buffer'), param('uint32_t', 'maxSize')],
4387 is_const=True)
4388 ## packet.h (module 'network'): void ns3::Packet::SetNixVector(ns3::Ptr<ns3::NixVector> arg0) [member function]
4389 cls.add_method('SetNixVector',
4390 'void',
4391 [param('ns3::Ptr< ns3::NixVector >', 'arg0')])
4392 return
4393
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07004394def register_Ns3RandomVariableChecker_methods(root_module, cls):
4395 ## random-variable.h (module 'core'): ns3::RandomVariableChecker::RandomVariableChecker() [constructor]
4396 cls.add_constructor([])
4397 ## random-variable.h (module 'core'): ns3::RandomVariableChecker::RandomVariableChecker(ns3::RandomVariableChecker const & arg0) [copy constructor]
4398 cls.add_constructor([param('ns3::RandomVariableChecker const &', 'arg0')])
4399 return
4400
4401def register_Ns3RandomVariableValue_methods(root_module, cls):
4402 ## random-variable.h (module 'core'): ns3::RandomVariableValue::RandomVariableValue() [constructor]
4403 cls.add_constructor([])
4404 ## random-variable.h (module 'core'): ns3::RandomVariableValue::RandomVariableValue(ns3::RandomVariableValue const & arg0) [copy constructor]
4405 cls.add_constructor([param('ns3::RandomVariableValue const &', 'arg0')])
4406 ## random-variable.h (module 'core'): ns3::RandomVariableValue::RandomVariableValue(ns3::RandomVariable const & value) [constructor]
4407 cls.add_constructor([param('ns3::RandomVariable const &', 'value')])
4408 ## random-variable.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::RandomVariableValue::Copy() const [member function]
4409 cls.add_method('Copy',
4410 'ns3::Ptr< ns3::AttributeValue >',
4411 [],
4412 is_const=True, is_virtual=True)
4413 ## random-variable.h (module 'core'): bool ns3::RandomVariableValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
4414 cls.add_method('DeserializeFromString',
4415 'bool',
4416 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4417 is_virtual=True)
4418 ## random-variable.h (module 'core'): ns3::RandomVariable ns3::RandomVariableValue::Get() const [member function]
4419 cls.add_method('Get',
4420 'ns3::RandomVariable',
4421 [],
4422 is_const=True)
4423 ## random-variable.h (module 'core'): std::string ns3::RandomVariableValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
4424 cls.add_method('SerializeToString',
4425 'std::string',
4426 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4427 is_const=True, is_virtual=True)
4428 ## random-variable.h (module 'core'): void ns3::RandomVariableValue::Set(ns3::RandomVariable const & value) [member function]
4429 cls.add_method('Set',
4430 'void',
4431 [param('ns3::RandomVariable const &', 'value')])
4432 return
4433
4434def register_Ns3RocketfuelWeightsReader_methods(root_module, cls):
4435 ## rocketfuel-weights-reader.h (module 'ndnSIM'): ns3::RocketfuelWeightsReader::RocketfuelWeightsReader(std::string const & path="", double scale=1.0e+0) [constructor]
4436 cls.add_constructor([param('std::string const &', 'path', default_value='""'), param('double', 'scale', default_value='1.0e+0')])
4437 ## rocketfuel-weights-reader.h (module 'ndnSIM'): void ns3::RocketfuelWeightsReader::SetFileType(uint8_t inputType) [member function]
4438 cls.add_method('SetFileType',
4439 'void',
4440 [param('uint8_t', 'inputType')])
4441 ## rocketfuel-weights-reader.h (module 'ndnSIM'): ns3::NodeContainer ns3::RocketfuelWeightsReader::Read() [member function]
4442 cls.add_method('Read',
4443 'ns3::NodeContainer',
4444 [],
4445 is_virtual=True)
4446 ## rocketfuel-weights-reader.h (module 'ndnSIM'): void ns3::RocketfuelWeightsReader::Commit() [member function]
4447 cls.add_method('Commit',
4448 'void',
4449 [])
4450 return
4451
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004452def register_Ns3TimeChecker_methods(root_module, cls):
4453 ## nstime.h (module 'core'): ns3::TimeChecker::TimeChecker() [constructor]
4454 cls.add_constructor([])
4455 ## nstime.h (module 'core'): ns3::TimeChecker::TimeChecker(ns3::TimeChecker const & arg0) [copy constructor]
4456 cls.add_constructor([param('ns3::TimeChecker const &', 'arg0')])
4457 return
4458
4459def register_Ns3TimeValue_methods(root_module, cls):
4460 ## nstime.h (module 'core'): ns3::TimeValue::TimeValue() [constructor]
4461 cls.add_constructor([])
4462 ## nstime.h (module 'core'): ns3::TimeValue::TimeValue(ns3::TimeValue const & arg0) [copy constructor]
4463 cls.add_constructor([param('ns3::TimeValue const &', 'arg0')])
4464 ## nstime.h (module 'core'): ns3::TimeValue::TimeValue(ns3::Time const & value) [constructor]
4465 cls.add_constructor([param('ns3::Time const &', 'value')])
4466 ## nstime.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::TimeValue::Copy() const [member function]
4467 cls.add_method('Copy',
4468 'ns3::Ptr< ns3::AttributeValue >',
4469 [],
4470 is_const=True, is_virtual=True)
4471 ## nstime.h (module 'core'): bool ns3::TimeValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
4472 cls.add_method('DeserializeFromString',
4473 'bool',
4474 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4475 is_virtual=True)
4476 ## nstime.h (module 'core'): ns3::Time ns3::TimeValue::Get() const [member function]
4477 cls.add_method('Get',
4478 'ns3::Time',
4479 [],
4480 is_const=True)
4481 ## nstime.h (module 'core'): std::string ns3::TimeValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
4482 cls.add_method('SerializeToString',
4483 'std::string',
4484 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4485 is_const=True, is_virtual=True)
4486 ## nstime.h (module 'core'): void ns3::TimeValue::Set(ns3::Time const & value) [member function]
4487 cls.add_method('Set',
4488 'void',
4489 [param('ns3::Time const &', 'value')])
4490 return
4491
4492def register_Ns3TypeIdChecker_methods(root_module, cls):
4493 ## type-id.h (module 'core'): ns3::TypeIdChecker::TypeIdChecker() [constructor]
4494 cls.add_constructor([])
4495 ## type-id.h (module 'core'): ns3::TypeIdChecker::TypeIdChecker(ns3::TypeIdChecker const & arg0) [copy constructor]
4496 cls.add_constructor([param('ns3::TypeIdChecker const &', 'arg0')])
4497 return
4498
4499def register_Ns3TypeIdValue_methods(root_module, cls):
4500 ## type-id.h (module 'core'): ns3::TypeIdValue::TypeIdValue() [constructor]
4501 cls.add_constructor([])
4502 ## type-id.h (module 'core'): ns3::TypeIdValue::TypeIdValue(ns3::TypeIdValue const & arg0) [copy constructor]
4503 cls.add_constructor([param('ns3::TypeIdValue const &', 'arg0')])
4504 ## type-id.h (module 'core'): ns3::TypeIdValue::TypeIdValue(ns3::TypeId const & value) [constructor]
4505 cls.add_constructor([param('ns3::TypeId const &', 'value')])
4506 ## type-id.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::TypeIdValue::Copy() const [member function]
4507 cls.add_method('Copy',
4508 'ns3::Ptr< ns3::AttributeValue >',
4509 [],
4510 is_const=True, is_virtual=True)
4511 ## type-id.h (module 'core'): bool ns3::TypeIdValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
4512 cls.add_method('DeserializeFromString',
4513 'bool',
4514 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4515 is_virtual=True)
4516 ## type-id.h (module 'core'): ns3::TypeId ns3::TypeIdValue::Get() const [member function]
4517 cls.add_method('Get',
4518 'ns3::TypeId',
4519 [],
4520 is_const=True)
4521 ## type-id.h (module 'core'): std::string ns3::TypeIdValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
4522 cls.add_method('SerializeToString',
4523 'std::string',
4524 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4525 is_const=True, is_virtual=True)
4526 ## type-id.h (module 'core'): void ns3::TypeIdValue::Set(ns3::TypeId const & value) [member function]
4527 cls.add_method('Set',
4528 'void',
4529 [param('ns3::TypeId const &', 'value')])
4530 return
4531
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07004532def register_Ns3UintegerValue_methods(root_module, cls):
4533 ## uinteger.h (module 'core'): ns3::UintegerValue::UintegerValue() [constructor]
4534 cls.add_constructor([])
4535 ## uinteger.h (module 'core'): ns3::UintegerValue::UintegerValue(ns3::UintegerValue const & arg0) [copy constructor]
4536 cls.add_constructor([param('ns3::UintegerValue const &', 'arg0')])
4537 ## uinteger.h (module 'core'): ns3::UintegerValue::UintegerValue(uint64_t const & value) [constructor]
4538 cls.add_constructor([param('uint64_t const &', 'value')])
4539 ## uinteger.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::UintegerValue::Copy() const [member function]
4540 cls.add_method('Copy',
4541 'ns3::Ptr< ns3::AttributeValue >',
4542 [],
4543 is_const=True, is_virtual=True)
4544 ## uinteger.h (module 'core'): bool ns3::UintegerValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
4545 cls.add_method('DeserializeFromString',
4546 'bool',
4547 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4548 is_virtual=True)
4549 ## uinteger.h (module 'core'): uint64_t ns3::UintegerValue::Get() const [member function]
4550 cls.add_method('Get',
4551 'uint64_t',
4552 [],
4553 is_const=True)
4554 ## uinteger.h (module 'core'): std::string ns3::UintegerValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
4555 cls.add_method('SerializeToString',
4556 'std::string',
4557 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4558 is_const=True, is_virtual=True)
4559 ## uinteger.h (module 'core'): void ns3::UintegerValue::Set(uint64_t const & value) [member function]
4560 cls.add_method('Set',
4561 'void',
4562 [param('uint64_t const &', 'value')])
4563 return
4564
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08004565def register_Ns3AddressChecker_methods(root_module, cls):
4566 ## address.h (module 'network'): ns3::AddressChecker::AddressChecker() [constructor]
4567 cls.add_constructor([])
4568 ## address.h (module 'network'): ns3::AddressChecker::AddressChecker(ns3::AddressChecker const & arg0) [copy constructor]
4569 cls.add_constructor([param('ns3::AddressChecker const &', 'arg0')])
4570 return
4571
4572def register_Ns3AddressValue_methods(root_module, cls):
4573 ## address.h (module 'network'): ns3::AddressValue::AddressValue() [constructor]
4574 cls.add_constructor([])
4575 ## address.h (module 'network'): ns3::AddressValue::AddressValue(ns3::AddressValue const & arg0) [copy constructor]
4576 cls.add_constructor([param('ns3::AddressValue const &', 'arg0')])
4577 ## address.h (module 'network'): ns3::AddressValue::AddressValue(ns3::Address const & value) [constructor]
4578 cls.add_constructor([param('ns3::Address const &', 'value')])
4579 ## address.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::AddressValue::Copy() const [member function]
4580 cls.add_method('Copy',
4581 'ns3::Ptr< ns3::AttributeValue >',
4582 [],
4583 is_const=True, is_virtual=True)
4584 ## address.h (module 'network'): bool ns3::AddressValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
4585 cls.add_method('DeserializeFromString',
4586 'bool',
4587 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4588 is_virtual=True)
4589 ## address.h (module 'network'): ns3::Address ns3::AddressValue::Get() const [member function]
4590 cls.add_method('Get',
4591 'ns3::Address',
4592 [],
4593 is_const=True)
4594 ## address.h (module 'network'): std::string ns3::AddressValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
4595 cls.add_method('SerializeToString',
4596 'std::string',
4597 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4598 is_const=True, is_virtual=True)
4599 ## address.h (module 'network'): void ns3::AddressValue::Set(ns3::Address const & value) [member function]
4600 cls.add_method('Set',
4601 'void',
4602 [param('ns3::Address const &', 'value')])
4603 return
4604
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004605def register_Ns3NdnApp_methods(root_module, cls):
4606 ## ndn-app.h (module 'ndnSIM'): ns3::ndn::App::App(ns3::ndn::App const & arg0) [copy constructor]
4607 cls.add_constructor([param('ns3::ndn::App const &', 'arg0')])
4608 ## ndn-app.h (module 'ndnSIM'): ns3::ndn::App::App() [constructor]
4609 cls.add_constructor([])
Alexander Afanasyev32c07562013-02-01 12:58:43 -08004610 ## ndn-app.h (module 'ndnSIM'): uint32_t ns3::ndn::App::GetId() const [member function]
4611 cls.add_method('GetId',
4612 'uint32_t',
4613 [],
4614 is_const=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004615 ## ndn-app.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::App::GetTypeId() [member function]
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07004616 cls.add_method('GetTypeId',
4617 'ns3::TypeId',
4618 [],
4619 is_static=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004620 ## 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]
4621 cls.add_method('OnContentObject',
4622 'void',
4623 [param('ns3::Ptr< ns3::ndn::ContentObjectHeader const > const &', 'contentObject'), param('ns3::Ptr< ns3::Packet >', 'payload')],
4624 is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07004625 ## 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 -07004626 cls.add_method('OnInterest',
4627 'void',
4628 [param('ns3::Ptr< ns3::ndn::InterestHeader const > const &', 'interest'), param('ns3::Ptr< ns3::Packet >', 'packet')],
4629 is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07004630 ## 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 -07004631 cls.add_method('OnNack',
4632 'void',
4633 [param('ns3::Ptr< ns3::ndn::InterestHeader const > const &', 'interest'), param('ns3::Ptr< ns3::Packet >', 'packet')],
4634 is_virtual=True)
4635 ## 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 -07004636 cls.add_method('RegisterProtocolHandler',
4637 'void',
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004638 [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')])
4639 ## ndn-app.h (module 'ndnSIM'): void ns3::ndn::App::DoDispose() [member function]
4640 cls.add_method('DoDispose',
4641 'void',
4642 [],
4643 visibility='protected', is_virtual=True)
4644 ## ndn-app.h (module 'ndnSIM'): void ns3::ndn::App::StartApplication() [member function]
4645 cls.add_method('StartApplication',
4646 'void',
4647 [],
4648 visibility='protected', is_virtual=True)
4649 ## ndn-app.h (module 'ndnSIM'): void ns3::ndn::App::StopApplication() [member function]
4650 cls.add_method('StopApplication',
4651 'void',
4652 [],
4653 visibility='protected', is_virtual=True)
4654 return
4655
4656def register_Ns3NdnAppHelper_methods(root_module, cls):
4657 ## ndn-app-helper.h (module 'ndnSIM'): ns3::ndn::AppHelper::AppHelper(ns3::ndn::AppHelper const & arg0) [copy constructor]
4658 cls.add_constructor([param('ns3::ndn::AppHelper const &', 'arg0')])
4659 ## ndn-app-helper.h (module 'ndnSIM'): ns3::ndn::AppHelper::AppHelper(std::string const & prefix) [constructor]
4660 cls.add_constructor([param('std::string const &', 'prefix')])
4661 ## ndn-app-helper.h (module 'ndnSIM'): ns3::ApplicationContainer ns3::ndn::AppHelper::Install(ns3::NodeContainer c) [member function]
4662 cls.add_method('Install',
4663 'ns3::ApplicationContainer',
4664 [param('ns3::NodeContainer', 'c')])
4665 ## ndn-app-helper.h (module 'ndnSIM'): ns3::ApplicationContainer ns3::ndn::AppHelper::Install(ns3::Ptr<ns3::Node> node) [member function]
4666 cls.add_method('Install',
4667 'ns3::ApplicationContainer',
4668 [param('ns3::Ptr< ns3::Node >', 'node')])
4669 ## ndn-app-helper.h (module 'ndnSIM'): ns3::ApplicationContainer ns3::ndn::AppHelper::Install(std::string nodeName) [member function]
4670 cls.add_method('Install',
4671 'ns3::ApplicationContainer',
4672 [param('std::string', 'nodeName')])
4673 ## ndn-app-helper.h (module 'ndnSIM'): void ns3::ndn::AppHelper::SetAttribute(std::string name, ns3::AttributeValue const & value) [member function]
4674 cls.add_method('SetAttribute',
4675 'void',
4676 [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')])
4677 ## ndn-app-helper.h (module 'ndnSIM'): void ns3::ndn::AppHelper::SetPrefix(std::string const & prefix) [member function]
4678 cls.add_method('SetPrefix',
4679 'void',
4680 [param('std::string const &', 'prefix')])
4681 return
4682
4683def register_Ns3NdnContentObjectHeader_methods(root_module, cls):
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08004684 ## ndn-content-object.h (module 'ndnSIM'): ns3::ndn::ContentObjectHeader::ContentObjectHeader(ns3::ndn::ContentObjectHeader const & arg0) [copy constructor]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004685 cls.add_constructor([param('ns3::ndn::ContentObjectHeader const &', 'arg0')])
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08004686 ## ndn-content-object.h (module 'ndnSIM'): ns3::ndn::ContentObjectHeader::ContentObjectHeader() [constructor]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004687 cls.add_constructor([])
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08004688 ## 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 -07004689 cls.add_method('Deserialize',
4690 'uint32_t',
4691 [param('ns3::Buffer::Iterator', 'start')],
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07004692 is_virtual=True)
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08004693 ## ndn-content-object.h (module 'ndnSIM'): ns3::Time ns3::ndn::ContentObjectHeader::GetFreshness() const [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004694 cls.add_method('GetFreshness',
4695 'ns3::Time',
4696 [],
4697 is_const=True)
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08004698 ## ndn-content-object.h (module 'ndnSIM'): ns3::TypeId ns3::ndn::ContentObjectHeader::GetInstanceTypeId() const [member function]
4699 cls.add_method('GetInstanceTypeId',
4700 'ns3::TypeId',
4701 [],
4702 is_const=True, is_virtual=True)
4703 ## ndn-content-object.h (module 'ndnSIM'): ns3::ndn::NameComponents const & ns3::ndn::ContentObjectHeader::GetName() const [member function]
4704 cls.add_method('GetName',
4705 'ns3::ndn::NameComponents const &',
4706 [],
4707 is_const=True)
4708 ## ndn-content-object.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::NameComponents const> ns3::ndn::ContentObjectHeader::GetNamePtr() const [member function]
4709 cls.add_method('GetNamePtr',
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004710 'ns3::Ptr< ns3::ndn::NameComponents const >',
4711 [],
4712 is_const=True)
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08004713 ## ndn-content-object.h (module 'ndnSIM'): uint32_t ns3::ndn::ContentObjectHeader::GetSerializedSize() const [member function]
4714 cls.add_method('GetSerializedSize',
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004715 'uint32_t',
4716 [],
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08004717 is_const=True, is_virtual=True)
4718 ## ndn-content-object.h (module 'ndnSIM'): ns3::Time ns3::ndn::ContentObjectHeader::GetTimestamp() const [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004719 cls.add_method('GetTimestamp',
4720 'ns3::Time',
4721 [],
4722 is_const=True)
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08004723 ## ndn-content-object.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::ContentObjectHeader::GetTypeId() [member function]
4724 cls.add_method('GetTypeId',
4725 'ns3::TypeId',
4726 [],
4727 is_static=True)
4728 ## ndn-content-object.h (module 'ndnSIM'): void ns3::ndn::ContentObjectHeader::Print(std::ostream & os) const [member function]
4729 cls.add_method('Print',
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004730 'void',
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08004731 [param('std::ostream &', 'os')],
4732 is_const=True, is_virtual=True)
4733 ## ndn-content-object.h (module 'ndnSIM'): void ns3::ndn::ContentObjectHeader::Serialize(ns3::Buffer::Iterator start) const [member function]
4734 cls.add_method('Serialize',
4735 'void',
4736 [param('ns3::Buffer::Iterator', 'start')],
4737 is_const=True, is_virtual=True)
4738 ## ndn-content-object.h (module 'ndnSIM'): void ns3::ndn::ContentObjectHeader::SetFreshness(ns3::Time const & freshness) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004739 cls.add_method('SetFreshness',
4740 'void',
4741 [param('ns3::Time const &', 'freshness')])
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08004742 ## ndn-content-object.h (module 'ndnSIM'): void ns3::ndn::ContentObjectHeader::SetName(ns3::Ptr<ns3::ndn::NameComponents> const & name) [member function]
4743 cls.add_method('SetName',
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004744 'void',
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08004745 [param('ns3::Ptr< ns3::ndn::NameComponents > const &', 'name')])
4746 ## ndn-content-object.h (module 'ndnSIM'): void ns3::ndn::ContentObjectHeader::SetTimestamp(ns3::Time const & timestamp) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004747 cls.add_method('SetTimestamp',
4748 'void',
4749 [param('ns3::Time const &', 'timestamp')])
4750 return
4751
4752def register_Ns3NdnContentObjectHeaderException_methods(root_module, cls):
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08004753 ## ndn-content-object.h (module 'ndnSIM'): ns3::ndn::ContentObjectHeaderException::ContentObjectHeaderException() [constructor]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004754 cls.add_constructor([])
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08004755 ## ndn-content-object.h (module 'ndnSIM'): ns3::ndn::ContentObjectHeaderException::ContentObjectHeaderException(ns3::ndn::ContentObjectHeaderException const & arg0) [copy constructor]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004756 cls.add_constructor([param('ns3::ndn::ContentObjectHeaderException const &', 'arg0')])
4757 return
4758
4759def register_Ns3NdnContentObjectTail_methods(root_module, cls):
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08004760 ## ndn-content-object.h (module 'ndnSIM'): ns3::ndn::ContentObjectTail::ContentObjectTail(ns3::ndn::ContentObjectTail const & arg0) [copy constructor]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004761 cls.add_constructor([param('ns3::ndn::ContentObjectTail const &', 'arg0')])
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08004762 ## ndn-content-object.h (module 'ndnSIM'): ns3::ndn::ContentObjectTail::ContentObjectTail() [constructor]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004763 cls.add_constructor([])
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08004764 ## 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 -07004765 cls.add_method('Deserialize',
4766 'uint32_t',
4767 [param('ns3::Buffer::Iterator', 'start')],
4768 is_virtual=True)
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08004769 ## ndn-content-object.h (module 'ndnSIM'): ns3::TypeId ns3::ndn::ContentObjectTail::GetInstanceTypeId() const [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004770 cls.add_method('GetInstanceTypeId',
4771 'ns3::TypeId',
4772 [],
4773 is_const=True, is_virtual=True)
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08004774 ## ndn-content-object.h (module 'ndnSIM'): uint32_t ns3::ndn::ContentObjectTail::GetSerializedSize() const [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004775 cls.add_method('GetSerializedSize',
4776 'uint32_t',
4777 [],
4778 is_const=True, is_virtual=True)
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08004779 ## ndn-content-object.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::ContentObjectTail::GetTypeId() [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004780 cls.add_method('GetTypeId',
4781 'ns3::TypeId',
4782 [],
4783 is_static=True)
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08004784 ## ndn-content-object.h (module 'ndnSIM'): void ns3::ndn::ContentObjectTail::Print(std::ostream & os) const [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004785 cls.add_method('Print',
4786 'void',
4787 [param('std::ostream &', 'os')],
4788 is_const=True, is_virtual=True)
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08004789 ## 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 -07004790 cls.add_method('Serialize',
4791 'void',
4792 [param('ns3::Buffer::Iterator', 'start')],
4793 is_const=True, is_virtual=True)
4794 return
4795
4796def register_Ns3NdnContentStore_methods(root_module, cls):
4797 cls.add_output_stream_operator()
4798 ## ndn-content-store.h (module 'ndnSIM'): ns3::ndn::ContentStore::ContentStore() [constructor]
4799 cls.add_constructor([])
4800 ## ndn-content-store.h (module 'ndnSIM'): ns3::ndn::ContentStore::ContentStore(ns3::ndn::ContentStore const & arg0) [copy constructor]
4801 cls.add_constructor([param('ns3::ndn::ContentStore const &', 'arg0')])
4802 ## 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]
4803 cls.add_method('Add',
4804 'bool',
4805 [param('ns3::Ptr< ns3::ndn::ContentObjectHeader const >', 'header'), param('ns3::Ptr< ns3::Packet const >', 'packet')],
4806 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07004807 ## ndn-content-store.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::cs::Entry> ns3::ndn::ContentStore::Begin() [member function]
4808 cls.add_method('Begin',
4809 'ns3::Ptr< ns3::ndn::cs::Entry >',
4810 [],
4811 is_pure_virtual=True, is_virtual=True)
4812 ## ndn-content-store.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::cs::Entry> ns3::ndn::ContentStore::End() [member function]
4813 cls.add_method('End',
4814 'ns3::Ptr< ns3::ndn::cs::Entry >',
4815 [],
4816 is_pure_virtual=True, is_virtual=True)
4817 ## ndn-content-store.h (module 'ndnSIM'): static ns3::Ptr<ns3::ndn::ContentStore> ns3::ndn::ContentStore::GetContentStore(ns3::Ptr<ns3::Object> node) [member function]
4818 cls.add_method('GetContentStore',
4819 'ns3::Ptr< ns3::ndn::ContentStore >',
4820 [param('ns3::Ptr< ns3::Object >', 'node')],
4821 is_static=True)
4822 ## ndn-content-store.h (module 'ndnSIM'): uint32_t ns3::ndn::ContentStore::GetSize() const [member function]
4823 cls.add_method('GetSize',
4824 'uint32_t',
4825 [],
4826 is_pure_virtual=True, is_const=True, is_virtual=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004827 ## ndn-content-store.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::ContentStore::GetTypeId() [member function]
4828 cls.add_method('GetTypeId',
4829 'ns3::TypeId',
4830 [],
4831 is_static=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07004832 ## 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 -07004833 cls.add_method('Lookup',
4834 '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 >',
4835 [param('ns3::Ptr< ns3::ndn::InterestHeader const >', 'interest')],
4836 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07004837 ## 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]
4838 cls.add_method('Next',
4839 'ns3::Ptr< ns3::ndn::cs::Entry >',
4840 [param('ns3::Ptr< ns3::ndn::cs::Entry >', 'arg0')],
4841 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004842 ## ndn-content-store.h (module 'ndnSIM'): void ns3::ndn::ContentStore::Print(std::ostream & os) const [member function]
4843 cls.add_method('Print',
4844 'void',
4845 [param('std::ostream &', 'os')],
4846 is_pure_virtual=True, is_const=True, is_virtual=True)
4847 return
4848
4849def register_Ns3NdnFace_methods(root_module, cls):
4850 cls.add_output_stream_operator()
4851 cls.add_binary_comparison_operator('!=')
4852 cls.add_binary_comparison_operator('<')
4853 cls.add_binary_comparison_operator('==')
4854 ## ndn-face.h (module 'ndnSIM'): ns3::ndn::Face::Face(ns3::Ptr<ns3::Node> node) [constructor]
4855 cls.add_constructor([param('ns3::Ptr< ns3::Node >', 'node')])
4856 ## ndn-face.h (module 'ndnSIM'): uint32_t ns3::ndn::Face::GetId() const [member function]
4857 cls.add_method('GetId',
4858 'uint32_t',
4859 [],
4860 is_const=True)
4861 ## ndn-face.h (module 'ndnSIM'): uint16_t ns3::ndn::Face::GetMetric() const [member function]
4862 cls.add_method('GetMetric',
4863 'uint16_t',
4864 [],
4865 is_const=True, is_virtual=True)
4866 ## ndn-face.h (module 'ndnSIM'): ns3::Ptr<ns3::Node> ns3::ndn::Face::GetNode() const [member function]
4867 cls.add_method('GetNode',
4868 'ns3::Ptr< ns3::Node >',
4869 [],
4870 is_const=True)
4871 ## ndn-face.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::Face::GetTypeId() [member function]
4872 cls.add_method('GetTypeId',
4873 'ns3::TypeId',
4874 [],
4875 is_static=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004876 ## ndn-face.h (module 'ndnSIM'): bool ns3::ndn::Face::IsUp() const [member function]
4877 cls.add_method('IsUp',
4878 'bool',
4879 [],
4880 is_const=True, is_virtual=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004881 ## ndn-face.h (module 'ndnSIM'): std::ostream & ns3::ndn::Face::Print(std::ostream & os) const [member function]
Alexander Afanasyev3073da82012-06-19 14:57:43 -07004882 cls.add_method('Print',
4883 'std::ostream &',
4884 [param('std::ostream &', 'os')],
4885 is_const=True, is_virtual=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004886 ## ndn-face.h (module 'ndnSIM'): bool ns3::ndn::Face::Receive(ns3::Ptr<const ns3::Packet> const & p) [member function]
4887 cls.add_method('Receive',
4888 'bool',
4889 [param('ns3::Ptr< ns3::Packet const > const &', 'p')])
4890 ## 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]
4891 cls.add_method('RegisterProtocolHandler',
4892 'void',
4893 [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')],
4894 is_virtual=True)
4895 ## ndn-face.h (module 'ndnSIM'): bool ns3::ndn::Face::Send(ns3::Ptr<ns3::Packet> p) [member function]
4896 cls.add_method('Send',
4897 'bool',
4898 [param('ns3::Ptr< ns3::Packet >', 'p')])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004899 ## ndn-face.h (module 'ndnSIM'): void ns3::ndn::Face::SetId(uint32_t id) [member function]
4900 cls.add_method('SetId',
4901 'void',
4902 [param('uint32_t', 'id')])
4903 ## ndn-face.h (module 'ndnSIM'): void ns3::ndn::Face::SetMetric(uint16_t metric) [member function]
4904 cls.add_method('SetMetric',
4905 'void',
4906 [param('uint16_t', 'metric')],
4907 is_virtual=True)
4908 ## ndn-face.h (module 'ndnSIM'): void ns3::ndn::Face::SetUp(bool up=true) [member function]
4909 cls.add_method('SetUp',
4910 'void',
4911 [param('bool', 'up', default_value='true')],
4912 is_virtual=True)
4913 ## ndn-face.h (module 'ndnSIM'): bool ns3::ndn::Face::SendImpl(ns3::Ptr<ns3::Packet> p) [member function]
4914 cls.add_method('SendImpl',
4915 'bool',
4916 [param('ns3::Ptr< ns3::Packet >', 'p')],
4917 is_pure_virtual=True, visibility='protected', is_virtual=True)
4918 return
4919
4920def register_Ns3NdnFaceContainer_methods(root_module, cls):
4921 ## ndn-face-container.h (module 'ndnSIM'): ns3::ndn::FaceContainer::FaceContainer() [constructor]
4922 cls.add_constructor([])
4923 ## ndn-face-container.h (module 'ndnSIM'): ns3::ndn::FaceContainer::FaceContainer(ns3::ndn::FaceContainer const & other) [copy constructor]
4924 cls.add_constructor([param('ns3::ndn::FaceContainer const &', 'other')])
4925 ## ndn-face-container.h (module 'ndnSIM'): void ns3::ndn::FaceContainer::Add(ns3::Ptr<ns3::ndn::Face> const & face) [member function]
4926 cls.add_method('Add',
4927 'void',
4928 [param('ns3::Ptr< ns3::ndn::Face > const &', 'face')])
4929 ## ndn-face-container.h (module 'ndnSIM'): void ns3::ndn::FaceContainer::AddAll(ns3::Ptr<ns3::ndn::FaceContainer> other) [member function]
4930 cls.add_method('AddAll',
4931 'void',
4932 [param('ns3::Ptr< ns3::ndn::FaceContainer >', 'other')])
4933 ## ndn-face-container.h (module 'ndnSIM'): void ns3::ndn::FaceContainer::AddAll(ns3::ndn::FaceContainer const & other) [member function]
4934 cls.add_method('AddAll',
4935 'void',
4936 [param('ns3::ndn::FaceContainer const &', 'other')])
4937 ## 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]
4938 cls.add_method('Begin',
4939 '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::ndn::Face > const, std::vector< ns3::Ptr< ns3::ndn::Face > > >',
4940 [],
4941 is_const=True)
4942 ## 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]
4943 cls.add_method('End',
4944 '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::ndn::Face > const, std::vector< ns3::Ptr< ns3::ndn::Face > > >',
4945 [],
4946 is_const=True)
4947 ## 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]
4948 cls.add_method('Get',
4949 'ns3::Ptr< ns3::ndn::Face >',
4950 [param('__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::ndn::Face > const, std::vector< ns3::Ptr< ns3::ndn::Face > > >', 'i')],
4951 is_const=True)
4952 ## ndn-face-container.h (module 'ndnSIM'): uint32_t ns3::ndn::FaceContainer::GetN() const [member function]
4953 cls.add_method('GetN',
4954 'uint32_t',
4955 [],
4956 is_const=True)
4957 return
4958
4959def register_Ns3NdnFib_methods(root_module, cls):
4960 cls.add_output_stream_operator()
4961 ## ndn-fib.h (module 'ndnSIM'): ns3::ndn::Fib::Fib() [constructor]
4962 cls.add_constructor([])
4963 ## 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]
4964 cls.add_method('Add',
4965 'ns3::Ptr< ns3::ndn::fib::Entry >',
4966 [param('ns3::ndn::NameComponents const &', 'prefix'), param('ns3::Ptr< ns3::ndn::Face >', 'face'), param('int32_t', 'metric')],
4967 is_pure_virtual=True, is_virtual=True)
4968 ## 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]
4969 cls.add_method('Add',
4970 'ns3::Ptr< ns3::ndn::fib::Entry >',
4971 [param('ns3::Ptr< ns3::ndn::NameComponents const > const &', 'prefix'), param('ns3::Ptr< ns3::ndn::Face >', 'face'), param('int32_t', 'metric')],
4972 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07004973 ## 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 -07004974 cls.add_method('Begin',
4975 'ns3::Ptr< ns3::ndn::fib::Entry const >',
4976 [],
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07004977 is_pure_virtual=True, is_const=True, is_virtual=True)
4978 ## ndn-fib.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::fib::Entry> ns3::ndn::Fib::Begin() [member function]
4979 cls.add_method('Begin',
4980 'ns3::Ptr< ns3::ndn::fib::Entry >',
4981 [],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004982 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07004983 ## 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 -07004984 cls.add_method('End',
4985 'ns3::Ptr< ns3::ndn::fib::Entry const >',
4986 [],
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07004987 is_pure_virtual=True, is_const=True, is_virtual=True)
4988 ## ndn-fib.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::fib::Entry> ns3::ndn::Fib::End() [member function]
4989 cls.add_method('End',
4990 'ns3::Ptr< ns3::ndn::fib::Entry >',
4991 [],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004992 is_pure_virtual=True, is_virtual=True)
4993 ## ndn-fib.h (module 'ndnSIM'): static ns3::Ptr<ns3::ndn::Fib> ns3::ndn::Fib::GetFib(ns3::Ptr<ns3::Object> node) [member function]
4994 cls.add_method('GetFib',
4995 'ns3::Ptr< ns3::ndn::Fib >',
4996 [param('ns3::Ptr< ns3::Object >', 'node')],
4997 is_static=True)
4998 ## ndn-fib.h (module 'ndnSIM'): uint32_t ns3::ndn::Fib::GetSize() const [member function]
4999 cls.add_method('GetSize',
5000 'uint32_t',
5001 [],
5002 is_pure_virtual=True, is_const=True, is_virtual=True)
5003 ## ndn-fib.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::Fib::GetTypeId() [member function]
5004 cls.add_method('GetTypeId',
5005 'ns3::TypeId',
5006 [],
5007 is_static=True)
5008 ## ndn-fib.h (module 'ndnSIM'): void ns3::ndn::Fib::InvalidateAll() [member function]
5009 cls.add_method('InvalidateAll',
5010 'void',
5011 [],
5012 is_pure_virtual=True, is_virtual=True)
5013 ## ndn-fib.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::fib::Entry> ns3::ndn::Fib::LongestPrefixMatch(ns3::ndn::InterestHeader const & interest) [member function]
5014 cls.add_method('LongestPrefixMatch',
5015 'ns3::Ptr< ns3::ndn::fib::Entry >',
5016 [param('ns3::ndn::InterestHeader const &', 'interest')],
5017 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005018 ## 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 -07005019 cls.add_method('Next',
5020 'ns3::Ptr< ns3::ndn::fib::Entry const >',
5021 [param('ns3::Ptr< ns3::ndn::fib::Entry const >', 'arg0')],
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005022 is_pure_virtual=True, is_const=True, is_virtual=True)
5023 ## ndn-fib.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::fib::Entry> ns3::ndn::Fib::Next(ns3::Ptr<ns3::ndn::fib::Entry> arg0) [member function]
5024 cls.add_method('Next',
5025 'ns3::Ptr< ns3::ndn::fib::Entry >',
5026 [param('ns3::Ptr< ns3::ndn::fib::Entry >', 'arg0')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005027 is_pure_virtual=True, is_virtual=True)
5028 ## ndn-fib.h (module 'ndnSIM'): void ns3::ndn::Fib::Print(std::ostream & os) const [member function]
5029 cls.add_method('Print',
5030 'void',
5031 [param('std::ostream &', 'os')],
5032 is_pure_virtual=True, is_const=True, is_virtual=True)
5033 ## ndn-fib.h (module 'ndnSIM'): void ns3::ndn::Fib::Remove(ns3::Ptr<ns3::ndn::NameComponents const> const & prefix) [member function]
5034 cls.add_method('Remove',
5035 'void',
5036 [param('ns3::Ptr< ns3::ndn::NameComponents const > const &', 'prefix')],
5037 is_pure_virtual=True, is_virtual=True)
5038 ## ndn-fib.h (module 'ndnSIM'): void ns3::ndn::Fib::RemoveFromAll(ns3::Ptr<ns3::ndn::Face> face) [member function]
5039 cls.add_method('RemoveFromAll',
5040 'void',
5041 [param('ns3::Ptr< ns3::ndn::Face >', 'face')],
5042 is_pure_virtual=True, is_virtual=True)
5043 return
5044
5045def register_Ns3NdnForwardingStrategy_methods(root_module, cls):
5046 ## ndn-forwarding-strategy.h (module 'ndnSIM'): ns3::ndn::ForwardingStrategy::ForwardingStrategy(ns3::ndn::ForwardingStrategy const & arg0) [copy constructor]
5047 cls.add_constructor([param('ns3::ndn::ForwardingStrategy const &', 'arg0')])
5048 ## ndn-forwarding-strategy.h (module 'ndnSIM'): ns3::ndn::ForwardingStrategy::ForwardingStrategy() [constructor]
5049 cls.add_constructor([])
Alexander Afanasyevf5c07742012-10-31 13:13:05 -07005050 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::AddFace(ns3::Ptr<ns3::ndn::Face> face) [member function]
5051 cls.add_method('AddFace',
5052 'void',
5053 [param('ns3::Ptr< ns3::ndn::Face >', 'face')],
5054 is_virtual=True)
Alexander Afanasyev32c07562013-02-01 12:58:43 -08005055 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::DidAddFibEntry(ns3::Ptr<ns3::ndn::fib::Entry> fibEntry) [member function]
5056 cls.add_method('DidAddFibEntry',
5057 'void',
5058 [param('ns3::Ptr< ns3::ndn::fib::Entry >', 'fibEntry')],
5059 is_virtual=True)
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08005060 ## ndn-forwarding-strategy.h (module 'ndnSIM'): static std::string ns3::ndn::ForwardingStrategy::GetLogName() [member function]
5061 cls.add_method('GetLogName',
5062 'std::string',
5063 [],
5064 is_static=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005065 ## ndn-forwarding-strategy.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::ForwardingStrategy::GetTypeId() [member function]
5066 cls.add_method('GetTypeId',
5067 'ns3::TypeId',
5068 [],
5069 is_static=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005070 ## 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 -07005071 cls.add_method('OnData',
5072 'void',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005073 [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 -07005074 is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005075 ## 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 -07005076 cls.add_method('OnInterest',
5077 'void',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005078 [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 -07005079 is_virtual=True)
5080 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::RemoveFace(ns3::Ptr<ns3::ndn::Face> face) [member function]
5081 cls.add_method('RemoveFace',
5082 'void',
5083 [param('ns3::Ptr< ns3::ndn::Face >', 'face')],
5084 is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005085 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::WillEraseTimedOutPendingInterest(ns3::Ptr<ns3::ndn::pit::Entry> pitEntry) [member function]
5086 cls.add_method('WillEraseTimedOutPendingInterest',
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005087 'void',
5088 [param('ns3::Ptr< ns3::ndn::pit::Entry >', 'pitEntry')],
5089 is_virtual=True)
Alexander Afanasyev32c07562013-02-01 12:58:43 -08005090 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::WillRemoveFibEntry(ns3::Ptr<ns3::ndn::fib::Entry> fibEntry) [member function]
5091 cls.add_method('WillRemoveFibEntry',
5092 'void',
5093 [param('ns3::Ptr< ns3::ndn::fib::Entry >', 'fibEntry')],
5094 is_virtual=True)
Alexander Afanasyeva8f5d882012-11-09 14:22:48 -08005095 ## 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]
5096 cls.add_method('CanSendOutInterest',
5097 'bool',
5098 [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')],
5099 visibility='protected', is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005100 ## 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 -07005101 cls.add_method('DetectRetransmittedInterest',
5102 'bool',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005103 [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 -07005104 visibility='protected', is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005105 ## 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 -07005106 cls.add_method('DidCreatePitEntry',
5107 'void',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005108 [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 -07005109 visibility='protected', is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005110 ## 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 -07005111 cls.add_method('DidExhaustForwardingOptions',
5112 'void',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005113 [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 -07005114 visibility='protected', is_virtual=True)
Alexander Afanasyeva28ec562012-10-25 14:07:32 -07005115 ## 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]
5116 cls.add_method('DidForwardSimilarInterest',
5117 'void',
5118 [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')],
5119 visibility='protected', is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005120 ## 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 -07005121 cls.add_method('DidReceiveDuplicateInterest',
5122 'void',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005123 [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 -07005124 visibility='protected', is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005125 ## 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 -07005126 cls.add_method('DidReceiveUnsolicitedData',
5127 'void',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005128 [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 -07005129 visibility='protected', is_virtual=True)
Alexander Afanasyev67f4a4a2012-11-24 17:18:17 -08005130 ## 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 -07005131 cls.add_method('DidSendOutData',
5132 'void',
Alexander Afanasyev67f4a4a2012-11-24 17:18:17 -08005133 [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 -07005134 visibility='protected', is_virtual=True)
Alexander Afanasyev67f4a4a2012-11-24 17:18:17 -08005135 ## 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 -07005136 cls.add_method('DidSendOutInterest',
5137 'void',
Alexander Afanasyev67f4a4a2012-11-24 17:18:17 -08005138 [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 -07005139 visibility='protected', is_virtual=True)
Alexander Afanasyeva28ec562012-10-25 14:07:32 -07005140 ## 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]
5141 cls.add_method('DidSuppressSimilarInterest',
5142 'void',
5143 [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')],
5144 visibility='protected', is_virtual=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005145 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::DoDispose() [member function]
5146 cls.add_method('DoDispose',
5147 'void',
5148 [],
5149 visibility='protected', is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005150 ## 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 -07005151 cls.add_method('DoPropagateInterest',
5152 'bool',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005153 [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 -07005154 is_pure_virtual=True, visibility='protected', is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005155 ## 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 -07005156 cls.add_method('FailedToCreatePitEntry',
5157 'void',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005158 [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 -07005159 visibility='protected', is_virtual=True)
5160 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::NotifyNewAggregate() [member function]
5161 cls.add_method('NotifyNewAggregate',
5162 'void',
5163 [],
5164 visibility='protected', is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005165 ## 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 -07005166 cls.add_method('PropagateInterest',
5167 'void',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005168 [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 -07005169 visibility='protected', is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005170 ## 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 -07005171 cls.add_method('SatisfyPendingInterest',
5172 'void',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005173 [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 -07005174 visibility='protected', is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005175 ## 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 -07005176 cls.add_method('ShouldSuppressIncomingInterest',
5177 'bool',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005178 [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 -07005179 visibility='protected', is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005180 ## 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]
5181 cls.add_method('TrySendOutInterest',
5182 'bool',
5183 [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')],
5184 visibility='protected', is_virtual=True)
5185 ## 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 -07005186 cls.add_method('WillSatisfyPendingInterest',
5187 'void',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005188 [param('ns3::Ptr< ns3::ndn::Face >', 'inFace'), param('ns3::Ptr< ns3::ndn::pit::Entry >', 'pitEntry')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005189 visibility='protected', is_virtual=True)
5190 return
5191
5192def register_Ns3NdnGlobalRoutingHelper_methods(root_module, cls):
5193 ## ndn-global-routing-helper.h (module 'ndnSIM'): ns3::ndn::GlobalRoutingHelper::GlobalRoutingHelper() [constructor]
5194 cls.add_constructor([])
5195 ## ndn-global-routing-helper.h (module 'ndnSIM'): ns3::ndn::GlobalRoutingHelper::GlobalRoutingHelper(ns3::ndn::GlobalRoutingHelper const & arg0) [copy constructor]
5196 cls.add_constructor([param('ns3::ndn::GlobalRoutingHelper const &', 'arg0')])
5197 ## ndn-global-routing-helper.h (module 'ndnSIM'): void ns3::ndn::GlobalRoutingHelper::AddOrigin(std::string const & prefix, ns3::Ptr<ns3::Node> node) [member function]
5198 cls.add_method('AddOrigin',
5199 'void',
5200 [param('std::string const &', 'prefix'), param('ns3::Ptr< ns3::Node >', 'node')])
5201 ## ndn-global-routing-helper.h (module 'ndnSIM'): void ns3::ndn::GlobalRoutingHelper::AddOrigin(std::string const & prefix, std::string const & nodeName) [member function]
5202 cls.add_method('AddOrigin',
5203 'void',
5204 [param('std::string const &', 'prefix'), param('std::string const &', 'nodeName')])
5205 ## ndn-global-routing-helper.h (module 'ndnSIM'): void ns3::ndn::GlobalRoutingHelper::AddOrigins(std::string const & prefix, ns3::NodeContainer const & nodes) [member function]
5206 cls.add_method('AddOrigins',
5207 'void',
5208 [param('std::string const &', 'prefix'), param('ns3::NodeContainer const &', 'nodes')])
Alexander Afanasyev32c07562013-02-01 12:58:43 -08005209 ## ndn-global-routing-helper.h (module 'ndnSIM'): void ns3::ndn::GlobalRoutingHelper::AddOriginsForAll() [member function]
5210 cls.add_method('AddOriginsForAll',
5211 'void',
5212 [])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005213 ## ndn-global-routing-helper.h (module 'ndnSIM'): void ns3::ndn::GlobalRoutingHelper::CalculateRoutes() [member function]
5214 cls.add_method('CalculateRoutes',
5215 'void',
5216 [])
5217 ## ndn-global-routing-helper.h (module 'ndnSIM'): void ns3::ndn::GlobalRoutingHelper::Install(ns3::Ptr<ns3::Node> node) [member function]
5218 cls.add_method('Install',
5219 'void',
5220 [param('ns3::Ptr< ns3::Node >', 'node')])
5221 ## ndn-global-routing-helper.h (module 'ndnSIM'): void ns3::ndn::GlobalRoutingHelper::Install(ns3::NodeContainer const & nodes) [member function]
5222 cls.add_method('Install',
5223 'void',
5224 [param('ns3::NodeContainer const &', 'nodes')])
5225 ## ndn-global-routing-helper.h (module 'ndnSIM'): void ns3::ndn::GlobalRoutingHelper::InstallAll() [member function]
5226 cls.add_method('InstallAll',
5227 'void',
5228 [])
5229 return
5230
5231def register_Ns3NdnHeaderHelper_methods(root_module, cls):
5232 ## ndn-header-helper.h (module 'ndnSIM'): ns3::ndn::HeaderHelper::HeaderHelper() [constructor]
5233 cls.add_constructor([])
5234 ## ndn-header-helper.h (module 'ndnSIM'): ns3::ndn::HeaderHelper::HeaderHelper(ns3::ndn::HeaderHelper const & arg0) [copy constructor]
5235 cls.add_constructor([param('ns3::ndn::HeaderHelper const &', 'arg0')])
Alexander Afanasyev32c07562013-02-01 12:58:43 -08005236 ## ndn-header-helper.h (module 'ndnSIM'): ns3::Ptr<const ns3::ndn::Name> ns3::ndn::HeaderHelper::GetName(ns3::Ptr<const ns3::Packet> packet) [member function]
5237 cls.add_method('GetName',
5238 'ns3::Ptr< ns3::ndn::Name const >',
5239 [param('ns3::Ptr< ns3::Packet const >', 'packet')])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005240 ## ndn-header-helper.h (module 'ndnSIM'): static ns3::ndn::HeaderHelper::Type ns3::ndn::HeaderHelper::GetNdnHeaderType(ns3::Ptr<const ns3::Packet> packet) [member function]
5241 cls.add_method('GetNdnHeaderType',
5242 'ns3::ndn::HeaderHelper::Type',
5243 [param('ns3::Ptr< ns3::Packet const >', 'packet')],
5244 is_static=True)
5245 return
5246
5247def register_Ns3NdnInterestHeader_methods(root_module, cls):
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08005248 ## ndn-interest.h (module 'ndnSIM'): ns3::ndn::InterestHeader::InterestHeader() [constructor]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005249 cls.add_constructor([])
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08005250 ## ndn-interest.h (module 'ndnSIM'): ns3::ndn::InterestHeader::InterestHeader(ns3::ndn::InterestHeader const & interest) [copy constructor]
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005251 cls.add_constructor([param('ns3::ndn::InterestHeader const &', 'interest')])
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08005252 ## ndn-interest.h (module 'ndnSIM'): uint32_t ns3::ndn::InterestHeader::Deserialize(ns3::Buffer::Iterator start) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005253 cls.add_method('Deserialize',
5254 'uint32_t',
5255 [param('ns3::Buffer::Iterator', 'start')],
5256 is_virtual=True)
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08005257 ## ndn-interest.h (module 'ndnSIM'): ns3::TypeId ns3::ndn::InterestHeader::GetInstanceTypeId() const [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005258 cls.add_method('GetInstanceTypeId',
5259 'ns3::TypeId',
5260 [],
5261 is_const=True, is_virtual=True)
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08005262 ## 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 -07005263 cls.add_method('GetInterest',
5264 'ns3::Ptr< ns3::ndn::InterestHeader >',
5265 [param('ns3::Ptr< ns3::Packet >', 'packet')],
5266 is_static=True)
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08005267 ## ndn-interest.h (module 'ndnSIM'): ns3::Time ns3::ndn::InterestHeader::GetInterestLifetime() const [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005268 cls.add_method('GetInterestLifetime',
5269 'ns3::Time',
5270 [],
5271 is_const=True)
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08005272 ## ndn-interest.h (module 'ndnSIM'): uint8_t ns3::ndn::InterestHeader::GetNack() const [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005273 cls.add_method('GetNack',
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08005274 'uint8_t',
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005275 [],
5276 is_const=True)
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08005277 ## ndn-interest.h (module 'ndnSIM'): ns3::ndn::NameComponents const & ns3::ndn::InterestHeader::GetName() const [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005278 cls.add_method('GetName',
5279 'ns3::ndn::NameComponents const &',
5280 [],
5281 is_const=True)
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08005282 ## 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 -07005283 cls.add_method('GetNamePtr',
5284 'ns3::Ptr< ns3::ndn::NameComponents const >',
5285 [],
5286 is_const=True)
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08005287 ## ndn-interest.h (module 'ndnSIM'): uint32_t ns3::ndn::InterestHeader::GetNonce() const [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005288 cls.add_method('GetNonce',
5289 'uint32_t',
5290 [],
5291 is_const=True)
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08005292 ## ndn-interest.h (module 'ndnSIM'): int8_t ns3::ndn::InterestHeader::GetScope() const [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005293 cls.add_method('GetScope',
5294 'int8_t',
5295 [],
5296 is_const=True)
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08005297 ## ndn-interest.h (module 'ndnSIM'): uint32_t ns3::ndn::InterestHeader::GetSerializedSize() const [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005298 cls.add_method('GetSerializedSize',
5299 'uint32_t',
5300 [],
5301 is_const=True, is_virtual=True)
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08005302 ## ndn-interest.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::InterestHeader::GetTypeId() [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005303 cls.add_method('GetTypeId',
5304 'ns3::TypeId',
5305 [],
5306 is_static=True)
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08005307 ## ndn-interest.h (module 'ndnSIM'): void ns3::ndn::InterestHeader::Print(std::ostream & os) const [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005308 cls.add_method('Print',
5309 'void',
5310 [param('std::ostream &', 'os')],
5311 is_const=True, is_virtual=True)
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08005312 ## ndn-interest.h (module 'ndnSIM'): void ns3::ndn::InterestHeader::Serialize(ns3::Buffer::Iterator start) const [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005313 cls.add_method('Serialize',
5314 'void',
5315 [param('ns3::Buffer::Iterator', 'start')],
5316 is_const=True, is_virtual=True)
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08005317 ## ndn-interest.h (module 'ndnSIM'): void ns3::ndn::InterestHeader::SetInterestLifetime(ns3::Time time) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005318 cls.add_method('SetInterestLifetime',
5319 'void',
5320 [param('ns3::Time', 'time')])
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08005321 ## ndn-interest.h (module 'ndnSIM'): void ns3::ndn::InterestHeader::SetNack(uint8_t nackType) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005322 cls.add_method('SetNack',
5323 'void',
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08005324 [param('uint8_t', 'nackType')])
5325 ## 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 -07005326 cls.add_method('SetName',
5327 'void',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005328 [param('ns3::Ptr< ns3::ndn::NameComponents >', 'name')])
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08005329 ## ndn-interest.h (module 'ndnSIM'): void ns3::ndn::InterestHeader::SetNonce(uint32_t nonce) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005330 cls.add_method('SetNonce',
5331 'void',
5332 [param('uint32_t', 'nonce')])
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08005333 ## ndn-interest.h (module 'ndnSIM'): void ns3::ndn::InterestHeader::SetScope(int8_t scope) [member function]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005334 cls.add_method('SetScope',
5335 'void',
5336 [param('int8_t', 'scope')])
5337 return
5338
5339def register_Ns3NdnInterestHeaderException_methods(root_module, cls):
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08005340 ## ndn-interest.h (module 'ndnSIM'): ns3::ndn::InterestHeaderException::InterestHeaderException() [constructor]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005341 cls.add_constructor([])
Alexander Afanasyevbd9c18e2012-11-19 15:23:41 -08005342 ## ndn-interest.h (module 'ndnSIM'): ns3::ndn::InterestHeaderException::InterestHeaderException(ns3::ndn::InterestHeaderException const & arg0) [copy constructor]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005343 cls.add_constructor([param('ns3::ndn::InterestHeaderException const &', 'arg0')])
5344 return
5345
5346def register_Ns3NdnL3Protocol_methods(root_module, cls):
5347 ## ndn-l3-protocol.h (module 'ndnSIM'): ns3::ndn::L3Protocol::ETHERNET_FRAME_TYPE [variable]
5348 cls.add_static_attribute('ETHERNET_FRAME_TYPE', 'uint16_t const', is_const=True)
5349 ## ndn-l3-protocol.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::L3Protocol::GetTypeId() [member function]
5350 cls.add_method('GetTypeId',
5351 'ns3::TypeId',
5352 [],
5353 is_static=True)
5354 ## ndn-l3-protocol.h (module 'ndnSIM'): ns3::ndn::L3Protocol::L3Protocol() [constructor]
5355 cls.add_constructor([])
5356 ## ndn-l3-protocol.h (module 'ndnSIM'): uint32_t ns3::ndn::L3Protocol::AddFace(ns3::Ptr<ns3::ndn::Face> const & face) [member function]
5357 cls.add_method('AddFace',
5358 'uint32_t',
5359 [param('ns3::Ptr< ns3::ndn::Face > const &', 'face')],
5360 is_virtual=True)
5361 ## ndn-l3-protocol.h (module 'ndnSIM'): uint32_t ns3::ndn::L3Protocol::GetNFaces() const [member function]
5362 cls.add_method('GetNFaces',
5363 'uint32_t',
5364 [],
5365 is_const=True, is_virtual=True)
5366 ## ndn-l3-protocol.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::Face> ns3::ndn::L3Protocol::GetFace(uint32_t face) const [member function]
5367 cls.add_method('GetFace',
5368 'ns3::Ptr< ns3::ndn::Face >',
5369 [param('uint32_t', 'face')],
5370 is_const=True, is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005371 ## ndn-l3-protocol.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::Face> ns3::ndn::L3Protocol::GetFaceById(uint32_t face) const [member function]
5372 cls.add_method('GetFaceById',
5373 'ns3::Ptr< ns3::ndn::Face >',
5374 [param('uint32_t', 'face')],
5375 is_const=True, is_virtual=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005376 ## ndn-l3-protocol.h (module 'ndnSIM'): void ns3::ndn::L3Protocol::RemoveFace(ns3::Ptr<ns3::ndn::Face> face) [member function]
5377 cls.add_method('RemoveFace',
5378 'void',
5379 [param('ns3::Ptr< ns3::ndn::Face >', 'face')],
5380 is_virtual=True)
5381 ## ndn-l3-protocol.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::Face> ns3::ndn::L3Protocol::GetFaceByNetDevice(ns3::Ptr<ns3::NetDevice> netDevice) const [member function]
5382 cls.add_method('GetFaceByNetDevice',
5383 'ns3::Ptr< ns3::ndn::Face >',
5384 [param('ns3::Ptr< ns3::NetDevice >', 'netDevice')],
5385 is_const=True, is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005386 ## ndn-l3-protocol.h (module 'ndnSIM'): static uint64_t ns3::ndn::L3Protocol::GetInterestCounter() [member function]
5387 cls.add_method('GetInterestCounter',
5388 'uint64_t',
5389 [],
5390 is_static=True)
5391 ## ndn-l3-protocol.h (module 'ndnSIM'): static uint64_t ns3::ndn::L3Protocol::GetDataCounter() [member function]
5392 cls.add_method('GetDataCounter',
5393 'uint64_t',
5394 [],
5395 is_static=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005396 ## ndn-l3-protocol.h (module 'ndnSIM'): void ns3::ndn::L3Protocol::DoDispose() [member function]
5397 cls.add_method('DoDispose',
5398 'void',
5399 [],
5400 visibility='protected', is_virtual=True)
5401 ## ndn-l3-protocol.h (module 'ndnSIM'): void ns3::ndn::L3Protocol::NotifyNewAggregate() [member function]
5402 cls.add_method('NotifyNewAggregate',
5403 'void',
5404 [],
5405 visibility='protected', is_virtual=True)
5406 return
5407
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005408def register_Ns3NdnLimits_methods(root_module, cls):
5409 ## ndn-limits.h (module 'ndnSIM'): ns3::ndn::Limits::Limits(ns3::ndn::Limits const & arg0) [copy constructor]
5410 cls.add_constructor([param('ns3::ndn::Limits const &', 'arg0')])
5411 ## ndn-limits.h (module 'ndnSIM'): ns3::ndn::Limits::Limits() [constructor]
5412 cls.add_constructor([])
Alexander Afanasyev7e4235a2012-10-31 16:58:44 -07005413 ## ndn-limits.h (module 'ndnSIM'): void ns3::ndn::Limits::BorrowLimit() [member function]
5414 cls.add_method('BorrowLimit',
5415 'void',
5416 [],
5417 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyevf5c07742012-10-31 13:13:05 -07005418 ## ndn-limits.h (module 'ndnSIM'): double ns3::ndn::Limits::GetCurrentLimit() const [member function]
5419 cls.add_method('GetCurrentLimit',
5420 'double',
5421 [],
Alexander Afanasyev7e4235a2012-10-31 16:58:44 -07005422 is_pure_virtual=True, is_const=True, is_virtual=True)
Alexander Afanasyeva8f5d882012-11-09 14:22:48 -08005423 ## ndn-limits.h (module 'ndnSIM'): double ns3::ndn::Limits::GetCurrentLimitRate() const [member function]
5424 cls.add_method('GetCurrentLimitRate',
5425 'double',
5426 [],
5427 is_pure_virtual=True, is_const=True, is_virtual=True)
5428 ## ndn-limits.h (module 'ndnSIM'): double ns3::ndn::Limits::GetLinkDelay() const [member function]
5429 cls.add_method('GetLinkDelay',
5430 'double',
5431 [],
5432 is_const=True, is_virtual=True)
Alexander Afanasyev7e4235a2012-10-31 16:58:44 -07005433 ## ndn-limits.h (module 'ndnSIM'): double ns3::ndn::Limits::GetMaxDelay() const [member function]
5434 cls.add_method('GetMaxDelay',
5435 'double',
5436 [],
5437 is_const=True, is_virtual=True)
Alexander Afanasyeva8f5d882012-11-09 14:22:48 -08005438 ## ndn-limits.h (module 'ndnSIM'): double ns3::ndn::Limits::GetMaxLimit() const [member function]
5439 cls.add_method('GetMaxLimit',
5440 'double',
5441 [],
5442 is_pure_virtual=True, is_const=True, is_virtual=True)
Alexander Afanasyev7e4235a2012-10-31 16:58:44 -07005443 ## ndn-limits.h (module 'ndnSIM'): double ns3::ndn::Limits::GetMaxRate() const [member function]
5444 cls.add_method('GetMaxRate',
Alexander Afanasyeva28ec562012-10-25 14:07:32 -07005445 'double',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005446 [],
Alexander Afanasyevf5c07742012-10-31 13:13:05 -07005447 is_const=True, is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005448 ## ndn-limits.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::Limits::GetTypeId() [member function]
5449 cls.add_method('GetTypeId',
5450 'ns3::TypeId',
5451 [],
5452 is_static=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005453 ## ndn-limits.h (module 'ndnSIM'): bool ns3::ndn::Limits::IsBelowLimit() [member function]
5454 cls.add_method('IsBelowLimit',
5455 'bool',
Alexander Afanasyevf5c07742012-10-31 13:13:05 -07005456 [],
5457 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005458 ## ndn-limits.h (module 'ndnSIM'): bool ns3::ndn::Limits::IsEnabled() const [member function]
5459 cls.add_method('IsEnabled',
5460 'bool',
5461 [],
Alexander Afanasyevf5c07742012-10-31 13:13:05 -07005462 is_const=True, is_virtual=True)
Alexander Afanasyeva8f5d882012-11-09 14:22:48 -08005463 ## 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]
5464 cls.add_method('RegisterAvailableSlotCallback',
5465 'void',
5466 [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 -07005467 ## ndn-limits.h (module 'ndnSIM'): void ns3::ndn::Limits::ReturnLimit() [member function]
5468 cls.add_method('ReturnLimit',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005469 'void',
Alexander Afanasyev7e4235a2012-10-31 16:58:44 -07005470 [],
5471 is_pure_virtual=True, is_virtual=True)
5472 ## ndn-limits.h (module 'ndnSIM'): void ns3::ndn::Limits::SetLimits(double rate, double delay) [member function]
5473 cls.add_method('SetLimits',
5474 'void',
5475 [param('double', 'rate'), param('double', 'delay')],
Alexander Afanasyevf5c07742012-10-31 13:13:05 -07005476 is_virtual=True)
Alexander Afanasyeva8f5d882012-11-09 14:22:48 -08005477 ## ndn-limits.h (module 'ndnSIM'): void ns3::ndn::Limits::SetLinkDelay(double delay) [member function]
5478 cls.add_method('SetLinkDelay',
5479 'void',
5480 [param('double', 'delay')],
5481 is_virtual=True)
Alexander Afanasyeva28ec562012-10-25 14:07:32 -07005482 ## ndn-limits.h (module 'ndnSIM'): void ns3::ndn::Limits::UpdateCurrentLimit(double limit) [member function]
5483 cls.add_method('UpdateCurrentLimit',
5484 'void',
Alexander Afanasyev7e4235a2012-10-31 16:58:44 -07005485 [param('double', 'limit')],
5486 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyeva8f5d882012-11-09 14:22:48 -08005487 ## ndn-limits.h (module 'ndnSIM'): void ns3::ndn::Limits::FireAvailableSlotCallback() [member function]
5488 cls.add_method('FireAvailableSlotCallback',
5489 'void',
5490 [],
5491 visibility='protected')
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005492 return
5493
Alexander Afanasyev32c07562013-02-01 12:58:43 -08005494def register_Ns3NdnName_methods(root_module, cls):
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005495 cls.add_output_stream_operator()
5496 cls.add_binary_comparison_operator('<')
5497 cls.add_binary_comparison_operator('==')
Alexander Afanasyev32c07562013-02-01 12:58:43 -08005498 ## ndn-name-components.h (module 'ndnSIM'): ns3::ndn::Name::Name(ns3::ndn::Name const & arg0) [copy constructor]
5499 cls.add_constructor([param('ns3::ndn::Name const &', 'arg0')])
5500 ## ndn-name-components.h (module 'ndnSIM'): ns3::ndn::Name::Name() [constructor]
5501 cls.add_constructor([])
5502 ## ndn-name-components.h (module 'ndnSIM'): ns3::ndn::Name::Name(std::list<boost::reference_wrapper<std::string const>, std::allocator<boost::reference_wrapper<std::string const> > > const & components) [constructor]
5503 cls.add_constructor([param('std::list< boost::reference_wrapper< std::string const > > const &', 'components')])
5504 ## ndn-name-components.h (module 'ndnSIM'): ns3::ndn::Name::Name(std::string const & prefix) [constructor]
5505 cls.add_constructor([param('std::string const &', 'prefix')])
5506 ## ndn-name-components.h (module 'ndnSIM'): ns3::ndn::Name::Name(char const * prefix) [constructor]
5507 cls.add_constructor([param('char const *', 'prefix')])
5508 ## ndn-name-components.h (module 'ndnSIM'): uint32_t ns3::ndn::Name::Deserialize(ns3::Buffer::Iterator start) [member function]
5509 cls.add_method('Deserialize',
5510 'uint32_t',
5511 [param('ns3::Buffer::Iterator', 'start')])
5512 ## ndn-name-components.h (module 'ndnSIM'): std::list<std::string, std::allocator<std::string> > const & ns3::ndn::Name::GetComponents() const [member function]
5513 cls.add_method('GetComponents',
5514 'std::list< std::string > const &',
5515 [],
5516 is_const=True)
5517 ## ndn-name-components.h (module 'ndnSIM'): std::string ns3::ndn::Name::GetLastComponent() const [member function]
5518 cls.add_method('GetLastComponent',
5519 'std::string',
5520 [],
5521 is_const=True)
5522 ## ndn-name-components.h (module 'ndnSIM'): size_t ns3::ndn::Name::GetSerializedSize() const [member function]
5523 cls.add_method('GetSerializedSize',
5524 'size_t',
5525 [],
5526 is_const=True)
5527 ## ndn-name-components.h (module 'ndnSIM'): std::list<boost::reference_wrapper<std::string const>, std::allocator<boost::reference_wrapper<std::string const> > > ns3::ndn::Name::GetSubComponents(size_t num) const [member function]
5528 cls.add_method('GetSubComponents',
5529 'std::list< boost::reference_wrapper< std::string const > >',
5530 [param('size_t', 'num')],
5531 is_const=True)
5532 ## ndn-name-components.h (module 'ndnSIM'): void ns3::ndn::Name::Print(std::ostream & os) const [member function]
5533 cls.add_method('Print',
5534 'void',
5535 [param('std::ostream &', 'os')],
5536 is_const=True)
5537 ## ndn-name-components.h (module 'ndnSIM'): uint32_t ns3::ndn::Name::Serialize(ns3::Buffer::Iterator start) const [member function]
5538 cls.add_method('Serialize',
5539 'uint32_t',
5540 [param('ns3::Buffer::Iterator', 'start')],
5541 is_const=True)
5542 ## ndn-name-components.h (module 'ndnSIM'): std::_List_iterator<std::string> ns3::ndn::Name::begin() [member function]
5543 cls.add_method('begin',
5544 'std::_List_iterator< std::string >',
5545 [])
5546 ## ndn-name-components.h (module 'ndnSIM'): std::_List_const_iterator<std::string> ns3::ndn::Name::begin() const [member function]
5547 cls.add_method('begin',
5548 'std::_List_const_iterator< std::string >',
5549 [],
5550 is_const=True)
5551 ## ndn-name-components.h (module 'ndnSIM'): ns3::ndn::Name ns3::ndn::Name::cut(size_t minusComponents) const [member function]
5552 cls.add_method('cut',
5553 'ns3::ndn::Name',
5554 [param('size_t', 'minusComponents')],
5555 is_const=True)
5556 ## ndn-name-components.h (module 'ndnSIM'): std::_List_iterator<std::string> ns3::ndn::Name::end() [member function]
5557 cls.add_method('end',
5558 'std::_List_iterator< std::string >',
5559 [])
5560 ## ndn-name-components.h (module 'ndnSIM'): std::_List_const_iterator<std::string> ns3::ndn::Name::end() const [member function]
5561 cls.add_method('end',
5562 'std::_List_const_iterator< std::string >',
5563 [],
5564 is_const=True)
5565 ## ndn-name-components.h (module 'ndnSIM'): size_t ns3::ndn::Name::size() const [member function]
5566 cls.add_method('size',
5567 'size_t',
5568 [],
5569 is_const=True)
5570 return
5571
5572def register_Ns3NdnNameChecker_methods(root_module, cls):
5573 ## ndn-name-components.h (module 'ndnSIM'): ns3::ndn::NameChecker::NameChecker() [constructor]
5574 cls.add_constructor([])
5575 ## ndn-name-components.h (module 'ndnSIM'): ns3::ndn::NameChecker::NameChecker(ns3::ndn::NameChecker const & arg0) [copy constructor]
5576 cls.add_constructor([param('ns3::ndn::NameChecker const &', 'arg0')])
5577 return
5578
5579def register_Ns3NdnNameComponents_methods(root_module, cls):
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005580 ## ndn-name-components.h (module 'ndnSIM'): ns3::ndn::NameComponents::NameComponents(ns3::ndn::NameComponents const & arg0) [copy constructor]
5581 cls.add_constructor([param('ns3::ndn::NameComponents const &', 'arg0')])
5582 ## ndn-name-components.h (module 'ndnSIM'): ns3::ndn::NameComponents::NameComponents() [constructor]
5583 cls.add_constructor([])
Alexander Afanasyev32c07562013-02-01 12:58:43 -08005584 ## ndn-name-components.h (module 'ndnSIM'): ns3::ndn::NameComponents::NameComponents(std::list<boost::reference_wrapper<std::string const>, std::allocator<boost::reference_wrapper<std::string const> > > const & components) [constructor]
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005585 cls.add_constructor([param('std::list< boost::reference_wrapper< std::string const > > const &', 'components')])
5586 ## ndn-name-components.h (module 'ndnSIM'): ns3::ndn::NameComponents::NameComponents(std::string const & prefix) [constructor]
5587 cls.add_constructor([param('std::string const &', 'prefix')])
5588 ## ndn-name-components.h (module 'ndnSIM'): ns3::ndn::NameComponents::NameComponents(char const * prefix) [constructor]
5589 cls.add_constructor([param('char const *', 'prefix')])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005590 return
5591
5592def register_Ns3NdnNameComponentsChecker_methods(root_module, cls):
5593 ## ndn-name-components.h (module 'ndnSIM'): ns3::ndn::NameComponentsChecker::NameComponentsChecker() [constructor]
5594 cls.add_constructor([])
5595 ## ndn-name-components.h (module 'ndnSIM'): ns3::ndn::NameComponentsChecker::NameComponentsChecker(ns3::ndn::NameComponentsChecker const & arg0) [copy constructor]
5596 cls.add_constructor([param('ns3::ndn::NameComponentsChecker const &', 'arg0')])
5597 return
5598
5599def register_Ns3NdnNameComponentsValue_methods(root_module, cls):
5600 ## ndn-name-components.h (module 'ndnSIM'): ns3::ndn::NameComponentsValue::NameComponentsValue() [constructor]
5601 cls.add_constructor([])
5602 ## ndn-name-components.h (module 'ndnSIM'): ns3::ndn::NameComponentsValue::NameComponentsValue(ns3::ndn::NameComponentsValue const & arg0) [copy constructor]
5603 cls.add_constructor([param('ns3::ndn::NameComponentsValue const &', 'arg0')])
5604 ## ndn-name-components.h (module 'ndnSIM'): ns3::ndn::NameComponentsValue::NameComponentsValue(ns3::ndn::NameComponents const & value) [constructor]
5605 cls.add_constructor([param('ns3::ndn::NameComponents const &', 'value')])
5606 ## ndn-name-components.h (module 'ndnSIM'): ns3::Ptr<ns3::AttributeValue> ns3::ndn::NameComponentsValue::Copy() const [member function]
5607 cls.add_method('Copy',
5608 'ns3::Ptr< ns3::AttributeValue >',
5609 [],
5610 is_const=True, is_virtual=True)
5611 ## ndn-name-components.h (module 'ndnSIM'): bool ns3::ndn::NameComponentsValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
5612 cls.add_method('DeserializeFromString',
5613 'bool',
5614 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
5615 is_virtual=True)
5616 ## ndn-name-components.h (module 'ndnSIM'): ns3::ndn::NameComponents ns3::ndn::NameComponentsValue::Get() const [member function]
5617 cls.add_method('Get',
5618 'ns3::ndn::NameComponents',
5619 [],
5620 is_const=True)
5621 ## ndn-name-components.h (module 'ndnSIM'): std::string ns3::ndn::NameComponentsValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
5622 cls.add_method('SerializeToString',
5623 'std::string',
5624 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
5625 is_const=True, is_virtual=True)
5626 ## ndn-name-components.h (module 'ndnSIM'): void ns3::ndn::NameComponentsValue::Set(ns3::ndn::NameComponents const & value) [member function]
5627 cls.add_method('Set',
5628 'void',
5629 [param('ns3::ndn::NameComponents const &', 'value')])
5630 return
5631
Alexander Afanasyev32c07562013-02-01 12:58:43 -08005632def register_Ns3NdnNameValue_methods(root_module, cls):
5633 ## ndn-name-components.h (module 'ndnSIM'): ns3::ndn::NameValue::NameValue() [constructor]
5634 cls.add_constructor([])
5635 ## ndn-name-components.h (module 'ndnSIM'): ns3::ndn::NameValue::NameValue(ns3::ndn::NameValue const & arg0) [copy constructor]
5636 cls.add_constructor([param('ns3::ndn::NameValue const &', 'arg0')])
5637 ## ndn-name-components.h (module 'ndnSIM'): ns3::ndn::NameValue::NameValue(ns3::ndn::Name const & value) [constructor]
5638 cls.add_constructor([param('ns3::ndn::Name const &', 'value')])
5639 ## ndn-name-components.h (module 'ndnSIM'): ns3::Ptr<ns3::AttributeValue> ns3::ndn::NameValue::Copy() const [member function]
5640 cls.add_method('Copy',
5641 'ns3::Ptr< ns3::AttributeValue >',
5642 [],
5643 is_const=True, is_virtual=True)
5644 ## ndn-name-components.h (module 'ndnSIM'): bool ns3::ndn::NameValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
5645 cls.add_method('DeserializeFromString',
5646 'bool',
5647 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
5648 is_virtual=True)
5649 ## ndn-name-components.h (module 'ndnSIM'): ns3::ndn::Name ns3::ndn::NameValue::Get() const [member function]
5650 cls.add_method('Get',
5651 'ns3::ndn::Name',
5652 [],
5653 is_const=True)
5654 ## ndn-name-components.h (module 'ndnSIM'): std::string ns3::ndn::NameValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
5655 cls.add_method('SerializeToString',
5656 'std::string',
5657 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
5658 is_const=True, is_virtual=True)
5659 ## ndn-name-components.h (module 'ndnSIM'): void ns3::ndn::NameValue::Set(ns3::ndn::Name const & value) [member function]
5660 cls.add_method('Set',
5661 'void',
5662 [param('ns3::ndn::Name const &', 'value')])
5663 return
5664
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005665def register_Ns3NdnNetDeviceFace_methods(root_module, cls):
5666 ## ndn-net-device-face.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::NetDeviceFace::GetTypeId() [member function]
5667 cls.add_method('GetTypeId',
5668 'ns3::TypeId',
5669 [],
5670 is_static=True)
5671 ## ndn-net-device-face.h (module 'ndnSIM'): ns3::ndn::NetDeviceFace::NetDeviceFace(ns3::Ptr<ns3::Node> node, ns3::Ptr<ns3::NetDevice> const & netDevice) [constructor]
5672 cls.add_constructor([param('ns3::Ptr< ns3::Node >', 'node'), param('ns3::Ptr< ns3::NetDevice > const &', 'netDevice')])
5673 ## 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]
5674 cls.add_method('RegisterProtocolHandler',
5675 'void',
5676 [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')],
5677 is_virtual=True)
5678 ## ndn-net-device-face.h (module 'ndnSIM'): std::ostream & ns3::ndn::NetDeviceFace::Print(std::ostream & os) const [member function]
5679 cls.add_method('Print',
5680 'std::ostream &',
5681 [param('std::ostream &', 'os')],
5682 is_const=True, is_virtual=True)
5683 ## ndn-net-device-face.h (module 'ndnSIM'): ns3::Ptr<ns3::NetDevice> ns3::ndn::NetDeviceFace::GetNetDevice() const [member function]
5684 cls.add_method('GetNetDevice',
5685 'ns3::Ptr< ns3::NetDevice >',
5686 [],
5687 is_const=True)
5688 ## 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 -07005689 cls.add_method('SendImpl',
Alexander Afanasyev1c0248b2012-07-24 15:59:50 -07005690 'bool',
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07005691 [param('ns3::Ptr< ns3::Packet >', 'p')],
5692 visibility='protected', is_virtual=True)
5693 return
5694
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005695def register_Ns3NdnPit_methods(root_module, cls):
5696 cls.add_output_stream_operator()
5697 ## ndn-pit.h (module 'ndnSIM'): ns3::ndn::Pit::Pit(ns3::ndn::Pit const & arg0) [copy constructor]
5698 cls.add_constructor([param('ns3::ndn::Pit const &', 'arg0')])
5699 ## ndn-pit.h (module 'ndnSIM'): ns3::ndn::Pit::Pit() [constructor]
5700 cls.add_constructor([])
5701 ## ndn-pit.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::pit::Entry> ns3::ndn::Pit::Begin() [member function]
5702 cls.add_method('Begin',
5703 'ns3::Ptr< ns3::ndn::pit::Entry >',
5704 [],
5705 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07005706 ## 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 -07005707 cls.add_method('Create',
5708 'ns3::Ptr< ns3::ndn::pit::Entry >',
5709 [param('ns3::Ptr< ns3::ndn::InterestHeader const >', 'header')],
5710 is_pure_virtual=True, is_virtual=True)
5711 ## ndn-pit.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::pit::Entry> ns3::ndn::Pit::End() [member function]
5712 cls.add_method('End',
5713 'ns3::Ptr< ns3::ndn::pit::Entry >',
5714 [],
5715 is_pure_virtual=True, is_virtual=True)
5716 ## ndn-pit.h (module 'ndnSIM'): static ns3::Ptr<ns3::ndn::Pit> ns3::ndn::Pit::GetPit(ns3::Ptr<ns3::Object> node) [member function]
5717 cls.add_method('GetPit',
5718 'ns3::Ptr< ns3::ndn::Pit >',
5719 [param('ns3::Ptr< ns3::Object >', 'node')],
5720 is_static=True)
5721 ## ndn-pit.h (module 'ndnSIM'): uint32_t ns3::ndn::Pit::GetSize() const [member function]
5722 cls.add_method('GetSize',
5723 'uint32_t',
5724 [],
5725 is_pure_virtual=True, is_const=True, is_virtual=True)
5726 ## ndn-pit.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::Pit::GetTypeId() [member function]
5727 cls.add_method('GetTypeId',
5728 'ns3::TypeId',
5729 [],
5730 is_static=True)
5731 ## ndn-pit.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::pit::Entry> ns3::ndn::Pit::Lookup(ns3::ndn::ContentObjectHeader const & header) [member function]
5732 cls.add_method('Lookup',
5733 'ns3::Ptr< ns3::ndn::pit::Entry >',
5734 [param('ns3::ndn::ContentObjectHeader const &', 'header')],
5735 is_pure_virtual=True, is_virtual=True)
5736 ## ndn-pit.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::pit::Entry> ns3::ndn::Pit::Lookup(ns3::ndn::InterestHeader const & header) [member function]
5737 cls.add_method('Lookup',
5738 'ns3::Ptr< ns3::ndn::pit::Entry >',
5739 [param('ns3::ndn::InterestHeader const &', 'header')],
5740 is_pure_virtual=True, is_virtual=True)
5741 ## ndn-pit.h (module 'ndnSIM'): void ns3::ndn::Pit::MarkErased(ns3::Ptr<ns3::ndn::pit::Entry> entry) [member function]
5742 cls.add_method('MarkErased',
5743 'void',
5744 [param('ns3::Ptr< ns3::ndn::pit::Entry >', 'entry')],
5745 is_pure_virtual=True, is_virtual=True)
5746 ## ndn-pit.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::pit::Entry> ns3::ndn::Pit::Next(ns3::Ptr<ns3::ndn::pit::Entry> arg0) [member function]
5747 cls.add_method('Next',
5748 'ns3::Ptr< ns3::ndn::pit::Entry >',
5749 [param('ns3::Ptr< ns3::ndn::pit::Entry >', 'arg0')],
5750 is_pure_virtual=True, is_virtual=True)
5751 ## ndn-pit.h (module 'ndnSIM'): void ns3::ndn::Pit::Print(std::ostream & os) const [member function]
5752 cls.add_method('Print',
5753 'void',
5754 [param('std::ostream &', 'os')],
5755 is_pure_virtual=True, is_const=True, is_virtual=True)
5756 return
5757
5758def register_Ns3NdnStackHelper_methods(root_module, cls):
5759 ## ndn-stack-helper.h (module 'ndnSIM'): ns3::ndn::StackHelper::StackHelper() [constructor]
5760 cls.add_constructor([])
5761 ## 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]
5762 cls.add_method('SetStackAttributes',
5763 'void',
5764 [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='""')])
5765 ## 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]
5766 cls.add_method('SetForwardingStrategy',
5767 'void',
5768 [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='""')])
5769 ## 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]
5770 cls.add_method('SetContentStore',
5771 'void',
5772 [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='""')])
5773 ## 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]
5774 cls.add_method('SetPit',
5775 'void',
5776 [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='""')])
5777 ## 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]
5778 cls.add_method('SetFib',
5779 'void',
5780 [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='""')])
5781 ## 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]
5782 cls.add_method('EnableLimits',
5783 'void',
5784 [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 -08005785 ## 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 -07005786 cls.add_method('Install',
5787 'ns3::Ptr< ns3::ndn::FaceContainer >',
Alexander Afanasyev67f4a4a2012-11-24 17:18:17 -08005788 [param('std::string const &', 'nodeName')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005789 is_const=True)
5790 ## ndn-stack-helper.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::FaceContainer> ns3::ndn::StackHelper::Install(ns3::Ptr<ns3::Node> node) const [member function]
5791 cls.add_method('Install',
5792 'ns3::Ptr< ns3::ndn::FaceContainer >',
5793 [param('ns3::Ptr< ns3::Node >', 'node')],
5794 is_const=True)
Alexander Afanasyev67f4a4a2012-11-24 17:18:17 -08005795 ## 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 -07005796 cls.add_method('Install',
5797 'ns3::Ptr< ns3::ndn::FaceContainer >',
Alexander Afanasyev67f4a4a2012-11-24 17:18:17 -08005798 [param('ns3::NodeContainer const &', 'c')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005799 is_const=True)
5800 ## ndn-stack-helper.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::FaceContainer> ns3::ndn::StackHelper::InstallAll() const [member function]
5801 cls.add_method('InstallAll',
5802 'ns3::Ptr< ns3::ndn::FaceContainer >',
5803 [],
5804 is_const=True)
Alexander Afanasyev67f4a4a2012-11-24 17:18:17 -08005805 ## 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 -07005806 cls.add_method('AddRoute',
5807 'void',
Alexander Afanasyev67f4a4a2012-11-24 17:18:17 -08005808 [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 -07005809 is_static=True)
Alexander Afanasyev67f4a4a2012-11-24 17:18:17 -08005810 ## 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 -07005811 cls.add_method('AddRoute',
5812 'void',
Alexander Afanasyev67f4a4a2012-11-24 17:18:17 -08005813 [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 -07005814 is_static=True)
Alexander Afanasyev67f4a4a2012-11-24 17:18:17 -08005815 ## 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 -07005816 cls.add_method('AddRoute',
5817 'void',
Alexander Afanasyev67f4a4a2012-11-24 17:18:17 -08005818 [param('ns3::Ptr< ns3::Node >', 'node'), param('std::string const &', 'prefix'), param('ns3::Ptr< ns3::ndn::Face >', 'face'), param('int32_t', 'metric')],
5819 is_static=True)
5820 ## 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]
5821 cls.add_method('AddRoute',
5822 'void',
5823 [param('ns3::Ptr< ns3::Node >', 'node'), param('std::string const &', 'prefix'), param('ns3::Ptr< ns3::Node >', 'otherNode'), param('int32_t', 'metric')],
5824 is_static=True)
5825 ## 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]
5826 cls.add_method('AddRoute',
5827 'void',
5828 [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 -07005829 is_static=True)
5830 ## ndn-stack-helper.h (module 'ndnSIM'): void ns3::ndn::StackHelper::SetDefaultRoutes(bool needSet) [member function]
5831 cls.add_method('SetDefaultRoutes',
5832 'void',
5833 [param('bool', 'needSet')])
5834 return
5835
5836def register_Ns3NdnUnknownHeaderException_methods(root_module, cls):
5837 ## ndn-header-helper.h (module 'ndnSIM'): ns3::ndn::UnknownHeaderException::UnknownHeaderException() [constructor]
5838 cls.add_constructor([])
5839 ## ndn-header-helper.h (module 'ndnSIM'): ns3::ndn::UnknownHeaderException::UnknownHeaderException(ns3::ndn::UnknownHeaderException const & arg0) [copy constructor]
5840 cls.add_constructor([param('ns3::ndn::UnknownHeaderException const &', 'arg0')])
5841 return
5842
5843def register_Ns3NdnAppFace_methods(root_module, cls):
5844 ## ndn-app-face.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::AppFace::GetTypeId() [member function]
5845 cls.add_method('GetTypeId',
5846 'ns3::TypeId',
5847 [],
5848 is_static=True)
5849 ## ndn-app-face.h (module 'ndnSIM'): ns3::ndn::AppFace::AppFace(ns3::Ptr<ns3::ndn::App> app) [constructor]
5850 cls.add_constructor([param('ns3::Ptr< ns3::ndn::App >', 'app')])
5851 ## 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]
5852 cls.add_method('RegisterProtocolHandler',
5853 'void',
5854 [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')],
5855 is_virtual=True)
5856 ## ndn-app-face.h (module 'ndnSIM'): std::ostream & ns3::ndn::AppFace::Print(std::ostream & os) const [member function]
5857 cls.add_method('Print',
5858 'std::ostream &',
5859 [param('std::ostream &', 'os')],
5860 is_const=True, is_virtual=True)
5861 ## ndn-app-face.h (module 'ndnSIM'): bool ns3::ndn::AppFace::SendImpl(ns3::Ptr<ns3::Packet> p) [member function]
5862 cls.add_method('SendImpl',
5863 'bool',
5864 [param('ns3::Ptr< ns3::Packet >', 'p')],
5865 visibility='protected', is_virtual=True)
5866 return
5867
5868def register_Ns3NdnCsEntry_methods(root_module, cls):
5869 ## ndn-content-store.h (module 'ndnSIM'): ns3::ndn::cs::Entry::Entry(ns3::ndn::cs::Entry const & arg0) [copy constructor]
5870 cls.add_constructor([param('ns3::ndn::cs::Entry const &', 'arg0')])
5871 ## 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]
5872 cls.add_constructor([param('ns3::Ptr< ns3::ndn::ContentObjectHeader const >', 'header'), param('ns3::Ptr< ns3::Packet const >', 'packet')])
5873 ## ndn-content-store.h (module 'ndnSIM'): ns3::Ptr<ns3::Packet> ns3::ndn::cs::Entry::GetFullyFormedNdnPacket() const [member function]
5874 cls.add_method('GetFullyFormedNdnPacket',
5875 'ns3::Ptr< ns3::Packet >',
5876 [],
5877 is_const=True)
5878 ## ndn-content-store.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::ContentObjectHeader const> ns3::ndn::cs::Entry::GetHeader() const [member function]
5879 cls.add_method('GetHeader',
5880 'ns3::Ptr< ns3::ndn::ContentObjectHeader const >',
5881 [],
5882 is_const=True)
5883 ## ndn-content-store.h (module 'ndnSIM'): ns3::ndn::NameComponents const & ns3::ndn::cs::Entry::GetName() const [member function]
5884 cls.add_method('GetName',
5885 'ns3::ndn::NameComponents const &',
5886 [],
5887 is_const=True)
5888 ## ndn-content-store.h (module 'ndnSIM'): ns3::Ptr<const ns3::Packet> ns3::ndn::cs::Entry::GetPacket() const [member function]
5889 cls.add_method('GetPacket',
5890 'ns3::Ptr< ns3::Packet const >',
5891 [],
5892 is_const=True)
5893 return
5894
5895def register_Ns3NdnFibEntry_methods(root_module, cls):
5896 cls.add_output_stream_operator()
5897 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::Entry::Entry(ns3::ndn::fib::Entry const & arg0) [copy constructor]
5898 cls.add_constructor([param('ns3::ndn::fib::Entry const &', 'arg0')])
5899 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::Entry::Entry(ns3::Ptr<ns3::ndn::NameComponents const> const & prefix) [constructor]
5900 cls.add_constructor([param('ns3::Ptr< ns3::ndn::NameComponents const > const &', 'prefix')])
5901 ## ndn-fib-entry.h (module 'ndnSIM'): void ns3::ndn::fib::Entry::AddOrUpdateRoutingMetric(ns3::Ptr<ns3::ndn::Face> face, int32_t metric) [member function]
5902 cls.add_method('AddOrUpdateRoutingMetric',
5903 'void',
5904 [param('ns3::Ptr< ns3::ndn::Face >', 'face'), param('int32_t', 'metric')])
5905 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::FaceMetric const & ns3::ndn::fib::Entry::FindBestCandidate(uint32_t skip=0) const [member function]
5906 cls.add_method('FindBestCandidate',
5907 'ns3::ndn::fib::FaceMetric const &',
5908 [param('uint32_t', 'skip', default_value='0')],
5909 is_const=True)
5910 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::NameComponents const & ns3::ndn::fib::Entry::GetPrefix() const [member function]
5911 cls.add_method('GetPrefix',
5912 'ns3::ndn::NameComponents const &',
5913 [],
5914 is_const=True)
5915 ## ndn-fib-entry.h (module 'ndnSIM'): void ns3::ndn::fib::Entry::Invalidate() [member function]
5916 cls.add_method('Invalidate',
5917 'void',
5918 [])
5919 ## ndn-fib-entry.h (module 'ndnSIM'): void ns3::ndn::fib::Entry::RemoveFace(ns3::Ptr<ns3::ndn::Face> const & face) [member function]
5920 cls.add_method('RemoveFace',
5921 'void',
5922 [param('ns3::Ptr< ns3::ndn::Face > const &', 'face')])
Alexander Afanasyev32c07562013-02-01 12:58:43 -08005923 ## ndn-fib-entry.h (module 'ndnSIM'): void ns3::ndn::fib::Entry::SetRealDelayToProducer(ns3::Ptr<ns3::ndn::Face> face, ns3::Time delay) [member function]
5924 cls.add_method('SetRealDelayToProducer',
5925 'void',
5926 [param('ns3::Ptr< ns3::ndn::Face >', 'face'), param('ns3::Time', 'delay')])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005927 ## ndn-fib-entry.h (module 'ndnSIM'): void ns3::ndn::fib::Entry::UpdateFaceRtt(ns3::Ptr<ns3::ndn::Face> face, ns3::Time const & sample) [member function]
5928 cls.add_method('UpdateFaceRtt',
5929 'void',
5930 [param('ns3::Ptr< ns3::ndn::Face >', 'face'), param('ns3::Time const &', 'sample')])
5931 ## 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]
5932 cls.add_method('UpdateStatus',
5933 'void',
5934 [param('ns3::Ptr< ns3::ndn::Face >', 'face'), param('ns3::ndn::fib::FaceMetric::Status', 'status')])
5935 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::Entry::m_faces [variable]
5936 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)
5937 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::Entry::m_needsProbing [variable]
5938 cls.add_instance_attribute('m_needsProbing', 'bool', is_const=False)
5939 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::Entry::m_prefix [variable]
5940 cls.add_instance_attribute('m_prefix', 'ns3::Ptr< ns3::ndn::NameComponents const >', is_const=False)
5941 return
5942
5943def register_Ns3NdnFibEntryNoFaces_methods(root_module, cls):
5944 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::Entry::NoFaces::NoFaces() [constructor]
5945 cls.add_constructor([])
5946 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::Entry::NoFaces::NoFaces(ns3::ndn::fib::Entry::NoFaces const & arg0) [copy constructor]
5947 cls.add_constructor([param('ns3::ndn::fib::Entry::NoFaces const &', 'arg0')])
5948 return
5949
5950def register_Ns3NdnFibFaceMetric_methods(root_module, cls):
5951 cls.add_output_stream_operator()
5952 cls.add_binary_comparison_operator('<')
5953 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::FaceMetric::FaceMetric(ns3::ndn::fib::FaceMetric const & arg0) [copy constructor]
5954 cls.add_constructor([param('ns3::ndn::fib::FaceMetric const &', 'arg0')])
5955 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::FaceMetric::FaceMetric(ns3::Ptr<ns3::ndn::Face> face, int32_t cost) [constructor]
5956 cls.add_constructor([param('ns3::Ptr< ns3::ndn::Face >', 'face'), param('int32_t', 'cost')])
5957 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::Face> ns3::ndn::fib::FaceMetric::GetFace() const [member function]
5958 cls.add_method('GetFace',
5959 'ns3::Ptr< ns3::ndn::Face >',
5960 [],
5961 is_const=True)
5962 ## ndn-fib-entry.h (module 'ndnSIM'): void ns3::ndn::fib::FaceMetric::UpdateRtt(ns3::Time const & rttSample) [member function]
5963 cls.add_method('UpdateRtt',
5964 'void',
5965 [param('ns3::Time const &', 'rttSample')])
5966 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::FaceMetric::m_face [variable]
5967 cls.add_instance_attribute('m_face', 'ns3::Ptr< ns3::ndn::Face >', is_const=False)
Alexander Afanasyev32c07562013-02-01 12:58:43 -08005968 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::FaceMetric::m_realDelay [variable]
5969 cls.add_instance_attribute('m_realDelay', 'ns3::Time', is_const=False)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005970 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::FaceMetric::m_routingCost [variable]
5971 cls.add_instance_attribute('m_routingCost', 'int32_t', is_const=False)
5972 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::FaceMetric::m_rttVar [variable]
5973 cls.add_instance_attribute('m_rttVar', 'ns3::Time', is_const=False)
5974 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::FaceMetric::m_sRtt [variable]
5975 cls.add_instance_attribute('m_sRtt', 'ns3::Time', is_const=False)
5976 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::FaceMetric::m_status [variable]
5977 cls.add_instance_attribute('m_status', 'ns3::ndn::fib::FaceMetric::Status', is_const=False)
5978 return
5979
5980def register_Ns3NdnFibFaceMetricContainer_methods(root_module, cls):
5981 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::FaceMetricContainer::FaceMetricContainer() [constructor]
5982 cls.add_constructor([])
5983 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::FaceMetricContainer::FaceMetricContainer(ns3::ndn::fib::FaceMetricContainer const & arg0) [copy constructor]
5984 cls.add_constructor([param('ns3::ndn::fib::FaceMetricContainer const &', 'arg0')])
5985 return
5986
5987def register_Ns3NdnFibI_face_methods(root_module, cls):
5988 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::i_face::i_face() [constructor]
5989 cls.add_constructor([])
5990 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::i_face::i_face(ns3::ndn::fib::i_face const & arg0) [copy constructor]
5991 cls.add_constructor([param('ns3::ndn::fib::i_face const &', 'arg0')])
5992 return
5993
5994def register_Ns3NdnFibI_metric_methods(root_module, cls):
5995 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::i_metric::i_metric() [constructor]
5996 cls.add_constructor([])
5997 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::i_metric::i_metric(ns3::ndn::fib::i_metric const & arg0) [copy constructor]
5998 cls.add_constructor([param('ns3::ndn::fib::i_metric const &', 'arg0')])
5999 return
6000
6001def register_Ns3NdnFibI_nth_methods(root_module, cls):
6002 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::i_nth::i_nth() [constructor]
6003 cls.add_constructor([])
6004 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::i_nth::i_nth(ns3::ndn::fib::i_nth const & arg0) [copy constructor]
6005 cls.add_constructor([param('ns3::ndn::fib::i_nth const &', 'arg0')])
6006 return
6007
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07006008def register_Ns3NdnFwTag_methods(root_module, cls):
6009 ## ndn-fw-tag.h (module 'ndnSIM'): ns3::ndn::fw::Tag::Tag() [constructor]
6010 cls.add_constructor([])
6011 ## ndn-fw-tag.h (module 'ndnSIM'): ns3::ndn::fw::Tag::Tag(ns3::ndn::fw::Tag const & arg0) [copy constructor]
6012 cls.add_constructor([param('ns3::ndn::fw::Tag const &', 'arg0')])
6013 return
6014
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006015def register_Ns3NdnPitEntry_methods(root_module, cls):
6016 cls.add_output_stream_operator()
6017 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::ndn::pit::Entry::Entry(ns3::ndn::pit::Entry const & arg0) [copy constructor]
6018 cls.add_constructor([param('ns3::ndn::pit::Entry const &', 'arg0')])
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07006019 ## 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 -07006020 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 -07006021 ## ndn-pit-entry.h (module 'ndnSIM'): void ns3::ndn::pit::Entry::AddFwTag(boost::shared_ptr<ns3::ndn::fw::Tag> tag) [member function]
6022 cls.add_method('AddFwTag',
6023 'void',
6024 [param('boost::shared_ptr< ns3::ndn::fw::Tag >', 'tag')])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006025 ## 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]
6026 cls.add_method('AddIncoming',
6027 'std::_Rb_tree_const_iterator< ns3::ndn::pit::IncomingFace >',
6028 [param('ns3::Ptr< ns3::ndn::Face >', 'face')],
6029 is_virtual=True)
Alexander Afanasyevc202fd92012-09-03 21:46:00 -07006030 ## 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 -07006031 cls.add_method('AddOutgoing',
Alexander Afanasyevc202fd92012-09-03 21:46:00 -07006032 'std::_Rb_tree_const_iterator< ns3::ndn::pit::OutgoingFace >',
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006033 [param('ns3::Ptr< ns3::ndn::Face >', 'face')],
6034 is_virtual=True)
6035 ## ndn-pit-entry.h (module 'ndnSIM'): void ns3::ndn::pit::Entry::AddSeenNonce(uint32_t nonce) [member function]
6036 cls.add_method('AddSeenNonce',
6037 'void',
6038 [param('uint32_t', 'nonce')],
6039 is_virtual=True)
6040 ## ndn-pit-entry.h (module 'ndnSIM'): bool ns3::ndn::pit::Entry::AreAllOutgoingInVain() const [member function]
6041 cls.add_method('AreAllOutgoingInVain',
6042 'bool',
6043 [],
6044 is_const=True)
6045 ## ndn-pit-entry.h (module 'ndnSIM'): bool ns3::ndn::pit::Entry::AreTherePromisingOutgoingFacesExcept(ns3::Ptr<ns3::ndn::Face> face) const [member function]
6046 cls.add_method('AreTherePromisingOutgoingFacesExcept',
6047 'bool',
6048 [param('ns3::Ptr< ns3::ndn::Face >', 'face')],
6049 is_const=True)
6050 ## ndn-pit-entry.h (module 'ndnSIM'): void ns3::ndn::pit::Entry::ClearIncoming() [member function]
6051 cls.add_method('ClearIncoming',
6052 'void',
6053 [],
6054 is_virtual=True)
6055 ## ndn-pit-entry.h (module 'ndnSIM'): void ns3::ndn::pit::Entry::ClearOutgoing() [member function]
6056 cls.add_method('ClearOutgoing',
6057 'void',
6058 [],
6059 is_virtual=True)
6060 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::Time const & ns3::ndn::pit::Entry::GetExpireTime() const [member function]
6061 cls.add_method('GetExpireTime',
6062 'ns3::Time const &',
6063 [],
6064 is_const=True)
6065 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::fib::Entry> ns3::ndn::pit::Entry::GetFibEntry() [member function]
6066 cls.add_method('GetFibEntry',
6067 'ns3::Ptr< ns3::ndn::fib::Entry >',
6068 [])
6069 ## 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]
6070 cls.add_method('GetIncoming',
6071 'std::set< ns3::ndn::pit::IncomingFace > const &',
6072 [],
6073 is_const=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07006074 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::InterestHeader const> ns3::ndn::pit::Entry::GetInterest() const [member function]
6075 cls.add_method('GetInterest',
6076 'ns3::Ptr< ns3::ndn::InterestHeader const >',
6077 [],
6078 is_const=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006079 ## ndn-pit-entry.h (module 'ndnSIM'): uint32_t ns3::ndn::pit::Entry::GetMaxRetxCount() const [member function]
6080 cls.add_method('GetMaxRetxCount',
6081 'uint32_t',
6082 [],
6083 is_const=True)
Alexander Afanasyevc202fd92012-09-03 21:46:00 -07006084 ## 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 -07006085 cls.add_method('GetOutgoing',
Alexander Afanasyevc202fd92012-09-03 21:46:00 -07006086 'std::set< ns3::ndn::pit::OutgoingFace > const &',
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006087 [],
6088 is_const=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07006089 ## ndn-pit-entry.h (module 'ndnSIM'): uint32_t ns3::ndn::pit::Entry::GetOutgoingCount() const [member function]
6090 cls.add_method('GetOutgoingCount',
6091 'uint32_t',
6092 [],
6093 is_const=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006094 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::ndn::NameComponents const & ns3::ndn::pit::Entry::GetPrefix() const [member function]
6095 cls.add_method('GetPrefix',
6096 'ns3::ndn::NameComponents const &',
6097 [],
6098 is_const=True)
6099 ## ndn-pit-entry.h (module 'ndnSIM'): void ns3::ndn::pit::Entry::IncreaseAllowedRetxCount() [member function]
6100 cls.add_method('IncreaseAllowedRetxCount',
6101 'void',
6102 [],
6103 is_virtual=True)
6104 ## ndn-pit-entry.h (module 'ndnSIM'): bool ns3::ndn::pit::Entry::IsNonceSeen(uint32_t nonce) const [member function]
6105 cls.add_method('IsNonceSeen',
6106 'bool',
6107 [param('uint32_t', 'nonce')],
6108 is_const=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07006109 ## ndn-pit-entry.h (module 'ndnSIM'): void ns3::ndn::pit::Entry::OffsetLifetime(ns3::Time const & offsetTime) [member function]
6110 cls.add_method('OffsetLifetime',
6111 'void',
6112 [param('ns3::Time const &', 'offsetTime')],
6113 is_virtual=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006114 ## ndn-pit-entry.h (module 'ndnSIM'): void ns3::ndn::pit::Entry::RemoveAllReferencesToFace(ns3::Ptr<ns3::ndn::Face> face) [member function]
6115 cls.add_method('RemoveAllReferencesToFace',
6116 'void',
6117 [param('ns3::Ptr< ns3::ndn::Face >', 'face')],
6118 is_virtual=True)
6119 ## ndn-pit-entry.h (module 'ndnSIM'): void ns3::ndn::pit::Entry::RemoveIncoming(ns3::Ptr<ns3::ndn::Face> face) [member function]
6120 cls.add_method('RemoveIncoming',
6121 'void',
6122 [param('ns3::Ptr< ns3::ndn::Face >', 'face')],
6123 is_virtual=True)
6124 ## ndn-pit-entry.h (module 'ndnSIM'): void ns3::ndn::pit::Entry::SetWaitingInVain(ns3::Ptr<ns3::ndn::Face> face) [member function]
6125 cls.add_method('SetWaitingInVain',
6126 'void',
6127 [param('ns3::Ptr< ns3::ndn::Face >', 'face')],
6128 is_virtual=True)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07006129 ## 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 -07006130 cls.add_method('UpdateLifetime',
6131 'void',
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07006132 [param('ns3::Time const &', 'lifetime')],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006133 is_virtual=True)
6134 return
6135
6136def register_Ns3NdnPitIncomingFace_methods(root_module, cls):
6137 cls.add_binary_comparison_operator('==')
6138 cls.add_binary_comparison_operator('<')
6139 ## ndn-pit-entry-incoming-face.h (module 'ndnSIM'): ns3::ndn::pit::IncomingFace::IncomingFace(ns3::ndn::pit::IncomingFace const & arg0) [copy constructor]
6140 cls.add_constructor([param('ns3::ndn::pit::IncomingFace const &', 'arg0')])
6141 ## ndn-pit-entry-incoming-face.h (module 'ndnSIM'): ns3::ndn::pit::IncomingFace::IncomingFace(ns3::Ptr<ns3::ndn::Face> face) [constructor]
6142 cls.add_constructor([param('ns3::Ptr< ns3::ndn::Face >', 'face')])
6143 ## ndn-pit-entry-incoming-face.h (module 'ndnSIM'): ns3::ndn::pit::IncomingFace::IncomingFace() [constructor]
6144 cls.add_constructor([])
6145 ## ndn-pit-entry-incoming-face.h (module 'ndnSIM'): ns3::ndn::pit::IncomingFace::m_arrivalTime [variable]
6146 cls.add_instance_attribute('m_arrivalTime', 'ns3::Time', is_const=False)
6147 ## ndn-pit-entry-incoming-face.h (module 'ndnSIM'): ns3::ndn::pit::IncomingFace::m_face [variable]
6148 cls.add_instance_attribute('m_face', 'ns3::Ptr< ns3::ndn::Face >', is_const=False)
6149 return
6150
6151def register_Ns3NdnPitOutgoingFace_methods(root_module, cls):
6152 cls.add_binary_comparison_operator('==')
6153 cls.add_binary_comparison_operator('<')
6154 ## ndn-pit-entry-outgoing-face.h (module 'ndnSIM'): ns3::ndn::pit::OutgoingFace::OutgoingFace(ns3::ndn::pit::OutgoingFace const & arg0) [copy constructor]
6155 cls.add_constructor([param('ns3::ndn::pit::OutgoingFace const &', 'arg0')])
6156 ## ndn-pit-entry-outgoing-face.h (module 'ndnSIM'): ns3::ndn::pit::OutgoingFace::OutgoingFace(ns3::Ptr<ns3::ndn::Face> face) [constructor]
6157 cls.add_constructor([param('ns3::Ptr< ns3::ndn::Face >', 'face')])
Alexander Afanasyev29c19b92012-09-03 23:46:41 -07006158 ## ndn-pit-entry-outgoing-face.h (module 'ndnSIM'): ns3::ndn::pit::OutgoingFace::OutgoingFace() [constructor]
6159 cls.add_constructor([])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006160 ## ndn-pit-entry-outgoing-face.h (module 'ndnSIM'): void ns3::ndn::pit::OutgoingFace::UpdateOnRetransmit() [member function]
6161 cls.add_method('UpdateOnRetransmit',
6162 'void',
6163 [])
6164 ## ndn-pit-entry-outgoing-face.h (module 'ndnSIM'): ns3::ndn::pit::OutgoingFace::m_face [variable]
6165 cls.add_instance_attribute('m_face', 'ns3::Ptr< ns3::ndn::Face >', is_const=False)
6166 ## ndn-pit-entry-outgoing-face.h (module 'ndnSIM'): ns3::ndn::pit::OutgoingFace::m_retxCount [variable]
6167 cls.add_instance_attribute('m_retxCount', 'uint32_t', is_const=False)
6168 ## ndn-pit-entry-outgoing-face.h (module 'ndnSIM'): ns3::ndn::pit::OutgoingFace::m_sendTime [variable]
6169 cls.add_instance_attribute('m_sendTime', 'ns3::Time', is_const=False)
6170 ## ndn-pit-entry-outgoing-face.h (module 'ndnSIM'): ns3::ndn::pit::OutgoingFace::m_waitingInVain [variable]
6171 cls.add_instance_attribute('m_waitingInVain', 'bool', is_const=False)
6172 return
6173
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006174def register_Ns3NdnPitI_face_methods(root_module, cls):
6175 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::ndn::pit::i_face::i_face() [constructor]
6176 cls.add_constructor([])
6177 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::ndn::pit::i_face::i_face(ns3::ndn::pit::i_face const & arg0) [copy constructor]
6178 cls.add_constructor([param('ns3::ndn::pit::i_face const &', 'arg0')])
6179 return
6180
6181def register_Ns3NdnPitI_retx_methods(root_module, cls):
6182 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::ndn::pit::i_retx::i_retx() [constructor]
6183 cls.add_constructor([])
6184 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::ndn::pit::i_retx::i_retx(ns3::ndn::pit::i_retx const & arg0) [copy constructor]
6185 cls.add_constructor([param('ns3::ndn::pit::i_retx const &', 'arg0')])
6186 return
6187
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08006188def register_functions(root_module):
6189 module = root_module
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08006190 register_functions_ns3_FatalImpl(module.get_submodule('FatalImpl'), root_module)
6191 register_functions_ns3_internal(module.get_submodule('internal'), root_module)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006192 register_functions_ns3_ndn(module.get_submodule('ndn'), root_module)
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08006193 return
6194
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08006195def register_functions_ns3_FatalImpl(module, root_module):
6196 return
6197
6198def register_functions_ns3_internal(module, root_module):
6199 return
6200
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006201def register_functions_ns3_ndn(module, root_module):
Alexander Afanasyev32c07562013-02-01 12:58:43 -08006202 ## ndn-name-components.h (module 'ndnSIM'): extern ns3::Ptr<ns3::AttributeChecker const> ns3::ndn::MakeNameChecker() [free function]
6203 module.add_function('MakeNameChecker',
6204 'ns3::Ptr< ns3::AttributeChecker const >',
6205 [])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006206 ## ndn-name-components.h (module 'ndnSIM'): extern ns3::Ptr<ns3::AttributeChecker const> ns3::ndn::MakeNameComponentsChecker() [free function]
6207 module.add_function('MakeNameComponentsChecker',
6208 'ns3::Ptr< ns3::AttributeChecker const >',
6209 [])
6210 register_functions_ns3_ndn_cs(module.get_submodule('cs'), root_module)
6211 register_functions_ns3_ndn_fib(module.get_submodule('fib'), root_module)
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07006212 register_functions_ns3_ndn_fw(module.get_submodule('fw'), root_module)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006213 register_functions_ns3_ndn_pit(module.get_submodule('pit'), root_module)
6214 return
6215
6216def register_functions_ns3_ndn_cs(module, root_module):
6217 return
6218
6219def register_functions_ns3_ndn_fib(module, root_module):
6220 return
6221
Alexander Afanasyevca5f6d12012-09-04 00:05:12 -07006222def register_functions_ns3_ndn_fw(module, root_module):
6223 return
6224
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07006225def register_functions_ns3_ndn_pit(module, root_module):
6226 return
6227
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08006228def main():
6229 out = FileCodeSink(sys.stdout)
6230 root_module = module_init()
6231 register_types(root_module)
6232 register_methods(root_module)
6233 register_functions(root_module)
6234 root_module.generate(out)
6235
6236if __name__ == '__main__':
6237 main()
6238