blob: c0a2ee14da7bf5796e626d5709e58a1bbed715b1 [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 Afanasyevaa032ea2011-12-13 12:38:32 -080063 ## node-container.h (module 'network'): ns3::NodeContainer [class]
64 module.add_class('NodeContainer', import_from_module='ns.network')
65 ## object-base.h (module 'core'): ns3::ObjectBase [class]
66 module.add_class('ObjectBase', allow_subclassing=True, import_from_module='ns.core')
67 ## object.h (module 'core'): ns3::ObjectDeleter [struct]
68 module.add_class('ObjectDeleter', import_from_module='ns.core')
69 ## object-factory.h (module 'core'): ns3::ObjectFactory [class]
70 module.add_class('ObjectFactory', import_from_module='ns.core')
71 ## packet-metadata.h (module 'network'): ns3::PacketMetadata [class]
72 module.add_class('PacketMetadata', import_from_module='ns.network')
73 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item [struct]
74 module.add_class('Item', import_from_module='ns.network', outer_class=root_module['ns3::PacketMetadata'])
75 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item [enumeration]
76 module.add_enum('', ['PAYLOAD', 'HEADER', 'TRAILER'], outer_class=root_module['ns3::PacketMetadata::Item'], import_from_module='ns.network')
77 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::ItemIterator [class]
78 module.add_class('ItemIterator', import_from_module='ns.network', outer_class=root_module['ns3::PacketMetadata'])
Alexander Afanasyevad5acce2012-05-31 12:43:08 -070079 ## packet.h (module 'network'): ns3::PacketTagIterator [class]
80 module.add_class('PacketTagIterator', import_from_module='ns.network')
81 ## packet.h (module 'network'): ns3::PacketTagIterator::Item [class]
82 module.add_class('Item', import_from_module='ns.network', outer_class=root_module['ns3::PacketTagIterator'])
83 ## packet-tag-list.h (module 'network'): ns3::PacketTagList [class]
84 module.add_class('PacketTagList', import_from_module='ns.network')
85 ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData [struct]
86 module.add_class('TagData', import_from_module='ns.network', outer_class=root_module['ns3::PacketTagList'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -080087 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter> [class]
88 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 -070089 ## tag.h (module 'network'): ns3::Tag [class]
90 module.add_class('Tag', import_from_module='ns.network', parent=root_module['ns3::ObjectBase'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -080091 ## tag-buffer.h (module 'network'): ns3::TagBuffer [class]
92 module.add_class('TagBuffer', import_from_module='ns.network')
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -080093 ## type-id.h (module 'core'): ns3::TypeId [class]
94 module.add_class('TypeId', import_from_module='ns.core')
95 ## type-id.h (module 'core'): ns3::TypeId::AttributeFlag [enumeration]
96 module.add_enum('AttributeFlag', ['ATTR_GET', 'ATTR_SET', 'ATTR_CONSTRUCT', 'ATTR_SGC'], outer_class=root_module['ns3::TypeId'], import_from_module='ns.core')
97 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation [struct]
98 module.add_class('AttributeInformation', import_from_module='ns.core', outer_class=root_module['ns3::TypeId'])
99 ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation [struct]
100 module.add_class('TraceSourceInformation', import_from_module='ns.core', outer_class=root_module['ns3::TypeId'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800101 ## empty.h (module 'core'): ns3::empty [class]
102 module.add_class('empty', import_from_module='ns.core')
103 ## int64x64-double.h (module 'core'): ns3::int64x64_t [class]
104 module.add_class('int64x64_t', import_from_module='ns.core')
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800105 ## chunk.h (module 'network'): ns3::Chunk [class]
Alexander Afanasyev4756b892012-04-18 14:48:43 -0700106 module.add_class('Chunk', import_from_module='ns.network', parent=root_module['ns3::ObjectBase'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800107 ## header.h (module 'network'): ns3::Header [class]
108 module.add_class('Header', import_from_module='ns.network', parent=root_module['ns3::Chunk'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800109 ## object.h (module 'core'): ns3::Object [class]
110 module.add_class('Object', import_from_module='ns.core', parent=root_module['ns3::SimpleRefCount< ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter >'])
111 ## object.h (module 'core'): ns3::Object::AggregateIterator [class]
112 module.add_class('AggregateIterator', import_from_module='ns.core', outer_class=root_module['ns3::Object'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800113 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> > [class]
114 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'))
115 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter<ns3::AttributeChecker> > [class]
116 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'))
117 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter<ns3::AttributeValue> > [class]
118 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'))
119 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> > [class]
120 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 -0800121 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::EventImpl, ns3::empty, ns3::DefaultDeleter<ns3::EventImpl> > [class]
122 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'))
123 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::NixVector, ns3::empty, ns3::DefaultDeleter<ns3::NixVector> > [class]
124 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 -0800125 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Packet, ns3::empty, ns3::DefaultDeleter<ns3::Packet> > [class]
126 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'))
127 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter<ns3::TraceSourceAccessor> > [class]
128 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 -0700129 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::ndn::ContentObjectHeader, ns3::Header, ns3::DefaultDeleter<ns3::ndn::ContentObjectHeader> > [class]
130 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'))
131 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::ndn::FaceContainer, ns3::empty, ns3::DefaultDeleter<ns3::ndn::FaceContainer> > [class]
132 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'))
133 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::ndn::InterestHeader, ns3::Header, ns3::DefaultDeleter<ns3::ndn::InterestHeader> > [class]
134 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'))
135 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::ndn::NameComponents, ns3::empty, ns3::DefaultDeleter<ns3::ndn::NameComponents> > [class]
136 module.add_class('SimpleRefCount', automatic_type_narrowing=True, template_parameters=['ns3::ndn::NameComponents', 'ns3::empty', 'ns3::DefaultDeleter<ns3::ndn::NameComponents>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
137 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::ndn::cs::Entry, ns3::empty, ns3::DefaultDeleter<ns3::ndn::cs::Entry> > [class]
138 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'))
139 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::ndn::fib::Entry, ns3::empty, ns3::DefaultDeleter<ns3::ndn::fib::Entry> > [class]
140 module.add_class('SimpleRefCount', automatic_type_narrowing=True, template_parameters=['ns3::ndn::fib::Entry', 'ns3::empty', 'ns3::DefaultDeleter<ns3::ndn::fib::Entry>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
141 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::ndn::pit::Entry, ns3::empty, ns3::DefaultDeleter<ns3::ndn::pit::Entry> > [class]
142 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 -0800143 ## nstime.h (module 'core'): ns3::Time [class]
144 module.add_class('Time', import_from_module='ns.core')
145 ## nstime.h (module 'core'): ns3::Time::Unit [enumeration]
146 module.add_enum('Unit', ['S', 'MS', 'US', 'NS', 'PS', 'FS', 'LAST'], outer_class=root_module['ns3::Time'], import_from_module='ns.core')
147 ## nstime.h (module 'core'): ns3::Time [class]
148 root_module['ns3::Time'].implicitly_converts_to(root_module['ns3::int64x64_t'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800149 ## trace-source-accessor.h (module 'core'): ns3::TraceSourceAccessor [class]
150 module.add_class('TraceSourceAccessor', import_from_module='ns.core', parent=root_module['ns3::SimpleRefCount< ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter<ns3::TraceSourceAccessor> >'])
151 ## trailer.h (module 'network'): ns3::Trailer [class]
152 module.add_class('Trailer', import_from_module='ns.network', parent=root_module['ns3::Chunk'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800153 ## application.h (module 'network'): ns3::Application [class]
154 module.add_class('Application', import_from_module='ns.network', parent=root_module['ns3::Object'])
155 ## attribute.h (module 'core'): ns3::AttributeAccessor [class]
156 module.add_class('AttributeAccessor', import_from_module='ns.core', parent=root_module['ns3::SimpleRefCount< ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> >'])
157 ## attribute.h (module 'core'): ns3::AttributeChecker [class]
158 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> >'])
159 ## attribute.h (module 'core'): ns3::AttributeValue [class]
160 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 Afanasyev6d98ac32012-06-06 13:01:48 -0700161 ## batches.h (module 'ndnSIM'): ns3::BatchesChecker [class]
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -0800162 module.add_class('BatchesChecker', parent=root_module['ns3::AttributeChecker'])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -0700163 ## batches.h (module 'ndnSIM'): ns3::BatchesValue [class]
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -0800164 module.add_class('BatchesValue', parent=root_module['ns3::AttributeValue'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800165 ## callback.h (module 'core'): ns3::CallbackChecker [class]
166 module.add_class('CallbackChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker'])
167 ## callback.h (module 'core'): ns3::CallbackImplBase [class]
168 module.add_class('CallbackImplBase', import_from_module='ns.core', parent=root_module['ns3::SimpleRefCount< ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> >'])
169 ## callback.h (module 'core'): ns3::CallbackValue [class]
170 module.add_class('CallbackValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800171 ## attribute.h (module 'core'): ns3::EmptyAttributeValue [class]
172 module.add_class('EmptyAttributeValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
173 ## event-impl.h (module 'core'): ns3::EventImpl [class]
174 module.add_class('EventImpl', import_from_module='ns.core', parent=root_module['ns3::SimpleRefCount< ns3::EventImpl, ns3::empty, ns3::DefaultDeleter<ns3::EventImpl> >'])
175 ## integer.h (module 'core'): ns3::IntegerValue [class]
176 module.add_class('IntegerValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
177 ## ipv4-address.h (module 'network'): ns3::Ipv4AddressChecker [class]
178 module.add_class('Ipv4AddressChecker', import_from_module='ns.network', parent=root_module['ns3::AttributeChecker'])
179 ## ipv4-address.h (module 'network'): ns3::Ipv4AddressValue [class]
180 module.add_class('Ipv4AddressValue', import_from_module='ns.network', parent=root_module['ns3::AttributeValue'])
181 ## ipv4-address.h (module 'network'): ns3::Ipv4MaskChecker [class]
182 module.add_class('Ipv4MaskChecker', import_from_module='ns.network', parent=root_module['ns3::AttributeChecker'])
183 ## ipv4-address.h (module 'network'): ns3::Ipv4MaskValue [class]
184 module.add_class('Ipv4MaskValue', import_from_module='ns.network', parent=root_module['ns3::AttributeValue'])
185 ## ipv6-address.h (module 'network'): ns3::Ipv6AddressChecker [class]
186 module.add_class('Ipv6AddressChecker', import_from_module='ns.network', parent=root_module['ns3::AttributeChecker'])
187 ## ipv6-address.h (module 'network'): ns3::Ipv6AddressValue [class]
188 module.add_class('Ipv6AddressValue', import_from_module='ns.network', parent=root_module['ns3::AttributeValue'])
189 ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixChecker [class]
190 module.add_class('Ipv6PrefixChecker', import_from_module='ns.network', parent=root_module['ns3::AttributeChecker'])
191 ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixValue [class]
192 module.add_class('Ipv6PrefixValue', import_from_module='ns.network', parent=root_module['ns3::AttributeValue'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800193 ## net-device.h (module 'network'): ns3::NetDevice [class]
194 module.add_class('NetDevice', import_from_module='ns.network', parent=root_module['ns3::Object'])
195 ## net-device.h (module 'network'): ns3::NetDevice::PacketType [enumeration]
196 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')
197 ## nix-vector.h (module 'network'): ns3::NixVector [class]
198 module.add_class('NixVector', import_from_module='ns.network', parent=root_module['ns3::SimpleRefCount< ns3::NixVector, ns3::empty, ns3::DefaultDeleter<ns3::NixVector> >'])
199 ## node.h (module 'network'): ns3::Node [class]
200 module.add_class('Node', import_from_module='ns.network', parent=root_module['ns3::Object'])
201 ## object-factory.h (module 'core'): ns3::ObjectFactoryChecker [class]
202 module.add_class('ObjectFactoryChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker'])
203 ## object-factory.h (module 'core'): ns3::ObjectFactoryValue [class]
204 module.add_class('ObjectFactoryValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800205 ## packet.h (module 'network'): ns3::Packet [class]
206 module.add_class('Packet', import_from_module='ns.network', parent=root_module['ns3::SimpleRefCount< ns3::Packet, ns3::empty, ns3::DefaultDeleter<ns3::Packet> >'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800207 ## nstime.h (module 'core'): ns3::TimeChecker [class]
208 module.add_class('TimeChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker'])
209 ## nstime.h (module 'core'): ns3::TimeValue [class]
210 module.add_class('TimeValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
211 ## type-id.h (module 'core'): ns3::TypeIdChecker [class]
212 module.add_class('TypeIdChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker'])
213 ## type-id.h (module 'core'): ns3::TypeIdValue [class]
214 module.add_class('TypeIdValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800215 ## address.h (module 'network'): ns3::AddressChecker [class]
216 module.add_class('AddressChecker', import_from_module='ns.network', parent=root_module['ns3::AttributeChecker'])
217 ## address.h (module 'network'): ns3::AddressValue [class]
218 module.add_class('AddressValue', import_from_module='ns.network', parent=root_module['ns3::AttributeValue'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800219
220 ## Register a nested module for the namespace FatalImpl
221
222 nested_module = module.add_cpp_namespace('FatalImpl')
223 register_types_ns3_FatalImpl(nested_module)
224
225
226 ## Register a nested module for the namespace internal
227
228 nested_module = module.add_cpp_namespace('internal')
229 register_types_ns3_internal(nested_module)
230
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700231
232 ## Register a nested module for the namespace ndn
233
234 nested_module = module.add_cpp_namespace('ndn')
235 register_types_ns3_ndn(nested_module)
236
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800237
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800238def register_types_ns3_FatalImpl(module):
239 root_module = module.get_root()
240
241
242def register_types_ns3_internal(module):
243 root_module = module.get_root()
244
245
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700246def register_types_ns3_ndn(module):
247 root_module = module.get_root()
248
249 ## ndn-app.h (module 'ndnSIM'): ns3::ndn::App [class]
250 module.add_class('App', parent=root_module['ns3::Application'])
251 ## ndn-app-helper.h (module 'ndnSIM'): ns3::ndn::AppHelper [class]
252 module.add_class('AppHelper')
253 ## ndn-content-object-header.h (module 'ndnSIM'): ns3::ndn::ContentObjectHeader [class]
254 module.add_class('ContentObjectHeader', parent=root_module['ns3::SimpleRefCount< ns3::ndn::ContentObjectHeader, ns3::Header, ns3::DefaultDeleter<ns3::ndn::ContentObjectHeader> >'])
255 ## ndn-content-object-header.h (module 'ndnSIM'): ns3::ndn::ContentObjectHeader::ContentType [enumeration]
256 module.add_enum('ContentType', ['DATA', 'ENCR', 'GONE', 'KEY', 'LINK', 'NACK'], outer_class=root_module['ns3::ndn::ContentObjectHeader'])
257 ## ndn-content-object-header.h (module 'ndnSIM'): ns3::ndn::ContentObjectHeader::Signature [class]
258 module.add_class('Signature', outer_class=root_module['ns3::ndn::ContentObjectHeader'])
259 ## ndn-content-object-header.h (module 'ndnSIM'): ns3::ndn::ContentObjectHeader::SignedInfo [class]
260 module.add_class('SignedInfo', outer_class=root_module['ns3::ndn::ContentObjectHeader'])
261 ## ndn-content-object-header.h (module 'ndnSIM'): ns3::ndn::ContentObjectHeaderException [class]
262 module.add_class('ContentObjectHeaderException')
263 ## ndn-content-object-header.h (module 'ndnSIM'): ns3::ndn::ContentObjectTail [class]
264 module.add_class('ContentObjectTail', parent=root_module['ns3::Trailer'])
265 ## ndn-content-store.h (module 'ndnSIM'): ns3::ndn::ContentStore [class]
266 module.add_class('ContentStore', parent=root_module['ns3::Object'])
267 ## ndn-face.h (module 'ndnSIM'): ns3::ndn::Face [class]
268 module.add_class('Face', parent=root_module['ns3::Object'])
269 ## ndn-face-container.h (module 'ndnSIM'): ns3::ndn::FaceContainer [class]
270 module.add_class('FaceContainer', parent=root_module['ns3::SimpleRefCount< ns3::ndn::FaceContainer, ns3::empty, ns3::DefaultDeleter<ns3::ndn::FaceContainer> >'])
271 ## ndn-fib.h (module 'ndnSIM'): ns3::ndn::Fib [class]
272 module.add_class('Fib', parent=root_module['ns3::Object'])
273 ## ndn-forwarding-strategy.h (module 'ndnSIM'): ns3::ndn::ForwardingStrategy [class]
274 module.add_class('ForwardingStrategy', parent=root_module['ns3::Object'])
275 ## ndn-global-routing-helper.h (module 'ndnSIM'): ns3::ndn::GlobalRoutingHelper [class]
276 module.add_class('GlobalRoutingHelper')
277 ## ndn-header-helper.h (module 'ndnSIM'): ns3::ndn::HeaderHelper [class]
278 module.add_class('HeaderHelper')
279 ## ndn-header-helper.h (module 'ndnSIM'): ns3::ndn::HeaderHelper::Type [enumeration]
280 module.add_enum('Type', ['INTEREST', 'CONTENT_OBJECT'], outer_class=root_module['ns3::ndn::HeaderHelper'])
281 ## ndn-interest-header.h (module 'ndnSIM'): ns3::ndn::InterestHeader [class]
282 module.add_class('InterestHeader', parent=root_module['ns3::SimpleRefCount< ns3::ndn::InterestHeader, ns3::Header, ns3::DefaultDeleter<ns3::ndn::InterestHeader> >'])
283 ## ndn-interest-header.h (module 'ndnSIM'): ns3::ndn::InterestHeader [enumeration]
284 module.add_enum('', ['NORMAL_INTEREST', 'NACK_LOOP', 'NACK_CONGESTION', 'NACK_GIVEUP_PIT'], outer_class=root_module['ns3::ndn::InterestHeader'])
285 ## ndn-interest-header.h (module 'ndnSIM'): ns3::ndn::InterestHeaderException [class]
286 module.add_class('InterestHeaderException')
287 ## ndn-l3-protocol.h (module 'ndnSIM'): ns3::ndn::L3Protocol [class]
288 module.add_class('L3Protocol', parent=root_module['ns3::Object'])
289 ## ndn-name-components.h (module 'ndnSIM'): ns3::ndn::NameComponents [class]
290 module.add_class('NameComponents', parent=root_module['ns3::SimpleRefCount< ns3::ndn::NameComponents, ns3::empty, ns3::DefaultDeleter<ns3::ndn::NameComponents> >'])
291 ## ndn-name-components.h (module 'ndnSIM'): ns3::ndn::NameComponentsChecker [class]
292 module.add_class('NameComponentsChecker', parent=root_module['ns3::AttributeChecker'])
293 ## ndn-name-components.h (module 'ndnSIM'): ns3::ndn::NameComponentsValue [class]
294 module.add_class('NameComponentsValue', parent=root_module['ns3::AttributeValue'])
295 ## ndn-net-device-face.h (module 'ndnSIM'): ns3::ndn::NetDeviceFace [class]
296 module.add_class('NetDeviceFace', parent=root_module['ns3::ndn::Face'])
297 ## ndn-pit.h (module 'ndnSIM'): ns3::ndn::Pit [class]
298 module.add_class('Pit', parent=root_module['ns3::Object'])
299 ## ndn-stack-helper.h (module 'ndnSIM'): ns3::ndn::StackHelper [class]
300 module.add_class('StackHelper')
301 ## ndn-header-helper.h (module 'ndnSIM'): ns3::ndn::UnknownHeaderException [class]
302 module.add_class('UnknownHeaderException')
303 ## ndn-app-face.h (module 'ndnSIM'): ns3::ndn::AppFace [class]
304 module.add_class('AppFace', parent=root_module['ns3::ndn::Face'])
305 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')
306 module.add_container('std::list< std::string >', 'std::string', container_type='list')
307
308 ## Register a nested module for the namespace cs
309
310 nested_module = module.add_cpp_namespace('cs')
311 register_types_ns3_ndn_cs(nested_module)
312
313
314 ## Register a nested module for the namespace fib
315
316 nested_module = module.add_cpp_namespace('fib')
317 register_types_ns3_ndn_fib(nested_module)
318
319
320 ## Register a nested module for the namespace pit
321
322 nested_module = module.add_cpp_namespace('pit')
323 register_types_ns3_ndn_pit(nested_module)
324
325
326def register_types_ns3_ndn_cs(module):
327 root_module = module.get_root()
328
329 ## ndn-content-store.h (module 'ndnSIM'): ns3::ndn::cs::Entry [class]
330 module.add_class('Entry', parent=root_module['ns3::SimpleRefCount< ns3::ndn::cs::Entry, ns3::empty, ns3::DefaultDeleter<ns3::ndn::cs::Entry> >'])
331
332def register_types_ns3_ndn_fib(module):
333 root_module = module.get_root()
334
335 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::Entry [class]
336 module.add_class('Entry', parent=root_module['ns3::SimpleRefCount< ns3::ndn::fib::Entry, ns3::empty, ns3::DefaultDeleter<ns3::ndn::fib::Entry> >'])
337 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::Entry::NoFaces [class]
338 module.add_class('NoFaces', outer_class=root_module['ns3::ndn::fib::Entry'])
339 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::FaceMetric [class]
340 module.add_class('FaceMetric')
341 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::FaceMetric::Status [enumeration]
342 module.add_enum('Status', ['NDN_FIB_GREEN', 'NDN_FIB_YELLOW', 'NDN_FIB_RED'], outer_class=root_module['ns3::ndn::fib::FaceMetric'])
343 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::FaceMetricContainer [struct]
344 module.add_class('FaceMetricContainer')
345 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::i_face [class]
346 module.add_class('i_face')
347 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::i_metric [class]
348 module.add_class('i_metric')
349 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::i_nth [class]
350 module.add_class('i_nth')
351
352def register_types_ns3_ndn_pit(module):
353 root_module = module.get_root()
354
355 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::ndn::pit::Entry [class]
356 module.add_class('Entry', parent=root_module['ns3::SimpleRefCount< ns3::ndn::pit::Entry, ns3::empty, ns3::DefaultDeleter<ns3::ndn::pit::Entry> >'])
357 ## ndn-pit-entry-incoming-face.h (module 'ndnSIM'): ns3::ndn::pit::IncomingFace [struct]
358 module.add_class('IncomingFace')
359 ## ndn-pit-entry-outgoing-face.h (module 'ndnSIM'): ns3::ndn::pit::OutgoingFace [struct]
360 module.add_class('OutgoingFace')
361 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::ndn::pit::OutgoingFaceContainer [struct]
362 module.add_class('OutgoingFaceContainer')
363 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::ndn::pit::i_face [class]
364 module.add_class('i_face')
365 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::ndn::pit::i_retx [class]
366 module.add_class('i_retx')
367 module.add_container('std::set< ns3::ndn::pit::IncomingFace >', 'ns3::ndn::pit::IncomingFace', container_type='set')
368 module.add_container('std::set< unsigned int >', 'unsigned int', container_type='set')
369
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800370def register_methods(root_module):
371 register_Ns3Address_methods(root_module, root_module['ns3::Address'])
372 register_Ns3ApplicationContainer_methods(root_module, root_module['ns3::ApplicationContainer'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800373 register_Ns3AttributeConstructionList_methods(root_module, root_module['ns3::AttributeConstructionList'])
374 register_Ns3AttributeConstructionListItem_methods(root_module, root_module['ns3::AttributeConstructionList::Item'])
375 register_Ns3Buffer_methods(root_module, root_module['ns3::Buffer'])
376 register_Ns3BufferIterator_methods(root_module, root_module['ns3::Buffer::Iterator'])
377 register_Ns3ByteTagIterator_methods(root_module, root_module['ns3::ByteTagIterator'])
378 register_Ns3ByteTagIteratorItem_methods(root_module, root_module['ns3::ByteTagIterator::Item'])
379 register_Ns3ByteTagList_methods(root_module, root_module['ns3::ByteTagList'])
380 register_Ns3ByteTagListIterator_methods(root_module, root_module['ns3::ByteTagList::Iterator'])
381 register_Ns3ByteTagListIteratorItem_methods(root_module, root_module['ns3::ByteTagList::Iterator::Item'])
382 register_Ns3CallbackBase_methods(root_module, root_module['ns3::CallbackBase'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800383 register_Ns3EventId_methods(root_module, root_module['ns3::EventId'])
384 register_Ns3Ipv4Address_methods(root_module, root_module['ns3::Ipv4Address'])
385 register_Ns3Ipv4Mask_methods(root_module, root_module['ns3::Ipv4Mask'])
386 register_Ns3Ipv6Address_methods(root_module, root_module['ns3::Ipv6Address'])
387 register_Ns3Ipv6Prefix_methods(root_module, root_module['ns3::Ipv6Prefix'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800388 register_Ns3NodeContainer_methods(root_module, root_module['ns3::NodeContainer'])
389 register_Ns3ObjectBase_methods(root_module, root_module['ns3::ObjectBase'])
390 register_Ns3ObjectDeleter_methods(root_module, root_module['ns3::ObjectDeleter'])
391 register_Ns3ObjectFactory_methods(root_module, root_module['ns3::ObjectFactory'])
392 register_Ns3PacketMetadata_methods(root_module, root_module['ns3::PacketMetadata'])
393 register_Ns3PacketMetadataItem_methods(root_module, root_module['ns3::PacketMetadata::Item'])
394 register_Ns3PacketMetadataItemIterator_methods(root_module, root_module['ns3::PacketMetadata::ItemIterator'])
Alexander Afanasyevad5acce2012-05-31 12:43:08 -0700395 register_Ns3PacketTagIterator_methods(root_module, root_module['ns3::PacketTagIterator'])
396 register_Ns3PacketTagIteratorItem_methods(root_module, root_module['ns3::PacketTagIterator::Item'])
397 register_Ns3PacketTagList_methods(root_module, root_module['ns3::PacketTagList'])
398 register_Ns3PacketTagListTagData_methods(root_module, root_module['ns3::PacketTagList::TagData'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800399 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 -0700400 register_Ns3Tag_methods(root_module, root_module['ns3::Tag'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800401 register_Ns3TagBuffer_methods(root_module, root_module['ns3::TagBuffer'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800402 register_Ns3TypeId_methods(root_module, root_module['ns3::TypeId'])
403 register_Ns3TypeIdAttributeInformation_methods(root_module, root_module['ns3::TypeId::AttributeInformation'])
404 register_Ns3TypeIdTraceSourceInformation_methods(root_module, root_module['ns3::TypeId::TraceSourceInformation'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800405 register_Ns3Empty_methods(root_module, root_module['ns3::empty'])
406 register_Ns3Int64x64_t_methods(root_module, root_module['ns3::int64x64_t'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800407 register_Ns3Chunk_methods(root_module, root_module['ns3::Chunk'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800408 register_Ns3Header_methods(root_module, root_module['ns3::Header'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800409 register_Ns3Object_methods(root_module, root_module['ns3::Object'])
410 register_Ns3ObjectAggregateIterator_methods(root_module, root_module['ns3::Object::AggregateIterator'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800411 register_Ns3SimpleRefCount__Ns3AttributeAccessor_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeAccessor__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> >'])
412 register_Ns3SimpleRefCount__Ns3AttributeChecker_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeChecker__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter<ns3::AttributeChecker> >'])
413 register_Ns3SimpleRefCount__Ns3AttributeValue_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeValue__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter<ns3::AttributeValue> >'])
414 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 -0800415 register_Ns3SimpleRefCount__Ns3EventImpl_Ns3Empty_Ns3DefaultDeleter__lt__ns3EventImpl__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::EventImpl, ns3::empty, ns3::DefaultDeleter<ns3::EventImpl> >'])
416 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 -0800417 register_Ns3SimpleRefCount__Ns3Packet_Ns3Empty_Ns3DefaultDeleter__lt__ns3Packet__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::Packet, ns3::empty, ns3::DefaultDeleter<ns3::Packet> >'])
418 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 -0700419 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> >'])
420 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> >'])
421 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> >'])
422 register_Ns3SimpleRefCount__Ns3NdnNameComponents_Ns3Empty_Ns3DefaultDeleter__lt__ns3NdnNameComponents__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::ndn::NameComponents, ns3::empty, ns3::DefaultDeleter<ns3::ndn::NameComponents> >'])
423 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> >'])
424 register_Ns3SimpleRefCount__Ns3NdnFibEntry_Ns3Empty_Ns3DefaultDeleter__lt__ns3NdnFibEntry__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::ndn::fib::Entry, ns3::empty, ns3::DefaultDeleter<ns3::ndn::fib::Entry> >'])
425 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 -0800426 register_Ns3Time_methods(root_module, root_module['ns3::Time'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800427 register_Ns3TraceSourceAccessor_methods(root_module, root_module['ns3::TraceSourceAccessor'])
428 register_Ns3Trailer_methods(root_module, root_module['ns3::Trailer'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800429 register_Ns3Application_methods(root_module, root_module['ns3::Application'])
430 register_Ns3AttributeAccessor_methods(root_module, root_module['ns3::AttributeAccessor'])
431 register_Ns3AttributeChecker_methods(root_module, root_module['ns3::AttributeChecker'])
432 register_Ns3AttributeValue_methods(root_module, root_module['ns3::AttributeValue'])
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -0800433 register_Ns3BatchesChecker_methods(root_module, root_module['ns3::BatchesChecker'])
434 register_Ns3BatchesValue_methods(root_module, root_module['ns3::BatchesValue'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800435 register_Ns3CallbackChecker_methods(root_module, root_module['ns3::CallbackChecker'])
436 register_Ns3CallbackImplBase_methods(root_module, root_module['ns3::CallbackImplBase'])
437 register_Ns3CallbackValue_methods(root_module, root_module['ns3::CallbackValue'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800438 register_Ns3EmptyAttributeValue_methods(root_module, root_module['ns3::EmptyAttributeValue'])
439 register_Ns3EventImpl_methods(root_module, root_module['ns3::EventImpl'])
440 register_Ns3IntegerValue_methods(root_module, root_module['ns3::IntegerValue'])
441 register_Ns3Ipv4AddressChecker_methods(root_module, root_module['ns3::Ipv4AddressChecker'])
442 register_Ns3Ipv4AddressValue_methods(root_module, root_module['ns3::Ipv4AddressValue'])
443 register_Ns3Ipv4MaskChecker_methods(root_module, root_module['ns3::Ipv4MaskChecker'])
444 register_Ns3Ipv4MaskValue_methods(root_module, root_module['ns3::Ipv4MaskValue'])
445 register_Ns3Ipv6AddressChecker_methods(root_module, root_module['ns3::Ipv6AddressChecker'])
446 register_Ns3Ipv6AddressValue_methods(root_module, root_module['ns3::Ipv6AddressValue'])
447 register_Ns3Ipv6PrefixChecker_methods(root_module, root_module['ns3::Ipv6PrefixChecker'])
448 register_Ns3Ipv6PrefixValue_methods(root_module, root_module['ns3::Ipv6PrefixValue'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800449 register_Ns3NetDevice_methods(root_module, root_module['ns3::NetDevice'])
450 register_Ns3NixVector_methods(root_module, root_module['ns3::NixVector'])
451 register_Ns3Node_methods(root_module, root_module['ns3::Node'])
452 register_Ns3ObjectFactoryChecker_methods(root_module, root_module['ns3::ObjectFactoryChecker'])
453 register_Ns3ObjectFactoryValue_methods(root_module, root_module['ns3::ObjectFactoryValue'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800454 register_Ns3Packet_methods(root_module, root_module['ns3::Packet'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800455 register_Ns3TimeChecker_methods(root_module, root_module['ns3::TimeChecker'])
456 register_Ns3TimeValue_methods(root_module, root_module['ns3::TimeValue'])
457 register_Ns3TypeIdChecker_methods(root_module, root_module['ns3::TypeIdChecker'])
458 register_Ns3TypeIdValue_methods(root_module, root_module['ns3::TypeIdValue'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800459 register_Ns3AddressChecker_methods(root_module, root_module['ns3::AddressChecker'])
460 register_Ns3AddressValue_methods(root_module, root_module['ns3::AddressValue'])
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700461 register_Ns3NdnApp_methods(root_module, root_module['ns3::ndn::App'])
462 register_Ns3NdnAppHelper_methods(root_module, root_module['ns3::ndn::AppHelper'])
463 register_Ns3NdnContentObjectHeader_methods(root_module, root_module['ns3::ndn::ContentObjectHeader'])
464 register_Ns3NdnContentObjectHeaderSignature_methods(root_module, root_module['ns3::ndn::ContentObjectHeader::Signature'])
465 register_Ns3NdnContentObjectHeaderSignedInfo_methods(root_module, root_module['ns3::ndn::ContentObjectHeader::SignedInfo'])
466 register_Ns3NdnContentObjectHeaderException_methods(root_module, root_module['ns3::ndn::ContentObjectHeaderException'])
467 register_Ns3NdnContentObjectTail_methods(root_module, root_module['ns3::ndn::ContentObjectTail'])
468 register_Ns3NdnContentStore_methods(root_module, root_module['ns3::ndn::ContentStore'])
469 register_Ns3NdnFace_methods(root_module, root_module['ns3::ndn::Face'])
470 register_Ns3NdnFaceContainer_methods(root_module, root_module['ns3::ndn::FaceContainer'])
471 register_Ns3NdnFib_methods(root_module, root_module['ns3::ndn::Fib'])
472 register_Ns3NdnForwardingStrategy_methods(root_module, root_module['ns3::ndn::ForwardingStrategy'])
473 register_Ns3NdnGlobalRoutingHelper_methods(root_module, root_module['ns3::ndn::GlobalRoutingHelper'])
474 register_Ns3NdnHeaderHelper_methods(root_module, root_module['ns3::ndn::HeaderHelper'])
475 register_Ns3NdnInterestHeader_methods(root_module, root_module['ns3::ndn::InterestHeader'])
476 register_Ns3NdnInterestHeaderException_methods(root_module, root_module['ns3::ndn::InterestHeaderException'])
477 register_Ns3NdnL3Protocol_methods(root_module, root_module['ns3::ndn::L3Protocol'])
478 register_Ns3NdnNameComponents_methods(root_module, root_module['ns3::ndn::NameComponents'])
479 register_Ns3NdnNameComponentsChecker_methods(root_module, root_module['ns3::ndn::NameComponentsChecker'])
480 register_Ns3NdnNameComponentsValue_methods(root_module, root_module['ns3::ndn::NameComponentsValue'])
481 register_Ns3NdnNetDeviceFace_methods(root_module, root_module['ns3::ndn::NetDeviceFace'])
482 register_Ns3NdnPit_methods(root_module, root_module['ns3::ndn::Pit'])
483 register_Ns3NdnStackHelper_methods(root_module, root_module['ns3::ndn::StackHelper'])
484 register_Ns3NdnUnknownHeaderException_methods(root_module, root_module['ns3::ndn::UnknownHeaderException'])
485 register_Ns3NdnAppFace_methods(root_module, root_module['ns3::ndn::AppFace'])
486 register_Ns3NdnCsEntry_methods(root_module, root_module['ns3::ndn::cs::Entry'])
487 register_Ns3NdnFibEntry_methods(root_module, root_module['ns3::ndn::fib::Entry'])
488 register_Ns3NdnFibEntryNoFaces_methods(root_module, root_module['ns3::ndn::fib::Entry::NoFaces'])
489 register_Ns3NdnFibFaceMetric_methods(root_module, root_module['ns3::ndn::fib::FaceMetric'])
490 register_Ns3NdnFibFaceMetricContainer_methods(root_module, root_module['ns3::ndn::fib::FaceMetricContainer'])
491 register_Ns3NdnFibI_face_methods(root_module, root_module['ns3::ndn::fib::i_face'])
492 register_Ns3NdnFibI_metric_methods(root_module, root_module['ns3::ndn::fib::i_metric'])
493 register_Ns3NdnFibI_nth_methods(root_module, root_module['ns3::ndn::fib::i_nth'])
494 register_Ns3NdnPitEntry_methods(root_module, root_module['ns3::ndn::pit::Entry'])
495 register_Ns3NdnPitIncomingFace_methods(root_module, root_module['ns3::ndn::pit::IncomingFace'])
496 register_Ns3NdnPitOutgoingFace_methods(root_module, root_module['ns3::ndn::pit::OutgoingFace'])
497 register_Ns3NdnPitOutgoingFaceContainer_methods(root_module, root_module['ns3::ndn::pit::OutgoingFaceContainer'])
498 register_Ns3NdnPitI_face_methods(root_module, root_module['ns3::ndn::pit::i_face'])
499 register_Ns3NdnPitI_retx_methods(root_module, root_module['ns3::ndn::pit::i_retx'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800500 return
501
502def register_Ns3Address_methods(root_module, cls):
503 cls.add_binary_comparison_operator('!=')
504 cls.add_output_stream_operator()
505 cls.add_binary_comparison_operator('==')
506 cls.add_binary_comparison_operator('<')
507 ## address.h (module 'network'): ns3::Address::Address() [constructor]
508 cls.add_constructor([])
509 ## address.h (module 'network'): ns3::Address::Address(uint8_t type, uint8_t const * buffer, uint8_t len) [constructor]
510 cls.add_constructor([param('uint8_t', 'type'), param('uint8_t const *', 'buffer'), param('uint8_t', 'len')])
511 ## address.h (module 'network'): ns3::Address::Address(ns3::Address const & address) [copy constructor]
512 cls.add_constructor([param('ns3::Address const &', 'address')])
513 ## address.h (module 'network'): bool ns3::Address::CheckCompatible(uint8_t type, uint8_t len) const [member function]
514 cls.add_method('CheckCompatible',
515 'bool',
516 [param('uint8_t', 'type'), param('uint8_t', 'len')],
517 is_const=True)
518 ## address.h (module 'network'): uint32_t ns3::Address::CopyAllFrom(uint8_t const * buffer, uint8_t len) [member function]
519 cls.add_method('CopyAllFrom',
520 'uint32_t',
521 [param('uint8_t const *', 'buffer'), param('uint8_t', 'len')])
522 ## address.h (module 'network'): uint32_t ns3::Address::CopyAllTo(uint8_t * buffer, uint8_t len) const [member function]
523 cls.add_method('CopyAllTo',
524 'uint32_t',
525 [param('uint8_t *', 'buffer'), param('uint8_t', 'len')],
526 is_const=True)
527 ## address.h (module 'network'): uint32_t ns3::Address::CopyFrom(uint8_t const * buffer, uint8_t len) [member function]
528 cls.add_method('CopyFrom',
529 'uint32_t',
530 [param('uint8_t const *', 'buffer'), param('uint8_t', 'len')])
531 ## address.h (module 'network'): uint32_t ns3::Address::CopyTo(uint8_t * buffer) const [member function]
532 cls.add_method('CopyTo',
533 'uint32_t',
534 [param('uint8_t *', 'buffer')],
535 is_const=True)
536 ## address.h (module 'network'): void ns3::Address::Deserialize(ns3::TagBuffer buffer) [member function]
537 cls.add_method('Deserialize',
538 'void',
539 [param('ns3::TagBuffer', 'buffer')])
540 ## address.h (module 'network'): uint8_t ns3::Address::GetLength() const [member function]
541 cls.add_method('GetLength',
542 'uint8_t',
543 [],
544 is_const=True)
545 ## address.h (module 'network'): uint32_t ns3::Address::GetSerializedSize() const [member function]
546 cls.add_method('GetSerializedSize',
547 'uint32_t',
548 [],
549 is_const=True)
550 ## address.h (module 'network'): bool ns3::Address::IsInvalid() const [member function]
551 cls.add_method('IsInvalid',
552 'bool',
553 [],
554 is_const=True)
555 ## address.h (module 'network'): bool ns3::Address::IsMatchingType(uint8_t type) const [member function]
556 cls.add_method('IsMatchingType',
557 'bool',
558 [param('uint8_t', 'type')],
559 is_const=True)
560 ## address.h (module 'network'): static uint8_t ns3::Address::Register() [member function]
561 cls.add_method('Register',
562 'uint8_t',
563 [],
564 is_static=True)
565 ## address.h (module 'network'): void ns3::Address::Serialize(ns3::TagBuffer buffer) const [member function]
566 cls.add_method('Serialize',
567 'void',
568 [param('ns3::TagBuffer', 'buffer')],
569 is_const=True)
570 return
571
572def register_Ns3ApplicationContainer_methods(root_module, cls):
573 ## application-container.h (module 'network'): ns3::ApplicationContainer::ApplicationContainer(ns3::ApplicationContainer const & arg0) [copy constructor]
574 cls.add_constructor([param('ns3::ApplicationContainer const &', 'arg0')])
575 ## application-container.h (module 'network'): ns3::ApplicationContainer::ApplicationContainer() [constructor]
576 cls.add_constructor([])
577 ## application-container.h (module 'network'): ns3::ApplicationContainer::ApplicationContainer(ns3::Ptr<ns3::Application> application) [constructor]
578 cls.add_constructor([param('ns3::Ptr< ns3::Application >', 'application')])
579 ## application-container.h (module 'network'): ns3::ApplicationContainer::ApplicationContainer(std::string name) [constructor]
580 cls.add_constructor([param('std::string', 'name')])
581 ## application-container.h (module 'network'): void ns3::ApplicationContainer::Add(ns3::ApplicationContainer other) [member function]
582 cls.add_method('Add',
583 'void',
584 [param('ns3::ApplicationContainer', 'other')])
585 ## application-container.h (module 'network'): void ns3::ApplicationContainer::Add(ns3::Ptr<ns3::Application> application) [member function]
586 cls.add_method('Add',
587 'void',
588 [param('ns3::Ptr< ns3::Application >', 'application')])
589 ## application-container.h (module 'network'): void ns3::ApplicationContainer::Add(std::string name) [member function]
590 cls.add_method('Add',
591 'void',
592 [param('std::string', 'name')])
593 ## 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]
594 cls.add_method('Begin',
595 '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Application > const, std::vector< ns3::Ptr< ns3::Application > > >',
596 [],
597 is_const=True)
598 ## 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]
599 cls.add_method('End',
600 '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Application > const, std::vector< ns3::Ptr< ns3::Application > > >',
601 [],
602 is_const=True)
603 ## application-container.h (module 'network'): ns3::Ptr<ns3::Application> ns3::ApplicationContainer::Get(uint32_t i) const [member function]
604 cls.add_method('Get',
605 'ns3::Ptr< ns3::Application >',
606 [param('uint32_t', 'i')],
607 is_const=True)
608 ## application-container.h (module 'network'): uint32_t ns3::ApplicationContainer::GetN() const [member function]
609 cls.add_method('GetN',
610 'uint32_t',
611 [],
612 is_const=True)
613 ## application-container.h (module 'network'): void ns3::ApplicationContainer::Start(ns3::Time start) [member function]
614 cls.add_method('Start',
615 'void',
616 [param('ns3::Time', 'start')])
617 ## application-container.h (module 'network'): void ns3::ApplicationContainer::Stop(ns3::Time stop) [member function]
618 cls.add_method('Stop',
619 'void',
620 [param('ns3::Time', 'stop')])
621 return
622
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800623def register_Ns3AttributeConstructionList_methods(root_module, cls):
624 ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::AttributeConstructionList(ns3::AttributeConstructionList const & arg0) [copy constructor]
625 cls.add_constructor([param('ns3::AttributeConstructionList const &', 'arg0')])
626 ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::AttributeConstructionList() [constructor]
627 cls.add_constructor([])
628 ## 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]
629 cls.add_method('Add',
630 'void',
631 [param('std::string', 'name'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker'), param('ns3::Ptr< ns3::AttributeValue >', 'value')])
632 ## attribute-construction-list.h (module 'core'): std::_List_const_iterator<ns3::AttributeConstructionList::Item> ns3::AttributeConstructionList::Begin() const [member function]
633 cls.add_method('Begin',
634 'std::_List_const_iterator< ns3::AttributeConstructionList::Item >',
635 [],
636 is_const=True)
637 ## attribute-construction-list.h (module 'core'): std::_List_const_iterator<ns3::AttributeConstructionList::Item> ns3::AttributeConstructionList::End() const [member function]
638 cls.add_method('End',
639 'std::_List_const_iterator< ns3::AttributeConstructionList::Item >',
640 [],
641 is_const=True)
642 ## attribute-construction-list.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::AttributeConstructionList::Find(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
643 cls.add_method('Find',
644 'ns3::Ptr< ns3::AttributeValue >',
645 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
646 is_const=True)
647 return
648
649def register_Ns3AttributeConstructionListItem_methods(root_module, cls):
650 ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item::Item() [constructor]
651 cls.add_constructor([])
652 ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item::Item(ns3::AttributeConstructionList::Item const & arg0) [copy constructor]
653 cls.add_constructor([param('ns3::AttributeConstructionList::Item const &', 'arg0')])
654 ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item::checker [variable]
655 cls.add_instance_attribute('checker', 'ns3::Ptr< ns3::AttributeChecker const >', is_const=False)
656 ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item::name [variable]
657 cls.add_instance_attribute('name', 'std::string', is_const=False)
658 ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item::value [variable]
659 cls.add_instance_attribute('value', 'ns3::Ptr< ns3::AttributeValue >', is_const=False)
660 return
661
662def register_Ns3Buffer_methods(root_module, cls):
663 ## buffer.h (module 'network'): ns3::Buffer::Buffer() [constructor]
664 cls.add_constructor([])
665 ## buffer.h (module 'network'): ns3::Buffer::Buffer(uint32_t dataSize) [constructor]
666 cls.add_constructor([param('uint32_t', 'dataSize')])
667 ## buffer.h (module 'network'): ns3::Buffer::Buffer(uint32_t dataSize, bool initialize) [constructor]
668 cls.add_constructor([param('uint32_t', 'dataSize'), param('bool', 'initialize')])
669 ## buffer.h (module 'network'): ns3::Buffer::Buffer(ns3::Buffer const & o) [copy constructor]
670 cls.add_constructor([param('ns3::Buffer const &', 'o')])
671 ## buffer.h (module 'network'): bool ns3::Buffer::AddAtEnd(uint32_t end) [member function]
672 cls.add_method('AddAtEnd',
673 'bool',
674 [param('uint32_t', 'end')])
675 ## buffer.h (module 'network'): void ns3::Buffer::AddAtEnd(ns3::Buffer const & o) [member function]
676 cls.add_method('AddAtEnd',
677 'void',
678 [param('ns3::Buffer const &', 'o')])
679 ## buffer.h (module 'network'): bool ns3::Buffer::AddAtStart(uint32_t start) [member function]
680 cls.add_method('AddAtStart',
681 'bool',
682 [param('uint32_t', 'start')])
683 ## buffer.h (module 'network'): ns3::Buffer::Iterator ns3::Buffer::Begin() const [member function]
684 cls.add_method('Begin',
685 'ns3::Buffer::Iterator',
686 [],
687 is_const=True)
688 ## buffer.h (module 'network'): void ns3::Buffer::CopyData(std::ostream * os, uint32_t size) const [member function]
689 cls.add_method('CopyData',
690 'void',
691 [param('std::ostream *', 'os'), param('uint32_t', 'size')],
692 is_const=True)
693 ## buffer.h (module 'network'): uint32_t ns3::Buffer::CopyData(uint8_t * buffer, uint32_t size) const [member function]
694 cls.add_method('CopyData',
695 'uint32_t',
696 [param('uint8_t *', 'buffer'), param('uint32_t', 'size')],
697 is_const=True)
698 ## buffer.h (module 'network'): ns3::Buffer ns3::Buffer::CreateFragment(uint32_t start, uint32_t length) const [member function]
699 cls.add_method('CreateFragment',
700 'ns3::Buffer',
701 [param('uint32_t', 'start'), param('uint32_t', 'length')],
702 is_const=True)
703 ## buffer.h (module 'network'): ns3::Buffer ns3::Buffer::CreateFullCopy() const [member function]
704 cls.add_method('CreateFullCopy',
705 'ns3::Buffer',
706 [],
707 is_const=True)
708 ## buffer.h (module 'network'): uint32_t ns3::Buffer::Deserialize(uint8_t const * buffer, uint32_t size) [member function]
709 cls.add_method('Deserialize',
710 'uint32_t',
711 [param('uint8_t const *', 'buffer'), param('uint32_t', 'size')])
712 ## buffer.h (module 'network'): ns3::Buffer::Iterator ns3::Buffer::End() const [member function]
713 cls.add_method('End',
714 'ns3::Buffer::Iterator',
715 [],
716 is_const=True)
717 ## buffer.h (module 'network'): int32_t ns3::Buffer::GetCurrentEndOffset() const [member function]
718 cls.add_method('GetCurrentEndOffset',
719 'int32_t',
720 [],
721 is_const=True)
722 ## buffer.h (module 'network'): int32_t ns3::Buffer::GetCurrentStartOffset() const [member function]
723 cls.add_method('GetCurrentStartOffset',
724 'int32_t',
725 [],
726 is_const=True)
727 ## buffer.h (module 'network'): uint32_t ns3::Buffer::GetSerializedSize() const [member function]
728 cls.add_method('GetSerializedSize',
729 'uint32_t',
730 [],
731 is_const=True)
732 ## buffer.h (module 'network'): uint32_t ns3::Buffer::GetSize() const [member function]
733 cls.add_method('GetSize',
734 'uint32_t',
735 [],
736 is_const=True)
737 ## buffer.h (module 'network'): uint8_t const * ns3::Buffer::PeekData() const [member function]
738 cls.add_method('PeekData',
739 'uint8_t const *',
740 [],
741 is_const=True)
742 ## buffer.h (module 'network'): void ns3::Buffer::RemoveAtEnd(uint32_t end) [member function]
743 cls.add_method('RemoveAtEnd',
744 'void',
745 [param('uint32_t', 'end')])
746 ## buffer.h (module 'network'): void ns3::Buffer::RemoveAtStart(uint32_t start) [member function]
747 cls.add_method('RemoveAtStart',
748 'void',
749 [param('uint32_t', 'start')])
750 ## buffer.h (module 'network'): uint32_t ns3::Buffer::Serialize(uint8_t * buffer, uint32_t maxSize) const [member function]
751 cls.add_method('Serialize',
752 'uint32_t',
753 [param('uint8_t *', 'buffer'), param('uint32_t', 'maxSize')],
754 is_const=True)
755 return
756
757def register_Ns3BufferIterator_methods(root_module, cls):
758 ## buffer.h (module 'network'): ns3::Buffer::Iterator::Iterator(ns3::Buffer::Iterator const & arg0) [copy constructor]
759 cls.add_constructor([param('ns3::Buffer::Iterator const &', 'arg0')])
760 ## buffer.h (module 'network'): ns3::Buffer::Iterator::Iterator() [constructor]
761 cls.add_constructor([])
762 ## buffer.h (module 'network'): uint16_t ns3::Buffer::Iterator::CalculateIpChecksum(uint16_t size) [member function]
763 cls.add_method('CalculateIpChecksum',
764 'uint16_t',
765 [param('uint16_t', 'size')])
766 ## buffer.h (module 'network'): uint16_t ns3::Buffer::Iterator::CalculateIpChecksum(uint16_t size, uint32_t initialChecksum) [member function]
767 cls.add_method('CalculateIpChecksum',
768 'uint16_t',
769 [param('uint16_t', 'size'), param('uint32_t', 'initialChecksum')])
770 ## buffer.h (module 'network'): uint32_t ns3::Buffer::Iterator::GetDistanceFrom(ns3::Buffer::Iterator const & o) const [member function]
771 cls.add_method('GetDistanceFrom',
772 'uint32_t',
773 [param('ns3::Buffer::Iterator const &', 'o')],
774 is_const=True)
775 ## buffer.h (module 'network'): uint32_t ns3::Buffer::Iterator::GetSize() const [member function]
776 cls.add_method('GetSize',
777 'uint32_t',
778 [],
779 is_const=True)
780 ## buffer.h (module 'network'): bool ns3::Buffer::Iterator::IsEnd() const [member function]
781 cls.add_method('IsEnd',
782 'bool',
783 [],
784 is_const=True)
785 ## buffer.h (module 'network'): bool ns3::Buffer::Iterator::IsStart() const [member function]
786 cls.add_method('IsStart',
787 'bool',
788 [],
789 is_const=True)
790 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Next() [member function]
791 cls.add_method('Next',
792 'void',
793 [])
794 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Next(uint32_t delta) [member function]
795 cls.add_method('Next',
796 'void',
797 [param('uint32_t', 'delta')])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -0700798 ## buffer.h (module 'network'): uint8_t ns3::Buffer::Iterator::PeekU8() [member function]
799 cls.add_method('PeekU8',
800 'uint8_t',
801 [])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800802 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Prev() [member function]
803 cls.add_method('Prev',
804 'void',
805 [])
806 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Prev(uint32_t delta) [member function]
807 cls.add_method('Prev',
808 'void',
809 [param('uint32_t', 'delta')])
810 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Read(uint8_t * buffer, uint32_t size) [member function]
811 cls.add_method('Read',
812 'void',
813 [param('uint8_t *', 'buffer'), param('uint32_t', 'size')])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -0700814 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Read(ns3::Buffer::Iterator start, uint32_t size) [member function]
815 cls.add_method('Read',
816 'void',
817 [param('ns3::Buffer::Iterator', 'start'), param('uint32_t', 'size')])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -0800818 ## buffer.h (module 'network'): uint16_t ns3::Buffer::Iterator::ReadLsbtohU16() [member function]
819 cls.add_method('ReadLsbtohU16',
820 'uint16_t',
821 [])
822 ## buffer.h (module 'network'): uint32_t ns3::Buffer::Iterator::ReadLsbtohU32() [member function]
823 cls.add_method('ReadLsbtohU32',
824 'uint32_t',
825 [])
826 ## buffer.h (module 'network'): uint64_t ns3::Buffer::Iterator::ReadLsbtohU64() [member function]
827 cls.add_method('ReadLsbtohU64',
828 'uint64_t',
829 [])
830 ## buffer.h (module 'network'): uint16_t ns3::Buffer::Iterator::ReadNtohU16() [member function]
831 cls.add_method('ReadNtohU16',
832 'uint16_t',
833 [])
834 ## buffer.h (module 'network'): uint32_t ns3::Buffer::Iterator::ReadNtohU32() [member function]
835 cls.add_method('ReadNtohU32',
836 'uint32_t',
837 [])
838 ## buffer.h (module 'network'): uint64_t ns3::Buffer::Iterator::ReadNtohU64() [member function]
839 cls.add_method('ReadNtohU64',
840 'uint64_t',
841 [])
842 ## buffer.h (module 'network'): uint16_t ns3::Buffer::Iterator::ReadU16() [member function]
843 cls.add_method('ReadU16',
844 'uint16_t',
845 [])
846 ## buffer.h (module 'network'): uint32_t ns3::Buffer::Iterator::ReadU32() [member function]
847 cls.add_method('ReadU32',
848 'uint32_t',
849 [])
850 ## buffer.h (module 'network'): uint64_t ns3::Buffer::Iterator::ReadU64() [member function]
851 cls.add_method('ReadU64',
852 'uint64_t',
853 [])
854 ## buffer.h (module 'network'): uint8_t ns3::Buffer::Iterator::ReadU8() [member function]
855 cls.add_method('ReadU8',
856 'uint8_t',
857 [])
858 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Write(uint8_t const * buffer, uint32_t size) [member function]
859 cls.add_method('Write',
860 'void',
861 [param('uint8_t const *', 'buffer'), param('uint32_t', 'size')])
862 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Write(ns3::Buffer::Iterator start, ns3::Buffer::Iterator end) [member function]
863 cls.add_method('Write',
864 'void',
865 [param('ns3::Buffer::Iterator', 'start'), param('ns3::Buffer::Iterator', 'end')])
866 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteHtolsbU16(uint16_t data) [member function]
867 cls.add_method('WriteHtolsbU16',
868 'void',
869 [param('uint16_t', 'data')])
870 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteHtolsbU32(uint32_t data) [member function]
871 cls.add_method('WriteHtolsbU32',
872 'void',
873 [param('uint32_t', 'data')])
874 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteHtolsbU64(uint64_t data) [member function]
875 cls.add_method('WriteHtolsbU64',
876 'void',
877 [param('uint64_t', 'data')])
878 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteHtonU16(uint16_t data) [member function]
879 cls.add_method('WriteHtonU16',
880 'void',
881 [param('uint16_t', 'data')])
882 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteHtonU32(uint32_t data) [member function]
883 cls.add_method('WriteHtonU32',
884 'void',
885 [param('uint32_t', 'data')])
886 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteHtonU64(uint64_t data) [member function]
887 cls.add_method('WriteHtonU64',
888 'void',
889 [param('uint64_t', 'data')])
890 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteU16(uint16_t data) [member function]
891 cls.add_method('WriteU16',
892 'void',
893 [param('uint16_t', 'data')])
894 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteU32(uint32_t data) [member function]
895 cls.add_method('WriteU32',
896 'void',
897 [param('uint32_t', 'data')])
898 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteU64(uint64_t data) [member function]
899 cls.add_method('WriteU64',
900 'void',
901 [param('uint64_t', 'data')])
902 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteU8(uint8_t data) [member function]
903 cls.add_method('WriteU8',
904 'void',
905 [param('uint8_t', 'data')])
906 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteU8(uint8_t data, uint32_t len) [member function]
907 cls.add_method('WriteU8',
908 'void',
909 [param('uint8_t', 'data'), param('uint32_t', 'len')])
910 return
911
912def register_Ns3ByteTagIterator_methods(root_module, cls):
913 ## packet.h (module 'network'): ns3::ByteTagIterator::ByteTagIterator(ns3::ByteTagIterator const & arg0) [copy constructor]
914 cls.add_constructor([param('ns3::ByteTagIterator const &', 'arg0')])
915 ## packet.h (module 'network'): bool ns3::ByteTagIterator::HasNext() const [member function]
916 cls.add_method('HasNext',
917 'bool',
918 [],
919 is_const=True)
920 ## packet.h (module 'network'): ns3::ByteTagIterator::Item ns3::ByteTagIterator::Next() [member function]
921 cls.add_method('Next',
922 'ns3::ByteTagIterator::Item',
923 [])
924 return
925
926def register_Ns3ByteTagIteratorItem_methods(root_module, cls):
927 ## packet.h (module 'network'): ns3::ByteTagIterator::Item::Item(ns3::ByteTagIterator::Item const & arg0) [copy constructor]
928 cls.add_constructor([param('ns3::ByteTagIterator::Item const &', 'arg0')])
929 ## packet.h (module 'network'): uint32_t ns3::ByteTagIterator::Item::GetEnd() const [member function]
930 cls.add_method('GetEnd',
931 'uint32_t',
932 [],
933 is_const=True)
934 ## packet.h (module 'network'): uint32_t ns3::ByteTagIterator::Item::GetStart() const [member function]
935 cls.add_method('GetStart',
936 'uint32_t',
937 [],
938 is_const=True)
939 ## packet.h (module 'network'): void ns3::ByteTagIterator::Item::GetTag(ns3::Tag & tag) const [member function]
940 cls.add_method('GetTag',
941 'void',
942 [param('ns3::Tag &', 'tag')],
943 is_const=True)
944 ## packet.h (module 'network'): ns3::TypeId ns3::ByteTagIterator::Item::GetTypeId() const [member function]
945 cls.add_method('GetTypeId',
946 'ns3::TypeId',
947 [],
948 is_const=True)
949 return
950
951def register_Ns3ByteTagList_methods(root_module, cls):
952 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::ByteTagList() [constructor]
953 cls.add_constructor([])
954 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::ByteTagList(ns3::ByteTagList const & o) [copy constructor]
955 cls.add_constructor([param('ns3::ByteTagList const &', 'o')])
956 ## 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]
957 cls.add_method('Add',
958 'ns3::TagBuffer',
959 [param('ns3::TypeId', 'tid'), param('uint32_t', 'bufferSize'), param('int32_t', 'start'), param('int32_t', 'end')])
960 ## byte-tag-list.h (module 'network'): void ns3::ByteTagList::Add(ns3::ByteTagList const & o) [member function]
961 cls.add_method('Add',
962 'void',
963 [param('ns3::ByteTagList const &', 'o')])
964 ## byte-tag-list.h (module 'network'): void ns3::ByteTagList::AddAtEnd(int32_t adjustment, int32_t appendOffset) [member function]
965 cls.add_method('AddAtEnd',
966 'void',
967 [param('int32_t', 'adjustment'), param('int32_t', 'appendOffset')])
968 ## byte-tag-list.h (module 'network'): void ns3::ByteTagList::AddAtStart(int32_t adjustment, int32_t prependOffset) [member function]
969 cls.add_method('AddAtStart',
970 'void',
971 [param('int32_t', 'adjustment'), param('int32_t', 'prependOffset')])
972 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator ns3::ByteTagList::Begin(int32_t offsetStart, int32_t offsetEnd) const [member function]
973 cls.add_method('Begin',
974 'ns3::ByteTagList::Iterator',
975 [param('int32_t', 'offsetStart'), param('int32_t', 'offsetEnd')],
976 is_const=True)
977 ## byte-tag-list.h (module 'network'): void ns3::ByteTagList::RemoveAll() [member function]
978 cls.add_method('RemoveAll',
979 'void',
980 [])
981 return
982
983def register_Ns3ByteTagListIterator_methods(root_module, cls):
984 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Iterator(ns3::ByteTagList::Iterator const & arg0) [copy constructor]
985 cls.add_constructor([param('ns3::ByteTagList::Iterator const &', 'arg0')])
986 ## byte-tag-list.h (module 'network'): uint32_t ns3::ByteTagList::Iterator::GetOffsetStart() const [member function]
987 cls.add_method('GetOffsetStart',
988 'uint32_t',
989 [],
990 is_const=True)
991 ## byte-tag-list.h (module 'network'): bool ns3::ByteTagList::Iterator::HasNext() const [member function]
992 cls.add_method('HasNext',
993 'bool',
994 [],
995 is_const=True)
996 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item ns3::ByteTagList::Iterator::Next() [member function]
997 cls.add_method('Next',
998 'ns3::ByteTagList::Iterator::Item',
999 [])
1000 return
1001
1002def register_Ns3ByteTagListIteratorItem_methods(root_module, cls):
1003 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::Item(ns3::ByteTagList::Iterator::Item const & arg0) [copy constructor]
1004 cls.add_constructor([param('ns3::ByteTagList::Iterator::Item const &', 'arg0')])
1005 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::Item(ns3::TagBuffer buf) [constructor]
1006 cls.add_constructor([param('ns3::TagBuffer', 'buf')])
1007 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::buf [variable]
1008 cls.add_instance_attribute('buf', 'ns3::TagBuffer', is_const=False)
1009 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::end [variable]
1010 cls.add_instance_attribute('end', 'int32_t', is_const=False)
1011 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::size [variable]
1012 cls.add_instance_attribute('size', 'uint32_t', is_const=False)
1013 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::start [variable]
1014 cls.add_instance_attribute('start', 'int32_t', is_const=False)
1015 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::tid [variable]
1016 cls.add_instance_attribute('tid', 'ns3::TypeId', is_const=False)
1017 return
1018
1019def register_Ns3CallbackBase_methods(root_module, cls):
1020 ## callback.h (module 'core'): ns3::CallbackBase::CallbackBase(ns3::CallbackBase const & arg0) [copy constructor]
1021 cls.add_constructor([param('ns3::CallbackBase const &', 'arg0')])
1022 ## callback.h (module 'core'): ns3::CallbackBase::CallbackBase() [constructor]
1023 cls.add_constructor([])
1024 ## callback.h (module 'core'): ns3::Ptr<ns3::CallbackImplBase> ns3::CallbackBase::GetImpl() const [member function]
1025 cls.add_method('GetImpl',
1026 'ns3::Ptr< ns3::CallbackImplBase >',
1027 [],
1028 is_const=True)
1029 ## callback.h (module 'core'): ns3::CallbackBase::CallbackBase(ns3::Ptr<ns3::CallbackImplBase> impl) [constructor]
1030 cls.add_constructor([param('ns3::Ptr< ns3::CallbackImplBase >', 'impl')],
1031 visibility='protected')
1032 ## callback.h (module 'core'): static std::string ns3::CallbackBase::Demangle(std::string const & mangled) [member function]
1033 cls.add_method('Demangle',
1034 'std::string',
1035 [param('std::string const &', 'mangled')],
1036 is_static=True, visibility='protected')
1037 return
1038
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001039def register_Ns3EventId_methods(root_module, cls):
1040 cls.add_binary_comparison_operator('!=')
1041 cls.add_binary_comparison_operator('==')
1042 ## event-id.h (module 'core'): ns3::EventId::EventId(ns3::EventId const & arg0) [copy constructor]
1043 cls.add_constructor([param('ns3::EventId const &', 'arg0')])
1044 ## event-id.h (module 'core'): ns3::EventId::EventId() [constructor]
1045 cls.add_constructor([])
1046 ## event-id.h (module 'core'): ns3::EventId::EventId(ns3::Ptr<ns3::EventImpl> const & impl, uint64_t ts, uint32_t context, uint32_t uid) [constructor]
1047 cls.add_constructor([param('ns3::Ptr< ns3::EventImpl > const &', 'impl'), param('uint64_t', 'ts'), param('uint32_t', 'context'), param('uint32_t', 'uid')])
1048 ## event-id.h (module 'core'): void ns3::EventId::Cancel() [member function]
1049 cls.add_method('Cancel',
1050 'void',
1051 [])
1052 ## event-id.h (module 'core'): uint32_t ns3::EventId::GetContext() const [member function]
1053 cls.add_method('GetContext',
1054 'uint32_t',
1055 [],
1056 is_const=True)
1057 ## event-id.h (module 'core'): uint64_t ns3::EventId::GetTs() const [member function]
1058 cls.add_method('GetTs',
1059 'uint64_t',
1060 [],
1061 is_const=True)
1062 ## event-id.h (module 'core'): uint32_t ns3::EventId::GetUid() const [member function]
1063 cls.add_method('GetUid',
1064 'uint32_t',
1065 [],
1066 is_const=True)
1067 ## event-id.h (module 'core'): bool ns3::EventId::IsExpired() const [member function]
1068 cls.add_method('IsExpired',
1069 'bool',
1070 [],
1071 is_const=True)
1072 ## event-id.h (module 'core'): bool ns3::EventId::IsRunning() const [member function]
1073 cls.add_method('IsRunning',
1074 'bool',
1075 [],
1076 is_const=True)
1077 ## event-id.h (module 'core'): ns3::EventImpl * ns3::EventId::PeekEventImpl() const [member function]
1078 cls.add_method('PeekEventImpl',
1079 'ns3::EventImpl *',
1080 [],
1081 is_const=True)
1082 return
1083
1084def register_Ns3Ipv4Address_methods(root_module, cls):
1085 cls.add_binary_comparison_operator('!=')
1086 cls.add_output_stream_operator()
1087 cls.add_binary_comparison_operator('==')
1088 cls.add_binary_comparison_operator('<')
1089 ## ipv4-address.h (module 'network'): ns3::Ipv4Address::Ipv4Address(ns3::Ipv4Address const & arg0) [copy constructor]
1090 cls.add_constructor([param('ns3::Ipv4Address const &', 'arg0')])
1091 ## ipv4-address.h (module 'network'): ns3::Ipv4Address::Ipv4Address() [constructor]
1092 cls.add_constructor([])
1093 ## ipv4-address.h (module 'network'): ns3::Ipv4Address::Ipv4Address(uint32_t address) [constructor]
1094 cls.add_constructor([param('uint32_t', 'address')])
1095 ## ipv4-address.h (module 'network'): ns3::Ipv4Address::Ipv4Address(char const * address) [constructor]
1096 cls.add_constructor([param('char const *', 'address')])
1097 ## ipv4-address.h (module 'network'): ns3::Ipv4Address ns3::Ipv4Address::CombineMask(ns3::Ipv4Mask const & mask) const [member function]
1098 cls.add_method('CombineMask',
1099 'ns3::Ipv4Address',
1100 [param('ns3::Ipv4Mask const &', 'mask')],
1101 is_const=True)
1102 ## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::ConvertFrom(ns3::Address const & address) [member function]
1103 cls.add_method('ConvertFrom',
1104 'ns3::Ipv4Address',
1105 [param('ns3::Address const &', 'address')],
1106 is_static=True)
1107 ## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::Deserialize(uint8_t const * buf) [member function]
1108 cls.add_method('Deserialize',
1109 'ns3::Ipv4Address',
1110 [param('uint8_t const *', 'buf')],
1111 is_static=True)
Alexander Afanasyev4052f952012-06-08 17:57:59 -07001112 ## ipv4-address.h (module 'network'): uint32_t ns3::Ipv4Address::Get() const [member function]
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001113 cls.add_method('Get',
Alexander Afanasyev4052f952012-06-08 17:57:59 -07001114 'uint32_t',
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001115 [],
1116 is_const=True)
1117 ## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::GetAny() [member function]
1118 cls.add_method('GetAny',
1119 'ns3::Ipv4Address',
1120 [],
1121 is_static=True)
1122 ## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::GetBroadcast() [member function]
1123 cls.add_method('GetBroadcast',
1124 'ns3::Ipv4Address',
1125 [],
1126 is_static=True)
1127 ## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::GetLoopback() [member function]
1128 cls.add_method('GetLoopback',
1129 'ns3::Ipv4Address',
1130 [],
1131 is_static=True)
1132 ## ipv4-address.h (module 'network'): ns3::Ipv4Address ns3::Ipv4Address::GetSubnetDirectedBroadcast(ns3::Ipv4Mask const & mask) const [member function]
1133 cls.add_method('GetSubnetDirectedBroadcast',
1134 'ns3::Ipv4Address',
1135 [param('ns3::Ipv4Mask const &', 'mask')],
1136 is_const=True)
1137 ## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::GetZero() [member function]
1138 cls.add_method('GetZero',
1139 'ns3::Ipv4Address',
1140 [],
1141 is_static=True)
1142 ## ipv4-address.h (module 'network'): bool ns3::Ipv4Address::IsBroadcast() const [member function]
1143 cls.add_method('IsBroadcast',
1144 'bool',
1145 [],
1146 is_const=True)
1147 ## ipv4-address.h (module 'network'): bool ns3::Ipv4Address::IsEqual(ns3::Ipv4Address const & other) const [member function]
1148 cls.add_method('IsEqual',
1149 'bool',
1150 [param('ns3::Ipv4Address const &', 'other')],
1151 is_const=True)
1152 ## ipv4-address.h (module 'network'): bool ns3::Ipv4Address::IsLocalMulticast() const [member function]
1153 cls.add_method('IsLocalMulticast',
1154 'bool',
1155 [],
1156 is_const=True)
1157 ## ipv4-address.h (module 'network'): static bool ns3::Ipv4Address::IsMatchingType(ns3::Address const & address) [member function]
1158 cls.add_method('IsMatchingType',
1159 'bool',
1160 [param('ns3::Address const &', 'address')],
1161 is_static=True)
1162 ## ipv4-address.h (module 'network'): bool ns3::Ipv4Address::IsMulticast() const [member function]
1163 cls.add_method('IsMulticast',
1164 'bool',
1165 [],
1166 is_const=True)
1167 ## ipv4-address.h (module 'network'): bool ns3::Ipv4Address::IsSubnetDirectedBroadcast(ns3::Ipv4Mask const & mask) const [member function]
1168 cls.add_method('IsSubnetDirectedBroadcast',
1169 'bool',
1170 [param('ns3::Ipv4Mask const &', 'mask')],
1171 is_const=True)
1172 ## ipv4-address.h (module 'network'): void ns3::Ipv4Address::Print(std::ostream & os) const [member function]
1173 cls.add_method('Print',
1174 'void',
1175 [param('std::ostream &', 'os')],
1176 is_const=True)
1177 ## ipv4-address.h (module 'network'): void ns3::Ipv4Address::Serialize(uint8_t * buf) const [member function]
1178 cls.add_method('Serialize',
1179 'void',
1180 [param('uint8_t *', 'buf')],
1181 is_const=True)
1182 ## ipv4-address.h (module 'network'): void ns3::Ipv4Address::Set(uint32_t address) [member function]
1183 cls.add_method('Set',
1184 'void',
1185 [param('uint32_t', 'address')])
1186 ## ipv4-address.h (module 'network'): void ns3::Ipv4Address::Set(char const * address) [member function]
1187 cls.add_method('Set',
1188 'void',
1189 [param('char const *', 'address')])
1190 return
1191
1192def register_Ns3Ipv4Mask_methods(root_module, cls):
1193 cls.add_binary_comparison_operator('!=')
1194 cls.add_output_stream_operator()
1195 cls.add_binary_comparison_operator('==')
1196 ## ipv4-address.h (module 'network'): ns3::Ipv4Mask::Ipv4Mask(ns3::Ipv4Mask const & arg0) [copy constructor]
1197 cls.add_constructor([param('ns3::Ipv4Mask const &', 'arg0')])
1198 ## ipv4-address.h (module 'network'): ns3::Ipv4Mask::Ipv4Mask() [constructor]
1199 cls.add_constructor([])
1200 ## ipv4-address.h (module 'network'): ns3::Ipv4Mask::Ipv4Mask(uint32_t mask) [constructor]
1201 cls.add_constructor([param('uint32_t', 'mask')])
1202 ## ipv4-address.h (module 'network'): ns3::Ipv4Mask::Ipv4Mask(char const * mask) [constructor]
1203 cls.add_constructor([param('char const *', 'mask')])
1204 ## ipv4-address.h (module 'network'): uint32_t ns3::Ipv4Mask::Get() const [member function]
1205 cls.add_method('Get',
1206 'uint32_t',
1207 [],
1208 is_const=True)
1209 ## ipv4-address.h (module 'network'): uint32_t ns3::Ipv4Mask::GetInverse() const [member function]
1210 cls.add_method('GetInverse',
1211 'uint32_t',
1212 [],
1213 is_const=True)
1214 ## ipv4-address.h (module 'network'): static ns3::Ipv4Mask ns3::Ipv4Mask::GetLoopback() [member function]
1215 cls.add_method('GetLoopback',
1216 'ns3::Ipv4Mask',
1217 [],
1218 is_static=True)
1219 ## ipv4-address.h (module 'network'): static ns3::Ipv4Mask ns3::Ipv4Mask::GetOnes() [member function]
1220 cls.add_method('GetOnes',
1221 'ns3::Ipv4Mask',
1222 [],
1223 is_static=True)
1224 ## ipv4-address.h (module 'network'): uint16_t ns3::Ipv4Mask::GetPrefixLength() const [member function]
1225 cls.add_method('GetPrefixLength',
1226 'uint16_t',
1227 [],
1228 is_const=True)
1229 ## ipv4-address.h (module 'network'): static ns3::Ipv4Mask ns3::Ipv4Mask::GetZero() [member function]
1230 cls.add_method('GetZero',
1231 'ns3::Ipv4Mask',
1232 [],
1233 is_static=True)
1234 ## ipv4-address.h (module 'network'): bool ns3::Ipv4Mask::IsEqual(ns3::Ipv4Mask other) const [member function]
1235 cls.add_method('IsEqual',
1236 'bool',
1237 [param('ns3::Ipv4Mask', 'other')],
1238 is_const=True)
1239 ## ipv4-address.h (module 'network'): bool ns3::Ipv4Mask::IsMatch(ns3::Ipv4Address a, ns3::Ipv4Address b) const [member function]
1240 cls.add_method('IsMatch',
1241 'bool',
1242 [param('ns3::Ipv4Address', 'a'), param('ns3::Ipv4Address', 'b')],
1243 is_const=True)
1244 ## ipv4-address.h (module 'network'): void ns3::Ipv4Mask::Print(std::ostream & os) const [member function]
1245 cls.add_method('Print',
1246 'void',
1247 [param('std::ostream &', 'os')],
1248 is_const=True)
1249 ## ipv4-address.h (module 'network'): void ns3::Ipv4Mask::Set(uint32_t mask) [member function]
1250 cls.add_method('Set',
1251 'void',
1252 [param('uint32_t', 'mask')])
1253 return
1254
1255def register_Ns3Ipv6Address_methods(root_module, cls):
1256 cls.add_binary_comparison_operator('!=')
1257 cls.add_output_stream_operator()
1258 cls.add_binary_comparison_operator('==')
1259 cls.add_binary_comparison_operator('<')
1260 ## ipv6-address.h (module 'network'): ns3::Ipv6Address::Ipv6Address() [constructor]
1261 cls.add_constructor([])
1262 ## ipv6-address.h (module 'network'): ns3::Ipv6Address::Ipv6Address(char const * address) [constructor]
1263 cls.add_constructor([param('char const *', 'address')])
1264 ## ipv6-address.h (module 'network'): ns3::Ipv6Address::Ipv6Address(uint8_t * address) [constructor]
1265 cls.add_constructor([param('uint8_t *', 'address')])
1266 ## ipv6-address.h (module 'network'): ns3::Ipv6Address::Ipv6Address(ns3::Ipv6Address const & addr) [copy constructor]
1267 cls.add_constructor([param('ns3::Ipv6Address const &', 'addr')])
1268 ## ipv6-address.h (module 'network'): ns3::Ipv6Address::Ipv6Address(ns3::Ipv6Address const * addr) [constructor]
1269 cls.add_constructor([param('ns3::Ipv6Address const *', 'addr')])
1270 ## ipv6-address.h (module 'network'): ns3::Ipv6Address ns3::Ipv6Address::CombinePrefix(ns3::Ipv6Prefix const & prefix) [member function]
1271 cls.add_method('CombinePrefix',
1272 'ns3::Ipv6Address',
1273 [param('ns3::Ipv6Prefix const &', 'prefix')])
1274 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::ConvertFrom(ns3::Address const & address) [member function]
1275 cls.add_method('ConvertFrom',
1276 'ns3::Ipv6Address',
1277 [param('ns3::Address const &', 'address')],
1278 is_static=True)
1279 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::Deserialize(uint8_t const * buf) [member function]
1280 cls.add_method('Deserialize',
1281 'ns3::Ipv6Address',
1282 [param('uint8_t const *', 'buf')],
1283 is_static=True)
1284 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetAllHostsMulticast() [member function]
1285 cls.add_method('GetAllHostsMulticast',
1286 'ns3::Ipv6Address',
1287 [],
1288 is_static=True)
1289 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetAllNodesMulticast() [member function]
1290 cls.add_method('GetAllNodesMulticast',
1291 'ns3::Ipv6Address',
1292 [],
1293 is_static=True)
1294 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetAllRoutersMulticast() [member function]
1295 cls.add_method('GetAllRoutersMulticast',
1296 'ns3::Ipv6Address',
1297 [],
1298 is_static=True)
1299 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetAny() [member function]
1300 cls.add_method('GetAny',
1301 'ns3::Ipv6Address',
1302 [],
1303 is_static=True)
1304 ## ipv6-address.h (module 'network'): void ns3::Ipv6Address::GetBytes(uint8_t * buf) const [member function]
1305 cls.add_method('GetBytes',
1306 'void',
1307 [param('uint8_t *', 'buf')],
1308 is_const=True)
Alexander Afanasyev6f933532012-02-29 13:30:37 -08001309 ## ipv6-address.h (module 'network'): ns3::Ipv4Address ns3::Ipv6Address::GetIpv4MappedAddress() const [member function]
1310 cls.add_method('GetIpv4MappedAddress',
1311 'ns3::Ipv4Address',
1312 [],
1313 is_const=True)
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001314 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetLoopback() [member function]
1315 cls.add_method('GetLoopback',
1316 'ns3::Ipv6Address',
1317 [],
1318 is_static=True)
1319 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetOnes() [member function]
1320 cls.add_method('GetOnes',
1321 'ns3::Ipv6Address',
1322 [],
1323 is_static=True)
1324 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetZero() [member function]
1325 cls.add_method('GetZero',
1326 'ns3::Ipv6Address',
1327 [],
1328 is_static=True)
1329 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsAllHostsMulticast() const [member function]
1330 cls.add_method('IsAllHostsMulticast',
1331 'bool',
1332 [],
1333 is_const=True)
1334 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsAllNodesMulticast() const [member function]
1335 cls.add_method('IsAllNodesMulticast',
1336 'bool',
1337 [],
1338 is_const=True)
1339 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsAllRoutersMulticast() const [member function]
1340 cls.add_method('IsAllRoutersMulticast',
1341 'bool',
1342 [],
1343 is_const=True)
1344 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsAny() const [member function]
1345 cls.add_method('IsAny',
1346 'bool',
1347 [],
1348 is_const=True)
1349 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsEqual(ns3::Ipv6Address const & other) const [member function]
1350 cls.add_method('IsEqual',
1351 'bool',
1352 [param('ns3::Ipv6Address const &', 'other')],
1353 is_const=True)
Alexander Afanasyev6f933532012-02-29 13:30:37 -08001354 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsIpv4MappedAddress() [member function]
1355 cls.add_method('IsIpv4MappedAddress',
1356 'bool',
1357 [])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001358 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsLinkLocal() const [member function]
1359 cls.add_method('IsLinkLocal',
1360 'bool',
1361 [],
1362 is_const=True)
Alexander Afanasyev6f933532012-02-29 13:30:37 -08001363 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsLinkLocalMulticast() const [member function]
1364 cls.add_method('IsLinkLocalMulticast',
1365 'bool',
1366 [],
1367 is_const=True)
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001368 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsLocalhost() const [member function]
1369 cls.add_method('IsLocalhost',
1370 'bool',
1371 [],
1372 is_const=True)
1373 ## ipv6-address.h (module 'network'): static bool ns3::Ipv6Address::IsMatchingType(ns3::Address const & address) [member function]
1374 cls.add_method('IsMatchingType',
1375 'bool',
1376 [param('ns3::Address const &', 'address')],
1377 is_static=True)
1378 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsMulticast() const [member function]
1379 cls.add_method('IsMulticast',
1380 'bool',
1381 [],
1382 is_const=True)
1383 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsSolicitedMulticast() const [member function]
1384 cls.add_method('IsSolicitedMulticast',
1385 'bool',
1386 [],
1387 is_const=True)
1388 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::MakeAutoconfiguredAddress(ns3::Mac48Address addr, ns3::Ipv6Address prefix) [member function]
1389 cls.add_method('MakeAutoconfiguredAddress',
1390 'ns3::Ipv6Address',
1391 [param('ns3::Mac48Address', 'addr'), param('ns3::Ipv6Address', 'prefix')],
1392 is_static=True)
1393 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::MakeAutoconfiguredLinkLocalAddress(ns3::Mac48Address mac) [member function]
1394 cls.add_method('MakeAutoconfiguredLinkLocalAddress',
1395 'ns3::Ipv6Address',
1396 [param('ns3::Mac48Address', 'mac')],
1397 is_static=True)
Alexander Afanasyev6f933532012-02-29 13:30:37 -08001398 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::MakeIpv4MappedAddress(ns3::Ipv4Address addr) [member function]
1399 cls.add_method('MakeIpv4MappedAddress',
1400 'ns3::Ipv6Address',
1401 [param('ns3::Ipv4Address', 'addr')],
1402 is_static=True)
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001403 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::MakeSolicitedAddress(ns3::Ipv6Address addr) [member function]
1404 cls.add_method('MakeSolicitedAddress',
1405 'ns3::Ipv6Address',
1406 [param('ns3::Ipv6Address', 'addr')],
1407 is_static=True)
1408 ## ipv6-address.h (module 'network'): void ns3::Ipv6Address::Print(std::ostream & os) const [member function]
1409 cls.add_method('Print',
1410 'void',
1411 [param('std::ostream &', 'os')],
1412 is_const=True)
1413 ## ipv6-address.h (module 'network'): void ns3::Ipv6Address::Serialize(uint8_t * buf) const [member function]
1414 cls.add_method('Serialize',
1415 'void',
1416 [param('uint8_t *', 'buf')],
1417 is_const=True)
1418 ## ipv6-address.h (module 'network'): void ns3::Ipv6Address::Set(char const * address) [member function]
1419 cls.add_method('Set',
1420 'void',
1421 [param('char const *', 'address')])
1422 ## ipv6-address.h (module 'network'): void ns3::Ipv6Address::Set(uint8_t * address) [member function]
1423 cls.add_method('Set',
1424 'void',
1425 [param('uint8_t *', 'address')])
1426 return
1427
1428def register_Ns3Ipv6Prefix_methods(root_module, cls):
1429 cls.add_binary_comparison_operator('!=')
1430 cls.add_output_stream_operator()
1431 cls.add_binary_comparison_operator('==')
1432 ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix() [constructor]
1433 cls.add_constructor([])
1434 ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix(uint8_t * prefix) [constructor]
1435 cls.add_constructor([param('uint8_t *', 'prefix')])
1436 ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix(char const * prefix) [constructor]
1437 cls.add_constructor([param('char const *', 'prefix')])
1438 ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix(uint8_t prefix) [constructor]
1439 cls.add_constructor([param('uint8_t', 'prefix')])
1440 ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix(ns3::Ipv6Prefix const & prefix) [copy constructor]
1441 cls.add_constructor([param('ns3::Ipv6Prefix const &', 'prefix')])
1442 ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix(ns3::Ipv6Prefix const * prefix) [constructor]
1443 cls.add_constructor([param('ns3::Ipv6Prefix const *', 'prefix')])
1444 ## ipv6-address.h (module 'network'): void ns3::Ipv6Prefix::GetBytes(uint8_t * buf) const [member function]
1445 cls.add_method('GetBytes',
1446 'void',
1447 [param('uint8_t *', 'buf')],
1448 is_const=True)
1449 ## ipv6-address.h (module 'network'): static ns3::Ipv6Prefix ns3::Ipv6Prefix::GetLoopback() [member function]
1450 cls.add_method('GetLoopback',
1451 'ns3::Ipv6Prefix',
1452 [],
1453 is_static=True)
1454 ## ipv6-address.h (module 'network'): static ns3::Ipv6Prefix ns3::Ipv6Prefix::GetOnes() [member function]
1455 cls.add_method('GetOnes',
1456 'ns3::Ipv6Prefix',
1457 [],
1458 is_static=True)
1459 ## ipv6-address.h (module 'network'): uint8_t ns3::Ipv6Prefix::GetPrefixLength() const [member function]
1460 cls.add_method('GetPrefixLength',
1461 'uint8_t',
1462 [],
1463 is_const=True)
1464 ## ipv6-address.h (module 'network'): static ns3::Ipv6Prefix ns3::Ipv6Prefix::GetZero() [member function]
1465 cls.add_method('GetZero',
1466 'ns3::Ipv6Prefix',
1467 [],
1468 is_static=True)
1469 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Prefix::IsEqual(ns3::Ipv6Prefix const & other) const [member function]
1470 cls.add_method('IsEqual',
1471 'bool',
1472 [param('ns3::Ipv6Prefix const &', 'other')],
1473 is_const=True)
1474 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Prefix::IsMatch(ns3::Ipv6Address a, ns3::Ipv6Address b) const [member function]
1475 cls.add_method('IsMatch',
1476 'bool',
1477 [param('ns3::Ipv6Address', 'a'), param('ns3::Ipv6Address', 'b')],
1478 is_const=True)
1479 ## ipv6-address.h (module 'network'): void ns3::Ipv6Prefix::Print(std::ostream & os) const [member function]
1480 cls.add_method('Print',
1481 'void',
1482 [param('std::ostream &', 'os')],
1483 is_const=True)
1484 return
1485
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001486def register_Ns3NodeContainer_methods(root_module, cls):
1487 ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer(ns3::NodeContainer const & arg0) [copy constructor]
1488 cls.add_constructor([param('ns3::NodeContainer const &', 'arg0')])
1489 ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer() [constructor]
1490 cls.add_constructor([])
1491 ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer(ns3::Ptr<ns3::Node> node) [constructor]
1492 cls.add_constructor([param('ns3::Ptr< ns3::Node >', 'node')])
1493 ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer(std::string nodeName) [constructor]
1494 cls.add_constructor([param('std::string', 'nodeName')])
1495 ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer(ns3::NodeContainer const & a, ns3::NodeContainer const & b) [constructor]
1496 cls.add_constructor([param('ns3::NodeContainer const &', 'a'), param('ns3::NodeContainer const &', 'b')])
1497 ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer(ns3::NodeContainer const & a, ns3::NodeContainer const & b, ns3::NodeContainer const & c) [constructor]
1498 cls.add_constructor([param('ns3::NodeContainer const &', 'a'), param('ns3::NodeContainer const &', 'b'), param('ns3::NodeContainer const &', 'c')])
1499 ## 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]
1500 cls.add_constructor([param('ns3::NodeContainer const &', 'a'), param('ns3::NodeContainer const &', 'b'), param('ns3::NodeContainer const &', 'c'), param('ns3::NodeContainer const &', 'd')])
1501 ## 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]
1502 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')])
1503 ## node-container.h (module 'network'): void ns3::NodeContainer::Add(ns3::NodeContainer other) [member function]
1504 cls.add_method('Add',
1505 'void',
1506 [param('ns3::NodeContainer', 'other')])
1507 ## node-container.h (module 'network'): void ns3::NodeContainer::Add(ns3::Ptr<ns3::Node> node) [member function]
1508 cls.add_method('Add',
1509 'void',
1510 [param('ns3::Ptr< ns3::Node >', 'node')])
1511 ## node-container.h (module 'network'): void ns3::NodeContainer::Add(std::string nodeName) [member function]
1512 cls.add_method('Add',
1513 'void',
1514 [param('std::string', 'nodeName')])
1515 ## 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]
1516 cls.add_method('Begin',
1517 '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Node > const, std::vector< ns3::Ptr< ns3::Node > > >',
1518 [],
1519 is_const=True)
1520 ## node-container.h (module 'network'): void ns3::NodeContainer::Create(uint32_t n) [member function]
1521 cls.add_method('Create',
1522 'void',
1523 [param('uint32_t', 'n')])
1524 ## node-container.h (module 'network'): void ns3::NodeContainer::Create(uint32_t n, uint32_t systemId) [member function]
1525 cls.add_method('Create',
1526 'void',
1527 [param('uint32_t', 'n'), param('uint32_t', 'systemId')])
1528 ## 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]
1529 cls.add_method('End',
1530 '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Node > const, std::vector< ns3::Ptr< ns3::Node > > >',
1531 [],
1532 is_const=True)
1533 ## node-container.h (module 'network'): ns3::Ptr<ns3::Node> ns3::NodeContainer::Get(uint32_t i) const [member function]
1534 cls.add_method('Get',
1535 'ns3::Ptr< ns3::Node >',
1536 [param('uint32_t', 'i')],
1537 is_const=True)
1538 ## node-container.h (module 'network'): static ns3::NodeContainer ns3::NodeContainer::GetGlobal() [member function]
1539 cls.add_method('GetGlobal',
1540 'ns3::NodeContainer',
1541 [],
1542 is_static=True)
1543 ## node-container.h (module 'network'): uint32_t ns3::NodeContainer::GetN() const [member function]
1544 cls.add_method('GetN',
1545 'uint32_t',
1546 [],
1547 is_const=True)
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001548 return
1549
1550def register_Ns3ObjectBase_methods(root_module, cls):
1551 ## object-base.h (module 'core'): ns3::ObjectBase::ObjectBase() [constructor]
1552 cls.add_constructor([])
1553 ## object-base.h (module 'core'): ns3::ObjectBase::ObjectBase(ns3::ObjectBase const & arg0) [copy constructor]
1554 cls.add_constructor([param('ns3::ObjectBase const &', 'arg0')])
1555 ## object-base.h (module 'core'): void ns3::ObjectBase::GetAttribute(std::string name, ns3::AttributeValue & value) const [member function]
1556 cls.add_method('GetAttribute',
1557 'void',
1558 [param('std::string', 'name'), param('ns3::AttributeValue &', 'value')],
1559 is_const=True)
1560 ## object-base.h (module 'core'): bool ns3::ObjectBase::GetAttributeFailSafe(std::string name, ns3::AttributeValue & attribute) const [member function]
1561 cls.add_method('GetAttributeFailSafe',
1562 'bool',
1563 [param('std::string', 'name'), param('ns3::AttributeValue &', 'attribute')],
1564 is_const=True)
1565 ## object-base.h (module 'core'): ns3::TypeId ns3::ObjectBase::GetInstanceTypeId() const [member function]
1566 cls.add_method('GetInstanceTypeId',
1567 'ns3::TypeId',
1568 [],
1569 is_pure_virtual=True, is_const=True, is_virtual=True)
1570 ## object-base.h (module 'core'): static ns3::TypeId ns3::ObjectBase::GetTypeId() [member function]
1571 cls.add_method('GetTypeId',
1572 'ns3::TypeId',
1573 [],
1574 is_static=True)
1575 ## object-base.h (module 'core'): void ns3::ObjectBase::SetAttribute(std::string name, ns3::AttributeValue const & value) [member function]
1576 cls.add_method('SetAttribute',
1577 'void',
1578 [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')])
1579 ## object-base.h (module 'core'): bool ns3::ObjectBase::SetAttributeFailSafe(std::string name, ns3::AttributeValue const & value) [member function]
1580 cls.add_method('SetAttributeFailSafe',
1581 'bool',
1582 [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')])
1583 ## object-base.h (module 'core'): bool ns3::ObjectBase::TraceConnect(std::string name, std::string context, ns3::CallbackBase const & cb) [member function]
1584 cls.add_method('TraceConnect',
1585 'bool',
1586 [param('std::string', 'name'), param('std::string', 'context'), param('ns3::CallbackBase const &', 'cb')])
1587 ## object-base.h (module 'core'): bool ns3::ObjectBase::TraceConnectWithoutContext(std::string name, ns3::CallbackBase const & cb) [member function]
1588 cls.add_method('TraceConnectWithoutContext',
1589 'bool',
1590 [param('std::string', 'name'), param('ns3::CallbackBase const &', 'cb')])
1591 ## object-base.h (module 'core'): bool ns3::ObjectBase::TraceDisconnect(std::string name, std::string context, ns3::CallbackBase const & cb) [member function]
1592 cls.add_method('TraceDisconnect',
1593 'bool',
1594 [param('std::string', 'name'), param('std::string', 'context'), param('ns3::CallbackBase const &', 'cb')])
1595 ## object-base.h (module 'core'): bool ns3::ObjectBase::TraceDisconnectWithoutContext(std::string name, ns3::CallbackBase const & cb) [member function]
1596 cls.add_method('TraceDisconnectWithoutContext',
1597 'bool',
1598 [param('std::string', 'name'), param('ns3::CallbackBase const &', 'cb')])
1599 ## object-base.h (module 'core'): void ns3::ObjectBase::ConstructSelf(ns3::AttributeConstructionList const & attributes) [member function]
1600 cls.add_method('ConstructSelf',
1601 'void',
1602 [param('ns3::AttributeConstructionList const &', 'attributes')],
1603 visibility='protected')
1604 ## object-base.h (module 'core'): void ns3::ObjectBase::NotifyConstructionCompleted() [member function]
1605 cls.add_method('NotifyConstructionCompleted',
1606 'void',
1607 [],
1608 visibility='protected', is_virtual=True)
1609 return
1610
1611def register_Ns3ObjectDeleter_methods(root_module, cls):
1612 ## object.h (module 'core'): ns3::ObjectDeleter::ObjectDeleter() [constructor]
1613 cls.add_constructor([])
1614 ## object.h (module 'core'): ns3::ObjectDeleter::ObjectDeleter(ns3::ObjectDeleter const & arg0) [copy constructor]
1615 cls.add_constructor([param('ns3::ObjectDeleter const &', 'arg0')])
1616 ## object.h (module 'core'): static void ns3::ObjectDeleter::Delete(ns3::Object * object) [member function]
1617 cls.add_method('Delete',
1618 'void',
1619 [param('ns3::Object *', 'object')],
1620 is_static=True)
1621 return
1622
1623def register_Ns3ObjectFactory_methods(root_module, cls):
1624 cls.add_output_stream_operator()
1625 ## object-factory.h (module 'core'): ns3::ObjectFactory::ObjectFactory(ns3::ObjectFactory const & arg0) [copy constructor]
1626 cls.add_constructor([param('ns3::ObjectFactory const &', 'arg0')])
1627 ## object-factory.h (module 'core'): ns3::ObjectFactory::ObjectFactory() [constructor]
1628 cls.add_constructor([])
1629 ## object-factory.h (module 'core'): ns3::ObjectFactory::ObjectFactory(std::string typeId) [constructor]
1630 cls.add_constructor([param('std::string', 'typeId')])
1631 ## object-factory.h (module 'core'): ns3::Ptr<ns3::Object> ns3::ObjectFactory::Create() const [member function]
1632 cls.add_method('Create',
1633 'ns3::Ptr< ns3::Object >',
1634 [],
1635 is_const=True)
1636 ## object-factory.h (module 'core'): ns3::TypeId ns3::ObjectFactory::GetTypeId() const [member function]
1637 cls.add_method('GetTypeId',
1638 'ns3::TypeId',
1639 [],
1640 is_const=True)
1641 ## object-factory.h (module 'core'): void ns3::ObjectFactory::Set(std::string name, ns3::AttributeValue const & value) [member function]
1642 cls.add_method('Set',
1643 'void',
1644 [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')])
1645 ## object-factory.h (module 'core'): void ns3::ObjectFactory::SetTypeId(ns3::TypeId tid) [member function]
1646 cls.add_method('SetTypeId',
1647 'void',
1648 [param('ns3::TypeId', 'tid')])
1649 ## object-factory.h (module 'core'): void ns3::ObjectFactory::SetTypeId(char const * tid) [member function]
1650 cls.add_method('SetTypeId',
1651 'void',
1652 [param('char const *', 'tid')])
1653 ## object-factory.h (module 'core'): void ns3::ObjectFactory::SetTypeId(std::string tid) [member function]
1654 cls.add_method('SetTypeId',
1655 'void',
1656 [param('std::string', 'tid')])
1657 return
1658
1659def register_Ns3PacketMetadata_methods(root_module, cls):
1660 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::PacketMetadata(uint64_t uid, uint32_t size) [constructor]
1661 cls.add_constructor([param('uint64_t', 'uid'), param('uint32_t', 'size')])
1662 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::PacketMetadata(ns3::PacketMetadata const & o) [copy constructor]
1663 cls.add_constructor([param('ns3::PacketMetadata const &', 'o')])
1664 ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::AddAtEnd(ns3::PacketMetadata const & o) [member function]
1665 cls.add_method('AddAtEnd',
1666 'void',
1667 [param('ns3::PacketMetadata const &', 'o')])
1668 ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::AddHeader(ns3::Header const & header, uint32_t size) [member function]
1669 cls.add_method('AddHeader',
1670 'void',
1671 [param('ns3::Header const &', 'header'), param('uint32_t', 'size')])
1672 ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::AddPaddingAtEnd(uint32_t end) [member function]
1673 cls.add_method('AddPaddingAtEnd',
1674 'void',
1675 [param('uint32_t', 'end')])
1676 ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::AddTrailer(ns3::Trailer const & trailer, uint32_t size) [member function]
1677 cls.add_method('AddTrailer',
1678 'void',
1679 [param('ns3::Trailer const &', 'trailer'), param('uint32_t', 'size')])
1680 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::ItemIterator ns3::PacketMetadata::BeginItem(ns3::Buffer buffer) const [member function]
1681 cls.add_method('BeginItem',
1682 'ns3::PacketMetadata::ItemIterator',
1683 [param('ns3::Buffer', 'buffer')],
1684 is_const=True)
1685 ## packet-metadata.h (module 'network'): ns3::PacketMetadata ns3::PacketMetadata::CreateFragment(uint32_t start, uint32_t end) const [member function]
1686 cls.add_method('CreateFragment',
1687 'ns3::PacketMetadata',
1688 [param('uint32_t', 'start'), param('uint32_t', 'end')],
1689 is_const=True)
1690 ## packet-metadata.h (module 'network'): uint32_t ns3::PacketMetadata::Deserialize(uint8_t const * buffer, uint32_t size) [member function]
1691 cls.add_method('Deserialize',
1692 'uint32_t',
1693 [param('uint8_t const *', 'buffer'), param('uint32_t', 'size')])
1694 ## packet-metadata.h (module 'network'): static void ns3::PacketMetadata::Enable() [member function]
1695 cls.add_method('Enable',
1696 'void',
1697 [],
1698 is_static=True)
1699 ## packet-metadata.h (module 'network'): static void ns3::PacketMetadata::EnableChecking() [member function]
1700 cls.add_method('EnableChecking',
1701 'void',
1702 [],
1703 is_static=True)
1704 ## packet-metadata.h (module 'network'): uint32_t ns3::PacketMetadata::GetSerializedSize() const [member function]
1705 cls.add_method('GetSerializedSize',
1706 'uint32_t',
1707 [],
1708 is_const=True)
1709 ## packet-metadata.h (module 'network'): uint64_t ns3::PacketMetadata::GetUid() const [member function]
1710 cls.add_method('GetUid',
1711 'uint64_t',
1712 [],
1713 is_const=True)
1714 ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::RemoveAtEnd(uint32_t end) [member function]
1715 cls.add_method('RemoveAtEnd',
1716 'void',
1717 [param('uint32_t', 'end')])
1718 ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::RemoveAtStart(uint32_t start) [member function]
1719 cls.add_method('RemoveAtStart',
1720 'void',
1721 [param('uint32_t', 'start')])
1722 ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::RemoveHeader(ns3::Header const & header, uint32_t size) [member function]
1723 cls.add_method('RemoveHeader',
1724 'void',
1725 [param('ns3::Header const &', 'header'), param('uint32_t', 'size')])
1726 ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::RemoveTrailer(ns3::Trailer const & trailer, uint32_t size) [member function]
1727 cls.add_method('RemoveTrailer',
1728 'void',
1729 [param('ns3::Trailer const &', 'trailer'), param('uint32_t', 'size')])
1730 ## packet-metadata.h (module 'network'): uint32_t ns3::PacketMetadata::Serialize(uint8_t * buffer, uint32_t maxSize) const [member function]
1731 cls.add_method('Serialize',
1732 'uint32_t',
1733 [param('uint8_t *', 'buffer'), param('uint32_t', 'maxSize')],
1734 is_const=True)
1735 return
1736
1737def register_Ns3PacketMetadataItem_methods(root_module, cls):
1738 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::Item() [constructor]
1739 cls.add_constructor([])
1740 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::Item(ns3::PacketMetadata::Item const & arg0) [copy constructor]
1741 cls.add_constructor([param('ns3::PacketMetadata::Item const &', 'arg0')])
1742 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::current [variable]
1743 cls.add_instance_attribute('current', 'ns3::Buffer::Iterator', is_const=False)
1744 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::currentSize [variable]
1745 cls.add_instance_attribute('currentSize', 'uint32_t', is_const=False)
1746 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::currentTrimedFromEnd [variable]
1747 cls.add_instance_attribute('currentTrimedFromEnd', 'uint32_t', is_const=False)
1748 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::currentTrimedFromStart [variable]
1749 cls.add_instance_attribute('currentTrimedFromStart', 'uint32_t', is_const=False)
1750 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::isFragment [variable]
1751 cls.add_instance_attribute('isFragment', 'bool', is_const=False)
1752 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::tid [variable]
1753 cls.add_instance_attribute('tid', 'ns3::TypeId', is_const=False)
1754 return
1755
1756def register_Ns3PacketMetadataItemIterator_methods(root_module, cls):
1757 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::ItemIterator::ItemIterator(ns3::PacketMetadata::ItemIterator const & arg0) [copy constructor]
1758 cls.add_constructor([param('ns3::PacketMetadata::ItemIterator const &', 'arg0')])
1759 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::ItemIterator::ItemIterator(ns3::PacketMetadata const * metadata, ns3::Buffer buffer) [constructor]
1760 cls.add_constructor([param('ns3::PacketMetadata const *', 'metadata'), param('ns3::Buffer', 'buffer')])
1761 ## packet-metadata.h (module 'network'): bool ns3::PacketMetadata::ItemIterator::HasNext() const [member function]
1762 cls.add_method('HasNext',
1763 'bool',
1764 [],
1765 is_const=True)
1766 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item ns3::PacketMetadata::ItemIterator::Next() [member function]
1767 cls.add_method('Next',
1768 'ns3::PacketMetadata::Item',
1769 [])
1770 return
1771
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07001772def register_Ns3PacketTagIterator_methods(root_module, cls):
1773 ## packet.h (module 'network'): ns3::PacketTagIterator::PacketTagIterator(ns3::PacketTagIterator const & arg0) [copy constructor]
1774 cls.add_constructor([param('ns3::PacketTagIterator const &', 'arg0')])
1775 ## packet.h (module 'network'): bool ns3::PacketTagIterator::HasNext() const [member function]
1776 cls.add_method('HasNext',
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001777 'bool',
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001778 [],
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07001779 is_const=True)
1780 ## packet.h (module 'network'): ns3::PacketTagIterator::Item ns3::PacketTagIterator::Next() [member function]
1781 cls.add_method('Next',
1782 'ns3::PacketTagIterator::Item',
1783 [])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001784 return
1785
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07001786def register_Ns3PacketTagIteratorItem_methods(root_module, cls):
1787 ## packet.h (module 'network'): ns3::PacketTagIterator::Item::Item(ns3::PacketTagIterator::Item const & arg0) [copy constructor]
1788 cls.add_constructor([param('ns3::PacketTagIterator::Item const &', 'arg0')])
1789 ## packet.h (module 'network'): void ns3::PacketTagIterator::Item::GetTag(ns3::Tag & tag) const [member function]
1790 cls.add_method('GetTag',
1791 'void',
1792 [param('ns3::Tag &', 'tag')],
1793 is_const=True)
1794 ## packet.h (module 'network'): ns3::TypeId ns3::PacketTagIterator::Item::GetTypeId() const [member function]
1795 cls.add_method('GetTypeId',
1796 'ns3::TypeId',
1797 [],
1798 is_const=True)
1799 return
1800
1801def register_Ns3PacketTagList_methods(root_module, cls):
1802 ## packet-tag-list.h (module 'network'): ns3::PacketTagList::PacketTagList() [constructor]
1803 cls.add_constructor([])
1804 ## packet-tag-list.h (module 'network'): ns3::PacketTagList::PacketTagList(ns3::PacketTagList const & o) [copy constructor]
1805 cls.add_constructor([param('ns3::PacketTagList const &', 'o')])
1806 ## packet-tag-list.h (module 'network'): void ns3::PacketTagList::Add(ns3::Tag const & tag) const [member function]
1807 cls.add_method('Add',
1808 'void',
1809 [param('ns3::Tag const &', 'tag')],
1810 is_const=True)
1811 ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData const * ns3::PacketTagList::Head() const [member function]
1812 cls.add_method('Head',
1813 'ns3::PacketTagList::TagData const *',
1814 [],
1815 is_const=True)
1816 ## packet-tag-list.h (module 'network'): bool ns3::PacketTagList::Peek(ns3::Tag & tag) const [member function]
1817 cls.add_method('Peek',
1818 'bool',
1819 [param('ns3::Tag &', 'tag')],
1820 is_const=True)
1821 ## packet-tag-list.h (module 'network'): bool ns3::PacketTagList::Remove(ns3::Tag & tag) [member function]
1822 cls.add_method('Remove',
1823 'bool',
1824 [param('ns3::Tag &', 'tag')])
1825 ## packet-tag-list.h (module 'network'): void ns3::PacketTagList::RemoveAll() [member function]
1826 cls.add_method('RemoveAll',
1827 'void',
1828 [])
1829 return
1830
1831def register_Ns3PacketTagListTagData_methods(root_module, cls):
1832 ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData::TagData() [constructor]
1833 cls.add_constructor([])
1834 ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData::TagData(ns3::PacketTagList::TagData const & arg0) [copy constructor]
1835 cls.add_constructor([param('ns3::PacketTagList::TagData const &', 'arg0')])
1836 ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData::count [variable]
1837 cls.add_instance_attribute('count', 'uint32_t', is_const=False)
1838 ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData::data [variable]
1839 cls.add_instance_attribute('data', 'uint8_t [ 20 ]', is_const=False)
1840 ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData::next [variable]
1841 cls.add_instance_attribute('next', 'ns3::PacketTagList::TagData *', is_const=False)
1842 ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData::tid [variable]
1843 cls.add_instance_attribute('tid', 'ns3::TypeId', is_const=False)
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001844 return
1845
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001846def register_Ns3SimpleRefCount__Ns3Object_Ns3ObjectBase_Ns3ObjectDeleter_methods(root_module, cls):
1847 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter>::SimpleRefCount() [constructor]
1848 cls.add_constructor([])
1849 ## 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]
1850 cls.add_constructor([param('ns3::SimpleRefCount< ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter > const &', 'o')])
1851 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter>::Cleanup() [member function]
1852 cls.add_method('Cleanup',
1853 'void',
1854 [],
1855 is_static=True)
1856 return
1857
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07001858def register_Ns3Tag_methods(root_module, cls):
1859 ## tag.h (module 'network'): ns3::Tag::Tag() [constructor]
Alexander Afanasyev4975f732011-12-20 17:52:19 -08001860 cls.add_constructor([])
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07001861 ## tag.h (module 'network'): ns3::Tag::Tag(ns3::Tag const & arg0) [copy constructor]
1862 cls.add_constructor([param('ns3::Tag const &', 'arg0')])
1863 ## tag.h (module 'network'): void ns3::Tag::Deserialize(ns3::TagBuffer i) [member function]
1864 cls.add_method('Deserialize',
Alexander Afanasyev4975f732011-12-20 17:52:19 -08001865 'void',
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07001866 [param('ns3::TagBuffer', 'i')],
1867 is_pure_virtual=True, is_virtual=True)
1868 ## tag.h (module 'network'): uint32_t ns3::Tag::GetSerializedSize() const [member function]
1869 cls.add_method('GetSerializedSize',
1870 'uint32_t',
1871 [],
1872 is_pure_virtual=True, is_const=True, is_virtual=True)
1873 ## tag.h (module 'network'): static ns3::TypeId ns3::Tag::GetTypeId() [member function]
1874 cls.add_method('GetTypeId',
1875 'ns3::TypeId',
1876 [],
Alexander Afanasyev4975f732011-12-20 17:52:19 -08001877 is_static=True)
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07001878 ## tag.h (module 'network'): void ns3::Tag::Print(std::ostream & os) const [member function]
1879 cls.add_method('Print',
Alexander Afanasyev4975f732011-12-20 17:52:19 -08001880 'void',
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07001881 [param('std::ostream &', 'os')],
1882 is_pure_virtual=True, is_const=True, is_virtual=True)
1883 ## tag.h (module 'network'): void ns3::Tag::Serialize(ns3::TagBuffer i) const [member function]
1884 cls.add_method('Serialize',
1885 'void',
1886 [param('ns3::TagBuffer', 'i')],
1887 is_pure_virtual=True, is_const=True, is_virtual=True)
Alexander Afanasyev4975f732011-12-20 17:52:19 -08001888 return
1889
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001890def register_Ns3TagBuffer_methods(root_module, cls):
1891 ## tag-buffer.h (module 'network'): ns3::TagBuffer::TagBuffer(ns3::TagBuffer const & arg0) [copy constructor]
1892 cls.add_constructor([param('ns3::TagBuffer const &', 'arg0')])
1893 ## tag-buffer.h (module 'network'): ns3::TagBuffer::TagBuffer(uint8_t * start, uint8_t * end) [constructor]
1894 cls.add_constructor([param('uint8_t *', 'start'), param('uint8_t *', 'end')])
1895 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::CopyFrom(ns3::TagBuffer o) [member function]
1896 cls.add_method('CopyFrom',
1897 'void',
1898 [param('ns3::TagBuffer', 'o')])
1899 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::Read(uint8_t * buffer, uint32_t size) [member function]
1900 cls.add_method('Read',
1901 'void',
1902 [param('uint8_t *', 'buffer'), param('uint32_t', 'size')])
1903 ## tag-buffer.h (module 'network'): double ns3::TagBuffer::ReadDouble() [member function]
1904 cls.add_method('ReadDouble',
1905 'double',
1906 [])
1907 ## tag-buffer.h (module 'network'): uint16_t ns3::TagBuffer::ReadU16() [member function]
1908 cls.add_method('ReadU16',
1909 'uint16_t',
1910 [])
1911 ## tag-buffer.h (module 'network'): uint32_t ns3::TagBuffer::ReadU32() [member function]
1912 cls.add_method('ReadU32',
1913 'uint32_t',
1914 [])
1915 ## tag-buffer.h (module 'network'): uint64_t ns3::TagBuffer::ReadU64() [member function]
1916 cls.add_method('ReadU64',
1917 'uint64_t',
1918 [])
1919 ## tag-buffer.h (module 'network'): uint8_t ns3::TagBuffer::ReadU8() [member function]
1920 cls.add_method('ReadU8',
1921 'uint8_t',
1922 [])
1923 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::TrimAtEnd(uint32_t trim) [member function]
1924 cls.add_method('TrimAtEnd',
1925 'void',
1926 [param('uint32_t', 'trim')])
1927 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::Write(uint8_t const * buffer, uint32_t size) [member function]
1928 cls.add_method('Write',
1929 'void',
1930 [param('uint8_t const *', 'buffer'), param('uint32_t', 'size')])
1931 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::WriteDouble(double v) [member function]
1932 cls.add_method('WriteDouble',
1933 'void',
1934 [param('double', 'v')])
1935 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::WriteU16(uint16_t data) [member function]
1936 cls.add_method('WriteU16',
1937 'void',
1938 [param('uint16_t', 'data')])
1939 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::WriteU32(uint32_t data) [member function]
1940 cls.add_method('WriteU32',
1941 'void',
1942 [param('uint32_t', 'data')])
1943 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::WriteU64(uint64_t v) [member function]
1944 cls.add_method('WriteU64',
1945 'void',
1946 [param('uint64_t', 'v')])
1947 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::WriteU8(uint8_t v) [member function]
1948 cls.add_method('WriteU8',
1949 'void',
1950 [param('uint8_t', 'v')])
1951 return
1952
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08001953def register_Ns3TypeId_methods(root_module, cls):
1954 cls.add_binary_comparison_operator('!=')
1955 cls.add_output_stream_operator()
1956 cls.add_binary_comparison_operator('==')
1957 cls.add_binary_comparison_operator('<')
1958 ## type-id.h (module 'core'): ns3::TypeId::TypeId(char const * name) [constructor]
1959 cls.add_constructor([param('char const *', 'name')])
1960 ## type-id.h (module 'core'): ns3::TypeId::TypeId() [constructor]
1961 cls.add_constructor([])
1962 ## type-id.h (module 'core'): ns3::TypeId::TypeId(ns3::TypeId const & o) [copy constructor]
1963 cls.add_constructor([param('ns3::TypeId const &', 'o')])
1964 ## 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]
1965 cls.add_method('AddAttribute',
1966 'ns3::TypeId',
1967 [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')])
1968 ## 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]
1969 cls.add_method('AddAttribute',
1970 'ns3::TypeId',
1971 [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')])
1972 ## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::AddTraceSource(std::string name, std::string help, ns3::Ptr<ns3::TraceSourceAccessor const> accessor) [member function]
1973 cls.add_method('AddTraceSource',
1974 'ns3::TypeId',
1975 [param('std::string', 'name'), param('std::string', 'help'), param('ns3::Ptr< ns3::TraceSourceAccessor const >', 'accessor')])
1976 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation ns3::TypeId::GetAttribute(uint32_t i) const [member function]
1977 cls.add_method('GetAttribute',
1978 'ns3::TypeId::AttributeInformation',
1979 [param('uint32_t', 'i')],
1980 is_const=True)
1981 ## type-id.h (module 'core'): std::string ns3::TypeId::GetAttributeFullName(uint32_t i) const [member function]
1982 cls.add_method('GetAttributeFullName',
1983 'std::string',
1984 [param('uint32_t', 'i')],
1985 is_const=True)
1986 ## type-id.h (module 'core'): uint32_t ns3::TypeId::GetAttributeN() const [member function]
1987 cls.add_method('GetAttributeN',
1988 'uint32_t',
1989 [],
1990 is_const=True)
1991 ## 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]
1992 cls.add_method('GetConstructor',
1993 'ns3::Callback< ns3::ObjectBase *, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >',
1994 [],
1995 is_const=True)
1996 ## type-id.h (module 'core'): std::string ns3::TypeId::GetGroupName() const [member function]
1997 cls.add_method('GetGroupName',
1998 'std::string',
1999 [],
2000 is_const=True)
2001 ## type-id.h (module 'core'): std::string ns3::TypeId::GetName() const [member function]
2002 cls.add_method('GetName',
2003 'std::string',
2004 [],
2005 is_const=True)
2006 ## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::GetParent() const [member function]
2007 cls.add_method('GetParent',
2008 'ns3::TypeId',
2009 [],
2010 is_const=True)
2011 ## type-id.h (module 'core'): static ns3::TypeId ns3::TypeId::GetRegistered(uint32_t i) [member function]
2012 cls.add_method('GetRegistered',
2013 'ns3::TypeId',
2014 [param('uint32_t', 'i')],
2015 is_static=True)
2016 ## type-id.h (module 'core'): static uint32_t ns3::TypeId::GetRegisteredN() [member function]
2017 cls.add_method('GetRegisteredN',
2018 'uint32_t',
2019 [],
2020 is_static=True)
2021 ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation ns3::TypeId::GetTraceSource(uint32_t i) const [member function]
2022 cls.add_method('GetTraceSource',
2023 'ns3::TypeId::TraceSourceInformation',
2024 [param('uint32_t', 'i')],
2025 is_const=True)
2026 ## type-id.h (module 'core'): uint32_t ns3::TypeId::GetTraceSourceN() const [member function]
2027 cls.add_method('GetTraceSourceN',
2028 'uint32_t',
2029 [],
2030 is_const=True)
2031 ## type-id.h (module 'core'): uint16_t ns3::TypeId::GetUid() const [member function]
2032 cls.add_method('GetUid',
2033 'uint16_t',
2034 [],
2035 is_const=True)
2036 ## type-id.h (module 'core'): bool ns3::TypeId::HasConstructor() const [member function]
2037 cls.add_method('HasConstructor',
2038 'bool',
2039 [],
2040 is_const=True)
2041 ## type-id.h (module 'core'): bool ns3::TypeId::HasParent() const [member function]
2042 cls.add_method('HasParent',
2043 'bool',
2044 [],
2045 is_const=True)
2046 ## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::HideFromDocumentation() [member function]
2047 cls.add_method('HideFromDocumentation',
2048 'ns3::TypeId',
2049 [])
2050 ## type-id.h (module 'core'): bool ns3::TypeId::IsChildOf(ns3::TypeId other) const [member function]
2051 cls.add_method('IsChildOf',
2052 'bool',
2053 [param('ns3::TypeId', 'other')],
2054 is_const=True)
2055 ## type-id.h (module 'core'): bool ns3::TypeId::LookupAttributeByName(std::string name, ns3::TypeId::AttributeInformation * info) const [member function]
2056 cls.add_method('LookupAttributeByName',
2057 'bool',
Alexander Afanasyev6f933532012-02-29 13:30:37 -08002058 [param('std::string', 'name'), param('ns3::TypeId::AttributeInformation *', 'info', transfer_ownership=False)],
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002059 is_const=True)
2060 ## type-id.h (module 'core'): static ns3::TypeId ns3::TypeId::LookupByName(std::string name) [member function]
2061 cls.add_method('LookupByName',
2062 'ns3::TypeId',
2063 [param('std::string', 'name')],
2064 is_static=True)
2065 ## type-id.h (module 'core'): ns3::Ptr<ns3::TraceSourceAccessor const> ns3::TypeId::LookupTraceSourceByName(std::string name) const [member function]
2066 cls.add_method('LookupTraceSourceByName',
2067 'ns3::Ptr< ns3::TraceSourceAccessor const >',
2068 [param('std::string', 'name')],
2069 is_const=True)
2070 ## type-id.h (module 'core'): bool ns3::TypeId::MustHideFromDocumentation() const [member function]
2071 cls.add_method('MustHideFromDocumentation',
2072 'bool',
2073 [],
2074 is_const=True)
2075 ## type-id.h (module 'core'): bool ns3::TypeId::SetAttributeInitialValue(uint32_t i, ns3::Ptr<ns3::AttributeValue const> initialValue) [member function]
2076 cls.add_method('SetAttributeInitialValue',
2077 'bool',
2078 [param('uint32_t', 'i'), param('ns3::Ptr< ns3::AttributeValue const >', 'initialValue')])
2079 ## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::SetGroupName(std::string groupName) [member function]
2080 cls.add_method('SetGroupName',
2081 'ns3::TypeId',
2082 [param('std::string', 'groupName')])
2083 ## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::SetParent(ns3::TypeId tid) [member function]
2084 cls.add_method('SetParent',
2085 'ns3::TypeId',
2086 [param('ns3::TypeId', 'tid')])
2087 ## type-id.h (module 'core'): void ns3::TypeId::SetUid(uint16_t tid) [member function]
2088 cls.add_method('SetUid',
2089 'void',
2090 [param('uint16_t', 'tid')])
2091 return
2092
2093def register_Ns3TypeIdAttributeInformation_methods(root_module, cls):
2094 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::AttributeInformation() [constructor]
2095 cls.add_constructor([])
2096 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::AttributeInformation(ns3::TypeId::AttributeInformation const & arg0) [copy constructor]
2097 cls.add_constructor([param('ns3::TypeId::AttributeInformation const &', 'arg0')])
2098 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::accessor [variable]
2099 cls.add_instance_attribute('accessor', 'ns3::Ptr< ns3::AttributeAccessor const >', is_const=False)
2100 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::checker [variable]
2101 cls.add_instance_attribute('checker', 'ns3::Ptr< ns3::AttributeChecker const >', is_const=False)
2102 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::flags [variable]
2103 cls.add_instance_attribute('flags', 'uint32_t', is_const=False)
2104 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::help [variable]
2105 cls.add_instance_attribute('help', 'std::string', is_const=False)
2106 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::initialValue [variable]
2107 cls.add_instance_attribute('initialValue', 'ns3::Ptr< ns3::AttributeValue const >', is_const=False)
2108 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::name [variable]
2109 cls.add_instance_attribute('name', 'std::string', is_const=False)
2110 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::originalInitialValue [variable]
2111 cls.add_instance_attribute('originalInitialValue', 'ns3::Ptr< ns3::AttributeValue const >', is_const=False)
2112 return
2113
2114def register_Ns3TypeIdTraceSourceInformation_methods(root_module, cls):
2115 ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation::TraceSourceInformation() [constructor]
2116 cls.add_constructor([])
2117 ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation::TraceSourceInformation(ns3::TypeId::TraceSourceInformation const & arg0) [copy constructor]
2118 cls.add_constructor([param('ns3::TypeId::TraceSourceInformation const &', 'arg0')])
2119 ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation::accessor [variable]
2120 cls.add_instance_attribute('accessor', 'ns3::Ptr< ns3::TraceSourceAccessor const >', is_const=False)
2121 ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation::help [variable]
2122 cls.add_instance_attribute('help', 'std::string', is_const=False)
2123 ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation::name [variable]
2124 cls.add_instance_attribute('name', 'std::string', is_const=False)
2125 return
2126
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002127def register_Ns3Empty_methods(root_module, cls):
2128 ## empty.h (module 'core'): ns3::empty::empty() [constructor]
2129 cls.add_constructor([])
2130 ## empty.h (module 'core'): ns3::empty::empty(ns3::empty const & arg0) [copy constructor]
2131 cls.add_constructor([param('ns3::empty const &', 'arg0')])
2132 return
2133
2134def register_Ns3Int64x64_t_methods(root_module, cls):
Alexander Afanasyev1ba09b82012-07-09 09:16:14 -07002135 cls.add_binary_comparison_operator('<=')
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002136 cls.add_binary_comparison_operator('!=')
2137 cls.add_inplace_numeric_operator('*=', param('ns3::int64x64_t const &', 'right'))
2138 cls.add_inplace_numeric_operator('+=', param('ns3::int64x64_t const &', 'right'))
2139 cls.add_inplace_numeric_operator('-=', param('ns3::int64x64_t const &', 'right'))
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002140 cls.add_output_stream_operator()
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002141 cls.add_binary_comparison_operator('==')
2142 cls.add_binary_comparison_operator('>=')
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07002143 cls.add_inplace_numeric_operator('/=', param('ns3::int64x64_t const &', 'right'))
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002144 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long unsigned int const', 'right'))
2145 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long unsigned int const', 'right'))
2146 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned int const', 'right'))
2147 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short unsigned int const', 'right'))
2148 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned char const', 'right'))
2149 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long int const', 'right'))
2150 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long int const', 'right'))
2151 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('int const', 'right'))
2152 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short int const', 'right'))
2153 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('signed char const', 'right'))
2154 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('double const', 'right'))
2155 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('ns3::int64x64_t const &', 'right'))
2156 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long unsigned int const', 'right'))
2157 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long unsigned int const', 'right'))
2158 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned int const', 'right'))
2159 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short unsigned int const', 'right'))
2160 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned char const', 'right'))
2161 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long int const', 'right'))
2162 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long int const', 'right'))
2163 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('int const', 'right'))
2164 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short int const', 'right'))
2165 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('signed char const', 'right'))
2166 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('double const', 'right'))
2167 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('ns3::int64x64_t const &', 'right'))
2168 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long unsigned int const', 'right'))
2169 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long unsigned int const', 'right'))
2170 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned int const', 'right'))
2171 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short unsigned int const', 'right'))
2172 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned char const', 'right'))
2173 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long int const', 'right'))
2174 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long int const', 'right'))
2175 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('int const', 'right'))
2176 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short int const', 'right'))
2177 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('signed char const', 'right'))
2178 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('double const', 'right'))
2179 cls.add_unary_numeric_operator('-')
2180 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('ns3::int64x64_t const &', 'right'))
2181 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long unsigned int const', 'right'))
2182 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long unsigned int const', 'right'))
2183 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned int const', 'right'))
2184 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short unsigned int const', 'right'))
2185 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned char const', 'right'))
2186 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long int const', 'right'))
2187 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long int const', 'right'))
2188 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('int const', 'right'))
2189 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short int const', 'right'))
2190 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('signed char const', 'right'))
2191 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('double const', 'right'))
2192 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('ns3::int64x64_t const &', 'right'))
2193 cls.add_binary_comparison_operator('<')
2194 cls.add_binary_comparison_operator('>')
2195 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t() [constructor]
2196 cls.add_constructor([])
2197 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(double v) [constructor]
2198 cls.add_constructor([param('double', 'v')])
2199 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(int v) [constructor]
2200 cls.add_constructor([param('int', 'v')])
2201 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(long int v) [constructor]
2202 cls.add_constructor([param('long int', 'v')])
2203 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(long long int v) [constructor]
2204 cls.add_constructor([param('long long int', 'v')])
2205 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(unsigned int v) [constructor]
2206 cls.add_constructor([param('unsigned int', 'v')])
2207 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(long unsigned int v) [constructor]
2208 cls.add_constructor([param('long unsigned int', 'v')])
2209 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(long long unsigned int v) [constructor]
2210 cls.add_constructor([param('long long unsigned int', 'v')])
2211 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(int64_t hi, uint64_t lo) [constructor]
2212 cls.add_constructor([param('int64_t', 'hi'), param('uint64_t', 'lo')])
2213 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(ns3::int64x64_t const & o) [copy constructor]
2214 cls.add_constructor([param('ns3::int64x64_t const &', 'o')])
2215 ## int64x64-double.h (module 'core'): double ns3::int64x64_t::GetDouble() const [member function]
2216 cls.add_method('GetDouble',
2217 'double',
2218 [],
2219 is_const=True)
2220 ## int64x64-double.h (module 'core'): int64_t ns3::int64x64_t::GetHigh() const [member function]
2221 cls.add_method('GetHigh',
2222 'int64_t',
2223 [],
2224 is_const=True)
2225 ## int64x64-double.h (module 'core'): uint64_t ns3::int64x64_t::GetLow() const [member function]
2226 cls.add_method('GetLow',
2227 'uint64_t',
2228 [],
2229 is_const=True)
2230 ## int64x64-double.h (module 'core'): static ns3::int64x64_t ns3::int64x64_t::Invert(uint64_t v) [member function]
2231 cls.add_method('Invert',
2232 'ns3::int64x64_t',
2233 [param('uint64_t', 'v')],
2234 is_static=True)
2235 ## int64x64-double.h (module 'core'): void ns3::int64x64_t::MulByInvert(ns3::int64x64_t const & o) [member function]
2236 cls.add_method('MulByInvert',
2237 'void',
2238 [param('ns3::int64x64_t const &', 'o')])
2239 return
2240
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002241def register_Ns3Chunk_methods(root_module, cls):
2242 ## chunk.h (module 'network'): ns3::Chunk::Chunk() [constructor]
2243 cls.add_constructor([])
2244 ## chunk.h (module 'network'): ns3::Chunk::Chunk(ns3::Chunk const & arg0) [copy constructor]
2245 cls.add_constructor([param('ns3::Chunk const &', 'arg0')])
2246 ## chunk.h (module 'network'): uint32_t ns3::Chunk::Deserialize(ns3::Buffer::Iterator start) [member function]
2247 cls.add_method('Deserialize',
2248 'uint32_t',
2249 [param('ns3::Buffer::Iterator', 'start')],
2250 is_pure_virtual=True, is_virtual=True)
2251 ## chunk.h (module 'network'): static ns3::TypeId ns3::Chunk::GetTypeId() [member function]
2252 cls.add_method('GetTypeId',
2253 'ns3::TypeId',
2254 [],
2255 is_static=True)
2256 ## chunk.h (module 'network'): void ns3::Chunk::Print(std::ostream & os) const [member function]
2257 cls.add_method('Print',
2258 'void',
2259 [param('std::ostream &', 'os')],
2260 is_pure_virtual=True, is_const=True, is_virtual=True)
2261 return
2262
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002263def register_Ns3Header_methods(root_module, cls):
2264 cls.add_output_stream_operator()
2265 ## header.h (module 'network'): ns3::Header::Header() [constructor]
2266 cls.add_constructor([])
2267 ## header.h (module 'network'): ns3::Header::Header(ns3::Header const & arg0) [copy constructor]
2268 cls.add_constructor([param('ns3::Header const &', 'arg0')])
2269 ## header.h (module 'network'): uint32_t ns3::Header::Deserialize(ns3::Buffer::Iterator start) [member function]
2270 cls.add_method('Deserialize',
2271 'uint32_t',
2272 [param('ns3::Buffer::Iterator', 'start')],
2273 is_pure_virtual=True, is_virtual=True)
2274 ## header.h (module 'network'): uint32_t ns3::Header::GetSerializedSize() const [member function]
2275 cls.add_method('GetSerializedSize',
2276 'uint32_t',
2277 [],
2278 is_pure_virtual=True, is_const=True, is_virtual=True)
2279 ## header.h (module 'network'): static ns3::TypeId ns3::Header::GetTypeId() [member function]
2280 cls.add_method('GetTypeId',
2281 'ns3::TypeId',
2282 [],
2283 is_static=True)
2284 ## header.h (module 'network'): void ns3::Header::Print(std::ostream & os) const [member function]
2285 cls.add_method('Print',
2286 'void',
2287 [param('std::ostream &', 'os')],
2288 is_pure_virtual=True, is_const=True, is_virtual=True)
2289 ## header.h (module 'network'): void ns3::Header::Serialize(ns3::Buffer::Iterator start) const [member function]
2290 cls.add_method('Serialize',
2291 'void',
2292 [param('ns3::Buffer::Iterator', 'start')],
2293 is_pure_virtual=True, is_const=True, is_virtual=True)
2294 return
2295
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002296def register_Ns3Object_methods(root_module, cls):
2297 ## object.h (module 'core'): ns3::Object::Object() [constructor]
2298 cls.add_constructor([])
2299 ## object.h (module 'core'): void ns3::Object::AggregateObject(ns3::Ptr<ns3::Object> other) [member function]
2300 cls.add_method('AggregateObject',
2301 'void',
2302 [param('ns3::Ptr< ns3::Object >', 'other')])
2303 ## object.h (module 'core'): void ns3::Object::Dispose() [member function]
2304 cls.add_method('Dispose',
2305 'void',
2306 [])
2307 ## object.h (module 'core'): ns3::Object::AggregateIterator ns3::Object::GetAggregateIterator() const [member function]
2308 cls.add_method('GetAggregateIterator',
2309 'ns3::Object::AggregateIterator',
2310 [],
2311 is_const=True)
2312 ## object.h (module 'core'): ns3::TypeId ns3::Object::GetInstanceTypeId() const [member function]
2313 cls.add_method('GetInstanceTypeId',
2314 'ns3::TypeId',
2315 [],
2316 is_const=True, is_virtual=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07002317 ## object.h (module 'core'): ns3::Ptr<ns3::ndn::Fib> ns3::Object::GetObject() const [member function]
Alexander Afanasyev1c0248b2012-07-24 15:59:50 -07002318 cls.add_method('GetObject',
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07002319 'ns3::Ptr< ns3::ndn::Fib >',
Alexander Afanasyev1c0248b2012-07-24 15:59:50 -07002320 [],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07002321 is_const=True, template_parameters=['ns3::ndn::Fib'])
2322 ## object.h (module 'core'): ns3::Ptr<ns3::ndn::Pit> ns3::Object::GetObject() const [member function]
Alexander Afanasyev5feb38b2012-08-09 11:01:43 -07002323 cls.add_method('GetObject',
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07002324 'ns3::Ptr< ns3::ndn::Pit >',
Alexander Afanasyev5feb38b2012-08-09 11:01:43 -07002325 [],
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07002326 is_const=True, template_parameters=['ns3::ndn::Pit'])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002327 ## object.h (module 'core'): static ns3::TypeId ns3::Object::GetTypeId() [member function]
2328 cls.add_method('GetTypeId',
2329 'ns3::TypeId',
2330 [],
2331 is_static=True)
2332 ## object.h (module 'core'): void ns3::Object::Start() [member function]
2333 cls.add_method('Start',
2334 'void',
2335 [])
2336 ## object.h (module 'core'): ns3::Object::Object(ns3::Object const & o) [copy constructor]
2337 cls.add_constructor([param('ns3::Object const &', 'o')],
2338 visibility='protected')
2339 ## object.h (module 'core'): void ns3::Object::DoDispose() [member function]
2340 cls.add_method('DoDispose',
2341 'void',
2342 [],
2343 visibility='protected', is_virtual=True)
2344 ## object.h (module 'core'): void ns3::Object::DoStart() [member function]
2345 cls.add_method('DoStart',
2346 'void',
2347 [],
2348 visibility='protected', is_virtual=True)
2349 ## object.h (module 'core'): void ns3::Object::NotifyNewAggregate() [member function]
2350 cls.add_method('NotifyNewAggregate',
2351 'void',
2352 [],
2353 visibility='protected', is_virtual=True)
2354 return
2355
2356def register_Ns3ObjectAggregateIterator_methods(root_module, cls):
2357 ## object.h (module 'core'): ns3::Object::AggregateIterator::AggregateIterator(ns3::Object::AggregateIterator const & arg0) [copy constructor]
2358 cls.add_constructor([param('ns3::Object::AggregateIterator const &', 'arg0')])
2359 ## object.h (module 'core'): ns3::Object::AggregateIterator::AggregateIterator() [constructor]
2360 cls.add_constructor([])
2361 ## object.h (module 'core'): bool ns3::Object::AggregateIterator::HasNext() const [member function]
2362 cls.add_method('HasNext',
2363 'bool',
2364 [],
2365 is_const=True)
2366 ## object.h (module 'core'): ns3::Ptr<ns3::Object const> ns3::Object::AggregateIterator::Next() [member function]
2367 cls.add_method('Next',
2368 'ns3::Ptr< ns3::Object const >',
2369 [])
2370 return
2371
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002372def register_Ns3SimpleRefCount__Ns3AttributeAccessor_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeAccessor__gt___methods(root_module, cls):
2373 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> >::SimpleRefCount() [constructor]
2374 cls.add_constructor([])
2375 ## 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]
2376 cls.add_constructor([param('ns3::SimpleRefCount< ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter< ns3::AttributeAccessor > > const &', 'o')])
2377 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> >::Cleanup() [member function]
2378 cls.add_method('Cleanup',
2379 'void',
2380 [],
2381 is_static=True)
2382 return
2383
2384def register_Ns3SimpleRefCount__Ns3AttributeChecker_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeChecker__gt___methods(root_module, cls):
2385 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter<ns3::AttributeChecker> >::SimpleRefCount() [constructor]
2386 cls.add_constructor([])
2387 ## 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]
2388 cls.add_constructor([param('ns3::SimpleRefCount< ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter< ns3::AttributeChecker > > const &', 'o')])
2389 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter<ns3::AttributeChecker> >::Cleanup() [member function]
2390 cls.add_method('Cleanup',
2391 'void',
2392 [],
2393 is_static=True)
2394 return
2395
2396def register_Ns3SimpleRefCount__Ns3AttributeValue_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeValue__gt___methods(root_module, cls):
2397 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter<ns3::AttributeValue> >::SimpleRefCount() [constructor]
2398 cls.add_constructor([])
2399 ## 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]
2400 cls.add_constructor([param('ns3::SimpleRefCount< ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter< ns3::AttributeValue > > const &', 'o')])
2401 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter<ns3::AttributeValue> >::Cleanup() [member function]
2402 cls.add_method('Cleanup',
2403 'void',
2404 [],
2405 is_static=True)
2406 return
2407
2408def register_Ns3SimpleRefCount__Ns3CallbackImplBase_Ns3Empty_Ns3DefaultDeleter__lt__ns3CallbackImplBase__gt___methods(root_module, cls):
2409 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> >::SimpleRefCount() [constructor]
2410 cls.add_constructor([])
2411 ## 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]
2412 cls.add_constructor([param('ns3::SimpleRefCount< ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter< ns3::CallbackImplBase > > const &', 'o')])
2413 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> >::Cleanup() [member function]
2414 cls.add_method('Cleanup',
2415 'void',
2416 [],
2417 is_static=True)
2418 return
2419
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002420def register_Ns3SimpleRefCount__Ns3EventImpl_Ns3Empty_Ns3DefaultDeleter__lt__ns3EventImpl__gt___methods(root_module, cls):
2421 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::EventImpl, ns3::empty, ns3::DefaultDeleter<ns3::EventImpl> >::SimpleRefCount() [constructor]
2422 cls.add_constructor([])
2423 ## 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]
2424 cls.add_constructor([param('ns3::SimpleRefCount< ns3::EventImpl, ns3::empty, ns3::DefaultDeleter< ns3::EventImpl > > const &', 'o')])
2425 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::EventImpl, ns3::empty, ns3::DefaultDeleter<ns3::EventImpl> >::Cleanup() [member function]
2426 cls.add_method('Cleanup',
2427 'void',
2428 [],
2429 is_static=True)
2430 return
2431
2432def register_Ns3SimpleRefCount__Ns3NixVector_Ns3Empty_Ns3DefaultDeleter__lt__ns3NixVector__gt___methods(root_module, cls):
2433 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::NixVector, ns3::empty, ns3::DefaultDeleter<ns3::NixVector> >::SimpleRefCount() [constructor]
2434 cls.add_constructor([])
2435 ## 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]
2436 cls.add_constructor([param('ns3::SimpleRefCount< ns3::NixVector, ns3::empty, ns3::DefaultDeleter< ns3::NixVector > > const &', 'o')])
2437 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::NixVector, ns3::empty, ns3::DefaultDeleter<ns3::NixVector> >::Cleanup() [member function]
2438 cls.add_method('Cleanup',
2439 'void',
2440 [],
2441 is_static=True)
2442 return
2443
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002444def register_Ns3SimpleRefCount__Ns3Packet_Ns3Empty_Ns3DefaultDeleter__lt__ns3Packet__gt___methods(root_module, cls):
2445 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Packet, ns3::empty, ns3::DefaultDeleter<ns3::Packet> >::SimpleRefCount() [constructor]
2446 cls.add_constructor([])
2447 ## 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]
2448 cls.add_constructor([param('ns3::SimpleRefCount< ns3::Packet, ns3::empty, ns3::DefaultDeleter< ns3::Packet > > const &', 'o')])
2449 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::Packet, ns3::empty, ns3::DefaultDeleter<ns3::Packet> >::Cleanup() [member function]
2450 cls.add_method('Cleanup',
2451 'void',
2452 [],
2453 is_static=True)
2454 return
2455
2456def register_Ns3SimpleRefCount__Ns3TraceSourceAccessor_Ns3Empty_Ns3DefaultDeleter__lt__ns3TraceSourceAccessor__gt___methods(root_module, cls):
2457 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter<ns3::TraceSourceAccessor> >::SimpleRefCount() [constructor]
2458 cls.add_constructor([])
2459 ## 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]
2460 cls.add_constructor([param('ns3::SimpleRefCount< ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter< ns3::TraceSourceAccessor > > const &', 'o')])
2461 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter<ns3::TraceSourceAccessor> >::Cleanup() [member function]
2462 cls.add_method('Cleanup',
2463 'void',
2464 [],
2465 is_static=True)
2466 return
2467
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07002468def register_Ns3SimpleRefCount__Ns3NdnContentObjectHeader_Ns3Header_Ns3DefaultDeleter__lt__ns3NdnContentObjectHeader__gt___methods(root_module, cls):
2469 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::ndn::ContentObjectHeader, ns3::Header, ns3::DefaultDeleter<ns3::ndn::ContentObjectHeader> >::SimpleRefCount() [constructor]
2470 cls.add_constructor([])
2471 ## 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]
2472 cls.add_constructor([param('ns3::SimpleRefCount< ns3::ndn::ContentObjectHeader, ns3::Header, ns3::DefaultDeleter< ns3::ndn::ContentObjectHeader > > const &', 'o')])
2473 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::ndn::ContentObjectHeader, ns3::Header, ns3::DefaultDeleter<ns3::ndn::ContentObjectHeader> >::Cleanup() [member function]
2474 cls.add_method('Cleanup',
2475 'void',
2476 [],
2477 is_static=True)
2478 return
2479
2480def register_Ns3SimpleRefCount__Ns3NdnFaceContainer_Ns3Empty_Ns3DefaultDeleter__lt__ns3NdnFaceContainer__gt___methods(root_module, cls):
2481 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::ndn::FaceContainer, ns3::empty, ns3::DefaultDeleter<ns3::ndn::FaceContainer> >::SimpleRefCount() [constructor]
2482 cls.add_constructor([])
2483 ## 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]
2484 cls.add_constructor([param('ns3::SimpleRefCount< ns3::ndn::FaceContainer, ns3::empty, ns3::DefaultDeleter< ns3::ndn::FaceContainer > > const &', 'o')])
2485 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::ndn::FaceContainer, ns3::empty, ns3::DefaultDeleter<ns3::ndn::FaceContainer> >::Cleanup() [member function]
2486 cls.add_method('Cleanup',
2487 'void',
2488 [],
2489 is_static=True)
2490 return
2491
2492def register_Ns3SimpleRefCount__Ns3NdnInterestHeader_Ns3Header_Ns3DefaultDeleter__lt__ns3NdnInterestHeader__gt___methods(root_module, cls):
2493 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::ndn::InterestHeader, ns3::Header, ns3::DefaultDeleter<ns3::ndn::InterestHeader> >::SimpleRefCount() [constructor]
2494 cls.add_constructor([])
2495 ## 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]
2496 cls.add_constructor([param('ns3::SimpleRefCount< ns3::ndn::InterestHeader, ns3::Header, ns3::DefaultDeleter< ns3::ndn::InterestHeader > > const &', 'o')])
2497 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::ndn::InterestHeader, ns3::Header, ns3::DefaultDeleter<ns3::ndn::InterestHeader> >::Cleanup() [member function]
2498 cls.add_method('Cleanup',
2499 'void',
2500 [],
2501 is_static=True)
2502 return
2503
2504def register_Ns3SimpleRefCount__Ns3NdnNameComponents_Ns3Empty_Ns3DefaultDeleter__lt__ns3NdnNameComponents__gt___methods(root_module, cls):
2505 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::ndn::NameComponents, ns3::empty, ns3::DefaultDeleter<ns3::ndn::NameComponents> >::SimpleRefCount() [constructor]
2506 cls.add_constructor([])
2507 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::ndn::NameComponents, ns3::empty, ns3::DefaultDeleter<ns3::ndn::NameComponents> >::SimpleRefCount(ns3::SimpleRefCount<ns3::ndn::NameComponents, ns3::empty, ns3::DefaultDeleter<ns3::ndn::NameComponents> > const & o) [copy constructor]
2508 cls.add_constructor([param('ns3::SimpleRefCount< ns3::ndn::NameComponents, ns3::empty, ns3::DefaultDeleter< ns3::ndn::NameComponents > > const &', 'o')])
2509 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::ndn::NameComponents, ns3::empty, ns3::DefaultDeleter<ns3::ndn::NameComponents> >::Cleanup() [member function]
2510 cls.add_method('Cleanup',
2511 'void',
2512 [],
2513 is_static=True)
2514 return
2515
2516def register_Ns3SimpleRefCount__Ns3NdnCsEntry_Ns3Empty_Ns3DefaultDeleter__lt__ns3NdnCsEntry__gt___methods(root_module, cls):
2517 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::ndn::cs::Entry, ns3::empty, ns3::DefaultDeleter<ns3::ndn::cs::Entry> >::SimpleRefCount() [constructor]
2518 cls.add_constructor([])
2519 ## 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]
2520 cls.add_constructor([param('ns3::SimpleRefCount< ns3::ndn::cs::Entry, ns3::empty, ns3::DefaultDeleter< ns3::ndn::cs::Entry > > const &', 'o')])
2521 ## 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]
2522 cls.add_method('Cleanup',
2523 'void',
2524 [],
2525 is_static=True)
2526 return
2527
2528def register_Ns3SimpleRefCount__Ns3NdnFibEntry_Ns3Empty_Ns3DefaultDeleter__lt__ns3NdnFibEntry__gt___methods(root_module, cls):
2529 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::ndn::fib::Entry, ns3::empty, ns3::DefaultDeleter<ns3::ndn::fib::Entry> >::SimpleRefCount() [constructor]
2530 cls.add_constructor([])
2531 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::ndn::fib::Entry, ns3::empty, ns3::DefaultDeleter<ns3::ndn::fib::Entry> >::SimpleRefCount(ns3::SimpleRefCount<ns3::ndn::fib::Entry, ns3::empty, ns3::DefaultDeleter<ns3::ndn::fib::Entry> > const & o) [copy constructor]
2532 cls.add_constructor([param('ns3::SimpleRefCount< ns3::ndn::fib::Entry, ns3::empty, ns3::DefaultDeleter< ns3::ndn::fib::Entry > > const &', 'o')])
2533 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::ndn::fib::Entry, ns3::empty, ns3::DefaultDeleter<ns3::ndn::fib::Entry> >::Cleanup() [member function]
2534 cls.add_method('Cleanup',
2535 'void',
2536 [],
2537 is_static=True)
2538 return
2539
2540def register_Ns3SimpleRefCount__Ns3NdnPitEntry_Ns3Empty_Ns3DefaultDeleter__lt__ns3NdnPitEntry__gt___methods(root_module, cls):
2541 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::ndn::pit::Entry, ns3::empty, ns3::DefaultDeleter<ns3::ndn::pit::Entry> >::SimpleRefCount() [constructor]
2542 cls.add_constructor([])
2543 ## 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]
2544 cls.add_constructor([param('ns3::SimpleRefCount< ns3::ndn::pit::Entry, ns3::empty, ns3::DefaultDeleter< ns3::ndn::pit::Entry > > const &', 'o')])
2545 ## 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]
2546 cls.add_method('Cleanup',
2547 'void',
2548 [],
2549 is_static=True)
2550 return
2551
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002552def register_Ns3Time_methods(root_module, cls):
Alexander Afanasyev1ba09b82012-07-09 09:16:14 -07002553 cls.add_binary_comparison_operator('<=')
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002554 cls.add_binary_comparison_operator('!=')
2555 cls.add_inplace_numeric_operator('+=', param('ns3::Time const &', 'right'))
2556 cls.add_inplace_numeric_operator('-=', param('ns3::Time const &', 'right'))
2557 cls.add_output_stream_operator()
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002558 cls.add_binary_comparison_operator('==')
2559 cls.add_binary_comparison_operator('>=')
2560 cls.add_binary_numeric_operator('+', root_module['ns3::Time'], root_module['ns3::Time'], param('ns3::Time const &', 'right'))
2561 cls.add_binary_numeric_operator('-', root_module['ns3::Time'], root_module['ns3::Time'], param('ns3::Time const &', 'right'))
2562 cls.add_binary_comparison_operator('<')
2563 cls.add_binary_comparison_operator('>')
2564 ## nstime.h (module 'core'): ns3::Time::Time() [constructor]
2565 cls.add_constructor([])
2566 ## nstime.h (module 'core'): ns3::Time::Time(ns3::Time const & o) [copy constructor]
2567 cls.add_constructor([param('ns3::Time const &', 'o')])
2568 ## nstime.h (module 'core'): ns3::Time::Time(double v) [constructor]
2569 cls.add_constructor([param('double', 'v')])
2570 ## nstime.h (module 'core'): ns3::Time::Time(int v) [constructor]
2571 cls.add_constructor([param('int', 'v')])
2572 ## nstime.h (module 'core'): ns3::Time::Time(long int v) [constructor]
2573 cls.add_constructor([param('long int', 'v')])
2574 ## nstime.h (module 'core'): ns3::Time::Time(long long int v) [constructor]
2575 cls.add_constructor([param('long long int', 'v')])
2576 ## nstime.h (module 'core'): ns3::Time::Time(unsigned int v) [constructor]
2577 cls.add_constructor([param('unsigned int', 'v')])
2578 ## nstime.h (module 'core'): ns3::Time::Time(long unsigned int v) [constructor]
2579 cls.add_constructor([param('long unsigned int', 'v')])
2580 ## nstime.h (module 'core'): ns3::Time::Time(long long unsigned int v) [constructor]
2581 cls.add_constructor([param('long long unsigned int', 'v')])
2582 ## nstime.h (module 'core'): ns3::Time::Time(std::string const & s) [constructor]
2583 cls.add_constructor([param('std::string const &', 's')])
2584 ## nstime.h (module 'core'): ns3::Time::Time(ns3::int64x64_t const & value) [constructor]
2585 cls.add_constructor([param('ns3::int64x64_t const &', 'value')])
2586 ## nstime.h (module 'core'): int ns3::Time::Compare(ns3::Time const & o) const [member function]
2587 cls.add_method('Compare',
2588 'int',
2589 [param('ns3::Time const &', 'o')],
2590 is_const=True)
2591 ## nstime.h (module 'core'): static ns3::Time ns3::Time::From(ns3::int64x64_t const & from, ns3::Time::Unit timeUnit) [member function]
2592 cls.add_method('From',
2593 'ns3::Time',
2594 [param('ns3::int64x64_t const &', 'from'), param('ns3::Time::Unit', 'timeUnit')],
2595 is_static=True)
2596 ## nstime.h (module 'core'): static ns3::Time ns3::Time::From(ns3::int64x64_t const & value) [member function]
2597 cls.add_method('From',
2598 'ns3::Time',
2599 [param('ns3::int64x64_t const &', 'value')],
2600 is_static=True)
2601 ## nstime.h (module 'core'): static ns3::Time ns3::Time::FromDouble(double value, ns3::Time::Unit timeUnit) [member function]
2602 cls.add_method('FromDouble',
2603 'ns3::Time',
2604 [param('double', 'value'), param('ns3::Time::Unit', 'timeUnit')],
2605 is_static=True)
2606 ## nstime.h (module 'core'): static ns3::Time ns3::Time::FromInteger(uint64_t value, ns3::Time::Unit timeUnit) [member function]
2607 cls.add_method('FromInteger',
2608 'ns3::Time',
2609 [param('uint64_t', 'value'), param('ns3::Time::Unit', 'timeUnit')],
2610 is_static=True)
2611 ## nstime.h (module 'core'): double ns3::Time::GetDouble() const [member function]
2612 cls.add_method('GetDouble',
2613 'double',
2614 [],
2615 is_const=True)
2616 ## nstime.h (module 'core'): int64_t ns3::Time::GetFemtoSeconds() const [member function]
2617 cls.add_method('GetFemtoSeconds',
2618 'int64_t',
2619 [],
2620 is_const=True)
2621 ## nstime.h (module 'core'): int64_t ns3::Time::GetInteger() const [member function]
2622 cls.add_method('GetInteger',
2623 'int64_t',
2624 [],
2625 is_const=True)
2626 ## nstime.h (module 'core'): int64_t ns3::Time::GetMicroSeconds() const [member function]
2627 cls.add_method('GetMicroSeconds',
2628 'int64_t',
2629 [],
2630 is_const=True)
2631 ## nstime.h (module 'core'): int64_t ns3::Time::GetMilliSeconds() const [member function]
2632 cls.add_method('GetMilliSeconds',
2633 'int64_t',
2634 [],
2635 is_const=True)
2636 ## nstime.h (module 'core'): int64_t ns3::Time::GetNanoSeconds() const [member function]
2637 cls.add_method('GetNanoSeconds',
2638 'int64_t',
2639 [],
2640 is_const=True)
2641 ## nstime.h (module 'core'): int64_t ns3::Time::GetPicoSeconds() const [member function]
2642 cls.add_method('GetPicoSeconds',
2643 'int64_t',
2644 [],
2645 is_const=True)
2646 ## nstime.h (module 'core'): static ns3::Time::Unit ns3::Time::GetResolution() [member function]
2647 cls.add_method('GetResolution',
2648 'ns3::Time::Unit',
2649 [],
2650 is_static=True)
2651 ## nstime.h (module 'core'): double ns3::Time::GetSeconds() const [member function]
2652 cls.add_method('GetSeconds',
2653 'double',
2654 [],
2655 is_const=True)
2656 ## nstime.h (module 'core'): int64_t ns3::Time::GetTimeStep() const [member function]
2657 cls.add_method('GetTimeStep',
2658 'int64_t',
2659 [],
2660 is_const=True)
2661 ## nstime.h (module 'core'): bool ns3::Time::IsNegative() const [member function]
2662 cls.add_method('IsNegative',
2663 'bool',
2664 [],
2665 is_const=True)
2666 ## nstime.h (module 'core'): bool ns3::Time::IsPositive() const [member function]
2667 cls.add_method('IsPositive',
2668 'bool',
2669 [],
2670 is_const=True)
2671 ## nstime.h (module 'core'): bool ns3::Time::IsStrictlyNegative() const [member function]
2672 cls.add_method('IsStrictlyNegative',
2673 'bool',
2674 [],
2675 is_const=True)
2676 ## nstime.h (module 'core'): bool ns3::Time::IsStrictlyPositive() const [member function]
2677 cls.add_method('IsStrictlyPositive',
2678 'bool',
2679 [],
2680 is_const=True)
2681 ## nstime.h (module 'core'): bool ns3::Time::IsZero() const [member function]
2682 cls.add_method('IsZero',
2683 'bool',
2684 [],
2685 is_const=True)
2686 ## nstime.h (module 'core'): static void ns3::Time::SetResolution(ns3::Time::Unit resolution) [member function]
2687 cls.add_method('SetResolution',
2688 'void',
2689 [param('ns3::Time::Unit', 'resolution')],
2690 is_static=True)
2691 ## nstime.h (module 'core'): ns3::int64x64_t ns3::Time::To(ns3::Time::Unit timeUnit) const [member function]
2692 cls.add_method('To',
2693 'ns3::int64x64_t',
2694 [param('ns3::Time::Unit', 'timeUnit')],
2695 is_const=True)
2696 ## nstime.h (module 'core'): double ns3::Time::ToDouble(ns3::Time::Unit timeUnit) const [member function]
2697 cls.add_method('ToDouble',
2698 'double',
2699 [param('ns3::Time::Unit', 'timeUnit')],
2700 is_const=True)
2701 ## nstime.h (module 'core'): int64_t ns3::Time::ToInteger(ns3::Time::Unit timeUnit) const [member function]
2702 cls.add_method('ToInteger',
2703 'int64_t',
2704 [param('ns3::Time::Unit', 'timeUnit')],
2705 is_const=True)
2706 return
2707
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002708def register_Ns3TraceSourceAccessor_methods(root_module, cls):
2709 ## trace-source-accessor.h (module 'core'): ns3::TraceSourceAccessor::TraceSourceAccessor(ns3::TraceSourceAccessor const & arg0) [copy constructor]
2710 cls.add_constructor([param('ns3::TraceSourceAccessor const &', 'arg0')])
2711 ## trace-source-accessor.h (module 'core'): ns3::TraceSourceAccessor::TraceSourceAccessor() [constructor]
2712 cls.add_constructor([])
2713 ## trace-source-accessor.h (module 'core'): bool ns3::TraceSourceAccessor::Connect(ns3::ObjectBase * obj, std::string context, ns3::CallbackBase const & cb) const [member function]
2714 cls.add_method('Connect',
2715 'bool',
2716 [param('ns3::ObjectBase *', 'obj', transfer_ownership=False), param('std::string', 'context'), param('ns3::CallbackBase const &', 'cb')],
2717 is_pure_virtual=True, is_const=True, is_virtual=True)
2718 ## trace-source-accessor.h (module 'core'): bool ns3::TraceSourceAccessor::ConnectWithoutContext(ns3::ObjectBase * obj, ns3::CallbackBase const & cb) const [member function]
2719 cls.add_method('ConnectWithoutContext',
2720 'bool',
2721 [param('ns3::ObjectBase *', 'obj', transfer_ownership=False), param('ns3::CallbackBase const &', 'cb')],
2722 is_pure_virtual=True, is_const=True, is_virtual=True)
2723 ## trace-source-accessor.h (module 'core'): bool ns3::TraceSourceAccessor::Disconnect(ns3::ObjectBase * obj, std::string context, ns3::CallbackBase const & cb) const [member function]
2724 cls.add_method('Disconnect',
2725 'bool',
2726 [param('ns3::ObjectBase *', 'obj', transfer_ownership=False), param('std::string', 'context'), param('ns3::CallbackBase const &', 'cb')],
2727 is_pure_virtual=True, is_const=True, is_virtual=True)
2728 ## trace-source-accessor.h (module 'core'): bool ns3::TraceSourceAccessor::DisconnectWithoutContext(ns3::ObjectBase * obj, ns3::CallbackBase const & cb) const [member function]
2729 cls.add_method('DisconnectWithoutContext',
2730 'bool',
2731 [param('ns3::ObjectBase *', 'obj', transfer_ownership=False), param('ns3::CallbackBase const &', 'cb')],
2732 is_pure_virtual=True, is_const=True, is_virtual=True)
2733 return
2734
2735def register_Ns3Trailer_methods(root_module, cls):
2736 cls.add_output_stream_operator()
2737 ## trailer.h (module 'network'): ns3::Trailer::Trailer() [constructor]
2738 cls.add_constructor([])
2739 ## trailer.h (module 'network'): ns3::Trailer::Trailer(ns3::Trailer const & arg0) [copy constructor]
2740 cls.add_constructor([param('ns3::Trailer const &', 'arg0')])
2741 ## trailer.h (module 'network'): uint32_t ns3::Trailer::Deserialize(ns3::Buffer::Iterator end) [member function]
2742 cls.add_method('Deserialize',
2743 'uint32_t',
2744 [param('ns3::Buffer::Iterator', 'end')],
2745 is_pure_virtual=True, is_virtual=True)
2746 ## trailer.h (module 'network'): uint32_t ns3::Trailer::GetSerializedSize() const [member function]
2747 cls.add_method('GetSerializedSize',
2748 'uint32_t',
2749 [],
2750 is_pure_virtual=True, is_const=True, is_virtual=True)
2751 ## trailer.h (module 'network'): static ns3::TypeId ns3::Trailer::GetTypeId() [member function]
2752 cls.add_method('GetTypeId',
2753 'ns3::TypeId',
2754 [],
2755 is_static=True)
2756 ## trailer.h (module 'network'): void ns3::Trailer::Print(std::ostream & os) const [member function]
2757 cls.add_method('Print',
2758 'void',
2759 [param('std::ostream &', 'os')],
2760 is_pure_virtual=True, is_const=True, is_virtual=True)
2761 ## trailer.h (module 'network'): void ns3::Trailer::Serialize(ns3::Buffer::Iterator start) const [member function]
2762 cls.add_method('Serialize',
2763 'void',
2764 [param('ns3::Buffer::Iterator', 'start')],
2765 is_pure_virtual=True, is_const=True, is_virtual=True)
2766 return
2767
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002768def register_Ns3Application_methods(root_module, cls):
2769 ## application.h (module 'network'): ns3::Application::Application(ns3::Application const & arg0) [copy constructor]
2770 cls.add_constructor([param('ns3::Application const &', 'arg0')])
2771 ## application.h (module 'network'): ns3::Application::Application() [constructor]
2772 cls.add_constructor([])
2773 ## application.h (module 'network'): ns3::Ptr<ns3::Node> ns3::Application::GetNode() const [member function]
2774 cls.add_method('GetNode',
2775 'ns3::Ptr< ns3::Node >',
2776 [],
2777 is_const=True)
2778 ## application.h (module 'network'): static ns3::TypeId ns3::Application::GetTypeId() [member function]
2779 cls.add_method('GetTypeId',
2780 'ns3::TypeId',
2781 [],
2782 is_static=True)
2783 ## application.h (module 'network'): void ns3::Application::SetNode(ns3::Ptr<ns3::Node> node) [member function]
2784 cls.add_method('SetNode',
2785 'void',
2786 [param('ns3::Ptr< ns3::Node >', 'node')])
2787 ## application.h (module 'network'): void ns3::Application::SetStartTime(ns3::Time start) [member function]
2788 cls.add_method('SetStartTime',
2789 'void',
2790 [param('ns3::Time', 'start')])
2791 ## application.h (module 'network'): void ns3::Application::SetStopTime(ns3::Time stop) [member function]
2792 cls.add_method('SetStopTime',
2793 'void',
2794 [param('ns3::Time', 'stop')])
2795 ## application.h (module 'network'): void ns3::Application::DoDispose() [member function]
2796 cls.add_method('DoDispose',
2797 'void',
2798 [],
2799 visibility='protected', is_virtual=True)
2800 ## application.h (module 'network'): void ns3::Application::DoStart() [member function]
2801 cls.add_method('DoStart',
2802 'void',
2803 [],
2804 visibility='protected', is_virtual=True)
2805 ## application.h (module 'network'): void ns3::Application::StartApplication() [member function]
2806 cls.add_method('StartApplication',
2807 'void',
2808 [],
Alexander Afanasyev06d3a612012-04-17 22:25:40 -07002809 visibility='private', is_virtual=True)
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002810 ## application.h (module 'network'): void ns3::Application::StopApplication() [member function]
2811 cls.add_method('StopApplication',
2812 'void',
2813 [],
Alexander Afanasyev06d3a612012-04-17 22:25:40 -07002814 visibility='private', is_virtual=True)
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002815 return
2816
2817def register_Ns3AttributeAccessor_methods(root_module, cls):
2818 ## attribute.h (module 'core'): ns3::AttributeAccessor::AttributeAccessor(ns3::AttributeAccessor const & arg0) [copy constructor]
2819 cls.add_constructor([param('ns3::AttributeAccessor const &', 'arg0')])
2820 ## attribute.h (module 'core'): ns3::AttributeAccessor::AttributeAccessor() [constructor]
2821 cls.add_constructor([])
2822 ## attribute.h (module 'core'): bool ns3::AttributeAccessor::Get(ns3::ObjectBase const * object, ns3::AttributeValue & attribute) const [member function]
2823 cls.add_method('Get',
2824 'bool',
2825 [param('ns3::ObjectBase const *', 'object'), param('ns3::AttributeValue &', 'attribute')],
2826 is_pure_virtual=True, is_const=True, is_virtual=True)
2827 ## attribute.h (module 'core'): bool ns3::AttributeAccessor::HasGetter() const [member function]
2828 cls.add_method('HasGetter',
2829 'bool',
2830 [],
2831 is_pure_virtual=True, is_const=True, is_virtual=True)
2832 ## attribute.h (module 'core'): bool ns3::AttributeAccessor::HasSetter() const [member function]
2833 cls.add_method('HasSetter',
2834 'bool',
2835 [],
2836 is_pure_virtual=True, is_const=True, is_virtual=True)
2837 ## attribute.h (module 'core'): bool ns3::AttributeAccessor::Set(ns3::ObjectBase * object, ns3::AttributeValue const & value) const [member function]
2838 cls.add_method('Set',
2839 'bool',
2840 [param('ns3::ObjectBase *', 'object', transfer_ownership=False), param('ns3::AttributeValue const &', 'value')],
2841 is_pure_virtual=True, is_const=True, is_virtual=True)
2842 return
2843
2844def register_Ns3AttributeChecker_methods(root_module, cls):
2845 ## attribute.h (module 'core'): ns3::AttributeChecker::AttributeChecker(ns3::AttributeChecker const & arg0) [copy constructor]
2846 cls.add_constructor([param('ns3::AttributeChecker const &', 'arg0')])
2847 ## attribute.h (module 'core'): ns3::AttributeChecker::AttributeChecker() [constructor]
2848 cls.add_constructor([])
2849 ## attribute.h (module 'core'): bool ns3::AttributeChecker::Check(ns3::AttributeValue const & value) const [member function]
2850 cls.add_method('Check',
2851 'bool',
2852 [param('ns3::AttributeValue const &', 'value')],
2853 is_pure_virtual=True, is_const=True, is_virtual=True)
2854 ## attribute.h (module 'core'): bool ns3::AttributeChecker::Copy(ns3::AttributeValue const & source, ns3::AttributeValue & destination) const [member function]
2855 cls.add_method('Copy',
2856 'bool',
2857 [param('ns3::AttributeValue const &', 'source'), param('ns3::AttributeValue &', 'destination')],
2858 is_pure_virtual=True, is_const=True, is_virtual=True)
2859 ## attribute.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::AttributeChecker::Create() const [member function]
2860 cls.add_method('Create',
2861 'ns3::Ptr< ns3::AttributeValue >',
2862 [],
2863 is_pure_virtual=True, is_const=True, is_virtual=True)
2864 ## attribute.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::AttributeChecker::CreateValidValue(ns3::AttributeValue const & value) const [member function]
2865 cls.add_method('CreateValidValue',
2866 'ns3::Ptr< ns3::AttributeValue >',
2867 [param('ns3::AttributeValue const &', 'value')],
2868 is_const=True)
2869 ## attribute.h (module 'core'): std::string ns3::AttributeChecker::GetUnderlyingTypeInformation() const [member function]
2870 cls.add_method('GetUnderlyingTypeInformation',
2871 'std::string',
2872 [],
2873 is_pure_virtual=True, is_const=True, is_virtual=True)
2874 ## attribute.h (module 'core'): std::string ns3::AttributeChecker::GetValueTypeName() const [member function]
2875 cls.add_method('GetValueTypeName',
2876 'std::string',
2877 [],
2878 is_pure_virtual=True, is_const=True, is_virtual=True)
2879 ## attribute.h (module 'core'): bool ns3::AttributeChecker::HasUnderlyingTypeInformation() const [member function]
2880 cls.add_method('HasUnderlyingTypeInformation',
2881 'bool',
2882 [],
2883 is_pure_virtual=True, is_const=True, is_virtual=True)
2884 return
2885
2886def register_Ns3AttributeValue_methods(root_module, cls):
2887 ## attribute.h (module 'core'): ns3::AttributeValue::AttributeValue(ns3::AttributeValue const & arg0) [copy constructor]
2888 cls.add_constructor([param('ns3::AttributeValue const &', 'arg0')])
2889 ## attribute.h (module 'core'): ns3::AttributeValue::AttributeValue() [constructor]
2890 cls.add_constructor([])
2891 ## attribute.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::AttributeValue::Copy() const [member function]
2892 cls.add_method('Copy',
2893 'ns3::Ptr< ns3::AttributeValue >',
2894 [],
2895 is_pure_virtual=True, is_const=True, is_virtual=True)
2896 ## attribute.h (module 'core'): bool ns3::AttributeValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
2897 cls.add_method('DeserializeFromString',
2898 'bool',
2899 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
2900 is_pure_virtual=True, is_virtual=True)
2901 ## attribute.h (module 'core'): std::string ns3::AttributeValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
2902 cls.add_method('SerializeToString',
2903 'std::string',
2904 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
2905 is_pure_virtual=True, is_const=True, is_virtual=True)
2906 return
2907
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08002908def register_Ns3BatchesChecker_methods(root_module, cls):
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07002909 ## batches.h (module 'ndnSIM'): ns3::BatchesChecker::BatchesChecker() [constructor]
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08002910 cls.add_constructor([])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07002911 ## batches.h (module 'ndnSIM'): ns3::BatchesChecker::BatchesChecker(ns3::BatchesChecker const & arg0) [copy constructor]
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08002912 cls.add_constructor([param('ns3::BatchesChecker const &', 'arg0')])
2913 return
2914
2915def register_Ns3BatchesValue_methods(root_module, cls):
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07002916 ## batches.h (module 'ndnSIM'): ns3::BatchesValue::BatchesValue() [constructor]
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08002917 cls.add_constructor([])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07002918 ## batches.h (module 'ndnSIM'): ns3::BatchesValue::BatchesValue(ns3::BatchesValue const & arg0) [copy constructor]
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08002919 cls.add_constructor([param('ns3::BatchesValue const &', 'arg0')])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07002920 ## batches.h (module 'ndnSIM'): ns3::BatchesValue::BatchesValue(ns3::Batches const & value) [constructor]
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08002921 cls.add_constructor([param('ns3::Batches const &', 'value')])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07002922 ## batches.h (module 'ndnSIM'): ns3::Ptr<ns3::AttributeValue> ns3::BatchesValue::Copy() const [member function]
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08002923 cls.add_method('Copy',
2924 'ns3::Ptr< ns3::AttributeValue >',
2925 [],
2926 is_const=True, is_virtual=True)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07002927 ## batches.h (module 'ndnSIM'): bool ns3::BatchesValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08002928 cls.add_method('DeserializeFromString',
2929 'bool',
2930 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
2931 is_virtual=True)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07002932 ## batches.h (module 'ndnSIM'): ns3::Batches ns3::BatchesValue::Get() const [member function]
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08002933 cls.add_method('Get',
2934 'ns3::Batches',
2935 [],
2936 is_const=True)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07002937 ## batches.h (module 'ndnSIM'): std::string ns3::BatchesValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08002938 cls.add_method('SerializeToString',
2939 'std::string',
2940 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
2941 is_const=True, is_virtual=True)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07002942 ## batches.h (module 'ndnSIM'): void ns3::BatchesValue::Set(ns3::Batches const & value) [member function]
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08002943 cls.add_method('Set',
2944 'void',
2945 [param('ns3::Batches const &', 'value')])
2946 return
2947
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002948def register_Ns3CallbackChecker_methods(root_module, cls):
2949 ## callback.h (module 'core'): ns3::CallbackChecker::CallbackChecker() [constructor]
2950 cls.add_constructor([])
2951 ## callback.h (module 'core'): ns3::CallbackChecker::CallbackChecker(ns3::CallbackChecker const & arg0) [copy constructor]
2952 cls.add_constructor([param('ns3::CallbackChecker const &', 'arg0')])
2953 return
2954
2955def register_Ns3CallbackImplBase_methods(root_module, cls):
2956 ## callback.h (module 'core'): ns3::CallbackImplBase::CallbackImplBase() [constructor]
2957 cls.add_constructor([])
2958 ## callback.h (module 'core'): ns3::CallbackImplBase::CallbackImplBase(ns3::CallbackImplBase const & arg0) [copy constructor]
2959 cls.add_constructor([param('ns3::CallbackImplBase const &', 'arg0')])
2960 ## callback.h (module 'core'): bool ns3::CallbackImplBase::IsEqual(ns3::Ptr<ns3::CallbackImplBase const> other) const [member function]
2961 cls.add_method('IsEqual',
2962 'bool',
2963 [param('ns3::Ptr< ns3::CallbackImplBase const >', 'other')],
2964 is_pure_virtual=True, is_const=True, is_virtual=True)
2965 return
2966
2967def register_Ns3CallbackValue_methods(root_module, cls):
2968 ## callback.h (module 'core'): ns3::CallbackValue::CallbackValue(ns3::CallbackValue const & arg0) [copy constructor]
2969 cls.add_constructor([param('ns3::CallbackValue const &', 'arg0')])
2970 ## callback.h (module 'core'): ns3::CallbackValue::CallbackValue() [constructor]
2971 cls.add_constructor([])
2972 ## callback.h (module 'core'): ns3::CallbackValue::CallbackValue(ns3::CallbackBase const & base) [constructor]
2973 cls.add_constructor([param('ns3::CallbackBase const &', 'base')])
2974 ## callback.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::CallbackValue::Copy() const [member function]
2975 cls.add_method('Copy',
2976 'ns3::Ptr< ns3::AttributeValue >',
2977 [],
2978 is_const=True, is_virtual=True)
2979 ## callback.h (module 'core'): bool ns3::CallbackValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
2980 cls.add_method('DeserializeFromString',
2981 'bool',
2982 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
2983 is_virtual=True)
2984 ## callback.h (module 'core'): std::string ns3::CallbackValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
2985 cls.add_method('SerializeToString',
2986 'std::string',
2987 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
2988 is_const=True, is_virtual=True)
2989 ## callback.h (module 'core'): void ns3::CallbackValue::Set(ns3::CallbackBase base) [member function]
2990 cls.add_method('Set',
2991 'void',
2992 [param('ns3::CallbackBase', 'base')])
2993 return
2994
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08002995def register_Ns3EmptyAttributeValue_methods(root_module, cls):
2996 ## attribute.h (module 'core'): ns3::EmptyAttributeValue::EmptyAttributeValue(ns3::EmptyAttributeValue const & arg0) [copy constructor]
2997 cls.add_constructor([param('ns3::EmptyAttributeValue const &', 'arg0')])
2998 ## attribute.h (module 'core'): ns3::EmptyAttributeValue::EmptyAttributeValue() [constructor]
2999 cls.add_constructor([])
3000 ## attribute.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::EmptyAttributeValue::Copy() const [member function]
3001 cls.add_method('Copy',
3002 'ns3::Ptr< ns3::AttributeValue >',
3003 [],
3004 is_const=True, visibility='private', is_virtual=True)
3005 ## attribute.h (module 'core'): bool ns3::EmptyAttributeValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
3006 cls.add_method('DeserializeFromString',
3007 'bool',
3008 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3009 visibility='private', is_virtual=True)
3010 ## attribute.h (module 'core'): std::string ns3::EmptyAttributeValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
3011 cls.add_method('SerializeToString',
3012 'std::string',
3013 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3014 is_const=True, visibility='private', is_virtual=True)
3015 return
3016
3017def register_Ns3EventImpl_methods(root_module, cls):
3018 ## event-impl.h (module 'core'): ns3::EventImpl::EventImpl(ns3::EventImpl const & arg0) [copy constructor]
3019 cls.add_constructor([param('ns3::EventImpl const &', 'arg0')])
3020 ## event-impl.h (module 'core'): ns3::EventImpl::EventImpl() [constructor]
3021 cls.add_constructor([])
3022 ## event-impl.h (module 'core'): void ns3::EventImpl::Cancel() [member function]
3023 cls.add_method('Cancel',
3024 'void',
3025 [])
3026 ## event-impl.h (module 'core'): void ns3::EventImpl::Invoke() [member function]
3027 cls.add_method('Invoke',
3028 'void',
3029 [])
3030 ## event-impl.h (module 'core'): bool ns3::EventImpl::IsCancelled() [member function]
3031 cls.add_method('IsCancelled',
3032 'bool',
3033 [])
3034 ## event-impl.h (module 'core'): void ns3::EventImpl::Notify() [member function]
3035 cls.add_method('Notify',
3036 'void',
3037 [],
3038 is_pure_virtual=True, visibility='protected', is_virtual=True)
3039 return
3040
3041def register_Ns3IntegerValue_methods(root_module, cls):
3042 ## integer.h (module 'core'): ns3::IntegerValue::IntegerValue() [constructor]
3043 cls.add_constructor([])
3044 ## integer.h (module 'core'): ns3::IntegerValue::IntegerValue(ns3::IntegerValue const & arg0) [copy constructor]
3045 cls.add_constructor([param('ns3::IntegerValue const &', 'arg0')])
3046 ## integer.h (module 'core'): ns3::IntegerValue::IntegerValue(int64_t const & value) [constructor]
3047 cls.add_constructor([param('int64_t const &', 'value')])
3048 ## integer.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::IntegerValue::Copy() const [member function]
3049 cls.add_method('Copy',
3050 'ns3::Ptr< ns3::AttributeValue >',
3051 [],
3052 is_const=True, is_virtual=True)
3053 ## integer.h (module 'core'): bool ns3::IntegerValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
3054 cls.add_method('DeserializeFromString',
3055 'bool',
3056 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3057 is_virtual=True)
3058 ## integer.h (module 'core'): int64_t ns3::IntegerValue::Get() const [member function]
3059 cls.add_method('Get',
3060 'int64_t',
3061 [],
3062 is_const=True)
3063 ## integer.h (module 'core'): std::string ns3::IntegerValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
3064 cls.add_method('SerializeToString',
3065 'std::string',
3066 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3067 is_const=True, is_virtual=True)
3068 ## integer.h (module 'core'): void ns3::IntegerValue::Set(int64_t const & value) [member function]
3069 cls.add_method('Set',
3070 'void',
3071 [param('int64_t const &', 'value')])
3072 return
3073
3074def register_Ns3Ipv4AddressChecker_methods(root_module, cls):
3075 ## ipv4-address.h (module 'network'): ns3::Ipv4AddressChecker::Ipv4AddressChecker() [constructor]
3076 cls.add_constructor([])
3077 ## ipv4-address.h (module 'network'): ns3::Ipv4AddressChecker::Ipv4AddressChecker(ns3::Ipv4AddressChecker const & arg0) [copy constructor]
3078 cls.add_constructor([param('ns3::Ipv4AddressChecker const &', 'arg0')])
3079 return
3080
3081def register_Ns3Ipv4AddressValue_methods(root_module, cls):
3082 ## ipv4-address.h (module 'network'): ns3::Ipv4AddressValue::Ipv4AddressValue() [constructor]
3083 cls.add_constructor([])
3084 ## ipv4-address.h (module 'network'): ns3::Ipv4AddressValue::Ipv4AddressValue(ns3::Ipv4AddressValue const & arg0) [copy constructor]
3085 cls.add_constructor([param('ns3::Ipv4AddressValue const &', 'arg0')])
3086 ## ipv4-address.h (module 'network'): ns3::Ipv4AddressValue::Ipv4AddressValue(ns3::Ipv4Address const & value) [constructor]
3087 cls.add_constructor([param('ns3::Ipv4Address const &', 'value')])
3088 ## ipv4-address.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::Ipv4AddressValue::Copy() const [member function]
3089 cls.add_method('Copy',
3090 'ns3::Ptr< ns3::AttributeValue >',
3091 [],
3092 is_const=True, is_virtual=True)
3093 ## ipv4-address.h (module 'network'): bool ns3::Ipv4AddressValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
3094 cls.add_method('DeserializeFromString',
3095 'bool',
3096 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3097 is_virtual=True)
3098 ## ipv4-address.h (module 'network'): ns3::Ipv4Address ns3::Ipv4AddressValue::Get() const [member function]
3099 cls.add_method('Get',
3100 'ns3::Ipv4Address',
3101 [],
3102 is_const=True)
3103 ## ipv4-address.h (module 'network'): std::string ns3::Ipv4AddressValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
3104 cls.add_method('SerializeToString',
3105 'std::string',
3106 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3107 is_const=True, is_virtual=True)
3108 ## ipv4-address.h (module 'network'): void ns3::Ipv4AddressValue::Set(ns3::Ipv4Address const & value) [member function]
3109 cls.add_method('Set',
3110 'void',
3111 [param('ns3::Ipv4Address const &', 'value')])
3112 return
3113
3114def register_Ns3Ipv4MaskChecker_methods(root_module, cls):
3115 ## ipv4-address.h (module 'network'): ns3::Ipv4MaskChecker::Ipv4MaskChecker() [constructor]
3116 cls.add_constructor([])
3117 ## ipv4-address.h (module 'network'): ns3::Ipv4MaskChecker::Ipv4MaskChecker(ns3::Ipv4MaskChecker const & arg0) [copy constructor]
3118 cls.add_constructor([param('ns3::Ipv4MaskChecker const &', 'arg0')])
3119 return
3120
3121def register_Ns3Ipv4MaskValue_methods(root_module, cls):
3122 ## ipv4-address.h (module 'network'): ns3::Ipv4MaskValue::Ipv4MaskValue() [constructor]
3123 cls.add_constructor([])
3124 ## ipv4-address.h (module 'network'): ns3::Ipv4MaskValue::Ipv4MaskValue(ns3::Ipv4MaskValue const & arg0) [copy constructor]
3125 cls.add_constructor([param('ns3::Ipv4MaskValue const &', 'arg0')])
3126 ## ipv4-address.h (module 'network'): ns3::Ipv4MaskValue::Ipv4MaskValue(ns3::Ipv4Mask const & value) [constructor]
3127 cls.add_constructor([param('ns3::Ipv4Mask const &', 'value')])
3128 ## ipv4-address.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::Ipv4MaskValue::Copy() const [member function]
3129 cls.add_method('Copy',
3130 'ns3::Ptr< ns3::AttributeValue >',
3131 [],
3132 is_const=True, is_virtual=True)
3133 ## ipv4-address.h (module 'network'): bool ns3::Ipv4MaskValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
3134 cls.add_method('DeserializeFromString',
3135 'bool',
3136 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3137 is_virtual=True)
3138 ## ipv4-address.h (module 'network'): ns3::Ipv4Mask ns3::Ipv4MaskValue::Get() const [member function]
3139 cls.add_method('Get',
3140 'ns3::Ipv4Mask',
3141 [],
3142 is_const=True)
3143 ## ipv4-address.h (module 'network'): std::string ns3::Ipv4MaskValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
3144 cls.add_method('SerializeToString',
3145 'std::string',
3146 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3147 is_const=True, is_virtual=True)
3148 ## ipv4-address.h (module 'network'): void ns3::Ipv4MaskValue::Set(ns3::Ipv4Mask const & value) [member function]
3149 cls.add_method('Set',
3150 'void',
3151 [param('ns3::Ipv4Mask const &', 'value')])
3152 return
3153
3154def register_Ns3Ipv6AddressChecker_methods(root_module, cls):
3155 ## ipv6-address.h (module 'network'): ns3::Ipv6AddressChecker::Ipv6AddressChecker() [constructor]
3156 cls.add_constructor([])
3157 ## ipv6-address.h (module 'network'): ns3::Ipv6AddressChecker::Ipv6AddressChecker(ns3::Ipv6AddressChecker const & arg0) [copy constructor]
3158 cls.add_constructor([param('ns3::Ipv6AddressChecker const &', 'arg0')])
3159 return
3160
3161def register_Ns3Ipv6AddressValue_methods(root_module, cls):
3162 ## ipv6-address.h (module 'network'): ns3::Ipv6AddressValue::Ipv6AddressValue() [constructor]
3163 cls.add_constructor([])
3164 ## ipv6-address.h (module 'network'): ns3::Ipv6AddressValue::Ipv6AddressValue(ns3::Ipv6AddressValue const & arg0) [copy constructor]
3165 cls.add_constructor([param('ns3::Ipv6AddressValue const &', 'arg0')])
3166 ## ipv6-address.h (module 'network'): ns3::Ipv6AddressValue::Ipv6AddressValue(ns3::Ipv6Address const & value) [constructor]
3167 cls.add_constructor([param('ns3::Ipv6Address const &', 'value')])
3168 ## ipv6-address.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::Ipv6AddressValue::Copy() const [member function]
3169 cls.add_method('Copy',
3170 'ns3::Ptr< ns3::AttributeValue >',
3171 [],
3172 is_const=True, is_virtual=True)
3173 ## ipv6-address.h (module 'network'): bool ns3::Ipv6AddressValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
3174 cls.add_method('DeserializeFromString',
3175 'bool',
3176 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3177 is_virtual=True)
3178 ## ipv6-address.h (module 'network'): ns3::Ipv6Address ns3::Ipv6AddressValue::Get() const [member function]
3179 cls.add_method('Get',
3180 'ns3::Ipv6Address',
3181 [],
3182 is_const=True)
3183 ## ipv6-address.h (module 'network'): std::string ns3::Ipv6AddressValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
3184 cls.add_method('SerializeToString',
3185 'std::string',
3186 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3187 is_const=True, is_virtual=True)
3188 ## ipv6-address.h (module 'network'): void ns3::Ipv6AddressValue::Set(ns3::Ipv6Address const & value) [member function]
3189 cls.add_method('Set',
3190 'void',
3191 [param('ns3::Ipv6Address const &', 'value')])
3192 return
3193
3194def register_Ns3Ipv6PrefixChecker_methods(root_module, cls):
3195 ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixChecker::Ipv6PrefixChecker() [constructor]
3196 cls.add_constructor([])
3197 ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixChecker::Ipv6PrefixChecker(ns3::Ipv6PrefixChecker const & arg0) [copy constructor]
3198 cls.add_constructor([param('ns3::Ipv6PrefixChecker const &', 'arg0')])
3199 return
3200
3201def register_Ns3Ipv6PrefixValue_methods(root_module, cls):
3202 ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixValue::Ipv6PrefixValue() [constructor]
3203 cls.add_constructor([])
3204 ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixValue::Ipv6PrefixValue(ns3::Ipv6PrefixValue const & arg0) [copy constructor]
3205 cls.add_constructor([param('ns3::Ipv6PrefixValue const &', 'arg0')])
3206 ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixValue::Ipv6PrefixValue(ns3::Ipv6Prefix const & value) [constructor]
3207 cls.add_constructor([param('ns3::Ipv6Prefix const &', 'value')])
3208 ## ipv6-address.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::Ipv6PrefixValue::Copy() const [member function]
3209 cls.add_method('Copy',
3210 'ns3::Ptr< ns3::AttributeValue >',
3211 [],
3212 is_const=True, is_virtual=True)
3213 ## ipv6-address.h (module 'network'): bool ns3::Ipv6PrefixValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
3214 cls.add_method('DeserializeFromString',
3215 'bool',
3216 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3217 is_virtual=True)
3218 ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix ns3::Ipv6PrefixValue::Get() const [member function]
3219 cls.add_method('Get',
3220 'ns3::Ipv6Prefix',
3221 [],
3222 is_const=True)
3223 ## ipv6-address.h (module 'network'): std::string ns3::Ipv6PrefixValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
3224 cls.add_method('SerializeToString',
3225 'std::string',
3226 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3227 is_const=True, is_virtual=True)
3228 ## ipv6-address.h (module 'network'): void ns3::Ipv6PrefixValue::Set(ns3::Ipv6Prefix const & value) [member function]
3229 cls.add_method('Set',
3230 'void',
3231 [param('ns3::Ipv6Prefix const &', 'value')])
3232 return
3233
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08003234def register_Ns3NetDevice_methods(root_module, cls):
3235 ## net-device.h (module 'network'): ns3::NetDevice::NetDevice() [constructor]
3236 cls.add_constructor([])
3237 ## net-device.h (module 'network'): ns3::NetDevice::NetDevice(ns3::NetDevice const & arg0) [copy constructor]
3238 cls.add_constructor([param('ns3::NetDevice const &', 'arg0')])
3239 ## 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]
3240 cls.add_method('AddLinkChangeCallback',
3241 'void',
3242 [param('ns3::Callback< void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'callback')],
3243 is_pure_virtual=True, is_virtual=True)
3244 ## net-device.h (module 'network'): ns3::Address ns3::NetDevice::GetAddress() const [member function]
3245 cls.add_method('GetAddress',
3246 'ns3::Address',
3247 [],
3248 is_pure_virtual=True, is_const=True, is_virtual=True)
3249 ## net-device.h (module 'network'): ns3::Address ns3::NetDevice::GetBroadcast() const [member function]
3250 cls.add_method('GetBroadcast',
3251 'ns3::Address',
3252 [],
3253 is_pure_virtual=True, is_const=True, is_virtual=True)
3254 ## net-device.h (module 'network'): ns3::Ptr<ns3::Channel> ns3::NetDevice::GetChannel() const [member function]
3255 cls.add_method('GetChannel',
3256 'ns3::Ptr< ns3::Channel >',
3257 [],
3258 is_pure_virtual=True, is_const=True, is_virtual=True)
3259 ## net-device.h (module 'network'): uint32_t ns3::NetDevice::GetIfIndex() const [member function]
3260 cls.add_method('GetIfIndex',
3261 'uint32_t',
3262 [],
3263 is_pure_virtual=True, is_const=True, is_virtual=True)
3264 ## net-device.h (module 'network'): uint16_t ns3::NetDevice::GetMtu() const [member function]
3265 cls.add_method('GetMtu',
3266 'uint16_t',
3267 [],
3268 is_pure_virtual=True, is_const=True, is_virtual=True)
3269 ## net-device.h (module 'network'): ns3::Address ns3::NetDevice::GetMulticast(ns3::Ipv4Address multicastGroup) const [member function]
3270 cls.add_method('GetMulticast',
3271 'ns3::Address',
3272 [param('ns3::Ipv4Address', 'multicastGroup')],
3273 is_pure_virtual=True, is_const=True, is_virtual=True)
3274 ## net-device.h (module 'network'): ns3::Address ns3::NetDevice::GetMulticast(ns3::Ipv6Address addr) const [member function]
3275 cls.add_method('GetMulticast',
3276 'ns3::Address',
3277 [param('ns3::Ipv6Address', 'addr')],
3278 is_pure_virtual=True, is_const=True, is_virtual=True)
3279 ## net-device.h (module 'network'): ns3::Ptr<ns3::Node> ns3::NetDevice::GetNode() const [member function]
3280 cls.add_method('GetNode',
3281 'ns3::Ptr< ns3::Node >',
3282 [],
3283 is_pure_virtual=True, is_const=True, is_virtual=True)
3284 ## net-device.h (module 'network'): static ns3::TypeId ns3::NetDevice::GetTypeId() [member function]
3285 cls.add_method('GetTypeId',
3286 'ns3::TypeId',
3287 [],
3288 is_static=True)
3289 ## net-device.h (module 'network'): bool ns3::NetDevice::IsBridge() const [member function]
3290 cls.add_method('IsBridge',
3291 'bool',
3292 [],
3293 is_pure_virtual=True, is_const=True, is_virtual=True)
3294 ## net-device.h (module 'network'): bool ns3::NetDevice::IsBroadcast() const [member function]
3295 cls.add_method('IsBroadcast',
3296 'bool',
3297 [],
3298 is_pure_virtual=True, is_const=True, is_virtual=True)
3299 ## net-device.h (module 'network'): bool ns3::NetDevice::IsLinkUp() const [member function]
3300 cls.add_method('IsLinkUp',
3301 'bool',
3302 [],
3303 is_pure_virtual=True, is_const=True, is_virtual=True)
3304 ## net-device.h (module 'network'): bool ns3::NetDevice::IsMulticast() const [member function]
3305 cls.add_method('IsMulticast',
3306 'bool',
3307 [],
3308 is_pure_virtual=True, is_const=True, is_virtual=True)
3309 ## net-device.h (module 'network'): bool ns3::NetDevice::IsPointToPoint() const [member function]
3310 cls.add_method('IsPointToPoint',
3311 'bool',
3312 [],
3313 is_pure_virtual=True, is_const=True, is_virtual=True)
3314 ## net-device.h (module 'network'): bool ns3::NetDevice::NeedsArp() const [member function]
3315 cls.add_method('NeedsArp',
3316 'bool',
3317 [],
3318 is_pure_virtual=True, is_const=True, is_virtual=True)
3319 ## net-device.h (module 'network'): bool ns3::NetDevice::Send(ns3::Ptr<ns3::Packet> packet, ns3::Address const & dest, uint16_t protocolNumber) [member function]
3320 cls.add_method('Send',
3321 'bool',
3322 [param('ns3::Ptr< ns3::Packet >', 'packet'), param('ns3::Address const &', 'dest'), param('uint16_t', 'protocolNumber')],
3323 is_pure_virtual=True, is_virtual=True)
3324 ## 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]
3325 cls.add_method('SendFrom',
3326 'bool',
3327 [param('ns3::Ptr< ns3::Packet >', 'packet'), param('ns3::Address const &', 'source'), param('ns3::Address const &', 'dest'), param('uint16_t', 'protocolNumber')],
3328 is_pure_virtual=True, is_virtual=True)
3329 ## net-device.h (module 'network'): void ns3::NetDevice::SetAddress(ns3::Address address) [member function]
3330 cls.add_method('SetAddress',
3331 'void',
3332 [param('ns3::Address', 'address')],
3333 is_pure_virtual=True, is_virtual=True)
3334 ## net-device.h (module 'network'): void ns3::NetDevice::SetIfIndex(uint32_t const index) [member function]
3335 cls.add_method('SetIfIndex',
3336 'void',
3337 [param('uint32_t const', 'index')],
3338 is_pure_virtual=True, is_virtual=True)
3339 ## net-device.h (module 'network'): bool ns3::NetDevice::SetMtu(uint16_t const mtu) [member function]
3340 cls.add_method('SetMtu',
3341 'bool',
3342 [param('uint16_t const', 'mtu')],
3343 is_pure_virtual=True, is_virtual=True)
3344 ## net-device.h (module 'network'): void ns3::NetDevice::SetNode(ns3::Ptr<ns3::Node> node) [member function]
3345 cls.add_method('SetNode',
3346 'void',
3347 [param('ns3::Ptr< ns3::Node >', 'node')],
3348 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -08003349 ## 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 -08003350 cls.add_method('SetPromiscReceiveCallback',
3351 'void',
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -08003352 [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 -08003353 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -08003354 ## 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 -08003355 cls.add_method('SetReceiveCallback',
3356 'void',
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -08003357 [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 -08003358 is_pure_virtual=True, is_virtual=True)
3359 ## net-device.h (module 'network'): bool ns3::NetDevice::SupportsSendFrom() const [member function]
3360 cls.add_method('SupportsSendFrom',
3361 'bool',
3362 [],
3363 is_pure_virtual=True, is_const=True, is_virtual=True)
3364 return
3365
3366def register_Ns3NixVector_methods(root_module, cls):
3367 cls.add_output_stream_operator()
3368 ## nix-vector.h (module 'network'): ns3::NixVector::NixVector() [constructor]
3369 cls.add_constructor([])
3370 ## nix-vector.h (module 'network'): ns3::NixVector::NixVector(ns3::NixVector const & o) [copy constructor]
3371 cls.add_constructor([param('ns3::NixVector const &', 'o')])
3372 ## nix-vector.h (module 'network'): void ns3::NixVector::AddNeighborIndex(uint32_t newBits, uint32_t numberOfBits) [member function]
3373 cls.add_method('AddNeighborIndex',
3374 'void',
3375 [param('uint32_t', 'newBits'), param('uint32_t', 'numberOfBits')])
3376 ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::BitCount(uint32_t numberOfNeighbors) const [member function]
3377 cls.add_method('BitCount',
3378 'uint32_t',
3379 [param('uint32_t', 'numberOfNeighbors')],
3380 is_const=True)
3381 ## nix-vector.h (module 'network'): ns3::Ptr<ns3::NixVector> ns3::NixVector::Copy() const [member function]
3382 cls.add_method('Copy',
3383 'ns3::Ptr< ns3::NixVector >',
3384 [],
3385 is_const=True)
3386 ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::Deserialize(uint32_t const * buffer, uint32_t size) [member function]
3387 cls.add_method('Deserialize',
3388 'uint32_t',
3389 [param('uint32_t const *', 'buffer'), param('uint32_t', 'size')])
3390 ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::ExtractNeighborIndex(uint32_t numberOfBits) [member function]
3391 cls.add_method('ExtractNeighborIndex',
3392 'uint32_t',
3393 [param('uint32_t', 'numberOfBits')])
3394 ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::GetRemainingBits() [member function]
3395 cls.add_method('GetRemainingBits',
3396 'uint32_t',
3397 [])
3398 ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::GetSerializedSize() const [member function]
3399 cls.add_method('GetSerializedSize',
3400 'uint32_t',
3401 [],
3402 is_const=True)
3403 ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::Serialize(uint32_t * buffer, uint32_t maxSize) const [member function]
3404 cls.add_method('Serialize',
3405 'uint32_t',
3406 [param('uint32_t *', 'buffer'), param('uint32_t', 'maxSize')],
3407 is_const=True)
3408 return
3409
3410def register_Ns3Node_methods(root_module, cls):
3411 ## node.h (module 'network'): ns3::Node::Node(ns3::Node const & arg0) [copy constructor]
3412 cls.add_constructor([param('ns3::Node const &', 'arg0')])
3413 ## node.h (module 'network'): ns3::Node::Node() [constructor]
3414 cls.add_constructor([])
3415 ## node.h (module 'network'): ns3::Node::Node(uint32_t systemId) [constructor]
3416 cls.add_constructor([param('uint32_t', 'systemId')])
3417 ## node.h (module 'network'): uint32_t ns3::Node::AddApplication(ns3::Ptr<ns3::Application> application) [member function]
3418 cls.add_method('AddApplication',
3419 'uint32_t',
3420 [param('ns3::Ptr< ns3::Application >', 'application')])
3421 ## node.h (module 'network'): uint32_t ns3::Node::AddDevice(ns3::Ptr<ns3::NetDevice> device) [member function]
3422 cls.add_method('AddDevice',
3423 'uint32_t',
3424 [param('ns3::Ptr< ns3::NetDevice >', 'device')])
3425 ## node.h (module 'network'): static bool ns3::Node::ChecksumEnabled() [member function]
3426 cls.add_method('ChecksumEnabled',
3427 'bool',
3428 [],
3429 is_static=True)
3430 ## node.h (module 'network'): ns3::Ptr<ns3::Application> ns3::Node::GetApplication(uint32_t index) const [member function]
3431 cls.add_method('GetApplication',
3432 'ns3::Ptr< ns3::Application >',
3433 [param('uint32_t', 'index')],
3434 is_const=True)
3435 ## node.h (module 'network'): ns3::Ptr<ns3::NetDevice> ns3::Node::GetDevice(uint32_t index) const [member function]
3436 cls.add_method('GetDevice',
3437 'ns3::Ptr< ns3::NetDevice >',
3438 [param('uint32_t', 'index')],
3439 is_const=True)
3440 ## node.h (module 'network'): uint32_t ns3::Node::GetId() const [member function]
3441 cls.add_method('GetId',
3442 'uint32_t',
3443 [],
3444 is_const=True)
3445 ## node.h (module 'network'): uint32_t ns3::Node::GetNApplications() const [member function]
3446 cls.add_method('GetNApplications',
3447 'uint32_t',
3448 [],
3449 is_const=True)
3450 ## node.h (module 'network'): uint32_t ns3::Node::GetNDevices() const [member function]
3451 cls.add_method('GetNDevices',
3452 'uint32_t',
3453 [],
3454 is_const=True)
3455 ## node.h (module 'network'): uint32_t ns3::Node::GetSystemId() const [member function]
3456 cls.add_method('GetSystemId',
3457 'uint32_t',
3458 [],
3459 is_const=True)
3460 ## node.h (module 'network'): static ns3::TypeId ns3::Node::GetTypeId() [member function]
3461 cls.add_method('GetTypeId',
3462 'ns3::TypeId',
3463 [],
3464 is_static=True)
3465 ## 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]
3466 cls.add_method('RegisterDeviceAdditionListener',
3467 'void',
3468 [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')])
3469 ## 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]
3470 cls.add_method('RegisterProtocolHandler',
3471 'void',
3472 [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')])
3473 ## 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]
3474 cls.add_method('UnregisterDeviceAdditionListener',
3475 'void',
3476 [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')])
3477 ## 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]
3478 cls.add_method('UnregisterProtocolHandler',
3479 'void',
3480 [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')])
3481 ## node.h (module 'network'): void ns3::Node::DoDispose() [member function]
3482 cls.add_method('DoDispose',
3483 'void',
3484 [],
3485 visibility='protected', is_virtual=True)
3486 ## node.h (module 'network'): void ns3::Node::DoStart() [member function]
3487 cls.add_method('DoStart',
3488 'void',
3489 [],
3490 visibility='protected', is_virtual=True)
3491 return
3492
3493def register_Ns3ObjectFactoryChecker_methods(root_module, cls):
3494 ## object-factory.h (module 'core'): ns3::ObjectFactoryChecker::ObjectFactoryChecker() [constructor]
3495 cls.add_constructor([])
3496 ## object-factory.h (module 'core'): ns3::ObjectFactoryChecker::ObjectFactoryChecker(ns3::ObjectFactoryChecker const & arg0) [copy constructor]
3497 cls.add_constructor([param('ns3::ObjectFactoryChecker const &', 'arg0')])
3498 return
3499
3500def register_Ns3ObjectFactoryValue_methods(root_module, cls):
3501 ## object-factory.h (module 'core'): ns3::ObjectFactoryValue::ObjectFactoryValue() [constructor]
3502 cls.add_constructor([])
3503 ## object-factory.h (module 'core'): ns3::ObjectFactoryValue::ObjectFactoryValue(ns3::ObjectFactoryValue const & arg0) [copy constructor]
3504 cls.add_constructor([param('ns3::ObjectFactoryValue const &', 'arg0')])
3505 ## object-factory.h (module 'core'): ns3::ObjectFactoryValue::ObjectFactoryValue(ns3::ObjectFactory const & value) [constructor]
3506 cls.add_constructor([param('ns3::ObjectFactory const &', 'value')])
3507 ## object-factory.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::ObjectFactoryValue::Copy() const [member function]
3508 cls.add_method('Copy',
3509 'ns3::Ptr< ns3::AttributeValue >',
3510 [],
3511 is_const=True, is_virtual=True)
3512 ## object-factory.h (module 'core'): bool ns3::ObjectFactoryValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
3513 cls.add_method('DeserializeFromString',
3514 'bool',
3515 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3516 is_virtual=True)
3517 ## object-factory.h (module 'core'): ns3::ObjectFactory ns3::ObjectFactoryValue::Get() const [member function]
3518 cls.add_method('Get',
3519 'ns3::ObjectFactory',
3520 [],
3521 is_const=True)
3522 ## object-factory.h (module 'core'): std::string ns3::ObjectFactoryValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
3523 cls.add_method('SerializeToString',
3524 'std::string',
3525 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3526 is_const=True, is_virtual=True)
3527 ## object-factory.h (module 'core'): void ns3::ObjectFactoryValue::Set(ns3::ObjectFactory const & value) [member function]
3528 cls.add_method('Set',
3529 'void',
3530 [param('ns3::ObjectFactory const &', 'value')])
3531 return
3532
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08003533def register_Ns3Packet_methods(root_module, cls):
3534 cls.add_output_stream_operator()
3535 ## packet.h (module 'network'): ns3::Packet::Packet() [constructor]
3536 cls.add_constructor([])
3537 ## packet.h (module 'network'): ns3::Packet::Packet(ns3::Packet const & o) [copy constructor]
3538 cls.add_constructor([param('ns3::Packet const &', 'o')])
3539 ## packet.h (module 'network'): ns3::Packet::Packet(uint32_t size) [constructor]
3540 cls.add_constructor([param('uint32_t', 'size')])
3541 ## packet.h (module 'network'): ns3::Packet::Packet(uint8_t const * buffer, uint32_t size, bool magic) [constructor]
3542 cls.add_constructor([param('uint8_t const *', 'buffer'), param('uint32_t', 'size'), param('bool', 'magic')])
3543 ## packet.h (module 'network'): ns3::Packet::Packet(uint8_t const * buffer, uint32_t size) [constructor]
3544 cls.add_constructor([param('uint8_t const *', 'buffer'), param('uint32_t', 'size')])
Alexander Afanasyevdd3eeec2011-12-13 13:19:15 -08003545 ## packet.h (module 'network'): void ns3::Packet::AddAtEnd(ns3::Ptr<const ns3::Packet> packet) [member function]
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08003546 cls.add_method('AddAtEnd',
3547 'void',
3548 [param('ns3::Ptr< ns3::Packet const >', 'packet')])
3549 ## packet.h (module 'network'): void ns3::Packet::AddByteTag(ns3::Tag const & tag) const [member function]
3550 cls.add_method('AddByteTag',
3551 'void',
3552 [param('ns3::Tag const &', 'tag')],
3553 is_const=True)
3554 ## packet.h (module 'network'): void ns3::Packet::AddHeader(ns3::Header const & header) [member function]
3555 cls.add_method('AddHeader',
3556 'void',
3557 [param('ns3::Header const &', 'header')])
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07003558 ## packet.h (module 'network'): void ns3::Packet::AddPacketTag(ns3::Tag const & tag) const [member function]
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08003559 cls.add_method('AddPacketTag',
3560 'void',
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07003561 [param('ns3::Tag const &', 'tag')],
3562 is_const=True)
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08003563 ## packet.h (module 'network'): void ns3::Packet::AddPaddingAtEnd(uint32_t size) [member function]
3564 cls.add_method('AddPaddingAtEnd',
3565 'void',
3566 [param('uint32_t', 'size')])
3567 ## packet.h (module 'network'): void ns3::Packet::AddTrailer(ns3::Trailer const & trailer) [member function]
3568 cls.add_method('AddTrailer',
3569 'void',
3570 [param('ns3::Trailer const &', 'trailer')])
3571 ## packet.h (module 'network'): ns3::PacketMetadata::ItemIterator ns3::Packet::BeginItem() const [member function]
3572 cls.add_method('BeginItem',
3573 'ns3::PacketMetadata::ItemIterator',
3574 [],
3575 is_const=True)
3576 ## packet.h (module 'network'): ns3::Ptr<ns3::Packet> ns3::Packet::Copy() const [member function]
3577 cls.add_method('Copy',
3578 'ns3::Ptr< ns3::Packet >',
3579 [],
3580 is_const=True)
3581 ## packet.h (module 'network'): uint32_t ns3::Packet::CopyData(uint8_t * buffer, uint32_t size) const [member function]
3582 cls.add_method('CopyData',
3583 'uint32_t',
3584 [param('uint8_t *', 'buffer'), param('uint32_t', 'size')],
3585 is_const=True)
3586 ## packet.h (module 'network'): void ns3::Packet::CopyData(std::ostream * os, uint32_t size) const [member function]
3587 cls.add_method('CopyData',
3588 'void',
3589 [param('std::ostream *', 'os'), param('uint32_t', 'size')],
3590 is_const=True)
3591 ## packet.h (module 'network'): ns3::Ptr<ns3::Packet> ns3::Packet::CreateFragment(uint32_t start, uint32_t length) const [member function]
3592 cls.add_method('CreateFragment',
3593 'ns3::Ptr< ns3::Packet >',
3594 [param('uint32_t', 'start'), param('uint32_t', 'length')],
3595 is_const=True)
3596 ## packet.h (module 'network'): static void ns3::Packet::EnableChecking() [member function]
3597 cls.add_method('EnableChecking',
3598 'void',
3599 [],
3600 is_static=True)
3601 ## packet.h (module 'network'): static void ns3::Packet::EnablePrinting() [member function]
3602 cls.add_method('EnablePrinting',
3603 'void',
3604 [],
3605 is_static=True)
3606 ## packet.h (module 'network'): bool ns3::Packet::FindFirstMatchingByteTag(ns3::Tag & tag) const [member function]
3607 cls.add_method('FindFirstMatchingByteTag',
3608 'bool',
3609 [param('ns3::Tag &', 'tag')],
3610 is_const=True)
3611 ## packet.h (module 'network'): ns3::ByteTagIterator ns3::Packet::GetByteTagIterator() const [member function]
3612 cls.add_method('GetByteTagIterator',
3613 'ns3::ByteTagIterator',
3614 [],
3615 is_const=True)
3616 ## packet.h (module 'network'): ns3::Ptr<ns3::NixVector> ns3::Packet::GetNixVector() const [member function]
3617 cls.add_method('GetNixVector',
3618 'ns3::Ptr< ns3::NixVector >',
3619 [],
3620 is_const=True)
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07003621 ## packet.h (module 'network'): ns3::PacketTagIterator ns3::Packet::GetPacketTagIterator() const [member function]
3622 cls.add_method('GetPacketTagIterator',
3623 'ns3::PacketTagIterator',
3624 [],
3625 is_const=True)
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08003626 ## packet.h (module 'network'): uint32_t ns3::Packet::GetSerializedSize() const [member function]
3627 cls.add_method('GetSerializedSize',
3628 'uint32_t',
3629 [],
3630 is_const=True)
3631 ## packet.h (module 'network'): uint32_t ns3::Packet::GetSize() const [member function]
3632 cls.add_method('GetSize',
3633 'uint32_t',
3634 [],
3635 is_const=True)
3636 ## packet.h (module 'network'): uint64_t ns3::Packet::GetUid() const [member function]
3637 cls.add_method('GetUid',
3638 'uint64_t',
3639 [],
3640 is_const=True)
3641 ## packet.h (module 'network'): uint8_t const * ns3::Packet::PeekData() const [member function]
3642 cls.add_method('PeekData',
3643 'uint8_t const *',
3644 [],
3645 deprecated=True, is_const=True)
3646 ## packet.h (module 'network'): uint32_t ns3::Packet::PeekHeader(ns3::Header & header) const [member function]
3647 cls.add_method('PeekHeader',
3648 'uint32_t',
3649 [param('ns3::Header &', 'header')],
3650 is_const=True)
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07003651 ## packet.h (module 'network'): bool ns3::Packet::PeekPacketTag(ns3::Tag & tag) const [member function]
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08003652 cls.add_method('PeekPacketTag',
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07003653 'bool',
3654 [param('ns3::Tag &', 'tag')],
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08003655 is_const=True)
3656 ## packet.h (module 'network'): uint32_t ns3::Packet::PeekTrailer(ns3::Trailer & trailer) [member function]
3657 cls.add_method('PeekTrailer',
3658 'uint32_t',
3659 [param('ns3::Trailer &', 'trailer')])
3660 ## packet.h (module 'network'): void ns3::Packet::Print(std::ostream & os) const [member function]
3661 cls.add_method('Print',
3662 'void',
3663 [param('std::ostream &', 'os')],
3664 is_const=True)
3665 ## packet.h (module 'network'): void ns3::Packet::PrintByteTags(std::ostream & os) const [member function]
3666 cls.add_method('PrintByteTags',
3667 'void',
3668 [param('std::ostream &', 'os')],
3669 is_const=True)
3670 ## packet.h (module 'network'): void ns3::Packet::PrintPacketTags(std::ostream & os) const [member function]
3671 cls.add_method('PrintPacketTags',
3672 'void',
3673 [param('std::ostream &', 'os')],
3674 is_const=True)
3675 ## packet.h (module 'network'): void ns3::Packet::RemoveAllByteTags() [member function]
3676 cls.add_method('RemoveAllByteTags',
3677 'void',
3678 [])
3679 ## packet.h (module 'network'): void ns3::Packet::RemoveAllPacketTags() [member function]
3680 cls.add_method('RemoveAllPacketTags',
3681 'void',
3682 [])
3683 ## packet.h (module 'network'): void ns3::Packet::RemoveAtEnd(uint32_t size) [member function]
3684 cls.add_method('RemoveAtEnd',
3685 'void',
3686 [param('uint32_t', 'size')])
3687 ## packet.h (module 'network'): void ns3::Packet::RemoveAtStart(uint32_t size) [member function]
3688 cls.add_method('RemoveAtStart',
3689 'void',
3690 [param('uint32_t', 'size')])
3691 ## packet.h (module 'network'): uint32_t ns3::Packet::RemoveHeader(ns3::Header & header) [member function]
3692 cls.add_method('RemoveHeader',
3693 'uint32_t',
3694 [param('ns3::Header &', 'header')])
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07003695 ## packet.h (module 'network'): bool ns3::Packet::RemovePacketTag(ns3::Tag & tag) [member function]
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08003696 cls.add_method('RemovePacketTag',
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07003697 'bool',
3698 [param('ns3::Tag &', 'tag')])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08003699 ## packet.h (module 'network'): uint32_t ns3::Packet::RemoveTrailer(ns3::Trailer & trailer) [member function]
3700 cls.add_method('RemoveTrailer',
3701 'uint32_t',
3702 [param('ns3::Trailer &', 'trailer')])
3703 ## packet.h (module 'network'): uint32_t ns3::Packet::Serialize(uint8_t * buffer, uint32_t maxSize) const [member function]
3704 cls.add_method('Serialize',
3705 'uint32_t',
3706 [param('uint8_t *', 'buffer'), param('uint32_t', 'maxSize')],
3707 is_const=True)
3708 ## packet.h (module 'network'): void ns3::Packet::SetNixVector(ns3::Ptr<ns3::NixVector> arg0) [member function]
3709 cls.add_method('SetNixVector',
3710 'void',
3711 [param('ns3::Ptr< ns3::NixVector >', 'arg0')])
3712 return
3713
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08003714def register_Ns3TimeChecker_methods(root_module, cls):
3715 ## nstime.h (module 'core'): ns3::TimeChecker::TimeChecker() [constructor]
3716 cls.add_constructor([])
3717 ## nstime.h (module 'core'): ns3::TimeChecker::TimeChecker(ns3::TimeChecker const & arg0) [copy constructor]
3718 cls.add_constructor([param('ns3::TimeChecker const &', 'arg0')])
3719 return
3720
3721def register_Ns3TimeValue_methods(root_module, cls):
3722 ## nstime.h (module 'core'): ns3::TimeValue::TimeValue() [constructor]
3723 cls.add_constructor([])
3724 ## nstime.h (module 'core'): ns3::TimeValue::TimeValue(ns3::TimeValue const & arg0) [copy constructor]
3725 cls.add_constructor([param('ns3::TimeValue const &', 'arg0')])
3726 ## nstime.h (module 'core'): ns3::TimeValue::TimeValue(ns3::Time const & value) [constructor]
3727 cls.add_constructor([param('ns3::Time const &', 'value')])
3728 ## nstime.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::TimeValue::Copy() const [member function]
3729 cls.add_method('Copy',
3730 'ns3::Ptr< ns3::AttributeValue >',
3731 [],
3732 is_const=True, is_virtual=True)
3733 ## nstime.h (module 'core'): bool ns3::TimeValue::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 ## nstime.h (module 'core'): ns3::Time ns3::TimeValue::Get() const [member function]
3739 cls.add_method('Get',
3740 'ns3::Time',
3741 [],
3742 is_const=True)
3743 ## nstime.h (module 'core'): std::string ns3::TimeValue::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 ## nstime.h (module 'core'): void ns3::TimeValue::Set(ns3::Time const & value) [member function]
3749 cls.add_method('Set',
3750 'void',
3751 [param('ns3::Time const &', 'value')])
3752 return
3753
3754def register_Ns3TypeIdChecker_methods(root_module, cls):
3755 ## type-id.h (module 'core'): ns3::TypeIdChecker::TypeIdChecker() [constructor]
3756 cls.add_constructor([])
3757 ## type-id.h (module 'core'): ns3::TypeIdChecker::TypeIdChecker(ns3::TypeIdChecker const & arg0) [copy constructor]
3758 cls.add_constructor([param('ns3::TypeIdChecker const &', 'arg0')])
3759 return
3760
3761def register_Ns3TypeIdValue_methods(root_module, cls):
3762 ## type-id.h (module 'core'): ns3::TypeIdValue::TypeIdValue() [constructor]
3763 cls.add_constructor([])
3764 ## type-id.h (module 'core'): ns3::TypeIdValue::TypeIdValue(ns3::TypeIdValue const & arg0) [copy constructor]
3765 cls.add_constructor([param('ns3::TypeIdValue const &', 'arg0')])
3766 ## type-id.h (module 'core'): ns3::TypeIdValue::TypeIdValue(ns3::TypeId const & value) [constructor]
3767 cls.add_constructor([param('ns3::TypeId const &', 'value')])
3768 ## type-id.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::TypeIdValue::Copy() const [member function]
3769 cls.add_method('Copy',
3770 'ns3::Ptr< ns3::AttributeValue >',
3771 [],
3772 is_const=True, is_virtual=True)
3773 ## type-id.h (module 'core'): bool ns3::TypeIdValue::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 ## type-id.h (module 'core'): ns3::TypeId ns3::TypeIdValue::Get() const [member function]
3779 cls.add_method('Get',
3780 'ns3::TypeId',
3781 [],
3782 is_const=True)
3783 ## type-id.h (module 'core'): std::string ns3::TypeIdValue::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 ## type-id.h (module 'core'): void ns3::TypeIdValue::Set(ns3::TypeId const & value) [member function]
3789 cls.add_method('Set',
3790 'void',
3791 [param('ns3::TypeId const &', 'value')])
3792 return
3793
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08003794def register_Ns3AddressChecker_methods(root_module, cls):
3795 ## address.h (module 'network'): ns3::AddressChecker::AddressChecker() [constructor]
3796 cls.add_constructor([])
3797 ## address.h (module 'network'): ns3::AddressChecker::AddressChecker(ns3::AddressChecker const & arg0) [copy constructor]
3798 cls.add_constructor([param('ns3::AddressChecker const &', 'arg0')])
3799 return
3800
3801def register_Ns3AddressValue_methods(root_module, cls):
3802 ## address.h (module 'network'): ns3::AddressValue::AddressValue() [constructor]
3803 cls.add_constructor([])
3804 ## address.h (module 'network'): ns3::AddressValue::AddressValue(ns3::AddressValue const & arg0) [copy constructor]
3805 cls.add_constructor([param('ns3::AddressValue const &', 'arg0')])
3806 ## address.h (module 'network'): ns3::AddressValue::AddressValue(ns3::Address const & value) [constructor]
3807 cls.add_constructor([param('ns3::Address const &', 'value')])
3808 ## address.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::AddressValue::Copy() const [member function]
3809 cls.add_method('Copy',
3810 'ns3::Ptr< ns3::AttributeValue >',
3811 [],
3812 is_const=True, is_virtual=True)
3813 ## address.h (module 'network'): bool ns3::AddressValue::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 ## address.h (module 'network'): ns3::Address ns3::AddressValue::Get() const [member function]
3819 cls.add_method('Get',
3820 'ns3::Address',
3821 [],
3822 is_const=True)
3823 ## address.h (module 'network'): std::string ns3::AddressValue::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 ## address.h (module 'network'): void ns3::AddressValue::Set(ns3::Address const & value) [member function]
3829 cls.add_method('Set',
3830 'void',
3831 [param('ns3::Address const &', 'value')])
3832 return
3833
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07003834def register_Ns3NdnApp_methods(root_module, cls):
3835 ## ndn-app.h (module 'ndnSIM'): ns3::ndn::App::App(ns3::ndn::App const & arg0) [copy constructor]
3836 cls.add_constructor([param('ns3::ndn::App const &', 'arg0')])
3837 ## ndn-app.h (module 'ndnSIM'): ns3::ndn::App::App() [constructor]
3838 cls.add_constructor([])
3839 ## ndn-app.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::App::GetTypeId() [member function]
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003840 cls.add_method('GetTypeId',
3841 'ns3::TypeId',
3842 [],
3843 is_static=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07003844 ## 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]
3845 cls.add_method('OnContentObject',
3846 'void',
3847 [param('ns3::Ptr< ns3::ndn::ContentObjectHeader const > const &', 'contentObject'), param('ns3::Ptr< ns3::Packet >', 'payload')],
3848 is_virtual=True)
3849 ## ndn-app.h (module 'ndnSIM'): void ns3::ndn::App::OnInterest(ns3::Ptr<const ns3::ndn::InterestHeader> const & interest, ns3::Ptr<ns3::Packet> packet) [member function]
3850 cls.add_method('OnInterest',
3851 'void',
3852 [param('ns3::Ptr< ns3::ndn::InterestHeader const > const &', 'interest'), param('ns3::Ptr< ns3::Packet >', 'packet')],
3853 is_virtual=True)
3854 ## ndn-app.h (module 'ndnSIM'): void ns3::ndn::App::OnNack(ns3::Ptr<const ns3::ndn::InterestHeader> const & interest, ns3::Ptr<ns3::Packet> packet) [member function]
3855 cls.add_method('OnNack',
3856 'void',
3857 [param('ns3::Ptr< ns3::ndn::InterestHeader const > const &', 'interest'), param('ns3::Ptr< ns3::Packet >', 'packet')],
3858 is_virtual=True)
3859 ## 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 -07003860 cls.add_method('RegisterProtocolHandler',
3861 'void',
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07003862 [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')])
3863 ## ndn-app.h (module 'ndnSIM'): void ns3::ndn::App::DoDispose() [member function]
3864 cls.add_method('DoDispose',
3865 'void',
3866 [],
3867 visibility='protected', is_virtual=True)
3868 ## ndn-app.h (module 'ndnSIM'): void ns3::ndn::App::StartApplication() [member function]
3869 cls.add_method('StartApplication',
3870 'void',
3871 [],
3872 visibility='protected', is_virtual=True)
3873 ## ndn-app.h (module 'ndnSIM'): void ns3::ndn::App::StopApplication() [member function]
3874 cls.add_method('StopApplication',
3875 'void',
3876 [],
3877 visibility='protected', is_virtual=True)
3878 return
3879
3880def register_Ns3NdnAppHelper_methods(root_module, cls):
3881 ## ndn-app-helper.h (module 'ndnSIM'): ns3::ndn::AppHelper::AppHelper(ns3::ndn::AppHelper const & arg0) [copy constructor]
3882 cls.add_constructor([param('ns3::ndn::AppHelper const &', 'arg0')])
3883 ## ndn-app-helper.h (module 'ndnSIM'): ns3::ndn::AppHelper::AppHelper(std::string const & prefix) [constructor]
3884 cls.add_constructor([param('std::string const &', 'prefix')])
3885 ## ndn-app-helper.h (module 'ndnSIM'): ns3::ApplicationContainer ns3::ndn::AppHelper::Install(ns3::NodeContainer c) [member function]
3886 cls.add_method('Install',
3887 'ns3::ApplicationContainer',
3888 [param('ns3::NodeContainer', 'c')])
3889 ## ndn-app-helper.h (module 'ndnSIM'): ns3::ApplicationContainer ns3::ndn::AppHelper::Install(ns3::Ptr<ns3::Node> node) [member function]
3890 cls.add_method('Install',
3891 'ns3::ApplicationContainer',
3892 [param('ns3::Ptr< ns3::Node >', 'node')])
3893 ## ndn-app-helper.h (module 'ndnSIM'): ns3::ApplicationContainer ns3::ndn::AppHelper::Install(std::string nodeName) [member function]
3894 cls.add_method('Install',
3895 'ns3::ApplicationContainer',
3896 [param('std::string', 'nodeName')])
3897 ## ndn-app-helper.h (module 'ndnSIM'): void ns3::ndn::AppHelper::SetAttribute(std::string name, ns3::AttributeValue const & value) [member function]
3898 cls.add_method('SetAttribute',
3899 'void',
3900 [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')])
3901 ## ndn-app-helper.h (module 'ndnSIM'): void ns3::ndn::AppHelper::SetPrefix(std::string const & prefix) [member function]
3902 cls.add_method('SetPrefix',
3903 'void',
3904 [param('std::string const &', 'prefix')])
3905 return
3906
3907def register_Ns3NdnContentObjectHeader_methods(root_module, cls):
3908 ## ndn-content-object-header.h (module 'ndnSIM'): ns3::ndn::ContentObjectHeader::ContentObjectHeader(ns3::ndn::ContentObjectHeader const & arg0) [copy constructor]
3909 cls.add_constructor([param('ns3::ndn::ContentObjectHeader const &', 'arg0')])
3910 ## ndn-content-object-header.h (module 'ndnSIM'): ns3::ndn::ContentObjectHeader::ContentObjectHeader() [constructor]
3911 cls.add_constructor([])
3912 ## ndn-content-object-header.h (module 'ndnSIM'): uint32_t ns3::ndn::ContentObjectHeader::Deserialize(ns3::Buffer::Iterator start) [member function]
3913 cls.add_method('Deserialize',
3914 'uint32_t',
3915 [param('ns3::Buffer::Iterator', 'start')],
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003916 is_virtual=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07003917 ## ndn-content-object-header.h (module 'ndnSIM'): ns3::TypeId ns3::ndn::ContentObjectHeader::GetInstanceTypeId() const [member function]
3918 cls.add_method('GetInstanceTypeId',
3919 'ns3::TypeId',
3920 [],
3921 is_const=True, is_virtual=True)
3922 ## ndn-content-object-header.h (module 'ndnSIM'): ns3::ndn::NameComponents const & ns3::ndn::ContentObjectHeader::GetName() const [member function]
3923 cls.add_method('GetName',
3924 'ns3::ndn::NameComponents const &',
3925 [],
3926 is_const=True)
3927 ## ndn-content-object-header.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::NameComponents const> ns3::ndn::ContentObjectHeader::GetNamePtr() const [member function]
3928 cls.add_method('GetNamePtr',
3929 'ns3::Ptr< ns3::ndn::NameComponents const >',
3930 [],
3931 is_const=True)
3932 ## ndn-content-object-header.h (module 'ndnSIM'): uint32_t ns3::ndn::ContentObjectHeader::GetSerializedSize() const [member function]
3933 cls.add_method('GetSerializedSize',
3934 'uint32_t',
3935 [],
3936 is_const=True, is_virtual=True)
3937 ## ndn-content-object-header.h (module 'ndnSIM'): ns3::ndn::ContentObjectHeader::Signature & ns3::ndn::ContentObjectHeader::GetSignature() [member function]
3938 cls.add_method('GetSignature',
3939 'ns3::ndn::ContentObjectHeader::Signature &',
3940 [])
3941 ## ndn-content-object-header.h (module 'ndnSIM'): ns3::ndn::ContentObjectHeader::Signature const & ns3::ndn::ContentObjectHeader::GetSignature() const [member function]
3942 cls.add_method('GetSignature',
3943 'ns3::ndn::ContentObjectHeader::Signature const &',
3944 [],
3945 is_const=True)
3946 ## ndn-content-object-header.h (module 'ndnSIM'): ns3::ndn::ContentObjectHeader::SignedInfo & ns3::ndn::ContentObjectHeader::GetSignedInfo() [member function]
3947 cls.add_method('GetSignedInfo',
3948 'ns3::ndn::ContentObjectHeader::SignedInfo &',
3949 [])
3950 ## ndn-content-object-header.h (module 'ndnSIM'): ns3::ndn::ContentObjectHeader::SignedInfo const & ns3::ndn::ContentObjectHeader::GetSignedInfo() const [member function]
3951 cls.add_method('GetSignedInfo',
3952 'ns3::ndn::ContentObjectHeader::SignedInfo const &',
3953 [],
3954 is_const=True)
3955 ## ndn-content-object-header.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::ContentObjectHeader::GetTypeId() [member function]
3956 cls.add_method('GetTypeId',
3957 'ns3::TypeId',
3958 [],
3959 is_static=True)
3960 ## ndn-content-object-header.h (module 'ndnSIM'): void ns3::ndn::ContentObjectHeader::Print(std::ostream & os) const [member function]
3961 cls.add_method('Print',
3962 'void',
3963 [param('std::ostream &', 'os')],
3964 is_const=True, is_virtual=True)
3965 ## ndn-content-object-header.h (module 'ndnSIM'): void ns3::ndn::ContentObjectHeader::Serialize(ns3::Buffer::Iterator start) const [member function]
3966 cls.add_method('Serialize',
3967 'void',
3968 [param('ns3::Buffer::Iterator', 'start')],
3969 is_const=True, is_virtual=True)
3970 ## ndn-content-object-header.h (module 'ndnSIM'): void ns3::ndn::ContentObjectHeader::SetName(ns3::Ptr<ns3::ndn::NameComponents> const & name) [member function]
3971 cls.add_method('SetName',
3972 'void',
3973 [param('ns3::Ptr< ns3::ndn::NameComponents > const &', 'name')])
3974 return
3975
3976def register_Ns3NdnContentObjectHeaderSignature_methods(root_module, cls):
3977 ## ndn-content-object-header.h (module 'ndnSIM'): ns3::ndn::ContentObjectHeader::Signature::Signature(ns3::ndn::ContentObjectHeader::Signature const & arg0) [copy constructor]
3978 cls.add_constructor([param('ns3::ndn::ContentObjectHeader::Signature const &', 'arg0')])
3979 ## ndn-content-object-header.h (module 'ndnSIM'): ns3::ndn::ContentObjectHeader::Signature::Signature() [constructor]
3980 cls.add_constructor([])
3981 ## ndn-content-object-header.h (module 'ndnSIM'): std::string const & ns3::ndn::ContentObjectHeader::Signature::GetDigestAlgorithm() const [member function]
3982 cls.add_method('GetDigestAlgorithm',
3983 'std::string const &',
3984 [],
3985 is_const=True)
3986 ## ndn-content-object-header.h (module 'ndnSIM'): uint32_t ns3::ndn::ContentObjectHeader::Signature::GetSignatureBits() const [member function]
3987 cls.add_method('GetSignatureBits',
3988 'uint32_t',
3989 [],
3990 is_const=True)
3991 ## ndn-content-object-header.h (module 'ndnSIM'): void ns3::ndn::ContentObjectHeader::Signature::SetDigestAlgorithm(std::string const & digestAlgorithm) [member function]
3992 cls.add_method('SetDigestAlgorithm',
3993 'void',
3994 [param('std::string const &', 'digestAlgorithm')])
3995 ## ndn-content-object-header.h (module 'ndnSIM'): void ns3::ndn::ContentObjectHeader::Signature::SetSignatureBits(uint32_t signature) [member function]
3996 cls.add_method('SetSignatureBits',
3997 'void',
3998 [param('uint32_t', 'signature')])
3999 ## ndn-content-object-header.h (module 'ndnSIM'): ns3::ndn::ContentObjectHeader::Signature::DefaultDigestAlgorithm [variable]
4000 cls.add_static_attribute('DefaultDigestAlgorithm', 'std::string const', is_const=True)
4001 return
4002
4003def register_Ns3NdnContentObjectHeaderSignedInfo_methods(root_module, cls):
4004 ## ndn-content-object-header.h (module 'ndnSIM'): ns3::ndn::ContentObjectHeader::SignedInfo::SignedInfo(ns3::ndn::ContentObjectHeader::SignedInfo const & arg0) [copy constructor]
4005 cls.add_constructor([param('ns3::ndn::ContentObjectHeader::SignedInfo const &', 'arg0')])
4006 ## ndn-content-object-header.h (module 'ndnSIM'): ns3::ndn::ContentObjectHeader::SignedInfo::SignedInfo() [constructor]
4007 cls.add_constructor([])
4008 ## ndn-content-object-header.h (module 'ndnSIM'): ns3::ndn::ContentObjectHeader::ContentType ns3::ndn::ContentObjectHeader::SignedInfo::GetContentType() const [member function]
4009 cls.add_method('GetContentType',
4010 'ns3::ndn::ContentObjectHeader::ContentType',
4011 [],
4012 is_const=True)
4013 ## ndn-content-object-header.h (module 'ndnSIM'): ns3::Time ns3::ndn::ContentObjectHeader::SignedInfo::GetFreshness() const [member function]
4014 cls.add_method('GetFreshness',
4015 'ns3::Time',
4016 [],
4017 is_const=True)
4018 ## ndn-content-object-header.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::NameComponents const> ns3::ndn::ContentObjectHeader::SignedInfo::GetKeyLocator() const [member function]
4019 cls.add_method('GetKeyLocator',
4020 'ns3::Ptr< ns3::ndn::NameComponents const >',
4021 [],
4022 is_const=True)
4023 ## ndn-content-object-header.h (module 'ndnSIM'): uint32_t ns3::ndn::ContentObjectHeader::SignedInfo::GetPublisherPublicKeyDigest() const [member function]
4024 cls.add_method('GetPublisherPublicKeyDigest',
4025 'uint32_t',
4026 [],
4027 is_const=True)
4028 ## ndn-content-object-header.h (module 'ndnSIM'): ns3::Time ns3::ndn::ContentObjectHeader::SignedInfo::GetTimestamp() const [member function]
4029 cls.add_method('GetTimestamp',
4030 'ns3::Time',
4031 [],
4032 is_const=True)
4033 ## ndn-content-object-header.h (module 'ndnSIM'): void ns3::ndn::ContentObjectHeader::SignedInfo::SetContentType(ns3::ndn::ContentObjectHeader::ContentType type) [member function]
4034 cls.add_method('SetContentType',
4035 'void',
4036 [param('ns3::ndn::ContentObjectHeader::ContentType', 'type')])
4037 ## ndn-content-object-header.h (module 'ndnSIM'): void ns3::ndn::ContentObjectHeader::SignedInfo::SetFreshness(ns3::Time const & freshness) [member function]
4038 cls.add_method('SetFreshness',
4039 'void',
4040 [param('ns3::Time const &', 'freshness')])
4041 ## ndn-content-object-header.h (module 'ndnSIM'): void ns3::ndn::ContentObjectHeader::SignedInfo::SetKeyLocator(ns3::Ptr<ns3::ndn::NameComponents const> keyLocator) [member function]
4042 cls.add_method('SetKeyLocator',
4043 'void',
4044 [param('ns3::Ptr< ns3::ndn::NameComponents const >', 'keyLocator')])
4045 ## ndn-content-object-header.h (module 'ndnSIM'): void ns3::ndn::ContentObjectHeader::SignedInfo::SetPublisherPublicKeyDigest(uint32_t digest) [member function]
4046 cls.add_method('SetPublisherPublicKeyDigest',
4047 'void',
4048 [param('uint32_t', 'digest')])
4049 ## ndn-content-object-header.h (module 'ndnSIM'): void ns3::ndn::ContentObjectHeader::SignedInfo::SetTimestamp(ns3::Time const & timestamp) [member function]
4050 cls.add_method('SetTimestamp',
4051 'void',
4052 [param('ns3::Time const &', 'timestamp')])
4053 return
4054
4055def register_Ns3NdnContentObjectHeaderException_methods(root_module, cls):
4056 ## ndn-content-object-header.h (module 'ndnSIM'): ns3::ndn::ContentObjectHeaderException::ContentObjectHeaderException() [constructor]
4057 cls.add_constructor([])
4058 ## ndn-content-object-header.h (module 'ndnSIM'): ns3::ndn::ContentObjectHeaderException::ContentObjectHeaderException(ns3::ndn::ContentObjectHeaderException const & arg0) [copy constructor]
4059 cls.add_constructor([param('ns3::ndn::ContentObjectHeaderException const &', 'arg0')])
4060 return
4061
4062def register_Ns3NdnContentObjectTail_methods(root_module, cls):
4063 ## ndn-content-object-header.h (module 'ndnSIM'): ns3::ndn::ContentObjectTail::ContentObjectTail(ns3::ndn::ContentObjectTail const & arg0) [copy constructor]
4064 cls.add_constructor([param('ns3::ndn::ContentObjectTail const &', 'arg0')])
4065 ## ndn-content-object-header.h (module 'ndnSIM'): ns3::ndn::ContentObjectTail::ContentObjectTail() [constructor]
4066 cls.add_constructor([])
4067 ## ndn-content-object-header.h (module 'ndnSIM'): uint32_t ns3::ndn::ContentObjectTail::Deserialize(ns3::Buffer::Iterator start) [member function]
4068 cls.add_method('Deserialize',
4069 'uint32_t',
4070 [param('ns3::Buffer::Iterator', 'start')],
4071 is_virtual=True)
4072 ## ndn-content-object-header.h (module 'ndnSIM'): ns3::TypeId ns3::ndn::ContentObjectTail::GetInstanceTypeId() const [member function]
4073 cls.add_method('GetInstanceTypeId',
4074 'ns3::TypeId',
4075 [],
4076 is_const=True, is_virtual=True)
4077 ## ndn-content-object-header.h (module 'ndnSIM'): uint32_t ns3::ndn::ContentObjectTail::GetSerializedSize() const [member function]
4078 cls.add_method('GetSerializedSize',
4079 'uint32_t',
4080 [],
4081 is_const=True, is_virtual=True)
4082 ## ndn-content-object-header.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::ContentObjectTail::GetTypeId() [member function]
4083 cls.add_method('GetTypeId',
4084 'ns3::TypeId',
4085 [],
4086 is_static=True)
4087 ## ndn-content-object-header.h (module 'ndnSIM'): void ns3::ndn::ContentObjectTail::Print(std::ostream & os) const [member function]
4088 cls.add_method('Print',
4089 'void',
4090 [param('std::ostream &', 'os')],
4091 is_const=True, is_virtual=True)
4092 ## ndn-content-object-header.h (module 'ndnSIM'): void ns3::ndn::ContentObjectTail::Serialize(ns3::Buffer::Iterator start) const [member function]
4093 cls.add_method('Serialize',
4094 'void',
4095 [param('ns3::Buffer::Iterator', 'start')],
4096 is_const=True, is_virtual=True)
4097 return
4098
4099def register_Ns3NdnContentStore_methods(root_module, cls):
4100 cls.add_output_stream_operator()
4101 ## ndn-content-store.h (module 'ndnSIM'): ns3::ndn::ContentStore::ContentStore() [constructor]
4102 cls.add_constructor([])
4103 ## ndn-content-store.h (module 'ndnSIM'): ns3::ndn::ContentStore::ContentStore(ns3::ndn::ContentStore const & arg0) [copy constructor]
4104 cls.add_constructor([param('ns3::ndn::ContentStore const &', 'arg0')])
4105 ## 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]
4106 cls.add_method('Add',
4107 'bool',
4108 [param('ns3::Ptr< ns3::ndn::ContentObjectHeader const >', 'header'), param('ns3::Ptr< ns3::Packet const >', 'packet')],
4109 is_pure_virtual=True, is_virtual=True)
4110 ## ndn-content-store.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::ContentStore::GetTypeId() [member function]
4111 cls.add_method('GetTypeId',
4112 'ns3::TypeId',
4113 [],
4114 is_static=True)
4115 ## 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<const ns3::ndn::InterestHeader> interest) [member function]
4116 cls.add_method('Lookup',
4117 '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 >',
4118 [param('ns3::Ptr< ns3::ndn::InterestHeader const >', 'interest')],
4119 is_pure_virtual=True, is_virtual=True)
4120 ## ndn-content-store.h (module 'ndnSIM'): void ns3::ndn::ContentStore::Print(std::ostream & os) const [member function]
4121 cls.add_method('Print',
4122 'void',
4123 [param('std::ostream &', 'os')],
4124 is_pure_virtual=True, is_const=True, is_virtual=True)
4125 return
4126
4127def register_Ns3NdnFace_methods(root_module, cls):
4128 cls.add_output_stream_operator()
4129 cls.add_binary_comparison_operator('!=')
4130 cls.add_binary_comparison_operator('<')
4131 cls.add_binary_comparison_operator('==')
4132 ## ndn-face.h (module 'ndnSIM'): ns3::ndn::Face::Face(ns3::Ptr<ns3::Node> node) [constructor]
4133 cls.add_constructor([param('ns3::Ptr< ns3::Node >', 'node')])
4134 ## ndn-face.h (module 'ndnSIM'): uint32_t ns3::ndn::Face::GetId() const [member function]
4135 cls.add_method('GetId',
4136 'uint32_t',
4137 [],
4138 is_const=True)
4139 ## ndn-face.h (module 'ndnSIM'): uint16_t ns3::ndn::Face::GetMetric() const [member function]
4140 cls.add_method('GetMetric',
4141 'uint16_t',
4142 [],
4143 is_const=True, is_virtual=True)
4144 ## ndn-face.h (module 'ndnSIM'): ns3::Ptr<ns3::Node> ns3::ndn::Face::GetNode() const [member function]
4145 cls.add_method('GetNode',
4146 'ns3::Ptr< ns3::Node >',
4147 [],
4148 is_const=True)
4149 ## ndn-face.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::Face::GetTypeId() [member function]
4150 cls.add_method('GetTypeId',
4151 'ns3::TypeId',
4152 [],
4153 is_static=True)
4154 ## ndn-face.h (module 'ndnSIM'): bool ns3::ndn::Face::IsBelowLimit() [member function]
4155 cls.add_method('IsBelowLimit',
4156 'bool',
4157 [])
4158 ## ndn-face.h (module 'ndnSIM'): bool ns3::ndn::Face::IsUp() const [member function]
4159 cls.add_method('IsUp',
4160 'bool',
4161 [],
4162 is_const=True, is_virtual=True)
4163 ## ndn-face.h (module 'ndnSIM'): void ns3::ndn::Face::LeakBucket() [member function]
4164 cls.add_method('LeakBucket',
4165 'void',
4166 [])
4167 ## ndn-face.h (module 'ndnSIM'): std::ostream & ns3::ndn::Face::Print(std::ostream & os) const [member function]
Alexander Afanasyev3073da82012-06-19 14:57:43 -07004168 cls.add_method('Print',
4169 'std::ostream &',
4170 [param('std::ostream &', 'os')],
4171 is_const=True, is_virtual=True)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004172 ## ndn-face.h (module 'ndnSIM'): bool ns3::ndn::Face::Receive(ns3::Ptr<const ns3::Packet> const & p) [member function]
4173 cls.add_method('Receive',
4174 'bool',
4175 [param('ns3::Ptr< ns3::Packet const > const &', 'p')])
4176 ## 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]
4177 cls.add_method('RegisterProtocolHandler',
4178 'void',
4179 [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')],
4180 is_virtual=True)
4181 ## ndn-face.h (module 'ndnSIM'): bool ns3::ndn::Face::Send(ns3::Ptr<ns3::Packet> p) [member function]
4182 cls.add_method('Send',
4183 'bool',
4184 [param('ns3::Ptr< ns3::Packet >', 'p')])
4185 ## ndn-face.h (module 'ndnSIM'): void ns3::ndn::Face::SetBucketLeak(double leak) [member function]
4186 cls.add_method('SetBucketLeak',
4187 'void',
4188 [param('double', 'leak')])
4189 ## ndn-face.h (module 'ndnSIM'): void ns3::ndn::Face::SetBucketMax(double bucket) [member function]
4190 cls.add_method('SetBucketMax',
4191 'void',
4192 [param('double', 'bucket')])
4193 ## ndn-face.h (module 'ndnSIM'): void ns3::ndn::Face::SetId(uint32_t id) [member function]
4194 cls.add_method('SetId',
4195 'void',
4196 [param('uint32_t', 'id')])
4197 ## ndn-face.h (module 'ndnSIM'): void ns3::ndn::Face::SetMetric(uint16_t metric) [member function]
4198 cls.add_method('SetMetric',
4199 'void',
4200 [param('uint16_t', 'metric')],
4201 is_virtual=True)
4202 ## ndn-face.h (module 'ndnSIM'): void ns3::ndn::Face::SetUp(bool up=true) [member function]
4203 cls.add_method('SetUp',
4204 'void',
4205 [param('bool', 'up', default_value='true')],
4206 is_virtual=True)
4207 ## ndn-face.h (module 'ndnSIM'): bool ns3::ndn::Face::SendImpl(ns3::Ptr<ns3::Packet> p) [member function]
4208 cls.add_method('SendImpl',
4209 'bool',
4210 [param('ns3::Ptr< ns3::Packet >', 'p')],
4211 is_pure_virtual=True, visibility='protected', is_virtual=True)
4212 return
4213
4214def register_Ns3NdnFaceContainer_methods(root_module, cls):
4215 ## ndn-face-container.h (module 'ndnSIM'): ns3::ndn::FaceContainer::FaceContainer() [constructor]
4216 cls.add_constructor([])
4217 ## ndn-face-container.h (module 'ndnSIM'): ns3::ndn::FaceContainer::FaceContainer(ns3::ndn::FaceContainer const & other) [copy constructor]
4218 cls.add_constructor([param('ns3::ndn::FaceContainer const &', 'other')])
4219 ## ndn-face-container.h (module 'ndnSIM'): void ns3::ndn::FaceContainer::Add(ns3::Ptr<ns3::ndn::Face> const & face) [member function]
4220 cls.add_method('Add',
4221 'void',
4222 [param('ns3::Ptr< ns3::ndn::Face > const &', 'face')])
4223 ## ndn-face-container.h (module 'ndnSIM'): void ns3::ndn::FaceContainer::AddAll(ns3::Ptr<ns3::ndn::FaceContainer> other) [member function]
4224 cls.add_method('AddAll',
4225 'void',
4226 [param('ns3::Ptr< ns3::ndn::FaceContainer >', 'other')])
4227 ## ndn-face-container.h (module 'ndnSIM'): void ns3::ndn::FaceContainer::AddAll(ns3::ndn::FaceContainer const & other) [member function]
4228 cls.add_method('AddAll',
4229 'void',
4230 [param('ns3::ndn::FaceContainer const &', 'other')])
4231 ## 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]
4232 cls.add_method('Begin',
4233 '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::ndn::Face > const, std::vector< ns3::Ptr< ns3::ndn::Face > > >',
4234 [],
4235 is_const=True)
4236 ## 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]
4237 cls.add_method('End',
4238 '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::ndn::Face > const, std::vector< ns3::Ptr< ns3::ndn::Face > > >',
4239 [],
4240 is_const=True)
4241 ## 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]
4242 cls.add_method('Get',
4243 'ns3::Ptr< ns3::ndn::Face >',
4244 [param('__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::ndn::Face > const, std::vector< ns3::Ptr< ns3::ndn::Face > > >', 'i')],
4245 is_const=True)
4246 ## ndn-face-container.h (module 'ndnSIM'): uint32_t ns3::ndn::FaceContainer::GetN() const [member function]
4247 cls.add_method('GetN',
4248 'uint32_t',
4249 [],
4250 is_const=True)
4251 return
4252
4253def register_Ns3NdnFib_methods(root_module, cls):
4254 cls.add_output_stream_operator()
4255 ## ndn-fib.h (module 'ndnSIM'): ns3::ndn::Fib::Fib() [constructor]
4256 cls.add_constructor([])
4257 ## 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]
4258 cls.add_method('Add',
4259 'ns3::Ptr< ns3::ndn::fib::Entry >',
4260 [param('ns3::ndn::NameComponents const &', 'prefix'), param('ns3::Ptr< ns3::ndn::Face >', 'face'), param('int32_t', 'metric')],
4261 is_pure_virtual=True, is_virtual=True)
4262 ## 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]
4263 cls.add_method('Add',
4264 'ns3::Ptr< ns3::ndn::fib::Entry >',
4265 [param('ns3::Ptr< ns3::ndn::NameComponents const > const &', 'prefix'), param('ns3::Ptr< ns3::ndn::Face >', 'face'), param('int32_t', 'metric')],
4266 is_pure_virtual=True, is_virtual=True)
4267 ## ndn-fib.h (module 'ndnSIM'): ns3::Ptr<const ns3::ndn::fib::Entry> ns3::ndn::Fib::Begin() [member function]
4268 cls.add_method('Begin',
4269 'ns3::Ptr< ns3::ndn::fib::Entry const >',
4270 [],
4271 is_pure_virtual=True, is_virtual=True)
4272 ## ndn-fib.h (module 'ndnSIM'): ns3::Ptr<const ns3::ndn::fib::Entry> ns3::ndn::Fib::End() [member function]
4273 cls.add_method('End',
4274 'ns3::Ptr< ns3::ndn::fib::Entry const >',
4275 [],
4276 is_pure_virtual=True, is_virtual=True)
4277 ## ndn-fib.h (module 'ndnSIM'): static ns3::Ptr<ns3::ndn::Fib> ns3::ndn::Fib::GetFib(ns3::Ptr<ns3::Object> node) [member function]
4278 cls.add_method('GetFib',
4279 'ns3::Ptr< ns3::ndn::Fib >',
4280 [param('ns3::Ptr< ns3::Object >', 'node')],
4281 is_static=True)
4282 ## ndn-fib.h (module 'ndnSIM'): uint32_t ns3::ndn::Fib::GetSize() const [member function]
4283 cls.add_method('GetSize',
4284 'uint32_t',
4285 [],
4286 is_pure_virtual=True, is_const=True, is_virtual=True)
4287 ## ndn-fib.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::Fib::GetTypeId() [member function]
4288 cls.add_method('GetTypeId',
4289 'ns3::TypeId',
4290 [],
4291 is_static=True)
4292 ## ndn-fib.h (module 'ndnSIM'): void ns3::ndn::Fib::InvalidateAll() [member function]
4293 cls.add_method('InvalidateAll',
4294 'void',
4295 [],
4296 is_pure_virtual=True, is_virtual=True)
4297 ## ndn-fib.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::fib::Entry> ns3::ndn::Fib::LongestPrefixMatch(ns3::ndn::InterestHeader const & interest) [member function]
4298 cls.add_method('LongestPrefixMatch',
4299 'ns3::Ptr< ns3::ndn::fib::Entry >',
4300 [param('ns3::ndn::InterestHeader const &', 'interest')],
4301 is_pure_virtual=True, is_virtual=True)
4302 ## ndn-fib.h (module 'ndnSIM'): ns3::Ptr<const ns3::ndn::fib::Entry> ns3::ndn::Fib::Next(ns3::Ptr<const ns3::ndn::fib::Entry> arg0) [member function]
4303 cls.add_method('Next',
4304 'ns3::Ptr< ns3::ndn::fib::Entry const >',
4305 [param('ns3::Ptr< ns3::ndn::fib::Entry const >', 'arg0')],
4306 is_pure_virtual=True, is_virtual=True)
4307 ## ndn-fib.h (module 'ndnSIM'): void ns3::ndn::Fib::Print(std::ostream & os) const [member function]
4308 cls.add_method('Print',
4309 'void',
4310 [param('std::ostream &', 'os')],
4311 is_pure_virtual=True, is_const=True, is_virtual=True)
4312 ## ndn-fib.h (module 'ndnSIM'): void ns3::ndn::Fib::Remove(ns3::Ptr<ns3::ndn::NameComponents const> const & prefix) [member function]
4313 cls.add_method('Remove',
4314 'void',
4315 [param('ns3::Ptr< ns3::ndn::NameComponents const > const &', 'prefix')],
4316 is_pure_virtual=True, is_virtual=True)
4317 ## ndn-fib.h (module 'ndnSIM'): void ns3::ndn::Fib::RemoveFromAll(ns3::Ptr<ns3::ndn::Face> face) [member function]
4318 cls.add_method('RemoveFromAll',
4319 'void',
4320 [param('ns3::Ptr< ns3::ndn::Face >', 'face')],
4321 is_pure_virtual=True, is_virtual=True)
4322 return
4323
4324def register_Ns3NdnForwardingStrategy_methods(root_module, cls):
4325 ## ndn-forwarding-strategy.h (module 'ndnSIM'): ns3::ndn::ForwardingStrategy::ForwardingStrategy(ns3::ndn::ForwardingStrategy const & arg0) [copy constructor]
4326 cls.add_constructor([param('ns3::ndn::ForwardingStrategy const &', 'arg0')])
4327 ## ndn-forwarding-strategy.h (module 'ndnSIM'): ns3::ndn::ForwardingStrategy::ForwardingStrategy() [constructor]
4328 cls.add_constructor([])
4329 ## ndn-forwarding-strategy.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::ForwardingStrategy::GetTypeId() [member function]
4330 cls.add_method('GetTypeId',
4331 'ns3::TypeId',
4332 [],
4333 is_static=True)
4334 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::OnData(ns3::Ptr<ns3::ndn::Face> const & face, ns3::Ptr<ns3::ndn::ContentObjectHeader> & header, ns3::Ptr<ns3::Packet> & payload, ns3::Ptr<const ns3::Packet> const & packet) [member function]
4335 cls.add_method('OnData',
4336 'void',
4337 [param('ns3::Ptr< ns3::ndn::Face > const &', 'face'), param('ns3::Ptr< ns3::ndn::ContentObjectHeader > &', 'header'), param('ns3::Ptr< ns3::Packet > &', 'payload'), param('ns3::Ptr< ns3::Packet const > const &', 'packet')],
4338 is_virtual=True)
4339 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::OnInterest(ns3::Ptr<ns3::ndn::Face> const & face, ns3::Ptr<ns3::ndn::InterestHeader> & header, ns3::Ptr<const ns3::Packet> const & p) [member function]
4340 cls.add_method('OnInterest',
4341 'void',
4342 [param('ns3::Ptr< ns3::ndn::Face > const &', 'face'), param('ns3::Ptr< ns3::ndn::InterestHeader > &', 'header'), param('ns3::Ptr< ns3::Packet const > const &', 'p')],
4343 is_virtual=True)
4344 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::RemoveFace(ns3::Ptr<ns3::ndn::Face> face) [member function]
4345 cls.add_method('RemoveFace',
4346 'void',
4347 [param('ns3::Ptr< ns3::ndn::Face >', 'face')],
4348 is_virtual=True)
4349 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::WillErasePendingInterest(ns3::Ptr<ns3::ndn::pit::Entry> pitEntry) [member function]
4350 cls.add_method('WillErasePendingInterest',
4351 'void',
4352 [param('ns3::Ptr< ns3::ndn::pit::Entry >', 'pitEntry')],
4353 is_virtual=True)
4354 ## ndn-forwarding-strategy.h (module 'ndnSIM'): bool ns3::ndn::ForwardingStrategy::DetectRetransmittedInterest(ns3::Ptr<ns3::ndn::Face> const & incomingFace, ns3::Ptr<ns3::ndn::pit::Entry> pitEntry) [member function]
4355 cls.add_method('DetectRetransmittedInterest',
4356 'bool',
4357 [param('ns3::Ptr< ns3::ndn::Face > const &', 'incomingFace'), param('ns3::Ptr< ns3::ndn::pit::Entry >', 'pitEntry')],
4358 visibility='protected', is_virtual=True)
4359 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::DidCreatePitEntry(ns3::Ptr<ns3::ndn::Face> const & incomingFace, ns3::Ptr<ns3::ndn::InterestHeader> header, ns3::Ptr<const ns3::Packet> const & packet, ns3::Ptr<ns3::ndn::pit::Entry> pitEntry) [member function]
4360 cls.add_method('DidCreatePitEntry',
4361 'void',
4362 [param('ns3::Ptr< ns3::ndn::Face > const &', 'incomingFace'), param('ns3::Ptr< ns3::ndn::InterestHeader >', 'header'), param('ns3::Ptr< ns3::Packet const > const &', 'packet'), param('ns3::Ptr< ns3::ndn::pit::Entry >', 'pitEntry')],
4363 visibility='protected', is_virtual=True)
4364 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::DidExhaustForwardingOptions(ns3::Ptr<ns3::ndn::Face> const & incomingFace, ns3::Ptr<ns3::ndn::InterestHeader> header, ns3::Ptr<const ns3::Packet> const & packet, ns3::Ptr<ns3::ndn::pit::Entry> pitEntry) [member function]
4365 cls.add_method('DidExhaustForwardingOptions',
4366 'void',
4367 [param('ns3::Ptr< ns3::ndn::Face > const &', 'incomingFace'), param('ns3::Ptr< ns3::ndn::InterestHeader >', 'header'), param('ns3::Ptr< ns3::Packet const > const &', 'packet'), param('ns3::Ptr< ns3::ndn::pit::Entry >', 'pitEntry')],
4368 visibility='protected', is_virtual=True)
4369 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::DidReceiveDuplicateInterest(ns3::Ptr<ns3::ndn::Face> const & face, ns3::Ptr<ns3::ndn::InterestHeader> & header, ns3::Ptr<const ns3::Packet> const & packet, ns3::Ptr<ns3::ndn::pit::Entry> pitEntry) [member function]
4370 cls.add_method('DidReceiveDuplicateInterest',
4371 'void',
4372 [param('ns3::Ptr< ns3::ndn::Face > const &', 'face'), param('ns3::Ptr< ns3::ndn::InterestHeader > &', 'header'), param('ns3::Ptr< ns3::Packet const > const &', 'packet'), param('ns3::Ptr< ns3::ndn::pit::Entry >', 'pitEntry')],
4373 visibility='protected', is_virtual=True)
4374 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::DidReceiveUnsolicitedData(ns3::Ptr<ns3::ndn::Face> const & incomingFace, ns3::Ptr<ns3::ndn::ContentObjectHeader const> header, ns3::Ptr<const ns3::Packet> payload) [member function]
4375 cls.add_method('DidReceiveUnsolicitedData',
4376 'void',
4377 [param('ns3::Ptr< ns3::ndn::Face > const &', 'incomingFace'), param('ns3::Ptr< ns3::ndn::ContentObjectHeader const >', 'header'), param('ns3::Ptr< ns3::Packet const >', 'payload')],
4378 visibility='protected', is_virtual=True)
4379 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::DidSendOutData(ns3::Ptr<ns3::ndn::Face> const & face, ns3::Ptr<ns3::ndn::ContentObjectHeader const> header, ns3::Ptr<const ns3::Packet> payload, ns3::Ptr<const ns3::Packet> const & packet) [member function]
4380 cls.add_method('DidSendOutData',
4381 'void',
4382 [param('ns3::Ptr< ns3::ndn::Face > const &', 'face'), param('ns3::Ptr< ns3::ndn::ContentObjectHeader const >', 'header'), param('ns3::Ptr< ns3::Packet const >', 'payload'), param('ns3::Ptr< ns3::Packet const > const &', 'packet')],
4383 visibility='protected', is_virtual=True)
4384 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::DidSendOutInterest(ns3::Ptr<ns3::ndn::Face> const & outgoingFace, ns3::Ptr<ns3::ndn::InterestHeader> header, ns3::Ptr<const ns3::Packet> const & packet, ns3::Ptr<ns3::ndn::pit::Entry> pitEntry) [member function]
4385 cls.add_method('DidSendOutInterest',
4386 'void',
4387 [param('ns3::Ptr< ns3::ndn::Face > const &', 'outgoingFace'), param('ns3::Ptr< ns3::ndn::InterestHeader >', 'header'), param('ns3::Ptr< ns3::Packet const > const &', 'packet'), param('ns3::Ptr< ns3::ndn::pit::Entry >', 'pitEntry')],
4388 visibility='protected', is_virtual=True)
4389 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::DoDispose() [member function]
4390 cls.add_method('DoDispose',
4391 'void',
4392 [],
4393 visibility='protected', is_virtual=True)
4394 ## ndn-forwarding-strategy.h (module 'ndnSIM'): bool ns3::ndn::ForwardingStrategy::DoPropagateInterest(ns3::Ptr<ns3::ndn::Face> const & incomingFace, ns3::Ptr<ns3::ndn::InterestHeader> header, ns3::Ptr<const ns3::Packet> const & packet, ns3::Ptr<ns3::ndn::pit::Entry> pitEntry) [member function]
4395 cls.add_method('DoPropagateInterest',
4396 'bool',
4397 [param('ns3::Ptr< ns3::ndn::Face > const &', 'incomingFace'), param('ns3::Ptr< ns3::ndn::InterestHeader >', 'header'), param('ns3::Ptr< ns3::Packet const > const &', 'packet'), param('ns3::Ptr< ns3::ndn::pit::Entry >', 'pitEntry')],
4398 is_pure_virtual=True, visibility='protected', is_virtual=True)
4399 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::FailedToCreatePitEntry(ns3::Ptr<ns3::ndn::Face> const & incomingFace, ns3::Ptr<ns3::ndn::InterestHeader> header, ns3::Ptr<const ns3::Packet> const & packet) [member function]
4400 cls.add_method('FailedToCreatePitEntry',
4401 'void',
4402 [param('ns3::Ptr< ns3::ndn::Face > const &', 'incomingFace'), param('ns3::Ptr< ns3::ndn::InterestHeader >', 'header'), param('ns3::Ptr< ns3::Packet const > const &', 'packet')],
4403 visibility='protected', is_virtual=True)
4404 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::NotifyNewAggregate() [member function]
4405 cls.add_method('NotifyNewAggregate',
4406 'void',
4407 [],
4408 visibility='protected', is_virtual=True)
4409 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::PropagateInterest(ns3::Ptr<ns3::ndn::Face> const & incomingFace, ns3::Ptr<ns3::ndn::InterestHeader> header, ns3::Ptr<const ns3::Packet> const & packet, ns3::Ptr<ns3::ndn::pit::Entry> pitEntry) [member function]
4410 cls.add_method('PropagateInterest',
4411 'void',
4412 [param('ns3::Ptr< ns3::ndn::Face > const &', 'incomingFace'), param('ns3::Ptr< ns3::ndn::InterestHeader >', 'header'), param('ns3::Ptr< ns3::Packet const > const &', 'packet'), param('ns3::Ptr< ns3::ndn::pit::Entry >', 'pitEntry')],
4413 visibility='protected', is_virtual=True)
4414 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::SatisfyPendingInterest(ns3::Ptr<ns3::ndn::Face> const & incomingFace, ns3::Ptr<ns3::ndn::ContentObjectHeader const> header, ns3::Ptr<const ns3::Packet> payload, ns3::Ptr<const ns3::Packet> const & packet, ns3::Ptr<ns3::ndn::pit::Entry> pitEntry) [member function]
4415 cls.add_method('SatisfyPendingInterest',
4416 'void',
4417 [param('ns3::Ptr< ns3::ndn::Face > const &', 'incomingFace'), param('ns3::Ptr< ns3::ndn::ContentObjectHeader const >', 'header'), param('ns3::Ptr< ns3::Packet const >', 'payload'), param('ns3::Ptr< ns3::Packet const > const &', 'packet'), param('ns3::Ptr< ns3::ndn::pit::Entry >', 'pitEntry')],
4418 visibility='protected', is_virtual=True)
4419 ## ndn-forwarding-strategy.h (module 'ndnSIM'): bool ns3::ndn::ForwardingStrategy::ShouldSuppressIncomingInterest(ns3::Ptr<ns3::ndn::Face> const & incomingFace, ns3::Ptr<ns3::ndn::pit::Entry> pitEntry) [member function]
4420 cls.add_method('ShouldSuppressIncomingInterest',
4421 'bool',
4422 [param('ns3::Ptr< ns3::ndn::Face > const &', 'incomingFace'), param('ns3::Ptr< ns3::ndn::pit::Entry >', 'pitEntry')],
4423 visibility='protected', is_virtual=True)
4424 ## ndn-forwarding-strategy.h (module 'ndnSIM'): void ns3::ndn::ForwardingStrategy::WillSatisfyPendingInterest(ns3::Ptr<ns3::ndn::Face> const & incomingFace, ns3::Ptr<ns3::ndn::pit::Entry> pitEntry) [member function]
4425 cls.add_method('WillSatisfyPendingInterest',
4426 'void',
4427 [param('ns3::Ptr< ns3::ndn::Face > const &', 'incomingFace'), param('ns3::Ptr< ns3::ndn::pit::Entry >', 'pitEntry')],
4428 visibility='protected', is_virtual=True)
4429 ## ndn-forwarding-strategy.h (module 'ndnSIM'): bool ns3::ndn::ForwardingStrategy::WillSendOutInterest(ns3::Ptr<ns3::ndn::Face> const & outgoingFace, ns3::Ptr<ns3::ndn::InterestHeader> header, ns3::Ptr<ns3::ndn::pit::Entry> pitEntry) [member function]
4430 cls.add_method('WillSendOutInterest',
4431 'bool',
4432 [param('ns3::Ptr< ns3::ndn::Face > const &', 'outgoingFace'), param('ns3::Ptr< ns3::ndn::InterestHeader >', 'header'), param('ns3::Ptr< ns3::ndn::pit::Entry >', 'pitEntry')],
4433 visibility='protected', is_virtual=True)
4434 return
4435
4436def register_Ns3NdnGlobalRoutingHelper_methods(root_module, cls):
4437 ## ndn-global-routing-helper.h (module 'ndnSIM'): ns3::ndn::GlobalRoutingHelper::GlobalRoutingHelper() [constructor]
4438 cls.add_constructor([])
4439 ## ndn-global-routing-helper.h (module 'ndnSIM'): ns3::ndn::GlobalRoutingHelper::GlobalRoutingHelper(ns3::ndn::GlobalRoutingHelper const & arg0) [copy constructor]
4440 cls.add_constructor([param('ns3::ndn::GlobalRoutingHelper const &', 'arg0')])
4441 ## ndn-global-routing-helper.h (module 'ndnSIM'): void ns3::ndn::GlobalRoutingHelper::AddOrigin(std::string const & prefix, ns3::Ptr<ns3::Node> node) [member function]
4442 cls.add_method('AddOrigin',
4443 'void',
4444 [param('std::string const &', 'prefix'), param('ns3::Ptr< ns3::Node >', 'node')])
4445 ## ndn-global-routing-helper.h (module 'ndnSIM'): void ns3::ndn::GlobalRoutingHelper::AddOrigin(std::string const & prefix, std::string const & nodeName) [member function]
4446 cls.add_method('AddOrigin',
4447 'void',
4448 [param('std::string const &', 'prefix'), param('std::string const &', 'nodeName')])
4449 ## ndn-global-routing-helper.h (module 'ndnSIM'): void ns3::ndn::GlobalRoutingHelper::AddOrigins(std::string const & prefix, ns3::NodeContainer const & nodes) [member function]
4450 cls.add_method('AddOrigins',
4451 'void',
4452 [param('std::string const &', 'prefix'), param('ns3::NodeContainer const &', 'nodes')])
4453 ## ndn-global-routing-helper.h (module 'ndnSIM'): void ns3::ndn::GlobalRoutingHelper::CalculateRoutes() [member function]
4454 cls.add_method('CalculateRoutes',
4455 'void',
4456 [])
4457 ## ndn-global-routing-helper.h (module 'ndnSIM'): void ns3::ndn::GlobalRoutingHelper::Install(ns3::Ptr<ns3::Node> node) [member function]
4458 cls.add_method('Install',
4459 'void',
4460 [param('ns3::Ptr< ns3::Node >', 'node')])
4461 ## ndn-global-routing-helper.h (module 'ndnSIM'): void ns3::ndn::GlobalRoutingHelper::Install(ns3::NodeContainer const & nodes) [member function]
4462 cls.add_method('Install',
4463 'void',
4464 [param('ns3::NodeContainer const &', 'nodes')])
4465 ## ndn-global-routing-helper.h (module 'ndnSIM'): void ns3::ndn::GlobalRoutingHelper::InstallAll() [member function]
4466 cls.add_method('InstallAll',
4467 'void',
4468 [])
4469 return
4470
4471def register_Ns3NdnHeaderHelper_methods(root_module, cls):
4472 ## ndn-header-helper.h (module 'ndnSIM'): ns3::ndn::HeaderHelper::HeaderHelper() [constructor]
4473 cls.add_constructor([])
4474 ## ndn-header-helper.h (module 'ndnSIM'): ns3::ndn::HeaderHelper::HeaderHelper(ns3::ndn::HeaderHelper const & arg0) [copy constructor]
4475 cls.add_constructor([param('ns3::ndn::HeaderHelper const &', 'arg0')])
4476 ## ndn-header-helper.h (module 'ndnSIM'): static ns3::ndn::HeaderHelper::Type ns3::ndn::HeaderHelper::GetNdnHeaderType(ns3::Ptr<const ns3::Packet> packet) [member function]
4477 cls.add_method('GetNdnHeaderType',
4478 'ns3::ndn::HeaderHelper::Type',
4479 [param('ns3::Ptr< ns3::Packet const >', 'packet')],
4480 is_static=True)
4481 return
4482
4483def register_Ns3NdnInterestHeader_methods(root_module, cls):
4484 ## ndn-interest-header.h (module 'ndnSIM'): ns3::ndn::InterestHeader::InterestHeader(ns3::ndn::InterestHeader const & arg0) [copy constructor]
4485 cls.add_constructor([param('ns3::ndn::InterestHeader const &', 'arg0')])
4486 ## ndn-interest-header.h (module 'ndnSIM'): ns3::ndn::InterestHeader::InterestHeader() [constructor]
4487 cls.add_constructor([])
4488 ## ndn-interest-header.h (module 'ndnSIM'): uint32_t ns3::ndn::InterestHeader::Deserialize(ns3::Buffer::Iterator start) [member function]
4489 cls.add_method('Deserialize',
4490 'uint32_t',
4491 [param('ns3::Buffer::Iterator', 'start')],
4492 is_virtual=True)
4493 ## ndn-interest-header.h (module 'ndnSIM'): ns3::ndn::NameComponents const & ns3::ndn::InterestHeader::GetExclude() const [member function]
4494 cls.add_method('GetExclude',
4495 'ns3::ndn::NameComponents const &',
4496 [],
4497 is_const=True)
4498 ## ndn-interest-header.h (module 'ndnSIM'): ns3::TypeId ns3::ndn::InterestHeader::GetInstanceTypeId() const [member function]
4499 cls.add_method('GetInstanceTypeId',
4500 'ns3::TypeId',
4501 [],
4502 is_const=True, is_virtual=True)
4503 ## ndn-interest-header.h (module 'ndnSIM'): ns3::Time ns3::ndn::InterestHeader::GetInterestLifetime() const [member function]
4504 cls.add_method('GetInterestLifetime',
4505 'ns3::Time',
4506 [],
4507 is_const=True)
4508 ## ndn-interest-header.h (module 'ndnSIM'): int32_t ns3::ndn::InterestHeader::GetMaxSuffixComponents() const [member function]
4509 cls.add_method('GetMaxSuffixComponents',
4510 'int32_t',
4511 [],
4512 is_const=True)
4513 ## ndn-interest-header.h (module 'ndnSIM'): int32_t ns3::ndn::InterestHeader::GetMinSuffixComponents() const [member function]
4514 cls.add_method('GetMinSuffixComponents',
4515 'int32_t',
4516 [],
4517 is_const=True)
4518 ## ndn-interest-header.h (module 'ndnSIM'): uint32_t ns3::ndn::InterestHeader::GetNack() const [member function]
4519 cls.add_method('GetNack',
4520 'uint32_t',
4521 [],
4522 is_const=True)
4523 ## ndn-interest-header.h (module 'ndnSIM'): ns3::ndn::NameComponents const & ns3::ndn::InterestHeader::GetName() const [member function]
4524 cls.add_method('GetName',
4525 'ns3::ndn::NameComponents const &',
4526 [],
4527 is_const=True)
4528 ## ndn-interest-header.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::NameComponents const> ns3::ndn::InterestHeader::GetNamePtr() const [member function]
4529 cls.add_method('GetNamePtr',
4530 'ns3::Ptr< ns3::ndn::NameComponents const >',
4531 [],
4532 is_const=True)
4533 ## ndn-interest-header.h (module 'ndnSIM'): uint32_t ns3::ndn::InterestHeader::GetNonce() const [member function]
4534 cls.add_method('GetNonce',
4535 'uint32_t',
4536 [],
4537 is_const=True)
4538 ## ndn-interest-header.h (module 'ndnSIM'): int8_t ns3::ndn::InterestHeader::GetScope() const [member function]
4539 cls.add_method('GetScope',
4540 'int8_t',
4541 [],
4542 is_const=True)
4543 ## ndn-interest-header.h (module 'ndnSIM'): uint32_t ns3::ndn::InterestHeader::GetSerializedSize() const [member function]
4544 cls.add_method('GetSerializedSize',
4545 'uint32_t',
4546 [],
4547 is_const=True, is_virtual=True)
4548 ## ndn-interest-header.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::InterestHeader::GetTypeId() [member function]
4549 cls.add_method('GetTypeId',
4550 'ns3::TypeId',
4551 [],
4552 is_static=True)
4553 ## ndn-interest-header.h (module 'ndnSIM'): bool ns3::ndn::InterestHeader::IsEnabledAnswerOriginKind() const [member function]
4554 cls.add_method('IsEnabledAnswerOriginKind',
4555 'bool',
4556 [],
4557 is_const=True)
4558 ## ndn-interest-header.h (module 'ndnSIM'): bool ns3::ndn::InterestHeader::IsEnabledChildSelector() const [member function]
4559 cls.add_method('IsEnabledChildSelector',
4560 'bool',
4561 [],
4562 is_const=True)
4563 ## ndn-interest-header.h (module 'ndnSIM'): bool ns3::ndn::InterestHeader::IsEnabledExclude() const [member function]
4564 cls.add_method('IsEnabledExclude',
4565 'bool',
4566 [],
4567 is_const=True)
4568 ## ndn-interest-header.h (module 'ndnSIM'): void ns3::ndn::InterestHeader::Print(std::ostream & os) const [member function]
4569 cls.add_method('Print',
4570 'void',
4571 [param('std::ostream &', 'os')],
4572 is_const=True, is_virtual=True)
4573 ## ndn-interest-header.h (module 'ndnSIM'): void ns3::ndn::InterestHeader::Serialize(ns3::Buffer::Iterator start) const [member function]
4574 cls.add_method('Serialize',
4575 'void',
4576 [param('ns3::Buffer::Iterator', 'start')],
4577 is_const=True, is_virtual=True)
4578 ## ndn-interest-header.h (module 'ndnSIM'): void ns3::ndn::InterestHeader::SetAnswerOriginKind(bool value) [member function]
4579 cls.add_method('SetAnswerOriginKind',
4580 'void',
4581 [param('bool', 'value')])
4582 ## ndn-interest-header.h (module 'ndnSIM'): void ns3::ndn::InterestHeader::SetChildSelector(bool value) [member function]
4583 cls.add_method('SetChildSelector',
4584 'void',
4585 [param('bool', 'value')])
4586 ## ndn-interest-header.h (module 'ndnSIM'): void ns3::ndn::InterestHeader::SetExclude(ns3::Ptr<ns3::ndn::NameComponents> const & exclude) [member function]
4587 cls.add_method('SetExclude',
4588 'void',
4589 [param('ns3::Ptr< ns3::ndn::NameComponents > const &', 'exclude')])
4590 ## ndn-interest-header.h (module 'ndnSIM'): void ns3::ndn::InterestHeader::SetInterestLifetime(ns3::Time time) [member function]
4591 cls.add_method('SetInterestLifetime',
4592 'void',
4593 [param('ns3::Time', 'time')])
4594 ## ndn-interest-header.h (module 'ndnSIM'): void ns3::ndn::InterestHeader::SetMaxSuffixComponents(int32_t value) [member function]
4595 cls.add_method('SetMaxSuffixComponents',
4596 'void',
4597 [param('int32_t', 'value')])
4598 ## ndn-interest-header.h (module 'ndnSIM'): void ns3::ndn::InterestHeader::SetMinSuffixComponents(int32_t value) [member function]
4599 cls.add_method('SetMinSuffixComponents',
4600 'void',
4601 [param('int32_t', 'value')])
4602 ## ndn-interest-header.h (module 'ndnSIM'): void ns3::ndn::InterestHeader::SetNack(uint32_t nackType) [member function]
4603 cls.add_method('SetNack',
4604 'void',
4605 [param('uint32_t', 'nackType')])
4606 ## ndn-interest-header.h (module 'ndnSIM'): void ns3::ndn::InterestHeader::SetName(ns3::Ptr<ns3::ndn::NameComponents> const & name) [member function]
4607 cls.add_method('SetName',
4608 'void',
4609 [param('ns3::Ptr< ns3::ndn::NameComponents > const &', 'name')])
4610 ## ndn-interest-header.h (module 'ndnSIM'): void ns3::ndn::InterestHeader::SetNonce(uint32_t nonce) [member function]
4611 cls.add_method('SetNonce',
4612 'void',
4613 [param('uint32_t', 'nonce')])
4614 ## ndn-interest-header.h (module 'ndnSIM'): void ns3::ndn::InterestHeader::SetScope(int8_t scope) [member function]
4615 cls.add_method('SetScope',
4616 'void',
4617 [param('int8_t', 'scope')])
4618 return
4619
4620def register_Ns3NdnInterestHeaderException_methods(root_module, cls):
4621 ## ndn-interest-header.h (module 'ndnSIM'): ns3::ndn::InterestHeaderException::InterestHeaderException() [constructor]
4622 cls.add_constructor([])
4623 ## ndn-interest-header.h (module 'ndnSIM'): ns3::ndn::InterestHeaderException::InterestHeaderException(ns3::ndn::InterestHeaderException const & arg0) [copy constructor]
4624 cls.add_constructor([param('ns3::ndn::InterestHeaderException const &', 'arg0')])
4625 return
4626
4627def register_Ns3NdnL3Protocol_methods(root_module, cls):
4628 ## ndn-l3-protocol.h (module 'ndnSIM'): ns3::ndn::L3Protocol::ETHERNET_FRAME_TYPE [variable]
4629 cls.add_static_attribute('ETHERNET_FRAME_TYPE', 'uint16_t const', is_const=True)
4630 ## ndn-l3-protocol.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::L3Protocol::GetTypeId() [member function]
4631 cls.add_method('GetTypeId',
4632 'ns3::TypeId',
4633 [],
4634 is_static=True)
4635 ## ndn-l3-protocol.h (module 'ndnSIM'): ns3::ndn::L3Protocol::L3Protocol() [constructor]
4636 cls.add_constructor([])
4637 ## ndn-l3-protocol.h (module 'ndnSIM'): uint32_t ns3::ndn::L3Protocol::AddFace(ns3::Ptr<ns3::ndn::Face> const & face) [member function]
4638 cls.add_method('AddFace',
4639 'uint32_t',
4640 [param('ns3::Ptr< ns3::ndn::Face > const &', 'face')],
4641 is_virtual=True)
4642 ## ndn-l3-protocol.h (module 'ndnSIM'): uint32_t ns3::ndn::L3Protocol::GetNFaces() const [member function]
4643 cls.add_method('GetNFaces',
4644 'uint32_t',
4645 [],
4646 is_const=True, is_virtual=True)
4647 ## ndn-l3-protocol.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::Face> ns3::ndn::L3Protocol::GetFace(uint32_t face) const [member function]
4648 cls.add_method('GetFace',
4649 'ns3::Ptr< ns3::ndn::Face >',
4650 [param('uint32_t', 'face')],
4651 is_const=True, is_virtual=True)
4652 ## ndn-l3-protocol.h (module 'ndnSIM'): void ns3::ndn::L3Protocol::RemoveFace(ns3::Ptr<ns3::ndn::Face> face) [member function]
4653 cls.add_method('RemoveFace',
4654 'void',
4655 [param('ns3::Ptr< ns3::ndn::Face >', 'face')],
4656 is_virtual=True)
4657 ## ndn-l3-protocol.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::Face> ns3::ndn::L3Protocol::GetFaceByNetDevice(ns3::Ptr<ns3::NetDevice> netDevice) const [member function]
4658 cls.add_method('GetFaceByNetDevice',
4659 'ns3::Ptr< ns3::ndn::Face >',
4660 [param('ns3::Ptr< ns3::NetDevice >', 'netDevice')],
4661 is_const=True, is_virtual=True)
4662 ## ndn-l3-protocol.h (module 'ndnSIM'): void ns3::ndn::L3Protocol::DoDispose() [member function]
4663 cls.add_method('DoDispose',
4664 'void',
4665 [],
4666 visibility='protected', is_virtual=True)
4667 ## ndn-l3-protocol.h (module 'ndnSIM'): void ns3::ndn::L3Protocol::NotifyNewAggregate() [member function]
4668 cls.add_method('NotifyNewAggregate',
4669 'void',
4670 [],
4671 visibility='protected', is_virtual=True)
4672 return
4673
4674def register_Ns3NdnNameComponents_methods(root_module, cls):
4675 cls.add_output_stream_operator()
4676 cls.add_binary_comparison_operator('<')
4677 cls.add_binary_comparison_operator('==')
4678 ## ndn-name-components.h (module 'ndnSIM'): ns3::ndn::NameComponents::NameComponents(ns3::ndn::NameComponents const & arg0) [copy constructor]
4679 cls.add_constructor([param('ns3::ndn::NameComponents const &', 'arg0')])
4680 ## ndn-name-components.h (module 'ndnSIM'): ns3::ndn::NameComponents::NameComponents() [constructor]
4681 cls.add_constructor([])
4682 ## ndn-name-components.h (module 'ndnSIM'): ns3::ndn::NameComponents::NameComponents(std::list<boost::reference_wrapper<const std::basic_string<char, std::char_traits<char>, std::allocator<char> > >,std::allocator<boost::reference_wrapper<const std::basic_string<char, std::char_traits<char>, std::allocator<char> > > > > const & components) [constructor]
4683 cls.add_constructor([param('std::list< boost::reference_wrapper< std::string const > > const &', 'components')])
4684 ## ndn-name-components.h (module 'ndnSIM'): ns3::ndn::NameComponents::NameComponents(std::string const & prefix) [constructor]
4685 cls.add_constructor([param('std::string const &', 'prefix')])
4686 ## ndn-name-components.h (module 'ndnSIM'): ns3::ndn::NameComponents::NameComponents(char const * prefix) [constructor]
4687 cls.add_constructor([param('char const *', 'prefix')])
4688 ## ndn-name-components.h (module 'ndnSIM'): std::list<std::string, std::allocator<std::string> > const & ns3::ndn::NameComponents::GetComponents() const [member function]
4689 cls.add_method('GetComponents',
4690 'std::list< std::string > const &',
4691 [],
4692 is_const=True)
4693 ## ndn-name-components.h (module 'ndnSIM'): std::string ns3::ndn::NameComponents::GetLastComponent() const [member function]
4694 cls.add_method('GetLastComponent',
4695 'std::string',
4696 [],
4697 is_const=True)
4698 ## ndn-name-components.h (module 'ndnSIM'): std::list<boost::reference_wrapper<const std::basic_string<char, std::char_traits<char>, std::allocator<char> > >,std::allocator<boost::reference_wrapper<const std::basic_string<char, std::char_traits<char>, std::allocator<char> > > > > ns3::ndn::NameComponents::GetSubComponents(size_t num) const [member function]
4699 cls.add_method('GetSubComponents',
4700 'std::list< boost::reference_wrapper< std::string const > >',
4701 [param('size_t', 'num')],
4702 is_const=True)
4703 ## ndn-name-components.h (module 'ndnSIM'): void ns3::ndn::NameComponents::Print(std::ostream & os) const [member function]
4704 cls.add_method('Print',
4705 'void',
4706 [param('std::ostream &', 'os')],
4707 is_const=True)
4708 ## ndn-name-components.h (module 'ndnSIM'): std::_List_iterator<std::string> ns3::ndn::NameComponents::begin() [member function]
4709 cls.add_method('begin',
4710 'std::_List_iterator< std::string >',
4711 [])
4712 ## ndn-name-components.h (module 'ndnSIM'): std::_List_const_iterator<std::string> ns3::ndn::NameComponents::begin() const [member function]
4713 cls.add_method('begin',
4714 'std::_List_const_iterator< std::string >',
4715 [],
4716 is_const=True)
4717 ## ndn-name-components.h (module 'ndnSIM'): ns3::ndn::NameComponents ns3::ndn::NameComponents::cut(size_t minusComponents) const [member function]
4718 cls.add_method('cut',
4719 'ns3::ndn::NameComponents',
4720 [param('size_t', 'minusComponents')],
4721 is_const=True)
4722 ## ndn-name-components.h (module 'ndnSIM'): std::_List_iterator<std::string> ns3::ndn::NameComponents::end() [member function]
4723 cls.add_method('end',
4724 'std::_List_iterator< std::string >',
4725 [])
4726 ## ndn-name-components.h (module 'ndnSIM'): std::_List_const_iterator<std::string> ns3::ndn::NameComponents::end() const [member function]
4727 cls.add_method('end',
4728 'std::_List_const_iterator< std::string >',
4729 [],
4730 is_const=True)
4731 ## ndn-name-components.h (module 'ndnSIM'): size_t ns3::ndn::NameComponents::size() const [member function]
4732 cls.add_method('size',
4733 'size_t',
4734 [],
4735 is_const=True)
4736 return
4737
4738def register_Ns3NdnNameComponentsChecker_methods(root_module, cls):
4739 ## ndn-name-components.h (module 'ndnSIM'): ns3::ndn::NameComponentsChecker::NameComponentsChecker() [constructor]
4740 cls.add_constructor([])
4741 ## ndn-name-components.h (module 'ndnSIM'): ns3::ndn::NameComponentsChecker::NameComponentsChecker(ns3::ndn::NameComponentsChecker const & arg0) [copy constructor]
4742 cls.add_constructor([param('ns3::ndn::NameComponentsChecker const &', 'arg0')])
4743 return
4744
4745def register_Ns3NdnNameComponentsValue_methods(root_module, cls):
4746 ## ndn-name-components.h (module 'ndnSIM'): ns3::ndn::NameComponentsValue::NameComponentsValue() [constructor]
4747 cls.add_constructor([])
4748 ## ndn-name-components.h (module 'ndnSIM'): ns3::ndn::NameComponentsValue::NameComponentsValue(ns3::ndn::NameComponentsValue const & arg0) [copy constructor]
4749 cls.add_constructor([param('ns3::ndn::NameComponentsValue const &', 'arg0')])
4750 ## ndn-name-components.h (module 'ndnSIM'): ns3::ndn::NameComponentsValue::NameComponentsValue(ns3::ndn::NameComponents const & value) [constructor]
4751 cls.add_constructor([param('ns3::ndn::NameComponents const &', 'value')])
4752 ## ndn-name-components.h (module 'ndnSIM'): ns3::Ptr<ns3::AttributeValue> ns3::ndn::NameComponentsValue::Copy() const [member function]
4753 cls.add_method('Copy',
4754 'ns3::Ptr< ns3::AttributeValue >',
4755 [],
4756 is_const=True, is_virtual=True)
4757 ## ndn-name-components.h (module 'ndnSIM'): bool ns3::ndn::NameComponentsValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
4758 cls.add_method('DeserializeFromString',
4759 'bool',
4760 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4761 is_virtual=True)
4762 ## ndn-name-components.h (module 'ndnSIM'): ns3::ndn::NameComponents ns3::ndn::NameComponentsValue::Get() const [member function]
4763 cls.add_method('Get',
4764 'ns3::ndn::NameComponents',
4765 [],
4766 is_const=True)
4767 ## ndn-name-components.h (module 'ndnSIM'): std::string ns3::ndn::NameComponentsValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
4768 cls.add_method('SerializeToString',
4769 'std::string',
4770 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4771 is_const=True, is_virtual=True)
4772 ## ndn-name-components.h (module 'ndnSIM'): void ns3::ndn::NameComponentsValue::Set(ns3::ndn::NameComponents const & value) [member function]
4773 cls.add_method('Set',
4774 'void',
4775 [param('ns3::ndn::NameComponents const &', 'value')])
4776 return
4777
4778def register_Ns3NdnNetDeviceFace_methods(root_module, cls):
4779 ## ndn-net-device-face.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::NetDeviceFace::GetTypeId() [member function]
4780 cls.add_method('GetTypeId',
4781 'ns3::TypeId',
4782 [],
4783 is_static=True)
4784 ## ndn-net-device-face.h (module 'ndnSIM'): ns3::ndn::NetDeviceFace::NetDeviceFace(ns3::Ptr<ns3::Node> node, ns3::Ptr<ns3::NetDevice> const & netDevice) [constructor]
4785 cls.add_constructor([param('ns3::Ptr< ns3::Node >', 'node'), param('ns3::Ptr< ns3::NetDevice > const &', 'netDevice')])
4786 ## 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]
4787 cls.add_method('RegisterProtocolHandler',
4788 'void',
4789 [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')],
4790 is_virtual=True)
4791 ## ndn-net-device-face.h (module 'ndnSIM'): std::ostream & ns3::ndn::NetDeviceFace::Print(std::ostream & os) const [member function]
4792 cls.add_method('Print',
4793 'std::ostream &',
4794 [param('std::ostream &', 'os')],
4795 is_const=True, is_virtual=True)
4796 ## ndn-net-device-face.h (module 'ndnSIM'): ns3::Ptr<ns3::NetDevice> ns3::ndn::NetDeviceFace::GetNetDevice() const [member function]
4797 cls.add_method('GetNetDevice',
4798 'ns3::Ptr< ns3::NetDevice >',
4799 [],
4800 is_const=True)
4801 ## 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 -07004802 cls.add_method('SendImpl',
Alexander Afanasyev1c0248b2012-07-24 15:59:50 -07004803 'bool',
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07004804 [param('ns3::Ptr< ns3::Packet >', 'p')],
4805 visibility='protected', is_virtual=True)
4806 return
4807
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07004808def register_Ns3NdnPit_methods(root_module, cls):
4809 cls.add_output_stream_operator()
4810 ## ndn-pit.h (module 'ndnSIM'): ns3::ndn::Pit::Pit(ns3::ndn::Pit const & arg0) [copy constructor]
4811 cls.add_constructor([param('ns3::ndn::Pit const &', 'arg0')])
4812 ## ndn-pit.h (module 'ndnSIM'): ns3::ndn::Pit::Pit() [constructor]
4813 cls.add_constructor([])
4814 ## ndn-pit.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::pit::Entry> ns3::ndn::Pit::Begin() [member function]
4815 cls.add_method('Begin',
4816 'ns3::Ptr< ns3::ndn::pit::Entry >',
4817 [],
4818 is_pure_virtual=True, is_virtual=True)
4819 ## ndn-pit.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::pit::Entry> ns3::ndn::Pit::Create(ns3::Ptr<const ns3::ndn::InterestHeader> header) [member function]
4820 cls.add_method('Create',
4821 'ns3::Ptr< ns3::ndn::pit::Entry >',
4822 [param('ns3::Ptr< ns3::ndn::InterestHeader const >', 'header')],
4823 is_pure_virtual=True, is_virtual=True)
4824 ## ndn-pit.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::pit::Entry> ns3::ndn::Pit::End() [member function]
4825 cls.add_method('End',
4826 'ns3::Ptr< ns3::ndn::pit::Entry >',
4827 [],
4828 is_pure_virtual=True, is_virtual=True)
4829 ## ndn-pit.h (module 'ndnSIM'): static ns3::Ptr<ns3::ndn::Pit> ns3::ndn::Pit::GetPit(ns3::Ptr<ns3::Object> node) [member function]
4830 cls.add_method('GetPit',
4831 'ns3::Ptr< ns3::ndn::Pit >',
4832 [param('ns3::Ptr< ns3::Object >', 'node')],
4833 is_static=True)
4834 ## ndn-pit.h (module 'ndnSIM'): uint32_t ns3::ndn::Pit::GetSize() const [member function]
4835 cls.add_method('GetSize',
4836 'uint32_t',
4837 [],
4838 is_pure_virtual=True, is_const=True, is_virtual=True)
4839 ## ndn-pit.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::Pit::GetTypeId() [member function]
4840 cls.add_method('GetTypeId',
4841 'ns3::TypeId',
4842 [],
4843 is_static=True)
4844 ## ndn-pit.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::pit::Entry> ns3::ndn::Pit::Lookup(ns3::ndn::ContentObjectHeader const & header) [member function]
4845 cls.add_method('Lookup',
4846 'ns3::Ptr< ns3::ndn::pit::Entry >',
4847 [param('ns3::ndn::ContentObjectHeader const &', 'header')],
4848 is_pure_virtual=True, is_virtual=True)
4849 ## ndn-pit.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::pit::Entry> ns3::ndn::Pit::Lookup(ns3::ndn::InterestHeader const & header) [member function]
4850 cls.add_method('Lookup',
4851 'ns3::Ptr< ns3::ndn::pit::Entry >',
4852 [param('ns3::ndn::InterestHeader const &', 'header')],
4853 is_pure_virtual=True, is_virtual=True)
4854 ## ndn-pit.h (module 'ndnSIM'): void ns3::ndn::Pit::MarkErased(ns3::Ptr<ns3::ndn::pit::Entry> entry) [member function]
4855 cls.add_method('MarkErased',
4856 'void',
4857 [param('ns3::Ptr< ns3::ndn::pit::Entry >', 'entry')],
4858 is_pure_virtual=True, is_virtual=True)
4859 ## ndn-pit.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::pit::Entry> ns3::ndn::Pit::Next(ns3::Ptr<ns3::ndn::pit::Entry> arg0) [member function]
4860 cls.add_method('Next',
4861 'ns3::Ptr< ns3::ndn::pit::Entry >',
4862 [param('ns3::Ptr< ns3::ndn::pit::Entry >', 'arg0')],
4863 is_pure_virtual=True, is_virtual=True)
4864 ## ndn-pit.h (module 'ndnSIM'): void ns3::ndn::Pit::Print(std::ostream & os) const [member function]
4865 cls.add_method('Print',
4866 'void',
4867 [param('std::ostream &', 'os')],
4868 is_pure_virtual=True, is_const=True, is_virtual=True)
4869 return
4870
4871def register_Ns3NdnStackHelper_methods(root_module, cls):
4872 ## ndn-stack-helper.h (module 'ndnSIM'): ns3::ndn::StackHelper::StackHelper() [constructor]
4873 cls.add_constructor([])
4874 ## 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]
4875 cls.add_method('SetStackAttributes',
4876 'void',
4877 [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='""')])
4878 ## 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]
4879 cls.add_method('SetForwardingStrategy',
4880 'void',
4881 [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='""')])
4882 ## 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]
4883 cls.add_method('SetContentStore',
4884 'void',
4885 [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='""')])
4886 ## 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]
4887 cls.add_method('SetPit',
4888 'void',
4889 [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='""')])
4890 ## 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]
4891 cls.add_method('SetFib',
4892 'void',
4893 [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='""')])
4894 ## 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]
4895 cls.add_method('EnableLimits',
4896 'void',
4897 [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')])
4898 ## ndn-stack-helper.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::FaceContainer> ns3::ndn::StackHelper::Install(std::string nodeName) const [member function]
4899 cls.add_method('Install',
4900 'ns3::Ptr< ns3::ndn::FaceContainer >',
4901 [param('std::string', 'nodeName')],
4902 is_const=True)
4903 ## ndn-stack-helper.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::FaceContainer> ns3::ndn::StackHelper::Install(ns3::Ptr<ns3::Node> node) const [member function]
4904 cls.add_method('Install',
4905 'ns3::Ptr< ns3::ndn::FaceContainer >',
4906 [param('ns3::Ptr< ns3::Node >', 'node')],
4907 is_const=True)
4908 ## ndn-stack-helper.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::FaceContainer> ns3::ndn::StackHelper::Install(ns3::NodeContainer c) const [member function]
4909 cls.add_method('Install',
4910 'ns3::Ptr< ns3::ndn::FaceContainer >',
4911 [param('ns3::NodeContainer', 'c')],
4912 is_const=True)
4913 ## ndn-stack-helper.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::FaceContainer> ns3::ndn::StackHelper::InstallAll() const [member function]
4914 cls.add_method('InstallAll',
4915 'ns3::Ptr< ns3::ndn::FaceContainer >',
4916 [],
4917 is_const=True)
4918 ## ndn-stack-helper.h (module 'ndnSIM'): static void ns3::ndn::StackHelper::AddRoute(std::string nodeName, std::string prefix, uint32_t faceId, int32_t metric) [member function]
4919 cls.add_method('AddRoute',
4920 'void',
4921 [param('std::string', 'nodeName'), param('std::string', 'prefix'), param('uint32_t', 'faceId'), param('int32_t', 'metric')],
4922 is_static=True)
4923 ## ndn-stack-helper.h (module 'ndnSIM'): static void ns3::ndn::StackHelper::AddRoute(ns3::Ptr<ns3::Node> node, std::string prefix, uint32_t faceId, int32_t metric) [member function]
4924 cls.add_method('AddRoute',
4925 'void',
4926 [param('ns3::Ptr< ns3::Node >', 'node'), param('std::string', 'prefix'), param('uint32_t', 'faceId'), param('int32_t', 'metric')],
4927 is_static=True)
4928 ## ndn-stack-helper.h (module 'ndnSIM'): static void ns3::ndn::StackHelper::AddRoute(ns3::Ptr<ns3::Node> node, std::string prefix, ns3::Ptr<ns3::ndn::Face> face, int32_t metric) [member function]
4929 cls.add_method('AddRoute',
4930 'void',
4931 [param('ns3::Ptr< ns3::Node >', 'node'), param('std::string', 'prefix'), param('ns3::Ptr< ns3::ndn::Face >', 'face'), param('int32_t', 'metric')],
4932 is_static=True)
4933 ## ndn-stack-helper.h (module 'ndnSIM'): void ns3::ndn::StackHelper::SetDefaultRoutes(bool needSet) [member function]
4934 cls.add_method('SetDefaultRoutes',
4935 'void',
4936 [param('bool', 'needSet')])
4937 return
4938
4939def register_Ns3NdnUnknownHeaderException_methods(root_module, cls):
4940 ## ndn-header-helper.h (module 'ndnSIM'): ns3::ndn::UnknownHeaderException::UnknownHeaderException() [constructor]
4941 cls.add_constructor([])
4942 ## ndn-header-helper.h (module 'ndnSIM'): ns3::ndn::UnknownHeaderException::UnknownHeaderException(ns3::ndn::UnknownHeaderException const & arg0) [copy constructor]
4943 cls.add_constructor([param('ns3::ndn::UnknownHeaderException const &', 'arg0')])
4944 return
4945
4946def register_Ns3NdnAppFace_methods(root_module, cls):
4947 ## ndn-app-face.h (module 'ndnSIM'): static ns3::TypeId ns3::ndn::AppFace::GetTypeId() [member function]
4948 cls.add_method('GetTypeId',
4949 'ns3::TypeId',
4950 [],
4951 is_static=True)
4952 ## ndn-app-face.h (module 'ndnSIM'): ns3::ndn::AppFace::AppFace(ns3::Ptr<ns3::ndn::App> app) [constructor]
4953 cls.add_constructor([param('ns3::Ptr< ns3::ndn::App >', 'app')])
4954 ## 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]
4955 cls.add_method('RegisterProtocolHandler',
4956 'void',
4957 [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')],
4958 is_virtual=True)
4959 ## ndn-app-face.h (module 'ndnSIM'): std::ostream & ns3::ndn::AppFace::Print(std::ostream & os) const [member function]
4960 cls.add_method('Print',
4961 'std::ostream &',
4962 [param('std::ostream &', 'os')],
4963 is_const=True, is_virtual=True)
4964 ## ndn-app-face.h (module 'ndnSIM'): bool ns3::ndn::AppFace::SendImpl(ns3::Ptr<ns3::Packet> p) [member function]
4965 cls.add_method('SendImpl',
4966 'bool',
4967 [param('ns3::Ptr< ns3::Packet >', 'p')],
4968 visibility='protected', is_virtual=True)
4969 return
4970
4971def register_Ns3NdnCsEntry_methods(root_module, cls):
4972 ## ndn-content-store.h (module 'ndnSIM'): ns3::ndn::cs::Entry::Entry(ns3::ndn::cs::Entry const & arg0) [copy constructor]
4973 cls.add_constructor([param('ns3::ndn::cs::Entry const &', 'arg0')])
4974 ## 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]
4975 cls.add_constructor([param('ns3::Ptr< ns3::ndn::ContentObjectHeader const >', 'header'), param('ns3::Ptr< ns3::Packet const >', 'packet')])
4976 ## ndn-content-store.h (module 'ndnSIM'): ns3::Ptr<ns3::Packet> ns3::ndn::cs::Entry::GetFullyFormedNdnPacket() const [member function]
4977 cls.add_method('GetFullyFormedNdnPacket',
4978 'ns3::Ptr< ns3::Packet >',
4979 [],
4980 is_const=True)
4981 ## ndn-content-store.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::ContentObjectHeader const> ns3::ndn::cs::Entry::GetHeader() const [member function]
4982 cls.add_method('GetHeader',
4983 'ns3::Ptr< ns3::ndn::ContentObjectHeader const >',
4984 [],
4985 is_const=True)
4986 ## ndn-content-store.h (module 'ndnSIM'): ns3::ndn::NameComponents const & ns3::ndn::cs::Entry::GetName() const [member function]
4987 cls.add_method('GetName',
4988 'ns3::ndn::NameComponents const &',
4989 [],
4990 is_const=True)
4991 ## ndn-content-store.h (module 'ndnSIM'): ns3::Ptr<const ns3::Packet> ns3::ndn::cs::Entry::GetPacket() const [member function]
4992 cls.add_method('GetPacket',
4993 'ns3::Ptr< ns3::Packet const >',
4994 [],
4995 is_const=True)
4996 return
4997
4998def register_Ns3NdnFibEntry_methods(root_module, cls):
4999 cls.add_output_stream_operator()
5000 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::Entry::Entry(ns3::ndn::fib::Entry const & arg0) [copy constructor]
5001 cls.add_constructor([param('ns3::ndn::fib::Entry const &', 'arg0')])
5002 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::Entry::Entry(ns3::Ptr<ns3::ndn::NameComponents const> const & prefix) [constructor]
5003 cls.add_constructor([param('ns3::Ptr< ns3::ndn::NameComponents const > const &', 'prefix')])
5004 ## ndn-fib-entry.h (module 'ndnSIM'): void ns3::ndn::fib::Entry::AddOrUpdateRoutingMetric(ns3::Ptr<ns3::ndn::Face> face, int32_t metric) [member function]
5005 cls.add_method('AddOrUpdateRoutingMetric',
5006 'void',
5007 [param('ns3::Ptr< ns3::ndn::Face >', 'face'), param('int32_t', 'metric')])
5008 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::FaceMetric const & ns3::ndn::fib::Entry::FindBestCandidate(uint32_t skip=0) const [member function]
5009 cls.add_method('FindBestCandidate',
5010 'ns3::ndn::fib::FaceMetric const &',
5011 [param('uint32_t', 'skip', default_value='0')],
5012 is_const=True)
5013 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::NameComponents const & ns3::ndn::fib::Entry::GetPrefix() const [member function]
5014 cls.add_method('GetPrefix',
5015 'ns3::ndn::NameComponents const &',
5016 [],
5017 is_const=True)
5018 ## ndn-fib-entry.h (module 'ndnSIM'): void ns3::ndn::fib::Entry::Invalidate() [member function]
5019 cls.add_method('Invalidate',
5020 'void',
5021 [])
5022 ## ndn-fib-entry.h (module 'ndnSIM'): void ns3::ndn::fib::Entry::RemoveFace(ns3::Ptr<ns3::ndn::Face> const & face) [member function]
5023 cls.add_method('RemoveFace',
5024 'void',
5025 [param('ns3::Ptr< ns3::ndn::Face > const &', 'face')])
5026 ## ndn-fib-entry.h (module 'ndnSIM'): void ns3::ndn::fib::Entry::UpdateFaceRtt(ns3::Ptr<ns3::ndn::Face> face, ns3::Time const & sample) [member function]
5027 cls.add_method('UpdateFaceRtt',
5028 'void',
5029 [param('ns3::Ptr< ns3::ndn::Face >', 'face'), param('ns3::Time const &', 'sample')])
5030 ## 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]
5031 cls.add_method('UpdateStatus',
5032 'void',
5033 [param('ns3::Ptr< ns3::ndn::Face >', 'face'), param('ns3::ndn::fib::FaceMetric::Status', 'status')])
5034 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::Entry::m_faces [variable]
5035 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)
5036 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::Entry::m_needsProbing [variable]
5037 cls.add_instance_attribute('m_needsProbing', 'bool', is_const=False)
5038 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::Entry::m_prefix [variable]
5039 cls.add_instance_attribute('m_prefix', 'ns3::Ptr< ns3::ndn::NameComponents const >', is_const=False)
5040 return
5041
5042def register_Ns3NdnFibEntryNoFaces_methods(root_module, cls):
5043 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::Entry::NoFaces::NoFaces() [constructor]
5044 cls.add_constructor([])
5045 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::Entry::NoFaces::NoFaces(ns3::ndn::fib::Entry::NoFaces const & arg0) [copy constructor]
5046 cls.add_constructor([param('ns3::ndn::fib::Entry::NoFaces const &', 'arg0')])
5047 return
5048
5049def register_Ns3NdnFibFaceMetric_methods(root_module, cls):
5050 cls.add_output_stream_operator()
5051 cls.add_binary_comparison_operator('<')
5052 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::FaceMetric::FaceMetric(ns3::ndn::fib::FaceMetric const & arg0) [copy constructor]
5053 cls.add_constructor([param('ns3::ndn::fib::FaceMetric const &', 'arg0')])
5054 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::FaceMetric::FaceMetric(ns3::Ptr<ns3::ndn::Face> face, int32_t cost) [constructor]
5055 cls.add_constructor([param('ns3::Ptr< ns3::ndn::Face >', 'face'), param('int32_t', 'cost')])
5056 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::Face> ns3::ndn::fib::FaceMetric::GetFace() const [member function]
5057 cls.add_method('GetFace',
5058 'ns3::Ptr< ns3::ndn::Face >',
5059 [],
5060 is_const=True)
5061 ## ndn-fib-entry.h (module 'ndnSIM'): void ns3::ndn::fib::FaceMetric::UpdateRtt(ns3::Time const & rttSample) [member function]
5062 cls.add_method('UpdateRtt',
5063 'void',
5064 [param('ns3::Time const &', 'rttSample')])
5065 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::FaceMetric::m_face [variable]
5066 cls.add_instance_attribute('m_face', 'ns3::Ptr< ns3::ndn::Face >', is_const=False)
5067 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::FaceMetric::m_routingCost [variable]
5068 cls.add_instance_attribute('m_routingCost', 'int32_t', is_const=False)
5069 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::FaceMetric::m_rttVar [variable]
5070 cls.add_instance_attribute('m_rttVar', 'ns3::Time', is_const=False)
5071 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::FaceMetric::m_sRtt [variable]
5072 cls.add_instance_attribute('m_sRtt', 'ns3::Time', is_const=False)
5073 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::FaceMetric::m_status [variable]
5074 cls.add_instance_attribute('m_status', 'ns3::ndn::fib::FaceMetric::Status', is_const=False)
5075 return
5076
5077def register_Ns3NdnFibFaceMetricContainer_methods(root_module, cls):
5078 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::FaceMetricContainer::FaceMetricContainer() [constructor]
5079 cls.add_constructor([])
5080 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::FaceMetricContainer::FaceMetricContainer(ns3::ndn::fib::FaceMetricContainer const & arg0) [copy constructor]
5081 cls.add_constructor([param('ns3::ndn::fib::FaceMetricContainer const &', 'arg0')])
5082 return
5083
5084def register_Ns3NdnFibI_face_methods(root_module, cls):
5085 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::i_face::i_face() [constructor]
5086 cls.add_constructor([])
5087 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::i_face::i_face(ns3::ndn::fib::i_face const & arg0) [copy constructor]
5088 cls.add_constructor([param('ns3::ndn::fib::i_face const &', 'arg0')])
5089 return
5090
5091def register_Ns3NdnFibI_metric_methods(root_module, cls):
5092 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::i_metric::i_metric() [constructor]
5093 cls.add_constructor([])
5094 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::i_metric::i_metric(ns3::ndn::fib::i_metric const & arg0) [copy constructor]
5095 cls.add_constructor([param('ns3::ndn::fib::i_metric const &', 'arg0')])
5096 return
5097
5098def register_Ns3NdnFibI_nth_methods(root_module, cls):
5099 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::i_nth::i_nth() [constructor]
5100 cls.add_constructor([])
5101 ## ndn-fib-entry.h (module 'ndnSIM'): ns3::ndn::fib::i_nth::i_nth(ns3::ndn::fib::i_nth const & arg0) [copy constructor]
5102 cls.add_constructor([param('ns3::ndn::fib::i_nth const &', 'arg0')])
5103 return
5104
5105def register_Ns3NdnPitEntry_methods(root_module, cls):
5106 cls.add_output_stream_operator()
5107 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::ndn::pit::Entry::Entry(ns3::ndn::pit::Entry const & arg0) [copy constructor]
5108 cls.add_constructor([param('ns3::ndn::pit::Entry const &', 'arg0')])
5109 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::ndn::pit::Entry::Entry(ns3::ndn::Pit & container, ns3::Ptr<const ns3::ndn::InterestHeader> header, ns3::Ptr<ns3::ndn::fib::Entry> fibEntry) [constructor]
5110 cls.add_constructor([param('ns3::ndn::Pit &', 'container'), param('ns3::Ptr< ns3::ndn::InterestHeader const >', 'header'), param('ns3::Ptr< ns3::ndn::fib::Entry >', 'fibEntry')])
5111 ## 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]
5112 cls.add_method('AddIncoming',
5113 'std::_Rb_tree_const_iterator< ns3::ndn::pit::IncomingFace >',
5114 [param('ns3::Ptr< ns3::ndn::Face >', 'face')],
5115 is_virtual=True)
5116 ## ndn-pit-entry.h (module 'ndnSIM'): boost::multi_index::detail::bidir_node_iterator<boost::multi_index::detail::ordered_index_node<boost::multi_index::detail::ordered_index_node<boost::multi_index::detail::index_node_base<ns3::ndn::pit::OutgoingFace, std::allocator<ns3::ndn::pit::OutgoingFace> > > > > ns3::ndn::pit::Entry::AddOutgoing(ns3::Ptr<ns3::ndn::Face> face) [member function]
5117 cls.add_method('AddOutgoing',
5118 'boost::multi_index::detail::bidir_node_iterator< boost::multi_index::detail::ordered_index_node< boost::multi_index::detail::ordered_index_node< boost::multi_index::detail::index_node_base< ns3::ndn::pit::OutgoingFace, std::allocator< ns3::ndn::pit::OutgoingFace > > > > >',
5119 [param('ns3::Ptr< ns3::ndn::Face >', 'face')],
5120 is_virtual=True)
5121 ## ndn-pit-entry.h (module 'ndnSIM'): void ns3::ndn::pit::Entry::AddSeenNonce(uint32_t nonce) [member function]
5122 cls.add_method('AddSeenNonce',
5123 'void',
5124 [param('uint32_t', 'nonce')],
5125 is_virtual=True)
5126 ## ndn-pit-entry.h (module 'ndnSIM'): bool ns3::ndn::pit::Entry::AreAllOutgoingInVain() const [member function]
5127 cls.add_method('AreAllOutgoingInVain',
5128 'bool',
5129 [],
5130 is_const=True)
5131 ## ndn-pit-entry.h (module 'ndnSIM'): bool ns3::ndn::pit::Entry::AreTherePromisingOutgoingFacesExcept(ns3::Ptr<ns3::ndn::Face> face) const [member function]
5132 cls.add_method('AreTherePromisingOutgoingFacesExcept',
5133 'bool',
5134 [param('ns3::Ptr< ns3::ndn::Face >', 'face')],
5135 is_const=True)
5136 ## ndn-pit-entry.h (module 'ndnSIM'): void ns3::ndn::pit::Entry::ClearIncoming() [member function]
5137 cls.add_method('ClearIncoming',
5138 'void',
5139 [],
5140 is_virtual=True)
5141 ## ndn-pit-entry.h (module 'ndnSIM'): void ns3::ndn::pit::Entry::ClearOutgoing() [member function]
5142 cls.add_method('ClearOutgoing',
5143 'void',
5144 [],
5145 is_virtual=True)
5146 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::Time const & ns3::ndn::pit::Entry::GetExpireTime() const [member function]
5147 cls.add_method('GetExpireTime',
5148 'ns3::Time const &',
5149 [],
5150 is_const=True)
5151 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::Ptr<ns3::ndn::fib::Entry> ns3::ndn::pit::Entry::GetFibEntry() [member function]
5152 cls.add_method('GetFibEntry',
5153 'ns3::Ptr< ns3::ndn::fib::Entry >',
5154 [])
5155 ## 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]
5156 cls.add_method('GetIncoming',
5157 'std::set< ns3::ndn::pit::IncomingFace > const &',
5158 [],
5159 is_const=True)
5160 ## ndn-pit-entry.h (module 'ndnSIM'): uint32_t ns3::ndn::pit::Entry::GetMaxRetxCount() const [member function]
5161 cls.add_method('GetMaxRetxCount',
5162 'uint32_t',
5163 [],
5164 is_const=True)
5165 ## ndn-pit-entry.h (module 'ndnSIM'): boost::multi_index::multi_index_container<ns3::ndn::pit::OutgoingFace, boost::multi_index::indexed_by<boost::multi_index::ordered_unique<boost::multi_index::tag<ns3::ndn::pit::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::pit::OutgoingFace, ns3::Ptr<ns3::ndn::Face>, &(ns3::ndn::pit::OutgoingFace::m_face)>, mpl_::na>, boost::multi_index::ordered_non_unique<boost::multi_index::tag<ns3::ndn::pit::i_retx, 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::pit::OutgoingFace, unsigned int, &(ns3::ndn::pit::OutgoingFace::m_retxCount)>, 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::pit::OutgoingFace> > const & ns3::ndn::pit::Entry::GetOutgoing() const [member function]
5166 cls.add_method('GetOutgoing',
5167 'boost::multi_index::multi_index_container< ns3::ndn::pit::OutgoingFace, boost::multi_index::indexed_by< boost::multi_index::ordered_unique< boost::multi_index::tag< ns3::ndn::pit::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::pit::OutgoingFace, ns3::Ptr< ns3::ndn::Face >, & ( ns3::ndn::pit::OutgoingFace::m_face ) >, mpl_::na >, boost::multi_index::ordered_non_unique< boost::multi_index::tag< ns3::ndn::pit::i_retx, 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::pit::OutgoingFace, unsigned int, & ( ns3::ndn::pit::OutgoingFace::m_retxCount ) >, 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::pit::OutgoingFace > > const &',
5168 [],
5169 is_const=True)
5170 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::ndn::NameComponents const & ns3::ndn::pit::Entry::GetPrefix() const [member function]
5171 cls.add_method('GetPrefix',
5172 'ns3::ndn::NameComponents const &',
5173 [],
5174 is_const=True)
5175 ## ndn-pit-entry.h (module 'ndnSIM'): void ns3::ndn::pit::Entry::IncreaseAllowedRetxCount() [member function]
5176 cls.add_method('IncreaseAllowedRetxCount',
5177 'void',
5178 [],
5179 is_virtual=True)
5180 ## ndn-pit-entry.h (module 'ndnSIM'): bool ns3::ndn::pit::Entry::IsNonceSeen(uint32_t nonce) const [member function]
5181 cls.add_method('IsNonceSeen',
5182 'bool',
5183 [param('uint32_t', 'nonce')],
5184 is_const=True)
5185 ## ndn-pit-entry.h (module 'ndnSIM'): void ns3::ndn::pit::Entry::RemoveAllReferencesToFace(ns3::Ptr<ns3::ndn::Face> face) [member function]
5186 cls.add_method('RemoveAllReferencesToFace',
5187 'void',
5188 [param('ns3::Ptr< ns3::ndn::Face >', 'face')],
5189 is_virtual=True)
5190 ## ndn-pit-entry.h (module 'ndnSIM'): void ns3::ndn::pit::Entry::RemoveIncoming(ns3::Ptr<ns3::ndn::Face> face) [member function]
5191 cls.add_method('RemoveIncoming',
5192 'void',
5193 [param('ns3::Ptr< ns3::ndn::Face >', 'face')],
5194 is_virtual=True)
5195 ## ndn-pit-entry.h (module 'ndnSIM'): void ns3::ndn::pit::Entry::SetWaitingInVain(ns3::Ptr<ns3::ndn::Face> face) [member function]
5196 cls.add_method('SetWaitingInVain',
5197 'void',
5198 [param('ns3::Ptr< ns3::ndn::Face >', 'face')],
5199 is_virtual=True)
5200 ## ndn-pit-entry.h (module 'ndnSIM'): void ns3::ndn::pit::Entry::UpdateLifetime(ns3::Time const & offsetTime) [member function]
5201 cls.add_method('UpdateLifetime',
5202 'void',
5203 [param('ns3::Time const &', 'offsetTime')],
5204 is_virtual=True)
5205 return
5206
5207def register_Ns3NdnPitIncomingFace_methods(root_module, cls):
5208 cls.add_binary_comparison_operator('==')
5209 cls.add_binary_comparison_operator('<')
5210 ## ndn-pit-entry-incoming-face.h (module 'ndnSIM'): ns3::ndn::pit::IncomingFace::IncomingFace(ns3::ndn::pit::IncomingFace const & arg0) [copy constructor]
5211 cls.add_constructor([param('ns3::ndn::pit::IncomingFace const &', 'arg0')])
5212 ## ndn-pit-entry-incoming-face.h (module 'ndnSIM'): ns3::ndn::pit::IncomingFace::IncomingFace(ns3::Ptr<ns3::ndn::Face> face) [constructor]
5213 cls.add_constructor([param('ns3::Ptr< ns3::ndn::Face >', 'face')])
5214 ## ndn-pit-entry-incoming-face.h (module 'ndnSIM'): ns3::ndn::pit::IncomingFace::IncomingFace() [constructor]
5215 cls.add_constructor([])
5216 ## ndn-pit-entry-incoming-face.h (module 'ndnSIM'): ns3::ndn::pit::IncomingFace::m_arrivalTime [variable]
5217 cls.add_instance_attribute('m_arrivalTime', 'ns3::Time', is_const=False)
5218 ## ndn-pit-entry-incoming-face.h (module 'ndnSIM'): ns3::ndn::pit::IncomingFace::m_face [variable]
5219 cls.add_instance_attribute('m_face', 'ns3::Ptr< ns3::ndn::Face >', is_const=False)
5220 return
5221
5222def register_Ns3NdnPitOutgoingFace_methods(root_module, cls):
5223 cls.add_binary_comparison_operator('==')
5224 cls.add_binary_comparison_operator('<')
5225 ## ndn-pit-entry-outgoing-face.h (module 'ndnSIM'): ns3::ndn::pit::OutgoingFace::OutgoingFace(ns3::ndn::pit::OutgoingFace const & arg0) [copy constructor]
5226 cls.add_constructor([param('ns3::ndn::pit::OutgoingFace const &', 'arg0')])
5227 ## ndn-pit-entry-outgoing-face.h (module 'ndnSIM'): ns3::ndn::pit::OutgoingFace::OutgoingFace(ns3::Ptr<ns3::ndn::Face> face) [constructor]
5228 cls.add_constructor([param('ns3::Ptr< ns3::ndn::Face >', 'face')])
5229 ## ndn-pit-entry-outgoing-face.h (module 'ndnSIM'): void ns3::ndn::pit::OutgoingFace::UpdateOnRetransmit() [member function]
5230 cls.add_method('UpdateOnRetransmit',
5231 'void',
5232 [])
5233 ## ndn-pit-entry-outgoing-face.h (module 'ndnSIM'): ns3::ndn::pit::OutgoingFace::m_face [variable]
5234 cls.add_instance_attribute('m_face', 'ns3::Ptr< ns3::ndn::Face >', is_const=False)
5235 ## ndn-pit-entry-outgoing-face.h (module 'ndnSIM'): ns3::ndn::pit::OutgoingFace::m_retxCount [variable]
5236 cls.add_instance_attribute('m_retxCount', 'uint32_t', is_const=False)
5237 ## ndn-pit-entry-outgoing-face.h (module 'ndnSIM'): ns3::ndn::pit::OutgoingFace::m_sendTime [variable]
5238 cls.add_instance_attribute('m_sendTime', 'ns3::Time', is_const=False)
5239 ## ndn-pit-entry-outgoing-face.h (module 'ndnSIM'): ns3::ndn::pit::OutgoingFace::m_waitingInVain [variable]
5240 cls.add_instance_attribute('m_waitingInVain', 'bool', is_const=False)
5241 return
5242
5243def register_Ns3NdnPitOutgoingFaceContainer_methods(root_module, cls):
5244 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::ndn::pit::OutgoingFaceContainer::OutgoingFaceContainer() [constructor]
5245 cls.add_constructor([])
5246 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::ndn::pit::OutgoingFaceContainer::OutgoingFaceContainer(ns3::ndn::pit::OutgoingFaceContainer const & arg0) [copy constructor]
5247 cls.add_constructor([param('ns3::ndn::pit::OutgoingFaceContainer const &', 'arg0')])
5248 return
5249
5250def register_Ns3NdnPitI_face_methods(root_module, cls):
5251 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::ndn::pit::i_face::i_face() [constructor]
5252 cls.add_constructor([])
5253 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::ndn::pit::i_face::i_face(ns3::ndn::pit::i_face const & arg0) [copy constructor]
5254 cls.add_constructor([param('ns3::ndn::pit::i_face const &', 'arg0')])
5255 return
5256
5257def register_Ns3NdnPitI_retx_methods(root_module, cls):
5258 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::ndn::pit::i_retx::i_retx() [constructor]
5259 cls.add_constructor([])
5260 ## ndn-pit-entry.h (module 'ndnSIM'): ns3::ndn::pit::i_retx::i_retx(ns3::ndn::pit::i_retx const & arg0) [copy constructor]
5261 cls.add_constructor([param('ns3::ndn::pit::i_retx const &', 'arg0')])
5262 return
5263
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08005264def register_functions(root_module):
5265 module = root_module
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07005266 ## batches.h (module 'ndnSIM'): extern ns3::Ptr<ns3::AttributeChecker const> ns3::MakeBatchesChecker() [free function]
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08005267 module.add_function('MakeBatchesChecker',
5268 'ns3::Ptr< ns3::AttributeChecker const >',
5269 [])
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08005270 register_functions_ns3_FatalImpl(module.get_submodule('FatalImpl'), root_module)
5271 register_functions_ns3_internal(module.get_submodule('internal'), root_module)
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005272 register_functions_ns3_ndn(module.get_submodule('ndn'), root_module)
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08005273 return
5274
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08005275def register_functions_ns3_FatalImpl(module, root_module):
5276 return
5277
5278def register_functions_ns3_internal(module, root_module):
5279 return
5280
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -07005281def register_functions_ns3_ndn(module, root_module):
5282 ## ndn-name-components.h (module 'ndnSIM'): extern ns3::Ptr<ns3::AttributeChecker const> ns3::ndn::MakeNameComponentsChecker() [free function]
5283 module.add_function('MakeNameComponentsChecker',
5284 'ns3::Ptr< ns3::AttributeChecker const >',
5285 [])
5286 register_functions_ns3_ndn_cs(module.get_submodule('cs'), root_module)
5287 register_functions_ns3_ndn_fib(module.get_submodule('fib'), root_module)
5288 register_functions_ns3_ndn_pit(module.get_submodule('pit'), root_module)
5289 return
5290
5291def register_functions_ns3_ndn_cs(module, root_module):
5292 return
5293
5294def register_functions_ns3_ndn_fib(module, root_module):
5295 return
5296
5297def register_functions_ns3_ndn_pit(module, root_module):
5298 return
5299
Alexander Afanasyevaa032ea2011-12-13 12:38:32 -08005300def main():
5301 out = FileCodeSink(sys.stdout)
5302 root_module = module_init()
5303 register_types(root_module)
5304 register_methods(root_module)
5305 register_functions(root_module)
5306 root_module.generate(out)
5307
5308if __name__ == '__main__':
5309 main()
5310