blob: d32539405f354fd7688ff1cd2eb28d66b8b10db9 [file] [log] [blame]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07001from pybindgen import Module, FileCodeSink, param, retval, cppclass, typehandlers
2
3
4import pybindgen.settings
5import warnings
6
7class ErrorHandler(pybindgen.settings.ErrorHandler):
8 def handle_error(self, wrapper, exception, traceback_):
9 warnings.warn("exception %r in wrapper %s" % (exception, wrapper))
10 return True
11pybindgen.settings.error_handler = ErrorHandler()
12
13
14import sys
15
16def module_init():
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -070017 root_module = Module('ns.ndnSIM', cpp_namespace='::ns3')
Alexander Afanasyev381dea02011-11-03 08:33:26 -070018 return root_module
19
20def register_types(module):
21 root_module = module.get_root()
22
Alexander Afanasyev381dea02011-11-03 08:33:26 -070023 ## address.h (module 'network'): ns3::Address [class]
24 module.add_class('Address', import_from_module='ns.network')
25 ## address.h (module 'network'): ns3::Address::MaxSize_e [enumeration]
26 module.add_enum('MaxSize_e', ['MAX_SIZE'], outer_class=root_module['ns3::Address'], import_from_module='ns.network')
27 ## application-container.h (module 'network'): ns3::ApplicationContainer [class]
28 module.add_class('ApplicationContainer', import_from_module='ns.network')
Alexander Afanasyev381dea02011-11-03 08:33:26 -070029 ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList [class]
30 module.add_class('AttributeConstructionList', import_from_module='ns.core')
31 ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item [struct]
32 module.add_class('Item', import_from_module='ns.core', outer_class=root_module['ns3::AttributeConstructionList'])
33 ## buffer.h (module 'network'): ns3::Buffer [class]
34 module.add_class('Buffer', import_from_module='ns.network')
35 ## buffer.h (module 'network'): ns3::Buffer::Iterator [class]
36 module.add_class('Iterator', import_from_module='ns.network', outer_class=root_module['ns3::Buffer'])
37 ## packet.h (module 'network'): ns3::ByteTagIterator [class]
38 module.add_class('ByteTagIterator', import_from_module='ns.network')
39 ## packet.h (module 'network'): ns3::ByteTagIterator::Item [class]
40 module.add_class('Item', import_from_module='ns.network', outer_class=root_module['ns3::ByteTagIterator'])
41 ## byte-tag-list.h (module 'network'): ns3::ByteTagList [class]
42 module.add_class('ByteTagList', import_from_module='ns.network')
43 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator [class]
44 module.add_class('Iterator', import_from_module='ns.network', outer_class=root_module['ns3::ByteTagList'])
45 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item [struct]
46 module.add_class('Item', import_from_module='ns.network', outer_class=root_module['ns3::ByteTagList::Iterator'])
47 ## callback.h (module 'core'): ns3::CallbackBase [class]
48 module.add_class('CallbackBase', import_from_module='ns.core')
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -070049 ## ccnx-app-helper.h (module 'ndnSIM'): ns3::CcnxAppHelper [class]
Alexander Afanasyev4975f732011-12-20 17:52:19 -080050 module.add_class('CcnxAppHelper')
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -070051 ## ccnx-content-object-header.h (module 'ndnSIM'): ns3::CcnxContentObjectHeaderException [class]
Alexander Afanasyev381dea02011-11-03 08:33:26 -070052 module.add_class('CcnxContentObjectHeaderException')
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -070053 ## ccnx-fib.h (module 'ndnSIM'): ns3::CcnxFibEntry [class]
Alexander Afanasyev8e2f1122012-04-17 15:01:11 -070054 module.add_class('CcnxFibEntry')
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -070055 ## ccnx-fib.h (module 'ndnSIM'): ns3::CcnxFibEntry::NoFaces [class]
Alexander Afanasyev8e2f1122012-04-17 15:01:11 -070056 module.add_class('NoFaces', outer_class=root_module['ns3::CcnxFibEntry'])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -070057 ## ccnx-fib.h (module 'ndnSIM'): ns3::CcnxFibEntryContainer [struct]
Alexander Afanasyev381dea02011-11-03 08:33:26 -070058 module.add_class('CcnxFibEntryContainer')
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -070059 ## ccnx-fib.h (module 'ndnSIM'): ns3::CcnxFibFaceMetric [class]
Alexander Afanasyev381dea02011-11-03 08:33:26 -070060 module.add_class('CcnxFibFaceMetric')
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -070061 ## ccnx-fib.h (module 'ndnSIM'): ns3::CcnxFibFaceMetric::Status [enumeration]
Alexander Afanasyev381dea02011-11-03 08:33:26 -070062 module.add_enum('Status', ['NDN_FIB_GREEN', 'NDN_FIB_YELLOW', 'NDN_FIB_RED'], outer_class=root_module['ns3::CcnxFibFaceMetric'])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -070063 ## ccnx-fib.h (module 'ndnSIM'): ns3::CcnxFibFaceMetricContainer [struct]
Alexander Afanasyev381dea02011-11-03 08:33:26 -070064 module.add_class('CcnxFibFaceMetricContainer')
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -070065 ## ccnx-global-routing-helper.h (module 'ndnSIM'): ns3::CcnxGlobalRoutingHelper [class]
Alexander Afanasyev8e2f1122012-04-17 15:01:11 -070066 module.add_class('CcnxGlobalRoutingHelper')
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -070067 ## ccnx-header-helper.h (module 'ndnSIM'): ns3::CcnxHeaderHelper [class]
Alexander Afanasyev53872ce2011-12-16 13:17:18 -080068 module.add_class('CcnxHeaderHelper')
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -070069 ## ccnx-header-helper.h (module 'ndnSIM'): ns3::CcnxHeaderHelper::Type [enumeration]
Alexander Afanasyev53872ce2011-12-16 13:17:18 -080070 module.add_enum('Type', ['INTEREST', 'CONTENT_OBJECT'], outer_class=root_module['ns3::CcnxHeaderHelper'])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -070071 ## ccnx-interest-header.h (module 'ndnSIM'): ns3::CcnxInterestHeaderException [class]
Alexander Afanasyev381dea02011-11-03 08:33:26 -070072 module.add_class('CcnxInterestHeaderException')
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -070073 ## ccnx-pit-entry.h (module 'ndnSIM'): ns3::CcnxPitEntry [struct]
Alexander Afanasyevad5acce2012-05-31 12:43:08 -070074 module.add_class('CcnxPitEntry')
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -070075 ## ccnx-pit.h (module 'ndnSIM'): ns3::CcnxPitEntryContainer [struct]
Alexander Afanasyevad5acce2012-05-31 12:43:08 -070076 module.add_class('CcnxPitEntryContainer')
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -070077 ## ccnx-pit-entry-incoming-face.h (module 'ndnSIM'): ns3::CcnxPitEntryIncomingFace [struct]
Alexander Afanasyevad5acce2012-05-31 12:43:08 -070078 module.add_class('CcnxPitEntryIncomingFace')
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -070079 ## ccnx-pit-entry.h (module 'ndnSIM'): ns3::CcnxPitEntryIncomingFaceContainer [struct]
Alexander Afanasyevad5acce2012-05-31 12:43:08 -070080 module.add_class('CcnxPitEntryIncomingFaceContainer')
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -070081 ## ccnx-pit.h (module 'ndnSIM'): ns3::CcnxPitEntryNotFound [class]
Alexander Afanasyevad5acce2012-05-31 12:43:08 -070082 module.add_class('CcnxPitEntryNotFound')
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -070083 ## ccnx-pit-entry-outgoing-face.h (module 'ndnSIM'): ns3::CcnxPitEntryOutgoingFace [struct]
Alexander Afanasyevad5acce2012-05-31 12:43:08 -070084 module.add_class('CcnxPitEntryOutgoingFace')
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -070085 ## ccnx-pit-entry.h (module 'ndnSIM'): ns3::CcnxPitEntryOutgoingFaceContainer [struct]
Alexander Afanasyevad5acce2012-05-31 12:43:08 -070086 module.add_class('CcnxPitEntryOutgoingFaceContainer')
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -070087 ## ccnx-stack-helper.h (module 'ndnSIM'): ns3::CcnxStackHelper [class]
Alexander Afanasyev07827182011-12-13 01:07:32 -080088 module.add_class('CcnxStackHelper')
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -070089 ## ccnx-header-helper.h (module 'ndnSIM'): ns3::CcnxUnknownHeaderException [class]
Alexander Afanasyev53872ce2011-12-16 13:17:18 -080090 module.add_class('CcnxUnknownHeaderException')
Alexander Afanasyev381dea02011-11-03 08:33:26 -070091 ## event-id.h (module 'core'): ns3::EventId [class]
92 module.add_class('EventId', import_from_module='ns.core')
93 ## ipv4-address.h (module 'network'): ns3::Ipv4Address [class]
94 module.add_class('Ipv4Address', import_from_module='ns.network')
95 ## ipv4-address.h (module 'network'): ns3::Ipv4Address [class]
96 root_module['ns3::Ipv4Address'].implicitly_converts_to(root_module['ns3::Address'])
97 ## ipv4-address.h (module 'network'): ns3::Ipv4Mask [class]
98 module.add_class('Ipv4Mask', import_from_module='ns.network')
99 ## ipv6-address.h (module 'network'): ns3::Ipv6Address [class]
100 module.add_class('Ipv6Address', import_from_module='ns.network')
101 ## ipv6-address.h (module 'network'): ns3::Ipv6Address [class]
102 root_module['ns3::Ipv6Address'].implicitly_converts_to(root_module['ns3::Address'])
103 ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix [class]
104 module.add_class('Ipv6Prefix', import_from_module='ns.network')
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700105 ## node-container.h (module 'network'): ns3::NodeContainer [class]
106 module.add_class('NodeContainer', import_from_module='ns.network')
107 ## object-base.h (module 'core'): ns3::ObjectBase [class]
108 module.add_class('ObjectBase', allow_subclassing=True, import_from_module='ns.core')
109 ## object.h (module 'core'): ns3::ObjectDeleter [struct]
110 module.add_class('ObjectDeleter', import_from_module='ns.core')
111 ## object-factory.h (module 'core'): ns3::ObjectFactory [class]
112 module.add_class('ObjectFactory', import_from_module='ns.core')
113 ## packet-metadata.h (module 'network'): ns3::PacketMetadata [class]
114 module.add_class('PacketMetadata', import_from_module='ns.network')
115 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item [struct]
116 module.add_class('Item', import_from_module='ns.network', outer_class=root_module['ns3::PacketMetadata'])
117 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item [enumeration]
118 module.add_enum('', ['PAYLOAD', 'HEADER', 'TRAILER'], outer_class=root_module['ns3::PacketMetadata::Item'], import_from_module='ns.network')
119 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::ItemIterator [class]
120 module.add_class('ItemIterator', import_from_module='ns.network', outer_class=root_module['ns3::PacketMetadata'])
Alexander Afanasyevad5acce2012-05-31 12:43:08 -0700121 ## packet.h (module 'network'): ns3::PacketTagIterator [class]
122 module.add_class('PacketTagIterator', import_from_module='ns.network')
123 ## packet.h (module 'network'): ns3::PacketTagIterator::Item [class]
124 module.add_class('Item', import_from_module='ns.network', outer_class=root_module['ns3::PacketTagIterator'])
125 ## packet-tag-list.h (module 'network'): ns3::PacketTagList [class]
126 module.add_class('PacketTagList', import_from_module='ns.network')
127 ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData [struct]
128 module.add_class('TagData', import_from_module='ns.network', outer_class=root_module['ns3::PacketTagList'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700129 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter> [class]
130 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 -0700131 ## tag.h (module 'network'): ns3::Tag [class]
132 module.add_class('Tag', import_from_module='ns.network', parent=root_module['ns3::ObjectBase'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700133 ## tag-buffer.h (module 'network'): ns3::TagBuffer [class]
134 module.add_class('TagBuffer', import_from_module='ns.network')
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700135 ## type-id.h (module 'core'): ns3::TypeId [class]
136 module.add_class('TypeId', import_from_module='ns.core')
137 ## type-id.h (module 'core'): ns3::TypeId::AttributeFlag [enumeration]
138 module.add_enum('AttributeFlag', ['ATTR_GET', 'ATTR_SET', 'ATTR_CONSTRUCT', 'ATTR_SGC'], outer_class=root_module['ns3::TypeId'], import_from_module='ns.core')
139 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation [struct]
140 module.add_class('AttributeInformation', import_from_module='ns.core', outer_class=root_module['ns3::TypeId'])
141 ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation [struct]
142 module.add_class('TraceSourceInformation', import_from_module='ns.core', outer_class=root_module['ns3::TypeId'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700143 ## empty.h (module 'core'): ns3::empty [class]
144 module.add_class('empty', import_from_module='ns.core')
145 ## int64x64-double.h (module 'core'): ns3::int64x64_t [class]
146 module.add_class('int64x64_t', import_from_module='ns.core')
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700147 ## chunk.h (module 'network'): ns3::Chunk [class]
Alexander Afanasyev4756b892012-04-18 14:48:43 -0700148 module.add_class('Chunk', import_from_module='ns.network', parent=root_module['ns3::ObjectBase'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700149 ## header.h (module 'network'): ns3::Header [class]
150 module.add_class('Header', import_from_module='ns.network', parent=root_module['ns3::Chunk'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700151 ## object.h (module 'core'): ns3::Object [class]
152 module.add_class('Object', import_from_module='ns.core', parent=root_module['ns3::SimpleRefCount< ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter >'])
153 ## object.h (module 'core'): ns3::Object::AggregateIterator [class]
154 module.add_class('AggregateIterator', import_from_module='ns.core', outer_class=root_module['ns3::Object'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700155 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> > [class]
156 module.add_class('SimpleRefCount', automatic_type_narrowing=True, import_from_module='ns.core', template_parameters=['ns3::AttributeAccessor', 'ns3::empty', 'ns3::DefaultDeleter<ns3::AttributeAccessor>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
157 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter<ns3::AttributeChecker> > [class]
158 module.add_class('SimpleRefCount', automatic_type_narrowing=True, import_from_module='ns.core', template_parameters=['ns3::AttributeChecker', 'ns3::empty', 'ns3::DefaultDeleter<ns3::AttributeChecker>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
159 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter<ns3::AttributeValue> > [class]
160 module.add_class('SimpleRefCount', automatic_type_narrowing=True, import_from_module='ns.core', template_parameters=['ns3::AttributeValue', 'ns3::empty', 'ns3::DefaultDeleter<ns3::AttributeValue>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
161 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> > [class]
162 module.add_class('SimpleRefCount', automatic_type_narrowing=True, import_from_module='ns.core', template_parameters=['ns3::CallbackImplBase', 'ns3::empty', 'ns3::DefaultDeleter<ns3::CallbackImplBase>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
Alexander Afanasyev4756b892012-04-18 14:48:43 -0700163 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CcnxContentObjectHeader, ns3::Header, ns3::DefaultDeleter<ns3::CcnxContentObjectHeader> > [class]
164 module.add_class('SimpleRefCount', automatic_type_narrowing=True, template_parameters=['ns3::CcnxContentObjectHeader', 'ns3::Header', 'ns3::DefaultDeleter<ns3::CcnxContentObjectHeader>'], parent=root_module['ns3::Header'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700165 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CcnxFaceContainer, ns3::empty, ns3::DefaultDeleter<ns3::CcnxFaceContainer> > [class]
166 module.add_class('SimpleRefCount', automatic_type_narrowing=True, template_parameters=['ns3::CcnxFaceContainer', 'ns3::empty', 'ns3::DefaultDeleter<ns3::CcnxFaceContainer>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
Alexander Afanasyev4756b892012-04-18 14:48:43 -0700167 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CcnxInterestHeader, ns3::Header, ns3::DefaultDeleter<ns3::CcnxInterestHeader> > [class]
168 module.add_class('SimpleRefCount', automatic_type_narrowing=True, import_from_module='ns.core', template_parameters=['ns3::CcnxInterestHeader', 'ns3::Header', 'ns3::DefaultDeleter<ns3::CcnxInterestHeader>'], parent=root_module['ns3::Header'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700169 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CcnxNameComponents, ns3::empty, ns3::DefaultDeleter<ns3::CcnxNameComponents> > [class]
170 module.add_class('SimpleRefCount', automatic_type_narrowing=True, template_parameters=['ns3::CcnxNameComponents', 'ns3::empty', 'ns3::DefaultDeleter<ns3::CcnxNameComponents>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700171 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::EventImpl, ns3::empty, ns3::DefaultDeleter<ns3::EventImpl> > [class]
172 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'))
173 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::NixVector, ns3::empty, ns3::DefaultDeleter<ns3::NixVector> > [class]
174 module.add_class('SimpleRefCount', automatic_type_narrowing=True, import_from_module='ns.core', template_parameters=['ns3::NixVector', 'ns3::empty', 'ns3::DefaultDeleter<ns3::NixVector>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700175 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Packet, ns3::empty, ns3::DefaultDeleter<ns3::Packet> > [class]
176 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'))
177 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter<ns3::TraceSourceAccessor> > [class]
178 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 Afanasyev381dea02011-11-03 08:33:26 -0700179 ## nstime.h (module 'core'): ns3::Time [class]
180 module.add_class('Time', import_from_module='ns.core')
181 ## nstime.h (module 'core'): ns3::Time::Unit [enumeration]
182 module.add_enum('Unit', ['S', 'MS', 'US', 'NS', 'PS', 'FS', 'LAST'], outer_class=root_module['ns3::Time'], import_from_module='ns.core')
183 ## nstime.h (module 'core'): ns3::Time [class]
184 root_module['ns3::Time'].implicitly_converts_to(root_module['ns3::int64x64_t'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700185 ## trace-source-accessor.h (module 'core'): ns3::TraceSourceAccessor [class]
186 module.add_class('TraceSourceAccessor', import_from_module='ns.core', parent=root_module['ns3::SimpleRefCount< ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter<ns3::TraceSourceAccessor> >'])
187 ## trailer.h (module 'network'): ns3::Trailer [class]
188 module.add_class('Trailer', import_from_module='ns.network', parent=root_module['ns3::Chunk'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700189 ## application.h (module 'network'): ns3::Application [class]
190 module.add_class('Application', import_from_module='ns.network', parent=root_module['ns3::Object'])
191 ## attribute.h (module 'core'): ns3::AttributeAccessor [class]
192 module.add_class('AttributeAccessor', import_from_module='ns.core', parent=root_module['ns3::SimpleRefCount< ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> >'])
193 ## attribute.h (module 'core'): ns3::AttributeChecker [class]
194 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> >'])
195 ## attribute.h (module 'core'): ns3::AttributeValue [class]
196 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 -0700197 ## batches.h (module 'ndnSIM'): ns3::BatchesChecker [class]
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -0800198 module.add_class('BatchesChecker', parent=root_module['ns3::AttributeChecker'])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -0700199 ## batches.h (module 'ndnSIM'): ns3::BatchesValue [class]
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -0800200 module.add_class('BatchesValue', parent=root_module['ns3::AttributeValue'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700201 ## callback.h (module 'core'): ns3::CallbackChecker [class]
202 module.add_class('CallbackChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker'])
203 ## callback.h (module 'core'): ns3::CallbackImplBase [class]
204 module.add_class('CallbackImplBase', import_from_module='ns.core', parent=root_module['ns3::SimpleRefCount< ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> >'])
205 ## callback.h (module 'core'): ns3::CallbackValue [class]
206 module.add_class('CallbackValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -0700207 ## ccnx.h (module 'ndnSIM'): ns3::Ccnx [class]
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700208 module.add_class('Ccnx', parent=root_module['ns3::Object'])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -0700209 ## ccnx.h (module 'ndnSIM'): ns3::Ccnx::DropReason [enumeration]
Alexander Afanasyev8f5a9bb2011-12-18 19:49:02 -0800210 module.add_enum('DropReason', ['DUPLICATED', 'SUPPRESSED', 'NO_FACES', 'NON_DUPLICATED', 'AFTER_SATISFIED', 'UNSOLICITED'], outer_class=root_module['ns3::Ccnx'])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -0700211 ## ccnx-app.h (module 'ndnSIM'): ns3::CcnxApp [class]
Alexander Afanasyev07827182011-12-13 01:07:32 -0800212 module.add_class('CcnxApp', parent=root_module['ns3::Application'])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -0700213 ## ccnx-content-object-header.h (module 'ndnSIM'): ns3::CcnxContentObjectHeader [class]
Alexander Afanasyev4756b892012-04-18 14:48:43 -0700214 module.add_class('CcnxContentObjectHeader', parent=root_module['ns3::SimpleRefCount< ns3::CcnxContentObjectHeader, ns3::Header, ns3::DefaultDeleter<ns3::CcnxContentObjectHeader> >'])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -0700215 ## ccnx-content-object-header.h (module 'ndnSIM'): ns3::CcnxContentObjectHeader::ContentType [enumeration]
216 module.add_enum('ContentType', ['DATA', 'ENCR', 'GONE', 'KEY', 'LINK', 'NACK'], outer_class=root_module['ns3::CcnxContentObjectHeader'])
217 ## ccnx-content-object-header.h (module 'ndnSIM'): ns3::CcnxContentObjectHeader::Signature [class]
218 module.add_class('Signature', outer_class=root_module['ns3::CcnxContentObjectHeader'])
219 ## ccnx-content-object-header.h (module 'ndnSIM'): ns3::CcnxContentObjectHeader::SignedInfo [class]
Alexander Afanasyev9568f952012-04-05 16:09:14 -0700220 module.add_class('SignedInfo', outer_class=root_module['ns3::CcnxContentObjectHeader'])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -0700221 ## ccnx-content-object-header.h (module 'ndnSIM'): ns3::CcnxContentObjectTail [class]
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700222 module.add_class('CcnxContentObjectTail', parent=root_module['ns3::Trailer'])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -0700223 ## ccnx-face.h (module 'ndnSIM'): ns3::CcnxFace [class]
Alexander Afanasyev53872ce2011-12-16 13:17:18 -0800224 module.add_class('CcnxFace', parent=root_module['ns3::Object'])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -0700225 ## ccnx-face-container.h (module 'ndnSIM'): ns3::CcnxFaceContainer [class]
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700226 module.add_class('CcnxFaceContainer', parent=root_module['ns3::SimpleRefCount< ns3::CcnxFaceContainer, ns3::empty, ns3::DefaultDeleter<ns3::CcnxFaceContainer> >'])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -0700227 ## ccnx-fib.h (module 'ndnSIM'): ns3::CcnxFib [class]
Alexander Afanasyev07827182011-12-13 01:07:32 -0800228 module.add_class('CcnxFib', parent=root_module['ns3::Object'])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -0700229 ## ccnx-interest-header.h (module 'ndnSIM'): ns3::CcnxInterestHeader [class]
Alexander Afanasyev4756b892012-04-18 14:48:43 -0700230 module.add_class('CcnxInterestHeader', parent=root_module['ns3::SimpleRefCount< ns3::CcnxInterestHeader, ns3::Header, ns3::DefaultDeleter<ns3::CcnxInterestHeader> >'])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -0700231 ## ccnx-interest-header.h (module 'ndnSIM'): ns3::CcnxInterestHeader [enumeration]
Alexander Afanasyev07827182011-12-13 01:07:32 -0800232 module.add_enum('', ['NORMAL_INTEREST', 'NACK_LOOP', 'NACK_CONGESTION', 'NACK_GIVEUP_PIT'], outer_class=root_module['ns3::CcnxInterestHeader'])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -0700233 ## ccnx-name-components.h (module 'ndnSIM'): ns3::CcnxNameComponents [class]
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700234 module.add_class('CcnxNameComponents', parent=root_module['ns3::SimpleRefCount< ns3::CcnxNameComponents, ns3::empty, ns3::DefaultDeleter<ns3::CcnxNameComponents> >'])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -0700235 ## ccnx-name-components.h (module 'ndnSIM'): ns3::CcnxNameComponentsChecker [class]
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700236 module.add_class('CcnxNameComponentsChecker', parent=root_module['ns3::AttributeChecker'])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -0700237 ## ccnx-name-components.h (module 'ndnSIM'): ns3::CcnxNameComponentsValue [class]
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700238 module.add_class('CcnxNameComponentsValue', parent=root_module['ns3::AttributeValue'])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -0700239 ## ccnx-net-device-face.h (module 'ndnSIM'): ns3::CcnxNetDeviceFace [class]
240 module.add_class('CcnxNetDeviceFace', parent=root_module['ns3::CcnxFace'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700241 ## attribute.h (module 'core'): ns3::EmptyAttributeValue [class]
242 module.add_class('EmptyAttributeValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
243 ## event-impl.h (module 'core'): ns3::EventImpl [class]
244 module.add_class('EventImpl', import_from_module='ns.core', parent=root_module['ns3::SimpleRefCount< ns3::EventImpl, ns3::empty, ns3::DefaultDeleter<ns3::EventImpl> >'])
245 ## integer.h (module 'core'): ns3::IntegerValue [class]
246 module.add_class('IntegerValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
247 ## ipv4-address.h (module 'network'): ns3::Ipv4AddressChecker [class]
248 module.add_class('Ipv4AddressChecker', import_from_module='ns.network', parent=root_module['ns3::AttributeChecker'])
249 ## ipv4-address.h (module 'network'): ns3::Ipv4AddressValue [class]
250 module.add_class('Ipv4AddressValue', import_from_module='ns.network', parent=root_module['ns3::AttributeValue'])
251 ## ipv4-address.h (module 'network'): ns3::Ipv4MaskChecker [class]
252 module.add_class('Ipv4MaskChecker', import_from_module='ns.network', parent=root_module['ns3::AttributeChecker'])
253 ## ipv4-address.h (module 'network'): ns3::Ipv4MaskValue [class]
254 module.add_class('Ipv4MaskValue', import_from_module='ns.network', parent=root_module['ns3::AttributeValue'])
255 ## ipv6-address.h (module 'network'): ns3::Ipv6AddressChecker [class]
256 module.add_class('Ipv6AddressChecker', import_from_module='ns.network', parent=root_module['ns3::AttributeChecker'])
257 ## ipv6-address.h (module 'network'): ns3::Ipv6AddressValue [class]
258 module.add_class('Ipv6AddressValue', import_from_module='ns.network', parent=root_module['ns3::AttributeValue'])
259 ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixChecker [class]
260 module.add_class('Ipv6PrefixChecker', import_from_module='ns.network', parent=root_module['ns3::AttributeChecker'])
261 ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixValue [class]
262 module.add_class('Ipv6PrefixValue', import_from_module='ns.network', parent=root_module['ns3::AttributeValue'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700263 ## net-device.h (module 'network'): ns3::NetDevice [class]
264 module.add_class('NetDevice', import_from_module='ns.network', parent=root_module['ns3::Object'])
265 ## net-device.h (module 'network'): ns3::NetDevice::PacketType [enumeration]
266 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')
267 ## nix-vector.h (module 'network'): ns3::NixVector [class]
268 module.add_class('NixVector', import_from_module='ns.network', parent=root_module['ns3::SimpleRefCount< ns3::NixVector, ns3::empty, ns3::DefaultDeleter<ns3::NixVector> >'])
269 ## node.h (module 'network'): ns3::Node [class]
270 module.add_class('Node', import_from_module='ns.network', parent=root_module['ns3::Object'])
271 ## object-factory.h (module 'core'): ns3::ObjectFactoryChecker [class]
272 module.add_class('ObjectFactoryChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker'])
273 ## object-factory.h (module 'core'): ns3::ObjectFactoryValue [class]
274 module.add_class('ObjectFactoryValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700275 ## packet.h (module 'network'): ns3::Packet [class]
276 module.add_class('Packet', import_from_module='ns.network', parent=root_module['ns3::SimpleRefCount< ns3::Packet, ns3::empty, ns3::DefaultDeleter<ns3::Packet> >'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700277 ## nstime.h (module 'core'): ns3::TimeChecker [class]
278 module.add_class('TimeChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker'])
279 ## nstime.h (module 'core'): ns3::TimeValue [class]
280 module.add_class('TimeValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
281 ## type-id.h (module 'core'): ns3::TypeIdChecker [class]
282 module.add_class('TypeIdChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker'])
283 ## type-id.h (module 'core'): ns3::TypeIdValue [class]
284 module.add_class('TypeIdValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700285 ## address.h (module 'network'): ns3::AddressChecker [class]
286 module.add_class('AddressChecker', import_from_module='ns.network', parent=root_module['ns3::AttributeChecker'])
287 ## address.h (module 'network'): ns3::AddressValue [class]
288 module.add_class('AddressValue', import_from_module='ns.network', parent=root_module['ns3::AttributeValue'])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -0700289 ## ccnx-app-face.h (module 'ndnSIM'): ns3::CcnxAppFace [class]
290 module.add_class('CcnxAppFace', parent=root_module['ns3::CcnxFace'])
Alexander Afanasyevad5acce2012-05-31 12:43:08 -0700291 module.add_container('std::set< unsigned int >', 'unsigned int', container_type='set')
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700292 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')
293 module.add_container('std::list< std::string >', 'std::string', container_type='list')
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700294
295 ## Register a nested module for the namespace FatalImpl
296
297 nested_module = module.add_cpp_namespace('FatalImpl')
298 register_types_ns3_FatalImpl(nested_module)
299
300
301 ## Register a nested module for the namespace internal
302
303 nested_module = module.add_cpp_namespace('internal')
304 register_types_ns3_internal(nested_module)
305
306
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700307def register_types_ns3_FatalImpl(module):
308 root_module = module.get_root()
309
310
311def register_types_ns3_internal(module):
312 root_module = module.get_root()
313
314
315def register_methods(root_module):
316 register_Ns3Address_methods(root_module, root_module['ns3::Address'])
317 register_Ns3ApplicationContainer_methods(root_module, root_module['ns3::ApplicationContainer'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700318 register_Ns3AttributeConstructionList_methods(root_module, root_module['ns3::AttributeConstructionList'])
319 register_Ns3AttributeConstructionListItem_methods(root_module, root_module['ns3::AttributeConstructionList::Item'])
320 register_Ns3Buffer_methods(root_module, root_module['ns3::Buffer'])
321 register_Ns3BufferIterator_methods(root_module, root_module['ns3::Buffer::Iterator'])
322 register_Ns3ByteTagIterator_methods(root_module, root_module['ns3::ByteTagIterator'])
323 register_Ns3ByteTagIteratorItem_methods(root_module, root_module['ns3::ByteTagIterator::Item'])
324 register_Ns3ByteTagList_methods(root_module, root_module['ns3::ByteTagList'])
325 register_Ns3ByteTagListIterator_methods(root_module, root_module['ns3::ByteTagList::Iterator'])
326 register_Ns3ByteTagListIteratorItem_methods(root_module, root_module['ns3::ByteTagList::Iterator::Item'])
327 register_Ns3CallbackBase_methods(root_module, root_module['ns3::CallbackBase'])
Alexander Afanasyev4975f732011-12-20 17:52:19 -0800328 register_Ns3CcnxAppHelper_methods(root_module, root_module['ns3::CcnxAppHelper'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700329 register_Ns3CcnxContentObjectHeaderException_methods(root_module, root_module['ns3::CcnxContentObjectHeaderException'])
Alexander Afanasyev8e2f1122012-04-17 15:01:11 -0700330 register_Ns3CcnxFibEntry_methods(root_module, root_module['ns3::CcnxFibEntry'])
331 register_Ns3CcnxFibEntryNoFaces_methods(root_module, root_module['ns3::CcnxFibEntry::NoFaces'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700332 register_Ns3CcnxFibEntryContainer_methods(root_module, root_module['ns3::CcnxFibEntryContainer'])
333 register_Ns3CcnxFibFaceMetric_methods(root_module, root_module['ns3::CcnxFibFaceMetric'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700334 register_Ns3CcnxFibFaceMetricContainer_methods(root_module, root_module['ns3::CcnxFibFaceMetricContainer'])
Alexander Afanasyev8e2f1122012-04-17 15:01:11 -0700335 register_Ns3CcnxGlobalRoutingHelper_methods(root_module, root_module['ns3::CcnxGlobalRoutingHelper'])
Alexander Afanasyev53872ce2011-12-16 13:17:18 -0800336 register_Ns3CcnxHeaderHelper_methods(root_module, root_module['ns3::CcnxHeaderHelper'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700337 register_Ns3CcnxInterestHeaderException_methods(root_module, root_module['ns3::CcnxInterestHeaderException'])
Alexander Afanasyevad5acce2012-05-31 12:43:08 -0700338 register_Ns3CcnxPitEntry_methods(root_module, root_module['ns3::CcnxPitEntry'])
339 register_Ns3CcnxPitEntryContainer_methods(root_module, root_module['ns3::CcnxPitEntryContainer'])
340 register_Ns3CcnxPitEntryIncomingFace_methods(root_module, root_module['ns3::CcnxPitEntryIncomingFace'])
341 register_Ns3CcnxPitEntryIncomingFaceContainer_methods(root_module, root_module['ns3::CcnxPitEntryIncomingFaceContainer'])
342 register_Ns3CcnxPitEntryNotFound_methods(root_module, root_module['ns3::CcnxPitEntryNotFound'])
343 register_Ns3CcnxPitEntryOutgoingFace_methods(root_module, root_module['ns3::CcnxPitEntryOutgoingFace'])
344 register_Ns3CcnxPitEntryOutgoingFaceContainer_methods(root_module, root_module['ns3::CcnxPitEntryOutgoingFaceContainer'])
Alexander Afanasyev07827182011-12-13 01:07:32 -0800345 register_Ns3CcnxStackHelper_methods(root_module, root_module['ns3::CcnxStackHelper'])
Alexander Afanasyev53872ce2011-12-16 13:17:18 -0800346 register_Ns3CcnxUnknownHeaderException_methods(root_module, root_module['ns3::CcnxUnknownHeaderException'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700347 register_Ns3EventId_methods(root_module, root_module['ns3::EventId'])
348 register_Ns3Ipv4Address_methods(root_module, root_module['ns3::Ipv4Address'])
349 register_Ns3Ipv4Mask_methods(root_module, root_module['ns3::Ipv4Mask'])
350 register_Ns3Ipv6Address_methods(root_module, root_module['ns3::Ipv6Address'])
351 register_Ns3Ipv6Prefix_methods(root_module, root_module['ns3::Ipv6Prefix'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700352 register_Ns3NodeContainer_methods(root_module, root_module['ns3::NodeContainer'])
353 register_Ns3ObjectBase_methods(root_module, root_module['ns3::ObjectBase'])
354 register_Ns3ObjectDeleter_methods(root_module, root_module['ns3::ObjectDeleter'])
355 register_Ns3ObjectFactory_methods(root_module, root_module['ns3::ObjectFactory'])
356 register_Ns3PacketMetadata_methods(root_module, root_module['ns3::PacketMetadata'])
357 register_Ns3PacketMetadataItem_methods(root_module, root_module['ns3::PacketMetadata::Item'])
358 register_Ns3PacketMetadataItemIterator_methods(root_module, root_module['ns3::PacketMetadata::ItemIterator'])
Alexander Afanasyevad5acce2012-05-31 12:43:08 -0700359 register_Ns3PacketTagIterator_methods(root_module, root_module['ns3::PacketTagIterator'])
360 register_Ns3PacketTagIteratorItem_methods(root_module, root_module['ns3::PacketTagIterator::Item'])
361 register_Ns3PacketTagList_methods(root_module, root_module['ns3::PacketTagList'])
362 register_Ns3PacketTagListTagData_methods(root_module, root_module['ns3::PacketTagList::TagData'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700363 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 -0700364 register_Ns3Tag_methods(root_module, root_module['ns3::Tag'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700365 register_Ns3TagBuffer_methods(root_module, root_module['ns3::TagBuffer'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700366 register_Ns3TypeId_methods(root_module, root_module['ns3::TypeId'])
367 register_Ns3TypeIdAttributeInformation_methods(root_module, root_module['ns3::TypeId::AttributeInformation'])
368 register_Ns3TypeIdTraceSourceInformation_methods(root_module, root_module['ns3::TypeId::TraceSourceInformation'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700369 register_Ns3Empty_methods(root_module, root_module['ns3::empty'])
370 register_Ns3Int64x64_t_methods(root_module, root_module['ns3::int64x64_t'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700371 register_Ns3Chunk_methods(root_module, root_module['ns3::Chunk'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700372 register_Ns3Header_methods(root_module, root_module['ns3::Header'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700373 register_Ns3Object_methods(root_module, root_module['ns3::Object'])
374 register_Ns3ObjectAggregateIterator_methods(root_module, root_module['ns3::Object::AggregateIterator'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700375 register_Ns3SimpleRefCount__Ns3AttributeAccessor_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeAccessor__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> >'])
376 register_Ns3SimpleRefCount__Ns3AttributeChecker_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeChecker__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter<ns3::AttributeChecker> >'])
377 register_Ns3SimpleRefCount__Ns3AttributeValue_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeValue__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter<ns3::AttributeValue> >'])
378 register_Ns3SimpleRefCount__Ns3CallbackImplBase_Ns3Empty_Ns3DefaultDeleter__lt__ns3CallbackImplBase__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> >'])
Alexander Afanasyev4756b892012-04-18 14:48:43 -0700379 register_Ns3SimpleRefCount__Ns3CcnxContentObjectHeader_Ns3Header_Ns3DefaultDeleter__lt__ns3CcnxContentObjectHeader__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::CcnxContentObjectHeader, ns3::Header, ns3::DefaultDeleter<ns3::CcnxContentObjectHeader> >'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700380 register_Ns3SimpleRefCount__Ns3CcnxFaceContainer_Ns3Empty_Ns3DefaultDeleter__lt__ns3CcnxFaceContainer__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::CcnxFaceContainer, ns3::empty, ns3::DefaultDeleter<ns3::CcnxFaceContainer> >'])
Alexander Afanasyev4756b892012-04-18 14:48:43 -0700381 register_Ns3SimpleRefCount__Ns3CcnxInterestHeader_Ns3Header_Ns3DefaultDeleter__lt__ns3CcnxInterestHeader__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::CcnxInterestHeader, ns3::Header, ns3::DefaultDeleter<ns3::CcnxInterestHeader> >'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700382 register_Ns3SimpleRefCount__Ns3CcnxNameComponents_Ns3Empty_Ns3DefaultDeleter__lt__ns3CcnxNameComponents__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::CcnxNameComponents, ns3::empty, ns3::DefaultDeleter<ns3::CcnxNameComponents> >'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700383 register_Ns3SimpleRefCount__Ns3EventImpl_Ns3Empty_Ns3DefaultDeleter__lt__ns3EventImpl__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::EventImpl, ns3::empty, ns3::DefaultDeleter<ns3::EventImpl> >'])
384 register_Ns3SimpleRefCount__Ns3NixVector_Ns3Empty_Ns3DefaultDeleter__lt__ns3NixVector__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::NixVector, ns3::empty, ns3::DefaultDeleter<ns3::NixVector> >'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700385 register_Ns3SimpleRefCount__Ns3Packet_Ns3Empty_Ns3DefaultDeleter__lt__ns3Packet__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::Packet, ns3::empty, ns3::DefaultDeleter<ns3::Packet> >'])
386 register_Ns3SimpleRefCount__Ns3TraceSourceAccessor_Ns3Empty_Ns3DefaultDeleter__lt__ns3TraceSourceAccessor__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter<ns3::TraceSourceAccessor> >'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700387 register_Ns3Time_methods(root_module, root_module['ns3::Time'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700388 register_Ns3TraceSourceAccessor_methods(root_module, root_module['ns3::TraceSourceAccessor'])
389 register_Ns3Trailer_methods(root_module, root_module['ns3::Trailer'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700390 register_Ns3Application_methods(root_module, root_module['ns3::Application'])
391 register_Ns3AttributeAccessor_methods(root_module, root_module['ns3::AttributeAccessor'])
392 register_Ns3AttributeChecker_methods(root_module, root_module['ns3::AttributeChecker'])
393 register_Ns3AttributeValue_methods(root_module, root_module['ns3::AttributeValue'])
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -0800394 register_Ns3BatchesChecker_methods(root_module, root_module['ns3::BatchesChecker'])
395 register_Ns3BatchesValue_methods(root_module, root_module['ns3::BatchesValue'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700396 register_Ns3CallbackChecker_methods(root_module, root_module['ns3::CallbackChecker'])
397 register_Ns3CallbackImplBase_methods(root_module, root_module['ns3::CallbackImplBase'])
398 register_Ns3CallbackValue_methods(root_module, root_module['ns3::CallbackValue'])
399 register_Ns3Ccnx_methods(root_module, root_module['ns3::Ccnx'])
Alexander Afanasyev07827182011-12-13 01:07:32 -0800400 register_Ns3CcnxApp_methods(root_module, root_module['ns3::CcnxApp'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700401 register_Ns3CcnxContentObjectHeader_methods(root_module, root_module['ns3::CcnxContentObjectHeader'])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -0700402 register_Ns3CcnxContentObjectHeaderSignature_methods(root_module, root_module['ns3::CcnxContentObjectHeader::Signature'])
Alexander Afanasyev9568f952012-04-05 16:09:14 -0700403 register_Ns3CcnxContentObjectHeaderSignedInfo_methods(root_module, root_module['ns3::CcnxContentObjectHeader::SignedInfo'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700404 register_Ns3CcnxContentObjectTail_methods(root_module, root_module['ns3::CcnxContentObjectTail'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700405 register_Ns3CcnxFace_methods(root_module, root_module['ns3::CcnxFace'])
406 register_Ns3CcnxFaceContainer_methods(root_module, root_module['ns3::CcnxFaceContainer'])
Alexander Afanasyev07827182011-12-13 01:07:32 -0800407 register_Ns3CcnxFib_methods(root_module, root_module['ns3::CcnxFib'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700408 register_Ns3CcnxInterestHeader_methods(root_module, root_module['ns3::CcnxInterestHeader'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700409 register_Ns3CcnxNameComponents_methods(root_module, root_module['ns3::CcnxNameComponents'])
410 register_Ns3CcnxNameComponentsChecker_methods(root_module, root_module['ns3::CcnxNameComponentsChecker'])
411 register_Ns3CcnxNameComponentsValue_methods(root_module, root_module['ns3::CcnxNameComponentsValue'])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -0700412 register_Ns3CcnxNetDeviceFace_methods(root_module, root_module['ns3::CcnxNetDeviceFace'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700413 register_Ns3EmptyAttributeValue_methods(root_module, root_module['ns3::EmptyAttributeValue'])
414 register_Ns3EventImpl_methods(root_module, root_module['ns3::EventImpl'])
415 register_Ns3IntegerValue_methods(root_module, root_module['ns3::IntegerValue'])
416 register_Ns3Ipv4AddressChecker_methods(root_module, root_module['ns3::Ipv4AddressChecker'])
417 register_Ns3Ipv4AddressValue_methods(root_module, root_module['ns3::Ipv4AddressValue'])
418 register_Ns3Ipv4MaskChecker_methods(root_module, root_module['ns3::Ipv4MaskChecker'])
419 register_Ns3Ipv4MaskValue_methods(root_module, root_module['ns3::Ipv4MaskValue'])
420 register_Ns3Ipv6AddressChecker_methods(root_module, root_module['ns3::Ipv6AddressChecker'])
421 register_Ns3Ipv6AddressValue_methods(root_module, root_module['ns3::Ipv6AddressValue'])
422 register_Ns3Ipv6PrefixChecker_methods(root_module, root_module['ns3::Ipv6PrefixChecker'])
423 register_Ns3Ipv6PrefixValue_methods(root_module, root_module['ns3::Ipv6PrefixValue'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700424 register_Ns3NetDevice_methods(root_module, root_module['ns3::NetDevice'])
425 register_Ns3NixVector_methods(root_module, root_module['ns3::NixVector'])
426 register_Ns3Node_methods(root_module, root_module['ns3::Node'])
427 register_Ns3ObjectFactoryChecker_methods(root_module, root_module['ns3::ObjectFactoryChecker'])
428 register_Ns3ObjectFactoryValue_methods(root_module, root_module['ns3::ObjectFactoryValue'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700429 register_Ns3Packet_methods(root_module, root_module['ns3::Packet'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700430 register_Ns3TimeChecker_methods(root_module, root_module['ns3::TimeChecker'])
431 register_Ns3TimeValue_methods(root_module, root_module['ns3::TimeValue'])
432 register_Ns3TypeIdChecker_methods(root_module, root_module['ns3::TypeIdChecker'])
433 register_Ns3TypeIdValue_methods(root_module, root_module['ns3::TypeIdValue'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700434 register_Ns3AddressChecker_methods(root_module, root_module['ns3::AddressChecker'])
435 register_Ns3AddressValue_methods(root_module, root_module['ns3::AddressValue'])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -0700436 register_Ns3CcnxAppFace_methods(root_module, root_module['ns3::CcnxAppFace'])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700437 return
438
439def register_Ns3Address_methods(root_module, cls):
440 cls.add_binary_comparison_operator('!=')
441 cls.add_output_stream_operator()
442 cls.add_binary_comparison_operator('==')
443 cls.add_binary_comparison_operator('<')
444 ## address.h (module 'network'): ns3::Address::Address() [constructor]
445 cls.add_constructor([])
446 ## address.h (module 'network'): ns3::Address::Address(uint8_t type, uint8_t const * buffer, uint8_t len) [constructor]
447 cls.add_constructor([param('uint8_t', 'type'), param('uint8_t const *', 'buffer'), param('uint8_t', 'len')])
448 ## address.h (module 'network'): ns3::Address::Address(ns3::Address const & address) [copy constructor]
449 cls.add_constructor([param('ns3::Address const &', 'address')])
450 ## address.h (module 'network'): bool ns3::Address::CheckCompatible(uint8_t type, uint8_t len) const [member function]
451 cls.add_method('CheckCompatible',
452 'bool',
453 [param('uint8_t', 'type'), param('uint8_t', 'len')],
454 is_const=True)
455 ## address.h (module 'network'): uint32_t ns3::Address::CopyAllFrom(uint8_t const * buffer, uint8_t len) [member function]
456 cls.add_method('CopyAllFrom',
457 'uint32_t',
458 [param('uint8_t const *', 'buffer'), param('uint8_t', 'len')])
459 ## address.h (module 'network'): uint32_t ns3::Address::CopyAllTo(uint8_t * buffer, uint8_t len) const [member function]
460 cls.add_method('CopyAllTo',
461 'uint32_t',
462 [param('uint8_t *', 'buffer'), param('uint8_t', 'len')],
463 is_const=True)
464 ## address.h (module 'network'): uint32_t ns3::Address::CopyFrom(uint8_t const * buffer, uint8_t len) [member function]
465 cls.add_method('CopyFrom',
466 'uint32_t',
467 [param('uint8_t const *', 'buffer'), param('uint8_t', 'len')])
468 ## address.h (module 'network'): uint32_t ns3::Address::CopyTo(uint8_t * buffer) const [member function]
469 cls.add_method('CopyTo',
470 'uint32_t',
471 [param('uint8_t *', 'buffer')],
472 is_const=True)
473 ## address.h (module 'network'): void ns3::Address::Deserialize(ns3::TagBuffer buffer) [member function]
474 cls.add_method('Deserialize',
475 'void',
476 [param('ns3::TagBuffer', 'buffer')])
477 ## address.h (module 'network'): uint8_t ns3::Address::GetLength() const [member function]
478 cls.add_method('GetLength',
479 'uint8_t',
480 [],
481 is_const=True)
482 ## address.h (module 'network'): uint32_t ns3::Address::GetSerializedSize() const [member function]
483 cls.add_method('GetSerializedSize',
484 'uint32_t',
485 [],
486 is_const=True)
487 ## address.h (module 'network'): bool ns3::Address::IsInvalid() const [member function]
488 cls.add_method('IsInvalid',
489 'bool',
490 [],
491 is_const=True)
492 ## address.h (module 'network'): bool ns3::Address::IsMatchingType(uint8_t type) const [member function]
493 cls.add_method('IsMatchingType',
494 'bool',
495 [param('uint8_t', 'type')],
496 is_const=True)
497 ## address.h (module 'network'): static uint8_t ns3::Address::Register() [member function]
498 cls.add_method('Register',
499 'uint8_t',
500 [],
501 is_static=True)
502 ## address.h (module 'network'): void ns3::Address::Serialize(ns3::TagBuffer buffer) const [member function]
503 cls.add_method('Serialize',
504 'void',
505 [param('ns3::TagBuffer', 'buffer')],
506 is_const=True)
507 return
508
509def register_Ns3ApplicationContainer_methods(root_module, cls):
510 ## application-container.h (module 'network'): ns3::ApplicationContainer::ApplicationContainer(ns3::ApplicationContainer const & arg0) [copy constructor]
511 cls.add_constructor([param('ns3::ApplicationContainer const &', 'arg0')])
512 ## application-container.h (module 'network'): ns3::ApplicationContainer::ApplicationContainer() [constructor]
513 cls.add_constructor([])
514 ## application-container.h (module 'network'): ns3::ApplicationContainer::ApplicationContainer(ns3::Ptr<ns3::Application> application) [constructor]
515 cls.add_constructor([param('ns3::Ptr< ns3::Application >', 'application')])
516 ## application-container.h (module 'network'): ns3::ApplicationContainer::ApplicationContainer(std::string name) [constructor]
517 cls.add_constructor([param('std::string', 'name')])
518 ## application-container.h (module 'network'): void ns3::ApplicationContainer::Add(ns3::ApplicationContainer other) [member function]
519 cls.add_method('Add',
520 'void',
521 [param('ns3::ApplicationContainer', 'other')])
522 ## application-container.h (module 'network'): void ns3::ApplicationContainer::Add(ns3::Ptr<ns3::Application> application) [member function]
523 cls.add_method('Add',
524 'void',
525 [param('ns3::Ptr< ns3::Application >', 'application')])
526 ## application-container.h (module 'network'): void ns3::ApplicationContainer::Add(std::string name) [member function]
527 cls.add_method('Add',
528 'void',
529 [param('std::string', 'name')])
530 ## 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]
531 cls.add_method('Begin',
532 '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Application > const, std::vector< ns3::Ptr< ns3::Application > > >',
533 [],
534 is_const=True)
535 ## 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]
536 cls.add_method('End',
537 '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Application > const, std::vector< ns3::Ptr< ns3::Application > > >',
538 [],
539 is_const=True)
540 ## application-container.h (module 'network'): ns3::Ptr<ns3::Application> ns3::ApplicationContainer::Get(uint32_t i) const [member function]
541 cls.add_method('Get',
542 'ns3::Ptr< ns3::Application >',
543 [param('uint32_t', 'i')],
544 is_const=True)
545 ## application-container.h (module 'network'): uint32_t ns3::ApplicationContainer::GetN() const [member function]
546 cls.add_method('GetN',
547 'uint32_t',
548 [],
549 is_const=True)
550 ## application-container.h (module 'network'): void ns3::ApplicationContainer::Start(ns3::Time start) [member function]
551 cls.add_method('Start',
552 'void',
553 [param('ns3::Time', 'start')])
554 ## application-container.h (module 'network'): void ns3::ApplicationContainer::Stop(ns3::Time stop) [member function]
555 cls.add_method('Stop',
556 'void',
557 [param('ns3::Time', 'stop')])
558 return
559
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700560def register_Ns3AttributeConstructionList_methods(root_module, cls):
561 ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::AttributeConstructionList(ns3::AttributeConstructionList const & arg0) [copy constructor]
562 cls.add_constructor([param('ns3::AttributeConstructionList const &', 'arg0')])
563 ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::AttributeConstructionList() [constructor]
564 cls.add_constructor([])
565 ## 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]
566 cls.add_method('Add',
567 'void',
568 [param('std::string', 'name'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker'), param('ns3::Ptr< ns3::AttributeValue >', 'value')])
569 ## attribute-construction-list.h (module 'core'): std::_List_const_iterator<ns3::AttributeConstructionList::Item> ns3::AttributeConstructionList::Begin() const [member function]
570 cls.add_method('Begin',
571 'std::_List_const_iterator< ns3::AttributeConstructionList::Item >',
572 [],
573 is_const=True)
574 ## attribute-construction-list.h (module 'core'): std::_List_const_iterator<ns3::AttributeConstructionList::Item> ns3::AttributeConstructionList::End() const [member function]
575 cls.add_method('End',
576 'std::_List_const_iterator< ns3::AttributeConstructionList::Item >',
577 [],
578 is_const=True)
579 ## attribute-construction-list.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::AttributeConstructionList::Find(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
580 cls.add_method('Find',
581 'ns3::Ptr< ns3::AttributeValue >',
582 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
583 is_const=True)
584 return
585
586def register_Ns3AttributeConstructionListItem_methods(root_module, cls):
587 ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item::Item() [constructor]
588 cls.add_constructor([])
589 ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item::Item(ns3::AttributeConstructionList::Item const & arg0) [copy constructor]
590 cls.add_constructor([param('ns3::AttributeConstructionList::Item const &', 'arg0')])
591 ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item::checker [variable]
592 cls.add_instance_attribute('checker', 'ns3::Ptr< ns3::AttributeChecker const >', is_const=False)
593 ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item::name [variable]
594 cls.add_instance_attribute('name', 'std::string', is_const=False)
595 ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item::value [variable]
596 cls.add_instance_attribute('value', 'ns3::Ptr< ns3::AttributeValue >', is_const=False)
597 return
598
599def register_Ns3Buffer_methods(root_module, cls):
600 ## buffer.h (module 'network'): ns3::Buffer::Buffer() [constructor]
601 cls.add_constructor([])
602 ## buffer.h (module 'network'): ns3::Buffer::Buffer(uint32_t dataSize) [constructor]
603 cls.add_constructor([param('uint32_t', 'dataSize')])
604 ## buffer.h (module 'network'): ns3::Buffer::Buffer(uint32_t dataSize, bool initialize) [constructor]
605 cls.add_constructor([param('uint32_t', 'dataSize'), param('bool', 'initialize')])
606 ## buffer.h (module 'network'): ns3::Buffer::Buffer(ns3::Buffer const & o) [copy constructor]
607 cls.add_constructor([param('ns3::Buffer const &', 'o')])
608 ## buffer.h (module 'network'): bool ns3::Buffer::AddAtEnd(uint32_t end) [member function]
609 cls.add_method('AddAtEnd',
610 'bool',
611 [param('uint32_t', 'end')])
612 ## buffer.h (module 'network'): void ns3::Buffer::AddAtEnd(ns3::Buffer const & o) [member function]
613 cls.add_method('AddAtEnd',
614 'void',
615 [param('ns3::Buffer const &', 'o')])
616 ## buffer.h (module 'network'): bool ns3::Buffer::AddAtStart(uint32_t start) [member function]
617 cls.add_method('AddAtStart',
618 'bool',
619 [param('uint32_t', 'start')])
620 ## buffer.h (module 'network'): ns3::Buffer::Iterator ns3::Buffer::Begin() const [member function]
621 cls.add_method('Begin',
622 'ns3::Buffer::Iterator',
623 [],
624 is_const=True)
625 ## buffer.h (module 'network'): void ns3::Buffer::CopyData(std::ostream * os, uint32_t size) const [member function]
626 cls.add_method('CopyData',
627 'void',
628 [param('std::ostream *', 'os'), param('uint32_t', 'size')],
629 is_const=True)
630 ## buffer.h (module 'network'): uint32_t ns3::Buffer::CopyData(uint8_t * buffer, uint32_t size) const [member function]
631 cls.add_method('CopyData',
632 'uint32_t',
633 [param('uint8_t *', 'buffer'), param('uint32_t', 'size')],
634 is_const=True)
635 ## buffer.h (module 'network'): ns3::Buffer ns3::Buffer::CreateFragment(uint32_t start, uint32_t length) const [member function]
636 cls.add_method('CreateFragment',
637 'ns3::Buffer',
638 [param('uint32_t', 'start'), param('uint32_t', 'length')],
639 is_const=True)
640 ## buffer.h (module 'network'): ns3::Buffer ns3::Buffer::CreateFullCopy() const [member function]
641 cls.add_method('CreateFullCopy',
642 'ns3::Buffer',
643 [],
644 is_const=True)
645 ## buffer.h (module 'network'): uint32_t ns3::Buffer::Deserialize(uint8_t const * buffer, uint32_t size) [member function]
646 cls.add_method('Deserialize',
647 'uint32_t',
648 [param('uint8_t const *', 'buffer'), param('uint32_t', 'size')])
649 ## buffer.h (module 'network'): ns3::Buffer::Iterator ns3::Buffer::End() const [member function]
650 cls.add_method('End',
651 'ns3::Buffer::Iterator',
652 [],
653 is_const=True)
654 ## buffer.h (module 'network'): int32_t ns3::Buffer::GetCurrentEndOffset() const [member function]
655 cls.add_method('GetCurrentEndOffset',
656 'int32_t',
657 [],
658 is_const=True)
659 ## buffer.h (module 'network'): int32_t ns3::Buffer::GetCurrentStartOffset() const [member function]
660 cls.add_method('GetCurrentStartOffset',
661 'int32_t',
662 [],
663 is_const=True)
664 ## buffer.h (module 'network'): uint32_t ns3::Buffer::GetSerializedSize() const [member function]
665 cls.add_method('GetSerializedSize',
666 'uint32_t',
667 [],
668 is_const=True)
669 ## buffer.h (module 'network'): uint32_t ns3::Buffer::GetSize() const [member function]
670 cls.add_method('GetSize',
671 'uint32_t',
672 [],
673 is_const=True)
674 ## buffer.h (module 'network'): uint8_t const * ns3::Buffer::PeekData() const [member function]
675 cls.add_method('PeekData',
676 'uint8_t const *',
677 [],
678 is_const=True)
679 ## buffer.h (module 'network'): void ns3::Buffer::RemoveAtEnd(uint32_t end) [member function]
680 cls.add_method('RemoveAtEnd',
681 'void',
682 [param('uint32_t', 'end')])
683 ## buffer.h (module 'network'): void ns3::Buffer::RemoveAtStart(uint32_t start) [member function]
684 cls.add_method('RemoveAtStart',
685 'void',
686 [param('uint32_t', 'start')])
687 ## buffer.h (module 'network'): uint32_t ns3::Buffer::Serialize(uint8_t * buffer, uint32_t maxSize) const [member function]
688 cls.add_method('Serialize',
689 'uint32_t',
690 [param('uint8_t *', 'buffer'), param('uint32_t', 'maxSize')],
691 is_const=True)
692 return
693
694def register_Ns3BufferIterator_methods(root_module, cls):
695 ## buffer.h (module 'network'): ns3::Buffer::Iterator::Iterator(ns3::Buffer::Iterator const & arg0) [copy constructor]
696 cls.add_constructor([param('ns3::Buffer::Iterator const &', 'arg0')])
697 ## buffer.h (module 'network'): ns3::Buffer::Iterator::Iterator() [constructor]
698 cls.add_constructor([])
699 ## buffer.h (module 'network'): uint16_t ns3::Buffer::Iterator::CalculateIpChecksum(uint16_t size) [member function]
700 cls.add_method('CalculateIpChecksum',
701 'uint16_t',
702 [param('uint16_t', 'size')])
703 ## buffer.h (module 'network'): uint16_t ns3::Buffer::Iterator::CalculateIpChecksum(uint16_t size, uint32_t initialChecksum) [member function]
704 cls.add_method('CalculateIpChecksum',
705 'uint16_t',
706 [param('uint16_t', 'size'), param('uint32_t', 'initialChecksum')])
707 ## buffer.h (module 'network'): uint32_t ns3::Buffer::Iterator::GetDistanceFrom(ns3::Buffer::Iterator const & o) const [member function]
708 cls.add_method('GetDistanceFrom',
709 'uint32_t',
710 [param('ns3::Buffer::Iterator const &', 'o')],
711 is_const=True)
712 ## buffer.h (module 'network'): uint32_t ns3::Buffer::Iterator::GetSize() const [member function]
713 cls.add_method('GetSize',
714 'uint32_t',
715 [],
716 is_const=True)
717 ## buffer.h (module 'network'): bool ns3::Buffer::Iterator::IsEnd() const [member function]
718 cls.add_method('IsEnd',
719 'bool',
720 [],
721 is_const=True)
722 ## buffer.h (module 'network'): bool ns3::Buffer::Iterator::IsStart() const [member function]
723 cls.add_method('IsStart',
724 'bool',
725 [],
726 is_const=True)
727 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Next() [member function]
728 cls.add_method('Next',
729 'void',
730 [])
731 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Next(uint32_t delta) [member function]
732 cls.add_method('Next',
733 'void',
734 [param('uint32_t', 'delta')])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -0700735 ## buffer.h (module 'network'): uint8_t ns3::Buffer::Iterator::PeekU8() [member function]
736 cls.add_method('PeekU8',
737 'uint8_t',
738 [])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700739 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Prev() [member function]
740 cls.add_method('Prev',
741 'void',
742 [])
743 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Prev(uint32_t delta) [member function]
744 cls.add_method('Prev',
745 'void',
746 [param('uint32_t', 'delta')])
747 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Read(uint8_t * buffer, uint32_t size) [member function]
748 cls.add_method('Read',
749 'void',
750 [param('uint8_t *', 'buffer'), param('uint32_t', 'size')])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -0700751 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Read(ns3::Buffer::Iterator start, uint32_t size) [member function]
752 cls.add_method('Read',
753 'void',
754 [param('ns3::Buffer::Iterator', 'start'), param('uint32_t', 'size')])
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700755 ## buffer.h (module 'network'): uint16_t ns3::Buffer::Iterator::ReadLsbtohU16() [member function]
756 cls.add_method('ReadLsbtohU16',
757 'uint16_t',
758 [])
759 ## buffer.h (module 'network'): uint32_t ns3::Buffer::Iterator::ReadLsbtohU32() [member function]
760 cls.add_method('ReadLsbtohU32',
761 'uint32_t',
762 [])
763 ## buffer.h (module 'network'): uint64_t ns3::Buffer::Iterator::ReadLsbtohU64() [member function]
764 cls.add_method('ReadLsbtohU64',
765 'uint64_t',
766 [])
767 ## buffer.h (module 'network'): uint16_t ns3::Buffer::Iterator::ReadNtohU16() [member function]
768 cls.add_method('ReadNtohU16',
769 'uint16_t',
770 [])
771 ## buffer.h (module 'network'): uint32_t ns3::Buffer::Iterator::ReadNtohU32() [member function]
772 cls.add_method('ReadNtohU32',
773 'uint32_t',
774 [])
775 ## buffer.h (module 'network'): uint64_t ns3::Buffer::Iterator::ReadNtohU64() [member function]
776 cls.add_method('ReadNtohU64',
777 'uint64_t',
778 [])
779 ## buffer.h (module 'network'): uint16_t ns3::Buffer::Iterator::ReadU16() [member function]
780 cls.add_method('ReadU16',
781 'uint16_t',
782 [])
783 ## buffer.h (module 'network'): uint32_t ns3::Buffer::Iterator::ReadU32() [member function]
784 cls.add_method('ReadU32',
785 'uint32_t',
786 [])
787 ## buffer.h (module 'network'): uint64_t ns3::Buffer::Iterator::ReadU64() [member function]
788 cls.add_method('ReadU64',
789 'uint64_t',
790 [])
791 ## buffer.h (module 'network'): uint8_t ns3::Buffer::Iterator::ReadU8() [member function]
792 cls.add_method('ReadU8',
793 'uint8_t',
794 [])
795 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Write(uint8_t const * buffer, uint32_t size) [member function]
796 cls.add_method('Write',
797 'void',
798 [param('uint8_t const *', 'buffer'), param('uint32_t', 'size')])
799 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Write(ns3::Buffer::Iterator start, ns3::Buffer::Iterator end) [member function]
800 cls.add_method('Write',
801 'void',
802 [param('ns3::Buffer::Iterator', 'start'), param('ns3::Buffer::Iterator', 'end')])
803 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteHtolsbU16(uint16_t data) [member function]
804 cls.add_method('WriteHtolsbU16',
805 'void',
806 [param('uint16_t', 'data')])
807 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteHtolsbU32(uint32_t data) [member function]
808 cls.add_method('WriteHtolsbU32',
809 'void',
810 [param('uint32_t', 'data')])
811 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteHtolsbU64(uint64_t data) [member function]
812 cls.add_method('WriteHtolsbU64',
813 'void',
814 [param('uint64_t', 'data')])
815 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteHtonU16(uint16_t data) [member function]
816 cls.add_method('WriteHtonU16',
817 'void',
818 [param('uint16_t', 'data')])
819 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteHtonU32(uint32_t data) [member function]
820 cls.add_method('WriteHtonU32',
821 'void',
822 [param('uint32_t', 'data')])
823 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteHtonU64(uint64_t data) [member function]
824 cls.add_method('WriteHtonU64',
825 'void',
826 [param('uint64_t', 'data')])
827 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteU16(uint16_t data) [member function]
828 cls.add_method('WriteU16',
829 'void',
830 [param('uint16_t', 'data')])
831 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteU32(uint32_t data) [member function]
832 cls.add_method('WriteU32',
833 'void',
834 [param('uint32_t', 'data')])
835 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteU64(uint64_t data) [member function]
836 cls.add_method('WriteU64',
837 'void',
838 [param('uint64_t', 'data')])
839 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteU8(uint8_t data) [member function]
840 cls.add_method('WriteU8',
841 'void',
842 [param('uint8_t', 'data')])
843 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteU8(uint8_t data, uint32_t len) [member function]
844 cls.add_method('WriteU8',
845 'void',
846 [param('uint8_t', 'data'), param('uint32_t', 'len')])
847 return
848
849def register_Ns3ByteTagIterator_methods(root_module, cls):
850 ## packet.h (module 'network'): ns3::ByteTagIterator::ByteTagIterator(ns3::ByteTagIterator const & arg0) [copy constructor]
851 cls.add_constructor([param('ns3::ByteTagIterator const &', 'arg0')])
852 ## packet.h (module 'network'): bool ns3::ByteTagIterator::HasNext() const [member function]
853 cls.add_method('HasNext',
854 'bool',
855 [],
856 is_const=True)
857 ## packet.h (module 'network'): ns3::ByteTagIterator::Item ns3::ByteTagIterator::Next() [member function]
858 cls.add_method('Next',
859 'ns3::ByteTagIterator::Item',
860 [])
861 return
862
863def register_Ns3ByteTagIteratorItem_methods(root_module, cls):
864 ## packet.h (module 'network'): ns3::ByteTagIterator::Item::Item(ns3::ByteTagIterator::Item const & arg0) [copy constructor]
865 cls.add_constructor([param('ns3::ByteTagIterator::Item const &', 'arg0')])
866 ## packet.h (module 'network'): uint32_t ns3::ByteTagIterator::Item::GetEnd() const [member function]
867 cls.add_method('GetEnd',
868 'uint32_t',
869 [],
870 is_const=True)
871 ## packet.h (module 'network'): uint32_t ns3::ByteTagIterator::Item::GetStart() const [member function]
872 cls.add_method('GetStart',
873 'uint32_t',
874 [],
875 is_const=True)
876 ## packet.h (module 'network'): void ns3::ByteTagIterator::Item::GetTag(ns3::Tag & tag) const [member function]
877 cls.add_method('GetTag',
878 'void',
879 [param('ns3::Tag &', 'tag')],
880 is_const=True)
881 ## packet.h (module 'network'): ns3::TypeId ns3::ByteTagIterator::Item::GetTypeId() const [member function]
882 cls.add_method('GetTypeId',
883 'ns3::TypeId',
884 [],
885 is_const=True)
886 return
887
888def register_Ns3ByteTagList_methods(root_module, cls):
889 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::ByteTagList() [constructor]
890 cls.add_constructor([])
891 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::ByteTagList(ns3::ByteTagList const & o) [copy constructor]
892 cls.add_constructor([param('ns3::ByteTagList const &', 'o')])
893 ## 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]
894 cls.add_method('Add',
895 'ns3::TagBuffer',
896 [param('ns3::TypeId', 'tid'), param('uint32_t', 'bufferSize'), param('int32_t', 'start'), param('int32_t', 'end')])
897 ## byte-tag-list.h (module 'network'): void ns3::ByteTagList::Add(ns3::ByteTagList const & o) [member function]
898 cls.add_method('Add',
899 'void',
900 [param('ns3::ByteTagList const &', 'o')])
901 ## byte-tag-list.h (module 'network'): void ns3::ByteTagList::AddAtEnd(int32_t adjustment, int32_t appendOffset) [member function]
902 cls.add_method('AddAtEnd',
903 'void',
904 [param('int32_t', 'adjustment'), param('int32_t', 'appendOffset')])
905 ## byte-tag-list.h (module 'network'): void ns3::ByteTagList::AddAtStart(int32_t adjustment, int32_t prependOffset) [member function]
906 cls.add_method('AddAtStart',
907 'void',
908 [param('int32_t', 'adjustment'), param('int32_t', 'prependOffset')])
909 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator ns3::ByteTagList::Begin(int32_t offsetStart, int32_t offsetEnd) const [member function]
910 cls.add_method('Begin',
911 'ns3::ByteTagList::Iterator',
912 [param('int32_t', 'offsetStart'), param('int32_t', 'offsetEnd')],
913 is_const=True)
914 ## byte-tag-list.h (module 'network'): void ns3::ByteTagList::RemoveAll() [member function]
915 cls.add_method('RemoveAll',
916 'void',
917 [])
918 return
919
920def register_Ns3ByteTagListIterator_methods(root_module, cls):
921 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Iterator(ns3::ByteTagList::Iterator const & arg0) [copy constructor]
922 cls.add_constructor([param('ns3::ByteTagList::Iterator const &', 'arg0')])
923 ## byte-tag-list.h (module 'network'): uint32_t ns3::ByteTagList::Iterator::GetOffsetStart() const [member function]
924 cls.add_method('GetOffsetStart',
925 'uint32_t',
926 [],
927 is_const=True)
928 ## byte-tag-list.h (module 'network'): bool ns3::ByteTagList::Iterator::HasNext() const [member function]
929 cls.add_method('HasNext',
930 'bool',
931 [],
932 is_const=True)
933 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item ns3::ByteTagList::Iterator::Next() [member function]
934 cls.add_method('Next',
935 'ns3::ByteTagList::Iterator::Item',
936 [])
937 return
938
939def register_Ns3ByteTagListIteratorItem_methods(root_module, cls):
940 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::Item(ns3::ByteTagList::Iterator::Item const & arg0) [copy constructor]
941 cls.add_constructor([param('ns3::ByteTagList::Iterator::Item const &', 'arg0')])
942 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::Item(ns3::TagBuffer buf) [constructor]
943 cls.add_constructor([param('ns3::TagBuffer', 'buf')])
944 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::buf [variable]
945 cls.add_instance_attribute('buf', 'ns3::TagBuffer', is_const=False)
946 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::end [variable]
947 cls.add_instance_attribute('end', 'int32_t', is_const=False)
948 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::size [variable]
949 cls.add_instance_attribute('size', 'uint32_t', is_const=False)
950 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::start [variable]
951 cls.add_instance_attribute('start', 'int32_t', is_const=False)
952 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::tid [variable]
953 cls.add_instance_attribute('tid', 'ns3::TypeId', is_const=False)
954 return
955
956def register_Ns3CallbackBase_methods(root_module, cls):
957 ## callback.h (module 'core'): ns3::CallbackBase::CallbackBase(ns3::CallbackBase const & arg0) [copy constructor]
958 cls.add_constructor([param('ns3::CallbackBase const &', 'arg0')])
959 ## callback.h (module 'core'): ns3::CallbackBase::CallbackBase() [constructor]
960 cls.add_constructor([])
961 ## callback.h (module 'core'): ns3::Ptr<ns3::CallbackImplBase> ns3::CallbackBase::GetImpl() const [member function]
962 cls.add_method('GetImpl',
963 'ns3::Ptr< ns3::CallbackImplBase >',
964 [],
965 is_const=True)
966 ## callback.h (module 'core'): ns3::CallbackBase::CallbackBase(ns3::Ptr<ns3::CallbackImplBase> impl) [constructor]
967 cls.add_constructor([param('ns3::Ptr< ns3::CallbackImplBase >', 'impl')],
968 visibility='protected')
969 ## callback.h (module 'core'): static std::string ns3::CallbackBase::Demangle(std::string const & mangled) [member function]
970 cls.add_method('Demangle',
971 'std::string',
972 [param('std::string const &', 'mangled')],
973 is_static=True, visibility='protected')
974 return
975
Alexander Afanasyev4975f732011-12-20 17:52:19 -0800976def register_Ns3CcnxAppHelper_methods(root_module, cls):
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -0700977 ## ccnx-app-helper.h (module 'ndnSIM'): ns3::CcnxAppHelper::CcnxAppHelper(ns3::CcnxAppHelper const & arg0) [copy constructor]
Alexander Afanasyev4975f732011-12-20 17:52:19 -0800978 cls.add_constructor([param('ns3::CcnxAppHelper const &', 'arg0')])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -0700979 ## ccnx-app-helper.h (module 'ndnSIM'): ns3::CcnxAppHelper::CcnxAppHelper(std::string const & prefix) [constructor]
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700980 cls.add_constructor([param('std::string const &', 'prefix')])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -0700981 ## ccnx-app-helper.h (module 'ndnSIM'): ns3::ApplicationContainer ns3::CcnxAppHelper::Install(ns3::NodeContainer c) [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700982 cls.add_method('Install',
983 'ns3::ApplicationContainer',
984 [param('ns3::NodeContainer', 'c')])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -0700985 ## ccnx-app-helper.h (module 'ndnSIM'): ns3::ApplicationContainer ns3::CcnxAppHelper::Install(ns3::Ptr<ns3::Node> node) [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700986 cls.add_method('Install',
987 'ns3::ApplicationContainer',
988 [param('ns3::Ptr< ns3::Node >', 'node')])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -0700989 ## ccnx-app-helper.h (module 'ndnSIM'): ns3::ApplicationContainer ns3::CcnxAppHelper::Install(std::string nodeName) [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700990 cls.add_method('Install',
991 'ns3::ApplicationContainer',
992 [param('std::string', 'nodeName')])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -0700993 ## ccnx-app-helper.h (module 'ndnSIM'): void ns3::CcnxAppHelper::SetAttribute(std::string name, ns3::AttributeValue const & value) [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -0700994 cls.add_method('SetAttribute',
995 'void',
996 [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -0700997 ## ccnx-app-helper.h (module 'ndnSIM'): void ns3::CcnxAppHelper::SetPrefix(std::string const & prefix) [member function]
Alexander Afanasyev4975f732011-12-20 17:52:19 -0800998 cls.add_method('SetPrefix',
999 'void',
1000 [param('std::string const &', 'prefix')])
Alexander Afanasyev381dea02011-11-03 08:33:26 -07001001 return
1002
1003def register_Ns3CcnxContentObjectHeaderException_methods(root_module, cls):
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001004 ## ccnx-content-object-header.h (module 'ndnSIM'): ns3::CcnxContentObjectHeaderException::CcnxContentObjectHeaderException() [constructor]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07001005 cls.add_constructor([])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001006 ## ccnx-content-object-header.h (module 'ndnSIM'): ns3::CcnxContentObjectHeaderException::CcnxContentObjectHeaderException(ns3::CcnxContentObjectHeaderException const & arg0) [copy constructor]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07001007 cls.add_constructor([param('ns3::CcnxContentObjectHeaderException const &', 'arg0')])
1008 return
1009
Alexander Afanasyev8e2f1122012-04-17 15:01:11 -07001010def register_Ns3CcnxFibEntry_methods(root_module, cls):
1011 cls.add_output_stream_operator()
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001012 ## ccnx-fib.h (module 'ndnSIM'): ns3::CcnxFibEntry::CcnxFibEntry(ns3::CcnxFibEntry const & arg0) [copy constructor]
Alexander Afanasyev8e2f1122012-04-17 15:01:11 -07001013 cls.add_constructor([param('ns3::CcnxFibEntry const &', 'arg0')])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001014 ## ccnx-fib.h (module 'ndnSIM'): ns3::CcnxFibEntry::CcnxFibEntry(ns3::Ptr<ns3::CcnxNameComponents const> const & prefix) [constructor]
Alexander Afanasyev8e2f1122012-04-17 15:01:11 -07001015 cls.add_constructor([param('ns3::Ptr< ns3::CcnxNameComponents const > const &', 'prefix')])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001016 ## ccnx-fib.h (module 'ndnSIM'): void ns3::CcnxFibEntry::AddOrUpdateRoutingMetric(ns3::Ptr<ns3::CcnxFace> face, int32_t metric) [member function]
Alexander Afanasyev8e2f1122012-04-17 15:01:11 -07001017 cls.add_method('AddOrUpdateRoutingMetric',
1018 'void',
1019 [param('ns3::Ptr< ns3::CcnxFace >', 'face'), param('int32_t', 'metric')])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001020 ## ccnx-fib.h (module 'ndnSIM'): ns3::CcnxFibFaceMetric const & ns3::CcnxFibEntry::FindBestCandidate(uint32_t skip=0) const [member function]
Alexander Afanasyev8e2f1122012-04-17 15:01:11 -07001021 cls.add_method('FindBestCandidate',
1022 'ns3::CcnxFibFaceMetric const &',
1023 [param('uint32_t', 'skip', default_value='0')],
1024 is_const=True)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001025 ## ccnx-fib.h (module 'ndnSIM'): ns3::CcnxNameComponents const & ns3::CcnxFibEntry::GetPrefix() const [member function]
Alexander Afanasyev8e2f1122012-04-17 15:01:11 -07001026 cls.add_method('GetPrefix',
1027 'ns3::CcnxNameComponents const &',
1028 [],
1029 is_const=True)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001030 ## ccnx-fib.h (module 'ndnSIM'): void ns3::CcnxFibEntry::Invalidate() [member function]
Alexander Afanasyev8e2f1122012-04-17 15:01:11 -07001031 cls.add_method('Invalidate',
1032 'void',
1033 [])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001034 ## ccnx-fib.h (module 'ndnSIM'): void ns3::CcnxFibEntry::RemoveFace(ns3::Ptr<ns3::CcnxFace> const & face) [member function]
Alexander Afanasyev8e2f1122012-04-17 15:01:11 -07001035 cls.add_method('RemoveFace',
1036 'void',
1037 [param('ns3::Ptr< ns3::CcnxFace > const &', 'face')])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001038 ## ccnx-fib.h (module 'ndnSIM'): void ns3::CcnxFibEntry::UpdateFaceRtt(ns3::Ptr<ns3::CcnxFace> face, ns3::Time const & sample) [member function]
Alexander Afanasyev8e2f1122012-04-17 15:01:11 -07001039 cls.add_method('UpdateFaceRtt',
1040 'void',
1041 [param('ns3::Ptr< ns3::CcnxFace >', 'face'), param('ns3::Time const &', 'sample')])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001042 ## ccnx-fib.h (module 'ndnSIM'): void ns3::CcnxFibEntry::UpdateStatus(ns3::Ptr<ns3::CcnxFace> face, ns3::CcnxFibFaceMetric::Status status) [member function]
Alexander Afanasyev8e2f1122012-04-17 15:01:11 -07001043 cls.add_method('UpdateStatus',
1044 'void',
1045 [param('ns3::Ptr< ns3::CcnxFace >', 'face'), param('ns3::CcnxFibFaceMetric::Status', 'status')])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001046 ## ccnx-fib.h (module 'ndnSIM'): ns3::CcnxFibEntry::m_faces [variable]
Alexander Afanasyev8e2f1122012-04-17 15:01:11 -07001047 cls.add_instance_attribute('m_faces', 'boost::multi_index::multi_index_container< ns3::CcnxFibFaceMetric, boost::multi_index::indexed_by< boost::multi_index::ordered_unique< boost::multi_index::tag< ns3::__ccnx_private::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::CcnxFibFaceMetric, ns3::Ptr< ns3::CcnxFace >, & ( ns3::CcnxFibFaceMetric::m_face ) >, mpl_::na >, boost::multi_index::ordered_non_unique< boost::multi_index::tag< ns3::__ccnx_private::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::CcnxFibFaceMetric, boost::multi_index::member< ns3::CcnxFibFaceMetric, ns3::CcnxFibFaceMetric::Status, & ( ns3::CcnxFibFaceMetric::m_status ) >, boost::multi_index::member< ns3::CcnxFibFaceMetric, int, & ( ns3::CcnxFibFaceMetric::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::__ccnx_private::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::CcnxFibFaceMetric > >', is_const=False)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001048 ## ccnx-fib.h (module 'ndnSIM'): ns3::CcnxFibEntry::m_needsProbing [variable]
Alexander Afanasyev8e2f1122012-04-17 15:01:11 -07001049 cls.add_instance_attribute('m_needsProbing', 'bool', is_const=False)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001050 ## ccnx-fib.h (module 'ndnSIM'): ns3::CcnxFibEntry::m_prefix [variable]
Alexander Afanasyev8e2f1122012-04-17 15:01:11 -07001051 cls.add_instance_attribute('m_prefix', 'ns3::Ptr< ns3::CcnxNameComponents const >', is_const=False)
1052 return
1053
1054def register_Ns3CcnxFibEntryNoFaces_methods(root_module, cls):
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001055 ## ccnx-fib.h (module 'ndnSIM'): ns3::CcnxFibEntry::NoFaces::NoFaces() [constructor]
Alexander Afanasyev8e2f1122012-04-17 15:01:11 -07001056 cls.add_constructor([])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001057 ## ccnx-fib.h (module 'ndnSIM'): ns3::CcnxFibEntry::NoFaces::NoFaces(ns3::CcnxFibEntry::NoFaces const & arg0) [copy constructor]
Alexander Afanasyev8e2f1122012-04-17 15:01:11 -07001058 cls.add_constructor([param('ns3::CcnxFibEntry::NoFaces const &', 'arg0')])
1059 return
1060
Alexander Afanasyev381dea02011-11-03 08:33:26 -07001061def register_Ns3CcnxFibEntryContainer_methods(root_module, cls):
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001062 ## ccnx-fib.h (module 'ndnSIM'): ns3::CcnxFibEntryContainer::CcnxFibEntryContainer() [constructor]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07001063 cls.add_constructor([])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001064 ## ccnx-fib.h (module 'ndnSIM'): ns3::CcnxFibEntryContainer::CcnxFibEntryContainer(ns3::CcnxFibEntryContainer const & arg0) [copy constructor]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07001065 cls.add_constructor([param('ns3::CcnxFibEntryContainer const &', 'arg0')])
1066 return
1067
1068def register_Ns3CcnxFibFaceMetric_methods(root_module, cls):
1069 cls.add_output_stream_operator()
1070 cls.add_binary_comparison_operator('<')
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001071 ## ccnx-fib.h (module 'ndnSIM'): ns3::CcnxFibFaceMetric::CcnxFibFaceMetric(ns3::CcnxFibFaceMetric const & arg0) [copy constructor]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07001072 cls.add_constructor([param('ns3::CcnxFibFaceMetric const &', 'arg0')])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001073 ## ccnx-fib.h (module 'ndnSIM'): ns3::CcnxFibFaceMetric::CcnxFibFaceMetric(ns3::Ptr<ns3::CcnxFace> face, int32_t cost) [constructor]
Alexander Afanasyev03d92e42012-02-01 21:06:53 -08001074 cls.add_constructor([param('ns3::Ptr< ns3::CcnxFace >', 'face'), param('int32_t', 'cost')])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001075 ## ccnx-fib.h (module 'ndnSIM'): ns3::Ptr<ns3::CcnxFace> ns3::CcnxFibFaceMetric::GetFace() const [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07001076 cls.add_method('GetFace',
1077 'ns3::Ptr< ns3::CcnxFace >',
1078 [],
1079 is_const=True)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001080 ## ccnx-fib.h (module 'ndnSIM'): void ns3::CcnxFibFaceMetric::UpdateRtt(ns3::Time const & rttSample) [member function]
Alexander Afanasyev07827182011-12-13 01:07:32 -08001081 cls.add_method('UpdateRtt',
1082 'void',
1083 [param('ns3::Time const &', 'rttSample')])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001084 ## ccnx-fib.h (module 'ndnSIM'): ns3::CcnxFibFaceMetric::m_face [variable]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07001085 cls.add_instance_attribute('m_face', 'ns3::Ptr< ns3::CcnxFace >', is_const=False)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001086 ## ccnx-fib.h (module 'ndnSIM'): ns3::CcnxFibFaceMetric::m_routingCost [variable]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07001087 cls.add_instance_attribute('m_routingCost', 'int32_t', is_const=False)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001088 ## ccnx-fib.h (module 'ndnSIM'): ns3::CcnxFibFaceMetric::m_rttVar [variable]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07001089 cls.add_instance_attribute('m_rttVar', 'ns3::Time', is_const=False)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001090 ## ccnx-fib.h (module 'ndnSIM'): ns3::CcnxFibFaceMetric::m_sRtt [variable]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07001091 cls.add_instance_attribute('m_sRtt', 'ns3::Time', is_const=False)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001092 ## ccnx-fib.h (module 'ndnSIM'): ns3::CcnxFibFaceMetric::m_status [variable]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07001093 cls.add_instance_attribute('m_status', 'ns3::CcnxFibFaceMetric::Status', is_const=False)
1094 return
1095
Alexander Afanasyev381dea02011-11-03 08:33:26 -07001096def register_Ns3CcnxFibFaceMetricContainer_methods(root_module, cls):
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001097 ## ccnx-fib.h (module 'ndnSIM'): ns3::CcnxFibFaceMetricContainer::CcnxFibFaceMetricContainer() [constructor]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07001098 cls.add_constructor([])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001099 ## ccnx-fib.h (module 'ndnSIM'): ns3::CcnxFibFaceMetricContainer::CcnxFibFaceMetricContainer(ns3::CcnxFibFaceMetricContainer const & arg0) [copy constructor]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07001100 cls.add_constructor([param('ns3::CcnxFibFaceMetricContainer const &', 'arg0')])
1101 return
1102
Alexander Afanasyev8e2f1122012-04-17 15:01:11 -07001103def register_Ns3CcnxGlobalRoutingHelper_methods(root_module, cls):
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001104 ## ccnx-global-routing-helper.h (module 'ndnSIM'): ns3::CcnxGlobalRoutingHelper::CcnxGlobalRoutingHelper() [constructor]
Alexander Afanasyev8e2f1122012-04-17 15:01:11 -07001105 cls.add_constructor([])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001106 ## ccnx-global-routing-helper.h (module 'ndnSIM'): ns3::CcnxGlobalRoutingHelper::CcnxGlobalRoutingHelper(ns3::CcnxGlobalRoutingHelper const & arg0) [copy constructor]
Alexander Afanasyev8e2f1122012-04-17 15:01:11 -07001107 cls.add_constructor([param('ns3::CcnxGlobalRoutingHelper const &', 'arg0')])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001108 ## ccnx-global-routing-helper.h (module 'ndnSIM'): void ns3::CcnxGlobalRoutingHelper::AddOrigin(std::string const & prefix, ns3::Ptr<ns3::Node> node) [member function]
Alexander Afanasyev8e2f1122012-04-17 15:01:11 -07001109 cls.add_method('AddOrigin',
1110 'void',
1111 [param('std::string const &', 'prefix'), param('ns3::Ptr< ns3::Node >', 'node')])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001112 ## ccnx-global-routing-helper.h (module 'ndnSIM'): void ns3::CcnxGlobalRoutingHelper::AddOrigin(std::string const & prefix, std::string const & nodeName) [member function]
Alexander Afanasyev8e2f1122012-04-17 15:01:11 -07001113 cls.add_method('AddOrigin',
1114 'void',
1115 [param('std::string const &', 'prefix'), param('std::string const &', 'nodeName')])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001116 ## ccnx-global-routing-helper.h (module 'ndnSIM'): void ns3::CcnxGlobalRoutingHelper::AddOrigins(std::string const & prefix, ns3::NodeContainer const & nodes) [member function]
Alexander Afanasyev4756b892012-04-18 14:48:43 -07001117 cls.add_method('AddOrigins',
1118 'void',
1119 [param('std::string const &', 'prefix'), param('ns3::NodeContainer const &', 'nodes')])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001120 ## ccnx-global-routing-helper.h (module 'ndnSIM'): void ns3::CcnxGlobalRoutingHelper::CalculateRoutes() [member function]
Alexander Afanasyev8e2f1122012-04-17 15:01:11 -07001121 cls.add_method('CalculateRoutes',
1122 'void',
1123 [])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001124 ## ccnx-global-routing-helper.h (module 'ndnSIM'): void ns3::CcnxGlobalRoutingHelper::Install(ns3::Ptr<ns3::Node> node) [member function]
Alexander Afanasyev8e2f1122012-04-17 15:01:11 -07001125 cls.add_method('Install',
1126 'void',
1127 [param('ns3::Ptr< ns3::Node >', 'node')])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001128 ## ccnx-global-routing-helper.h (module 'ndnSIM'): void ns3::CcnxGlobalRoutingHelper::Install(ns3::NodeContainer const & nodes) [member function]
Alexander Afanasyev8e2f1122012-04-17 15:01:11 -07001129 cls.add_method('Install',
1130 'void',
Alexander Afanasyevce810142012-04-17 15:50:36 -07001131 [param('ns3::NodeContainer const &', 'nodes')])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001132 ## ccnx-global-routing-helper.h (module 'ndnSIM'): void ns3::CcnxGlobalRoutingHelper::InstallAll() [member function]
Alexander Afanasyevce810142012-04-17 15:50:36 -07001133 cls.add_method('InstallAll',
1134 'void',
1135 [])
Alexander Afanasyev8e2f1122012-04-17 15:01:11 -07001136 return
1137
Alexander Afanasyev53872ce2011-12-16 13:17:18 -08001138def register_Ns3CcnxHeaderHelper_methods(root_module, cls):
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001139 ## ccnx-header-helper.h (module 'ndnSIM'): ns3::CcnxHeaderHelper::CcnxHeaderHelper() [constructor]
Alexander Afanasyev53872ce2011-12-16 13:17:18 -08001140 cls.add_constructor([])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001141 ## ccnx-header-helper.h (module 'ndnSIM'): ns3::CcnxHeaderHelper::CcnxHeaderHelper(ns3::CcnxHeaderHelper const & arg0) [copy constructor]
Alexander Afanasyev53872ce2011-12-16 13:17:18 -08001142 cls.add_constructor([param('ns3::CcnxHeaderHelper const &', 'arg0')])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001143 ## ccnx-header-helper.h (module 'ndnSIM'): static ns3::CcnxHeaderHelper::Type ns3::CcnxHeaderHelper::GetCcnxHeaderType(ns3::Ptr<const ns3::Packet> packet) [member function]
Alexander Afanasyev53872ce2011-12-16 13:17:18 -08001144 cls.add_method('GetCcnxHeaderType',
1145 'ns3::CcnxHeaderHelper::Type',
1146 [param('ns3::Ptr< ns3::Packet const >', 'packet')],
1147 is_static=True)
1148 return
1149
Alexander Afanasyev381dea02011-11-03 08:33:26 -07001150def register_Ns3CcnxInterestHeaderException_methods(root_module, cls):
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001151 ## ccnx-interest-header.h (module 'ndnSIM'): ns3::CcnxInterestHeaderException::CcnxInterestHeaderException() [constructor]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07001152 cls.add_constructor([])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001153 ## ccnx-interest-header.h (module 'ndnSIM'): ns3::CcnxInterestHeaderException::CcnxInterestHeaderException(ns3::CcnxInterestHeaderException const & arg0) [copy constructor]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07001154 cls.add_constructor([param('ns3::CcnxInterestHeaderException const &', 'arg0')])
1155 return
1156
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07001157def register_Ns3CcnxPitEntry_methods(root_module, cls):
1158 cls.add_output_stream_operator()
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001159 ## ccnx-pit-entry.h (module 'ndnSIM'): ns3::CcnxPitEntry::CcnxPitEntry(ns3::CcnxPitEntry const & arg0) [copy constructor]
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07001160 cls.add_constructor([param('ns3::CcnxPitEntry const &', 'arg0')])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001161 ## ccnx-pit-entry.h (module 'ndnSIM'): ns3::CcnxPitEntry::CcnxPitEntry(ns3::Ptr<ns3::CcnxNameComponents> prefix, ns3::Time const & offsetTime, ns3::CcnxFibEntry const & fibEntry) [constructor]
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07001162 cls.add_constructor([param('ns3::Ptr< ns3::CcnxNameComponents >', 'prefix'), param('ns3::Time const &', 'offsetTime'), param('ns3::CcnxFibEntry const &', 'fibEntry')])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001163 ## ccnx-pit-entry.h (module 'ndnSIM'): boost::multi_index::detail::bidir_node_iterator<boost::multi_index::detail::ordered_index_node<boost::multi_index::detail::index_node_base<ns3::CcnxPitEntryIncomingFace, std::allocator<ns3::CcnxPitEntryIncomingFace> > > > ns3::CcnxPitEntry::AddIncoming(ns3::Ptr<ns3::CcnxFace> face) [member function]
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07001164 cls.add_method('AddIncoming',
1165 'boost::multi_index::detail::bidir_node_iterator< boost::multi_index::detail::ordered_index_node< boost::multi_index::detail::index_node_base< ns3::CcnxPitEntryIncomingFace, std::allocator< ns3::CcnxPitEntryIncomingFace > > > >',
1166 [param('ns3::Ptr< ns3::CcnxFace >', 'face')])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001167 ## ccnx-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::CcnxPitEntryOutgoingFace, std::allocator<ns3::CcnxPitEntryOutgoingFace> > > > > ns3::CcnxPitEntry::AddOutgoing(ns3::Ptr<ns3::CcnxFace> face) [member function]
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07001168 cls.add_method('AddOutgoing',
1169 '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::CcnxPitEntryOutgoingFace, std::allocator< ns3::CcnxPitEntryOutgoingFace > > > > >',
1170 [param('ns3::Ptr< ns3::CcnxFace >', 'face')])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001171 ## ccnx-pit-entry.h (module 'ndnSIM'): void ns3::CcnxPitEntry::AddSeenNonce(uint32_t nonce) [member function]
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07001172 cls.add_method('AddSeenNonce',
1173 'void',
1174 [param('uint32_t', 'nonce')])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001175 ## ccnx-pit-entry.h (module 'ndnSIM'): bool ns3::CcnxPitEntry::AreAllOutgoingInVain() const [member function]
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07001176 cls.add_method('AreAllOutgoingInVain',
1177 'bool',
1178 [],
1179 is_const=True)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001180 ## ccnx-pit-entry.h (module 'ndnSIM'): bool ns3::CcnxPitEntry::AreTherePromisingOutgoingFacesExcept(ns3::Ptr<ns3::CcnxFace> face) const [member function]
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07001181 cls.add_method('AreTherePromisingOutgoingFacesExcept',
1182 'bool',
1183 [param('ns3::Ptr< ns3::CcnxFace >', 'face')],
1184 is_const=True)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001185 ## ccnx-pit-entry.h (module 'ndnSIM'): void ns3::CcnxPitEntry::ClearIncoming() [member function]
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07001186 cls.add_method('ClearIncoming',
1187 'void',
1188 [])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001189 ## ccnx-pit-entry.h (module 'ndnSIM'): void ns3::CcnxPitEntry::ClearOutgoing() [member function]
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07001190 cls.add_method('ClearOutgoing',
1191 'void',
1192 [])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001193 ## ccnx-pit-entry.h (module 'ndnSIM'): ns3::Time const & ns3::CcnxPitEntry::GetExpireTime() const [member function]
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07001194 cls.add_method('GetExpireTime',
1195 'ns3::Time const &',
1196 [],
1197 is_const=True)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001198 ## ccnx-pit-entry.h (module 'ndnSIM'): ns3::CcnxNameComponents const & ns3::CcnxPitEntry::GetPrefix() const [member function]
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07001199 cls.add_method('GetPrefix',
1200 'ns3::CcnxNameComponents const &',
1201 [],
1202 is_const=True)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001203 ## ccnx-pit-entry.h (module 'ndnSIM'): void ns3::CcnxPitEntry::IncreaseAllowedRetxCount() [member function]
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07001204 cls.add_method('IncreaseAllowedRetxCount',
1205 'void',
1206 [])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001207 ## ccnx-pit-entry.h (module 'ndnSIM'): bool ns3::CcnxPitEntry::IsNonceSeen(uint32_t nonce) const [member function]
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07001208 cls.add_method('IsNonceSeen',
1209 'bool',
1210 [param('uint32_t', 'nonce')],
1211 is_const=True)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001212 ## ccnx-pit-entry.h (module 'ndnSIM'): void ns3::CcnxPitEntry::RemoveAllReferencesToFace(ns3::Ptr<ns3::CcnxFace> face) [member function]
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07001213 cls.add_method('RemoveAllReferencesToFace',
1214 'void',
1215 [param('ns3::Ptr< ns3::CcnxFace >', 'face')])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001216 ## ccnx-pit-entry.h (module 'ndnSIM'): void ns3::CcnxPitEntry::RemoveIncoming(ns3::Ptr<ns3::CcnxFace> face) [member function]
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07001217 cls.add_method('RemoveIncoming',
1218 'void',
1219 [param('ns3::Ptr< ns3::CcnxFace >', 'face')])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001220 ## ccnx-pit-entry.h (module 'ndnSIM'): void ns3::CcnxPitEntry::SetExpireTime(ns3::Time const & expireTime) [member function]
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07001221 cls.add_method('SetExpireTime',
1222 'void',
1223 [param('ns3::Time const &', 'expireTime')])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001224 ## ccnx-pit-entry.h (module 'ndnSIM'): void ns3::CcnxPitEntry::SetWaitingInVain(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::CcnxPitEntryOutgoingFace, std::allocator<ns3::CcnxPitEntryOutgoingFace> > > > > face) [member function]
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07001225 cls.add_method('SetWaitingInVain',
1226 'void',
1227 [param('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::CcnxPitEntryOutgoingFace, std::allocator< ns3::CcnxPitEntryOutgoingFace > > > > >', 'face')])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001228 ## ccnx-pit-entry.h (module 'ndnSIM'): void ns3::CcnxPitEntry::UpdateLifetime(ns3::Time const & offsetTime) [member function]
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07001229 cls.add_method('UpdateLifetime',
1230 'void',
1231 [param('ns3::Time const &', 'offsetTime')])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001232 ## ccnx-pit-entry.h (module 'ndnSIM'): ns3::CcnxPitEntry::m_expireTime [variable]
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07001233 cls.add_instance_attribute('m_expireTime', 'ns3::Time', is_const=False)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001234 ## ccnx-pit-entry.h (module 'ndnSIM'): ns3::CcnxPitEntry::m_fibEntry [variable]
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07001235 cls.add_instance_attribute('m_fibEntry', 'ns3::CcnxFibEntry const &', is_const=False)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001236 ## ccnx-pit-entry.h (module 'ndnSIM'): ns3::CcnxPitEntry::m_incoming [variable]
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07001237 cls.add_instance_attribute('m_incoming', 'boost::multi_index::multi_index_container< ns3::CcnxPitEntryIncomingFace, boost::multi_index::indexed_by< boost::multi_index::ordered_unique< boost::multi_index::tag< ns3::__ccnx_private::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::CcnxPitEntryIncomingFace, ns3::Ptr< ns3::CcnxFace >, & ( ns3::CcnxPitEntryIncomingFace::m_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, mpl_::na >, std::allocator< ns3::CcnxPitEntryIncomingFace > >', is_const=False)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001238 ## ccnx-pit-entry.h (module 'ndnSIM'): ns3::CcnxPitEntry::m_lastRetransmission [variable]
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07001239 cls.add_instance_attribute('m_lastRetransmission', 'ns3::Time', is_const=False)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001240 ## ccnx-pit-entry.h (module 'ndnSIM'): ns3::CcnxPitEntry::m_maxRetxCount [variable]
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07001241 cls.add_instance_attribute('m_maxRetxCount', 'uint32_t', is_const=False)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001242 ## ccnx-pit-entry.h (module 'ndnSIM'): ns3::CcnxPitEntry::m_outgoing [variable]
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07001243 cls.add_instance_attribute('m_outgoing', 'boost::multi_index::multi_index_container< ns3::CcnxPitEntryOutgoingFace, boost::multi_index::indexed_by< boost::multi_index::ordered_unique< boost::multi_index::tag< ns3::__ccnx_private::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::CcnxPitEntryOutgoingFace, ns3::Ptr< ns3::CcnxFace >, & ( ns3::CcnxPitEntryOutgoingFace::m_face ) >, mpl_::na >, boost::multi_index::ordered_non_unique< boost::multi_index::tag< ns3::__ccnx_private::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::CcnxPitEntryOutgoingFace, unsigned int, & ( ns3::CcnxPitEntryOutgoingFace::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::CcnxPitEntryOutgoingFace > >', is_const=False)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001244 ## ccnx-pit-entry.h (module 'ndnSIM'): ns3::CcnxPitEntry::m_prefix [variable]
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07001245 cls.add_instance_attribute('m_prefix', 'ns3::Ptr< ns3::CcnxNameComponents >', is_const=False)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001246 ## ccnx-pit-entry.h (module 'ndnSIM'): ns3::CcnxPitEntry::m_seenNonces [variable]
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07001247 cls.add_instance_attribute('m_seenNonces', 'std::set< unsigned int >', is_const=False)
1248 return
1249
1250def register_Ns3CcnxPitEntryContainer_methods(root_module, cls):
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001251 ## ccnx-pit.h (module 'ndnSIM'): ns3::CcnxPitEntryContainer::CcnxPitEntryContainer() [constructor]
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07001252 cls.add_constructor([])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001253 ## ccnx-pit.h (module 'ndnSIM'): ns3::CcnxPitEntryContainer::CcnxPitEntryContainer(ns3::CcnxPitEntryContainer const & arg0) [copy constructor]
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07001254 cls.add_constructor([param('ns3::CcnxPitEntryContainer const &', 'arg0')])
1255 return
1256
1257def register_Ns3CcnxPitEntryIncomingFace_methods(root_module, cls):
1258 cls.add_binary_comparison_operator('==')
1259 cls.add_binary_comparison_operator('<')
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001260 ## ccnx-pit-entry-incoming-face.h (module 'ndnSIM'): ns3::CcnxPitEntryIncomingFace::CcnxPitEntryIncomingFace(ns3::CcnxPitEntryIncomingFace const & arg0) [copy constructor]
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07001261 cls.add_constructor([param('ns3::CcnxPitEntryIncomingFace const &', 'arg0')])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001262 ## ccnx-pit-entry-incoming-face.h (module 'ndnSIM'): ns3::CcnxPitEntryIncomingFace::CcnxPitEntryIncomingFace(ns3::Ptr<ns3::CcnxFace> face) [constructor]
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07001263 cls.add_constructor([param('ns3::Ptr< ns3::CcnxFace >', 'face')])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001264 ## ccnx-pit-entry-incoming-face.h (module 'ndnSIM'): ns3::CcnxPitEntryIncomingFace::m_arrivalTime [variable]
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07001265 cls.add_instance_attribute('m_arrivalTime', 'ns3::Time', is_const=False)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001266 ## ccnx-pit-entry-incoming-face.h (module 'ndnSIM'): ns3::CcnxPitEntryIncomingFace::m_face [variable]
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07001267 cls.add_instance_attribute('m_face', 'ns3::Ptr< ns3::CcnxFace >', is_const=False)
1268 return
1269
1270def register_Ns3CcnxPitEntryIncomingFaceContainer_methods(root_module, cls):
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001271 ## ccnx-pit-entry.h (module 'ndnSIM'): ns3::CcnxPitEntryIncomingFaceContainer::CcnxPitEntryIncomingFaceContainer() [constructor]
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07001272 cls.add_constructor([])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001273 ## ccnx-pit-entry.h (module 'ndnSIM'): ns3::CcnxPitEntryIncomingFaceContainer::CcnxPitEntryIncomingFaceContainer(ns3::CcnxPitEntryIncomingFaceContainer const & arg0) [copy constructor]
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07001274 cls.add_constructor([param('ns3::CcnxPitEntryIncomingFaceContainer const &', 'arg0')])
1275 return
1276
1277def register_Ns3CcnxPitEntryNotFound_methods(root_module, cls):
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001278 ## ccnx-pit.h (module 'ndnSIM'): ns3::CcnxPitEntryNotFound::CcnxPitEntryNotFound() [constructor]
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07001279 cls.add_constructor([])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001280 ## ccnx-pit.h (module 'ndnSIM'): ns3::CcnxPitEntryNotFound::CcnxPitEntryNotFound(ns3::CcnxPitEntryNotFound const & arg0) [copy constructor]
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07001281 cls.add_constructor([param('ns3::CcnxPitEntryNotFound const &', 'arg0')])
1282 return
1283
1284def register_Ns3CcnxPitEntryOutgoingFace_methods(root_module, cls):
1285 cls.add_binary_comparison_operator('==')
1286 cls.add_binary_comparison_operator('<')
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001287 ## ccnx-pit-entry-outgoing-face.h (module 'ndnSIM'): ns3::CcnxPitEntryOutgoingFace::CcnxPitEntryOutgoingFace(ns3::CcnxPitEntryOutgoingFace const & arg0) [copy constructor]
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07001288 cls.add_constructor([param('ns3::CcnxPitEntryOutgoingFace const &', 'arg0')])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001289 ## ccnx-pit-entry-outgoing-face.h (module 'ndnSIM'): ns3::CcnxPitEntryOutgoingFace::CcnxPitEntryOutgoingFace(ns3::Ptr<ns3::CcnxFace> face) [constructor]
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07001290 cls.add_constructor([param('ns3::Ptr< ns3::CcnxFace >', 'face')])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001291 ## ccnx-pit-entry-outgoing-face.h (module 'ndnSIM'): void ns3::CcnxPitEntryOutgoingFace::UpdateOnRetransmit() [member function]
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07001292 cls.add_method('UpdateOnRetransmit',
1293 'void',
1294 [])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001295 ## ccnx-pit-entry-outgoing-face.h (module 'ndnSIM'): ns3::CcnxPitEntryOutgoingFace::m_face [variable]
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07001296 cls.add_instance_attribute('m_face', 'ns3::Ptr< ns3::CcnxFace >', is_const=False)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001297 ## ccnx-pit-entry-outgoing-face.h (module 'ndnSIM'): ns3::CcnxPitEntryOutgoingFace::m_retxCount [variable]
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07001298 cls.add_instance_attribute('m_retxCount', 'uint32_t', is_const=False)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001299 ## ccnx-pit-entry-outgoing-face.h (module 'ndnSIM'): ns3::CcnxPitEntryOutgoingFace::m_sendTime [variable]
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07001300 cls.add_instance_attribute('m_sendTime', 'ns3::Time', is_const=False)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001301 ## ccnx-pit-entry-outgoing-face.h (module 'ndnSIM'): ns3::CcnxPitEntryOutgoingFace::m_waitingInVain [variable]
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07001302 cls.add_instance_attribute('m_waitingInVain', 'bool', is_const=False)
1303 return
1304
1305def register_Ns3CcnxPitEntryOutgoingFaceContainer_methods(root_module, cls):
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001306 ## ccnx-pit-entry.h (module 'ndnSIM'): ns3::CcnxPitEntryOutgoingFaceContainer::CcnxPitEntryOutgoingFaceContainer() [constructor]
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07001307 cls.add_constructor([])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001308 ## ccnx-pit-entry.h (module 'ndnSIM'): ns3::CcnxPitEntryOutgoingFaceContainer::CcnxPitEntryOutgoingFaceContainer(ns3::CcnxPitEntryOutgoingFaceContainer const & arg0) [copy constructor]
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07001309 cls.add_constructor([param('ns3::CcnxPitEntryOutgoingFaceContainer const &', 'arg0')])
1310 return
1311
Alexander Afanasyev07827182011-12-13 01:07:32 -08001312def register_Ns3CcnxStackHelper_methods(root_module, cls):
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001313 ## ccnx-stack-helper.h (module 'ndnSIM'): ns3::CcnxStackHelper::CcnxStackHelper() [constructor]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07001314 cls.add_constructor([])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001315 ## ccnx-stack-helper.h (module 'ndnSIM'): void ns3::CcnxStackHelper::SetForwardingStrategy(std::string forwardingStrategy) [member function]
Alexander Afanasyev07827182011-12-13 01:07:32 -08001316 cls.add_method('SetForwardingStrategy',
1317 'void',
1318 [param('std::string', 'forwardingStrategy')])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001319 ## ccnx-stack-helper.h (module 'ndnSIM'): void ns3::CcnxStackHelper::EnableLimits(bool enable=true, ns3::Time avgRtt=ns3::Seconds( ), uint32_t avgContentObject=1100, uint32_t avgInterest=40) [member function]
Alexander Afanasyev07827182011-12-13 01:07:32 -08001320 cls.add_method('EnableLimits',
1321 'void',
1322 [param('bool', 'enable', default_value='true'), param('ns3::Time', 'avgRtt', default_value='ns3::Seconds(0)'), param('uint32_t', 'avgContentObject', default_value='1100'), param('uint32_t', 'avgInterest', default_value='40')])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001323 ## ccnx-stack-helper.h (module 'ndnSIM'): ns3::Ptr<ns3::CcnxFaceContainer> ns3::CcnxStackHelper::Install(std::string nodeName) const [member function]
Alexander Afanasyev07827182011-12-13 01:07:32 -08001324 cls.add_method('Install',
1325 'ns3::Ptr< ns3::CcnxFaceContainer >',
1326 [param('std::string', 'nodeName')],
Alexander Afanasyev381dea02011-11-03 08:33:26 -07001327 is_const=True)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001328 ## ccnx-stack-helper.h (module 'ndnSIM'): ns3::Ptr<ns3::CcnxFaceContainer> ns3::CcnxStackHelper::Install(ns3::Ptr<ns3::Node> node) const [member function]
Alexander Afanasyev07827182011-12-13 01:07:32 -08001329 cls.add_method('Install',
1330 'ns3::Ptr< ns3::CcnxFaceContainer >',
1331 [param('ns3::Ptr< ns3::Node >', 'node')],
1332 is_const=True)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001333 ## ccnx-stack-helper.h (module 'ndnSIM'): ns3::Ptr<ns3::CcnxFaceContainer> ns3::CcnxStackHelper::Install(ns3::NodeContainer c) const [member function]
Alexander Afanasyev07827182011-12-13 01:07:32 -08001334 cls.add_method('Install',
1335 'ns3::Ptr< ns3::CcnxFaceContainer >',
1336 [param('ns3::NodeContainer', 'c')],
1337 is_const=True)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001338 ## ccnx-stack-helper.h (module 'ndnSIM'): ns3::Ptr<ns3::CcnxFaceContainer> ns3::CcnxStackHelper::InstallAll() const [member function]
Alexander Afanasyev07827182011-12-13 01:07:32 -08001339 cls.add_method('InstallAll',
1340 'ns3::Ptr< ns3::CcnxFaceContainer >',
Alexander Afanasyev381dea02011-11-03 08:33:26 -07001341 [],
1342 is_const=True)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001343 ## ccnx-stack-helper.h (module 'ndnSIM'): static void ns3::CcnxStackHelper::AddRoute(std::string nodeName, std::string prefix, uint32_t faceId, int32_t metric) [member function]
Alexander Afanasyev07827182011-12-13 01:07:32 -08001344 cls.add_method('AddRoute',
1345 'void',
1346 [param('std::string', 'nodeName'), param('std::string', 'prefix'), param('uint32_t', 'faceId'), param('int32_t', 'metric')],
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08001347 is_static=True)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001348 ## ccnx-stack-helper.h (module 'ndnSIM'): static void ns3::CcnxStackHelper::AddRoute(ns3::Ptr<ns3::Node> node, std::string prefix, ns3::Ptr<ns3::CcnxFace> face, int32_t metric) [member function]
Alexander Afanasyev07827182011-12-13 01:07:32 -08001349 cls.add_method('AddRoute',
1350 'void',
1351 [param('ns3::Ptr< ns3::Node >', 'node'), param('std::string', 'prefix'), param('ns3::Ptr< ns3::CcnxFace >', 'face'), param('int32_t', 'metric')],
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08001352 is_static=True)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001353 ## ccnx-stack-helper.h (module 'ndnSIM'): void ns3::CcnxStackHelper::SetDefaultRoutes(bool needSet) [member function]
Alexander Afanasyev07827182011-12-13 01:07:32 -08001354 cls.add_method('SetDefaultRoutes',
1355 'void',
1356 [param('bool', 'needSet')])
Alexander Afanasyev381dea02011-11-03 08:33:26 -07001357 return
1358
Alexander Afanasyev53872ce2011-12-16 13:17:18 -08001359def register_Ns3CcnxUnknownHeaderException_methods(root_module, cls):
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001360 ## ccnx-header-helper.h (module 'ndnSIM'): ns3::CcnxUnknownHeaderException::CcnxUnknownHeaderException() [constructor]
Alexander Afanasyev53872ce2011-12-16 13:17:18 -08001361 cls.add_constructor([])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001362 ## ccnx-header-helper.h (module 'ndnSIM'): ns3::CcnxUnknownHeaderException::CcnxUnknownHeaderException(ns3::CcnxUnknownHeaderException const & arg0) [copy constructor]
Alexander Afanasyev53872ce2011-12-16 13:17:18 -08001363 cls.add_constructor([param('ns3::CcnxUnknownHeaderException const &', 'arg0')])
1364 return
1365
Alexander Afanasyev381dea02011-11-03 08:33:26 -07001366def register_Ns3EventId_methods(root_module, cls):
1367 cls.add_binary_comparison_operator('!=')
1368 cls.add_binary_comparison_operator('==')
1369 ## event-id.h (module 'core'): ns3::EventId::EventId(ns3::EventId const & arg0) [copy constructor]
1370 cls.add_constructor([param('ns3::EventId const &', 'arg0')])
1371 ## event-id.h (module 'core'): ns3::EventId::EventId() [constructor]
1372 cls.add_constructor([])
1373 ## event-id.h (module 'core'): ns3::EventId::EventId(ns3::Ptr<ns3::EventImpl> const & impl, uint64_t ts, uint32_t context, uint32_t uid) [constructor]
1374 cls.add_constructor([param('ns3::Ptr< ns3::EventImpl > const &', 'impl'), param('uint64_t', 'ts'), param('uint32_t', 'context'), param('uint32_t', 'uid')])
1375 ## event-id.h (module 'core'): void ns3::EventId::Cancel() [member function]
1376 cls.add_method('Cancel',
1377 'void',
1378 [])
1379 ## event-id.h (module 'core'): uint32_t ns3::EventId::GetContext() const [member function]
1380 cls.add_method('GetContext',
1381 'uint32_t',
1382 [],
1383 is_const=True)
1384 ## event-id.h (module 'core'): uint64_t ns3::EventId::GetTs() const [member function]
1385 cls.add_method('GetTs',
1386 'uint64_t',
1387 [],
1388 is_const=True)
1389 ## event-id.h (module 'core'): uint32_t ns3::EventId::GetUid() const [member function]
1390 cls.add_method('GetUid',
1391 'uint32_t',
1392 [],
1393 is_const=True)
1394 ## event-id.h (module 'core'): bool ns3::EventId::IsExpired() const [member function]
1395 cls.add_method('IsExpired',
1396 'bool',
1397 [],
1398 is_const=True)
1399 ## event-id.h (module 'core'): bool ns3::EventId::IsRunning() const [member function]
1400 cls.add_method('IsRunning',
1401 'bool',
1402 [],
1403 is_const=True)
1404 ## event-id.h (module 'core'): ns3::EventImpl * ns3::EventId::PeekEventImpl() const [member function]
1405 cls.add_method('PeekEventImpl',
1406 'ns3::EventImpl *',
1407 [],
1408 is_const=True)
1409 return
1410
1411def register_Ns3Ipv4Address_methods(root_module, cls):
1412 cls.add_binary_comparison_operator('!=')
1413 cls.add_output_stream_operator()
1414 cls.add_binary_comparison_operator('==')
1415 cls.add_binary_comparison_operator('<')
1416 ## ipv4-address.h (module 'network'): ns3::Ipv4Address::Ipv4Address(ns3::Ipv4Address const & arg0) [copy constructor]
1417 cls.add_constructor([param('ns3::Ipv4Address const &', 'arg0')])
1418 ## ipv4-address.h (module 'network'): ns3::Ipv4Address::Ipv4Address() [constructor]
1419 cls.add_constructor([])
1420 ## ipv4-address.h (module 'network'): ns3::Ipv4Address::Ipv4Address(uint32_t address) [constructor]
1421 cls.add_constructor([param('uint32_t', 'address')])
1422 ## ipv4-address.h (module 'network'): ns3::Ipv4Address::Ipv4Address(char const * address) [constructor]
1423 cls.add_constructor([param('char const *', 'address')])
1424 ## ipv4-address.h (module 'network'): ns3::Ipv4Address ns3::Ipv4Address::CombineMask(ns3::Ipv4Mask const & mask) const [member function]
1425 cls.add_method('CombineMask',
1426 'ns3::Ipv4Address',
1427 [param('ns3::Ipv4Mask const &', 'mask')],
1428 is_const=True)
1429 ## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::ConvertFrom(ns3::Address const & address) [member function]
1430 cls.add_method('ConvertFrom',
1431 'ns3::Ipv4Address',
1432 [param('ns3::Address const &', 'address')],
1433 is_static=True)
1434 ## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::Deserialize(uint8_t const * buf) [member function]
1435 cls.add_method('Deserialize',
1436 'ns3::Ipv4Address',
1437 [param('uint8_t const *', 'buf')],
1438 is_static=True)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001439 ## ipv4-address.h (module 'network'): uint32_t const & ns3::Ipv4Address::Get() const [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07001440 cls.add_method('Get',
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07001441 'uint32_t const &',
Alexander Afanasyev381dea02011-11-03 08:33:26 -07001442 [],
1443 is_const=True)
1444 ## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::GetAny() [member function]
1445 cls.add_method('GetAny',
1446 'ns3::Ipv4Address',
1447 [],
1448 is_static=True)
1449 ## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::GetBroadcast() [member function]
1450 cls.add_method('GetBroadcast',
1451 'ns3::Ipv4Address',
1452 [],
1453 is_static=True)
1454 ## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::GetLoopback() [member function]
1455 cls.add_method('GetLoopback',
1456 'ns3::Ipv4Address',
1457 [],
1458 is_static=True)
1459 ## ipv4-address.h (module 'network'): ns3::Ipv4Address ns3::Ipv4Address::GetSubnetDirectedBroadcast(ns3::Ipv4Mask const & mask) const [member function]
1460 cls.add_method('GetSubnetDirectedBroadcast',
1461 'ns3::Ipv4Address',
1462 [param('ns3::Ipv4Mask const &', 'mask')],
1463 is_const=True)
1464 ## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::GetZero() [member function]
1465 cls.add_method('GetZero',
1466 'ns3::Ipv4Address',
1467 [],
1468 is_static=True)
1469 ## ipv4-address.h (module 'network'): bool ns3::Ipv4Address::IsBroadcast() const [member function]
1470 cls.add_method('IsBroadcast',
1471 'bool',
1472 [],
1473 is_const=True)
1474 ## ipv4-address.h (module 'network'): bool ns3::Ipv4Address::IsEqual(ns3::Ipv4Address const & other) const [member function]
1475 cls.add_method('IsEqual',
1476 'bool',
1477 [param('ns3::Ipv4Address const &', 'other')],
1478 is_const=True)
1479 ## ipv4-address.h (module 'network'): bool ns3::Ipv4Address::IsLocalMulticast() const [member function]
1480 cls.add_method('IsLocalMulticast',
1481 'bool',
1482 [],
1483 is_const=True)
1484 ## ipv4-address.h (module 'network'): static bool ns3::Ipv4Address::IsMatchingType(ns3::Address const & address) [member function]
1485 cls.add_method('IsMatchingType',
1486 'bool',
1487 [param('ns3::Address const &', 'address')],
1488 is_static=True)
1489 ## ipv4-address.h (module 'network'): bool ns3::Ipv4Address::IsMulticast() const [member function]
1490 cls.add_method('IsMulticast',
1491 'bool',
1492 [],
1493 is_const=True)
1494 ## ipv4-address.h (module 'network'): bool ns3::Ipv4Address::IsSubnetDirectedBroadcast(ns3::Ipv4Mask const & mask) const [member function]
1495 cls.add_method('IsSubnetDirectedBroadcast',
1496 'bool',
1497 [param('ns3::Ipv4Mask const &', 'mask')],
1498 is_const=True)
1499 ## ipv4-address.h (module 'network'): void ns3::Ipv4Address::Print(std::ostream & os) const [member function]
1500 cls.add_method('Print',
1501 'void',
1502 [param('std::ostream &', 'os')],
1503 is_const=True)
1504 ## ipv4-address.h (module 'network'): void ns3::Ipv4Address::Serialize(uint8_t * buf) const [member function]
1505 cls.add_method('Serialize',
1506 'void',
1507 [param('uint8_t *', 'buf')],
1508 is_const=True)
1509 ## ipv4-address.h (module 'network'): void ns3::Ipv4Address::Set(uint32_t address) [member function]
1510 cls.add_method('Set',
1511 'void',
1512 [param('uint32_t', 'address')])
1513 ## ipv4-address.h (module 'network'): void ns3::Ipv4Address::Set(char const * address) [member function]
1514 cls.add_method('Set',
1515 'void',
1516 [param('char const *', 'address')])
1517 return
1518
1519def register_Ns3Ipv4Mask_methods(root_module, cls):
1520 cls.add_binary_comparison_operator('!=')
1521 cls.add_output_stream_operator()
1522 cls.add_binary_comparison_operator('==')
1523 ## ipv4-address.h (module 'network'): ns3::Ipv4Mask::Ipv4Mask(ns3::Ipv4Mask const & arg0) [copy constructor]
1524 cls.add_constructor([param('ns3::Ipv4Mask const &', 'arg0')])
1525 ## ipv4-address.h (module 'network'): ns3::Ipv4Mask::Ipv4Mask() [constructor]
1526 cls.add_constructor([])
1527 ## ipv4-address.h (module 'network'): ns3::Ipv4Mask::Ipv4Mask(uint32_t mask) [constructor]
1528 cls.add_constructor([param('uint32_t', 'mask')])
1529 ## ipv4-address.h (module 'network'): ns3::Ipv4Mask::Ipv4Mask(char const * mask) [constructor]
1530 cls.add_constructor([param('char const *', 'mask')])
1531 ## ipv4-address.h (module 'network'): uint32_t ns3::Ipv4Mask::Get() const [member function]
1532 cls.add_method('Get',
1533 'uint32_t',
1534 [],
1535 is_const=True)
1536 ## ipv4-address.h (module 'network'): uint32_t ns3::Ipv4Mask::GetInverse() const [member function]
1537 cls.add_method('GetInverse',
1538 'uint32_t',
1539 [],
1540 is_const=True)
1541 ## ipv4-address.h (module 'network'): static ns3::Ipv4Mask ns3::Ipv4Mask::GetLoopback() [member function]
1542 cls.add_method('GetLoopback',
1543 'ns3::Ipv4Mask',
1544 [],
1545 is_static=True)
1546 ## ipv4-address.h (module 'network'): static ns3::Ipv4Mask ns3::Ipv4Mask::GetOnes() [member function]
1547 cls.add_method('GetOnes',
1548 'ns3::Ipv4Mask',
1549 [],
1550 is_static=True)
1551 ## ipv4-address.h (module 'network'): uint16_t ns3::Ipv4Mask::GetPrefixLength() const [member function]
1552 cls.add_method('GetPrefixLength',
1553 'uint16_t',
1554 [],
1555 is_const=True)
1556 ## ipv4-address.h (module 'network'): static ns3::Ipv4Mask ns3::Ipv4Mask::GetZero() [member function]
1557 cls.add_method('GetZero',
1558 'ns3::Ipv4Mask',
1559 [],
1560 is_static=True)
1561 ## ipv4-address.h (module 'network'): bool ns3::Ipv4Mask::IsEqual(ns3::Ipv4Mask other) const [member function]
1562 cls.add_method('IsEqual',
1563 'bool',
1564 [param('ns3::Ipv4Mask', 'other')],
1565 is_const=True)
1566 ## ipv4-address.h (module 'network'): bool ns3::Ipv4Mask::IsMatch(ns3::Ipv4Address a, ns3::Ipv4Address b) const [member function]
1567 cls.add_method('IsMatch',
1568 'bool',
1569 [param('ns3::Ipv4Address', 'a'), param('ns3::Ipv4Address', 'b')],
1570 is_const=True)
1571 ## ipv4-address.h (module 'network'): void ns3::Ipv4Mask::Print(std::ostream & os) const [member function]
1572 cls.add_method('Print',
1573 'void',
1574 [param('std::ostream &', 'os')],
1575 is_const=True)
1576 ## ipv4-address.h (module 'network'): void ns3::Ipv4Mask::Set(uint32_t mask) [member function]
1577 cls.add_method('Set',
1578 'void',
1579 [param('uint32_t', 'mask')])
1580 return
1581
1582def register_Ns3Ipv6Address_methods(root_module, cls):
1583 cls.add_binary_comparison_operator('!=')
1584 cls.add_output_stream_operator()
1585 cls.add_binary_comparison_operator('==')
1586 cls.add_binary_comparison_operator('<')
1587 ## ipv6-address.h (module 'network'): ns3::Ipv6Address::Ipv6Address() [constructor]
1588 cls.add_constructor([])
1589 ## ipv6-address.h (module 'network'): ns3::Ipv6Address::Ipv6Address(char const * address) [constructor]
1590 cls.add_constructor([param('char const *', 'address')])
1591 ## ipv6-address.h (module 'network'): ns3::Ipv6Address::Ipv6Address(uint8_t * address) [constructor]
1592 cls.add_constructor([param('uint8_t *', 'address')])
1593 ## ipv6-address.h (module 'network'): ns3::Ipv6Address::Ipv6Address(ns3::Ipv6Address const & addr) [copy constructor]
1594 cls.add_constructor([param('ns3::Ipv6Address const &', 'addr')])
1595 ## ipv6-address.h (module 'network'): ns3::Ipv6Address::Ipv6Address(ns3::Ipv6Address const * addr) [constructor]
1596 cls.add_constructor([param('ns3::Ipv6Address const *', 'addr')])
1597 ## ipv6-address.h (module 'network'): ns3::Ipv6Address ns3::Ipv6Address::CombinePrefix(ns3::Ipv6Prefix const & prefix) [member function]
1598 cls.add_method('CombinePrefix',
1599 'ns3::Ipv6Address',
1600 [param('ns3::Ipv6Prefix const &', 'prefix')])
1601 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::ConvertFrom(ns3::Address const & address) [member function]
1602 cls.add_method('ConvertFrom',
1603 'ns3::Ipv6Address',
1604 [param('ns3::Address const &', 'address')],
1605 is_static=True)
1606 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::Deserialize(uint8_t const * buf) [member function]
1607 cls.add_method('Deserialize',
1608 'ns3::Ipv6Address',
1609 [param('uint8_t const *', 'buf')],
1610 is_static=True)
1611 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetAllHostsMulticast() [member function]
1612 cls.add_method('GetAllHostsMulticast',
1613 'ns3::Ipv6Address',
1614 [],
1615 is_static=True)
1616 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetAllNodesMulticast() [member function]
1617 cls.add_method('GetAllNodesMulticast',
1618 'ns3::Ipv6Address',
1619 [],
1620 is_static=True)
1621 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetAllRoutersMulticast() [member function]
1622 cls.add_method('GetAllRoutersMulticast',
1623 'ns3::Ipv6Address',
1624 [],
1625 is_static=True)
1626 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetAny() [member function]
1627 cls.add_method('GetAny',
1628 'ns3::Ipv6Address',
1629 [],
1630 is_static=True)
1631 ## ipv6-address.h (module 'network'): void ns3::Ipv6Address::GetBytes(uint8_t * buf) const [member function]
1632 cls.add_method('GetBytes',
1633 'void',
1634 [param('uint8_t *', 'buf')],
1635 is_const=True)
Alexander Afanasyev6f933532012-02-29 13:30:37 -08001636 ## ipv6-address.h (module 'network'): ns3::Ipv4Address ns3::Ipv6Address::GetIpv4MappedAddress() const [member function]
1637 cls.add_method('GetIpv4MappedAddress',
1638 'ns3::Ipv4Address',
1639 [],
1640 is_const=True)
Alexander Afanasyev381dea02011-11-03 08:33:26 -07001641 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetLoopback() [member function]
1642 cls.add_method('GetLoopback',
1643 'ns3::Ipv6Address',
1644 [],
1645 is_static=True)
1646 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetOnes() [member function]
1647 cls.add_method('GetOnes',
1648 'ns3::Ipv6Address',
1649 [],
1650 is_static=True)
1651 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetZero() [member function]
1652 cls.add_method('GetZero',
1653 'ns3::Ipv6Address',
1654 [],
1655 is_static=True)
1656 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsAllHostsMulticast() const [member function]
1657 cls.add_method('IsAllHostsMulticast',
1658 'bool',
1659 [],
1660 is_const=True)
1661 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsAllNodesMulticast() const [member function]
1662 cls.add_method('IsAllNodesMulticast',
1663 'bool',
1664 [],
1665 is_const=True)
1666 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsAllRoutersMulticast() const [member function]
1667 cls.add_method('IsAllRoutersMulticast',
1668 'bool',
1669 [],
1670 is_const=True)
1671 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsAny() const [member function]
1672 cls.add_method('IsAny',
1673 'bool',
1674 [],
1675 is_const=True)
1676 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsEqual(ns3::Ipv6Address const & other) const [member function]
1677 cls.add_method('IsEqual',
1678 'bool',
1679 [param('ns3::Ipv6Address const &', 'other')],
1680 is_const=True)
Alexander Afanasyev6f933532012-02-29 13:30:37 -08001681 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsIpv4MappedAddress() [member function]
1682 cls.add_method('IsIpv4MappedAddress',
1683 'bool',
1684 [])
Alexander Afanasyev381dea02011-11-03 08:33:26 -07001685 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsLinkLocal() const [member function]
1686 cls.add_method('IsLinkLocal',
1687 'bool',
1688 [],
1689 is_const=True)
Alexander Afanasyev6f933532012-02-29 13:30:37 -08001690 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsLinkLocalMulticast() const [member function]
1691 cls.add_method('IsLinkLocalMulticast',
1692 'bool',
1693 [],
1694 is_const=True)
Alexander Afanasyev381dea02011-11-03 08:33:26 -07001695 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsLocalhost() const [member function]
1696 cls.add_method('IsLocalhost',
1697 'bool',
1698 [],
1699 is_const=True)
1700 ## ipv6-address.h (module 'network'): static bool ns3::Ipv6Address::IsMatchingType(ns3::Address const & address) [member function]
1701 cls.add_method('IsMatchingType',
1702 'bool',
1703 [param('ns3::Address const &', 'address')],
1704 is_static=True)
1705 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsMulticast() const [member function]
1706 cls.add_method('IsMulticast',
1707 'bool',
1708 [],
1709 is_const=True)
1710 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsSolicitedMulticast() const [member function]
1711 cls.add_method('IsSolicitedMulticast',
1712 'bool',
1713 [],
1714 is_const=True)
1715 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::MakeAutoconfiguredAddress(ns3::Mac48Address addr, ns3::Ipv6Address prefix) [member function]
1716 cls.add_method('MakeAutoconfiguredAddress',
1717 'ns3::Ipv6Address',
1718 [param('ns3::Mac48Address', 'addr'), param('ns3::Ipv6Address', 'prefix')],
1719 is_static=True)
1720 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::MakeAutoconfiguredLinkLocalAddress(ns3::Mac48Address mac) [member function]
1721 cls.add_method('MakeAutoconfiguredLinkLocalAddress',
1722 'ns3::Ipv6Address',
1723 [param('ns3::Mac48Address', 'mac')],
1724 is_static=True)
Alexander Afanasyev6f933532012-02-29 13:30:37 -08001725 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::MakeIpv4MappedAddress(ns3::Ipv4Address addr) [member function]
1726 cls.add_method('MakeIpv4MappedAddress',
1727 'ns3::Ipv6Address',
1728 [param('ns3::Ipv4Address', 'addr')],
1729 is_static=True)
Alexander Afanasyev381dea02011-11-03 08:33:26 -07001730 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::MakeSolicitedAddress(ns3::Ipv6Address addr) [member function]
1731 cls.add_method('MakeSolicitedAddress',
1732 'ns3::Ipv6Address',
1733 [param('ns3::Ipv6Address', 'addr')],
1734 is_static=True)
1735 ## ipv6-address.h (module 'network'): void ns3::Ipv6Address::Print(std::ostream & os) const [member function]
1736 cls.add_method('Print',
1737 'void',
1738 [param('std::ostream &', 'os')],
1739 is_const=True)
1740 ## ipv6-address.h (module 'network'): void ns3::Ipv6Address::Serialize(uint8_t * buf) const [member function]
1741 cls.add_method('Serialize',
1742 'void',
1743 [param('uint8_t *', 'buf')],
1744 is_const=True)
1745 ## ipv6-address.h (module 'network'): void ns3::Ipv6Address::Set(char const * address) [member function]
1746 cls.add_method('Set',
1747 'void',
1748 [param('char const *', 'address')])
1749 ## ipv6-address.h (module 'network'): void ns3::Ipv6Address::Set(uint8_t * address) [member function]
1750 cls.add_method('Set',
1751 'void',
1752 [param('uint8_t *', 'address')])
1753 return
1754
1755def register_Ns3Ipv6Prefix_methods(root_module, cls):
1756 cls.add_binary_comparison_operator('!=')
1757 cls.add_output_stream_operator()
1758 cls.add_binary_comparison_operator('==')
1759 ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix() [constructor]
1760 cls.add_constructor([])
1761 ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix(uint8_t * prefix) [constructor]
1762 cls.add_constructor([param('uint8_t *', 'prefix')])
1763 ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix(char const * prefix) [constructor]
1764 cls.add_constructor([param('char const *', 'prefix')])
1765 ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix(uint8_t prefix) [constructor]
1766 cls.add_constructor([param('uint8_t', 'prefix')])
1767 ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix(ns3::Ipv6Prefix const & prefix) [copy constructor]
1768 cls.add_constructor([param('ns3::Ipv6Prefix const &', 'prefix')])
1769 ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix(ns3::Ipv6Prefix const * prefix) [constructor]
1770 cls.add_constructor([param('ns3::Ipv6Prefix const *', 'prefix')])
1771 ## ipv6-address.h (module 'network'): void ns3::Ipv6Prefix::GetBytes(uint8_t * buf) const [member function]
1772 cls.add_method('GetBytes',
1773 'void',
1774 [param('uint8_t *', 'buf')],
1775 is_const=True)
1776 ## ipv6-address.h (module 'network'): static ns3::Ipv6Prefix ns3::Ipv6Prefix::GetLoopback() [member function]
1777 cls.add_method('GetLoopback',
1778 'ns3::Ipv6Prefix',
1779 [],
1780 is_static=True)
1781 ## ipv6-address.h (module 'network'): static ns3::Ipv6Prefix ns3::Ipv6Prefix::GetOnes() [member function]
1782 cls.add_method('GetOnes',
1783 'ns3::Ipv6Prefix',
1784 [],
1785 is_static=True)
1786 ## ipv6-address.h (module 'network'): uint8_t ns3::Ipv6Prefix::GetPrefixLength() const [member function]
1787 cls.add_method('GetPrefixLength',
1788 'uint8_t',
1789 [],
1790 is_const=True)
1791 ## ipv6-address.h (module 'network'): static ns3::Ipv6Prefix ns3::Ipv6Prefix::GetZero() [member function]
1792 cls.add_method('GetZero',
1793 'ns3::Ipv6Prefix',
1794 [],
1795 is_static=True)
1796 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Prefix::IsEqual(ns3::Ipv6Prefix const & other) const [member function]
1797 cls.add_method('IsEqual',
1798 'bool',
1799 [param('ns3::Ipv6Prefix const &', 'other')],
1800 is_const=True)
1801 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Prefix::IsMatch(ns3::Ipv6Address a, ns3::Ipv6Address b) const [member function]
1802 cls.add_method('IsMatch',
1803 'bool',
1804 [param('ns3::Ipv6Address', 'a'), param('ns3::Ipv6Address', 'b')],
1805 is_const=True)
1806 ## ipv6-address.h (module 'network'): void ns3::Ipv6Prefix::Print(std::ostream & os) const [member function]
1807 cls.add_method('Print',
1808 'void',
1809 [param('std::ostream &', 'os')],
1810 is_const=True)
1811 return
1812
Alexander Afanasyev381dea02011-11-03 08:33:26 -07001813def register_Ns3NodeContainer_methods(root_module, cls):
1814 ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer(ns3::NodeContainer const & arg0) [copy constructor]
1815 cls.add_constructor([param('ns3::NodeContainer const &', 'arg0')])
1816 ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer() [constructor]
1817 cls.add_constructor([])
1818 ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer(ns3::Ptr<ns3::Node> node) [constructor]
1819 cls.add_constructor([param('ns3::Ptr< ns3::Node >', 'node')])
1820 ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer(std::string nodeName) [constructor]
1821 cls.add_constructor([param('std::string', 'nodeName')])
1822 ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer(ns3::NodeContainer const & a, ns3::NodeContainer const & b) [constructor]
1823 cls.add_constructor([param('ns3::NodeContainer const &', 'a'), param('ns3::NodeContainer const &', 'b')])
1824 ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer(ns3::NodeContainer const & a, ns3::NodeContainer const & b, ns3::NodeContainer const & c) [constructor]
1825 cls.add_constructor([param('ns3::NodeContainer const &', 'a'), param('ns3::NodeContainer const &', 'b'), param('ns3::NodeContainer const &', 'c')])
1826 ## 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]
1827 cls.add_constructor([param('ns3::NodeContainer const &', 'a'), param('ns3::NodeContainer const &', 'b'), param('ns3::NodeContainer const &', 'c'), param('ns3::NodeContainer const &', 'd')])
1828 ## 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]
1829 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')])
1830 ## node-container.h (module 'network'): void ns3::NodeContainer::Add(ns3::NodeContainer other) [member function]
1831 cls.add_method('Add',
1832 'void',
1833 [param('ns3::NodeContainer', 'other')])
1834 ## node-container.h (module 'network'): void ns3::NodeContainer::Add(ns3::Ptr<ns3::Node> node) [member function]
1835 cls.add_method('Add',
1836 'void',
1837 [param('ns3::Ptr< ns3::Node >', 'node')])
1838 ## node-container.h (module 'network'): void ns3::NodeContainer::Add(std::string nodeName) [member function]
1839 cls.add_method('Add',
1840 'void',
1841 [param('std::string', 'nodeName')])
1842 ## 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]
1843 cls.add_method('Begin',
1844 '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Node > const, std::vector< ns3::Ptr< ns3::Node > > >',
1845 [],
1846 is_const=True)
1847 ## node-container.h (module 'network'): void ns3::NodeContainer::Create(uint32_t n) [member function]
1848 cls.add_method('Create',
1849 'void',
1850 [param('uint32_t', 'n')])
1851 ## node-container.h (module 'network'): void ns3::NodeContainer::Create(uint32_t n, uint32_t systemId) [member function]
1852 cls.add_method('Create',
1853 'void',
1854 [param('uint32_t', 'n'), param('uint32_t', 'systemId')])
1855 ## 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]
1856 cls.add_method('End',
1857 '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Node > const, std::vector< ns3::Ptr< ns3::Node > > >',
1858 [],
1859 is_const=True)
1860 ## node-container.h (module 'network'): ns3::Ptr<ns3::Node> ns3::NodeContainer::Get(uint32_t i) const [member function]
1861 cls.add_method('Get',
1862 'ns3::Ptr< ns3::Node >',
1863 [param('uint32_t', 'i')],
1864 is_const=True)
1865 ## node-container.h (module 'network'): static ns3::NodeContainer ns3::NodeContainer::GetGlobal() [member function]
1866 cls.add_method('GetGlobal',
1867 'ns3::NodeContainer',
1868 [],
1869 is_static=True)
1870 ## node-container.h (module 'network'): uint32_t ns3::NodeContainer::GetN() const [member function]
1871 cls.add_method('GetN',
1872 'uint32_t',
1873 [],
1874 is_const=True)
Alexander Afanasyev381dea02011-11-03 08:33:26 -07001875 return
1876
1877def register_Ns3ObjectBase_methods(root_module, cls):
1878 ## object-base.h (module 'core'): ns3::ObjectBase::ObjectBase() [constructor]
1879 cls.add_constructor([])
1880 ## object-base.h (module 'core'): ns3::ObjectBase::ObjectBase(ns3::ObjectBase const & arg0) [copy constructor]
1881 cls.add_constructor([param('ns3::ObjectBase const &', 'arg0')])
1882 ## object-base.h (module 'core'): void ns3::ObjectBase::GetAttribute(std::string name, ns3::AttributeValue & value) const [member function]
1883 cls.add_method('GetAttribute',
1884 'void',
1885 [param('std::string', 'name'), param('ns3::AttributeValue &', 'value')],
1886 is_const=True)
1887 ## object-base.h (module 'core'): bool ns3::ObjectBase::GetAttributeFailSafe(std::string name, ns3::AttributeValue & attribute) const [member function]
1888 cls.add_method('GetAttributeFailSafe',
1889 'bool',
1890 [param('std::string', 'name'), param('ns3::AttributeValue &', 'attribute')],
1891 is_const=True)
1892 ## object-base.h (module 'core'): ns3::TypeId ns3::ObjectBase::GetInstanceTypeId() const [member function]
1893 cls.add_method('GetInstanceTypeId',
1894 'ns3::TypeId',
1895 [],
1896 is_pure_virtual=True, is_const=True, is_virtual=True)
1897 ## object-base.h (module 'core'): static ns3::TypeId ns3::ObjectBase::GetTypeId() [member function]
1898 cls.add_method('GetTypeId',
1899 'ns3::TypeId',
1900 [],
1901 is_static=True)
1902 ## object-base.h (module 'core'): void ns3::ObjectBase::SetAttribute(std::string name, ns3::AttributeValue const & value) [member function]
1903 cls.add_method('SetAttribute',
1904 'void',
1905 [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')])
1906 ## object-base.h (module 'core'): bool ns3::ObjectBase::SetAttributeFailSafe(std::string name, ns3::AttributeValue const & value) [member function]
1907 cls.add_method('SetAttributeFailSafe',
1908 'bool',
1909 [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')])
1910 ## object-base.h (module 'core'): bool ns3::ObjectBase::TraceConnect(std::string name, std::string context, ns3::CallbackBase const & cb) [member function]
1911 cls.add_method('TraceConnect',
1912 'bool',
1913 [param('std::string', 'name'), param('std::string', 'context'), param('ns3::CallbackBase const &', 'cb')])
1914 ## object-base.h (module 'core'): bool ns3::ObjectBase::TraceConnectWithoutContext(std::string name, ns3::CallbackBase const & cb) [member function]
1915 cls.add_method('TraceConnectWithoutContext',
1916 'bool',
1917 [param('std::string', 'name'), param('ns3::CallbackBase const &', 'cb')])
1918 ## object-base.h (module 'core'): bool ns3::ObjectBase::TraceDisconnect(std::string name, std::string context, ns3::CallbackBase const & cb) [member function]
1919 cls.add_method('TraceDisconnect',
1920 'bool',
1921 [param('std::string', 'name'), param('std::string', 'context'), param('ns3::CallbackBase const &', 'cb')])
1922 ## object-base.h (module 'core'): bool ns3::ObjectBase::TraceDisconnectWithoutContext(std::string name, ns3::CallbackBase const & cb) [member function]
1923 cls.add_method('TraceDisconnectWithoutContext',
1924 'bool',
1925 [param('std::string', 'name'), param('ns3::CallbackBase const &', 'cb')])
1926 ## object-base.h (module 'core'): void ns3::ObjectBase::ConstructSelf(ns3::AttributeConstructionList const & attributes) [member function]
1927 cls.add_method('ConstructSelf',
1928 'void',
1929 [param('ns3::AttributeConstructionList const &', 'attributes')],
1930 visibility='protected')
1931 ## object-base.h (module 'core'): void ns3::ObjectBase::NotifyConstructionCompleted() [member function]
1932 cls.add_method('NotifyConstructionCompleted',
1933 'void',
1934 [],
1935 visibility='protected', is_virtual=True)
1936 return
1937
1938def register_Ns3ObjectDeleter_methods(root_module, cls):
1939 ## object.h (module 'core'): ns3::ObjectDeleter::ObjectDeleter() [constructor]
1940 cls.add_constructor([])
1941 ## object.h (module 'core'): ns3::ObjectDeleter::ObjectDeleter(ns3::ObjectDeleter const & arg0) [copy constructor]
1942 cls.add_constructor([param('ns3::ObjectDeleter const &', 'arg0')])
1943 ## object.h (module 'core'): static void ns3::ObjectDeleter::Delete(ns3::Object * object) [member function]
1944 cls.add_method('Delete',
1945 'void',
1946 [param('ns3::Object *', 'object')],
1947 is_static=True)
1948 return
1949
1950def register_Ns3ObjectFactory_methods(root_module, cls):
1951 cls.add_output_stream_operator()
1952 ## object-factory.h (module 'core'): ns3::ObjectFactory::ObjectFactory(ns3::ObjectFactory const & arg0) [copy constructor]
1953 cls.add_constructor([param('ns3::ObjectFactory const &', 'arg0')])
1954 ## object-factory.h (module 'core'): ns3::ObjectFactory::ObjectFactory() [constructor]
1955 cls.add_constructor([])
1956 ## object-factory.h (module 'core'): ns3::ObjectFactory::ObjectFactory(std::string typeId) [constructor]
1957 cls.add_constructor([param('std::string', 'typeId')])
1958 ## object-factory.h (module 'core'): ns3::Ptr<ns3::Object> ns3::ObjectFactory::Create() const [member function]
1959 cls.add_method('Create',
1960 'ns3::Ptr< ns3::Object >',
1961 [],
1962 is_const=True)
1963 ## object-factory.h (module 'core'): ns3::TypeId ns3::ObjectFactory::GetTypeId() const [member function]
1964 cls.add_method('GetTypeId',
1965 'ns3::TypeId',
1966 [],
1967 is_const=True)
1968 ## object-factory.h (module 'core'): void ns3::ObjectFactory::Set(std::string name, ns3::AttributeValue const & value) [member function]
1969 cls.add_method('Set',
1970 'void',
1971 [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')])
1972 ## object-factory.h (module 'core'): void ns3::ObjectFactory::SetTypeId(ns3::TypeId tid) [member function]
1973 cls.add_method('SetTypeId',
1974 'void',
1975 [param('ns3::TypeId', 'tid')])
1976 ## object-factory.h (module 'core'): void ns3::ObjectFactory::SetTypeId(char const * tid) [member function]
1977 cls.add_method('SetTypeId',
1978 'void',
1979 [param('char const *', 'tid')])
1980 ## object-factory.h (module 'core'): void ns3::ObjectFactory::SetTypeId(std::string tid) [member function]
1981 cls.add_method('SetTypeId',
1982 'void',
1983 [param('std::string', 'tid')])
1984 return
1985
1986def register_Ns3PacketMetadata_methods(root_module, cls):
1987 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::PacketMetadata(uint64_t uid, uint32_t size) [constructor]
1988 cls.add_constructor([param('uint64_t', 'uid'), param('uint32_t', 'size')])
1989 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::PacketMetadata(ns3::PacketMetadata const & o) [copy constructor]
1990 cls.add_constructor([param('ns3::PacketMetadata const &', 'o')])
1991 ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::AddAtEnd(ns3::PacketMetadata const & o) [member function]
1992 cls.add_method('AddAtEnd',
1993 'void',
1994 [param('ns3::PacketMetadata const &', 'o')])
1995 ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::AddHeader(ns3::Header const & header, uint32_t size) [member function]
1996 cls.add_method('AddHeader',
1997 'void',
1998 [param('ns3::Header const &', 'header'), param('uint32_t', 'size')])
1999 ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::AddPaddingAtEnd(uint32_t end) [member function]
2000 cls.add_method('AddPaddingAtEnd',
2001 'void',
2002 [param('uint32_t', 'end')])
2003 ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::AddTrailer(ns3::Trailer const & trailer, uint32_t size) [member function]
2004 cls.add_method('AddTrailer',
2005 'void',
2006 [param('ns3::Trailer const &', 'trailer'), param('uint32_t', 'size')])
2007 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::ItemIterator ns3::PacketMetadata::BeginItem(ns3::Buffer buffer) const [member function]
2008 cls.add_method('BeginItem',
2009 'ns3::PacketMetadata::ItemIterator',
2010 [param('ns3::Buffer', 'buffer')],
2011 is_const=True)
2012 ## packet-metadata.h (module 'network'): ns3::PacketMetadata ns3::PacketMetadata::CreateFragment(uint32_t start, uint32_t end) const [member function]
2013 cls.add_method('CreateFragment',
2014 'ns3::PacketMetadata',
2015 [param('uint32_t', 'start'), param('uint32_t', 'end')],
2016 is_const=True)
2017 ## packet-metadata.h (module 'network'): uint32_t ns3::PacketMetadata::Deserialize(uint8_t const * buffer, uint32_t size) [member function]
2018 cls.add_method('Deserialize',
2019 'uint32_t',
2020 [param('uint8_t const *', 'buffer'), param('uint32_t', 'size')])
2021 ## packet-metadata.h (module 'network'): static void ns3::PacketMetadata::Enable() [member function]
2022 cls.add_method('Enable',
2023 'void',
2024 [],
2025 is_static=True)
2026 ## packet-metadata.h (module 'network'): static void ns3::PacketMetadata::EnableChecking() [member function]
2027 cls.add_method('EnableChecking',
2028 'void',
2029 [],
2030 is_static=True)
2031 ## packet-metadata.h (module 'network'): uint32_t ns3::PacketMetadata::GetSerializedSize() const [member function]
2032 cls.add_method('GetSerializedSize',
2033 'uint32_t',
2034 [],
2035 is_const=True)
2036 ## packet-metadata.h (module 'network'): uint64_t ns3::PacketMetadata::GetUid() const [member function]
2037 cls.add_method('GetUid',
2038 'uint64_t',
2039 [],
2040 is_const=True)
2041 ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::RemoveAtEnd(uint32_t end) [member function]
2042 cls.add_method('RemoveAtEnd',
2043 'void',
2044 [param('uint32_t', 'end')])
2045 ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::RemoveAtStart(uint32_t start) [member function]
2046 cls.add_method('RemoveAtStart',
2047 'void',
2048 [param('uint32_t', 'start')])
2049 ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::RemoveHeader(ns3::Header const & header, uint32_t size) [member function]
2050 cls.add_method('RemoveHeader',
2051 'void',
2052 [param('ns3::Header const &', 'header'), param('uint32_t', 'size')])
2053 ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::RemoveTrailer(ns3::Trailer const & trailer, uint32_t size) [member function]
2054 cls.add_method('RemoveTrailer',
2055 'void',
2056 [param('ns3::Trailer const &', 'trailer'), param('uint32_t', 'size')])
2057 ## packet-metadata.h (module 'network'): uint32_t ns3::PacketMetadata::Serialize(uint8_t * buffer, uint32_t maxSize) const [member function]
2058 cls.add_method('Serialize',
2059 'uint32_t',
2060 [param('uint8_t *', 'buffer'), param('uint32_t', 'maxSize')],
2061 is_const=True)
2062 return
2063
2064def register_Ns3PacketMetadataItem_methods(root_module, cls):
2065 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::Item() [constructor]
2066 cls.add_constructor([])
2067 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::Item(ns3::PacketMetadata::Item const & arg0) [copy constructor]
2068 cls.add_constructor([param('ns3::PacketMetadata::Item const &', 'arg0')])
2069 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::current [variable]
2070 cls.add_instance_attribute('current', 'ns3::Buffer::Iterator', is_const=False)
2071 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::currentSize [variable]
2072 cls.add_instance_attribute('currentSize', 'uint32_t', is_const=False)
2073 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::currentTrimedFromEnd [variable]
2074 cls.add_instance_attribute('currentTrimedFromEnd', 'uint32_t', is_const=False)
2075 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::currentTrimedFromStart [variable]
2076 cls.add_instance_attribute('currentTrimedFromStart', 'uint32_t', is_const=False)
2077 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::isFragment [variable]
2078 cls.add_instance_attribute('isFragment', 'bool', is_const=False)
2079 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::tid [variable]
2080 cls.add_instance_attribute('tid', 'ns3::TypeId', is_const=False)
2081 return
2082
2083def register_Ns3PacketMetadataItemIterator_methods(root_module, cls):
2084 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::ItemIterator::ItemIterator(ns3::PacketMetadata::ItemIterator const & arg0) [copy constructor]
2085 cls.add_constructor([param('ns3::PacketMetadata::ItemIterator const &', 'arg0')])
2086 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::ItemIterator::ItemIterator(ns3::PacketMetadata const * metadata, ns3::Buffer buffer) [constructor]
2087 cls.add_constructor([param('ns3::PacketMetadata const *', 'metadata'), param('ns3::Buffer', 'buffer')])
2088 ## packet-metadata.h (module 'network'): bool ns3::PacketMetadata::ItemIterator::HasNext() const [member function]
2089 cls.add_method('HasNext',
2090 'bool',
2091 [],
2092 is_const=True)
2093 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item ns3::PacketMetadata::ItemIterator::Next() [member function]
2094 cls.add_method('Next',
2095 'ns3::PacketMetadata::Item',
2096 [])
2097 return
2098
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07002099def register_Ns3PacketTagIterator_methods(root_module, cls):
2100 ## packet.h (module 'network'): ns3::PacketTagIterator::PacketTagIterator(ns3::PacketTagIterator const & arg0) [copy constructor]
2101 cls.add_constructor([param('ns3::PacketTagIterator const &', 'arg0')])
2102 ## packet.h (module 'network'): bool ns3::PacketTagIterator::HasNext() const [member function]
2103 cls.add_method('HasNext',
Alexander Afanasyev381dea02011-11-03 08:33:26 -07002104 'bool',
Alexander Afanasyev381dea02011-11-03 08:33:26 -07002105 [],
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07002106 is_const=True)
2107 ## packet.h (module 'network'): ns3::PacketTagIterator::Item ns3::PacketTagIterator::Next() [member function]
2108 cls.add_method('Next',
2109 'ns3::PacketTagIterator::Item',
2110 [])
Alexander Afanasyev381dea02011-11-03 08:33:26 -07002111 return
2112
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07002113def register_Ns3PacketTagIteratorItem_methods(root_module, cls):
2114 ## packet.h (module 'network'): ns3::PacketTagIterator::Item::Item(ns3::PacketTagIterator::Item const & arg0) [copy constructor]
2115 cls.add_constructor([param('ns3::PacketTagIterator::Item const &', 'arg0')])
2116 ## packet.h (module 'network'): void ns3::PacketTagIterator::Item::GetTag(ns3::Tag & tag) const [member function]
2117 cls.add_method('GetTag',
2118 'void',
2119 [param('ns3::Tag &', 'tag')],
2120 is_const=True)
2121 ## packet.h (module 'network'): ns3::TypeId ns3::PacketTagIterator::Item::GetTypeId() const [member function]
2122 cls.add_method('GetTypeId',
2123 'ns3::TypeId',
2124 [],
2125 is_const=True)
2126 return
2127
2128def register_Ns3PacketTagList_methods(root_module, cls):
2129 ## packet-tag-list.h (module 'network'): ns3::PacketTagList::PacketTagList() [constructor]
2130 cls.add_constructor([])
2131 ## packet-tag-list.h (module 'network'): ns3::PacketTagList::PacketTagList(ns3::PacketTagList const & o) [copy constructor]
2132 cls.add_constructor([param('ns3::PacketTagList const &', 'o')])
2133 ## packet-tag-list.h (module 'network'): void ns3::PacketTagList::Add(ns3::Tag const & tag) const [member function]
2134 cls.add_method('Add',
2135 'void',
2136 [param('ns3::Tag const &', 'tag')],
2137 is_const=True)
2138 ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData const * ns3::PacketTagList::Head() const [member function]
2139 cls.add_method('Head',
2140 'ns3::PacketTagList::TagData const *',
2141 [],
2142 is_const=True)
2143 ## packet-tag-list.h (module 'network'): bool ns3::PacketTagList::Peek(ns3::Tag & tag) const [member function]
2144 cls.add_method('Peek',
2145 'bool',
2146 [param('ns3::Tag &', 'tag')],
2147 is_const=True)
2148 ## packet-tag-list.h (module 'network'): bool ns3::PacketTagList::Remove(ns3::Tag & tag) [member function]
2149 cls.add_method('Remove',
2150 'bool',
2151 [param('ns3::Tag &', 'tag')])
2152 ## packet-tag-list.h (module 'network'): void ns3::PacketTagList::RemoveAll() [member function]
2153 cls.add_method('RemoveAll',
2154 'void',
2155 [])
2156 return
2157
2158def register_Ns3PacketTagListTagData_methods(root_module, cls):
2159 ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData::TagData() [constructor]
2160 cls.add_constructor([])
2161 ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData::TagData(ns3::PacketTagList::TagData const & arg0) [copy constructor]
2162 cls.add_constructor([param('ns3::PacketTagList::TagData const &', 'arg0')])
2163 ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData::count [variable]
2164 cls.add_instance_attribute('count', 'uint32_t', is_const=False)
2165 ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData::data [variable]
2166 cls.add_instance_attribute('data', 'uint8_t [ 20 ]', is_const=False)
2167 ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData::next [variable]
2168 cls.add_instance_attribute('next', 'ns3::PacketTagList::TagData *', is_const=False)
2169 ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData::tid [variable]
2170 cls.add_instance_attribute('tid', 'ns3::TypeId', is_const=False)
Alexander Afanasyev381dea02011-11-03 08:33:26 -07002171 return
2172
Alexander Afanasyev381dea02011-11-03 08:33:26 -07002173def register_Ns3SimpleRefCount__Ns3Object_Ns3ObjectBase_Ns3ObjectDeleter_methods(root_module, cls):
2174 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter>::SimpleRefCount() [constructor]
2175 cls.add_constructor([])
2176 ## 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]
2177 cls.add_constructor([param('ns3::SimpleRefCount< ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter > const &', 'o')])
2178 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter>::Cleanup() [member function]
2179 cls.add_method('Cleanup',
2180 'void',
2181 [],
2182 is_static=True)
2183 return
2184
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07002185def register_Ns3Tag_methods(root_module, cls):
2186 ## tag.h (module 'network'): ns3::Tag::Tag() [constructor]
Alexander Afanasyev4975f732011-12-20 17:52:19 -08002187 cls.add_constructor([])
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07002188 ## tag.h (module 'network'): ns3::Tag::Tag(ns3::Tag const & arg0) [copy constructor]
2189 cls.add_constructor([param('ns3::Tag const &', 'arg0')])
2190 ## tag.h (module 'network'): void ns3::Tag::Deserialize(ns3::TagBuffer i) [member function]
2191 cls.add_method('Deserialize',
Alexander Afanasyev4975f732011-12-20 17:52:19 -08002192 'void',
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07002193 [param('ns3::TagBuffer', 'i')],
2194 is_pure_virtual=True, is_virtual=True)
2195 ## tag.h (module 'network'): uint32_t ns3::Tag::GetSerializedSize() const [member function]
2196 cls.add_method('GetSerializedSize',
2197 'uint32_t',
2198 [],
2199 is_pure_virtual=True, is_const=True, is_virtual=True)
2200 ## tag.h (module 'network'): static ns3::TypeId ns3::Tag::GetTypeId() [member function]
2201 cls.add_method('GetTypeId',
2202 'ns3::TypeId',
2203 [],
Alexander Afanasyev4975f732011-12-20 17:52:19 -08002204 is_static=True)
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07002205 ## tag.h (module 'network'): void ns3::Tag::Print(std::ostream & os) const [member function]
2206 cls.add_method('Print',
Alexander Afanasyev4975f732011-12-20 17:52:19 -08002207 'void',
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07002208 [param('std::ostream &', 'os')],
2209 is_pure_virtual=True, is_const=True, is_virtual=True)
2210 ## tag.h (module 'network'): void ns3::Tag::Serialize(ns3::TagBuffer i) const [member function]
2211 cls.add_method('Serialize',
2212 'void',
2213 [param('ns3::TagBuffer', 'i')],
2214 is_pure_virtual=True, is_const=True, is_virtual=True)
Alexander Afanasyev4975f732011-12-20 17:52:19 -08002215 return
2216
Alexander Afanasyev381dea02011-11-03 08:33:26 -07002217def register_Ns3TagBuffer_methods(root_module, cls):
2218 ## tag-buffer.h (module 'network'): ns3::TagBuffer::TagBuffer(ns3::TagBuffer const & arg0) [copy constructor]
2219 cls.add_constructor([param('ns3::TagBuffer const &', 'arg0')])
2220 ## tag-buffer.h (module 'network'): ns3::TagBuffer::TagBuffer(uint8_t * start, uint8_t * end) [constructor]
2221 cls.add_constructor([param('uint8_t *', 'start'), param('uint8_t *', 'end')])
2222 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::CopyFrom(ns3::TagBuffer o) [member function]
2223 cls.add_method('CopyFrom',
2224 'void',
2225 [param('ns3::TagBuffer', 'o')])
2226 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::Read(uint8_t * buffer, uint32_t size) [member function]
2227 cls.add_method('Read',
2228 'void',
2229 [param('uint8_t *', 'buffer'), param('uint32_t', 'size')])
2230 ## tag-buffer.h (module 'network'): double ns3::TagBuffer::ReadDouble() [member function]
2231 cls.add_method('ReadDouble',
2232 'double',
2233 [])
2234 ## tag-buffer.h (module 'network'): uint16_t ns3::TagBuffer::ReadU16() [member function]
2235 cls.add_method('ReadU16',
2236 'uint16_t',
2237 [])
2238 ## tag-buffer.h (module 'network'): uint32_t ns3::TagBuffer::ReadU32() [member function]
2239 cls.add_method('ReadU32',
2240 'uint32_t',
2241 [])
2242 ## tag-buffer.h (module 'network'): uint64_t ns3::TagBuffer::ReadU64() [member function]
2243 cls.add_method('ReadU64',
2244 'uint64_t',
2245 [])
2246 ## tag-buffer.h (module 'network'): uint8_t ns3::TagBuffer::ReadU8() [member function]
2247 cls.add_method('ReadU8',
2248 'uint8_t',
2249 [])
2250 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::TrimAtEnd(uint32_t trim) [member function]
2251 cls.add_method('TrimAtEnd',
2252 'void',
2253 [param('uint32_t', 'trim')])
2254 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::Write(uint8_t const * buffer, uint32_t size) [member function]
2255 cls.add_method('Write',
2256 'void',
2257 [param('uint8_t const *', 'buffer'), param('uint32_t', 'size')])
2258 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::WriteDouble(double v) [member function]
2259 cls.add_method('WriteDouble',
2260 'void',
2261 [param('double', 'v')])
2262 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::WriteU16(uint16_t data) [member function]
2263 cls.add_method('WriteU16',
2264 'void',
2265 [param('uint16_t', 'data')])
2266 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::WriteU32(uint32_t data) [member function]
2267 cls.add_method('WriteU32',
2268 'void',
2269 [param('uint32_t', 'data')])
2270 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::WriteU64(uint64_t v) [member function]
2271 cls.add_method('WriteU64',
2272 'void',
2273 [param('uint64_t', 'v')])
2274 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::WriteU8(uint8_t v) [member function]
2275 cls.add_method('WriteU8',
2276 'void',
2277 [param('uint8_t', 'v')])
2278 return
2279
Alexander Afanasyev381dea02011-11-03 08:33:26 -07002280def register_Ns3TypeId_methods(root_module, cls):
2281 cls.add_binary_comparison_operator('!=')
2282 cls.add_output_stream_operator()
2283 cls.add_binary_comparison_operator('==')
2284 cls.add_binary_comparison_operator('<')
2285 ## type-id.h (module 'core'): ns3::TypeId::TypeId(char const * name) [constructor]
2286 cls.add_constructor([param('char const *', 'name')])
2287 ## type-id.h (module 'core'): ns3::TypeId::TypeId() [constructor]
2288 cls.add_constructor([])
2289 ## type-id.h (module 'core'): ns3::TypeId::TypeId(ns3::TypeId const & o) [copy constructor]
2290 cls.add_constructor([param('ns3::TypeId const &', 'o')])
2291 ## 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]
2292 cls.add_method('AddAttribute',
2293 'ns3::TypeId',
2294 [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')])
2295 ## 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]
2296 cls.add_method('AddAttribute',
2297 'ns3::TypeId',
2298 [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')])
2299 ## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::AddTraceSource(std::string name, std::string help, ns3::Ptr<ns3::TraceSourceAccessor const> accessor) [member function]
2300 cls.add_method('AddTraceSource',
2301 'ns3::TypeId',
2302 [param('std::string', 'name'), param('std::string', 'help'), param('ns3::Ptr< ns3::TraceSourceAccessor const >', 'accessor')])
2303 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation ns3::TypeId::GetAttribute(uint32_t i) const [member function]
2304 cls.add_method('GetAttribute',
2305 'ns3::TypeId::AttributeInformation',
2306 [param('uint32_t', 'i')],
2307 is_const=True)
2308 ## type-id.h (module 'core'): std::string ns3::TypeId::GetAttributeFullName(uint32_t i) const [member function]
2309 cls.add_method('GetAttributeFullName',
2310 'std::string',
2311 [param('uint32_t', 'i')],
2312 is_const=True)
2313 ## type-id.h (module 'core'): uint32_t ns3::TypeId::GetAttributeN() const [member function]
2314 cls.add_method('GetAttributeN',
2315 'uint32_t',
2316 [],
2317 is_const=True)
2318 ## 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]
2319 cls.add_method('GetConstructor',
2320 'ns3::Callback< ns3::ObjectBase *, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >',
2321 [],
2322 is_const=True)
2323 ## type-id.h (module 'core'): std::string ns3::TypeId::GetGroupName() const [member function]
2324 cls.add_method('GetGroupName',
2325 'std::string',
2326 [],
2327 is_const=True)
2328 ## type-id.h (module 'core'): std::string ns3::TypeId::GetName() const [member function]
2329 cls.add_method('GetName',
2330 'std::string',
2331 [],
2332 is_const=True)
2333 ## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::GetParent() const [member function]
2334 cls.add_method('GetParent',
2335 'ns3::TypeId',
2336 [],
2337 is_const=True)
2338 ## type-id.h (module 'core'): static ns3::TypeId ns3::TypeId::GetRegistered(uint32_t i) [member function]
2339 cls.add_method('GetRegistered',
2340 'ns3::TypeId',
2341 [param('uint32_t', 'i')],
2342 is_static=True)
2343 ## type-id.h (module 'core'): static uint32_t ns3::TypeId::GetRegisteredN() [member function]
2344 cls.add_method('GetRegisteredN',
2345 'uint32_t',
2346 [],
2347 is_static=True)
2348 ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation ns3::TypeId::GetTraceSource(uint32_t i) const [member function]
2349 cls.add_method('GetTraceSource',
2350 'ns3::TypeId::TraceSourceInformation',
2351 [param('uint32_t', 'i')],
2352 is_const=True)
2353 ## type-id.h (module 'core'): uint32_t ns3::TypeId::GetTraceSourceN() const [member function]
2354 cls.add_method('GetTraceSourceN',
2355 'uint32_t',
2356 [],
2357 is_const=True)
2358 ## type-id.h (module 'core'): uint16_t ns3::TypeId::GetUid() const [member function]
2359 cls.add_method('GetUid',
2360 'uint16_t',
2361 [],
2362 is_const=True)
2363 ## type-id.h (module 'core'): bool ns3::TypeId::HasConstructor() const [member function]
2364 cls.add_method('HasConstructor',
2365 'bool',
2366 [],
2367 is_const=True)
2368 ## type-id.h (module 'core'): bool ns3::TypeId::HasParent() const [member function]
2369 cls.add_method('HasParent',
2370 'bool',
2371 [],
2372 is_const=True)
2373 ## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::HideFromDocumentation() [member function]
2374 cls.add_method('HideFromDocumentation',
2375 'ns3::TypeId',
2376 [])
2377 ## type-id.h (module 'core'): bool ns3::TypeId::IsChildOf(ns3::TypeId other) const [member function]
2378 cls.add_method('IsChildOf',
2379 'bool',
2380 [param('ns3::TypeId', 'other')],
2381 is_const=True)
2382 ## type-id.h (module 'core'): bool ns3::TypeId::LookupAttributeByName(std::string name, ns3::TypeId::AttributeInformation * info) const [member function]
2383 cls.add_method('LookupAttributeByName',
2384 'bool',
Alexander Afanasyev6f933532012-02-29 13:30:37 -08002385 [param('std::string', 'name'), param('ns3::TypeId::AttributeInformation *', 'info', transfer_ownership=False)],
Alexander Afanasyev381dea02011-11-03 08:33:26 -07002386 is_const=True)
2387 ## type-id.h (module 'core'): static ns3::TypeId ns3::TypeId::LookupByName(std::string name) [member function]
2388 cls.add_method('LookupByName',
2389 'ns3::TypeId',
2390 [param('std::string', 'name')],
2391 is_static=True)
2392 ## type-id.h (module 'core'): ns3::Ptr<ns3::TraceSourceAccessor const> ns3::TypeId::LookupTraceSourceByName(std::string name) const [member function]
2393 cls.add_method('LookupTraceSourceByName',
2394 'ns3::Ptr< ns3::TraceSourceAccessor const >',
2395 [param('std::string', 'name')],
2396 is_const=True)
2397 ## type-id.h (module 'core'): bool ns3::TypeId::MustHideFromDocumentation() const [member function]
2398 cls.add_method('MustHideFromDocumentation',
2399 'bool',
2400 [],
2401 is_const=True)
2402 ## type-id.h (module 'core'): bool ns3::TypeId::SetAttributeInitialValue(uint32_t i, ns3::Ptr<ns3::AttributeValue const> initialValue) [member function]
2403 cls.add_method('SetAttributeInitialValue',
2404 'bool',
2405 [param('uint32_t', 'i'), param('ns3::Ptr< ns3::AttributeValue const >', 'initialValue')])
2406 ## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::SetGroupName(std::string groupName) [member function]
2407 cls.add_method('SetGroupName',
2408 'ns3::TypeId',
2409 [param('std::string', 'groupName')])
2410 ## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::SetParent(ns3::TypeId tid) [member function]
2411 cls.add_method('SetParent',
2412 'ns3::TypeId',
2413 [param('ns3::TypeId', 'tid')])
2414 ## type-id.h (module 'core'): void ns3::TypeId::SetUid(uint16_t tid) [member function]
2415 cls.add_method('SetUid',
2416 'void',
2417 [param('uint16_t', 'tid')])
2418 return
2419
2420def register_Ns3TypeIdAttributeInformation_methods(root_module, cls):
2421 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::AttributeInformation() [constructor]
2422 cls.add_constructor([])
2423 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::AttributeInformation(ns3::TypeId::AttributeInformation const & arg0) [copy constructor]
2424 cls.add_constructor([param('ns3::TypeId::AttributeInformation const &', 'arg0')])
2425 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::accessor [variable]
2426 cls.add_instance_attribute('accessor', 'ns3::Ptr< ns3::AttributeAccessor const >', is_const=False)
2427 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::checker [variable]
2428 cls.add_instance_attribute('checker', 'ns3::Ptr< ns3::AttributeChecker const >', is_const=False)
2429 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::flags [variable]
2430 cls.add_instance_attribute('flags', 'uint32_t', is_const=False)
2431 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::help [variable]
2432 cls.add_instance_attribute('help', 'std::string', is_const=False)
2433 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::initialValue [variable]
2434 cls.add_instance_attribute('initialValue', 'ns3::Ptr< ns3::AttributeValue const >', is_const=False)
2435 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::name [variable]
2436 cls.add_instance_attribute('name', 'std::string', is_const=False)
2437 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::originalInitialValue [variable]
2438 cls.add_instance_attribute('originalInitialValue', 'ns3::Ptr< ns3::AttributeValue const >', is_const=False)
2439 return
2440
2441def register_Ns3TypeIdTraceSourceInformation_methods(root_module, cls):
2442 ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation::TraceSourceInformation() [constructor]
2443 cls.add_constructor([])
2444 ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation::TraceSourceInformation(ns3::TypeId::TraceSourceInformation const & arg0) [copy constructor]
2445 cls.add_constructor([param('ns3::TypeId::TraceSourceInformation const &', 'arg0')])
2446 ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation::accessor [variable]
2447 cls.add_instance_attribute('accessor', 'ns3::Ptr< ns3::TraceSourceAccessor const >', is_const=False)
2448 ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation::help [variable]
2449 cls.add_instance_attribute('help', 'std::string', is_const=False)
2450 ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation::name [variable]
2451 cls.add_instance_attribute('name', 'std::string', is_const=False)
2452 return
2453
Alexander Afanasyev381dea02011-11-03 08:33:26 -07002454def register_Ns3Empty_methods(root_module, cls):
2455 ## empty.h (module 'core'): ns3::empty::empty() [constructor]
2456 cls.add_constructor([])
2457 ## empty.h (module 'core'): ns3::empty::empty(ns3::empty const & arg0) [copy constructor]
2458 cls.add_constructor([param('ns3::empty const &', 'arg0')])
2459 return
2460
2461def register_Ns3Int64x64_t_methods(root_module, cls):
2462 cls.add_binary_comparison_operator('!=')
2463 cls.add_inplace_numeric_operator('*=', param('ns3::int64x64_t const &', 'right'))
2464 cls.add_inplace_numeric_operator('+=', param('ns3::int64x64_t const &', 'right'))
2465 cls.add_inplace_numeric_operator('-=', param('ns3::int64x64_t const &', 'right'))
Alexander Afanasyev381dea02011-11-03 08:33:26 -07002466 cls.add_output_stream_operator()
Alexander Afanasyev4975f732011-12-20 17:52:19 -08002467 cls.add_binary_comparison_operator('<=')
Alexander Afanasyev381dea02011-11-03 08:33:26 -07002468 cls.add_binary_comparison_operator('==')
2469 cls.add_binary_comparison_operator('>=')
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07002470 cls.add_inplace_numeric_operator('/=', param('ns3::int64x64_t const &', 'right'))
Alexander Afanasyev381dea02011-11-03 08:33:26 -07002471 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long unsigned int const', 'right'))
2472 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long unsigned int const', 'right'))
2473 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned int const', 'right'))
2474 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short unsigned int const', 'right'))
2475 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned char const', 'right'))
2476 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long int const', 'right'))
2477 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long int const', 'right'))
2478 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('int const', 'right'))
2479 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short int const', 'right'))
2480 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('signed char const', 'right'))
2481 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('double const', 'right'))
2482 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('ns3::int64x64_t const &', 'right'))
2483 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long unsigned int const', 'right'))
2484 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long unsigned int const', 'right'))
2485 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned int const', 'right'))
2486 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short unsigned int const', 'right'))
2487 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned char const', 'right'))
2488 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long int const', 'right'))
2489 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long int const', 'right'))
2490 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('int const', 'right'))
2491 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short int const', 'right'))
2492 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('signed char const', 'right'))
2493 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('double const', 'right'))
2494 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('ns3::int64x64_t const &', 'right'))
2495 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long unsigned int const', 'right'))
2496 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long unsigned int const', 'right'))
2497 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned int const', 'right'))
2498 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short unsigned int const', 'right'))
2499 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned char const', 'right'))
2500 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long int const', 'right'))
2501 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long int const', 'right'))
2502 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('int const', 'right'))
2503 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short int const', 'right'))
2504 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('signed char const', 'right'))
2505 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('double const', 'right'))
2506 cls.add_unary_numeric_operator('-')
2507 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('ns3::int64x64_t const &', 'right'))
2508 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long unsigned int const', 'right'))
2509 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long unsigned int const', 'right'))
2510 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned int const', 'right'))
2511 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short unsigned int const', 'right'))
2512 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned char const', 'right'))
2513 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long int const', 'right'))
2514 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long int const', 'right'))
2515 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('int const', 'right'))
2516 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short int const', 'right'))
2517 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('signed char const', 'right'))
2518 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('double const', 'right'))
2519 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('ns3::int64x64_t const &', 'right'))
2520 cls.add_binary_comparison_operator('<')
2521 cls.add_binary_comparison_operator('>')
2522 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t() [constructor]
2523 cls.add_constructor([])
2524 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(double v) [constructor]
2525 cls.add_constructor([param('double', 'v')])
2526 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(int v) [constructor]
2527 cls.add_constructor([param('int', 'v')])
2528 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(long int v) [constructor]
2529 cls.add_constructor([param('long int', 'v')])
2530 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(long long int v) [constructor]
2531 cls.add_constructor([param('long long int', 'v')])
2532 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(unsigned int v) [constructor]
2533 cls.add_constructor([param('unsigned int', 'v')])
2534 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(long unsigned int v) [constructor]
2535 cls.add_constructor([param('long unsigned int', 'v')])
2536 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(long long unsigned int v) [constructor]
2537 cls.add_constructor([param('long long unsigned int', 'v')])
2538 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(int64_t hi, uint64_t lo) [constructor]
2539 cls.add_constructor([param('int64_t', 'hi'), param('uint64_t', 'lo')])
2540 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(ns3::int64x64_t const & o) [copy constructor]
2541 cls.add_constructor([param('ns3::int64x64_t const &', 'o')])
2542 ## int64x64-double.h (module 'core'): double ns3::int64x64_t::GetDouble() const [member function]
2543 cls.add_method('GetDouble',
2544 'double',
2545 [],
2546 is_const=True)
2547 ## int64x64-double.h (module 'core'): int64_t ns3::int64x64_t::GetHigh() const [member function]
2548 cls.add_method('GetHigh',
2549 'int64_t',
2550 [],
2551 is_const=True)
2552 ## int64x64-double.h (module 'core'): uint64_t ns3::int64x64_t::GetLow() const [member function]
2553 cls.add_method('GetLow',
2554 'uint64_t',
2555 [],
2556 is_const=True)
2557 ## int64x64-double.h (module 'core'): static ns3::int64x64_t ns3::int64x64_t::Invert(uint64_t v) [member function]
2558 cls.add_method('Invert',
2559 'ns3::int64x64_t',
2560 [param('uint64_t', 'v')],
2561 is_static=True)
2562 ## int64x64-double.h (module 'core'): void ns3::int64x64_t::MulByInvert(ns3::int64x64_t const & o) [member function]
2563 cls.add_method('MulByInvert',
2564 'void',
2565 [param('ns3::int64x64_t const &', 'o')])
2566 return
2567
Alexander Afanasyev381dea02011-11-03 08:33:26 -07002568def register_Ns3Chunk_methods(root_module, cls):
2569 ## chunk.h (module 'network'): ns3::Chunk::Chunk() [constructor]
2570 cls.add_constructor([])
2571 ## chunk.h (module 'network'): ns3::Chunk::Chunk(ns3::Chunk const & arg0) [copy constructor]
2572 cls.add_constructor([param('ns3::Chunk const &', 'arg0')])
2573 ## chunk.h (module 'network'): uint32_t ns3::Chunk::Deserialize(ns3::Buffer::Iterator start) [member function]
2574 cls.add_method('Deserialize',
2575 'uint32_t',
2576 [param('ns3::Buffer::Iterator', 'start')],
2577 is_pure_virtual=True, is_virtual=True)
2578 ## chunk.h (module 'network'): static ns3::TypeId ns3::Chunk::GetTypeId() [member function]
2579 cls.add_method('GetTypeId',
2580 'ns3::TypeId',
2581 [],
2582 is_static=True)
2583 ## chunk.h (module 'network'): void ns3::Chunk::Print(std::ostream & os) const [member function]
2584 cls.add_method('Print',
2585 'void',
2586 [param('std::ostream &', 'os')],
2587 is_pure_virtual=True, is_const=True, is_virtual=True)
2588 return
2589
Alexander Afanasyev381dea02011-11-03 08:33:26 -07002590def register_Ns3Header_methods(root_module, cls):
2591 cls.add_output_stream_operator()
2592 ## header.h (module 'network'): ns3::Header::Header() [constructor]
2593 cls.add_constructor([])
2594 ## header.h (module 'network'): ns3::Header::Header(ns3::Header const & arg0) [copy constructor]
2595 cls.add_constructor([param('ns3::Header const &', 'arg0')])
2596 ## header.h (module 'network'): uint32_t ns3::Header::Deserialize(ns3::Buffer::Iterator start) [member function]
2597 cls.add_method('Deserialize',
2598 'uint32_t',
2599 [param('ns3::Buffer::Iterator', 'start')],
2600 is_pure_virtual=True, is_virtual=True)
2601 ## header.h (module 'network'): uint32_t ns3::Header::GetSerializedSize() const [member function]
2602 cls.add_method('GetSerializedSize',
2603 'uint32_t',
2604 [],
2605 is_pure_virtual=True, is_const=True, is_virtual=True)
2606 ## header.h (module 'network'): static ns3::TypeId ns3::Header::GetTypeId() [member function]
2607 cls.add_method('GetTypeId',
2608 'ns3::TypeId',
2609 [],
2610 is_static=True)
2611 ## header.h (module 'network'): void ns3::Header::Print(std::ostream & os) const [member function]
2612 cls.add_method('Print',
2613 'void',
2614 [param('std::ostream &', 'os')],
2615 is_pure_virtual=True, is_const=True, is_virtual=True)
2616 ## header.h (module 'network'): void ns3::Header::Serialize(ns3::Buffer::Iterator start) const [member function]
2617 cls.add_method('Serialize',
2618 'void',
2619 [param('ns3::Buffer::Iterator', 'start')],
2620 is_pure_virtual=True, is_const=True, is_virtual=True)
2621 return
2622
Alexander Afanasyev381dea02011-11-03 08:33:26 -07002623def register_Ns3Object_methods(root_module, cls):
2624 ## object.h (module 'core'): ns3::Object::Object() [constructor]
2625 cls.add_constructor([])
2626 ## object.h (module 'core'): void ns3::Object::AggregateObject(ns3::Ptr<ns3::Object> other) [member function]
2627 cls.add_method('AggregateObject',
2628 'void',
2629 [param('ns3::Ptr< ns3::Object >', 'other')])
2630 ## object.h (module 'core'): void ns3::Object::Dispose() [member function]
2631 cls.add_method('Dispose',
2632 'void',
2633 [])
2634 ## object.h (module 'core'): ns3::Object::AggregateIterator ns3::Object::GetAggregateIterator() const [member function]
2635 cls.add_method('GetAggregateIterator',
2636 'ns3::Object::AggregateIterator',
2637 [],
2638 is_const=True)
2639 ## object.h (module 'core'): ns3::TypeId ns3::Object::GetInstanceTypeId() const [member function]
2640 cls.add_method('GetInstanceTypeId',
2641 'ns3::TypeId',
2642 [],
2643 is_const=True, is_virtual=True)
2644 ## object.h (module 'core'): static ns3::TypeId ns3::Object::GetTypeId() [member function]
2645 cls.add_method('GetTypeId',
2646 'ns3::TypeId',
2647 [],
2648 is_static=True)
2649 ## object.h (module 'core'): void ns3::Object::Start() [member function]
2650 cls.add_method('Start',
2651 'void',
2652 [])
2653 ## object.h (module 'core'): ns3::Object::Object(ns3::Object const & o) [copy constructor]
2654 cls.add_constructor([param('ns3::Object const &', 'o')],
2655 visibility='protected')
2656 ## object.h (module 'core'): void ns3::Object::DoDispose() [member function]
2657 cls.add_method('DoDispose',
2658 'void',
2659 [],
2660 visibility='protected', is_virtual=True)
2661 ## object.h (module 'core'): void ns3::Object::DoStart() [member function]
2662 cls.add_method('DoStart',
2663 'void',
2664 [],
2665 visibility='protected', is_virtual=True)
2666 ## object.h (module 'core'): void ns3::Object::NotifyNewAggregate() [member function]
2667 cls.add_method('NotifyNewAggregate',
2668 'void',
2669 [],
2670 visibility='protected', is_virtual=True)
2671 return
2672
2673def register_Ns3ObjectAggregateIterator_methods(root_module, cls):
2674 ## object.h (module 'core'): ns3::Object::AggregateIterator::AggregateIterator(ns3::Object::AggregateIterator const & arg0) [copy constructor]
2675 cls.add_constructor([param('ns3::Object::AggregateIterator const &', 'arg0')])
2676 ## object.h (module 'core'): ns3::Object::AggregateIterator::AggregateIterator() [constructor]
2677 cls.add_constructor([])
2678 ## object.h (module 'core'): bool ns3::Object::AggregateIterator::HasNext() const [member function]
2679 cls.add_method('HasNext',
2680 'bool',
2681 [],
2682 is_const=True)
2683 ## object.h (module 'core'): ns3::Ptr<ns3::Object const> ns3::Object::AggregateIterator::Next() [member function]
2684 cls.add_method('Next',
2685 'ns3::Ptr< ns3::Object const >',
2686 [])
2687 return
2688
Alexander Afanasyev381dea02011-11-03 08:33:26 -07002689def register_Ns3SimpleRefCount__Ns3AttributeAccessor_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeAccessor__gt___methods(root_module, cls):
2690 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> >::SimpleRefCount() [constructor]
2691 cls.add_constructor([])
2692 ## 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]
2693 cls.add_constructor([param('ns3::SimpleRefCount< ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter< ns3::AttributeAccessor > > const &', 'o')])
2694 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> >::Cleanup() [member function]
2695 cls.add_method('Cleanup',
2696 'void',
2697 [],
2698 is_static=True)
2699 return
2700
2701def register_Ns3SimpleRefCount__Ns3AttributeChecker_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeChecker__gt___methods(root_module, cls):
2702 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter<ns3::AttributeChecker> >::SimpleRefCount() [constructor]
2703 cls.add_constructor([])
2704 ## 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]
2705 cls.add_constructor([param('ns3::SimpleRefCount< ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter< ns3::AttributeChecker > > const &', 'o')])
2706 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter<ns3::AttributeChecker> >::Cleanup() [member function]
2707 cls.add_method('Cleanup',
2708 'void',
2709 [],
2710 is_static=True)
2711 return
2712
2713def register_Ns3SimpleRefCount__Ns3AttributeValue_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeValue__gt___methods(root_module, cls):
2714 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter<ns3::AttributeValue> >::SimpleRefCount() [constructor]
2715 cls.add_constructor([])
2716 ## 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]
2717 cls.add_constructor([param('ns3::SimpleRefCount< ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter< ns3::AttributeValue > > const &', 'o')])
2718 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter<ns3::AttributeValue> >::Cleanup() [member function]
2719 cls.add_method('Cleanup',
2720 'void',
2721 [],
2722 is_static=True)
2723 return
2724
2725def register_Ns3SimpleRefCount__Ns3CallbackImplBase_Ns3Empty_Ns3DefaultDeleter__lt__ns3CallbackImplBase__gt___methods(root_module, cls):
2726 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> >::SimpleRefCount() [constructor]
2727 cls.add_constructor([])
2728 ## 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]
2729 cls.add_constructor([param('ns3::SimpleRefCount< ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter< ns3::CallbackImplBase > > const &', 'o')])
2730 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> >::Cleanup() [member function]
2731 cls.add_method('Cleanup',
2732 'void',
2733 [],
2734 is_static=True)
2735 return
2736
Alexander Afanasyev4756b892012-04-18 14:48:43 -07002737def register_Ns3SimpleRefCount__Ns3CcnxContentObjectHeader_Ns3Header_Ns3DefaultDeleter__lt__ns3CcnxContentObjectHeader__gt___methods(root_module, cls):
2738 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CcnxContentObjectHeader, ns3::Header, ns3::DefaultDeleter<ns3::CcnxContentObjectHeader> >::SimpleRefCount() [constructor]
2739 cls.add_constructor([])
2740 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CcnxContentObjectHeader, ns3::Header, ns3::DefaultDeleter<ns3::CcnxContentObjectHeader> >::SimpleRefCount(ns3::SimpleRefCount<ns3::CcnxContentObjectHeader, ns3::Header, ns3::DefaultDeleter<ns3::CcnxContentObjectHeader> > const & o) [copy constructor]
2741 cls.add_constructor([param('ns3::SimpleRefCount< ns3::CcnxContentObjectHeader, ns3::Header, ns3::DefaultDeleter< ns3::CcnxContentObjectHeader > > const &', 'o')])
2742 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::CcnxContentObjectHeader, ns3::Header, ns3::DefaultDeleter<ns3::CcnxContentObjectHeader> >::Cleanup() [member function]
2743 cls.add_method('Cleanup',
2744 'void',
2745 [],
2746 is_static=True)
2747 return
2748
Alexander Afanasyev381dea02011-11-03 08:33:26 -07002749def register_Ns3SimpleRefCount__Ns3CcnxFaceContainer_Ns3Empty_Ns3DefaultDeleter__lt__ns3CcnxFaceContainer__gt___methods(root_module, cls):
2750 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CcnxFaceContainer, ns3::empty, ns3::DefaultDeleter<ns3::CcnxFaceContainer> >::SimpleRefCount() [constructor]
2751 cls.add_constructor([])
2752 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CcnxFaceContainer, ns3::empty, ns3::DefaultDeleter<ns3::CcnxFaceContainer> >::SimpleRefCount(ns3::SimpleRefCount<ns3::CcnxFaceContainer, ns3::empty, ns3::DefaultDeleter<ns3::CcnxFaceContainer> > const & o) [copy constructor]
2753 cls.add_constructor([param('ns3::SimpleRefCount< ns3::CcnxFaceContainer, ns3::empty, ns3::DefaultDeleter< ns3::CcnxFaceContainer > > const &', 'o')])
2754 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::CcnxFaceContainer, ns3::empty, ns3::DefaultDeleter<ns3::CcnxFaceContainer> >::Cleanup() [member function]
2755 cls.add_method('Cleanup',
2756 'void',
2757 [],
2758 is_static=True)
2759 return
2760
Alexander Afanasyev4756b892012-04-18 14:48:43 -07002761def register_Ns3SimpleRefCount__Ns3CcnxInterestHeader_Ns3Header_Ns3DefaultDeleter__lt__ns3CcnxInterestHeader__gt___methods(root_module, cls):
2762 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CcnxInterestHeader, ns3::Header, ns3::DefaultDeleter<ns3::CcnxInterestHeader> >::SimpleRefCount() [constructor]
2763 cls.add_constructor([])
2764 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CcnxInterestHeader, ns3::Header, ns3::DefaultDeleter<ns3::CcnxInterestHeader> >::SimpleRefCount(ns3::SimpleRefCount<ns3::CcnxInterestHeader, ns3::Header, ns3::DefaultDeleter<ns3::CcnxInterestHeader> > const & o) [copy constructor]
2765 cls.add_constructor([param('ns3::SimpleRefCount< ns3::CcnxInterestHeader, ns3::Header, ns3::DefaultDeleter< ns3::CcnxInterestHeader > > const &', 'o')])
2766 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::CcnxInterestHeader, ns3::Header, ns3::DefaultDeleter<ns3::CcnxInterestHeader> >::Cleanup() [member function]
2767 cls.add_method('Cleanup',
2768 'void',
2769 [],
2770 is_static=True)
2771 return
2772
Alexander Afanasyev381dea02011-11-03 08:33:26 -07002773def register_Ns3SimpleRefCount__Ns3CcnxNameComponents_Ns3Empty_Ns3DefaultDeleter__lt__ns3CcnxNameComponents__gt___methods(root_module, cls):
2774 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CcnxNameComponents, ns3::empty, ns3::DefaultDeleter<ns3::CcnxNameComponents> >::SimpleRefCount() [constructor]
2775 cls.add_constructor([])
2776 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CcnxNameComponents, ns3::empty, ns3::DefaultDeleter<ns3::CcnxNameComponents> >::SimpleRefCount(ns3::SimpleRefCount<ns3::CcnxNameComponents, ns3::empty, ns3::DefaultDeleter<ns3::CcnxNameComponents> > const & o) [copy constructor]
2777 cls.add_constructor([param('ns3::SimpleRefCount< ns3::CcnxNameComponents, ns3::empty, ns3::DefaultDeleter< ns3::CcnxNameComponents > > const &', 'o')])
2778 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::CcnxNameComponents, ns3::empty, ns3::DefaultDeleter<ns3::CcnxNameComponents> >::Cleanup() [member function]
2779 cls.add_method('Cleanup',
2780 'void',
2781 [],
2782 is_static=True)
2783 return
2784
Alexander Afanasyev381dea02011-11-03 08:33:26 -07002785def register_Ns3SimpleRefCount__Ns3EventImpl_Ns3Empty_Ns3DefaultDeleter__lt__ns3EventImpl__gt___methods(root_module, cls):
2786 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::EventImpl, ns3::empty, ns3::DefaultDeleter<ns3::EventImpl> >::SimpleRefCount() [constructor]
2787 cls.add_constructor([])
2788 ## 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]
2789 cls.add_constructor([param('ns3::SimpleRefCount< ns3::EventImpl, ns3::empty, ns3::DefaultDeleter< ns3::EventImpl > > const &', 'o')])
2790 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::EventImpl, ns3::empty, ns3::DefaultDeleter<ns3::EventImpl> >::Cleanup() [member function]
2791 cls.add_method('Cleanup',
2792 'void',
2793 [],
2794 is_static=True)
2795 return
2796
2797def register_Ns3SimpleRefCount__Ns3NixVector_Ns3Empty_Ns3DefaultDeleter__lt__ns3NixVector__gt___methods(root_module, cls):
2798 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::NixVector, ns3::empty, ns3::DefaultDeleter<ns3::NixVector> >::SimpleRefCount() [constructor]
2799 cls.add_constructor([])
2800 ## 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]
2801 cls.add_constructor([param('ns3::SimpleRefCount< ns3::NixVector, ns3::empty, ns3::DefaultDeleter< ns3::NixVector > > const &', 'o')])
2802 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::NixVector, ns3::empty, ns3::DefaultDeleter<ns3::NixVector> >::Cleanup() [member function]
2803 cls.add_method('Cleanup',
2804 'void',
2805 [],
2806 is_static=True)
2807 return
2808
Alexander Afanasyev381dea02011-11-03 08:33:26 -07002809def register_Ns3SimpleRefCount__Ns3Packet_Ns3Empty_Ns3DefaultDeleter__lt__ns3Packet__gt___methods(root_module, cls):
2810 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Packet, ns3::empty, ns3::DefaultDeleter<ns3::Packet> >::SimpleRefCount() [constructor]
2811 cls.add_constructor([])
2812 ## 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]
2813 cls.add_constructor([param('ns3::SimpleRefCount< ns3::Packet, ns3::empty, ns3::DefaultDeleter< ns3::Packet > > const &', 'o')])
2814 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::Packet, ns3::empty, ns3::DefaultDeleter<ns3::Packet> >::Cleanup() [member function]
2815 cls.add_method('Cleanup',
2816 'void',
2817 [],
2818 is_static=True)
2819 return
2820
2821def register_Ns3SimpleRefCount__Ns3TraceSourceAccessor_Ns3Empty_Ns3DefaultDeleter__lt__ns3TraceSourceAccessor__gt___methods(root_module, cls):
2822 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter<ns3::TraceSourceAccessor> >::SimpleRefCount() [constructor]
2823 cls.add_constructor([])
2824 ## 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]
2825 cls.add_constructor([param('ns3::SimpleRefCount< ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter< ns3::TraceSourceAccessor > > const &', 'o')])
2826 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter<ns3::TraceSourceAccessor> >::Cleanup() [member function]
2827 cls.add_method('Cleanup',
2828 'void',
2829 [],
2830 is_static=True)
2831 return
2832
Alexander Afanasyev381dea02011-11-03 08:33:26 -07002833def register_Ns3Time_methods(root_module, cls):
2834 cls.add_binary_comparison_operator('!=')
2835 cls.add_inplace_numeric_operator('+=', param('ns3::Time const &', 'right'))
2836 cls.add_inplace_numeric_operator('-=', param('ns3::Time const &', 'right'))
2837 cls.add_output_stream_operator()
Alexander Afanasyev4975f732011-12-20 17:52:19 -08002838 cls.add_binary_comparison_operator('<=')
Alexander Afanasyev381dea02011-11-03 08:33:26 -07002839 cls.add_binary_comparison_operator('==')
2840 cls.add_binary_comparison_operator('>=')
2841 cls.add_binary_numeric_operator('+', root_module['ns3::Time'], root_module['ns3::Time'], param('ns3::Time const &', 'right'))
2842 cls.add_binary_numeric_operator('-', root_module['ns3::Time'], root_module['ns3::Time'], param('ns3::Time const &', 'right'))
2843 cls.add_binary_comparison_operator('<')
2844 cls.add_binary_comparison_operator('>')
2845 ## nstime.h (module 'core'): ns3::Time::Time() [constructor]
2846 cls.add_constructor([])
2847 ## nstime.h (module 'core'): ns3::Time::Time(ns3::Time const & o) [copy constructor]
2848 cls.add_constructor([param('ns3::Time const &', 'o')])
2849 ## nstime.h (module 'core'): ns3::Time::Time(double v) [constructor]
2850 cls.add_constructor([param('double', 'v')])
2851 ## nstime.h (module 'core'): ns3::Time::Time(int v) [constructor]
2852 cls.add_constructor([param('int', 'v')])
2853 ## nstime.h (module 'core'): ns3::Time::Time(long int v) [constructor]
2854 cls.add_constructor([param('long int', 'v')])
2855 ## nstime.h (module 'core'): ns3::Time::Time(long long int v) [constructor]
2856 cls.add_constructor([param('long long int', 'v')])
2857 ## nstime.h (module 'core'): ns3::Time::Time(unsigned int v) [constructor]
2858 cls.add_constructor([param('unsigned int', 'v')])
2859 ## nstime.h (module 'core'): ns3::Time::Time(long unsigned int v) [constructor]
2860 cls.add_constructor([param('long unsigned int', 'v')])
2861 ## nstime.h (module 'core'): ns3::Time::Time(long long unsigned int v) [constructor]
2862 cls.add_constructor([param('long long unsigned int', 'v')])
2863 ## nstime.h (module 'core'): ns3::Time::Time(std::string const & s) [constructor]
2864 cls.add_constructor([param('std::string const &', 's')])
2865 ## nstime.h (module 'core'): ns3::Time::Time(ns3::int64x64_t const & value) [constructor]
2866 cls.add_constructor([param('ns3::int64x64_t const &', 'value')])
2867 ## nstime.h (module 'core'): int ns3::Time::Compare(ns3::Time const & o) const [member function]
2868 cls.add_method('Compare',
2869 'int',
2870 [param('ns3::Time const &', 'o')],
2871 is_const=True)
2872 ## nstime.h (module 'core'): static ns3::Time ns3::Time::From(ns3::int64x64_t const & from, ns3::Time::Unit timeUnit) [member function]
2873 cls.add_method('From',
2874 'ns3::Time',
2875 [param('ns3::int64x64_t const &', 'from'), param('ns3::Time::Unit', 'timeUnit')],
2876 is_static=True)
2877 ## nstime.h (module 'core'): static ns3::Time ns3::Time::From(ns3::int64x64_t const & value) [member function]
2878 cls.add_method('From',
2879 'ns3::Time',
2880 [param('ns3::int64x64_t const &', 'value')],
2881 is_static=True)
2882 ## nstime.h (module 'core'): static ns3::Time ns3::Time::FromDouble(double value, ns3::Time::Unit timeUnit) [member function]
2883 cls.add_method('FromDouble',
2884 'ns3::Time',
2885 [param('double', 'value'), param('ns3::Time::Unit', 'timeUnit')],
2886 is_static=True)
2887 ## nstime.h (module 'core'): static ns3::Time ns3::Time::FromInteger(uint64_t value, ns3::Time::Unit timeUnit) [member function]
2888 cls.add_method('FromInteger',
2889 'ns3::Time',
2890 [param('uint64_t', 'value'), param('ns3::Time::Unit', 'timeUnit')],
2891 is_static=True)
2892 ## nstime.h (module 'core'): double ns3::Time::GetDouble() const [member function]
2893 cls.add_method('GetDouble',
2894 'double',
2895 [],
2896 is_const=True)
2897 ## nstime.h (module 'core'): int64_t ns3::Time::GetFemtoSeconds() const [member function]
2898 cls.add_method('GetFemtoSeconds',
2899 'int64_t',
2900 [],
2901 is_const=True)
2902 ## nstime.h (module 'core'): int64_t ns3::Time::GetInteger() const [member function]
2903 cls.add_method('GetInteger',
2904 'int64_t',
2905 [],
2906 is_const=True)
2907 ## nstime.h (module 'core'): int64_t ns3::Time::GetMicroSeconds() const [member function]
2908 cls.add_method('GetMicroSeconds',
2909 'int64_t',
2910 [],
2911 is_const=True)
2912 ## nstime.h (module 'core'): int64_t ns3::Time::GetMilliSeconds() const [member function]
2913 cls.add_method('GetMilliSeconds',
2914 'int64_t',
2915 [],
2916 is_const=True)
2917 ## nstime.h (module 'core'): int64_t ns3::Time::GetNanoSeconds() const [member function]
2918 cls.add_method('GetNanoSeconds',
2919 'int64_t',
2920 [],
2921 is_const=True)
2922 ## nstime.h (module 'core'): int64_t ns3::Time::GetPicoSeconds() const [member function]
2923 cls.add_method('GetPicoSeconds',
2924 'int64_t',
2925 [],
2926 is_const=True)
2927 ## nstime.h (module 'core'): static ns3::Time::Unit ns3::Time::GetResolution() [member function]
2928 cls.add_method('GetResolution',
2929 'ns3::Time::Unit',
2930 [],
2931 is_static=True)
2932 ## nstime.h (module 'core'): double ns3::Time::GetSeconds() const [member function]
2933 cls.add_method('GetSeconds',
2934 'double',
2935 [],
2936 is_const=True)
2937 ## nstime.h (module 'core'): int64_t ns3::Time::GetTimeStep() const [member function]
2938 cls.add_method('GetTimeStep',
2939 'int64_t',
2940 [],
2941 is_const=True)
2942 ## nstime.h (module 'core'): bool ns3::Time::IsNegative() const [member function]
2943 cls.add_method('IsNegative',
2944 'bool',
2945 [],
2946 is_const=True)
2947 ## nstime.h (module 'core'): bool ns3::Time::IsPositive() const [member function]
2948 cls.add_method('IsPositive',
2949 'bool',
2950 [],
2951 is_const=True)
2952 ## nstime.h (module 'core'): bool ns3::Time::IsStrictlyNegative() const [member function]
2953 cls.add_method('IsStrictlyNegative',
2954 'bool',
2955 [],
2956 is_const=True)
2957 ## nstime.h (module 'core'): bool ns3::Time::IsStrictlyPositive() const [member function]
2958 cls.add_method('IsStrictlyPositive',
2959 'bool',
2960 [],
2961 is_const=True)
2962 ## nstime.h (module 'core'): bool ns3::Time::IsZero() const [member function]
2963 cls.add_method('IsZero',
2964 'bool',
2965 [],
2966 is_const=True)
2967 ## nstime.h (module 'core'): static void ns3::Time::SetResolution(ns3::Time::Unit resolution) [member function]
2968 cls.add_method('SetResolution',
2969 'void',
2970 [param('ns3::Time::Unit', 'resolution')],
2971 is_static=True)
2972 ## nstime.h (module 'core'): ns3::int64x64_t ns3::Time::To(ns3::Time::Unit timeUnit) const [member function]
2973 cls.add_method('To',
2974 'ns3::int64x64_t',
2975 [param('ns3::Time::Unit', 'timeUnit')],
2976 is_const=True)
2977 ## nstime.h (module 'core'): double ns3::Time::ToDouble(ns3::Time::Unit timeUnit) const [member function]
2978 cls.add_method('ToDouble',
2979 'double',
2980 [param('ns3::Time::Unit', 'timeUnit')],
2981 is_const=True)
2982 ## nstime.h (module 'core'): int64_t ns3::Time::ToInteger(ns3::Time::Unit timeUnit) const [member function]
2983 cls.add_method('ToInteger',
2984 'int64_t',
2985 [param('ns3::Time::Unit', 'timeUnit')],
2986 is_const=True)
2987 return
2988
Alexander Afanasyev381dea02011-11-03 08:33:26 -07002989def register_Ns3TraceSourceAccessor_methods(root_module, cls):
2990 ## trace-source-accessor.h (module 'core'): ns3::TraceSourceAccessor::TraceSourceAccessor(ns3::TraceSourceAccessor const & arg0) [copy constructor]
2991 cls.add_constructor([param('ns3::TraceSourceAccessor const &', 'arg0')])
2992 ## trace-source-accessor.h (module 'core'): ns3::TraceSourceAccessor::TraceSourceAccessor() [constructor]
2993 cls.add_constructor([])
2994 ## trace-source-accessor.h (module 'core'): bool ns3::TraceSourceAccessor::Connect(ns3::ObjectBase * obj, std::string context, ns3::CallbackBase const & cb) const [member function]
2995 cls.add_method('Connect',
2996 'bool',
2997 [param('ns3::ObjectBase *', 'obj', transfer_ownership=False), param('std::string', 'context'), param('ns3::CallbackBase const &', 'cb')],
2998 is_pure_virtual=True, is_const=True, is_virtual=True)
2999 ## trace-source-accessor.h (module 'core'): bool ns3::TraceSourceAccessor::ConnectWithoutContext(ns3::ObjectBase * obj, ns3::CallbackBase const & cb) const [member function]
3000 cls.add_method('ConnectWithoutContext',
3001 'bool',
3002 [param('ns3::ObjectBase *', 'obj', transfer_ownership=False), param('ns3::CallbackBase const &', 'cb')],
3003 is_pure_virtual=True, is_const=True, is_virtual=True)
3004 ## trace-source-accessor.h (module 'core'): bool ns3::TraceSourceAccessor::Disconnect(ns3::ObjectBase * obj, std::string context, ns3::CallbackBase const & cb) const [member function]
3005 cls.add_method('Disconnect',
3006 'bool',
3007 [param('ns3::ObjectBase *', 'obj', transfer_ownership=False), param('std::string', 'context'), param('ns3::CallbackBase const &', 'cb')],
3008 is_pure_virtual=True, is_const=True, is_virtual=True)
3009 ## trace-source-accessor.h (module 'core'): bool ns3::TraceSourceAccessor::DisconnectWithoutContext(ns3::ObjectBase * obj, ns3::CallbackBase const & cb) const [member function]
3010 cls.add_method('DisconnectWithoutContext',
3011 'bool',
3012 [param('ns3::ObjectBase *', 'obj', transfer_ownership=False), param('ns3::CallbackBase const &', 'cb')],
3013 is_pure_virtual=True, is_const=True, is_virtual=True)
3014 return
3015
3016def register_Ns3Trailer_methods(root_module, cls):
3017 cls.add_output_stream_operator()
3018 ## trailer.h (module 'network'): ns3::Trailer::Trailer() [constructor]
3019 cls.add_constructor([])
3020 ## trailer.h (module 'network'): ns3::Trailer::Trailer(ns3::Trailer const & arg0) [copy constructor]
3021 cls.add_constructor([param('ns3::Trailer const &', 'arg0')])
3022 ## trailer.h (module 'network'): uint32_t ns3::Trailer::Deserialize(ns3::Buffer::Iterator end) [member function]
3023 cls.add_method('Deserialize',
3024 'uint32_t',
3025 [param('ns3::Buffer::Iterator', 'end')],
3026 is_pure_virtual=True, is_virtual=True)
3027 ## trailer.h (module 'network'): uint32_t ns3::Trailer::GetSerializedSize() const [member function]
3028 cls.add_method('GetSerializedSize',
3029 'uint32_t',
3030 [],
3031 is_pure_virtual=True, is_const=True, is_virtual=True)
3032 ## trailer.h (module 'network'): static ns3::TypeId ns3::Trailer::GetTypeId() [member function]
3033 cls.add_method('GetTypeId',
3034 'ns3::TypeId',
3035 [],
3036 is_static=True)
3037 ## trailer.h (module 'network'): void ns3::Trailer::Print(std::ostream & os) const [member function]
3038 cls.add_method('Print',
3039 'void',
3040 [param('std::ostream &', 'os')],
3041 is_pure_virtual=True, is_const=True, is_virtual=True)
3042 ## trailer.h (module 'network'): void ns3::Trailer::Serialize(ns3::Buffer::Iterator start) const [member function]
3043 cls.add_method('Serialize',
3044 'void',
3045 [param('ns3::Buffer::Iterator', 'start')],
3046 is_pure_virtual=True, is_const=True, is_virtual=True)
3047 return
3048
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003049def register_Ns3Application_methods(root_module, cls):
3050 ## application.h (module 'network'): ns3::Application::Application(ns3::Application const & arg0) [copy constructor]
3051 cls.add_constructor([param('ns3::Application const &', 'arg0')])
3052 ## application.h (module 'network'): ns3::Application::Application() [constructor]
3053 cls.add_constructor([])
3054 ## application.h (module 'network'): ns3::Ptr<ns3::Node> ns3::Application::GetNode() const [member function]
3055 cls.add_method('GetNode',
3056 'ns3::Ptr< ns3::Node >',
3057 [],
3058 is_const=True)
3059 ## application.h (module 'network'): static ns3::TypeId ns3::Application::GetTypeId() [member function]
3060 cls.add_method('GetTypeId',
3061 'ns3::TypeId',
3062 [],
3063 is_static=True)
3064 ## application.h (module 'network'): void ns3::Application::SetNode(ns3::Ptr<ns3::Node> node) [member function]
3065 cls.add_method('SetNode',
3066 'void',
3067 [param('ns3::Ptr< ns3::Node >', 'node')])
3068 ## application.h (module 'network'): void ns3::Application::SetStartTime(ns3::Time start) [member function]
3069 cls.add_method('SetStartTime',
3070 'void',
3071 [param('ns3::Time', 'start')])
3072 ## application.h (module 'network'): void ns3::Application::SetStopTime(ns3::Time stop) [member function]
3073 cls.add_method('SetStopTime',
3074 'void',
3075 [param('ns3::Time', 'stop')])
3076 ## application.h (module 'network'): void ns3::Application::DoDispose() [member function]
3077 cls.add_method('DoDispose',
3078 'void',
3079 [],
3080 visibility='protected', is_virtual=True)
3081 ## application.h (module 'network'): void ns3::Application::DoStart() [member function]
3082 cls.add_method('DoStart',
3083 'void',
3084 [],
3085 visibility='protected', is_virtual=True)
3086 ## application.h (module 'network'): void ns3::Application::StartApplication() [member function]
3087 cls.add_method('StartApplication',
3088 'void',
3089 [],
Alexander Afanasyev4756b892012-04-18 14:48:43 -07003090 visibility='private', is_virtual=True)
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003091 ## application.h (module 'network'): void ns3::Application::StopApplication() [member function]
3092 cls.add_method('StopApplication',
3093 'void',
3094 [],
Alexander Afanasyev4756b892012-04-18 14:48:43 -07003095 visibility='private', is_virtual=True)
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003096 return
3097
3098def register_Ns3AttributeAccessor_methods(root_module, cls):
3099 ## attribute.h (module 'core'): ns3::AttributeAccessor::AttributeAccessor(ns3::AttributeAccessor const & arg0) [copy constructor]
3100 cls.add_constructor([param('ns3::AttributeAccessor const &', 'arg0')])
3101 ## attribute.h (module 'core'): ns3::AttributeAccessor::AttributeAccessor() [constructor]
3102 cls.add_constructor([])
3103 ## attribute.h (module 'core'): bool ns3::AttributeAccessor::Get(ns3::ObjectBase const * object, ns3::AttributeValue & attribute) const [member function]
3104 cls.add_method('Get',
3105 'bool',
3106 [param('ns3::ObjectBase const *', 'object'), param('ns3::AttributeValue &', 'attribute')],
3107 is_pure_virtual=True, is_const=True, is_virtual=True)
3108 ## attribute.h (module 'core'): bool ns3::AttributeAccessor::HasGetter() const [member function]
3109 cls.add_method('HasGetter',
3110 'bool',
3111 [],
3112 is_pure_virtual=True, is_const=True, is_virtual=True)
3113 ## attribute.h (module 'core'): bool ns3::AttributeAccessor::HasSetter() const [member function]
3114 cls.add_method('HasSetter',
3115 'bool',
3116 [],
3117 is_pure_virtual=True, is_const=True, is_virtual=True)
3118 ## attribute.h (module 'core'): bool ns3::AttributeAccessor::Set(ns3::ObjectBase * object, ns3::AttributeValue const & value) const [member function]
3119 cls.add_method('Set',
3120 'bool',
3121 [param('ns3::ObjectBase *', 'object', transfer_ownership=False), param('ns3::AttributeValue const &', 'value')],
3122 is_pure_virtual=True, is_const=True, is_virtual=True)
3123 return
3124
3125def register_Ns3AttributeChecker_methods(root_module, cls):
3126 ## attribute.h (module 'core'): ns3::AttributeChecker::AttributeChecker(ns3::AttributeChecker const & arg0) [copy constructor]
3127 cls.add_constructor([param('ns3::AttributeChecker const &', 'arg0')])
3128 ## attribute.h (module 'core'): ns3::AttributeChecker::AttributeChecker() [constructor]
3129 cls.add_constructor([])
3130 ## attribute.h (module 'core'): bool ns3::AttributeChecker::Check(ns3::AttributeValue const & value) const [member function]
3131 cls.add_method('Check',
3132 'bool',
3133 [param('ns3::AttributeValue const &', 'value')],
3134 is_pure_virtual=True, is_const=True, is_virtual=True)
3135 ## attribute.h (module 'core'): bool ns3::AttributeChecker::Copy(ns3::AttributeValue const & source, ns3::AttributeValue & destination) const [member function]
3136 cls.add_method('Copy',
3137 'bool',
3138 [param('ns3::AttributeValue const &', 'source'), param('ns3::AttributeValue &', 'destination')],
3139 is_pure_virtual=True, is_const=True, is_virtual=True)
3140 ## attribute.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::AttributeChecker::Create() const [member function]
3141 cls.add_method('Create',
3142 'ns3::Ptr< ns3::AttributeValue >',
3143 [],
3144 is_pure_virtual=True, is_const=True, is_virtual=True)
3145 ## attribute.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::AttributeChecker::CreateValidValue(ns3::AttributeValue const & value) const [member function]
3146 cls.add_method('CreateValidValue',
3147 'ns3::Ptr< ns3::AttributeValue >',
3148 [param('ns3::AttributeValue const &', 'value')],
3149 is_const=True)
3150 ## attribute.h (module 'core'): std::string ns3::AttributeChecker::GetUnderlyingTypeInformation() const [member function]
3151 cls.add_method('GetUnderlyingTypeInformation',
3152 'std::string',
3153 [],
3154 is_pure_virtual=True, is_const=True, is_virtual=True)
3155 ## attribute.h (module 'core'): std::string ns3::AttributeChecker::GetValueTypeName() const [member function]
3156 cls.add_method('GetValueTypeName',
3157 'std::string',
3158 [],
3159 is_pure_virtual=True, is_const=True, is_virtual=True)
3160 ## attribute.h (module 'core'): bool ns3::AttributeChecker::HasUnderlyingTypeInformation() const [member function]
3161 cls.add_method('HasUnderlyingTypeInformation',
3162 'bool',
3163 [],
3164 is_pure_virtual=True, is_const=True, is_virtual=True)
3165 return
3166
3167def register_Ns3AttributeValue_methods(root_module, cls):
3168 ## attribute.h (module 'core'): ns3::AttributeValue::AttributeValue(ns3::AttributeValue const & arg0) [copy constructor]
3169 cls.add_constructor([param('ns3::AttributeValue const &', 'arg0')])
3170 ## attribute.h (module 'core'): ns3::AttributeValue::AttributeValue() [constructor]
3171 cls.add_constructor([])
3172 ## attribute.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::AttributeValue::Copy() const [member function]
3173 cls.add_method('Copy',
3174 'ns3::Ptr< ns3::AttributeValue >',
3175 [],
3176 is_pure_virtual=True, is_const=True, is_virtual=True)
3177 ## attribute.h (module 'core'): bool ns3::AttributeValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
3178 cls.add_method('DeserializeFromString',
3179 'bool',
3180 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3181 is_pure_virtual=True, is_virtual=True)
3182 ## attribute.h (module 'core'): std::string ns3::AttributeValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
3183 cls.add_method('SerializeToString',
3184 'std::string',
3185 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3186 is_pure_virtual=True, is_const=True, is_virtual=True)
3187 return
3188
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08003189def register_Ns3BatchesChecker_methods(root_module, cls):
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003190 ## batches.h (module 'ndnSIM'): ns3::BatchesChecker::BatchesChecker() [constructor]
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08003191 cls.add_constructor([])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003192 ## batches.h (module 'ndnSIM'): ns3::BatchesChecker::BatchesChecker(ns3::BatchesChecker const & arg0) [copy constructor]
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08003193 cls.add_constructor([param('ns3::BatchesChecker const &', 'arg0')])
3194 return
3195
3196def register_Ns3BatchesValue_methods(root_module, cls):
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003197 ## batches.h (module 'ndnSIM'): ns3::BatchesValue::BatchesValue() [constructor]
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08003198 cls.add_constructor([])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003199 ## batches.h (module 'ndnSIM'): ns3::BatchesValue::BatchesValue(ns3::BatchesValue const & arg0) [copy constructor]
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08003200 cls.add_constructor([param('ns3::BatchesValue const &', 'arg0')])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003201 ## batches.h (module 'ndnSIM'): ns3::BatchesValue::BatchesValue(ns3::Batches const & value) [constructor]
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08003202 cls.add_constructor([param('ns3::Batches const &', 'value')])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003203 ## batches.h (module 'ndnSIM'): ns3::Ptr<ns3::AttributeValue> ns3::BatchesValue::Copy() const [member function]
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08003204 cls.add_method('Copy',
3205 'ns3::Ptr< ns3::AttributeValue >',
3206 [],
3207 is_const=True, is_virtual=True)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003208 ## 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 -08003209 cls.add_method('DeserializeFromString',
3210 'bool',
3211 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3212 is_virtual=True)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003213 ## batches.h (module 'ndnSIM'): ns3::Batches ns3::BatchesValue::Get() const [member function]
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08003214 cls.add_method('Get',
3215 'ns3::Batches',
3216 [],
3217 is_const=True)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003218 ## 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 -08003219 cls.add_method('SerializeToString',
3220 'std::string',
3221 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3222 is_const=True, is_virtual=True)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003223 ## batches.h (module 'ndnSIM'): void ns3::BatchesValue::Set(ns3::Batches const & value) [member function]
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08003224 cls.add_method('Set',
3225 'void',
3226 [param('ns3::Batches const &', 'value')])
3227 return
3228
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003229def register_Ns3CallbackChecker_methods(root_module, cls):
3230 ## callback.h (module 'core'): ns3::CallbackChecker::CallbackChecker() [constructor]
3231 cls.add_constructor([])
3232 ## callback.h (module 'core'): ns3::CallbackChecker::CallbackChecker(ns3::CallbackChecker const & arg0) [copy constructor]
3233 cls.add_constructor([param('ns3::CallbackChecker const &', 'arg0')])
3234 return
3235
3236def register_Ns3CallbackImplBase_methods(root_module, cls):
3237 ## callback.h (module 'core'): ns3::CallbackImplBase::CallbackImplBase() [constructor]
3238 cls.add_constructor([])
3239 ## callback.h (module 'core'): ns3::CallbackImplBase::CallbackImplBase(ns3::CallbackImplBase const & arg0) [copy constructor]
3240 cls.add_constructor([param('ns3::CallbackImplBase const &', 'arg0')])
3241 ## callback.h (module 'core'): bool ns3::CallbackImplBase::IsEqual(ns3::Ptr<ns3::CallbackImplBase const> other) const [member function]
3242 cls.add_method('IsEqual',
3243 'bool',
3244 [param('ns3::Ptr< ns3::CallbackImplBase const >', 'other')],
3245 is_pure_virtual=True, is_const=True, is_virtual=True)
3246 return
3247
3248def register_Ns3CallbackValue_methods(root_module, cls):
3249 ## callback.h (module 'core'): ns3::CallbackValue::CallbackValue(ns3::CallbackValue const & arg0) [copy constructor]
3250 cls.add_constructor([param('ns3::CallbackValue const &', 'arg0')])
3251 ## callback.h (module 'core'): ns3::CallbackValue::CallbackValue() [constructor]
3252 cls.add_constructor([])
3253 ## callback.h (module 'core'): ns3::CallbackValue::CallbackValue(ns3::CallbackBase const & base) [constructor]
3254 cls.add_constructor([param('ns3::CallbackBase const &', 'base')])
3255 ## callback.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::CallbackValue::Copy() const [member function]
3256 cls.add_method('Copy',
3257 'ns3::Ptr< ns3::AttributeValue >',
3258 [],
3259 is_const=True, is_virtual=True)
3260 ## callback.h (module 'core'): bool ns3::CallbackValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
3261 cls.add_method('DeserializeFromString',
3262 'bool',
3263 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3264 is_virtual=True)
3265 ## callback.h (module 'core'): std::string ns3::CallbackValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
3266 cls.add_method('SerializeToString',
3267 'std::string',
3268 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3269 is_const=True, is_virtual=True)
3270 ## callback.h (module 'core'): void ns3::CallbackValue::Set(ns3::CallbackBase base) [member function]
3271 cls.add_method('Set',
3272 'void',
3273 [param('ns3::CallbackBase', 'base')])
3274 return
3275
3276def register_Ns3Ccnx_methods(root_module, cls):
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003277 ## ccnx.h (module 'ndnSIM'): ns3::Ccnx::Ccnx() [constructor]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003278 cls.add_constructor([])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003279 ## ccnx.h (module 'ndnSIM'): ns3::Ccnx::Ccnx(ns3::Ccnx const & arg0) [copy constructor]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003280 cls.add_constructor([param('ns3::Ccnx const &', 'arg0')])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003281 ## ccnx.h (module 'ndnSIM'): uint32_t ns3::Ccnx::AddFace(ns3::Ptr<ns3::CcnxFace> const & face) [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003282 cls.add_method('AddFace',
3283 'uint32_t',
3284 [param('ns3::Ptr< ns3::CcnxFace > const &', 'face')],
3285 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003286 ## ccnx.h (module 'ndnSIM'): ns3::Ptr<ns3::CcnxFace> ns3::Ccnx::GetFace(uint32_t face) const [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003287 cls.add_method('GetFace',
3288 'ns3::Ptr< ns3::CcnxFace >',
3289 [param('uint32_t', 'face')],
3290 is_pure_virtual=True, is_const=True, is_virtual=True)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003291 ## ccnx.h (module 'ndnSIM'): ns3::Ptr<ns3::CcnxFace> ns3::Ccnx::GetFaceByNetDevice(ns3::Ptr<ns3::NetDevice> netDevice) const [member function]
Alexander Afanasyev07827182011-12-13 01:07:32 -08003292 cls.add_method('GetFaceByNetDevice',
3293 'ns3::Ptr< ns3::CcnxFace >',
3294 [param('ns3::Ptr< ns3::NetDevice >', 'netDevice')],
3295 is_pure_virtual=True, is_const=True, is_virtual=True)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003296 ## ccnx.h (module 'ndnSIM'): ns3::Ptr<ns3::CcnxForwardingStrategy> ns3::Ccnx::GetForwardingStrategy() const [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003297 cls.add_method('GetForwardingStrategy',
3298 'ns3::Ptr< ns3::CcnxForwardingStrategy >',
3299 [],
3300 is_pure_virtual=True, is_const=True, is_virtual=True)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003301 ## ccnx.h (module 'ndnSIM'): uint32_t ns3::Ccnx::GetNFaces() const [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003302 cls.add_method('GetNFaces',
3303 'uint32_t',
3304 [],
3305 is_pure_virtual=True, is_const=True, is_virtual=True)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003306 ## ccnx.h (module 'ndnSIM'): ns3::Ptr<ns3::CcnxPit> ns3::Ccnx::GetPit() const [member function]
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07003307 cls.add_method('GetPit',
3308 'ns3::Ptr< ns3::CcnxPit >',
3309 [],
3310 is_pure_virtual=True, is_const=True, is_virtual=True)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003311 ## ccnx.h (module 'ndnSIM'): static ns3::TypeId ns3::Ccnx::GetTypeId() [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003312 cls.add_method('GetTypeId',
3313 'ns3::TypeId',
3314 [],
3315 is_static=True)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003316 ## ccnx.h (module 'ndnSIM'): void ns3::Ccnx::RemoveFace(ns3::Ptr<ns3::CcnxFace> face) [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003317 cls.add_method('RemoveFace',
3318 'void',
3319 [param('ns3::Ptr< ns3::CcnxFace >', 'face')],
3320 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003321 ## ccnx.h (module 'ndnSIM'): void ns3::Ccnx::SetForwardingStrategy(ns3::Ptr<ns3::CcnxForwardingStrategy> forwardingStrategy) [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003322 cls.add_method('SetForwardingStrategy',
3323 'void',
3324 [param('ns3::Ptr< ns3::CcnxForwardingStrategy >', 'forwardingStrategy')],
3325 is_pure_virtual=True, is_virtual=True)
3326 return
3327
Alexander Afanasyev07827182011-12-13 01:07:32 -08003328def register_Ns3CcnxApp_methods(root_module, cls):
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003329 ## ccnx-app.h (module 'ndnSIM'): ns3::CcnxApp::CcnxApp(ns3::CcnxApp const & arg0) [copy constructor]
Alexander Afanasyev07827182011-12-13 01:07:32 -08003330 cls.add_constructor([param('ns3::CcnxApp const &', 'arg0')])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003331 ## ccnx-app.h (module 'ndnSIM'): ns3::CcnxApp::CcnxApp() [constructor]
Alexander Afanasyev07827182011-12-13 01:07:32 -08003332 cls.add_constructor([])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003333 ## ccnx-app.h (module 'ndnSIM'): static ns3::TypeId ns3::CcnxApp::GetTypeId() [member function]
Alexander Afanasyev07827182011-12-13 01:07:32 -08003334 cls.add_method('GetTypeId',
3335 'ns3::TypeId',
3336 [],
3337 is_static=True)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003338 ## ccnx-app.h (module 'ndnSIM'): void ns3::CcnxApp::OnContentObject(ns3::Ptr<const ns3::CcnxContentObjectHeader> const & contentObject, ns3::Ptr<ns3::Packet> payload) [member function]
Alexander Afanasyev07827182011-12-13 01:07:32 -08003339 cls.add_method('OnContentObject',
3340 'void',
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08003341 [param('ns3::Ptr< ns3::CcnxContentObjectHeader const > const &', 'contentObject'), param('ns3::Ptr< ns3::Packet >', 'payload')],
Alexander Afanasyev07827182011-12-13 01:07:32 -08003342 is_virtual=True)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003343 ## ccnx-app.h (module 'ndnSIM'): void ns3::CcnxApp::OnInterest(ns3::Ptr<const ns3::CcnxInterestHeader> const & interest, ns3::Ptr<ns3::Packet> packet) [member function]
Alexander Afanasyev07827182011-12-13 01:07:32 -08003344 cls.add_method('OnInterest',
3345 'void',
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08003346 [param('ns3::Ptr< ns3::CcnxInterestHeader const > const &', 'interest'), param('ns3::Ptr< ns3::Packet >', 'packet')],
Alexander Afanasyev07827182011-12-13 01:07:32 -08003347 is_virtual=True)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003348 ## ccnx-app.h (module 'ndnSIM'): void ns3::CcnxApp::OnNack(ns3::Ptr<const ns3::CcnxInterestHeader> const & interest, ns3::Ptr<ns3::Packet> packet) [member function]
Alexander Afanasyev07827182011-12-13 01:07:32 -08003349 cls.add_method('OnNack',
3350 'void',
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08003351 [param('ns3::Ptr< ns3::CcnxInterestHeader const > const &', 'interest'), param('ns3::Ptr< ns3::Packet >', 'packet')],
Alexander Afanasyev07827182011-12-13 01:07:32 -08003352 is_virtual=True)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003353 ## ccnx-app.h (module 'ndnSIM'): void ns3::CcnxApp::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 Afanasyev07827182011-12-13 01:07:32 -08003354 cls.add_method('RegisterProtocolHandler',
3355 'void',
3356 [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')])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003357 ## ccnx-app.h (module 'ndnSIM'): void ns3::CcnxApp::DoDispose() [member function]
Alexander Afanasyev07827182011-12-13 01:07:32 -08003358 cls.add_method('DoDispose',
3359 'void',
3360 [],
3361 visibility='protected', is_virtual=True)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003362 ## ccnx-app.h (module 'ndnSIM'): void ns3::CcnxApp::StartApplication() [member function]
Alexander Afanasyev07827182011-12-13 01:07:32 -08003363 cls.add_method('StartApplication',
3364 'void',
3365 [],
3366 visibility='protected', is_virtual=True)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003367 ## ccnx-app.h (module 'ndnSIM'): void ns3::CcnxApp::StopApplication() [member function]
Alexander Afanasyev07827182011-12-13 01:07:32 -08003368 cls.add_method('StopApplication',
3369 'void',
3370 [],
3371 visibility='protected', is_virtual=True)
3372 return
3373
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003374def register_Ns3CcnxContentObjectHeader_methods(root_module, cls):
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003375 ## ccnx-content-object-header.h (module 'ndnSIM'): ns3::CcnxContentObjectHeader::CcnxContentObjectHeader(ns3::CcnxContentObjectHeader const & arg0) [copy constructor]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003376 cls.add_constructor([param('ns3::CcnxContentObjectHeader const &', 'arg0')])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003377 ## ccnx-content-object-header.h (module 'ndnSIM'): ns3::CcnxContentObjectHeader::CcnxContentObjectHeader() [constructor]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003378 cls.add_constructor([])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003379 ## ccnx-content-object-header.h (module 'ndnSIM'): uint32_t ns3::CcnxContentObjectHeader::Deserialize(ns3::Buffer::Iterator start) [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003380 cls.add_method('Deserialize',
3381 'uint32_t',
3382 [param('ns3::Buffer::Iterator', 'start')],
3383 is_virtual=True)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003384 ## ccnx-content-object-header.h (module 'ndnSIM'): ns3::TypeId ns3::CcnxContentObjectHeader::GetInstanceTypeId() const [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003385 cls.add_method('GetInstanceTypeId',
3386 'ns3::TypeId',
3387 [],
3388 is_const=True, is_virtual=True)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003389 ## ccnx-content-object-header.h (module 'ndnSIM'): ns3::CcnxNameComponents const & ns3::CcnxContentObjectHeader::GetName() const [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003390 cls.add_method('GetName',
3391 'ns3::CcnxNameComponents const &',
3392 [],
3393 is_const=True)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003394 ## ccnx-content-object-header.h (module 'ndnSIM'): uint32_t ns3::CcnxContentObjectHeader::GetSerializedSize() const [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003395 cls.add_method('GetSerializedSize',
3396 'uint32_t',
3397 [],
3398 is_const=True, is_virtual=True)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003399 ## ccnx-content-object-header.h (module 'ndnSIM'): ns3::CcnxContentObjectHeader::Signature & ns3::CcnxContentObjectHeader::GetSignature() [member function]
3400 cls.add_method('GetSignature',
3401 'ns3::CcnxContentObjectHeader::Signature &',
3402 [])
3403 ## ccnx-content-object-header.h (module 'ndnSIM'): ns3::CcnxContentObjectHeader::Signature const & ns3::CcnxContentObjectHeader::GetSignature() const [member function]
3404 cls.add_method('GetSignature',
3405 'ns3::CcnxContentObjectHeader::Signature const &',
Alexander Afanasyev9568f952012-04-05 16:09:14 -07003406 [],
3407 is_const=True)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003408 ## ccnx-content-object-header.h (module 'ndnSIM'): ns3::CcnxContentObjectHeader::SignedInfo & ns3::CcnxContentObjectHeader::GetSignedInfo() [member function]
3409 cls.add_method('GetSignedInfo',
3410 'ns3::CcnxContentObjectHeader::SignedInfo &',
3411 [])
3412 ## ccnx-content-object-header.h (module 'ndnSIM'): ns3::CcnxContentObjectHeader::SignedInfo const & ns3::CcnxContentObjectHeader::GetSignedInfo() const [member function]
3413 cls.add_method('GetSignedInfo',
3414 'ns3::CcnxContentObjectHeader::SignedInfo const &',
3415 [],
3416 is_const=True)
3417 ## ccnx-content-object-header.h (module 'ndnSIM'): static ns3::TypeId ns3::CcnxContentObjectHeader::GetTypeId() [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003418 cls.add_method('GetTypeId',
3419 'ns3::TypeId',
3420 [],
3421 is_static=True)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003422 ## ccnx-content-object-header.h (module 'ndnSIM'): void ns3::CcnxContentObjectHeader::Print(std::ostream & os) const [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003423 cls.add_method('Print',
3424 'void',
3425 [param('std::ostream &', 'os')],
3426 is_const=True, is_virtual=True)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003427 ## ccnx-content-object-header.h (module 'ndnSIM'): void ns3::CcnxContentObjectHeader::Serialize(ns3::Buffer::Iterator start) const [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003428 cls.add_method('Serialize',
3429 'void',
3430 [param('ns3::Buffer::Iterator', 'start')],
3431 is_const=True, is_virtual=True)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003432 ## ccnx-content-object-header.h (module 'ndnSIM'): void ns3::CcnxContentObjectHeader::SetName(ns3::Ptr<ns3::CcnxNameComponents> const & name) [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003433 cls.add_method('SetName',
3434 'void',
3435 [param('ns3::Ptr< ns3::CcnxNameComponents > const &', 'name')])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003436 return
3437
3438def register_Ns3CcnxContentObjectHeaderSignature_methods(root_module, cls):
3439 ## ccnx-content-object-header.h (module 'ndnSIM'): ns3::CcnxContentObjectHeader::Signature::Signature(ns3::CcnxContentObjectHeader::Signature const & arg0) [copy constructor]
3440 cls.add_constructor([param('ns3::CcnxContentObjectHeader::Signature const &', 'arg0')])
3441 ## ccnx-content-object-header.h (module 'ndnSIM'): ns3::CcnxContentObjectHeader::Signature::Signature() [constructor]
3442 cls.add_constructor([])
3443 ## ccnx-content-object-header.h (module 'ndnSIM'): std::string const & ns3::CcnxContentObjectHeader::Signature::GetDigestAlgorithm() const [member function]
3444 cls.add_method('GetDigestAlgorithm',
3445 'std::string const &',
3446 [],
3447 is_const=True)
3448 ## ccnx-content-object-header.h (module 'ndnSIM'): uint32_t ns3::CcnxContentObjectHeader::Signature::GetSignatureBits() const [member function]
3449 cls.add_method('GetSignatureBits',
3450 'uint32_t',
3451 [],
3452 is_const=True)
3453 ## ccnx-content-object-header.h (module 'ndnSIM'): void ns3::CcnxContentObjectHeader::Signature::SetDigestAlgorithm(std::string const & digestAlgorithm) [member function]
3454 cls.add_method('SetDigestAlgorithm',
3455 'void',
3456 [param('std::string const &', 'digestAlgorithm')])
3457 ## ccnx-content-object-header.h (module 'ndnSIM'): void ns3::CcnxContentObjectHeader::Signature::SetSignatureBits(uint32_t signature) [member function]
3458 cls.add_method('SetSignatureBits',
3459 'void',
3460 [param('uint32_t', 'signature')])
3461 ## ccnx-content-object-header.h (module 'ndnSIM'): ns3::CcnxContentObjectHeader::Signature::DefaultDigestAlgorithm [variable]
3462 cls.add_static_attribute('DefaultDigestAlgorithm', 'std::string const', is_const=True)
3463 return
3464
3465def register_Ns3CcnxContentObjectHeaderSignedInfo_methods(root_module, cls):
3466 ## ccnx-content-object-header.h (module 'ndnSIM'): ns3::CcnxContentObjectHeader::SignedInfo::SignedInfo(ns3::CcnxContentObjectHeader::SignedInfo const & arg0) [copy constructor]
3467 cls.add_constructor([param('ns3::CcnxContentObjectHeader::SignedInfo const &', 'arg0')])
3468 ## ccnx-content-object-header.h (module 'ndnSIM'): ns3::CcnxContentObjectHeader::SignedInfo::SignedInfo() [constructor]
3469 cls.add_constructor([])
3470 ## ccnx-content-object-header.h (module 'ndnSIM'): ns3::CcnxContentObjectHeader::ContentType ns3::CcnxContentObjectHeader::SignedInfo::GetContentType() const [member function]
3471 cls.add_method('GetContentType',
3472 'ns3::CcnxContentObjectHeader::ContentType',
3473 [],
3474 is_const=True)
3475 ## ccnx-content-object-header.h (module 'ndnSIM'): ns3::Time ns3::CcnxContentObjectHeader::SignedInfo::GetFreshness() const [member function]
3476 cls.add_method('GetFreshness',
3477 'ns3::Time',
3478 [],
3479 is_const=True)
3480 ## ccnx-content-object-header.h (module 'ndnSIM'): ns3::Ptr<ns3::CcnxNameComponents const> ns3::CcnxContentObjectHeader::SignedInfo::GetKeyLocator() const [member function]
3481 cls.add_method('GetKeyLocator',
3482 'ns3::Ptr< ns3::CcnxNameComponents const >',
3483 [],
3484 is_const=True)
3485 ## ccnx-content-object-header.h (module 'ndnSIM'): uint32_t ns3::CcnxContentObjectHeader::SignedInfo::GetPublisherPublicKeyDigest() const [member function]
3486 cls.add_method('GetPublisherPublicKeyDigest',
3487 'uint32_t',
3488 [],
3489 is_const=True)
3490 ## ccnx-content-object-header.h (module 'ndnSIM'): ns3::Time ns3::CcnxContentObjectHeader::SignedInfo::GetTimestamp() const [member function]
3491 cls.add_method('GetTimestamp',
3492 'ns3::Time',
3493 [],
3494 is_const=True)
3495 ## ccnx-content-object-header.h (module 'ndnSIM'): void ns3::CcnxContentObjectHeader::SignedInfo::SetContentType(ns3::CcnxContentObjectHeader::ContentType type) [member function]
3496 cls.add_method('SetContentType',
3497 'void',
3498 [param('ns3::CcnxContentObjectHeader::ContentType', 'type')])
3499 ## ccnx-content-object-header.h (module 'ndnSIM'): void ns3::CcnxContentObjectHeader::SignedInfo::SetFreshness(ns3::Time const & freshness) [member function]
3500 cls.add_method('SetFreshness',
3501 'void',
3502 [param('ns3::Time const &', 'freshness')])
3503 ## ccnx-content-object-header.h (module 'ndnSIM'): void ns3::CcnxContentObjectHeader::SignedInfo::SetKeyLocator(ns3::Ptr<ns3::CcnxNameComponents const> keyLocator) [member function]
3504 cls.add_method('SetKeyLocator',
3505 'void',
3506 [param('ns3::Ptr< ns3::CcnxNameComponents const >', 'keyLocator')])
3507 ## ccnx-content-object-header.h (module 'ndnSIM'): void ns3::CcnxContentObjectHeader::SignedInfo::SetPublisherPublicKeyDigest(uint32_t digest) [member function]
3508 cls.add_method('SetPublisherPublicKeyDigest',
3509 'void',
3510 [param('uint32_t', 'digest')])
3511 ## ccnx-content-object-header.h (module 'ndnSIM'): void ns3::CcnxContentObjectHeader::SignedInfo::SetTimestamp(ns3::Time const & timestamp) [member function]
Alexander Afanasyev9568f952012-04-05 16:09:14 -07003512 cls.add_method('SetTimestamp',
3513 'void',
3514 [param('ns3::Time const &', 'timestamp')])
3515 return
3516
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003517def register_Ns3CcnxContentObjectTail_methods(root_module, cls):
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003518 ## ccnx-content-object-header.h (module 'ndnSIM'): ns3::CcnxContentObjectTail::CcnxContentObjectTail(ns3::CcnxContentObjectTail const & arg0) [copy constructor]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003519 cls.add_constructor([param('ns3::CcnxContentObjectTail const &', 'arg0')])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003520 ## ccnx-content-object-header.h (module 'ndnSIM'): ns3::CcnxContentObjectTail::CcnxContentObjectTail() [constructor]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003521 cls.add_constructor([])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003522 ## ccnx-content-object-header.h (module 'ndnSIM'): uint32_t ns3::CcnxContentObjectTail::Deserialize(ns3::Buffer::Iterator start) [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003523 cls.add_method('Deserialize',
3524 'uint32_t',
3525 [param('ns3::Buffer::Iterator', 'start')],
3526 is_virtual=True)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003527 ## ccnx-content-object-header.h (module 'ndnSIM'): ns3::TypeId ns3::CcnxContentObjectTail::GetInstanceTypeId() const [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003528 cls.add_method('GetInstanceTypeId',
3529 'ns3::TypeId',
3530 [],
3531 is_const=True, is_virtual=True)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003532 ## ccnx-content-object-header.h (module 'ndnSIM'): uint32_t ns3::CcnxContentObjectTail::GetSerializedSize() const [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003533 cls.add_method('GetSerializedSize',
3534 'uint32_t',
3535 [],
3536 is_const=True, is_virtual=True)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003537 ## ccnx-content-object-header.h (module 'ndnSIM'): static ns3::TypeId ns3::CcnxContentObjectTail::GetTypeId() [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003538 cls.add_method('GetTypeId',
3539 'ns3::TypeId',
3540 [],
3541 is_static=True)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003542 ## ccnx-content-object-header.h (module 'ndnSIM'): void ns3::CcnxContentObjectTail::Print(std::ostream & os) const [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003543 cls.add_method('Print',
3544 'void',
3545 [param('std::ostream &', 'os')],
3546 is_const=True, is_virtual=True)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003547 ## ccnx-content-object-header.h (module 'ndnSIM'): void ns3::CcnxContentObjectTail::Serialize(ns3::Buffer::Iterator start) const [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003548 cls.add_method('Serialize',
3549 'void',
3550 [param('ns3::Buffer::Iterator', 'start')],
3551 is_const=True, is_virtual=True)
3552 return
3553
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003554def register_Ns3CcnxFace_methods(root_module, cls):
3555 cls.add_output_stream_operator()
3556 cls.add_binary_comparison_operator('<')
3557 cls.add_binary_comparison_operator('==')
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003558 ## ccnx-face.h (module 'ndnSIM'): ns3::CcnxFace::CcnxFace(ns3::Ptr<ns3::Node> node) [constructor]
Alexander Afanasyev07827182011-12-13 01:07:32 -08003559 cls.add_constructor([param('ns3::Ptr< ns3::Node >', 'node')])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003560 ## ccnx-face.h (module 'ndnSIM'): uint32_t ns3::CcnxFace::GetId() const [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003561 cls.add_method('GetId',
3562 'uint32_t',
3563 [],
3564 is_const=True)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003565 ## ccnx-face.h (module 'ndnSIM'): uint16_t ns3::CcnxFace::GetMetric() const [member function]
Alexander Afanasyev8e0d2812012-01-19 22:38:14 -08003566 cls.add_method('GetMetric',
3567 'uint16_t',
3568 [],
3569 is_const=True, is_virtual=True)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003570 ## ccnx-face.h (module 'ndnSIM'): ns3::Ptr<ns3::Node> ns3::CcnxFace::GetNode() const [member function]
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08003571 cls.add_method('GetNode',
3572 'ns3::Ptr< ns3::Node >',
3573 [],
3574 is_const=True)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003575 ## ccnx-face.h (module 'ndnSIM'): static ns3::TypeId ns3::CcnxFace::GetTypeId() [member function]
Alexander Afanasyev53872ce2011-12-16 13:17:18 -08003576 cls.add_method('GetTypeId',
3577 'ns3::TypeId',
3578 [],
3579 is_static=True)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003580 ## ccnx-face.h (module 'ndnSIM'): bool ns3::CcnxFace::IsBelowLimit() [member function]
Alexander Afanasyev07827182011-12-13 01:07:32 -08003581 cls.add_method('IsBelowLimit',
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003582 'bool',
Alexander Afanasyev07827182011-12-13 01:07:32 -08003583 [])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003584 ## ccnx-face.h (module 'ndnSIM'): bool ns3::CcnxFace::IsUp() const [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003585 cls.add_method('IsUp',
3586 'bool',
3587 [],
3588 is_const=True, is_virtual=True)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003589 ## ccnx-face.h (module 'ndnSIM'): void ns3::CcnxFace::LeakBucket() [member function]
Alexander Afanasyev07827182011-12-13 01:07:32 -08003590 cls.add_method('LeakBucket',
3591 'void',
Alexander Afanasyev07827182011-12-13 01:07:32 -08003592 [])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003593 ## ccnx-face.h (module 'ndnSIM'): std::ostream & ns3::CcnxFace::Print(std::ostream & os) const [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003594 cls.add_method('Print',
3595 'std::ostream &',
3596 [param('std::ostream &', 'os')],
3597 is_const=True, is_virtual=True)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003598 ## ccnx-face.h (module 'ndnSIM'): bool ns3::CcnxFace::Receive(ns3::Ptr<const ns3::Packet> const & p) [member function]
Alexander Afanasyev07827182011-12-13 01:07:32 -08003599 cls.add_method('Receive',
3600 'bool',
3601 [param('ns3::Ptr< ns3::Packet const > const &', 'p')])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003602 ## ccnx-face.h (module 'ndnSIM'): void ns3::CcnxFace::RegisterProtocolHandler(ns3::Callback<void, ns3::Ptr<ns3::CcnxFace> const&, ns3::Ptr<ns3::Packet const> const&, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> handler) [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003603 cls.add_method('RegisterProtocolHandler',
3604 'void',
3605 [param('ns3::Callback< void, ns3::Ptr< ns3::CcnxFace >, ns3::Ptr< ns3::Packet const >, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'handler')],
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003606 is_virtual=True)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003607 ## ccnx-face.h (module 'ndnSIM'): bool ns3::CcnxFace::Send(ns3::Ptr<ns3::Packet> p) [member function]
Alexander Afanasyev07827182011-12-13 01:07:32 -08003608 cls.add_method('Send',
3609 'bool',
3610 [param('ns3::Ptr< ns3::Packet >', 'p')])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003611 ## ccnx-face.h (module 'ndnSIM'): void ns3::CcnxFace::SetBucketLeak(double leak) [member function]
Alexander Afanasyev07827182011-12-13 01:07:32 -08003612 cls.add_method('SetBucketLeak',
3613 'void',
3614 [param('double', 'leak')])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003615 ## ccnx-face.h (module 'ndnSIM'): void ns3::CcnxFace::SetBucketMax(double bucket) [member function]
Alexander Afanasyev07827182011-12-13 01:07:32 -08003616 cls.add_method('SetBucketMax',
3617 'void',
3618 [param('double', 'bucket')])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003619 ## ccnx-face.h (module 'ndnSIM'): void ns3::CcnxFace::SetId(uint32_t id) [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003620 cls.add_method('SetId',
3621 'void',
3622 [param('uint32_t', 'id')])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003623 ## ccnx-face.h (module 'ndnSIM'): void ns3::CcnxFace::SetMetric(uint16_t metric) [member function]
Alexander Afanasyev8e0d2812012-01-19 22:38:14 -08003624 cls.add_method('SetMetric',
3625 'void',
3626 [param('uint16_t', 'metric')],
3627 is_virtual=True)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003628 ## ccnx-face.h (module 'ndnSIM'): void ns3::CcnxFace::SetUp(bool up=true) [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003629 cls.add_method('SetUp',
3630 'void',
Alexander Afanasyev07827182011-12-13 01:07:32 -08003631 [param('bool', 'up', default_value='true')],
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003632 is_virtual=True)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003633 ## ccnx-face.h (module 'ndnSIM'): void ns3::CcnxFace::SendImpl(ns3::Ptr<ns3::Packet> p) [member function]
Alexander Afanasyev07827182011-12-13 01:07:32 -08003634 cls.add_method('SendImpl',
3635 'void',
3636 [param('ns3::Ptr< ns3::Packet >', 'p')],
3637 is_pure_virtual=True, visibility='protected', is_virtual=True)
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003638 return
3639
3640def register_Ns3CcnxFaceContainer_methods(root_module, cls):
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003641 ## ccnx-face-container.h (module 'ndnSIM'): ns3::CcnxFaceContainer::CcnxFaceContainer() [constructor]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003642 cls.add_constructor([])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003643 ## ccnx-face-container.h (module 'ndnSIM'): ns3::CcnxFaceContainer::CcnxFaceContainer(ns3::CcnxFaceContainer const & other) [copy constructor]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003644 cls.add_constructor([param('ns3::CcnxFaceContainer const &', 'other')])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003645 ## ccnx-face-container.h (module 'ndnSIM'): void ns3::CcnxFaceContainer::Add(ns3::Ptr<ns3::CcnxFace> const & face) [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003646 cls.add_method('Add',
3647 'void',
3648 [param('ns3::Ptr< ns3::CcnxFace > const &', 'face')])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003649 ## ccnx-face-container.h (module 'ndnSIM'): void ns3::CcnxFaceContainer::AddAll(ns3::Ptr<ns3::CcnxFaceContainer> other) [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003650 cls.add_method('AddAll',
3651 'void',
3652 [param('ns3::Ptr< ns3::CcnxFaceContainer >', 'other')])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003653 ## ccnx-face-container.h (module 'ndnSIM'): void ns3::CcnxFaceContainer::AddAll(ns3::CcnxFaceContainer const & other) [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003654 cls.add_method('AddAll',
3655 'void',
3656 [param('ns3::CcnxFaceContainer const &', 'other')])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003657 ## ccnx-face-container.h (module 'ndnSIM'): __gnu_cxx::__normal_iterator<const ns3::Ptr<ns3::CcnxFace>*,std::vector<ns3::Ptr<ns3::CcnxFace>, std::allocator<ns3::Ptr<ns3::CcnxFace> > > > ns3::CcnxFaceContainer::Begin() const [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003658 cls.add_method('Begin',
3659 '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::CcnxFace > const, std::vector< ns3::Ptr< ns3::CcnxFace > > >',
3660 [],
3661 is_const=True)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003662 ## ccnx-face-container.h (module 'ndnSIM'): __gnu_cxx::__normal_iterator<const ns3::Ptr<ns3::CcnxFace>*,std::vector<ns3::Ptr<ns3::CcnxFace>, std::allocator<ns3::Ptr<ns3::CcnxFace> > > > ns3::CcnxFaceContainer::End() const [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003663 cls.add_method('End',
3664 '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::CcnxFace > const, std::vector< ns3::Ptr< ns3::CcnxFace > > >',
3665 [],
3666 is_const=True)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003667 ## ccnx-face-container.h (module 'ndnSIM'): ns3::Ptr<ns3::CcnxFace> ns3::CcnxFaceContainer::Get(__gnu_cxx::__normal_iterator<const ns3::Ptr<ns3::CcnxFace>*,std::vector<ns3::Ptr<ns3::CcnxFace>, std::allocator<ns3::Ptr<ns3::CcnxFace> > > > i) const [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003668 cls.add_method('Get',
3669 'ns3::Ptr< ns3::CcnxFace >',
3670 [param('__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::CcnxFace > const, std::vector< ns3::Ptr< ns3::CcnxFace > > >', 'i')],
3671 is_const=True)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003672 ## ccnx-face-container.h (module 'ndnSIM'): uint32_t ns3::CcnxFaceContainer::GetN() const [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003673 cls.add_method('GetN',
3674 'uint32_t',
3675 [],
3676 is_const=True)
3677 return
3678
Alexander Afanasyev07827182011-12-13 01:07:32 -08003679def register_Ns3CcnxFib_methods(root_module, cls):
3680 cls.add_output_stream_operator()
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003681 ## ccnx-fib.h (module 'ndnSIM'): ns3::CcnxFib::CcnxFib() [constructor]
Alexander Afanasyev07827182011-12-13 01:07:32 -08003682 cls.add_constructor([])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003683 ## ccnx-fib.h (module 'ndnSIM'): boost::multi_index::detail::hashed_index_iterator<boost::multi_index::detail::hashed_index_node<boost::multi_index::detail::random_access_index_node<boost::multi_index::detail::index_node_base<ns3::CcnxFibEntry, std::allocator<ns3::CcnxFibEntry> > > >,boost::multi_index::detail::bucket_array<std::allocator<ns3::CcnxFibEntry> > > ns3::CcnxFib::Add(ns3::CcnxNameComponents const & prefix, ns3::Ptr<ns3::CcnxFace> face, int32_t metric) [member function]
Alexander Afanasyev07827182011-12-13 01:07:32 -08003684 cls.add_method('Add',
3685 'boost::multi_index::detail::hashed_index_iterator< boost::multi_index::detail::hashed_index_node< boost::multi_index::detail::random_access_index_node< boost::multi_index::detail::index_node_base< ns3::CcnxFibEntry, std::allocator< ns3::CcnxFibEntry > > > >, boost::multi_index::detail::bucket_array< std::allocator< ns3::CcnxFibEntry > > >',
3686 [param('ns3::CcnxNameComponents const &', 'prefix'), param('ns3::Ptr< ns3::CcnxFace >', 'face'), param('int32_t', 'metric')])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003687 ## ccnx-fib.h (module 'ndnSIM'): boost::multi_index::detail::hashed_index_iterator<boost::multi_index::detail::hashed_index_node<boost::multi_index::detail::random_access_index_node<boost::multi_index::detail::index_node_base<ns3::CcnxFibEntry, std::allocator<ns3::CcnxFibEntry> > > >,boost::multi_index::detail::bucket_array<std::allocator<ns3::CcnxFibEntry> > > ns3::CcnxFib::Add(ns3::Ptr<ns3::CcnxNameComponents const> const & prefix, ns3::Ptr<ns3::CcnxFace> face, int32_t metric) [member function]
Alexander Afanasyev8e2f1122012-04-17 15:01:11 -07003688 cls.add_method('Add',
3689 'boost::multi_index::detail::hashed_index_iterator< boost::multi_index::detail::hashed_index_node< boost::multi_index::detail::random_access_index_node< boost::multi_index::detail::index_node_base< ns3::CcnxFibEntry, std::allocator< ns3::CcnxFibEntry > > > >, boost::multi_index::detail::bucket_array< std::allocator< ns3::CcnxFibEntry > > >',
3690 [param('ns3::Ptr< ns3::CcnxNameComponents const > const &', 'prefix'), param('ns3::Ptr< ns3::CcnxFace >', 'face'), param('int32_t', 'metric')])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003691 ## ccnx-fib.h (module 'ndnSIM'): ns3::CcnxFibEntry const & ns3::CcnxFib::GetCcnxFibEntry(uint32_t index) [member function]
Alexander Afanasyev07827182011-12-13 01:07:32 -08003692 cls.add_method('GetCcnxFibEntry',
3693 'ns3::CcnxFibEntry const &',
3694 [param('uint32_t', 'index')])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003695 ## ccnx-fib.h (module 'ndnSIM'): uint32_t ns3::CcnxFib::GetCcnxFibEntryCount() const [member function]
Alexander Afanasyev07827182011-12-13 01:07:32 -08003696 cls.add_method('GetCcnxFibEntryCount',
3697 'uint32_t',
3698 [],
3699 is_const=True)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003700 ## ccnx-fib.h (module 'ndnSIM'): static ns3::TypeId ns3::CcnxFib::GetTypeId() [member function]
Alexander Afanasyev07827182011-12-13 01:07:32 -08003701 cls.add_method('GetTypeId',
3702 'ns3::TypeId',
3703 [],
3704 is_static=True)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003705 ## ccnx-fib.h (module 'ndnSIM'): void ns3::CcnxFib::Invalidate(ns3::Ptr<ns3::CcnxNameComponents const> const & prefix) [member function]
Alexander Afanasyev8e2f1122012-04-17 15:01:11 -07003706 cls.add_method('Invalidate',
3707 'void',
3708 [param('ns3::Ptr< ns3::CcnxNameComponents const > const &', 'prefix')])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003709 ## ccnx-fib.h (module 'ndnSIM'): void ns3::CcnxFib::InvalidateAll() [member function]
Alexander Afanasyev8e2f1122012-04-17 15:01:11 -07003710 cls.add_method('InvalidateAll',
3711 'void',
3712 [])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003713 ## ccnx-fib.h (module 'ndnSIM'): boost::multi_index::detail::hashed_index_iterator<boost::multi_index::detail::hashed_index_node<boost::multi_index::detail::random_access_index_node<boost::multi_index::detail::index_node_base<ns3::CcnxFibEntry, std::allocator<ns3::CcnxFibEntry> > > >,boost::multi_index::detail::bucket_array<std::allocator<ns3::CcnxFibEntry> > > ns3::CcnxFib::LongestPrefixMatch(ns3::CcnxInterestHeader const & interest) const [member function]
Alexander Afanasyev07827182011-12-13 01:07:32 -08003714 cls.add_method('LongestPrefixMatch',
3715 'boost::multi_index::detail::hashed_index_iterator< boost::multi_index::detail::hashed_index_node< boost::multi_index::detail::random_access_index_node< boost::multi_index::detail::index_node_base< ns3::CcnxFibEntry, std::allocator< ns3::CcnxFibEntry > > > >, boost::multi_index::detail::bucket_array< std::allocator< ns3::CcnxFibEntry > > >',
3716 [param('ns3::CcnxInterestHeader const &', 'interest')],
3717 is_const=True)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003718 ## ccnx-fib.h (module 'ndnSIM'): void ns3::CcnxFib::Remove(ns3::Ptr<ns3::CcnxNameComponents const> const & prefix) [member function]
Alexander Afanasyev8e2f1122012-04-17 15:01:11 -07003719 cls.add_method('Remove',
3720 'void',
3721 [param('ns3::Ptr< ns3::CcnxNameComponents const > const &', 'prefix')])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003722 ## ccnx-fib.h (module 'ndnSIM'): void ns3::CcnxFib::Remove(ns3::CcnxFibEntry const & entry, ns3::Ptr<ns3::CcnxFace> face) [member function]
Alexander Afanasyev07827182011-12-13 01:07:32 -08003723 cls.add_method('Remove',
3724 'void',
3725 [param('ns3::CcnxFibEntry const &', 'entry'), param('ns3::Ptr< ns3::CcnxFace >', 'face')])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003726 ## ccnx-fib.h (module 'ndnSIM'): void ns3::CcnxFib::RemoveFromAll(ns3::Ptr<ns3::CcnxFace> face) [member function]
Alexander Afanasyev07827182011-12-13 01:07:32 -08003727 cls.add_method('RemoveFromAll',
3728 'void',
3729 [param('ns3::Ptr< ns3::CcnxFace >', 'face')])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003730 ## ccnx-fib.h (module 'ndnSIM'): ns3::CcnxFib::m_fib [variable]
Alexander Afanasyev07827182011-12-13 01:07:32 -08003731 cls.add_instance_attribute('m_fib', 'boost::multi_index::multi_index_container< ns3::CcnxFibEntry, boost::multi_index::indexed_by< boost::multi_index::hashed_unique< boost::multi_index::tag< ns3::__ccnx_private::i_prefix, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na >, boost::multi_index::const_mem_fun< ns3::CcnxFibEntry, ns3::CcnxNameComponents const &, & ( ns3::CcnxFibEntry::GetPrefix ( ) const ) >, ns3::CcnxPrefixHash, mpl_::na >, boost::multi_index::random_access< boost::multi_index::tag< ns3::__ccnx_private::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, mpl_::na >, std::allocator< ns3::CcnxFibEntry > >', is_const=False)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003732 ## ccnx-fib.h (module 'ndnSIM'): void ns3::CcnxFib::DoDispose() [member function]
Alexander Afanasyev07827182011-12-13 01:07:32 -08003733 cls.add_method('DoDispose',
3734 'void',
3735 [],
3736 visibility='protected', is_virtual=True)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003737 ## ccnx-fib.h (module 'ndnSIM'): void ns3::CcnxFib::NotifyNewAggregate() [member function]
Alexander Afanasyev07827182011-12-13 01:07:32 -08003738 cls.add_method('NotifyNewAggregate',
3739 'void',
3740 [],
3741 visibility='protected', is_virtual=True)
3742 return
3743
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003744def register_Ns3CcnxInterestHeader_methods(root_module, cls):
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003745 ## ccnx-interest-header.h (module 'ndnSIM'): ns3::CcnxInterestHeader::CcnxInterestHeader(ns3::CcnxInterestHeader const & arg0) [copy constructor]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003746 cls.add_constructor([param('ns3::CcnxInterestHeader const &', 'arg0')])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003747 ## ccnx-interest-header.h (module 'ndnSIM'): ns3::CcnxInterestHeader::CcnxInterestHeader() [constructor]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003748 cls.add_constructor([])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003749 ## ccnx-interest-header.h (module 'ndnSIM'): uint32_t ns3::CcnxInterestHeader::Deserialize(ns3::Buffer::Iterator start) [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003750 cls.add_method('Deserialize',
3751 'uint32_t',
3752 [param('ns3::Buffer::Iterator', 'start')],
3753 is_virtual=True)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003754 ## ccnx-interest-header.h (module 'ndnSIM'): ns3::CcnxNameComponents const & ns3::CcnxInterestHeader::GetExclude() const [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003755 cls.add_method('GetExclude',
3756 'ns3::CcnxNameComponents const &',
3757 [],
3758 is_const=True)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003759 ## ccnx-interest-header.h (module 'ndnSIM'): ns3::TypeId ns3::CcnxInterestHeader::GetInstanceTypeId() const [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003760 cls.add_method('GetInstanceTypeId',
3761 'ns3::TypeId',
3762 [],
3763 is_const=True, is_virtual=True)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003764 ## ccnx-interest-header.h (module 'ndnSIM'): ns3::Time ns3::CcnxInterestHeader::GetInterestLifetime() const [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003765 cls.add_method('GetInterestLifetime',
3766 'ns3::Time',
3767 [],
3768 is_const=True)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003769 ## ccnx-interest-header.h (module 'ndnSIM'): int32_t ns3::CcnxInterestHeader::GetMaxSuffixComponents() const [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003770 cls.add_method('GetMaxSuffixComponents',
3771 'int32_t',
3772 [],
3773 is_const=True)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003774 ## ccnx-interest-header.h (module 'ndnSIM'): int32_t ns3::CcnxInterestHeader::GetMinSuffixComponents() const [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003775 cls.add_method('GetMinSuffixComponents',
3776 'int32_t',
3777 [],
3778 is_const=True)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003779 ## ccnx-interest-header.h (module 'ndnSIM'): uint32_t ns3::CcnxInterestHeader::GetNack() const [member function]
Alexander Afanasyev07827182011-12-13 01:07:32 -08003780 cls.add_method('GetNack',
3781 'uint32_t',
3782 [],
3783 is_const=True)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003784 ## ccnx-interest-header.h (module 'ndnSIM'): ns3::CcnxNameComponents const & ns3::CcnxInterestHeader::GetName() const [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003785 cls.add_method('GetName',
3786 'ns3::CcnxNameComponents const &',
3787 [],
3788 is_const=True)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003789 ## ccnx-interest-header.h (module 'ndnSIM'): uint32_t ns3::CcnxInterestHeader::GetNonce() const [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003790 cls.add_method('GetNonce',
3791 'uint32_t',
3792 [],
3793 is_const=True)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003794 ## ccnx-interest-header.h (module 'ndnSIM'): int8_t ns3::CcnxInterestHeader::GetScope() const [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003795 cls.add_method('GetScope',
3796 'int8_t',
3797 [],
3798 is_const=True)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003799 ## ccnx-interest-header.h (module 'ndnSIM'): uint32_t ns3::CcnxInterestHeader::GetSerializedSize() const [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003800 cls.add_method('GetSerializedSize',
3801 'uint32_t',
3802 [],
3803 is_const=True, is_virtual=True)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003804 ## ccnx-interest-header.h (module 'ndnSIM'): static ns3::TypeId ns3::CcnxInterestHeader::GetTypeId() [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003805 cls.add_method('GetTypeId',
3806 'ns3::TypeId',
3807 [],
3808 is_static=True)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003809 ## ccnx-interest-header.h (module 'ndnSIM'): bool ns3::CcnxInterestHeader::IsEnabledAnswerOriginKind() const [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003810 cls.add_method('IsEnabledAnswerOriginKind',
3811 'bool',
3812 [],
3813 is_const=True)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003814 ## ccnx-interest-header.h (module 'ndnSIM'): bool ns3::CcnxInterestHeader::IsEnabledChildSelector() const [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003815 cls.add_method('IsEnabledChildSelector',
3816 'bool',
3817 [],
3818 is_const=True)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003819 ## ccnx-interest-header.h (module 'ndnSIM'): bool ns3::CcnxInterestHeader::IsEnabledExclude() const [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003820 cls.add_method('IsEnabledExclude',
3821 'bool',
3822 [],
3823 is_const=True)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003824 ## ccnx-interest-header.h (module 'ndnSIM'): void ns3::CcnxInterestHeader::Print(std::ostream & os) const [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003825 cls.add_method('Print',
3826 'void',
3827 [param('std::ostream &', 'os')],
3828 is_const=True, is_virtual=True)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003829 ## ccnx-interest-header.h (module 'ndnSIM'): void ns3::CcnxInterestHeader::Serialize(ns3::Buffer::Iterator start) const [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003830 cls.add_method('Serialize',
3831 'void',
3832 [param('ns3::Buffer::Iterator', 'start')],
3833 is_const=True, is_virtual=True)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003834 ## ccnx-interest-header.h (module 'ndnSIM'): void ns3::CcnxInterestHeader::SetAnswerOriginKind(bool value) [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003835 cls.add_method('SetAnswerOriginKind',
3836 'void',
3837 [param('bool', 'value')])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003838 ## ccnx-interest-header.h (module 'ndnSIM'): void ns3::CcnxInterestHeader::SetChildSelector(bool value) [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003839 cls.add_method('SetChildSelector',
3840 'void',
3841 [param('bool', 'value')])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003842 ## ccnx-interest-header.h (module 'ndnSIM'): void ns3::CcnxInterestHeader::SetExclude(ns3::Ptr<ns3::CcnxNameComponents> const & exclude) [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003843 cls.add_method('SetExclude',
3844 'void',
3845 [param('ns3::Ptr< ns3::CcnxNameComponents > const &', 'exclude')])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003846 ## ccnx-interest-header.h (module 'ndnSIM'): void ns3::CcnxInterestHeader::SetInterestLifetime(ns3::Time time) [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003847 cls.add_method('SetInterestLifetime',
3848 'void',
3849 [param('ns3::Time', 'time')])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003850 ## ccnx-interest-header.h (module 'ndnSIM'): void ns3::CcnxInterestHeader::SetMaxSuffixComponents(int32_t value) [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003851 cls.add_method('SetMaxSuffixComponents',
3852 'void',
3853 [param('int32_t', 'value')])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003854 ## ccnx-interest-header.h (module 'ndnSIM'): void ns3::CcnxInterestHeader::SetMinSuffixComponents(int32_t value) [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003855 cls.add_method('SetMinSuffixComponents',
3856 'void',
3857 [param('int32_t', 'value')])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003858 ## ccnx-interest-header.h (module 'ndnSIM'): void ns3::CcnxInterestHeader::SetNack(uint32_t nackType) [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003859 cls.add_method('SetNack',
3860 'void',
Alexander Afanasyev07827182011-12-13 01:07:32 -08003861 [param('uint32_t', 'nackType')])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003862 ## ccnx-interest-header.h (module 'ndnSIM'): void ns3::CcnxInterestHeader::SetName(ns3::Ptr<ns3::CcnxNameComponents> const & name) [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003863 cls.add_method('SetName',
3864 'void',
3865 [param('ns3::Ptr< ns3::CcnxNameComponents > const &', 'name')])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003866 ## ccnx-interest-header.h (module 'ndnSIM'): void ns3::CcnxInterestHeader::SetNonce(uint32_t nonce) [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003867 cls.add_method('SetNonce',
3868 'void',
3869 [param('uint32_t', 'nonce')])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003870 ## ccnx-interest-header.h (module 'ndnSIM'): void ns3::CcnxInterestHeader::SetScope(int8_t scope) [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003871 cls.add_method('SetScope',
3872 'void',
3873 [param('int8_t', 'scope')])
3874 return
3875
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003876def register_Ns3CcnxNameComponents_methods(root_module, cls):
3877 cls.add_output_stream_operator()
3878 cls.add_binary_comparison_operator('<')
3879 cls.add_binary_comparison_operator('==')
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003880 ## ccnx-name-components.h (module 'ndnSIM'): ns3::CcnxNameComponents::CcnxNameComponents(ns3::CcnxNameComponents const & arg0) [copy constructor]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003881 cls.add_constructor([param('ns3::CcnxNameComponents const &', 'arg0')])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003882 ## ccnx-name-components.h (module 'ndnSIM'): ns3::CcnxNameComponents::CcnxNameComponents() [constructor]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003883 cls.add_constructor([])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003884 ## ccnx-name-components.h (module 'ndnSIM'): ns3::CcnxNameComponents::CcnxNameComponents(std::list<boost::reference_wrapper<const std::basic_string<char, std::char_traits<char>, std::allocator<char> > >,std::allocator<boost::reference_wrapper<const std::basic_string<char, std::char_traits<char>, std::allocator<char> > > > > const & components) [constructor]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003885 cls.add_constructor([param('std::list< boost::reference_wrapper< std::string const > > const &', 'components')])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003886 ## ccnx-name-components.h (module 'ndnSIM'): std::list<std::string, std::allocator<std::string> > const & ns3::CcnxNameComponents::GetComponents() const [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003887 cls.add_method('GetComponents',
3888 'std::list< std::string > const &',
3889 [],
3890 is_const=True)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003891 ## ccnx-name-components.h (module 'ndnSIM'): std::string ns3::CcnxNameComponents::GetLastComponent() const [member function]
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08003892 cls.add_method('GetLastComponent',
3893 'std::string',
3894 [],
3895 is_const=True)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003896 ## ccnx-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::CcnxNameComponents::GetSubComponents(size_t num) const [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003897 cls.add_method('GetSubComponents',
3898 'std::list< boost::reference_wrapper< std::string const > >',
3899 [param('size_t', 'num')],
3900 is_const=True)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003901 ## ccnx-name-components.h (module 'ndnSIM'): void ns3::CcnxNameComponents::Print(std::ostream & os) const [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003902 cls.add_method('Print',
3903 'void',
3904 [param('std::ostream &', 'os')],
3905 is_const=True)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003906 ## ccnx-name-components.h (module 'ndnSIM'): size_t ns3::CcnxNameComponents::size() const [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003907 cls.add_method('size',
3908 'size_t',
3909 [],
3910 is_const=True)
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003911 return
3912
3913def register_Ns3CcnxNameComponentsChecker_methods(root_module, cls):
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003914 ## ccnx-name-components.h (module 'ndnSIM'): ns3::CcnxNameComponentsChecker::CcnxNameComponentsChecker() [constructor]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003915 cls.add_constructor([])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003916 ## ccnx-name-components.h (module 'ndnSIM'): ns3::CcnxNameComponentsChecker::CcnxNameComponentsChecker(ns3::CcnxNameComponentsChecker const & arg0) [copy constructor]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003917 cls.add_constructor([param('ns3::CcnxNameComponentsChecker const &', 'arg0')])
3918 return
3919
3920def register_Ns3CcnxNameComponentsValue_methods(root_module, cls):
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003921 ## ccnx-name-components.h (module 'ndnSIM'): ns3::CcnxNameComponentsValue::CcnxNameComponentsValue() [constructor]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003922 cls.add_constructor([])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003923 ## ccnx-name-components.h (module 'ndnSIM'): ns3::CcnxNameComponentsValue::CcnxNameComponentsValue(ns3::CcnxNameComponentsValue const & arg0) [copy constructor]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003924 cls.add_constructor([param('ns3::CcnxNameComponentsValue const &', 'arg0')])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003925 ## ccnx-name-components.h (module 'ndnSIM'): ns3::CcnxNameComponentsValue::CcnxNameComponentsValue(ns3::CcnxNameComponents const & value) [constructor]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003926 cls.add_constructor([param('ns3::CcnxNameComponents const &', 'value')])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003927 ## ccnx-name-components.h (module 'ndnSIM'): ns3::Ptr<ns3::AttributeValue> ns3::CcnxNameComponentsValue::Copy() const [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003928 cls.add_method('Copy',
3929 'ns3::Ptr< ns3::AttributeValue >',
3930 [],
3931 is_const=True, is_virtual=True)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003932 ## ccnx-name-components.h (module 'ndnSIM'): bool ns3::CcnxNameComponentsValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003933 cls.add_method('DeserializeFromString',
3934 'bool',
3935 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3936 is_virtual=True)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003937 ## ccnx-name-components.h (module 'ndnSIM'): ns3::CcnxNameComponents ns3::CcnxNameComponentsValue::Get() const [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003938 cls.add_method('Get',
3939 'ns3::CcnxNameComponents',
3940 [],
3941 is_const=True)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003942 ## ccnx-name-components.h (module 'ndnSIM'): std::string ns3::CcnxNameComponentsValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003943 cls.add_method('SerializeToString',
3944 'std::string',
3945 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3946 is_const=True, is_virtual=True)
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003947 ## ccnx-name-components.h (module 'ndnSIM'): void ns3::CcnxNameComponentsValue::Set(ns3::CcnxNameComponents const & value) [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003948 cls.add_method('Set',
3949 'void',
3950 [param('ns3::CcnxNameComponents const &', 'value')])
3951 return
3952
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07003953def register_Ns3CcnxNetDeviceFace_methods(root_module, cls):
3954 ## ccnx-net-device-face.h (module 'ndnSIM'): static ns3::TypeId ns3::CcnxNetDeviceFace::GetTypeId() [member function]
3955 cls.add_method('GetTypeId',
3956 'ns3::TypeId',
3957 [],
3958 is_static=True)
3959 ## ccnx-net-device-face.h (module 'ndnSIM'): ns3::CcnxNetDeviceFace::CcnxNetDeviceFace(ns3::Ptr<ns3::Node> node, ns3::Ptr<ns3::NetDevice> const & netDevice) [constructor]
3960 cls.add_constructor([param('ns3::Ptr< ns3::Node >', 'node'), param('ns3::Ptr< ns3::NetDevice > const &', 'netDevice')])
3961 ## ccnx-net-device-face.h (module 'ndnSIM'): void ns3::CcnxNetDeviceFace::RegisterProtocolHandler(ns3::Callback<void, ns3::Ptr<ns3::CcnxFace> const&, ns3::Ptr<ns3::Packet const> const&, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> handler) [member function]
3962 cls.add_method('RegisterProtocolHandler',
3963 'void',
3964 [param('ns3::Callback< void, ns3::Ptr< ns3::CcnxFace >, ns3::Ptr< ns3::Packet const >, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'handler')],
3965 is_virtual=True)
3966 ## ccnx-net-device-face.h (module 'ndnSIM'): std::ostream & ns3::CcnxNetDeviceFace::Print(std::ostream & os) const [member function]
3967 cls.add_method('Print',
3968 'std::ostream &',
3969 [param('std::ostream &', 'os')],
3970 is_const=True, is_virtual=True)
3971 ## ccnx-net-device-face.h (module 'ndnSIM'): ns3::Ptr<ns3::NetDevice> ns3::CcnxNetDeviceFace::GetNetDevice() const [member function]
3972 cls.add_method('GetNetDevice',
3973 'ns3::Ptr< ns3::NetDevice >',
3974 [],
3975 is_const=True)
3976 ## ccnx-net-device-face.h (module 'ndnSIM'): void ns3::CcnxNetDeviceFace::SendImpl(ns3::Ptr<ns3::Packet> p) [member function]
3977 cls.add_method('SendImpl',
3978 'void',
3979 [param('ns3::Ptr< ns3::Packet >', 'p')],
3980 visibility='protected', is_virtual=True)
3981 return
3982
Alexander Afanasyev381dea02011-11-03 08:33:26 -07003983def register_Ns3EmptyAttributeValue_methods(root_module, cls):
3984 ## attribute.h (module 'core'): ns3::EmptyAttributeValue::EmptyAttributeValue(ns3::EmptyAttributeValue const & arg0) [copy constructor]
3985 cls.add_constructor([param('ns3::EmptyAttributeValue const &', 'arg0')])
3986 ## attribute.h (module 'core'): ns3::EmptyAttributeValue::EmptyAttributeValue() [constructor]
3987 cls.add_constructor([])
3988 ## attribute.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::EmptyAttributeValue::Copy() const [member function]
3989 cls.add_method('Copy',
3990 'ns3::Ptr< ns3::AttributeValue >',
3991 [],
3992 is_const=True, visibility='private', is_virtual=True)
3993 ## attribute.h (module 'core'): bool ns3::EmptyAttributeValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
3994 cls.add_method('DeserializeFromString',
3995 'bool',
3996 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
3997 visibility='private', is_virtual=True)
3998 ## attribute.h (module 'core'): std::string ns3::EmptyAttributeValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
3999 cls.add_method('SerializeToString',
4000 'std::string',
4001 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4002 is_const=True, visibility='private', is_virtual=True)
4003 return
4004
4005def register_Ns3EventImpl_methods(root_module, cls):
4006 ## event-impl.h (module 'core'): ns3::EventImpl::EventImpl(ns3::EventImpl const & arg0) [copy constructor]
4007 cls.add_constructor([param('ns3::EventImpl const &', 'arg0')])
4008 ## event-impl.h (module 'core'): ns3::EventImpl::EventImpl() [constructor]
4009 cls.add_constructor([])
4010 ## event-impl.h (module 'core'): void ns3::EventImpl::Cancel() [member function]
4011 cls.add_method('Cancel',
4012 'void',
4013 [])
4014 ## event-impl.h (module 'core'): void ns3::EventImpl::Invoke() [member function]
4015 cls.add_method('Invoke',
4016 'void',
4017 [])
4018 ## event-impl.h (module 'core'): bool ns3::EventImpl::IsCancelled() [member function]
4019 cls.add_method('IsCancelled',
4020 'bool',
4021 [])
4022 ## event-impl.h (module 'core'): void ns3::EventImpl::Notify() [member function]
4023 cls.add_method('Notify',
4024 'void',
4025 [],
4026 is_pure_virtual=True, visibility='protected', is_virtual=True)
4027 return
4028
4029def register_Ns3IntegerValue_methods(root_module, cls):
4030 ## integer.h (module 'core'): ns3::IntegerValue::IntegerValue() [constructor]
4031 cls.add_constructor([])
4032 ## integer.h (module 'core'): ns3::IntegerValue::IntegerValue(ns3::IntegerValue const & arg0) [copy constructor]
4033 cls.add_constructor([param('ns3::IntegerValue const &', 'arg0')])
4034 ## integer.h (module 'core'): ns3::IntegerValue::IntegerValue(int64_t const & value) [constructor]
4035 cls.add_constructor([param('int64_t const &', 'value')])
4036 ## integer.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::IntegerValue::Copy() const [member function]
4037 cls.add_method('Copy',
4038 'ns3::Ptr< ns3::AttributeValue >',
4039 [],
4040 is_const=True, is_virtual=True)
4041 ## integer.h (module 'core'): bool ns3::IntegerValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
4042 cls.add_method('DeserializeFromString',
4043 'bool',
4044 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4045 is_virtual=True)
4046 ## integer.h (module 'core'): int64_t ns3::IntegerValue::Get() const [member function]
4047 cls.add_method('Get',
4048 'int64_t',
4049 [],
4050 is_const=True)
4051 ## integer.h (module 'core'): std::string ns3::IntegerValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
4052 cls.add_method('SerializeToString',
4053 'std::string',
4054 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4055 is_const=True, is_virtual=True)
4056 ## integer.h (module 'core'): void ns3::IntegerValue::Set(int64_t const & value) [member function]
4057 cls.add_method('Set',
4058 'void',
4059 [param('int64_t const &', 'value')])
4060 return
4061
4062def register_Ns3Ipv4AddressChecker_methods(root_module, cls):
4063 ## ipv4-address.h (module 'network'): ns3::Ipv4AddressChecker::Ipv4AddressChecker() [constructor]
4064 cls.add_constructor([])
4065 ## ipv4-address.h (module 'network'): ns3::Ipv4AddressChecker::Ipv4AddressChecker(ns3::Ipv4AddressChecker const & arg0) [copy constructor]
4066 cls.add_constructor([param('ns3::Ipv4AddressChecker const &', 'arg0')])
4067 return
4068
4069def register_Ns3Ipv4AddressValue_methods(root_module, cls):
4070 ## ipv4-address.h (module 'network'): ns3::Ipv4AddressValue::Ipv4AddressValue() [constructor]
4071 cls.add_constructor([])
4072 ## ipv4-address.h (module 'network'): ns3::Ipv4AddressValue::Ipv4AddressValue(ns3::Ipv4AddressValue const & arg0) [copy constructor]
4073 cls.add_constructor([param('ns3::Ipv4AddressValue const &', 'arg0')])
4074 ## ipv4-address.h (module 'network'): ns3::Ipv4AddressValue::Ipv4AddressValue(ns3::Ipv4Address const & value) [constructor]
4075 cls.add_constructor([param('ns3::Ipv4Address const &', 'value')])
4076 ## ipv4-address.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::Ipv4AddressValue::Copy() const [member function]
4077 cls.add_method('Copy',
4078 'ns3::Ptr< ns3::AttributeValue >',
4079 [],
4080 is_const=True, is_virtual=True)
4081 ## ipv4-address.h (module 'network'): bool ns3::Ipv4AddressValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
4082 cls.add_method('DeserializeFromString',
4083 'bool',
4084 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4085 is_virtual=True)
4086 ## ipv4-address.h (module 'network'): ns3::Ipv4Address ns3::Ipv4AddressValue::Get() const [member function]
4087 cls.add_method('Get',
4088 'ns3::Ipv4Address',
4089 [],
4090 is_const=True)
4091 ## ipv4-address.h (module 'network'): std::string ns3::Ipv4AddressValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
4092 cls.add_method('SerializeToString',
4093 'std::string',
4094 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4095 is_const=True, is_virtual=True)
4096 ## ipv4-address.h (module 'network'): void ns3::Ipv4AddressValue::Set(ns3::Ipv4Address const & value) [member function]
4097 cls.add_method('Set',
4098 'void',
4099 [param('ns3::Ipv4Address const &', 'value')])
4100 return
4101
4102def register_Ns3Ipv4MaskChecker_methods(root_module, cls):
4103 ## ipv4-address.h (module 'network'): ns3::Ipv4MaskChecker::Ipv4MaskChecker() [constructor]
4104 cls.add_constructor([])
4105 ## ipv4-address.h (module 'network'): ns3::Ipv4MaskChecker::Ipv4MaskChecker(ns3::Ipv4MaskChecker const & arg0) [copy constructor]
4106 cls.add_constructor([param('ns3::Ipv4MaskChecker const &', 'arg0')])
4107 return
4108
4109def register_Ns3Ipv4MaskValue_methods(root_module, cls):
4110 ## ipv4-address.h (module 'network'): ns3::Ipv4MaskValue::Ipv4MaskValue() [constructor]
4111 cls.add_constructor([])
4112 ## ipv4-address.h (module 'network'): ns3::Ipv4MaskValue::Ipv4MaskValue(ns3::Ipv4MaskValue const & arg0) [copy constructor]
4113 cls.add_constructor([param('ns3::Ipv4MaskValue const &', 'arg0')])
4114 ## ipv4-address.h (module 'network'): ns3::Ipv4MaskValue::Ipv4MaskValue(ns3::Ipv4Mask const & value) [constructor]
4115 cls.add_constructor([param('ns3::Ipv4Mask const &', 'value')])
4116 ## ipv4-address.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::Ipv4MaskValue::Copy() const [member function]
4117 cls.add_method('Copy',
4118 'ns3::Ptr< ns3::AttributeValue >',
4119 [],
4120 is_const=True, is_virtual=True)
4121 ## ipv4-address.h (module 'network'): bool ns3::Ipv4MaskValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
4122 cls.add_method('DeserializeFromString',
4123 'bool',
4124 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4125 is_virtual=True)
4126 ## ipv4-address.h (module 'network'): ns3::Ipv4Mask ns3::Ipv4MaskValue::Get() const [member function]
4127 cls.add_method('Get',
4128 'ns3::Ipv4Mask',
4129 [],
4130 is_const=True)
4131 ## ipv4-address.h (module 'network'): std::string ns3::Ipv4MaskValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
4132 cls.add_method('SerializeToString',
4133 'std::string',
4134 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4135 is_const=True, is_virtual=True)
4136 ## ipv4-address.h (module 'network'): void ns3::Ipv4MaskValue::Set(ns3::Ipv4Mask const & value) [member function]
4137 cls.add_method('Set',
4138 'void',
4139 [param('ns3::Ipv4Mask const &', 'value')])
4140 return
4141
4142def register_Ns3Ipv6AddressChecker_methods(root_module, cls):
4143 ## ipv6-address.h (module 'network'): ns3::Ipv6AddressChecker::Ipv6AddressChecker() [constructor]
4144 cls.add_constructor([])
4145 ## ipv6-address.h (module 'network'): ns3::Ipv6AddressChecker::Ipv6AddressChecker(ns3::Ipv6AddressChecker const & arg0) [copy constructor]
4146 cls.add_constructor([param('ns3::Ipv6AddressChecker const &', 'arg0')])
4147 return
4148
4149def register_Ns3Ipv6AddressValue_methods(root_module, cls):
4150 ## ipv6-address.h (module 'network'): ns3::Ipv6AddressValue::Ipv6AddressValue() [constructor]
4151 cls.add_constructor([])
4152 ## ipv6-address.h (module 'network'): ns3::Ipv6AddressValue::Ipv6AddressValue(ns3::Ipv6AddressValue const & arg0) [copy constructor]
4153 cls.add_constructor([param('ns3::Ipv6AddressValue const &', 'arg0')])
4154 ## ipv6-address.h (module 'network'): ns3::Ipv6AddressValue::Ipv6AddressValue(ns3::Ipv6Address const & value) [constructor]
4155 cls.add_constructor([param('ns3::Ipv6Address const &', 'value')])
4156 ## ipv6-address.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::Ipv6AddressValue::Copy() const [member function]
4157 cls.add_method('Copy',
4158 'ns3::Ptr< ns3::AttributeValue >',
4159 [],
4160 is_const=True, is_virtual=True)
4161 ## ipv6-address.h (module 'network'): bool ns3::Ipv6AddressValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
4162 cls.add_method('DeserializeFromString',
4163 'bool',
4164 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4165 is_virtual=True)
4166 ## ipv6-address.h (module 'network'): ns3::Ipv6Address ns3::Ipv6AddressValue::Get() const [member function]
4167 cls.add_method('Get',
4168 'ns3::Ipv6Address',
4169 [],
4170 is_const=True)
4171 ## ipv6-address.h (module 'network'): std::string ns3::Ipv6AddressValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
4172 cls.add_method('SerializeToString',
4173 'std::string',
4174 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4175 is_const=True, is_virtual=True)
4176 ## ipv6-address.h (module 'network'): void ns3::Ipv6AddressValue::Set(ns3::Ipv6Address const & value) [member function]
4177 cls.add_method('Set',
4178 'void',
4179 [param('ns3::Ipv6Address const &', 'value')])
4180 return
4181
4182def register_Ns3Ipv6PrefixChecker_methods(root_module, cls):
4183 ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixChecker::Ipv6PrefixChecker() [constructor]
4184 cls.add_constructor([])
4185 ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixChecker::Ipv6PrefixChecker(ns3::Ipv6PrefixChecker const & arg0) [copy constructor]
4186 cls.add_constructor([param('ns3::Ipv6PrefixChecker const &', 'arg0')])
4187 return
4188
4189def register_Ns3Ipv6PrefixValue_methods(root_module, cls):
4190 ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixValue::Ipv6PrefixValue() [constructor]
4191 cls.add_constructor([])
4192 ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixValue::Ipv6PrefixValue(ns3::Ipv6PrefixValue const & arg0) [copy constructor]
4193 cls.add_constructor([param('ns3::Ipv6PrefixValue const &', 'arg0')])
4194 ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixValue::Ipv6PrefixValue(ns3::Ipv6Prefix const & value) [constructor]
4195 cls.add_constructor([param('ns3::Ipv6Prefix const &', 'value')])
4196 ## ipv6-address.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::Ipv6PrefixValue::Copy() const [member function]
4197 cls.add_method('Copy',
4198 'ns3::Ptr< ns3::AttributeValue >',
4199 [],
4200 is_const=True, is_virtual=True)
4201 ## ipv6-address.h (module 'network'): bool ns3::Ipv6PrefixValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
4202 cls.add_method('DeserializeFromString',
4203 'bool',
4204 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4205 is_virtual=True)
4206 ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix ns3::Ipv6PrefixValue::Get() const [member function]
4207 cls.add_method('Get',
4208 'ns3::Ipv6Prefix',
4209 [],
4210 is_const=True)
4211 ## ipv6-address.h (module 'network'): std::string ns3::Ipv6PrefixValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
4212 cls.add_method('SerializeToString',
4213 'std::string',
4214 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4215 is_const=True, is_virtual=True)
4216 ## ipv6-address.h (module 'network'): void ns3::Ipv6PrefixValue::Set(ns3::Ipv6Prefix const & value) [member function]
4217 cls.add_method('Set',
4218 'void',
4219 [param('ns3::Ipv6Prefix const &', 'value')])
4220 return
4221
Alexander Afanasyev381dea02011-11-03 08:33:26 -07004222def register_Ns3NetDevice_methods(root_module, cls):
4223 ## net-device.h (module 'network'): ns3::NetDevice::NetDevice() [constructor]
4224 cls.add_constructor([])
4225 ## net-device.h (module 'network'): ns3::NetDevice::NetDevice(ns3::NetDevice const & arg0) [copy constructor]
4226 cls.add_constructor([param('ns3::NetDevice const &', 'arg0')])
4227 ## 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]
4228 cls.add_method('AddLinkChangeCallback',
4229 'void',
4230 [param('ns3::Callback< void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'callback')],
4231 is_pure_virtual=True, is_virtual=True)
4232 ## net-device.h (module 'network'): ns3::Address ns3::NetDevice::GetAddress() const [member function]
4233 cls.add_method('GetAddress',
4234 'ns3::Address',
4235 [],
4236 is_pure_virtual=True, is_const=True, is_virtual=True)
4237 ## net-device.h (module 'network'): ns3::Address ns3::NetDevice::GetBroadcast() const [member function]
4238 cls.add_method('GetBroadcast',
4239 'ns3::Address',
4240 [],
4241 is_pure_virtual=True, is_const=True, is_virtual=True)
4242 ## net-device.h (module 'network'): ns3::Ptr<ns3::Channel> ns3::NetDevice::GetChannel() const [member function]
4243 cls.add_method('GetChannel',
4244 'ns3::Ptr< ns3::Channel >',
4245 [],
4246 is_pure_virtual=True, is_const=True, is_virtual=True)
4247 ## net-device.h (module 'network'): uint32_t ns3::NetDevice::GetIfIndex() const [member function]
4248 cls.add_method('GetIfIndex',
4249 'uint32_t',
4250 [],
4251 is_pure_virtual=True, is_const=True, is_virtual=True)
4252 ## net-device.h (module 'network'): uint16_t ns3::NetDevice::GetMtu() const [member function]
4253 cls.add_method('GetMtu',
4254 'uint16_t',
4255 [],
4256 is_pure_virtual=True, is_const=True, is_virtual=True)
4257 ## net-device.h (module 'network'): ns3::Address ns3::NetDevice::GetMulticast(ns3::Ipv4Address multicastGroup) const [member function]
4258 cls.add_method('GetMulticast',
4259 'ns3::Address',
4260 [param('ns3::Ipv4Address', 'multicastGroup')],
4261 is_pure_virtual=True, is_const=True, is_virtual=True)
4262 ## net-device.h (module 'network'): ns3::Address ns3::NetDevice::GetMulticast(ns3::Ipv6Address addr) const [member function]
4263 cls.add_method('GetMulticast',
4264 'ns3::Address',
4265 [param('ns3::Ipv6Address', 'addr')],
4266 is_pure_virtual=True, is_const=True, is_virtual=True)
4267 ## net-device.h (module 'network'): ns3::Ptr<ns3::Node> ns3::NetDevice::GetNode() const [member function]
4268 cls.add_method('GetNode',
4269 'ns3::Ptr< ns3::Node >',
4270 [],
4271 is_pure_virtual=True, is_const=True, is_virtual=True)
4272 ## net-device.h (module 'network'): static ns3::TypeId ns3::NetDevice::GetTypeId() [member function]
4273 cls.add_method('GetTypeId',
4274 'ns3::TypeId',
4275 [],
4276 is_static=True)
4277 ## net-device.h (module 'network'): bool ns3::NetDevice::IsBridge() const [member function]
4278 cls.add_method('IsBridge',
4279 'bool',
4280 [],
4281 is_pure_virtual=True, is_const=True, is_virtual=True)
4282 ## net-device.h (module 'network'): bool ns3::NetDevice::IsBroadcast() const [member function]
4283 cls.add_method('IsBroadcast',
4284 'bool',
4285 [],
4286 is_pure_virtual=True, is_const=True, is_virtual=True)
4287 ## net-device.h (module 'network'): bool ns3::NetDevice::IsLinkUp() const [member function]
4288 cls.add_method('IsLinkUp',
4289 'bool',
4290 [],
4291 is_pure_virtual=True, is_const=True, is_virtual=True)
4292 ## net-device.h (module 'network'): bool ns3::NetDevice::IsMulticast() const [member function]
4293 cls.add_method('IsMulticast',
4294 'bool',
4295 [],
4296 is_pure_virtual=True, is_const=True, is_virtual=True)
4297 ## net-device.h (module 'network'): bool ns3::NetDevice::IsPointToPoint() const [member function]
4298 cls.add_method('IsPointToPoint',
4299 'bool',
4300 [],
4301 is_pure_virtual=True, is_const=True, is_virtual=True)
4302 ## net-device.h (module 'network'): bool ns3::NetDevice::NeedsArp() const [member function]
4303 cls.add_method('NeedsArp',
4304 'bool',
4305 [],
4306 is_pure_virtual=True, is_const=True, is_virtual=True)
4307 ## net-device.h (module 'network'): bool ns3::NetDevice::Send(ns3::Ptr<ns3::Packet> packet, ns3::Address const & dest, uint16_t protocolNumber) [member function]
4308 cls.add_method('Send',
4309 'bool',
4310 [param('ns3::Ptr< ns3::Packet >', 'packet'), param('ns3::Address const &', 'dest'), param('uint16_t', 'protocolNumber')],
4311 is_pure_virtual=True, is_virtual=True)
4312 ## 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]
4313 cls.add_method('SendFrom',
4314 'bool',
4315 [param('ns3::Ptr< ns3::Packet >', 'packet'), param('ns3::Address const &', 'source'), param('ns3::Address const &', 'dest'), param('uint16_t', 'protocolNumber')],
4316 is_pure_virtual=True, is_virtual=True)
4317 ## net-device.h (module 'network'): void ns3::NetDevice::SetAddress(ns3::Address address) [member function]
4318 cls.add_method('SetAddress',
4319 'void',
4320 [param('ns3::Address', 'address')],
4321 is_pure_virtual=True, is_virtual=True)
4322 ## net-device.h (module 'network'): void ns3::NetDevice::SetIfIndex(uint32_t const index) [member function]
4323 cls.add_method('SetIfIndex',
4324 'void',
4325 [param('uint32_t const', 'index')],
4326 is_pure_virtual=True, is_virtual=True)
4327 ## net-device.h (module 'network'): bool ns3::NetDevice::SetMtu(uint16_t const mtu) [member function]
4328 cls.add_method('SetMtu',
4329 'bool',
4330 [param('uint16_t const', 'mtu')],
4331 is_pure_virtual=True, is_virtual=True)
4332 ## net-device.h (module 'network'): void ns3::NetDevice::SetNode(ns3::Ptr<ns3::Node> node) [member function]
4333 cls.add_method('SetNode',
4334 'void',
4335 [param('ns3::Ptr< ns3::Node >', 'node')],
4336 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyev07827182011-12-13 01:07:32 -08004337 ## net-device.h (module 'network'): void ns3::NetDevice::SetPromiscReceiveCallback(ns3::Callback<bool,ns3::Ptr<ns3::NetDevice>,ns3::Ptr<const ns3::Packet>,short unsigned int,const ns3::Address&,const ns3::Address&,ns3::NetDevice::PacketType,ns3::empty,ns3::empty,ns3::empty> cb) [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07004338 cls.add_method('SetPromiscReceiveCallback',
4339 'void',
Alexander Afanasyev07827182011-12-13 01:07:32 -08004340 [param('ns3::Callback< bool, ns3::Ptr< ns3::NetDevice >, ns3::Ptr< ns3::Packet const >, short unsigned int, ns3::Address const &, ns3::Address const &, ns3::NetDevice::PacketType, ns3::empty, ns3::empty, ns3::empty >', 'cb')],
Alexander Afanasyev381dea02011-11-03 08:33:26 -07004341 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyev07827182011-12-13 01:07:32 -08004342 ## net-device.h (module 'network'): void ns3::NetDevice::SetReceiveCallback(ns3::Callback<bool,ns3::Ptr<ns3::NetDevice>,ns3::Ptr<const ns3::Packet>,short unsigned int,const ns3::Address&,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty> cb) [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07004343 cls.add_method('SetReceiveCallback',
4344 'void',
Alexander Afanasyev07827182011-12-13 01:07:32 -08004345 [param('ns3::Callback< bool, ns3::Ptr< ns3::NetDevice >, ns3::Ptr< ns3::Packet const >, short unsigned int, ns3::Address const &, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'cb')],
Alexander Afanasyev381dea02011-11-03 08:33:26 -07004346 is_pure_virtual=True, is_virtual=True)
4347 ## net-device.h (module 'network'): bool ns3::NetDevice::SupportsSendFrom() const [member function]
4348 cls.add_method('SupportsSendFrom',
4349 'bool',
4350 [],
4351 is_pure_virtual=True, is_const=True, is_virtual=True)
4352 return
4353
4354def register_Ns3NixVector_methods(root_module, cls):
4355 cls.add_output_stream_operator()
4356 ## nix-vector.h (module 'network'): ns3::NixVector::NixVector() [constructor]
4357 cls.add_constructor([])
4358 ## nix-vector.h (module 'network'): ns3::NixVector::NixVector(ns3::NixVector const & o) [copy constructor]
4359 cls.add_constructor([param('ns3::NixVector const &', 'o')])
4360 ## nix-vector.h (module 'network'): void ns3::NixVector::AddNeighborIndex(uint32_t newBits, uint32_t numberOfBits) [member function]
4361 cls.add_method('AddNeighborIndex',
4362 'void',
4363 [param('uint32_t', 'newBits'), param('uint32_t', 'numberOfBits')])
4364 ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::BitCount(uint32_t numberOfNeighbors) const [member function]
4365 cls.add_method('BitCount',
4366 'uint32_t',
4367 [param('uint32_t', 'numberOfNeighbors')],
4368 is_const=True)
4369 ## nix-vector.h (module 'network'): ns3::Ptr<ns3::NixVector> ns3::NixVector::Copy() const [member function]
4370 cls.add_method('Copy',
4371 'ns3::Ptr< ns3::NixVector >',
4372 [],
4373 is_const=True)
4374 ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::Deserialize(uint32_t const * buffer, uint32_t size) [member function]
4375 cls.add_method('Deserialize',
4376 'uint32_t',
4377 [param('uint32_t const *', 'buffer'), param('uint32_t', 'size')])
4378 ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::ExtractNeighborIndex(uint32_t numberOfBits) [member function]
4379 cls.add_method('ExtractNeighborIndex',
4380 'uint32_t',
4381 [param('uint32_t', 'numberOfBits')])
4382 ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::GetRemainingBits() [member function]
4383 cls.add_method('GetRemainingBits',
4384 'uint32_t',
4385 [])
4386 ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::GetSerializedSize() const [member function]
4387 cls.add_method('GetSerializedSize',
4388 'uint32_t',
4389 [],
4390 is_const=True)
4391 ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::Serialize(uint32_t * buffer, uint32_t maxSize) const [member function]
4392 cls.add_method('Serialize',
4393 'uint32_t',
4394 [param('uint32_t *', 'buffer'), param('uint32_t', 'maxSize')],
4395 is_const=True)
4396 return
4397
4398def register_Ns3Node_methods(root_module, cls):
4399 ## node.h (module 'network'): ns3::Node::Node(ns3::Node const & arg0) [copy constructor]
4400 cls.add_constructor([param('ns3::Node const &', 'arg0')])
4401 ## node.h (module 'network'): ns3::Node::Node() [constructor]
4402 cls.add_constructor([])
4403 ## node.h (module 'network'): ns3::Node::Node(uint32_t systemId) [constructor]
4404 cls.add_constructor([param('uint32_t', 'systemId')])
4405 ## node.h (module 'network'): uint32_t ns3::Node::AddApplication(ns3::Ptr<ns3::Application> application) [member function]
4406 cls.add_method('AddApplication',
4407 'uint32_t',
4408 [param('ns3::Ptr< ns3::Application >', 'application')])
4409 ## node.h (module 'network'): uint32_t ns3::Node::AddDevice(ns3::Ptr<ns3::NetDevice> device) [member function]
4410 cls.add_method('AddDevice',
4411 'uint32_t',
4412 [param('ns3::Ptr< ns3::NetDevice >', 'device')])
4413 ## node.h (module 'network'): static bool ns3::Node::ChecksumEnabled() [member function]
4414 cls.add_method('ChecksumEnabled',
4415 'bool',
4416 [],
4417 is_static=True)
4418 ## node.h (module 'network'): ns3::Ptr<ns3::Application> ns3::Node::GetApplication(uint32_t index) const [member function]
4419 cls.add_method('GetApplication',
4420 'ns3::Ptr< ns3::Application >',
4421 [param('uint32_t', 'index')],
4422 is_const=True)
4423 ## node.h (module 'network'): ns3::Ptr<ns3::NetDevice> ns3::Node::GetDevice(uint32_t index) const [member function]
4424 cls.add_method('GetDevice',
4425 'ns3::Ptr< ns3::NetDevice >',
4426 [param('uint32_t', 'index')],
4427 is_const=True)
4428 ## node.h (module 'network'): uint32_t ns3::Node::GetId() const [member function]
4429 cls.add_method('GetId',
4430 'uint32_t',
4431 [],
4432 is_const=True)
4433 ## node.h (module 'network'): uint32_t ns3::Node::GetNApplications() const [member function]
4434 cls.add_method('GetNApplications',
4435 'uint32_t',
4436 [],
4437 is_const=True)
4438 ## node.h (module 'network'): uint32_t ns3::Node::GetNDevices() const [member function]
4439 cls.add_method('GetNDevices',
4440 'uint32_t',
4441 [],
4442 is_const=True)
4443 ## node.h (module 'network'): uint32_t ns3::Node::GetSystemId() const [member function]
4444 cls.add_method('GetSystemId',
4445 'uint32_t',
4446 [],
4447 is_const=True)
4448 ## node.h (module 'network'): static ns3::TypeId ns3::Node::GetTypeId() [member function]
4449 cls.add_method('GetTypeId',
4450 'ns3::TypeId',
4451 [],
4452 is_static=True)
4453 ## 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]
4454 cls.add_method('RegisterDeviceAdditionListener',
4455 'void',
4456 [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')])
4457 ## 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]
4458 cls.add_method('RegisterProtocolHandler',
4459 'void',
4460 [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')])
4461 ## 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]
4462 cls.add_method('UnregisterDeviceAdditionListener',
4463 'void',
4464 [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')])
4465 ## 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]
4466 cls.add_method('UnregisterProtocolHandler',
4467 'void',
4468 [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')])
4469 ## node.h (module 'network'): void ns3::Node::DoDispose() [member function]
4470 cls.add_method('DoDispose',
4471 'void',
4472 [],
4473 visibility='protected', is_virtual=True)
4474 ## node.h (module 'network'): void ns3::Node::DoStart() [member function]
4475 cls.add_method('DoStart',
4476 'void',
4477 [],
4478 visibility='protected', is_virtual=True)
4479 return
4480
4481def register_Ns3ObjectFactoryChecker_methods(root_module, cls):
4482 ## object-factory.h (module 'core'): ns3::ObjectFactoryChecker::ObjectFactoryChecker() [constructor]
4483 cls.add_constructor([])
4484 ## object-factory.h (module 'core'): ns3::ObjectFactoryChecker::ObjectFactoryChecker(ns3::ObjectFactoryChecker const & arg0) [copy constructor]
4485 cls.add_constructor([param('ns3::ObjectFactoryChecker const &', 'arg0')])
4486 return
4487
4488def register_Ns3ObjectFactoryValue_methods(root_module, cls):
4489 ## object-factory.h (module 'core'): ns3::ObjectFactoryValue::ObjectFactoryValue() [constructor]
4490 cls.add_constructor([])
4491 ## object-factory.h (module 'core'): ns3::ObjectFactoryValue::ObjectFactoryValue(ns3::ObjectFactoryValue const & arg0) [copy constructor]
4492 cls.add_constructor([param('ns3::ObjectFactoryValue const &', 'arg0')])
4493 ## object-factory.h (module 'core'): ns3::ObjectFactoryValue::ObjectFactoryValue(ns3::ObjectFactory const & value) [constructor]
4494 cls.add_constructor([param('ns3::ObjectFactory const &', 'value')])
4495 ## object-factory.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::ObjectFactoryValue::Copy() const [member function]
4496 cls.add_method('Copy',
4497 'ns3::Ptr< ns3::AttributeValue >',
4498 [],
4499 is_const=True, is_virtual=True)
4500 ## object-factory.h (module 'core'): bool ns3::ObjectFactoryValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
4501 cls.add_method('DeserializeFromString',
4502 'bool',
4503 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4504 is_virtual=True)
4505 ## object-factory.h (module 'core'): ns3::ObjectFactory ns3::ObjectFactoryValue::Get() const [member function]
4506 cls.add_method('Get',
4507 'ns3::ObjectFactory',
4508 [],
4509 is_const=True)
4510 ## object-factory.h (module 'core'): std::string ns3::ObjectFactoryValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
4511 cls.add_method('SerializeToString',
4512 'std::string',
4513 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4514 is_const=True, is_virtual=True)
4515 ## object-factory.h (module 'core'): void ns3::ObjectFactoryValue::Set(ns3::ObjectFactory const & value) [member function]
4516 cls.add_method('Set',
4517 'void',
4518 [param('ns3::ObjectFactory const &', 'value')])
4519 return
4520
Alexander Afanasyev381dea02011-11-03 08:33:26 -07004521def register_Ns3Packet_methods(root_module, cls):
4522 cls.add_output_stream_operator()
4523 ## packet.h (module 'network'): ns3::Packet::Packet() [constructor]
4524 cls.add_constructor([])
4525 ## packet.h (module 'network'): ns3::Packet::Packet(ns3::Packet const & o) [copy constructor]
4526 cls.add_constructor([param('ns3::Packet const &', 'o')])
4527 ## packet.h (module 'network'): ns3::Packet::Packet(uint32_t size) [constructor]
4528 cls.add_constructor([param('uint32_t', 'size')])
4529 ## packet.h (module 'network'): ns3::Packet::Packet(uint8_t const * buffer, uint32_t size, bool magic) [constructor]
4530 cls.add_constructor([param('uint8_t const *', 'buffer'), param('uint32_t', 'size'), param('bool', 'magic')])
4531 ## packet.h (module 'network'): ns3::Packet::Packet(uint8_t const * buffer, uint32_t size) [constructor]
4532 cls.add_constructor([param('uint8_t const *', 'buffer'), param('uint32_t', 'size')])
Alexander Afanasyev07827182011-12-13 01:07:32 -08004533 ## packet.h (module 'network'): void ns3::Packet::AddAtEnd(ns3::Ptr<const ns3::Packet> packet) [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07004534 cls.add_method('AddAtEnd',
4535 'void',
4536 [param('ns3::Ptr< ns3::Packet const >', 'packet')])
4537 ## packet.h (module 'network'): void ns3::Packet::AddByteTag(ns3::Tag const & tag) const [member function]
4538 cls.add_method('AddByteTag',
4539 'void',
4540 [param('ns3::Tag const &', 'tag')],
4541 is_const=True)
4542 ## packet.h (module 'network'): void ns3::Packet::AddHeader(ns3::Header const & header) [member function]
4543 cls.add_method('AddHeader',
4544 'void',
4545 [param('ns3::Header const &', 'header')])
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07004546 ## packet.h (module 'network'): void ns3::Packet::AddPacketTag(ns3::Tag const & tag) const [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07004547 cls.add_method('AddPacketTag',
4548 'void',
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07004549 [param('ns3::Tag const &', 'tag')],
4550 is_const=True)
Alexander Afanasyev381dea02011-11-03 08:33:26 -07004551 ## packet.h (module 'network'): void ns3::Packet::AddPaddingAtEnd(uint32_t size) [member function]
4552 cls.add_method('AddPaddingAtEnd',
4553 'void',
4554 [param('uint32_t', 'size')])
4555 ## packet.h (module 'network'): void ns3::Packet::AddTrailer(ns3::Trailer const & trailer) [member function]
4556 cls.add_method('AddTrailer',
4557 'void',
4558 [param('ns3::Trailer const &', 'trailer')])
4559 ## packet.h (module 'network'): ns3::PacketMetadata::ItemIterator ns3::Packet::BeginItem() const [member function]
4560 cls.add_method('BeginItem',
4561 'ns3::PacketMetadata::ItemIterator',
4562 [],
4563 is_const=True)
4564 ## packet.h (module 'network'): ns3::Ptr<ns3::Packet> ns3::Packet::Copy() const [member function]
4565 cls.add_method('Copy',
4566 'ns3::Ptr< ns3::Packet >',
4567 [],
4568 is_const=True)
4569 ## packet.h (module 'network'): uint32_t ns3::Packet::CopyData(uint8_t * buffer, uint32_t size) const [member function]
4570 cls.add_method('CopyData',
4571 'uint32_t',
4572 [param('uint8_t *', 'buffer'), param('uint32_t', 'size')],
4573 is_const=True)
4574 ## packet.h (module 'network'): void ns3::Packet::CopyData(std::ostream * os, uint32_t size) const [member function]
4575 cls.add_method('CopyData',
4576 'void',
4577 [param('std::ostream *', 'os'), param('uint32_t', 'size')],
4578 is_const=True)
4579 ## packet.h (module 'network'): ns3::Ptr<ns3::Packet> ns3::Packet::CreateFragment(uint32_t start, uint32_t length) const [member function]
4580 cls.add_method('CreateFragment',
4581 'ns3::Ptr< ns3::Packet >',
4582 [param('uint32_t', 'start'), param('uint32_t', 'length')],
4583 is_const=True)
4584 ## packet.h (module 'network'): static void ns3::Packet::EnableChecking() [member function]
4585 cls.add_method('EnableChecking',
4586 'void',
4587 [],
4588 is_static=True)
4589 ## packet.h (module 'network'): static void ns3::Packet::EnablePrinting() [member function]
4590 cls.add_method('EnablePrinting',
4591 'void',
4592 [],
4593 is_static=True)
4594 ## packet.h (module 'network'): bool ns3::Packet::FindFirstMatchingByteTag(ns3::Tag & tag) const [member function]
4595 cls.add_method('FindFirstMatchingByteTag',
4596 'bool',
4597 [param('ns3::Tag &', 'tag')],
4598 is_const=True)
4599 ## packet.h (module 'network'): ns3::ByteTagIterator ns3::Packet::GetByteTagIterator() const [member function]
4600 cls.add_method('GetByteTagIterator',
4601 'ns3::ByteTagIterator',
4602 [],
4603 is_const=True)
4604 ## packet.h (module 'network'): ns3::Ptr<ns3::NixVector> ns3::Packet::GetNixVector() const [member function]
4605 cls.add_method('GetNixVector',
4606 'ns3::Ptr< ns3::NixVector >',
4607 [],
4608 is_const=True)
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07004609 ## packet.h (module 'network'): ns3::PacketTagIterator ns3::Packet::GetPacketTagIterator() const [member function]
4610 cls.add_method('GetPacketTagIterator',
4611 'ns3::PacketTagIterator',
4612 [],
4613 is_const=True)
Alexander Afanasyev381dea02011-11-03 08:33:26 -07004614 ## packet.h (module 'network'): uint32_t ns3::Packet::GetSerializedSize() const [member function]
4615 cls.add_method('GetSerializedSize',
4616 'uint32_t',
4617 [],
4618 is_const=True)
4619 ## packet.h (module 'network'): uint32_t ns3::Packet::GetSize() const [member function]
4620 cls.add_method('GetSize',
4621 'uint32_t',
4622 [],
4623 is_const=True)
4624 ## packet.h (module 'network'): uint64_t ns3::Packet::GetUid() const [member function]
4625 cls.add_method('GetUid',
4626 'uint64_t',
4627 [],
4628 is_const=True)
4629 ## packet.h (module 'network'): uint8_t const * ns3::Packet::PeekData() const [member function]
4630 cls.add_method('PeekData',
4631 'uint8_t const *',
4632 [],
4633 deprecated=True, is_const=True)
4634 ## packet.h (module 'network'): uint32_t ns3::Packet::PeekHeader(ns3::Header & header) const [member function]
4635 cls.add_method('PeekHeader',
4636 'uint32_t',
4637 [param('ns3::Header &', 'header')],
4638 is_const=True)
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07004639 ## packet.h (module 'network'): bool ns3::Packet::PeekPacketTag(ns3::Tag & tag) const [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07004640 cls.add_method('PeekPacketTag',
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07004641 'bool',
4642 [param('ns3::Tag &', 'tag')],
Alexander Afanasyev381dea02011-11-03 08:33:26 -07004643 is_const=True)
4644 ## packet.h (module 'network'): uint32_t ns3::Packet::PeekTrailer(ns3::Trailer & trailer) [member function]
4645 cls.add_method('PeekTrailer',
4646 'uint32_t',
4647 [param('ns3::Trailer &', 'trailer')])
4648 ## packet.h (module 'network'): void ns3::Packet::Print(std::ostream & os) const [member function]
4649 cls.add_method('Print',
4650 'void',
4651 [param('std::ostream &', 'os')],
4652 is_const=True)
4653 ## packet.h (module 'network'): void ns3::Packet::PrintByteTags(std::ostream & os) const [member function]
4654 cls.add_method('PrintByteTags',
4655 'void',
4656 [param('std::ostream &', 'os')],
4657 is_const=True)
4658 ## packet.h (module 'network'): void ns3::Packet::PrintPacketTags(std::ostream & os) const [member function]
4659 cls.add_method('PrintPacketTags',
4660 'void',
4661 [param('std::ostream &', 'os')],
4662 is_const=True)
4663 ## packet.h (module 'network'): void ns3::Packet::RemoveAllByteTags() [member function]
4664 cls.add_method('RemoveAllByteTags',
4665 'void',
4666 [])
4667 ## packet.h (module 'network'): void ns3::Packet::RemoveAllPacketTags() [member function]
4668 cls.add_method('RemoveAllPacketTags',
4669 'void',
4670 [])
4671 ## packet.h (module 'network'): void ns3::Packet::RemoveAtEnd(uint32_t size) [member function]
4672 cls.add_method('RemoveAtEnd',
4673 'void',
4674 [param('uint32_t', 'size')])
4675 ## packet.h (module 'network'): void ns3::Packet::RemoveAtStart(uint32_t size) [member function]
4676 cls.add_method('RemoveAtStart',
4677 'void',
4678 [param('uint32_t', 'size')])
4679 ## packet.h (module 'network'): uint32_t ns3::Packet::RemoveHeader(ns3::Header & header) [member function]
4680 cls.add_method('RemoveHeader',
4681 'uint32_t',
4682 [param('ns3::Header &', 'header')])
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07004683 ## packet.h (module 'network'): bool ns3::Packet::RemovePacketTag(ns3::Tag & tag) [member function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07004684 cls.add_method('RemovePacketTag',
Alexander Afanasyevad5acce2012-05-31 12:43:08 -07004685 'bool',
4686 [param('ns3::Tag &', 'tag')])
Alexander Afanasyev381dea02011-11-03 08:33:26 -07004687 ## packet.h (module 'network'): uint32_t ns3::Packet::RemoveTrailer(ns3::Trailer & trailer) [member function]
4688 cls.add_method('RemoveTrailer',
4689 'uint32_t',
4690 [param('ns3::Trailer &', 'trailer')])
4691 ## packet.h (module 'network'): uint32_t ns3::Packet::Serialize(uint8_t * buffer, uint32_t maxSize) const [member function]
4692 cls.add_method('Serialize',
4693 'uint32_t',
4694 [param('uint8_t *', 'buffer'), param('uint32_t', 'maxSize')],
4695 is_const=True)
4696 ## packet.h (module 'network'): void ns3::Packet::SetNixVector(ns3::Ptr<ns3::NixVector> arg0) [member function]
4697 cls.add_method('SetNixVector',
4698 'void',
4699 [param('ns3::Ptr< ns3::NixVector >', 'arg0')])
4700 return
4701
Alexander Afanasyev381dea02011-11-03 08:33:26 -07004702def register_Ns3TimeChecker_methods(root_module, cls):
4703 ## nstime.h (module 'core'): ns3::TimeChecker::TimeChecker() [constructor]
4704 cls.add_constructor([])
4705 ## nstime.h (module 'core'): ns3::TimeChecker::TimeChecker(ns3::TimeChecker const & arg0) [copy constructor]
4706 cls.add_constructor([param('ns3::TimeChecker const &', 'arg0')])
4707 return
4708
4709def register_Ns3TimeValue_methods(root_module, cls):
4710 ## nstime.h (module 'core'): ns3::TimeValue::TimeValue() [constructor]
4711 cls.add_constructor([])
4712 ## nstime.h (module 'core'): ns3::TimeValue::TimeValue(ns3::TimeValue const & arg0) [copy constructor]
4713 cls.add_constructor([param('ns3::TimeValue const &', 'arg0')])
4714 ## nstime.h (module 'core'): ns3::TimeValue::TimeValue(ns3::Time const & value) [constructor]
4715 cls.add_constructor([param('ns3::Time const &', 'value')])
4716 ## nstime.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::TimeValue::Copy() const [member function]
4717 cls.add_method('Copy',
4718 'ns3::Ptr< ns3::AttributeValue >',
4719 [],
4720 is_const=True, is_virtual=True)
4721 ## nstime.h (module 'core'): bool ns3::TimeValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
4722 cls.add_method('DeserializeFromString',
4723 'bool',
4724 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4725 is_virtual=True)
4726 ## nstime.h (module 'core'): ns3::Time ns3::TimeValue::Get() const [member function]
4727 cls.add_method('Get',
4728 'ns3::Time',
4729 [],
4730 is_const=True)
4731 ## nstime.h (module 'core'): std::string ns3::TimeValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
4732 cls.add_method('SerializeToString',
4733 'std::string',
4734 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4735 is_const=True, is_virtual=True)
4736 ## nstime.h (module 'core'): void ns3::TimeValue::Set(ns3::Time const & value) [member function]
4737 cls.add_method('Set',
4738 'void',
4739 [param('ns3::Time const &', 'value')])
4740 return
4741
4742def register_Ns3TypeIdChecker_methods(root_module, cls):
4743 ## type-id.h (module 'core'): ns3::TypeIdChecker::TypeIdChecker() [constructor]
4744 cls.add_constructor([])
4745 ## type-id.h (module 'core'): ns3::TypeIdChecker::TypeIdChecker(ns3::TypeIdChecker const & arg0) [copy constructor]
4746 cls.add_constructor([param('ns3::TypeIdChecker const &', 'arg0')])
4747 return
4748
4749def register_Ns3TypeIdValue_methods(root_module, cls):
4750 ## type-id.h (module 'core'): ns3::TypeIdValue::TypeIdValue() [constructor]
4751 cls.add_constructor([])
4752 ## type-id.h (module 'core'): ns3::TypeIdValue::TypeIdValue(ns3::TypeIdValue const & arg0) [copy constructor]
4753 cls.add_constructor([param('ns3::TypeIdValue const &', 'arg0')])
4754 ## type-id.h (module 'core'): ns3::TypeIdValue::TypeIdValue(ns3::TypeId const & value) [constructor]
4755 cls.add_constructor([param('ns3::TypeId const &', 'value')])
4756 ## type-id.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::TypeIdValue::Copy() const [member function]
4757 cls.add_method('Copy',
4758 'ns3::Ptr< ns3::AttributeValue >',
4759 [],
4760 is_const=True, is_virtual=True)
4761 ## type-id.h (module 'core'): bool ns3::TypeIdValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
4762 cls.add_method('DeserializeFromString',
4763 'bool',
4764 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4765 is_virtual=True)
4766 ## type-id.h (module 'core'): ns3::TypeId ns3::TypeIdValue::Get() const [member function]
4767 cls.add_method('Get',
4768 'ns3::TypeId',
4769 [],
4770 is_const=True)
4771 ## type-id.h (module 'core'): std::string ns3::TypeIdValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
4772 cls.add_method('SerializeToString',
4773 'std::string',
4774 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4775 is_const=True, is_virtual=True)
4776 ## type-id.h (module 'core'): void ns3::TypeIdValue::Set(ns3::TypeId const & value) [member function]
4777 cls.add_method('Set',
4778 'void',
4779 [param('ns3::TypeId const &', 'value')])
4780 return
4781
Alexander Afanasyev381dea02011-11-03 08:33:26 -07004782def register_Ns3AddressChecker_methods(root_module, cls):
4783 ## address.h (module 'network'): ns3::AddressChecker::AddressChecker() [constructor]
4784 cls.add_constructor([])
4785 ## address.h (module 'network'): ns3::AddressChecker::AddressChecker(ns3::AddressChecker const & arg0) [copy constructor]
4786 cls.add_constructor([param('ns3::AddressChecker const &', 'arg0')])
4787 return
4788
4789def register_Ns3AddressValue_methods(root_module, cls):
4790 ## address.h (module 'network'): ns3::AddressValue::AddressValue() [constructor]
4791 cls.add_constructor([])
4792 ## address.h (module 'network'): ns3::AddressValue::AddressValue(ns3::AddressValue const & arg0) [copy constructor]
4793 cls.add_constructor([param('ns3::AddressValue const &', 'arg0')])
4794 ## address.h (module 'network'): ns3::AddressValue::AddressValue(ns3::Address const & value) [constructor]
4795 cls.add_constructor([param('ns3::Address const &', 'value')])
4796 ## address.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::AddressValue::Copy() const [member function]
4797 cls.add_method('Copy',
4798 'ns3::Ptr< ns3::AttributeValue >',
4799 [],
4800 is_const=True, is_virtual=True)
4801 ## address.h (module 'network'): bool ns3::AddressValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
4802 cls.add_method('DeserializeFromString',
4803 'bool',
4804 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4805 is_virtual=True)
4806 ## address.h (module 'network'): ns3::Address ns3::AddressValue::Get() const [member function]
4807 cls.add_method('Get',
4808 'ns3::Address',
4809 [],
4810 is_const=True)
4811 ## address.h (module 'network'): std::string ns3::AddressValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
4812 cls.add_method('SerializeToString',
4813 'std::string',
4814 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4815 is_const=True, is_virtual=True)
4816 ## address.h (module 'network'): void ns3::AddressValue::Set(ns3::Address const & value) [member function]
4817 cls.add_method('Set',
4818 'void',
4819 [param('ns3::Address const &', 'value')])
4820 return
4821
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07004822def register_Ns3CcnxAppFace_methods(root_module, cls):
4823 cls.add_output_stream_operator()
4824 ## ccnx-app-face.h (module 'ndnSIM'): ns3::CcnxAppFace::CcnxAppFace(ns3::Ptr<ns3::CcnxApp> app) [constructor]
4825 cls.add_constructor([param('ns3::Ptr< ns3::CcnxApp >', 'app')])
4826 ## ccnx-app-face.h (module 'ndnSIM'): static ns3::TypeId ns3::CcnxAppFace::GetTypeId() [member function]
4827 cls.add_method('GetTypeId',
4828 'ns3::TypeId',
4829 [],
4830 is_static=True)
4831 ## ccnx-app-face.h (module 'ndnSIM'): std::ostream & ns3::CcnxAppFace::Print(std::ostream & os) const [member function]
4832 cls.add_method('Print',
4833 'std::ostream &',
4834 [param('std::ostream &', 'os')],
4835 is_const=True, is_virtual=True)
4836 ## ccnx-app-face.h (module 'ndnSIM'): void ns3::CcnxAppFace::RegisterProtocolHandler(ns3::Callback<void, ns3::Ptr<ns3::CcnxFace> const&, ns3::Ptr<ns3::Packet const> const&, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> handler) [member function]
4837 cls.add_method('RegisterProtocolHandler',
4838 'void',
4839 [param('ns3::Callback< void, ns3::Ptr< ns3::CcnxFace >, ns3::Ptr< ns3::Packet const >, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'handler')],
4840 is_virtual=True)
4841 ## ccnx-app-face.h (module 'ndnSIM'): void ns3::CcnxAppFace::SendImpl(ns3::Ptr<ns3::Packet> p) [member function]
4842 cls.add_method('SendImpl',
4843 'void',
4844 [param('ns3::Ptr< ns3::Packet >', 'p')],
4845 visibility='protected', is_virtual=True)
4846 return
4847
Alexander Afanasyev381dea02011-11-03 08:33:26 -07004848def register_functions(root_module):
4849 module = root_module
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07004850 ## batches.h (module 'ndnSIM'): extern ns3::Ptr<ns3::AttributeChecker const> ns3::MakeBatchesChecker() [free function]
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -08004851 module.add_function('MakeBatchesChecker',
4852 'ns3::Ptr< ns3::AttributeChecker const >',
4853 [])
Alexander Afanasyev6d98ac32012-06-06 13:01:48 -07004854 ## ccnx-name-components.h (module 'ndnSIM'): extern ns3::Ptr<ns3::AttributeChecker const> ns3::MakeCcnxNameComponentsChecker() [free function]
Alexander Afanasyev381dea02011-11-03 08:33:26 -07004855 module.add_function('MakeCcnxNameComponentsChecker',
4856 'ns3::Ptr< ns3::AttributeChecker const >',
4857 [])
Alexander Afanasyev381dea02011-11-03 08:33:26 -07004858 register_functions_ns3_FatalImpl(module.get_submodule('FatalImpl'), root_module)
4859 register_functions_ns3_internal(module.get_submodule('internal'), root_module)
4860 return
4861
Alexander Afanasyev381dea02011-11-03 08:33:26 -07004862def register_functions_ns3_FatalImpl(module, root_module):
4863 return
4864
4865def register_functions_ns3_internal(module, root_module):
4866 return
4867
4868def main():
4869 out = FileCodeSink(sys.stdout)
4870 root_module = module_init()
4871 register_types(root_module)
4872 register_methods(root_module)
4873 register_functions(root_module)
4874 root_module.generate(out)
4875
4876if __name__ == '__main__':
4877 main()
4878