blob: 0ca790e35d951926204d344756ad0a223fe8b9fd [file] [log] [blame]
Ilya Moiseenko1762af72011-07-18 16:43:10 -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():
Ilya Moiseenko02fb7062011-08-11 17:18:00 -070017 root_module = Module('ns.NDNabstraction', cpp_namespace='::ns3')
Ilya Moiseenko1762af72011-07-18 16:43:10 -070018 return root_module
19
20def register_types(module):
21 root_module = module.get_root()
22
Ilya Moiseenko02fb7062011-08-11 17:18:00 -070023 ## log.h (module 'core'): ns3::LogLevel [enumeration]
24 module.add_enum('LogLevel', ['LOG_NONE', 'LOG_ERROR', 'LOG_LEVEL_ERROR', 'LOG_WARN', 'LOG_LEVEL_WARN', 'LOG_DEBUG', 'LOG_LEVEL_DEBUG', 'LOG_INFO', 'LOG_LEVEL_INFO', 'LOG_FUNCTION', 'LOG_LEVEL_FUNCTION', 'LOG_LOGIC', 'LOG_LEVEL_LOGIC', 'LOG_ALL', 'LOG_LEVEL_ALL', 'LOG_PREFIX_FUNC', 'LOG_PREFIX_TIME', 'LOG_PREFIX_NODE'], import_from_module='ns.core')
Ilya Moiseenko1762af72011-07-18 16:43:10 -070025 ## address.h (module 'network'): ns3::Address [class]
26 module.add_class('Address', import_from_module='ns.network')
27 ## address.h (module 'network'): ns3::Address::MaxSize_e [enumeration]
28 module.add_enum('MaxSize_e', ['MAX_SIZE'], outer_class=root_module['ns3::Address'], import_from_module='ns.network')
Ilya Moiseenko02fb7062011-08-11 17:18:00 -070029 ## application-container.h (module 'network'): ns3::ApplicationContainer [class]
30 module.add_class('ApplicationContainer', import_from_module='ns.network')
Alexander Afanasyeveface602011-08-17 17:50:12 -070031 ## trace-helper.h (module 'network'): ns3::AsciiTraceHelper [class]
32 module.add_class('AsciiTraceHelper', import_from_module='ns.network')
33 ## ccnx-trace-helper.h (module 'NDNabstraction'): ns3::AsciiTraceHelperForCcnx [class]
34 module.add_class('AsciiTraceHelperForCcnx', allow_subclassing=True)
35 ## trace-helper.h (module 'network'): ns3::AsciiTraceHelperForDevice [class]
36 module.add_class('AsciiTraceHelperForDevice', allow_subclassing=True, import_from_module='ns.network')
37 ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList [class]
38 module.add_class('AttributeConstructionList', import_from_module='ns.core')
39 ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item [struct]
40 module.add_class('Item', import_from_module='ns.core', outer_class=root_module['ns3::AttributeConstructionList'])
Ilya Moiseenko1762af72011-07-18 16:43:10 -070041 ## buffer.h (module 'network'): ns3::Buffer [class]
42 module.add_class('Buffer', import_from_module='ns.network')
43 ## buffer.h (module 'network'): ns3::Buffer::Iterator [class]
44 module.add_class('Iterator', import_from_module='ns.network', outer_class=root_module['ns3::Buffer'])
Alexander Afanasyeveface602011-08-17 17:50:12 -070045 ## packet.h (module 'network'): ns3::ByteTagIterator [class]
46 module.add_class('ByteTagIterator', import_from_module='ns.network')
47 ## packet.h (module 'network'): ns3::ByteTagIterator::Item [class]
48 module.add_class('Item', import_from_module='ns.network', outer_class=root_module['ns3::ByteTagIterator'])
49 ## byte-tag-list.h (module 'network'): ns3::ByteTagList [class]
50 module.add_class('ByteTagList', import_from_module='ns.network')
51 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator [class]
52 module.add_class('Iterator', import_from_module='ns.network', outer_class=root_module['ns3::ByteTagList'])
53 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item [struct]
54 module.add_class('Item', import_from_module='ns.network', outer_class=root_module['ns3::ByteTagList::Iterator'])
Ilya Moiseenko1762af72011-07-18 16:43:10 -070055 ## callback.h (module 'core'): ns3::CallbackBase [class]
56 module.add_class('CallbackBase', import_from_module='ns.core')
Alexander Afanasyeveface602011-08-17 17:50:12 -070057 ## ccnx-decoding-helper.h (module 'NDNabstraction'): ns3::CcnxDecodingHelper [class]
58 module.add_class('CcnxDecodingHelper')
59 ## ccnx-encoding-helper.h (module 'NDNabstraction'): ns3::CcnxEncodingHelper [class]
60 module.add_class('CcnxEncodingHelper')
61 ## ccnx-face-container.h (module 'NDNabstraction'): ns3::CcnxFaceContainer [class]
62 module.add_class('CcnxFaceContainer')
63 ## ccnx-forwarding-helper.h (module 'NDNabstraction'): ns3::CcnxForwardingHelper [class]
64 module.add_class('CcnxForwardingHelper', allow_subclassing=True)
65 ## ccnx-header-helper.h (module 'NDNabstraction'): ns3::CcnxHeaderHelper [class]
66 module.add_class('CcnxHeaderHelper')
67 ## ccnx-header-helper.h (module 'NDNabstraction'): ns3::CcnxUnknownHeaderException [class]
68 module.add_class('CcnxUnknownHeaderException')
Ilya Moiseenko1762af72011-07-18 16:43:10 -070069 ## event-id.h (module 'core'): ns3::EventId [class]
70 module.add_class('EventId', import_from_module='ns.core')
Ilya Moiseenko1762af72011-07-18 16:43:10 -070071 ## ipv4-address.h (module 'network'): ns3::Ipv4Address [class]
72 module.add_class('Ipv4Address', import_from_module='ns.network')
73 ## ipv4-address.h (module 'network'): ns3::Ipv4Address [class]
74 root_module['ns3::Ipv4Address'].implicitly_converts_to(root_module['ns3::Address'])
Ilya Moiseenko1762af72011-07-18 16:43:10 -070075 ## ipv4-address.h (module 'network'): ns3::Ipv4Mask [class]
76 module.add_class('Ipv4Mask', import_from_module='ns.network')
Ilya Moiseenko1762af72011-07-18 16:43:10 -070077 ## ipv6-address.h (module 'network'): ns3::Ipv6Address [class]
78 module.add_class('Ipv6Address', import_from_module='ns.network')
79 ## ipv6-address.h (module 'network'): ns3::Ipv6Address [class]
80 root_module['ns3::Ipv6Address'].implicitly_converts_to(root_module['ns3::Address'])
81 ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix [class]
82 module.add_class('Ipv6Prefix', import_from_module='ns.network')
Ilya Moiseenko02fb7062011-08-11 17:18:00 -070083 ## log.h (module 'core'): ns3::LogComponent [class]
84 module.add_class('LogComponent', import_from_module='ns.core')
Alexander Afanasyeveface602011-08-17 17:50:12 -070085 ## net-device-container.h (module 'network'): ns3::NetDeviceContainer [class]
86 module.add_class('NetDeviceContainer', import_from_module='ns.network')
Ilya Moiseenko1762af72011-07-18 16:43:10 -070087 ## node-container.h (module 'network'): ns3::NodeContainer [class]
88 module.add_class('NodeContainer', import_from_module='ns.network')
89 ## object-base.h (module 'core'): ns3::ObjectBase [class]
90 module.add_class('ObjectBase', allow_subclassing=True, import_from_module='ns.core')
91 ## object.h (module 'core'): ns3::ObjectDeleter [struct]
92 module.add_class('ObjectDeleter', import_from_module='ns.core')
93 ## object-factory.h (module 'core'): ns3::ObjectFactory [class]
94 module.add_class('ObjectFactory', import_from_module='ns.core')
Alexander Afanasyeveface602011-08-17 17:50:12 -070095 ## packet-metadata.h (module 'network'): ns3::PacketMetadata [class]
96 module.add_class('PacketMetadata', import_from_module='ns.network')
97 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item [struct]
98 module.add_class('Item', import_from_module='ns.network', outer_class=root_module['ns3::PacketMetadata'])
99 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item [enumeration]
100 module.add_enum('', ['PAYLOAD', 'HEADER', 'TRAILER'], outer_class=root_module['ns3::PacketMetadata::Item'], import_from_module='ns.network')
101 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::ItemIterator [class]
102 module.add_class('ItemIterator', import_from_module='ns.network', outer_class=root_module['ns3::PacketMetadata'])
103 ## packet.h (module 'network'): ns3::PacketTagIterator [class]
104 module.add_class('PacketTagIterator', import_from_module='ns.network')
105 ## packet.h (module 'network'): ns3::PacketTagIterator::Item [class]
106 module.add_class('Item', import_from_module='ns.network', outer_class=root_module['ns3::PacketTagIterator'])
107 ## packet-tag-list.h (module 'network'): ns3::PacketTagList [class]
108 module.add_class('PacketTagList', import_from_module='ns.network')
109 ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData [struct]
110 module.add_class('TagData', import_from_module='ns.network', outer_class=root_module['ns3::PacketTagList'])
111 ## pcap-file.h (module 'network'): ns3::PcapFile [class]
112 module.add_class('PcapFile', import_from_module='ns.network')
113 ## trace-helper.h (module 'network'): ns3::PcapHelper [class]
114 module.add_class('PcapHelper', import_from_module='ns.network')
115 ## trace-helper.h (module 'network'): ns3::PcapHelper [enumeration]
116 module.add_enum('', ['DLT_NULL', 'DLT_EN10MB', 'DLT_PPP', 'DLT_RAW', 'DLT_IEEE802_11', 'DLT_PRISM_HEADER', 'DLT_IEEE802_11_RADIO'], outer_class=root_module['ns3::PcapHelper'], import_from_module='ns.network')
117 ## ccnx-trace-helper.h (module 'NDNabstraction'): ns3::PcapHelperForCcnx [class]
118 module.add_class('PcapHelperForCcnx', allow_subclassing=True)
119 ## trace-helper.h (module 'network'): ns3::PcapHelperForDevice [class]
120 module.add_class('PcapHelperForDevice', allow_subclassing=True, import_from_module='ns.network')
Ilya Moiseenko02fb7062011-08-11 17:18:00 -0700121 ## random-variable.h (module 'core'): ns3::RandomVariable [class]
122 module.add_class('RandomVariable', import_from_module='ns.core')
123 ## random-variable.h (module 'core'): ns3::SeedManager [class]
124 module.add_class('SeedManager', import_from_module='ns.core')
125 ## random-variable.h (module 'core'): ns3::SequentialVariable [class]
126 module.add_class('SequentialVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
Alexander Afanasyeveface602011-08-17 17:50:12 -0700127 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Chunk, ns3::ObjectBase, ns3::DefaultDeleter<ns3::Chunk> > [class]
128 module.add_class('SimpleRefCount', automatic_type_narrowing=True, import_from_module='ns.core', template_parameters=['ns3::Chunk', 'ns3::ObjectBase', 'ns3::DefaultDeleter<ns3::Chunk>'], parent=root_module['ns3::ObjectBase'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
Ilya Moiseenko1762af72011-07-18 16:43:10 -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 Afanasyeveface602011-08-17 17:50:12 -0700131 ## simulator.h (module 'core'): ns3::Simulator [class]
132 module.add_class('Simulator', destructor_visibility='private', import_from_module='ns.core')
Ilya Moiseenko02fb7062011-08-11 17:18:00 -0700133 ## ndn_stupidinterestgenerator_helper.h (module 'NDNabstraction'): ns3::StupidInterestGeneratorHelper [class]
134 module.add_class('StupidInterestGeneratorHelper')
Ilya Moiseenko1762af72011-07-18 16:43:10 -0700135 ## tag.h (module 'network'): ns3::Tag [class]
136 module.add_class('Tag', import_from_module='ns.network', parent=root_module['ns3::ObjectBase'])
137 ## tag-buffer.h (module 'network'): ns3::TagBuffer [class]
138 module.add_class('TagBuffer', import_from_module='ns.network')
Ilya Moiseenko02fb7062011-08-11 17:18:00 -0700139 ## random-variable.h (module 'core'): ns3::TriangularVariable [class]
140 module.add_class('TriangularVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
Ilya Moiseenko1762af72011-07-18 16:43:10 -0700141 ## type-id.h (module 'core'): ns3::TypeId [class]
142 module.add_class('TypeId', import_from_module='ns.core')
143 ## type-id.h (module 'core'): ns3::TypeId::AttributeFlag [enumeration]
144 module.add_enum('AttributeFlag', ['ATTR_GET', 'ATTR_SET', 'ATTR_CONSTRUCT', 'ATTR_SGC'], outer_class=root_module['ns3::TypeId'], import_from_module='ns.core')
Alexander Afanasyeveface602011-08-17 17:50:12 -0700145 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation [struct]
146 module.add_class('AttributeInformation', import_from_module='ns.core', outer_class=root_module['ns3::TypeId'])
147 ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation [struct]
148 module.add_class('TraceSourceInformation', import_from_module='ns.core', outer_class=root_module['ns3::TypeId'])
Ilya Moiseenko02fb7062011-08-11 17:18:00 -0700149 ## random-variable.h (module 'core'): ns3::UniformVariable [class]
150 module.add_class('UniformVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
Ilya Moiseenko02fb7062011-08-11 17:18:00 -0700151 ## random-variable.h (module 'core'): ns3::WeibullVariable [class]
152 module.add_class('WeibullVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
153 ## random-variable.h (module 'core'): ns3::ZetaVariable [class]
154 module.add_class('ZetaVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
155 ## random-variable.h (module 'core'): ns3::ZipfVariable [class]
156 module.add_class('ZipfVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
Ilya Moiseenko1762af72011-07-18 16:43:10 -0700157 ## empty.h (module 'core'): ns3::empty [class]
158 module.add_class('empty', import_from_module='ns.core')
159 ## int64x64-double.h (module 'core'): ns3::int64x64_t [class]
160 module.add_class('int64x64_t', import_from_module='ns.core')
Alexander Afanasyeveface602011-08-17 17:50:12 -0700161 ## ccnx-stack-helper.h (module 'NDNabstraction'): ns3::CcnxStackHelper [class]
162 module.add_class('CcnxStackHelper', parent=[root_module['ns3::PcapHelperForCcnx'], root_module['ns3::AsciiTraceHelperForCcnx']])
Ilya Moiseenko1762af72011-07-18 16:43:10 -0700163 ## chunk.h (module 'network'): ns3::Chunk [class]
Alexander Afanasyeveface602011-08-17 17:50:12 -0700164 module.add_class('Chunk', import_from_module='ns.network', parent=root_module['ns3::SimpleRefCount< ns3::Chunk, ns3::ObjectBase, ns3::DefaultDeleter<ns3::Chunk> >'])
Ilya Moiseenko02fb7062011-08-11 17:18:00 -0700165 ## random-variable.h (module 'core'): ns3::ConstantVariable [class]
166 module.add_class('ConstantVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
167 ## random-variable.h (module 'core'): ns3::DeterministicVariable [class]
168 module.add_class('DeterministicVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
169 ## random-variable.h (module 'core'): ns3::EmpiricalVariable [class]
170 module.add_class('EmpiricalVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
171 ## random-variable.h (module 'core'): ns3::ErlangVariable [class]
172 module.add_class('ErlangVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
173 ## random-variable.h (module 'core'): ns3::ExponentialVariable [class]
174 module.add_class('ExponentialVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
175 ## random-variable.h (module 'core'): ns3::GammaVariable [class]
176 module.add_class('GammaVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
Ilya Moiseenko1762af72011-07-18 16:43:10 -0700177 ## header.h (module 'network'): ns3::Header [class]
178 module.add_class('Header', import_from_module='ns.network', parent=root_module['ns3::Chunk'])
Ilya Moiseenko02fb7062011-08-11 17:18:00 -0700179 ## random-variable.h (module 'core'): ns3::IntEmpiricalVariable [class]
180 module.add_class('IntEmpiricalVariable', import_from_module='ns.core', parent=root_module['ns3::EmpiricalVariable'])
181 ## random-variable.h (module 'core'): ns3::LogNormalVariable [class]
182 module.add_class('LogNormalVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
183 ## random-variable.h (module 'core'): ns3::NormalVariable [class]
184 module.add_class('NormalVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
Ilya Moiseenko1762af72011-07-18 16:43:10 -0700185 ## object.h (module 'core'): ns3::Object [class]
186 module.add_class('Object', import_from_module='ns.core', parent=root_module['ns3::SimpleRefCount< ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter >'])
187 ## object.h (module 'core'): ns3::Object::AggregateIterator [class]
188 module.add_class('AggregateIterator', import_from_module='ns.core', outer_class=root_module['ns3::Object'])
Ilya Moiseenko02fb7062011-08-11 17:18:00 -0700189 ## random-variable.h (module 'core'): ns3::ParetoVariable [class]
190 module.add_class('ParetoVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
Alexander Afanasyeveface602011-08-17 17:50:12 -0700191 ## pcap-file-wrapper.h (module 'network'): ns3::PcapFileWrapper [class]
192 module.add_class('PcapFileWrapper', import_from_module='ns.network', parent=root_module['ns3::Object'])
Ilya Moiseenko1762af72011-07-18 16:43:10 -0700193 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> > [class]
194 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'))
195 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter<ns3::AttributeChecker> > [class]
196 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'))
197 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter<ns3::AttributeValue> > [class]
198 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'))
199 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> > [class]
200 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 Afanasyeveface602011-08-17 17:50:12 -0700201 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CcnxParser::Block, ns3::empty, ns3::DefaultDeleter<ns3::CcnxParser::Block> > [class]
202 module.add_class('SimpleRefCount', automatic_type_narrowing=True, template_parameters=['ns3::CcnxParser::Block', 'ns3::empty', 'ns3::DefaultDeleter<ns3::CcnxParser::Block>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
203 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CcnxRoute, ns3::empty, ns3::DefaultDeleter<ns3::CcnxRoute> > [class]
204 module.add_class('SimpleRefCount', automatic_type_narrowing=True, template_parameters=['ns3::CcnxRoute', 'ns3::empty', 'ns3::DefaultDeleter<ns3::CcnxRoute>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
Ilya Moiseenko1762af72011-07-18 16:43:10 -0700205 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::EventImpl, ns3::empty, ns3::DefaultDeleter<ns3::EventImpl> > [class]
206 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'))
Alexander Afanasyeveface602011-08-17 17:50:12 -0700207 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Name::Components, ns3::empty, ns3::DefaultDeleter<ns3::Name::Components> > [class]
208 module.add_class('SimpleRefCount', automatic_type_narrowing=True, template_parameters=['ns3::Name::Components', 'ns3::empty', 'ns3::DefaultDeleter<ns3::Name::Components>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
209 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::NixVector, ns3::empty, ns3::DefaultDeleter<ns3::NixVector> > [class]
210 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'))
211 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::OutputStreamWrapper, ns3::empty, ns3::DefaultDeleter<ns3::OutputStreamWrapper> > [class]
212 module.add_class('SimpleRefCount', automatic_type_narrowing=True, import_from_module='ns.core', template_parameters=['ns3::OutputStreamWrapper', 'ns3::empty', 'ns3::DefaultDeleter<ns3::OutputStreamWrapper>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
213 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Packet, ns3::empty, ns3::DefaultDeleter<ns3::Packet> > [class]
214 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'))
215 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter<ns3::TraceSourceAccessor> > [class]
216 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 Afanasyev2536e202011-08-12 14:13:10 -0700217 ## socket.h (module 'network'): ns3::Socket [class]
218 module.add_class('Socket', import_from_module='ns.network', parent=root_module['ns3::Object'])
219 ## socket.h (module 'network'): ns3::Socket::SocketErrno [enumeration]
Alexander Afanasyeveface602011-08-17 17:50:12 -0700220 module.add_enum('SocketErrno', ['ERROR_NOTERROR', 'ERROR_ISCONN', 'ERROR_NOTCONN', 'ERROR_MSGSIZE', 'ERROR_AGAIN', 'ERROR_SHUTDOWN', 'ERROR_OPNOTSUPP', 'ERROR_AFNOSUPPORT', 'ERROR_INVAL', 'ERROR_BADF', 'ERROR_NOROUTETOHOST', 'ERROR_NODEV', 'ERROR_ADDRNOTAVAIL', 'ERROR_ADDRINUSE', 'SOCKET_ERRNO_LAST'], outer_class=root_module['ns3::Socket'], import_from_module='ns.network')
Alexander Afanasyev2536e202011-08-12 14:13:10 -0700221 ## socket.h (module 'network'): ns3::Socket::SocketType [enumeration]
222 module.add_enum('SocketType', ['NS3_SOCK_STREAM', 'NS3_SOCK_SEQPACKET', 'NS3_SOCK_DGRAM', 'NS3_SOCK_RAW'], outer_class=root_module['ns3::Socket'], import_from_module='ns.network')
223 ## socket.h (module 'network'): ns3::SocketAddressTag [class]
224 module.add_class('SocketAddressTag', import_from_module='ns.network', parent=root_module['ns3::Tag'])
Ilya Moiseenko02fb7062011-08-11 17:18:00 -0700225 ## socket-factory.h (module 'network'): ns3::SocketFactory [class]
226 module.add_class('SocketFactory', import_from_module='ns.network', parent=root_module['ns3::Object'])
Alexander Afanasyev2536e202011-08-12 14:13:10 -0700227 ## socket.h (module 'network'): ns3::SocketIpTtlTag [class]
228 module.add_class('SocketIpTtlTag', import_from_module='ns.network', parent=root_module['ns3::Tag'])
229 ## socket.h (module 'network'): ns3::SocketSetDontFragmentTag [class]
230 module.add_class('SocketSetDontFragmentTag', import_from_module='ns.network', parent=root_module['ns3::Tag'])
Ilya Moiseenko1762af72011-07-18 16:43:10 -0700231 ## nstime.h (module 'core'): ns3::Time [class]
232 module.add_class('Time', import_from_module='ns.core')
233 ## nstime.h (module 'core'): ns3::Time::Unit [enumeration]
234 module.add_enum('Unit', ['S', 'MS', 'US', 'NS', 'PS', 'FS', 'LAST'], outer_class=root_module['ns3::Time'], import_from_module='ns.core')
235 ## nstime.h (module 'core'): ns3::Time [class]
236 root_module['ns3::Time'].implicitly_converts_to(root_module['ns3::int64x64_t'])
Alexander Afanasyeveface602011-08-17 17:50:12 -0700237 ## topology-reader.h (module 'topology-read'): ns3::TopologyReader [class]
238 module.add_class('TopologyReader', import_from_module='ns.topology_read', parent=root_module['ns3::Object'])
239 ## topology-reader.h (module 'topology-read'): ns3::TopologyReader::Link [class]
240 module.add_class('Link', import_from_module='ns.topology_read', outer_class=root_module['ns3::TopologyReader'])
241 ## trace-source-accessor.h (module 'core'): ns3::TraceSourceAccessor [class]
242 module.add_class('TraceSourceAccessor', import_from_module='ns.core', parent=root_module['ns3::SimpleRefCount< ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter<ns3::TraceSourceAccessor> >'])
243 ## trailer.h (module 'network'): ns3::Trailer [class]
244 module.add_class('Trailer', import_from_module='ns.network', parent=root_module['ns3::Chunk'])
Ilya Moiseenko02fb7062011-08-11 17:18:00 -0700245 ## udp-socket-factory.h (module 'internet'): ns3::UdpSocketFactory [class]
246 module.add_class('UdpSocketFactory', import_from_module='ns.internet', parent=root_module['ns3::SocketFactory'])
Alexander Afanasyeveface602011-08-17 17:50:12 -0700247 ## annotated-topology-reader.h (module 'NDNabstraction'): ns3::AnnotatedTopologyReader [class]
248 module.add_class('AnnotatedTopologyReader', parent=root_module['ns3::TopologyReader'])
Ilya Moiseenko02fb7062011-08-11 17:18:00 -0700249 ## application.h (module 'network'): ns3::Application [class]
250 module.add_class('Application', import_from_module='ns.network', parent=root_module['ns3::Object'])
Ilya Moiseenko1762af72011-07-18 16:43:10 -0700251 ## attribute.h (module 'core'): ns3::AttributeAccessor [class]
252 module.add_class('AttributeAccessor', import_from_module='ns.core', parent=root_module['ns3::SimpleRefCount< ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> >'])
253 ## attribute.h (module 'core'): ns3::AttributeChecker [class]
254 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> >'])
255 ## attribute.h (module 'core'): ns3::AttributeValue [class]
256 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> >'])
257 ## callback.h (module 'core'): ns3::CallbackChecker [class]
258 module.add_class('CallbackChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker'])
259 ## callback.h (module 'core'): ns3::CallbackImplBase [class]
260 module.add_class('CallbackImplBase', import_from_module='ns.core', parent=root_module['ns3::SimpleRefCount< ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> >'])
261 ## callback.h (module 'core'): ns3::CallbackValue [class]
262 module.add_class('CallbackValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
Alexander Afanasyeveface602011-08-17 17:50:12 -0700263 ## ccnx.h (module 'NDNabstraction'): ns3::Ccnx [class]
264 module.add_class('Ccnx', parent=root_module['ns3::Object'])
265 ## ccnx.h (module 'NDNabstraction'): ns3::Ccnx::ccn_tt [enumeration]
266 module.add_enum('ccn_tt', ['CCN_EXT', 'CCN_TAG', 'CCN_DTAG', 'CCN_ATTR', 'CCN_DATTR', 'CCN_BLOB', 'CCN_UDATA', 'CCN_NO_TOKEN'], outer_class=root_module['ns3::Ccnx'])
267 ## ccnx.h (module 'NDNabstraction'): ns3::Ccnx [enumeration]
268 module.add_enum('', ['CCN_CLOSE'], outer_class=root_module['ns3::Ccnx'])
269 ## ccnx.h (module 'NDNabstraction'): ns3::Ccnx::ccn_dtag [enumeration]
270 module.add_enum('ccn_dtag', ['CCN_DTAG_Any', 'CCN_DTAG_Name', 'CCN_DTAG_Component', 'CCN_DTAG_Certificate', 'CCN_DTAG_Collection', 'CCN_DTAG_CompleteName', 'CCN_DTAG_Content', 'CCN_DTAG_SignedInfo', 'CCN_DTAG_ContentDigest', 'CCN_DTAG_ContentHash', 'CCN_DTAG_Count', 'CCN_DTAG_Header', 'CCN_DTAG_Interest', 'CCN_DTAG_Key', 'CCN_DTAG_KeyLocator', 'CCN_DTAG_KeyName', 'CCN_DTAG_Length', 'CCN_DTAG_Link', 'CCN_DTAG_LinkAuthenticator', 'CCN_DTAG_NameComponentCount', 'CCN_DTAG_RootDigest', 'CCN_DTAG_Signature', 'CCN_DTAG_Start', 'CCN_DTAG_Timestamp', 'CCN_DTAG_Type', 'CCN_DTAG_Nonce', 'CCN_DTAG_Scope', 'CCN_DTAG_Exclude', 'CCN_DTAG_Bloom', 'CCN_DTAG_BloomSeed', 'CCN_DTAG_AnswerOriginKind', 'CCN_DTAG_InterestLifetime', 'CCN_DTAG_Witness', 'CCN_DTAG_SignatureBits', 'CCN_DTAG_DigestAlgorithm', 'CCN_DTAG_BlockSize', 'CCN_DTAG_FreshnessSeconds', 'CCN_DTAG_FinalBlockID', 'CCN_DTAG_PublisherPublicKeyDigest', 'CCN_DTAG_PublisherCertificateDigest', 'CCN_DTAG_PublisherIssuerKeyDigest', 'CCN_DTAG_PublisherIssuerCertificateDigest', 'CCN_DTAG_ContentObject', 'CCN_DTAG_WrappedKey', 'CCN_DTAG_WrappingKeyIdentifier', 'CCN_DTAG_WrapAlgorithm', 'CCN_DTAG_KeyAlgorithm', 'CCN_DTAG_Label', 'CCN_DTAG_EncryptedKey', 'CCN_DTAG_EncryptedNonceKey', 'CCN_DTAG_WrappingKeyName', 'CCN_DTAG_Action', 'CCN_DTAG_FaceID', 'CCN_DTAG_IPProto', 'CCN_DTAG_Host', 'CCN_DTAG_Port', 'CCN_DTAG_MulticastInterface', 'CCN_DTAG_ForwardingFlags', 'CCN_DTAG_FaceInstance', 'CCN_DTAG_ForwardingEntry', 'CCN_DTAG_MulticastTTL', 'CCN_DTAG_MinSuffixComponents', 'CCN_DTAG_MaxSuffixComponents', 'CCN_DTAG_ChildSelector', 'CCN_DTAG_RepositoryInfo', 'CCN_DTAG_Version', 'CCN_DTAG_RepositoryVersion', 'CCN_DTAG_GlobalPrefix', 'CCN_DTAG_LocalName', 'CCN_DTAG_Policy', 'CCN_DTAG_Namespace', 'CCN_DTAG_GlobalPrefixName', 'CCN_DTAG_PolicyVersion', 'CCN_DTAG_KeyValueSet', 'CCN_DTAG_KeyValuePair', 'CCN_DTAG_IntegerValue', 'CCN_DTAG_DecimalValue', 'CCN_DTAG_StringValue', 'CCN_DTAG_BinaryValue', 'CCN_DTAG_NameValue', 'CCN_DTAG_Entry', 'CCN_DTAG_ACL', 'CCN_DTAG_ParameterizedName', 'CCN_DTAG_Prefix', 'CCN_DTAG_Suffix', 'CCN_DTAG_Root', 'CCN_DTAG_ProfileName', 'CCN_DTAG_Parameters', 'CCN_DTAG_InfoString', 'CCN_DTAG_StatusResponse', 'CCN_DTAG_StatusCode', 'CCN_DTAG_StatusText', 'CCN_DTAG_SequenceNumber', 'CCN_DTAG_CCNProtocolDataUnit'], outer_class=root_module['ns3::Ccnx'])
271 ## ccnx-content-object-header.h (module 'NDNabstraction'): ns3::CcnxContentObjectHeader [class]
272 module.add_class('CcnxContentObjectHeader', parent=root_module['ns3::Header'])
273 ## ccnx-content-object-header.h (module 'NDNabstraction'): ns3::CcnxContentObjectTail [class]
274 module.add_class('CcnxContentObjectTail', parent=root_module['ns3::Header'])
275 ## ccnx-face.h (module 'NDNabstraction'): ns3::CcnxFace [class]
276 module.add_class('CcnxFace', parent=root_module['ns3::Object'])
277 ## ccnx-forwarding-strategy.h (module 'NDNabstraction'): ns3::CcnxForwardingStrategy [class]
278 module.add_class('CcnxForwardingStrategy', parent=root_module['ns3::Object'])
279 ## ccnx-interest-header.h (module 'NDNabstraction'): ns3::CcnxInterestHeader [class]
280 module.add_class('CcnxInterestHeader', parent=root_module['ns3::Header'])
281 ## ccnx-l3-protocol.h (module 'NDNabstraction'): ns3::CcnxL3Protocol [class]
282 module.add_class('CcnxL3Protocol', parent=root_module['ns3::Ccnx'])
283 ## ccnx-l3-protocol.h (module 'NDNabstraction'): ns3::CcnxL3Protocol::DropReason [enumeration]
284 module.add_enum('DropReason', ['DROP_DUPLICATE_INTEREST', 'DROP_CONGESTION', 'DROP_NO_ROUTE', 'DROP_INTERFACE_DOWN'], outer_class=root_module['ns3::CcnxL3Protocol'])
285 ## ccnx-local-face.h (module 'NDNabstraction'): ns3::CcnxLocalFace [class]
286 module.add_class('CcnxLocalFace', parent=root_module['ns3::CcnxFace'])
287 ## ccnx-route.h (module 'NDNabstraction'): ns3::CcnxRoute [class]
288 module.add_class('CcnxRoute', parent=root_module['ns3::SimpleRefCount< ns3::CcnxRoute, ns3::empty, ns3::DefaultDeleter<ns3::CcnxRoute> >'])
Ilya Moiseenko1762af72011-07-18 16:43:10 -0700289 ## attribute.h (module 'core'): ns3::EmptyAttributeValue [class]
290 module.add_class('EmptyAttributeValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
291 ## event-impl.h (module 'core'): ns3::EventImpl [class]
292 module.add_class('EventImpl', import_from_module='ns.core', parent=root_module['ns3::SimpleRefCount< ns3::EventImpl, ns3::empty, ns3::DefaultDeleter<ns3::EventImpl> >'])
Ilya Moiseenkoc166cd32011-08-12 12:50:30 -0700293 ## integer.h (module 'core'): ns3::IntegerValue [class]
294 module.add_class('IntegerValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
Ilya Moiseenko1762af72011-07-18 16:43:10 -0700295 ## ipv4-address.h (module 'network'): ns3::Ipv4AddressChecker [class]
296 module.add_class('Ipv4AddressChecker', import_from_module='ns.network', parent=root_module['ns3::AttributeChecker'])
297 ## ipv4-address.h (module 'network'): ns3::Ipv4AddressValue [class]
298 module.add_class('Ipv4AddressValue', import_from_module='ns.network', parent=root_module['ns3::AttributeValue'])
Ilya Moiseenko1762af72011-07-18 16:43:10 -0700299 ## ipv4-address.h (module 'network'): ns3::Ipv4MaskChecker [class]
300 module.add_class('Ipv4MaskChecker', import_from_module='ns.network', parent=root_module['ns3::AttributeChecker'])
301 ## ipv4-address.h (module 'network'): ns3::Ipv4MaskValue [class]
302 module.add_class('Ipv4MaskValue', import_from_module='ns.network', parent=root_module['ns3::AttributeValue'])
Ilya Moiseenko1762af72011-07-18 16:43:10 -0700303 ## ipv6-address.h (module 'network'): ns3::Ipv6AddressChecker [class]
304 module.add_class('Ipv6AddressChecker', import_from_module='ns.network', parent=root_module['ns3::AttributeChecker'])
305 ## ipv6-address.h (module 'network'): ns3::Ipv6AddressValue [class]
306 module.add_class('Ipv6AddressValue', import_from_module='ns.network', parent=root_module['ns3::AttributeValue'])
307 ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixChecker [class]
308 module.add_class('Ipv6PrefixChecker', import_from_module='ns.network', parent=root_module['ns3::AttributeChecker'])
309 ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixValue [class]
310 module.add_class('Ipv6PrefixValue', import_from_module='ns.network', parent=root_module['ns3::AttributeValue'])
311 ## net-device.h (module 'network'): ns3::NetDevice [class]
312 module.add_class('NetDevice', import_from_module='ns.network', parent=root_module['ns3::Object'])
313 ## net-device.h (module 'network'): ns3::NetDevice::PacketType [enumeration]
314 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')
Alexander Afanasyeveface602011-08-17 17:50:12 -0700315 ## nix-vector.h (module 'network'): ns3::NixVector [class]
316 module.add_class('NixVector', import_from_module='ns.network', parent=root_module['ns3::SimpleRefCount< ns3::NixVector, ns3::empty, ns3::DefaultDeleter<ns3::NixVector> >'])
Ilya Moiseenko1762af72011-07-18 16:43:10 -0700317 ## node.h (module 'network'): ns3::Node [class]
318 module.add_class('Node', import_from_module='ns.network', parent=root_module['ns3::Object'])
319 ## object-factory.h (module 'core'): ns3::ObjectFactoryChecker [class]
320 module.add_class('ObjectFactoryChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker'])
321 ## object-factory.h (module 'core'): ns3::ObjectFactoryValue [class]
322 module.add_class('ObjectFactoryValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
Alexander Afanasyeveface602011-08-17 17:50:12 -0700323 ## output-stream-wrapper.h (module 'network'): ns3::OutputStreamWrapper [class]
324 module.add_class('OutputStreamWrapper', import_from_module='ns.network', parent=root_module['ns3::SimpleRefCount< ns3::OutputStreamWrapper, ns3::empty, ns3::DefaultDeleter<ns3::OutputStreamWrapper> >'])
325 ## packet.h (module 'network'): ns3::Packet [class]
326 module.add_class('Packet', import_from_module='ns.network', parent=root_module['ns3::SimpleRefCount< ns3::Packet, ns3::empty, ns3::DefaultDeleter<ns3::Packet> >'])
Ilya Moiseenko02fb7062011-08-11 17:18:00 -0700327 ## random-variable.h (module 'core'): ns3::RandomVariableChecker [class]
328 module.add_class('RandomVariableChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker'])
329 ## random-variable.h (module 'core'): ns3::RandomVariableValue [class]
330 module.add_class('RandomVariableValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
331 ## stupid-interest-generator.h (module 'NDNabstraction'): ns3::StupidInterestGenerator [class]
332 module.add_class('StupidInterestGenerator', parent=root_module['ns3::Application'])
333 ## stupid-interest-sink.h (module 'NDNabstraction'): ns3::StupidInterestSink [class]
334 module.add_class('StupidInterestSink', parent=root_module['ns3::Application'])
Ilya Moiseenko1762af72011-07-18 16:43:10 -0700335 ## nstime.h (module 'core'): ns3::TimeChecker [class]
336 module.add_class('TimeChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker'])
337 ## nstime.h (module 'core'): ns3::TimeValue [class]
338 module.add_class('TimeValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
339 ## type-id.h (module 'core'): ns3::TypeIdChecker [class]
340 module.add_class('TypeIdChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker'])
341 ## type-id.h (module 'core'): ns3::TypeIdValue [class]
342 module.add_class('TypeIdValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
343 ## address.h (module 'network'): ns3::AddressChecker [class]
344 module.add_class('AddressChecker', import_from_module='ns.network', parent=root_module['ns3::AttributeChecker'])
345 ## address.h (module 'network'): ns3::AddressValue [class]
346 module.add_class('AddressValue', import_from_module='ns.network', parent=root_module['ns3::AttributeValue'])
Alexander Afanasyeveface602011-08-17 17:50:12 -0700347 module.add_container('std::map< std::string, std::string >', ('std::string', 'std::string'), container_type='map')
Ilya Moiseenko02fb7062011-08-11 17:18:00 -0700348 module.add_container('std::list< ns3::Ptr< ns3::Socket > >', 'ns3::Ptr< ns3::Socket >', container_type='list')
Ilya Moiseenko02fb7062011-08-11 17:18:00 -0700349 typehandlers.add_type_alias('void ( * ) ( std::ostream & ) *', 'ns3::LogNodePrinter')
350 typehandlers.add_type_alias('void ( * ) ( std::ostream & ) **', 'ns3::LogNodePrinter*')
351 typehandlers.add_type_alias('void ( * ) ( std::ostream & ) *&', 'ns3::LogNodePrinter&')
Alexander Afanasyeveface602011-08-17 17:50:12 -0700352 typehandlers.add_type_alias('void ( * ) ( std::ostream & ) *', 'ns3::LogTimePrinter')
353 typehandlers.add_type_alias('void ( * ) ( std::ostream & ) **', 'ns3::LogTimePrinter*')
354 typehandlers.add_type_alias('void ( * ) ( std::ostream & ) *&', 'ns3::LogTimePrinter&')
355
356 ## Register a nested module for the namespace CcnxParser
357
358 nested_module = module.add_cpp_namespace('CcnxParser')
359 register_types_ns3_CcnxParser(nested_module)
360
Ilya Moiseenko1762af72011-07-18 16:43:10 -0700361
362 ## Register a nested module for the namespace FatalImpl
363
364 nested_module = module.add_cpp_namespace('FatalImpl')
365 register_types_ns3_FatalImpl(nested_module)
366
367
Alexander Afanasyeveface602011-08-17 17:50:12 -0700368 ## Register a nested module for the namespace Name
Ilya Moiseenko1762af72011-07-18 16:43:10 -0700369
Alexander Afanasyeveface602011-08-17 17:50:12 -0700370 nested_module = module.add_cpp_namespace('Name')
371 register_types_ns3_Name(nested_module)
Ilya Moiseenko1762af72011-07-18 16:43:10 -0700372
Ilya Moiseenkoc166cd32011-08-12 12:50:30 -0700373
374 ## Register a nested module for the namespace internal
375
376 nested_module = module.add_cpp_namespace('internal')
377 register_types_ns3_internal(nested_module)
378
Ilya Moiseenko1762af72011-07-18 16:43:10 -0700379
Alexander Afanasyeveface602011-08-17 17:50:12 -0700380def register_types_ns3_CcnxParser(module):
381 root_module = module.get_root()
382
383 ## ccnx-decoding-helper.h (module 'NDNabstraction'): ns3::CcnxParser::Block [class]
384 module.add_class('Block', parent=root_module['ns3::SimpleRefCount< ns3::CcnxParser::Block, ns3::empty, ns3::DefaultDeleter<ns3::CcnxParser::Block> >'])
385 ## ccnx-decoding-helper.h (module 'NDNabstraction'): ns3::CcnxParser::CcnxDecodingException [class]
386 module.add_class('CcnxDecodingException')
387 ## ccnx-decoding-helper.h (module 'NDNabstraction'): ns3::CcnxParser::Dattr [class]
388 module.add_class('Dattr', parent=root_module['ns3::CcnxParser::Block'])
389 ## ccnx-decoding-helper.h (module 'NDNabstraction'): ns3::CcnxParser::Dtag [class]
390 module.add_class('Dtag', parent=root_module['ns3::CcnxParser::Block'])
391 ## ccnx-decoding-helper.h (module 'NDNabstraction'): ns3::CcnxParser::Ext [class]
392 module.add_class('Ext', parent=root_module['ns3::CcnxParser::Block'])
393 ## ccnx-decoding-helper.h (module 'NDNabstraction'): ns3::CcnxParser::GJNoArguVisitor [class]
394 module.add_class('GJNoArguVisitor', allow_subclassing=True)
395 ## ccnx-decoding-helper.h (module 'NDNabstraction'): ns3::CcnxParser::GJVisitor [class]
396 module.add_class('GJVisitor', allow_subclassing=True)
397 ## ccnx-decoding-helper.h (module 'NDNabstraction'): ns3::CcnxParser::GJVoidVisitor [class]
398 module.add_class('GJVoidVisitor', allow_subclassing=True)
399 ## ccnx-decoding-helper.h (module 'NDNabstraction'): ns3::CcnxParser::Tag [class]
400 module.add_class('Tag', parent=root_module['ns3::CcnxParser::Block'])
401 ## ccnx-decoding-helper.h (module 'NDNabstraction'): ns3::CcnxParser::Udata [class]
402 module.add_class('Udata', parent=root_module['ns3::CcnxParser::Block'])
403 ## ccnx-decoding-helper.h (module 'NDNabstraction'): ns3::CcnxParser::Visitor [class]
404 module.add_class('Visitor', allow_subclassing=True)
405 ## ccnx-decoding-helper.h (module 'NDNabstraction'): ns3::CcnxParser::Attr [class]
406 module.add_class('Attr', parent=root_module['ns3::CcnxParser::Block'])
407 ## ccnx-decoding-helper.h (module 'NDNabstraction'): ns3::CcnxParser::Blob [class]
408 module.add_class('Blob', parent=root_module['ns3::CcnxParser::Block'])
409 ## ccnx-decoding-helper.h (module 'NDNabstraction'): ns3::CcnxParser::DepthFirstVisitor [class]
410 module.add_class('DepthFirstVisitor', parent=root_module['ns3::CcnxParser::Visitor'])
411 ## ccnx-decoding-helper.h (module 'NDNabstraction'): ns3::CcnxParser::GJDepthFirstVisitor [class]
412 module.add_class('GJDepthFirstVisitor', parent=root_module['ns3::CcnxParser::GJVisitor'])
413 ## ccnx-decoding-helper.h (module 'NDNabstraction'): ns3::CcnxParser::GJNoArguDepthFirstVisitor [class]
414 module.add_class('GJNoArguDepthFirstVisitor', parent=root_module['ns3::CcnxParser::GJNoArguVisitor'])
415 ## ccnx-decoding-helper.h (module 'NDNabstraction'): ns3::CcnxParser::GJVoidDepthFirstVisitor [class]
416 module.add_class('GJVoidDepthFirstVisitor', parent=root_module['ns3::CcnxParser::GJVoidVisitor'])
417 ## ccnx-decoding-helper.h (module 'NDNabstraction'): ns3::CcnxParser::InterestVisitor [class]
418 module.add_class('InterestVisitor', parent=root_module['ns3::CcnxParser::GJVoidDepthFirstVisitor'])
419 ## ccnx-decoding-helper.h (module 'NDNabstraction'): ns3::CcnxParser::NameComponentsVisitor [class]
420 module.add_class('NameComponentsVisitor', parent=root_module['ns3::CcnxParser::GJVoidDepthFirstVisitor'])
421 ## ccnx-decoding-helper.h (module 'NDNabstraction'): ns3::CcnxParser::NonNegativeIntegerVisitor [class]
422 module.add_class('NonNegativeIntegerVisitor', parent=root_module['ns3::CcnxParser::GJNoArguDepthFirstVisitor'])
423 ## ccnx-decoding-helper.h (module 'NDNabstraction'): ns3::CcnxParser::StringVisitor [class]
424 module.add_class('StringVisitor', parent=root_module['ns3::CcnxParser::GJNoArguDepthFirstVisitor'])
425 ## ccnx-decoding-helper.h (module 'NDNabstraction'): ns3::CcnxParser::ContentObjectVisitor [class]
426 module.add_class('ContentObjectVisitor', parent=root_module['ns3::CcnxParser::GJVoidDepthFirstVisitor'])
427 module.add_container('std::list< ns3::Ptr< ns3::CcnxParser::Block > >', 'ns3::Ptr< ns3::CcnxParser::Block >', container_type='list')
428
Ilya Moiseenko1762af72011-07-18 16:43:10 -0700429def register_types_ns3_FatalImpl(module):
430 root_module = module.get_root()
431
432
Alexander Afanasyeveface602011-08-17 17:50:12 -0700433def register_types_ns3_Name(module):
Ilya Moiseenko1762af72011-07-18 16:43:10 -0700434 root_module = module.get_root()
435
Alexander Afanasyeveface602011-08-17 17:50:12 -0700436 ## name-components.h (module 'NDNabstraction'): ns3::Name::Components [class]
437 module.add_class('Components', parent=root_module['ns3::SimpleRefCount< ns3::Name::Components, ns3::empty, ns3::DefaultDeleter<ns3::Name::Components> >'])
438 module.add_container('std::list< std::string >', 'std::string', container_type='list')
Ilya Moiseenkoc166cd32011-08-12 12:50:30 -0700439
440def register_types_ns3_internal(module):
441 root_module = module.get_root()
442
Ilya Moiseenko1762af72011-07-18 16:43:10 -0700443
444def register_methods(root_module):
445 register_Ns3Address_methods(root_module, root_module['ns3::Address'])
Ilya Moiseenko02fb7062011-08-11 17:18:00 -0700446 register_Ns3ApplicationContainer_methods(root_module, root_module['ns3::ApplicationContainer'])
Alexander Afanasyeveface602011-08-17 17:50:12 -0700447 register_Ns3AsciiTraceHelper_methods(root_module, root_module['ns3::AsciiTraceHelper'])
448 register_Ns3AsciiTraceHelperForCcnx_methods(root_module, root_module['ns3::AsciiTraceHelperForCcnx'])
449 register_Ns3AsciiTraceHelperForDevice_methods(root_module, root_module['ns3::AsciiTraceHelperForDevice'])
450 register_Ns3AttributeConstructionList_methods(root_module, root_module['ns3::AttributeConstructionList'])
451 register_Ns3AttributeConstructionListItem_methods(root_module, root_module['ns3::AttributeConstructionList::Item'])
Ilya Moiseenko1762af72011-07-18 16:43:10 -0700452 register_Ns3Buffer_methods(root_module, root_module['ns3::Buffer'])
453 register_Ns3BufferIterator_methods(root_module, root_module['ns3::Buffer::Iterator'])
Alexander Afanasyeveface602011-08-17 17:50:12 -0700454 register_Ns3ByteTagIterator_methods(root_module, root_module['ns3::ByteTagIterator'])
455 register_Ns3ByteTagIteratorItem_methods(root_module, root_module['ns3::ByteTagIterator::Item'])
456 register_Ns3ByteTagList_methods(root_module, root_module['ns3::ByteTagList'])
457 register_Ns3ByteTagListIterator_methods(root_module, root_module['ns3::ByteTagList::Iterator'])
458 register_Ns3ByteTagListIteratorItem_methods(root_module, root_module['ns3::ByteTagList::Iterator::Item'])
Ilya Moiseenko1762af72011-07-18 16:43:10 -0700459 register_Ns3CallbackBase_methods(root_module, root_module['ns3::CallbackBase'])
Alexander Afanasyeveface602011-08-17 17:50:12 -0700460 register_Ns3CcnxDecodingHelper_methods(root_module, root_module['ns3::CcnxDecodingHelper'])
461 register_Ns3CcnxEncodingHelper_methods(root_module, root_module['ns3::CcnxEncodingHelper'])
462 register_Ns3CcnxFaceContainer_methods(root_module, root_module['ns3::CcnxFaceContainer'])
463 register_Ns3CcnxForwardingHelper_methods(root_module, root_module['ns3::CcnxForwardingHelper'])
464 register_Ns3CcnxHeaderHelper_methods(root_module, root_module['ns3::CcnxHeaderHelper'])
465 register_Ns3CcnxUnknownHeaderException_methods(root_module, root_module['ns3::CcnxUnknownHeaderException'])
Ilya Moiseenko1762af72011-07-18 16:43:10 -0700466 register_Ns3EventId_methods(root_module, root_module['ns3::EventId'])
Ilya Moiseenko1762af72011-07-18 16:43:10 -0700467 register_Ns3Ipv4Address_methods(root_module, root_module['ns3::Ipv4Address'])
Ilya Moiseenko1762af72011-07-18 16:43:10 -0700468 register_Ns3Ipv4Mask_methods(root_module, root_module['ns3::Ipv4Mask'])
Ilya Moiseenko1762af72011-07-18 16:43:10 -0700469 register_Ns3Ipv6Address_methods(root_module, root_module['ns3::Ipv6Address'])
470 register_Ns3Ipv6Prefix_methods(root_module, root_module['ns3::Ipv6Prefix'])
Ilya Moiseenko02fb7062011-08-11 17:18:00 -0700471 register_Ns3LogComponent_methods(root_module, root_module['ns3::LogComponent'])
Alexander Afanasyeveface602011-08-17 17:50:12 -0700472 register_Ns3NetDeviceContainer_methods(root_module, root_module['ns3::NetDeviceContainer'])
Ilya Moiseenko1762af72011-07-18 16:43:10 -0700473 register_Ns3NodeContainer_methods(root_module, root_module['ns3::NodeContainer'])
474 register_Ns3ObjectBase_methods(root_module, root_module['ns3::ObjectBase'])
475 register_Ns3ObjectDeleter_methods(root_module, root_module['ns3::ObjectDeleter'])
476 register_Ns3ObjectFactory_methods(root_module, root_module['ns3::ObjectFactory'])
Alexander Afanasyeveface602011-08-17 17:50:12 -0700477 register_Ns3PacketMetadata_methods(root_module, root_module['ns3::PacketMetadata'])
478 register_Ns3PacketMetadataItem_methods(root_module, root_module['ns3::PacketMetadata::Item'])
479 register_Ns3PacketMetadataItemIterator_methods(root_module, root_module['ns3::PacketMetadata::ItemIterator'])
480 register_Ns3PacketTagIterator_methods(root_module, root_module['ns3::PacketTagIterator'])
481 register_Ns3PacketTagIteratorItem_methods(root_module, root_module['ns3::PacketTagIterator::Item'])
482 register_Ns3PacketTagList_methods(root_module, root_module['ns3::PacketTagList'])
483 register_Ns3PacketTagListTagData_methods(root_module, root_module['ns3::PacketTagList::TagData'])
484 register_Ns3PcapFile_methods(root_module, root_module['ns3::PcapFile'])
485 register_Ns3PcapHelper_methods(root_module, root_module['ns3::PcapHelper'])
486 register_Ns3PcapHelperForCcnx_methods(root_module, root_module['ns3::PcapHelperForCcnx'])
487 register_Ns3PcapHelperForDevice_methods(root_module, root_module['ns3::PcapHelperForDevice'])
Ilya Moiseenko02fb7062011-08-11 17:18:00 -0700488 register_Ns3RandomVariable_methods(root_module, root_module['ns3::RandomVariable'])
489 register_Ns3SeedManager_methods(root_module, root_module['ns3::SeedManager'])
490 register_Ns3SequentialVariable_methods(root_module, root_module['ns3::SequentialVariable'])
Alexander Afanasyeveface602011-08-17 17:50:12 -0700491 register_Ns3SimpleRefCount__Ns3Chunk_Ns3ObjectBase_Ns3DefaultDeleter__lt__ns3Chunk__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::Chunk, ns3::ObjectBase, ns3::DefaultDeleter<ns3::Chunk> >'])
Ilya Moiseenko1762af72011-07-18 16:43:10 -0700492 register_Ns3SimpleRefCount__Ns3Object_Ns3ObjectBase_Ns3ObjectDeleter_methods(root_module, root_module['ns3::SimpleRefCount< ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter >'])
Alexander Afanasyeveface602011-08-17 17:50:12 -0700493 register_Ns3Simulator_methods(root_module, root_module['ns3::Simulator'])
Ilya Moiseenko02fb7062011-08-11 17:18:00 -0700494 register_Ns3StupidInterestGeneratorHelper_methods(root_module, root_module['ns3::StupidInterestGeneratorHelper'])
Ilya Moiseenko1762af72011-07-18 16:43:10 -0700495 register_Ns3Tag_methods(root_module, root_module['ns3::Tag'])
496 register_Ns3TagBuffer_methods(root_module, root_module['ns3::TagBuffer'])
Ilya Moiseenko02fb7062011-08-11 17:18:00 -0700497 register_Ns3TriangularVariable_methods(root_module, root_module['ns3::TriangularVariable'])
Ilya Moiseenko1762af72011-07-18 16:43:10 -0700498 register_Ns3TypeId_methods(root_module, root_module['ns3::TypeId'])
Alexander Afanasyeveface602011-08-17 17:50:12 -0700499 register_Ns3TypeIdAttributeInformation_methods(root_module, root_module['ns3::TypeId::AttributeInformation'])
500 register_Ns3TypeIdTraceSourceInformation_methods(root_module, root_module['ns3::TypeId::TraceSourceInformation'])
Ilya Moiseenko02fb7062011-08-11 17:18:00 -0700501 register_Ns3UniformVariable_methods(root_module, root_module['ns3::UniformVariable'])
Ilya Moiseenko02fb7062011-08-11 17:18:00 -0700502 register_Ns3WeibullVariable_methods(root_module, root_module['ns3::WeibullVariable'])
503 register_Ns3ZetaVariable_methods(root_module, root_module['ns3::ZetaVariable'])
504 register_Ns3ZipfVariable_methods(root_module, root_module['ns3::ZipfVariable'])
Ilya Moiseenko1762af72011-07-18 16:43:10 -0700505 register_Ns3Empty_methods(root_module, root_module['ns3::empty'])
506 register_Ns3Int64x64_t_methods(root_module, root_module['ns3::int64x64_t'])
Alexander Afanasyeveface602011-08-17 17:50:12 -0700507 register_Ns3CcnxStackHelper_methods(root_module, root_module['ns3::CcnxStackHelper'])
Ilya Moiseenko1762af72011-07-18 16:43:10 -0700508 register_Ns3Chunk_methods(root_module, root_module['ns3::Chunk'])
Ilya Moiseenko02fb7062011-08-11 17:18:00 -0700509 register_Ns3ConstantVariable_methods(root_module, root_module['ns3::ConstantVariable'])
510 register_Ns3DeterministicVariable_methods(root_module, root_module['ns3::DeterministicVariable'])
511 register_Ns3EmpiricalVariable_methods(root_module, root_module['ns3::EmpiricalVariable'])
512 register_Ns3ErlangVariable_methods(root_module, root_module['ns3::ErlangVariable'])
513 register_Ns3ExponentialVariable_methods(root_module, root_module['ns3::ExponentialVariable'])
514 register_Ns3GammaVariable_methods(root_module, root_module['ns3::GammaVariable'])
Ilya Moiseenko1762af72011-07-18 16:43:10 -0700515 register_Ns3Header_methods(root_module, root_module['ns3::Header'])
Ilya Moiseenko02fb7062011-08-11 17:18:00 -0700516 register_Ns3IntEmpiricalVariable_methods(root_module, root_module['ns3::IntEmpiricalVariable'])
517 register_Ns3LogNormalVariable_methods(root_module, root_module['ns3::LogNormalVariable'])
518 register_Ns3NormalVariable_methods(root_module, root_module['ns3::NormalVariable'])
Ilya Moiseenko1762af72011-07-18 16:43:10 -0700519 register_Ns3Object_methods(root_module, root_module['ns3::Object'])
520 register_Ns3ObjectAggregateIterator_methods(root_module, root_module['ns3::Object::AggregateIterator'])
Ilya Moiseenko02fb7062011-08-11 17:18:00 -0700521 register_Ns3ParetoVariable_methods(root_module, root_module['ns3::ParetoVariable'])
Alexander Afanasyeveface602011-08-17 17:50:12 -0700522 register_Ns3PcapFileWrapper_methods(root_module, root_module['ns3::PcapFileWrapper'])
Ilya Moiseenko1762af72011-07-18 16:43:10 -0700523 register_Ns3SimpleRefCount__Ns3AttributeAccessor_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeAccessor__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> >'])
524 register_Ns3SimpleRefCount__Ns3AttributeChecker_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeChecker__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter<ns3::AttributeChecker> >'])
525 register_Ns3SimpleRefCount__Ns3AttributeValue_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeValue__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter<ns3::AttributeValue> >'])
526 register_Ns3SimpleRefCount__Ns3CallbackImplBase_Ns3Empty_Ns3DefaultDeleter__lt__ns3CallbackImplBase__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> >'])
Alexander Afanasyeveface602011-08-17 17:50:12 -0700527 register_Ns3SimpleRefCount__Ns3CcnxParserBlock_Ns3Empty_Ns3DefaultDeleter__lt__ns3CcnxParserBlock__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::CcnxParser::Block, ns3::empty, ns3::DefaultDeleter<ns3::CcnxParser::Block> >'])
528 register_Ns3SimpleRefCount__Ns3CcnxRoute_Ns3Empty_Ns3DefaultDeleter__lt__ns3CcnxRoute__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::CcnxRoute, ns3::empty, ns3::DefaultDeleter<ns3::CcnxRoute> >'])
Ilya Moiseenko1762af72011-07-18 16:43:10 -0700529 register_Ns3SimpleRefCount__Ns3EventImpl_Ns3Empty_Ns3DefaultDeleter__lt__ns3EventImpl__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::EventImpl, ns3::empty, ns3::DefaultDeleter<ns3::EventImpl> >'])
Alexander Afanasyeveface602011-08-17 17:50:12 -0700530 register_Ns3SimpleRefCount__Ns3NameComponents_Ns3Empty_Ns3DefaultDeleter__lt__ns3NameComponents__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::Name::Components, ns3::empty, ns3::DefaultDeleter<ns3::Name::Components> >'])
531 register_Ns3SimpleRefCount__Ns3NixVector_Ns3Empty_Ns3DefaultDeleter__lt__ns3NixVector__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::NixVector, ns3::empty, ns3::DefaultDeleter<ns3::NixVector> >'])
532 register_Ns3SimpleRefCount__Ns3OutputStreamWrapper_Ns3Empty_Ns3DefaultDeleter__lt__ns3OutputStreamWrapper__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::OutputStreamWrapper, ns3::empty, ns3::DefaultDeleter<ns3::OutputStreamWrapper> >'])
533 register_Ns3SimpleRefCount__Ns3Packet_Ns3Empty_Ns3DefaultDeleter__lt__ns3Packet__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::Packet, ns3::empty, ns3::DefaultDeleter<ns3::Packet> >'])
534 register_Ns3SimpleRefCount__Ns3TraceSourceAccessor_Ns3Empty_Ns3DefaultDeleter__lt__ns3TraceSourceAccessor__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter<ns3::TraceSourceAccessor> >'])
Alexander Afanasyev2536e202011-08-12 14:13:10 -0700535 register_Ns3Socket_methods(root_module, root_module['ns3::Socket'])
536 register_Ns3SocketAddressTag_methods(root_module, root_module['ns3::SocketAddressTag'])
Ilya Moiseenko02fb7062011-08-11 17:18:00 -0700537 register_Ns3SocketFactory_methods(root_module, root_module['ns3::SocketFactory'])
Alexander Afanasyev2536e202011-08-12 14:13:10 -0700538 register_Ns3SocketIpTtlTag_methods(root_module, root_module['ns3::SocketIpTtlTag'])
539 register_Ns3SocketSetDontFragmentTag_methods(root_module, root_module['ns3::SocketSetDontFragmentTag'])
Ilya Moiseenko1762af72011-07-18 16:43:10 -0700540 register_Ns3Time_methods(root_module, root_module['ns3::Time'])
Alexander Afanasyeveface602011-08-17 17:50:12 -0700541 register_Ns3TopologyReader_methods(root_module, root_module['ns3::TopologyReader'])
542 register_Ns3TopologyReaderLink_methods(root_module, root_module['ns3::TopologyReader::Link'])
543 register_Ns3TraceSourceAccessor_methods(root_module, root_module['ns3::TraceSourceAccessor'])
544 register_Ns3Trailer_methods(root_module, root_module['ns3::Trailer'])
Ilya Moiseenko02fb7062011-08-11 17:18:00 -0700545 register_Ns3UdpSocketFactory_methods(root_module, root_module['ns3::UdpSocketFactory'])
Alexander Afanasyeveface602011-08-17 17:50:12 -0700546 register_Ns3AnnotatedTopologyReader_methods(root_module, root_module['ns3::AnnotatedTopologyReader'])
Ilya Moiseenko02fb7062011-08-11 17:18:00 -0700547 register_Ns3Application_methods(root_module, root_module['ns3::Application'])
Ilya Moiseenko1762af72011-07-18 16:43:10 -0700548 register_Ns3AttributeAccessor_methods(root_module, root_module['ns3::AttributeAccessor'])
549 register_Ns3AttributeChecker_methods(root_module, root_module['ns3::AttributeChecker'])
550 register_Ns3AttributeValue_methods(root_module, root_module['ns3::AttributeValue'])
551 register_Ns3CallbackChecker_methods(root_module, root_module['ns3::CallbackChecker'])
552 register_Ns3CallbackImplBase_methods(root_module, root_module['ns3::CallbackImplBase'])
553 register_Ns3CallbackValue_methods(root_module, root_module['ns3::CallbackValue'])
Alexander Afanasyeveface602011-08-17 17:50:12 -0700554 register_Ns3Ccnx_methods(root_module, root_module['ns3::Ccnx'])
555 register_Ns3CcnxContentObjectHeader_methods(root_module, root_module['ns3::CcnxContentObjectHeader'])
556 register_Ns3CcnxContentObjectTail_methods(root_module, root_module['ns3::CcnxContentObjectTail'])
557 register_Ns3CcnxFace_methods(root_module, root_module['ns3::CcnxFace'])
558 register_Ns3CcnxForwardingStrategy_methods(root_module, root_module['ns3::CcnxForwardingStrategy'])
559 register_Ns3CcnxInterestHeader_methods(root_module, root_module['ns3::CcnxInterestHeader'])
560 register_Ns3CcnxL3Protocol_methods(root_module, root_module['ns3::CcnxL3Protocol'])
561 register_Ns3CcnxLocalFace_methods(root_module, root_module['ns3::CcnxLocalFace'])
562 register_Ns3CcnxRoute_methods(root_module, root_module['ns3::CcnxRoute'])
Ilya Moiseenko1762af72011-07-18 16:43:10 -0700563 register_Ns3EmptyAttributeValue_methods(root_module, root_module['ns3::EmptyAttributeValue'])
564 register_Ns3EventImpl_methods(root_module, root_module['ns3::EventImpl'])
Ilya Moiseenkoc166cd32011-08-12 12:50:30 -0700565 register_Ns3IntegerValue_methods(root_module, root_module['ns3::IntegerValue'])
Ilya Moiseenko1762af72011-07-18 16:43:10 -0700566 register_Ns3Ipv4AddressChecker_methods(root_module, root_module['ns3::Ipv4AddressChecker'])
567 register_Ns3Ipv4AddressValue_methods(root_module, root_module['ns3::Ipv4AddressValue'])
Ilya Moiseenko1762af72011-07-18 16:43:10 -0700568 register_Ns3Ipv4MaskChecker_methods(root_module, root_module['ns3::Ipv4MaskChecker'])
569 register_Ns3Ipv4MaskValue_methods(root_module, root_module['ns3::Ipv4MaskValue'])
Ilya Moiseenko1762af72011-07-18 16:43:10 -0700570 register_Ns3Ipv6AddressChecker_methods(root_module, root_module['ns3::Ipv6AddressChecker'])
571 register_Ns3Ipv6AddressValue_methods(root_module, root_module['ns3::Ipv6AddressValue'])
572 register_Ns3Ipv6PrefixChecker_methods(root_module, root_module['ns3::Ipv6PrefixChecker'])
573 register_Ns3Ipv6PrefixValue_methods(root_module, root_module['ns3::Ipv6PrefixValue'])
574 register_Ns3NetDevice_methods(root_module, root_module['ns3::NetDevice'])
Alexander Afanasyeveface602011-08-17 17:50:12 -0700575 register_Ns3NixVector_methods(root_module, root_module['ns3::NixVector'])
Ilya Moiseenko1762af72011-07-18 16:43:10 -0700576 register_Ns3Node_methods(root_module, root_module['ns3::Node'])
577 register_Ns3ObjectFactoryChecker_methods(root_module, root_module['ns3::ObjectFactoryChecker'])
578 register_Ns3ObjectFactoryValue_methods(root_module, root_module['ns3::ObjectFactoryValue'])
Alexander Afanasyeveface602011-08-17 17:50:12 -0700579 register_Ns3OutputStreamWrapper_methods(root_module, root_module['ns3::OutputStreamWrapper'])
580 register_Ns3Packet_methods(root_module, root_module['ns3::Packet'])
Ilya Moiseenko02fb7062011-08-11 17:18:00 -0700581 register_Ns3RandomVariableChecker_methods(root_module, root_module['ns3::RandomVariableChecker'])
582 register_Ns3RandomVariableValue_methods(root_module, root_module['ns3::RandomVariableValue'])
583 register_Ns3StupidInterestGenerator_methods(root_module, root_module['ns3::StupidInterestGenerator'])
584 register_Ns3StupidInterestSink_methods(root_module, root_module['ns3::StupidInterestSink'])
Ilya Moiseenko1762af72011-07-18 16:43:10 -0700585 register_Ns3TimeChecker_methods(root_module, root_module['ns3::TimeChecker'])
586 register_Ns3TimeValue_methods(root_module, root_module['ns3::TimeValue'])
587 register_Ns3TypeIdChecker_methods(root_module, root_module['ns3::TypeIdChecker'])
588 register_Ns3TypeIdValue_methods(root_module, root_module['ns3::TypeIdValue'])
589 register_Ns3AddressChecker_methods(root_module, root_module['ns3::AddressChecker'])
590 register_Ns3AddressValue_methods(root_module, root_module['ns3::AddressValue'])
Alexander Afanasyeveface602011-08-17 17:50:12 -0700591 register_Ns3CcnxParserBlock_methods(root_module, root_module['ns3::CcnxParser::Block'])
592 register_Ns3CcnxParserCcnxDecodingException_methods(root_module, root_module['ns3::CcnxParser::CcnxDecodingException'])
593 register_Ns3CcnxParserDattr_methods(root_module, root_module['ns3::CcnxParser::Dattr'])
594 register_Ns3CcnxParserDtag_methods(root_module, root_module['ns3::CcnxParser::Dtag'])
595 register_Ns3CcnxParserExt_methods(root_module, root_module['ns3::CcnxParser::Ext'])
596 register_Ns3CcnxParserGJNoArguVisitor_methods(root_module, root_module['ns3::CcnxParser::GJNoArguVisitor'])
597 register_Ns3CcnxParserGJVisitor_methods(root_module, root_module['ns3::CcnxParser::GJVisitor'])
598 register_Ns3CcnxParserGJVoidVisitor_methods(root_module, root_module['ns3::CcnxParser::GJVoidVisitor'])
599 register_Ns3CcnxParserTag_methods(root_module, root_module['ns3::CcnxParser::Tag'])
600 register_Ns3CcnxParserUdata_methods(root_module, root_module['ns3::CcnxParser::Udata'])
601 register_Ns3CcnxParserVisitor_methods(root_module, root_module['ns3::CcnxParser::Visitor'])
602 register_Ns3CcnxParserAttr_methods(root_module, root_module['ns3::CcnxParser::Attr'])
603 register_Ns3CcnxParserBlob_methods(root_module, root_module['ns3::CcnxParser::Blob'])
604 register_Ns3CcnxParserDepthFirstVisitor_methods(root_module, root_module['ns3::CcnxParser::DepthFirstVisitor'])
605 register_Ns3CcnxParserGJDepthFirstVisitor_methods(root_module, root_module['ns3::CcnxParser::GJDepthFirstVisitor'])
606 register_Ns3CcnxParserGJNoArguDepthFirstVisitor_methods(root_module, root_module['ns3::CcnxParser::GJNoArguDepthFirstVisitor'])
607 register_Ns3CcnxParserGJVoidDepthFirstVisitor_methods(root_module, root_module['ns3::CcnxParser::GJVoidDepthFirstVisitor'])
608 register_Ns3CcnxParserInterestVisitor_methods(root_module, root_module['ns3::CcnxParser::InterestVisitor'])
609 register_Ns3CcnxParserNameComponentsVisitor_methods(root_module, root_module['ns3::CcnxParser::NameComponentsVisitor'])
610 register_Ns3CcnxParserNonNegativeIntegerVisitor_methods(root_module, root_module['ns3::CcnxParser::NonNegativeIntegerVisitor'])
611 register_Ns3CcnxParserStringVisitor_methods(root_module, root_module['ns3::CcnxParser::StringVisitor'])
612 register_Ns3CcnxParserContentObjectVisitor_methods(root_module, root_module['ns3::CcnxParser::ContentObjectVisitor'])
613 register_Ns3NameComponents_methods(root_module, root_module['ns3::Name::Components'])
Ilya Moiseenko1762af72011-07-18 16:43:10 -0700614 return
615
616def register_Ns3Address_methods(root_module, cls):
Ilya Moiseenko1762af72011-07-18 16:43:10 -0700617 cls.add_binary_comparison_operator('!=')
Alexander Afanasyeveface602011-08-17 17:50:12 -0700618 cls.add_binary_comparison_operator('<')
Ilya Moiseenko1762af72011-07-18 16:43:10 -0700619 cls.add_output_stream_operator()
620 cls.add_binary_comparison_operator('==')
621 ## address.h (module 'network'): ns3::Address::Address() [constructor]
622 cls.add_constructor([])
623 ## address.h (module 'network'): ns3::Address::Address(uint8_t type, uint8_t const * buffer, uint8_t len) [constructor]
624 cls.add_constructor([param('uint8_t', 'type'), param('uint8_t const *', 'buffer'), param('uint8_t', 'len')])
625 ## address.h (module 'network'): ns3::Address::Address(ns3::Address const & address) [copy constructor]
626 cls.add_constructor([param('ns3::Address const &', 'address')])
627 ## address.h (module 'network'): bool ns3::Address::CheckCompatible(uint8_t type, uint8_t len) const [member function]
628 cls.add_method('CheckCompatible',
629 'bool',
630 [param('uint8_t', 'type'), param('uint8_t', 'len')],
631 is_const=True)
632 ## address.h (module 'network'): uint32_t ns3::Address::CopyAllFrom(uint8_t const * buffer, uint8_t len) [member function]
633 cls.add_method('CopyAllFrom',
634 'uint32_t',
635 [param('uint8_t const *', 'buffer'), param('uint8_t', 'len')])
636 ## address.h (module 'network'): uint32_t ns3::Address::CopyAllTo(uint8_t * buffer, uint8_t len) const [member function]
637 cls.add_method('CopyAllTo',
638 'uint32_t',
639 [param('uint8_t *', 'buffer'), param('uint8_t', 'len')],
640 is_const=True)
641 ## address.h (module 'network'): uint32_t ns3::Address::CopyFrom(uint8_t const * buffer, uint8_t len) [member function]
642 cls.add_method('CopyFrom',
643 'uint32_t',
644 [param('uint8_t const *', 'buffer'), param('uint8_t', 'len')])
645 ## address.h (module 'network'): uint32_t ns3::Address::CopyTo(uint8_t * buffer) const [member function]
646 cls.add_method('CopyTo',
647 'uint32_t',
648 [param('uint8_t *', 'buffer')],
649 is_const=True)
650 ## address.h (module 'network'): void ns3::Address::Deserialize(ns3::TagBuffer buffer) [member function]
651 cls.add_method('Deserialize',
652 'void',
653 [param('ns3::TagBuffer', 'buffer')])
654 ## address.h (module 'network'): uint8_t ns3::Address::GetLength() const [member function]
655 cls.add_method('GetLength',
656 'uint8_t',
657 [],
658 is_const=True)
659 ## address.h (module 'network'): uint32_t ns3::Address::GetSerializedSize() const [member function]
660 cls.add_method('GetSerializedSize',
661 'uint32_t',
662 [],
663 is_const=True)
664 ## address.h (module 'network'): bool ns3::Address::IsInvalid() const [member function]
665 cls.add_method('IsInvalid',
666 'bool',
667 [],
668 is_const=True)
669 ## address.h (module 'network'): bool ns3::Address::IsMatchingType(uint8_t type) const [member function]
670 cls.add_method('IsMatchingType',
671 'bool',
672 [param('uint8_t', 'type')],
673 is_const=True)
674 ## address.h (module 'network'): static uint8_t ns3::Address::Register() [member function]
675 cls.add_method('Register',
676 'uint8_t',
677 [],
678 is_static=True)
679 ## address.h (module 'network'): void ns3::Address::Serialize(ns3::TagBuffer buffer) const [member function]
680 cls.add_method('Serialize',
681 'void',
682 [param('ns3::TagBuffer', 'buffer')],
683 is_const=True)
684 return
685
Ilya Moiseenko02fb7062011-08-11 17:18:00 -0700686def register_Ns3ApplicationContainer_methods(root_module, cls):
687 ## application-container.h (module 'network'): ns3::ApplicationContainer::ApplicationContainer(ns3::ApplicationContainer const & arg0) [copy constructor]
688 cls.add_constructor([param('ns3::ApplicationContainer const &', 'arg0')])
689 ## application-container.h (module 'network'): ns3::ApplicationContainer::ApplicationContainer() [constructor]
690 cls.add_constructor([])
691 ## application-container.h (module 'network'): ns3::ApplicationContainer::ApplicationContainer(ns3::Ptr<ns3::Application> application) [constructor]
692 cls.add_constructor([param('ns3::Ptr< ns3::Application >', 'application')])
693 ## application-container.h (module 'network'): ns3::ApplicationContainer::ApplicationContainer(std::string name) [constructor]
694 cls.add_constructor([param('std::string', 'name')])
695 ## application-container.h (module 'network'): void ns3::ApplicationContainer::Add(ns3::ApplicationContainer other) [member function]
696 cls.add_method('Add',
697 'void',
698 [param('ns3::ApplicationContainer', 'other')])
699 ## application-container.h (module 'network'): void ns3::ApplicationContainer::Add(ns3::Ptr<ns3::Application> application) [member function]
700 cls.add_method('Add',
701 'void',
702 [param('ns3::Ptr< ns3::Application >', 'application')])
703 ## application-container.h (module 'network'): void ns3::ApplicationContainer::Add(std::string name) [member function]
704 cls.add_method('Add',
705 'void',
706 [param('std::string', 'name')])
707 ## application-container.h (module 'network'): __gnu_cxx::__normal_iterator<const ns3::Ptr<ns3::Application>*,std::vector<ns3::Ptr<ns3::Application>, std::allocator<ns3::Ptr<ns3::Application> > > > ns3::ApplicationContainer::Begin() const [member function]
708 cls.add_method('Begin',
709 '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Application > const, std::vector< ns3::Ptr< ns3::Application > > >',
710 [],
711 is_const=True)
712 ## application-container.h (module 'network'): __gnu_cxx::__normal_iterator<const ns3::Ptr<ns3::Application>*,std::vector<ns3::Ptr<ns3::Application>, std::allocator<ns3::Ptr<ns3::Application> > > > ns3::ApplicationContainer::End() const [member function]
713 cls.add_method('End',
714 '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Application > const, std::vector< ns3::Ptr< ns3::Application > > >',
715 [],
716 is_const=True)
717 ## application-container.h (module 'network'): ns3::Ptr<ns3::Application> ns3::ApplicationContainer::Get(uint32_t i) const [member function]
718 cls.add_method('Get',
719 'ns3::Ptr< ns3::Application >',
720 [param('uint32_t', 'i')],
721 is_const=True)
722 ## application-container.h (module 'network'): uint32_t ns3::ApplicationContainer::GetN() const [member function]
723 cls.add_method('GetN',
724 'uint32_t',
725 [],
726 is_const=True)
727 ## application-container.h (module 'network'): void ns3::ApplicationContainer::Start(ns3::Time start) [member function]
728 cls.add_method('Start',
729 'void',
730 [param('ns3::Time', 'start')])
731 ## application-container.h (module 'network'): void ns3::ApplicationContainer::Stop(ns3::Time stop) [member function]
732 cls.add_method('Stop',
733 'void',
734 [param('ns3::Time', 'stop')])
735 return
736
Alexander Afanasyeveface602011-08-17 17:50:12 -0700737def register_Ns3AsciiTraceHelper_methods(root_module, cls):
738 ## trace-helper.h (module 'network'): ns3::AsciiTraceHelper::AsciiTraceHelper(ns3::AsciiTraceHelper const & arg0) [copy constructor]
739 cls.add_constructor([param('ns3::AsciiTraceHelper const &', 'arg0')])
740 ## trace-helper.h (module 'network'): ns3::AsciiTraceHelper::AsciiTraceHelper() [constructor]
Ilya Moiseenko1762af72011-07-18 16:43:10 -0700741 cls.add_constructor([])
Alexander Afanasyeveface602011-08-17 17:50:12 -0700742 ## trace-helper.h (module 'network'): ns3::Ptr<ns3::OutputStreamWrapper> ns3::AsciiTraceHelper::CreateFileStream(std::string filename, std::_Ios_Openmode filemode=std::ios_base::out) [member function]
743 cls.add_method('CreateFileStream',
744 'ns3::Ptr< ns3::OutputStreamWrapper >',
745 [param('std::string', 'filename'), param('std::_Ios_Openmode', 'filemode', default_value='std::ios_base::out')])
746 ## trace-helper.h (module 'network'): static void ns3::AsciiTraceHelper::DefaultDequeueSinkWithContext(ns3::Ptr<ns3::OutputStreamWrapper> file, std::string context, ns3::Ptr<const ns3::Packet> p) [member function]
747 cls.add_method('DefaultDequeueSinkWithContext',
Ilya Moiseenko1762af72011-07-18 16:43:10 -0700748 'void',
Alexander Afanasyeveface602011-08-17 17:50:12 -0700749 [param('ns3::Ptr< ns3::OutputStreamWrapper >', 'file'), param('std::string', 'context'), param('ns3::Ptr< ns3::Packet const >', 'p')],
750 is_static=True)
751 ## trace-helper.h (module 'network'): static void ns3::AsciiTraceHelper::DefaultDequeueSinkWithoutContext(ns3::Ptr<ns3::OutputStreamWrapper> file, ns3::Ptr<const ns3::Packet> p) [member function]
752 cls.add_method('DefaultDequeueSinkWithoutContext',
753 'void',
754 [param('ns3::Ptr< ns3::OutputStreamWrapper >', 'file'), param('ns3::Ptr< ns3::Packet const >', 'p')],
755 is_static=True)
756 ## trace-helper.h (module 'network'): static void ns3::AsciiTraceHelper::DefaultDropSinkWithContext(ns3::Ptr<ns3::OutputStreamWrapper> file, std::string context, ns3::Ptr<const ns3::Packet> p) [member function]
757 cls.add_method('DefaultDropSinkWithContext',
758 'void',
759 [param('ns3::Ptr< ns3::OutputStreamWrapper >', 'file'), param('std::string', 'context'), param('ns3::Ptr< ns3::Packet const >', 'p')],
760 is_static=True)
761 ## trace-helper.h (module 'network'): static void ns3::AsciiTraceHelper::DefaultDropSinkWithoutContext(ns3::Ptr<ns3::OutputStreamWrapper> file, ns3::Ptr<const ns3::Packet> p) [member function]
762 cls.add_method('DefaultDropSinkWithoutContext',
763 'void',
764 [param('ns3::Ptr< ns3::OutputStreamWrapper >', 'file'), param('ns3::Ptr< ns3::Packet const >', 'p')],
765 is_static=True)
766 ## trace-helper.h (module 'network'): static void ns3::AsciiTraceHelper::DefaultEnqueueSinkWithContext(ns3::Ptr<ns3::OutputStreamWrapper> file, std::string context, ns3::Ptr<const ns3::Packet> p) [member function]
767 cls.add_method('DefaultEnqueueSinkWithContext',
768 'void',
769 [param('ns3::Ptr< ns3::OutputStreamWrapper >', 'file'), param('std::string', 'context'), param('ns3::Ptr< ns3::Packet const >', 'p')],
770 is_static=True)
771 ## trace-helper.h (module 'network'): static void ns3::AsciiTraceHelper::DefaultEnqueueSinkWithoutContext(ns3::Ptr<ns3::OutputStreamWrapper> file, ns3::Ptr<const ns3::Packet> p) [member function]
772 cls.add_method('DefaultEnqueueSinkWithoutContext',
773 'void',
774 [param('ns3::Ptr< ns3::OutputStreamWrapper >', 'file'), param('ns3::Ptr< ns3::Packet const >', 'p')],
775 is_static=True)
776 ## trace-helper.h (module 'network'): static void ns3::AsciiTraceHelper::DefaultReceiveSinkWithContext(ns3::Ptr<ns3::OutputStreamWrapper> file, std::string context, ns3::Ptr<const ns3::Packet> p) [member function]
777 cls.add_method('DefaultReceiveSinkWithContext',
778 'void',
779 [param('ns3::Ptr< ns3::OutputStreamWrapper >', 'file'), param('std::string', 'context'), param('ns3::Ptr< ns3::Packet const >', 'p')],
780 is_static=True)
781 ## trace-helper.h (module 'network'): static void ns3::AsciiTraceHelper::DefaultReceiveSinkWithoutContext(ns3::Ptr<ns3::OutputStreamWrapper> file, ns3::Ptr<const ns3::Packet> p) [member function]
782 cls.add_method('DefaultReceiveSinkWithoutContext',
783 'void',
784 [param('ns3::Ptr< ns3::OutputStreamWrapper >', 'file'), param('ns3::Ptr< ns3::Packet const >', 'p')],
785 is_static=True)
786 ## trace-helper.h (module 'network'): std::string ns3::AsciiTraceHelper::GetFilenameFromDevice(std::string prefix, ns3::Ptr<ns3::NetDevice> device, bool useObjectNames=true) [member function]
787 cls.add_method('GetFilenameFromDevice',
Ilya Moiseenko1762af72011-07-18 16:43:10 -0700788 'std::string',
Alexander Afanasyeveface602011-08-17 17:50:12 -0700789 [param('std::string', 'prefix'), param('ns3::Ptr< ns3::NetDevice >', 'device'), param('bool', 'useObjectNames', default_value='true')])
790 ## trace-helper.h (module 'network'): std::string ns3::AsciiTraceHelper::GetFilenameFromInterfacePair(std::string prefix, ns3::Ptr<ns3::Object> object, uint32_t interface, bool useObjectNames=true) [member function]
791 cls.add_method('GetFilenameFromInterfacePair',
792 'std::string',
793 [param('std::string', 'prefix'), param('ns3::Ptr< ns3::Object >', 'object'), param('uint32_t', 'interface'), param('bool', 'useObjectNames', default_value='true')])
794 return
795
796def register_Ns3AsciiTraceHelperForCcnx_methods(root_module, cls):
797 ## ccnx-trace-helper.h (module 'NDNabstraction'): ns3::AsciiTraceHelperForCcnx::AsciiTraceHelperForCcnx(ns3::AsciiTraceHelperForCcnx const & arg0) [copy constructor]
798 cls.add_constructor([param('ns3::AsciiTraceHelperForCcnx const &', 'arg0')])
799 ## ccnx-trace-helper.h (module 'NDNabstraction'): ns3::AsciiTraceHelperForCcnx::AsciiTraceHelperForCcnx() [constructor]
800 cls.add_constructor([])
801 ## ccnx-trace-helper.h (module 'NDNabstraction'): void ns3::AsciiTraceHelperForCcnx::EnableAsciiCcnx(std::string prefix, ns3::Ptr<ns3::Ccnx> ccnx, uint32_t interface, bool explicitFilename=false) [member function]
802 cls.add_method('EnableAsciiCcnx',
803 'void',
804 [param('std::string', 'prefix'), param('ns3::Ptr< ns3::Ccnx >', 'ccnx'), param('uint32_t', 'interface'), param('bool', 'explicitFilename', default_value='false')])
805 ## ccnx-trace-helper.h (module 'NDNabstraction'): void ns3::AsciiTraceHelperForCcnx::EnableAsciiCcnx(ns3::Ptr<ns3::OutputStreamWrapper> stream, ns3::Ptr<ns3::Ccnx> ccnx, uint32_t interface) [member function]
806 cls.add_method('EnableAsciiCcnx',
807 'void',
808 [param('ns3::Ptr< ns3::OutputStreamWrapper >', 'stream'), param('ns3::Ptr< ns3::Ccnx >', 'ccnx'), param('uint32_t', 'interface')])
809 ## ccnx-trace-helper.h (module 'NDNabstraction'): void ns3::AsciiTraceHelperForCcnx::EnableAsciiCcnx(std::string prefix, std::string ccnxName, uint32_t interface, bool explicitFilename=false) [member function]
810 cls.add_method('EnableAsciiCcnx',
811 'void',
812 [param('std::string', 'prefix'), param('std::string', 'ccnxName'), param('uint32_t', 'interface'), param('bool', 'explicitFilename', default_value='false')])
813 ## ccnx-trace-helper.h (module 'NDNabstraction'): void ns3::AsciiTraceHelperForCcnx::EnableAsciiCcnx(ns3::Ptr<ns3::OutputStreamWrapper> stream, std::string ccnxName, uint32_t interface) [member function]
814 cls.add_method('EnableAsciiCcnx',
815 'void',
816 [param('ns3::Ptr< ns3::OutputStreamWrapper >', 'stream'), param('std::string', 'ccnxName'), param('uint32_t', 'interface')])
817 ## ccnx-trace-helper.h (module 'NDNabstraction'): void ns3::AsciiTraceHelperForCcnx::EnableAsciiCcnx(std::string prefix, ns3::CcnxFaceContainer c) [member function]
818 cls.add_method('EnableAsciiCcnx',
819 'void',
820 [param('std::string', 'prefix'), param('ns3::CcnxFaceContainer', 'c')])
821 ## ccnx-trace-helper.h (module 'NDNabstraction'): void ns3::AsciiTraceHelperForCcnx::EnableAsciiCcnx(ns3::Ptr<ns3::OutputStreamWrapper> stream, ns3::CcnxFaceContainer c) [member function]
822 cls.add_method('EnableAsciiCcnx',
823 'void',
824 [param('ns3::Ptr< ns3::OutputStreamWrapper >', 'stream'), param('ns3::CcnxFaceContainer', 'c')])
825 ## ccnx-trace-helper.h (module 'NDNabstraction'): void ns3::AsciiTraceHelperForCcnx::EnableAsciiCcnx(std::string prefix, ns3::NodeContainer n) [member function]
826 cls.add_method('EnableAsciiCcnx',
827 'void',
828 [param('std::string', 'prefix'), param('ns3::NodeContainer', 'n')])
829 ## ccnx-trace-helper.h (module 'NDNabstraction'): void ns3::AsciiTraceHelperForCcnx::EnableAsciiCcnx(ns3::Ptr<ns3::OutputStreamWrapper> stream, ns3::NodeContainer n) [member function]
830 cls.add_method('EnableAsciiCcnx',
831 'void',
832 [param('ns3::Ptr< ns3::OutputStreamWrapper >', 'stream'), param('ns3::NodeContainer', 'n')])
833 ## ccnx-trace-helper.h (module 'NDNabstraction'): void ns3::AsciiTraceHelperForCcnx::EnableAsciiCcnx(std::string prefix, uint32_t nodeid, uint32_t deviceid, bool explicitFilename) [member function]
834 cls.add_method('EnableAsciiCcnx',
835 'void',
836 [param('std::string', 'prefix'), param('uint32_t', 'nodeid'), param('uint32_t', 'deviceid'), param('bool', 'explicitFilename')])
837 ## ccnx-trace-helper.h (module 'NDNabstraction'): void ns3::AsciiTraceHelperForCcnx::EnableAsciiCcnx(ns3::Ptr<ns3::OutputStreamWrapper> stream, uint32_t nodeid, uint32_t interface, bool explicitFilename) [member function]
838 cls.add_method('EnableAsciiCcnx',
839 'void',
840 [param('ns3::Ptr< ns3::OutputStreamWrapper >', 'stream'), param('uint32_t', 'nodeid'), param('uint32_t', 'interface'), param('bool', 'explicitFilename')])
841 ## ccnx-trace-helper.h (module 'NDNabstraction'): void ns3::AsciiTraceHelperForCcnx::EnableAsciiCcnxAll(std::string prefix) [member function]
842 cls.add_method('EnableAsciiCcnxAll',
843 'void',
844 [param('std::string', 'prefix')])
845 ## ccnx-trace-helper.h (module 'NDNabstraction'): void ns3::AsciiTraceHelperForCcnx::EnableAsciiCcnxAll(ns3::Ptr<ns3::OutputStreamWrapper> stream) [member function]
846 cls.add_method('EnableAsciiCcnxAll',
847 'void',
848 [param('ns3::Ptr< ns3::OutputStreamWrapper >', 'stream')])
849 ## ccnx-trace-helper.h (module 'NDNabstraction'): void ns3::AsciiTraceHelperForCcnx::EnableAsciiCcnxInternal(ns3::Ptr<ns3::OutputStreamWrapper> stream, std::string prefix, ns3::Ptr<ns3::Ccnx> ccnx, uint32_t interface, bool explicitFilename) [member function]
850 cls.add_method('EnableAsciiCcnxInternal',
851 'void',
852 [param('ns3::Ptr< ns3::OutputStreamWrapper >', 'stream'), param('std::string', 'prefix'), param('ns3::Ptr< ns3::Ccnx >', 'ccnx'), param('uint32_t', 'interface'), param('bool', 'explicitFilename')],
853 is_pure_virtual=True, is_virtual=True)
854 return
855
856def register_Ns3AsciiTraceHelperForDevice_methods(root_module, cls):
857 ## trace-helper.h (module 'network'): ns3::AsciiTraceHelperForDevice::AsciiTraceHelperForDevice(ns3::AsciiTraceHelperForDevice const & arg0) [copy constructor]
858 cls.add_constructor([param('ns3::AsciiTraceHelperForDevice const &', 'arg0')])
859 ## trace-helper.h (module 'network'): ns3::AsciiTraceHelperForDevice::AsciiTraceHelperForDevice() [constructor]
860 cls.add_constructor([])
861 ## trace-helper.h (module 'network'): void ns3::AsciiTraceHelperForDevice::EnableAscii(std::string prefix, ns3::Ptr<ns3::NetDevice> nd, bool explicitFilename=false) [member function]
862 cls.add_method('EnableAscii',
863 'void',
864 [param('std::string', 'prefix'), param('ns3::Ptr< ns3::NetDevice >', 'nd'), param('bool', 'explicitFilename', default_value='false')])
865 ## trace-helper.h (module 'network'): void ns3::AsciiTraceHelperForDevice::EnableAscii(ns3::Ptr<ns3::OutputStreamWrapper> stream, ns3::Ptr<ns3::NetDevice> nd) [member function]
866 cls.add_method('EnableAscii',
867 'void',
868 [param('ns3::Ptr< ns3::OutputStreamWrapper >', 'stream'), param('ns3::Ptr< ns3::NetDevice >', 'nd')])
869 ## trace-helper.h (module 'network'): void ns3::AsciiTraceHelperForDevice::EnableAscii(std::string prefix, std::string ndName, bool explicitFilename=false) [member function]
870 cls.add_method('EnableAscii',
871 'void',
872 [param('std::string', 'prefix'), param('std::string', 'ndName'), param('bool', 'explicitFilename', default_value='false')])
873 ## trace-helper.h (module 'network'): void ns3::AsciiTraceHelperForDevice::EnableAscii(ns3::Ptr<ns3::OutputStreamWrapper> stream, std::string ndName) [member function]
874 cls.add_method('EnableAscii',
875 'void',
876 [param('ns3::Ptr< ns3::OutputStreamWrapper >', 'stream'), param('std::string', 'ndName')])
877 ## trace-helper.h (module 'network'): void ns3::AsciiTraceHelperForDevice::EnableAscii(std::string prefix, ns3::NetDeviceContainer d) [member function]
878 cls.add_method('EnableAscii',
879 'void',
880 [param('std::string', 'prefix'), param('ns3::NetDeviceContainer', 'd')])
881 ## trace-helper.h (module 'network'): void ns3::AsciiTraceHelperForDevice::EnableAscii(ns3::Ptr<ns3::OutputStreamWrapper> stream, ns3::NetDeviceContainer d) [member function]
882 cls.add_method('EnableAscii',
883 'void',
884 [param('ns3::Ptr< ns3::OutputStreamWrapper >', 'stream'), param('ns3::NetDeviceContainer', 'd')])
885 ## trace-helper.h (module 'network'): void ns3::AsciiTraceHelperForDevice::EnableAscii(std::string prefix, ns3::NodeContainer n) [member function]
886 cls.add_method('EnableAscii',
887 'void',
888 [param('std::string', 'prefix'), param('ns3::NodeContainer', 'n')])
889 ## trace-helper.h (module 'network'): void ns3::AsciiTraceHelperForDevice::EnableAscii(ns3::Ptr<ns3::OutputStreamWrapper> stream, ns3::NodeContainer n) [member function]
890 cls.add_method('EnableAscii',
891 'void',
892 [param('ns3::Ptr< ns3::OutputStreamWrapper >', 'stream'), param('ns3::NodeContainer', 'n')])
893 ## trace-helper.h (module 'network'): void ns3::AsciiTraceHelperForDevice::EnableAscii(std::string prefix, uint32_t nodeid, uint32_t deviceid, bool explicitFilename) [member function]
894 cls.add_method('EnableAscii',
895 'void',
896 [param('std::string', 'prefix'), param('uint32_t', 'nodeid'), param('uint32_t', 'deviceid'), param('bool', 'explicitFilename')])
897 ## trace-helper.h (module 'network'): void ns3::AsciiTraceHelperForDevice::EnableAscii(ns3::Ptr<ns3::OutputStreamWrapper> stream, uint32_t nodeid, uint32_t deviceid) [member function]
898 cls.add_method('EnableAscii',
899 'void',
900 [param('ns3::Ptr< ns3::OutputStreamWrapper >', 'stream'), param('uint32_t', 'nodeid'), param('uint32_t', 'deviceid')])
901 ## trace-helper.h (module 'network'): void ns3::AsciiTraceHelperForDevice::EnableAsciiAll(std::string prefix) [member function]
902 cls.add_method('EnableAsciiAll',
903 'void',
904 [param('std::string', 'prefix')])
905 ## trace-helper.h (module 'network'): void ns3::AsciiTraceHelperForDevice::EnableAsciiAll(ns3::Ptr<ns3::OutputStreamWrapper> stream) [member function]
906 cls.add_method('EnableAsciiAll',
907 'void',
908 [param('ns3::Ptr< ns3::OutputStreamWrapper >', 'stream')])
909 ## trace-helper.h (module 'network'): void ns3::AsciiTraceHelperForDevice::EnableAsciiInternal(ns3::Ptr<ns3::OutputStreamWrapper> stream, std::string prefix, ns3::Ptr<ns3::NetDevice> nd, bool explicitFilename) [member function]
910 cls.add_method('EnableAsciiInternal',
911 'void',
912 [param('ns3::Ptr< ns3::OutputStreamWrapper >', 'stream'), param('std::string', 'prefix'), param('ns3::Ptr< ns3::NetDevice >', 'nd'), param('bool', 'explicitFilename')],
913 is_pure_virtual=True, is_virtual=True)
914 return
915
916def register_Ns3AttributeConstructionList_methods(root_module, cls):
917 ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::AttributeConstructionList(ns3::AttributeConstructionList const & arg0) [copy constructor]
918 cls.add_constructor([param('ns3::AttributeConstructionList const &', 'arg0')])
919 ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::AttributeConstructionList() [constructor]
920 cls.add_constructor([])
921 ## 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]
922 cls.add_method('Add',
923 'void',
924 [param('std::string', 'name'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker'), param('ns3::Ptr< ns3::AttributeValue >', 'value')])
925 ## attribute-construction-list.h (module 'core'): std::_List_const_iterator<ns3::AttributeConstructionList::Item> ns3::AttributeConstructionList::Begin() const [member function]
926 cls.add_method('Begin',
927 'std::_List_const_iterator< ns3::AttributeConstructionList::Item >',
Ilya Moiseenko1762af72011-07-18 16:43:10 -0700928 [],
929 is_const=True)
Alexander Afanasyeveface602011-08-17 17:50:12 -0700930 ## attribute-construction-list.h (module 'core'): std::_List_const_iterator<ns3::AttributeConstructionList::Item> ns3::AttributeConstructionList::End() const [member function]
931 cls.add_method('End',
932 'std::_List_const_iterator< ns3::AttributeConstructionList::Item >',
933 [],
934 is_const=True)
935 ## attribute-construction-list.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::AttributeConstructionList::Find(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
936 cls.add_method('Find',
937 'ns3::Ptr< ns3::AttributeValue >',
938 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
939 is_const=True)
940 return
941
942def register_Ns3AttributeConstructionListItem_methods(root_module, cls):
943 ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item::Item() [constructor]
944 cls.add_constructor([])
945 ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item::Item(ns3::AttributeConstructionList::Item const & arg0) [copy constructor]
946 cls.add_constructor([param('ns3::AttributeConstructionList::Item const &', 'arg0')])
947 ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item::checker [variable]
948 cls.add_instance_attribute('checker', 'ns3::Ptr< ns3::AttributeChecker const >', is_const=False)
949 ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item::name [variable]
950 cls.add_instance_attribute('name', 'std::string', is_const=False)
951 ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item::value [variable]
952 cls.add_instance_attribute('value', 'ns3::Ptr< ns3::AttributeValue >', is_const=False)
Ilya Moiseenko1762af72011-07-18 16:43:10 -0700953 return
954
955def register_Ns3Buffer_methods(root_module, cls):
956 ## buffer.h (module 'network'): ns3::Buffer::Buffer() [constructor]
957 cls.add_constructor([])
958 ## buffer.h (module 'network'): ns3::Buffer::Buffer(uint32_t dataSize) [constructor]
959 cls.add_constructor([param('uint32_t', 'dataSize')])
960 ## buffer.h (module 'network'): ns3::Buffer::Buffer(uint32_t dataSize, bool initialize) [constructor]
961 cls.add_constructor([param('uint32_t', 'dataSize'), param('bool', 'initialize')])
962 ## buffer.h (module 'network'): ns3::Buffer::Buffer(ns3::Buffer const & o) [copy constructor]
963 cls.add_constructor([param('ns3::Buffer const &', 'o')])
964 ## buffer.h (module 'network'): bool ns3::Buffer::AddAtEnd(uint32_t end) [member function]
965 cls.add_method('AddAtEnd',
966 'bool',
967 [param('uint32_t', 'end')])
968 ## buffer.h (module 'network'): void ns3::Buffer::AddAtEnd(ns3::Buffer const & o) [member function]
969 cls.add_method('AddAtEnd',
970 'void',
971 [param('ns3::Buffer const &', 'o')])
972 ## buffer.h (module 'network'): bool ns3::Buffer::AddAtStart(uint32_t start) [member function]
973 cls.add_method('AddAtStart',
974 'bool',
975 [param('uint32_t', 'start')])
976 ## buffer.h (module 'network'): ns3::Buffer::Iterator ns3::Buffer::Begin() const [member function]
977 cls.add_method('Begin',
978 'ns3::Buffer::Iterator',
979 [],
980 is_const=True)
981 ## buffer.h (module 'network'): void ns3::Buffer::CopyData(std::ostream * os, uint32_t size) const [member function]
982 cls.add_method('CopyData',
983 'void',
984 [param('std::ostream *', 'os'), param('uint32_t', 'size')],
985 is_const=True)
986 ## buffer.h (module 'network'): uint32_t ns3::Buffer::CopyData(uint8_t * buffer, uint32_t size) const [member function]
987 cls.add_method('CopyData',
988 'uint32_t',
989 [param('uint8_t *', 'buffer'), param('uint32_t', 'size')],
990 is_const=True)
991 ## buffer.h (module 'network'): ns3::Buffer ns3::Buffer::CreateFragment(uint32_t start, uint32_t length) const [member function]
992 cls.add_method('CreateFragment',
993 'ns3::Buffer',
994 [param('uint32_t', 'start'), param('uint32_t', 'length')],
995 is_const=True)
996 ## buffer.h (module 'network'): ns3::Buffer ns3::Buffer::CreateFullCopy() const [member function]
997 cls.add_method('CreateFullCopy',
998 'ns3::Buffer',
999 [],
1000 is_const=True)
1001 ## buffer.h (module 'network'): uint32_t ns3::Buffer::Deserialize(uint8_t const * buffer, uint32_t size) [member function]
1002 cls.add_method('Deserialize',
1003 'uint32_t',
1004 [param('uint8_t const *', 'buffer'), param('uint32_t', 'size')])
1005 ## buffer.h (module 'network'): ns3::Buffer::Iterator ns3::Buffer::End() const [member function]
1006 cls.add_method('End',
1007 'ns3::Buffer::Iterator',
1008 [],
1009 is_const=True)
1010 ## buffer.h (module 'network'): int32_t ns3::Buffer::GetCurrentEndOffset() const [member function]
1011 cls.add_method('GetCurrentEndOffset',
1012 'int32_t',
1013 [],
1014 is_const=True)
1015 ## buffer.h (module 'network'): int32_t ns3::Buffer::GetCurrentStartOffset() const [member function]
1016 cls.add_method('GetCurrentStartOffset',
1017 'int32_t',
1018 [],
1019 is_const=True)
1020 ## buffer.h (module 'network'): uint32_t ns3::Buffer::GetSerializedSize() const [member function]
1021 cls.add_method('GetSerializedSize',
1022 'uint32_t',
1023 [],
1024 is_const=True)
1025 ## buffer.h (module 'network'): uint32_t ns3::Buffer::GetSize() const [member function]
1026 cls.add_method('GetSize',
1027 'uint32_t',
1028 [],
1029 is_const=True)
1030 ## buffer.h (module 'network'): uint8_t const * ns3::Buffer::PeekData() const [member function]
1031 cls.add_method('PeekData',
1032 'uint8_t const *',
1033 [],
1034 is_const=True)
1035 ## buffer.h (module 'network'): void ns3::Buffer::RemoveAtEnd(uint32_t end) [member function]
1036 cls.add_method('RemoveAtEnd',
1037 'void',
1038 [param('uint32_t', 'end')])
1039 ## buffer.h (module 'network'): void ns3::Buffer::RemoveAtStart(uint32_t start) [member function]
1040 cls.add_method('RemoveAtStart',
1041 'void',
1042 [param('uint32_t', 'start')])
1043 ## buffer.h (module 'network'): uint32_t ns3::Buffer::Serialize(uint8_t * buffer, uint32_t maxSize) const [member function]
1044 cls.add_method('Serialize',
1045 'uint32_t',
1046 [param('uint8_t *', 'buffer'), param('uint32_t', 'maxSize')],
1047 is_const=True)
1048 return
1049
1050def register_Ns3BufferIterator_methods(root_module, cls):
1051 ## buffer.h (module 'network'): ns3::Buffer::Iterator::Iterator(ns3::Buffer::Iterator const & arg0) [copy constructor]
1052 cls.add_constructor([param('ns3::Buffer::Iterator const &', 'arg0')])
1053 ## buffer.h (module 'network'): ns3::Buffer::Iterator::Iterator() [constructor]
1054 cls.add_constructor([])
1055 ## buffer.h (module 'network'): uint16_t ns3::Buffer::Iterator::CalculateIpChecksum(uint16_t size) [member function]
1056 cls.add_method('CalculateIpChecksum',
1057 'uint16_t',
1058 [param('uint16_t', 'size')])
1059 ## buffer.h (module 'network'): uint16_t ns3::Buffer::Iterator::CalculateIpChecksum(uint16_t size, uint32_t initialChecksum) [member function]
1060 cls.add_method('CalculateIpChecksum',
1061 'uint16_t',
1062 [param('uint16_t', 'size'), param('uint32_t', 'initialChecksum')])
1063 ## buffer.h (module 'network'): uint32_t ns3::Buffer::Iterator::GetDistanceFrom(ns3::Buffer::Iterator const & o) const [member function]
1064 cls.add_method('GetDistanceFrom',
1065 'uint32_t',
1066 [param('ns3::Buffer::Iterator const &', 'o')],
1067 is_const=True)
1068 ## buffer.h (module 'network'): uint32_t ns3::Buffer::Iterator::GetSize() const [member function]
1069 cls.add_method('GetSize',
1070 'uint32_t',
1071 [],
1072 is_const=True)
1073 ## buffer.h (module 'network'): bool ns3::Buffer::Iterator::IsEnd() const [member function]
1074 cls.add_method('IsEnd',
1075 'bool',
1076 [],
1077 is_const=True)
1078 ## buffer.h (module 'network'): bool ns3::Buffer::Iterator::IsStart() const [member function]
1079 cls.add_method('IsStart',
1080 'bool',
1081 [],
1082 is_const=True)
1083 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Next() [member function]
1084 cls.add_method('Next',
1085 'void',
1086 [])
1087 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Next(uint32_t delta) [member function]
1088 cls.add_method('Next',
1089 'void',
1090 [param('uint32_t', 'delta')])
Alexander Afanasyeveface602011-08-17 17:50:12 -07001091 ## buffer.h (module 'network'): uint8_t ns3::Buffer::Iterator::PeekU8() [member function]
1092 cls.add_method('PeekU8',
1093 'uint8_t',
1094 [])
Ilya Moiseenko1762af72011-07-18 16:43:10 -07001095 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Prev() [member function]
1096 cls.add_method('Prev',
1097 'void',
1098 [])
1099 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Prev(uint32_t delta) [member function]
1100 cls.add_method('Prev',
1101 'void',
1102 [param('uint32_t', 'delta')])
1103 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Read(uint8_t * buffer, uint32_t size) [member function]
1104 cls.add_method('Read',
1105 'void',
1106 [param('uint8_t *', 'buffer'), param('uint32_t', 'size')])
Alexander Afanasyeveface602011-08-17 17:50:12 -07001107 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Read(ns3::Buffer::Iterator start, uint32_t size) [member function]
1108 cls.add_method('Read',
1109 'void',
1110 [param('ns3::Buffer::Iterator', 'start'), param('uint32_t', 'size')])
Ilya Moiseenko1762af72011-07-18 16:43:10 -07001111 ## buffer.h (module 'network'): uint16_t ns3::Buffer::Iterator::ReadLsbtohU16() [member function]
1112 cls.add_method('ReadLsbtohU16',
1113 'uint16_t',
1114 [])
1115 ## buffer.h (module 'network'): uint32_t ns3::Buffer::Iterator::ReadLsbtohU32() [member function]
1116 cls.add_method('ReadLsbtohU32',
1117 'uint32_t',
1118 [])
1119 ## buffer.h (module 'network'): uint64_t ns3::Buffer::Iterator::ReadLsbtohU64() [member function]
1120 cls.add_method('ReadLsbtohU64',
1121 'uint64_t',
1122 [])
1123 ## buffer.h (module 'network'): uint16_t ns3::Buffer::Iterator::ReadNtohU16() [member function]
1124 cls.add_method('ReadNtohU16',
1125 'uint16_t',
1126 [])
1127 ## buffer.h (module 'network'): uint32_t ns3::Buffer::Iterator::ReadNtohU32() [member function]
1128 cls.add_method('ReadNtohU32',
1129 'uint32_t',
1130 [])
1131 ## buffer.h (module 'network'): uint64_t ns3::Buffer::Iterator::ReadNtohU64() [member function]
1132 cls.add_method('ReadNtohU64',
1133 'uint64_t',
1134 [])
1135 ## buffer.h (module 'network'): uint16_t ns3::Buffer::Iterator::ReadU16() [member function]
1136 cls.add_method('ReadU16',
1137 'uint16_t',
1138 [])
1139 ## buffer.h (module 'network'): uint32_t ns3::Buffer::Iterator::ReadU32() [member function]
1140 cls.add_method('ReadU32',
1141 'uint32_t',
1142 [])
1143 ## buffer.h (module 'network'): uint64_t ns3::Buffer::Iterator::ReadU64() [member function]
1144 cls.add_method('ReadU64',
1145 'uint64_t',
1146 [])
1147 ## buffer.h (module 'network'): uint8_t ns3::Buffer::Iterator::ReadU8() [member function]
1148 cls.add_method('ReadU8',
1149 'uint8_t',
1150 [])
1151 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Write(uint8_t const * buffer, uint32_t size) [member function]
1152 cls.add_method('Write',
1153 'void',
1154 [param('uint8_t const *', 'buffer'), param('uint32_t', 'size')])
1155 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Write(ns3::Buffer::Iterator start, ns3::Buffer::Iterator end) [member function]
1156 cls.add_method('Write',
1157 'void',
1158 [param('ns3::Buffer::Iterator', 'start'), param('ns3::Buffer::Iterator', 'end')])
1159 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteHtolsbU16(uint16_t data) [member function]
1160 cls.add_method('WriteHtolsbU16',
1161 'void',
1162 [param('uint16_t', 'data')])
1163 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteHtolsbU32(uint32_t data) [member function]
1164 cls.add_method('WriteHtolsbU32',
1165 'void',
1166 [param('uint32_t', 'data')])
1167 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteHtolsbU64(uint64_t data) [member function]
1168 cls.add_method('WriteHtolsbU64',
1169 'void',
1170 [param('uint64_t', 'data')])
1171 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteHtonU16(uint16_t data) [member function]
1172 cls.add_method('WriteHtonU16',
1173 'void',
1174 [param('uint16_t', 'data')])
1175 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteHtonU32(uint32_t data) [member function]
1176 cls.add_method('WriteHtonU32',
1177 'void',
1178 [param('uint32_t', 'data')])
1179 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteHtonU64(uint64_t data) [member function]
1180 cls.add_method('WriteHtonU64',
1181 'void',
1182 [param('uint64_t', 'data')])
1183 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteU16(uint16_t data) [member function]
1184 cls.add_method('WriteU16',
1185 'void',
1186 [param('uint16_t', 'data')])
1187 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteU32(uint32_t data) [member function]
1188 cls.add_method('WriteU32',
1189 'void',
1190 [param('uint32_t', 'data')])
1191 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteU64(uint64_t data) [member function]
1192 cls.add_method('WriteU64',
1193 'void',
1194 [param('uint64_t', 'data')])
1195 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteU8(uint8_t data) [member function]
1196 cls.add_method('WriteU8',
1197 'void',
1198 [param('uint8_t', 'data')])
1199 ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteU8(uint8_t data, uint32_t len) [member function]
1200 cls.add_method('WriteU8',
1201 'void',
1202 [param('uint8_t', 'data'), param('uint32_t', 'len')])
1203 return
1204
Alexander Afanasyeveface602011-08-17 17:50:12 -07001205def register_Ns3ByteTagIterator_methods(root_module, cls):
1206 ## packet.h (module 'network'): ns3::ByteTagIterator::ByteTagIterator(ns3::ByteTagIterator const & arg0) [copy constructor]
1207 cls.add_constructor([param('ns3::ByteTagIterator const &', 'arg0')])
1208 ## packet.h (module 'network'): bool ns3::ByteTagIterator::HasNext() const [member function]
1209 cls.add_method('HasNext',
1210 'bool',
1211 [],
1212 is_const=True)
1213 ## packet.h (module 'network'): ns3::ByteTagIterator::Item ns3::ByteTagIterator::Next() [member function]
1214 cls.add_method('Next',
1215 'ns3::ByteTagIterator::Item',
1216 [])
1217 return
1218
1219def register_Ns3ByteTagIteratorItem_methods(root_module, cls):
1220 ## packet.h (module 'network'): ns3::ByteTagIterator::Item::Item(ns3::ByteTagIterator::Item const & arg0) [copy constructor]
1221 cls.add_constructor([param('ns3::ByteTagIterator::Item const &', 'arg0')])
1222 ## packet.h (module 'network'): uint32_t ns3::ByteTagIterator::Item::GetEnd() const [member function]
1223 cls.add_method('GetEnd',
1224 'uint32_t',
1225 [],
1226 is_const=True)
1227 ## packet.h (module 'network'): uint32_t ns3::ByteTagIterator::Item::GetStart() const [member function]
1228 cls.add_method('GetStart',
1229 'uint32_t',
1230 [],
1231 is_const=True)
1232 ## packet.h (module 'network'): void ns3::ByteTagIterator::Item::GetTag(ns3::Tag & tag) const [member function]
1233 cls.add_method('GetTag',
1234 'void',
1235 [param('ns3::Tag &', 'tag')],
1236 is_const=True)
1237 ## packet.h (module 'network'): ns3::TypeId ns3::ByteTagIterator::Item::GetTypeId() const [member function]
1238 cls.add_method('GetTypeId',
1239 'ns3::TypeId',
1240 [],
1241 is_const=True)
1242 return
1243
1244def register_Ns3ByteTagList_methods(root_module, cls):
1245 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::ByteTagList() [constructor]
1246 cls.add_constructor([])
1247 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::ByteTagList(ns3::ByteTagList const & o) [copy constructor]
1248 cls.add_constructor([param('ns3::ByteTagList const &', 'o')])
1249 ## 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]
1250 cls.add_method('Add',
1251 'ns3::TagBuffer',
1252 [param('ns3::TypeId', 'tid'), param('uint32_t', 'bufferSize'), param('int32_t', 'start'), param('int32_t', 'end')])
1253 ## byte-tag-list.h (module 'network'): void ns3::ByteTagList::Add(ns3::ByteTagList const & o) [member function]
1254 cls.add_method('Add',
1255 'void',
1256 [param('ns3::ByteTagList const &', 'o')])
1257 ## byte-tag-list.h (module 'network'): void ns3::ByteTagList::AddAtEnd(int32_t adjustment, int32_t appendOffset) [member function]
1258 cls.add_method('AddAtEnd',
1259 'void',
1260 [param('int32_t', 'adjustment'), param('int32_t', 'appendOffset')])
1261 ## byte-tag-list.h (module 'network'): void ns3::ByteTagList::AddAtStart(int32_t adjustment, int32_t prependOffset) [member function]
1262 cls.add_method('AddAtStart',
1263 'void',
1264 [param('int32_t', 'adjustment'), param('int32_t', 'prependOffset')])
1265 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator ns3::ByteTagList::Begin(int32_t offsetStart, int32_t offsetEnd) const [member function]
1266 cls.add_method('Begin',
1267 'ns3::ByteTagList::Iterator',
1268 [param('int32_t', 'offsetStart'), param('int32_t', 'offsetEnd')],
1269 is_const=True)
1270 ## byte-tag-list.h (module 'network'): void ns3::ByteTagList::RemoveAll() [member function]
1271 cls.add_method('RemoveAll',
1272 'void',
1273 [])
1274 return
1275
1276def register_Ns3ByteTagListIterator_methods(root_module, cls):
1277 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Iterator(ns3::ByteTagList::Iterator const & arg0) [copy constructor]
1278 cls.add_constructor([param('ns3::ByteTagList::Iterator const &', 'arg0')])
1279 ## byte-tag-list.h (module 'network'): uint32_t ns3::ByteTagList::Iterator::GetOffsetStart() const [member function]
1280 cls.add_method('GetOffsetStart',
1281 'uint32_t',
1282 [],
1283 is_const=True)
1284 ## byte-tag-list.h (module 'network'): bool ns3::ByteTagList::Iterator::HasNext() const [member function]
1285 cls.add_method('HasNext',
1286 'bool',
1287 [],
1288 is_const=True)
1289 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item ns3::ByteTagList::Iterator::Next() [member function]
1290 cls.add_method('Next',
1291 'ns3::ByteTagList::Iterator::Item',
1292 [])
1293 return
1294
1295def register_Ns3ByteTagListIteratorItem_methods(root_module, cls):
1296 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::Item(ns3::ByteTagList::Iterator::Item const & arg0) [copy constructor]
1297 cls.add_constructor([param('ns3::ByteTagList::Iterator::Item const &', 'arg0')])
1298 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::Item(ns3::TagBuffer buf) [constructor]
1299 cls.add_constructor([param('ns3::TagBuffer', 'buf')])
1300 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::buf [variable]
1301 cls.add_instance_attribute('buf', 'ns3::TagBuffer', is_const=False)
1302 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::end [variable]
1303 cls.add_instance_attribute('end', 'int32_t', is_const=False)
1304 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::size [variable]
1305 cls.add_instance_attribute('size', 'uint32_t', is_const=False)
1306 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::start [variable]
1307 cls.add_instance_attribute('start', 'int32_t', is_const=False)
1308 ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::tid [variable]
1309 cls.add_instance_attribute('tid', 'ns3::TypeId', is_const=False)
1310 return
1311
Ilya Moiseenko1762af72011-07-18 16:43:10 -07001312def register_Ns3CallbackBase_methods(root_module, cls):
1313 ## callback.h (module 'core'): ns3::CallbackBase::CallbackBase(ns3::CallbackBase const & arg0) [copy constructor]
1314 cls.add_constructor([param('ns3::CallbackBase const &', 'arg0')])
1315 ## callback.h (module 'core'): ns3::CallbackBase::CallbackBase() [constructor]
1316 cls.add_constructor([])
1317 ## callback.h (module 'core'): ns3::Ptr<ns3::CallbackImplBase> ns3::CallbackBase::GetImpl() const [member function]
1318 cls.add_method('GetImpl',
1319 'ns3::Ptr< ns3::CallbackImplBase >',
1320 [],
1321 is_const=True)
1322 ## callback.h (module 'core'): ns3::CallbackBase::CallbackBase(ns3::Ptr<ns3::CallbackImplBase> impl) [constructor]
1323 cls.add_constructor([param('ns3::Ptr< ns3::CallbackImplBase >', 'impl')],
1324 visibility='protected')
1325 ## callback.h (module 'core'): static std::string ns3::CallbackBase::Demangle(std::string const & mangled) [member function]
1326 cls.add_method('Demangle',
1327 'std::string',
1328 [param('std::string const &', 'mangled')],
1329 is_static=True, visibility='protected')
1330 return
1331
Alexander Afanasyeveface602011-08-17 17:50:12 -07001332def register_Ns3CcnxDecodingHelper_methods(root_module, cls):
1333 ## ccnx-decoding-helper.h (module 'NDNabstraction'): ns3::CcnxDecodingHelper::CcnxDecodingHelper() [constructor]
1334 cls.add_constructor([])
1335 ## ccnx-decoding-helper.h (module 'NDNabstraction'): ns3::CcnxDecodingHelper::CcnxDecodingHelper(ns3::CcnxDecodingHelper const & arg0) [copy constructor]
1336 cls.add_constructor([param('ns3::CcnxDecodingHelper const &', 'arg0')])
1337 ## ccnx-decoding-helper.h (module 'NDNabstraction'): static size_t ns3::CcnxDecodingHelper::Deserialize(ns3::Buffer::Iterator start, ns3::CcnxInterestHeader const & interest) [member function]
1338 cls.add_method('Deserialize',
1339 'size_t',
1340 [param('ns3::Buffer::Iterator', 'start'), param('ns3::CcnxInterestHeader const &', 'interest')],
1341 is_static=True)
1342 ## ccnx-decoding-helper.h (module 'NDNabstraction'): static size_t ns3::CcnxDecodingHelper::Deserialize(ns3::Buffer::Iterator start, ns3::CcnxContentObjectHeader const & contentObject) [member function]
1343 cls.add_method('Deserialize',
1344 'size_t',
1345 [param('ns3::Buffer::Iterator', 'start'), param('ns3::CcnxContentObjectHeader const &', 'contentObject')],
1346 is_static=True)
1347 return
1348
1349def register_Ns3CcnxEncodingHelper_methods(root_module, cls):
1350 ## ccnx-encoding-helper.h (module 'NDNabstraction'): ns3::CcnxEncodingHelper::CcnxEncodingHelper() [constructor]
1351 cls.add_constructor([])
1352 ## ccnx-encoding-helper.h (module 'NDNabstraction'): ns3::CcnxEncodingHelper::CcnxEncodingHelper(ns3::CcnxEncodingHelper const & arg0) [copy constructor]
1353 cls.add_constructor([param('ns3::CcnxEncodingHelper const &', 'arg0')])
1354 ## ccnx-encoding-helper.h (module 'NDNabstraction'): static size_t ns3::CcnxEncodingHelper::Serialize(ns3::Buffer::Iterator start, ns3::CcnxInterestHeader const & interest) [member function]
1355 cls.add_method('Serialize',
1356 'size_t',
1357 [param('ns3::Buffer::Iterator', 'start'), param('ns3::CcnxInterestHeader const &', 'interest')],
1358 is_static=True)
1359 ## ccnx-encoding-helper.h (module 'NDNabstraction'): static size_t ns3::CcnxEncodingHelper::Serialize(ns3::Buffer::Iterator start, ns3::CcnxContentObjectHeader const & contentObject) [member function]
1360 cls.add_method('Serialize',
1361 'size_t',
1362 [param('ns3::Buffer::Iterator', 'start'), param('ns3::CcnxContentObjectHeader const &', 'contentObject')],
1363 is_static=True)
1364 return
1365
1366def register_Ns3CcnxFaceContainer_methods(root_module, cls):
1367 ## ccnx-face-container.h (module 'NDNabstraction'): ns3::CcnxFaceContainer::CcnxFaceContainer() [constructor]
1368 cls.add_constructor([])
1369 ## ccnx-face-container.h (module 'NDNabstraction'): ns3::CcnxFaceContainer::CcnxFaceContainer(ns3::CcnxFaceContainer const & other) [copy constructor]
1370 cls.add_constructor([param('ns3::CcnxFaceContainer const &', 'other')])
1371 ## ccnx-face-container.h (module 'NDNabstraction'): void ns3::CcnxFaceContainer::Add(ns3::Ptr<ns3::CcnxFace> const & face) [member function]
1372 cls.add_method('Add',
1373 'void',
1374 [param('ns3::Ptr< ns3::CcnxFace > const &', 'face')])
1375 ## ccnx-face-container.h (module 'NDNabstraction'): void ns3::CcnxFaceContainer::AddAll(ns3::CcnxFaceContainer const & other) [member function]
1376 cls.add_method('AddAll',
1377 'void',
1378 [param('ns3::CcnxFaceContainer const &', 'other')])
1379 ## ccnx-face-container.h (module 'NDNabstraction'): __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]
1380 cls.add_method('Begin',
1381 '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::CcnxFace > const, std::vector< ns3::Ptr< ns3::CcnxFace > > >',
1382 [],
1383 is_const=True)
1384 ## ccnx-face-container.h (module 'NDNabstraction'): __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]
1385 cls.add_method('End',
1386 '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::CcnxFace > const, std::vector< ns3::Ptr< ns3::CcnxFace > > >',
1387 [],
1388 is_const=True)
1389 ## ccnx-face-container.h (module 'NDNabstraction'): 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]
1390 cls.add_method('Get',
1391 'ns3::Ptr< ns3::CcnxFace >',
1392 [param('__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::CcnxFace > const, std::vector< ns3::Ptr< ns3::CcnxFace > > >', 'i')],
1393 is_const=True)
1394 ## ccnx-face-container.h (module 'NDNabstraction'): uint32_t ns3::CcnxFaceContainer::GetN() const [member function]
1395 cls.add_method('GetN',
1396 'uint32_t',
1397 [],
1398 is_const=True)
1399 ## ccnx-face-container.h (module 'NDNabstraction'): void ns3::CcnxFaceContainer::SetMetricToAll(uint16_t metric) [member function]
1400 cls.add_method('SetMetricToAll',
1401 'void',
1402 [param('uint16_t', 'metric')])
1403 return
1404
1405def register_Ns3CcnxForwardingHelper_methods(root_module, cls):
1406 ## ccnx-forwarding-helper.h (module 'NDNabstraction'): ns3::CcnxForwardingHelper::CcnxForwardingHelper() [constructor]
1407 cls.add_constructor([])
1408 ## ccnx-forwarding-helper.h (module 'NDNabstraction'): ns3::CcnxForwardingHelper::CcnxForwardingHelper(ns3::CcnxForwardingHelper const & arg0) [copy constructor]
1409 cls.add_constructor([param('ns3::CcnxForwardingHelper const &', 'arg0')])
1410 ## ccnx-forwarding-helper.h (module 'NDNabstraction'): ns3::CcnxForwardingHelper * ns3::CcnxForwardingHelper::Copy() const [member function]
1411 cls.add_method('Copy',
1412 'ns3::CcnxForwardingHelper *',
1413 [],
1414 is_pure_virtual=True, is_const=True, is_virtual=True)
1415 ## ccnx-forwarding-helper.h (module 'NDNabstraction'): ns3::Ptr<ns3::CcnxForwardingStrategy> ns3::CcnxForwardingHelper::Create(ns3::Ptr<ns3::Node> node) const [member function]
1416 cls.add_method('Create',
1417 'ns3::Ptr< ns3::CcnxForwardingStrategy >',
1418 [param('ns3::Ptr< ns3::Node >', 'node')],
1419 is_pure_virtual=True, is_const=True, is_virtual=True)
1420 ## ccnx-forwarding-helper.h (module 'NDNabstraction'): void ns3::CcnxForwardingHelper::PrintForwardingTableAllAt(ns3::Time printTime, ns3::Ptr<ns3::OutputStreamWrapper> stream) const [member function]
1421 cls.add_method('PrintForwardingTableAllAt',
1422 'void',
1423 [param('ns3::Time', 'printTime'), param('ns3::Ptr< ns3::OutputStreamWrapper >', 'stream')],
1424 is_const=True)
1425 ## ccnx-forwarding-helper.h (module 'NDNabstraction'): void ns3::CcnxForwardingHelper::PrintForwardingTableAllEvery(ns3::Time printInterval, ns3::Ptr<ns3::OutputStreamWrapper> stream) const [member function]
1426 cls.add_method('PrintForwardingTableAllEvery',
1427 'void',
1428 [param('ns3::Time', 'printInterval'), param('ns3::Ptr< ns3::OutputStreamWrapper >', 'stream')],
1429 is_const=True)
1430 ## ccnx-forwarding-helper.h (module 'NDNabstraction'): void ns3::CcnxForwardingHelper::PrintForwardingTableAt(ns3::Time printTime, ns3::Ptr<ns3::Node> node, ns3::Ptr<ns3::OutputStreamWrapper> stream) const [member function]
1431 cls.add_method('PrintForwardingTableAt',
1432 'void',
1433 [param('ns3::Time', 'printTime'), param('ns3::Ptr< ns3::Node >', 'node'), param('ns3::Ptr< ns3::OutputStreamWrapper >', 'stream')],
1434 is_const=True)
1435 ## ccnx-forwarding-helper.h (module 'NDNabstraction'): void ns3::CcnxForwardingHelper::PrintForwardingTableEvery(ns3::Time printInterval, ns3::Ptr<ns3::Node> node, ns3::Ptr<ns3::OutputStreamWrapper> stream) const [member function]
1436 cls.add_method('PrintForwardingTableEvery',
1437 'void',
1438 [param('ns3::Time', 'printInterval'), param('ns3::Ptr< ns3::Node >', 'node'), param('ns3::Ptr< ns3::OutputStreamWrapper >', 'stream')],
1439 is_const=True)
1440 return
1441
1442def register_Ns3CcnxHeaderHelper_methods(root_module, cls):
1443 ## ccnx-header-helper.h (module 'NDNabstraction'): ns3::CcnxHeaderHelper::CcnxHeaderHelper() [constructor]
1444 cls.add_constructor([])
1445 ## ccnx-header-helper.h (module 'NDNabstraction'): ns3::CcnxHeaderHelper::CcnxHeaderHelper(ns3::CcnxHeaderHelper const & arg0) [copy constructor]
1446 cls.add_constructor([param('ns3::CcnxHeaderHelper const &', 'arg0')])
1447 ## ccnx-header-helper.h (module 'NDNabstraction'): static ns3::Ptr<ns3::Header> ns3::CcnxHeaderHelper::CreateCorrectCcnxHeader(ns3::Ptr<const ns3::Packet> packet) [member function]
1448 cls.add_method('CreateCorrectCcnxHeader',
1449 'ns3::Ptr< ns3::Header >',
1450 [param('ns3::Ptr< ns3::Packet const >', 'packet')],
1451 is_static=True)
1452 return
1453
1454def register_Ns3CcnxUnknownHeaderException_methods(root_module, cls):
1455 ## ccnx-header-helper.h (module 'NDNabstraction'): ns3::CcnxUnknownHeaderException::CcnxUnknownHeaderException() [constructor]
1456 cls.add_constructor([])
1457 ## ccnx-header-helper.h (module 'NDNabstraction'): ns3::CcnxUnknownHeaderException::CcnxUnknownHeaderException(ns3::CcnxUnknownHeaderException const & arg0) [copy constructor]
1458 cls.add_constructor([param('ns3::CcnxUnknownHeaderException const &', 'arg0')])
1459 return
1460
Ilya Moiseenko1762af72011-07-18 16:43:10 -07001461def register_Ns3EventId_methods(root_module, cls):
1462 cls.add_binary_comparison_operator('!=')
1463 cls.add_binary_comparison_operator('==')
1464 ## event-id.h (module 'core'): ns3::EventId::EventId(ns3::EventId const & arg0) [copy constructor]
1465 cls.add_constructor([param('ns3::EventId const &', 'arg0')])
1466 ## event-id.h (module 'core'): ns3::EventId::EventId() [constructor]
1467 cls.add_constructor([])
1468 ## event-id.h (module 'core'): ns3::EventId::EventId(ns3::Ptr<ns3::EventImpl> const & impl, uint64_t ts, uint32_t context, uint32_t uid) [constructor]
1469 cls.add_constructor([param('ns3::Ptr< ns3::EventImpl > const &', 'impl'), param('uint64_t', 'ts'), param('uint32_t', 'context'), param('uint32_t', 'uid')])
1470 ## event-id.h (module 'core'): void ns3::EventId::Cancel() [member function]
1471 cls.add_method('Cancel',
1472 'void',
1473 [])
1474 ## event-id.h (module 'core'): uint32_t ns3::EventId::GetContext() const [member function]
1475 cls.add_method('GetContext',
1476 'uint32_t',
1477 [],
1478 is_const=True)
1479 ## event-id.h (module 'core'): uint64_t ns3::EventId::GetTs() const [member function]
1480 cls.add_method('GetTs',
1481 'uint64_t',
1482 [],
1483 is_const=True)
1484 ## event-id.h (module 'core'): uint32_t ns3::EventId::GetUid() const [member function]
1485 cls.add_method('GetUid',
1486 'uint32_t',
1487 [],
1488 is_const=True)
1489 ## event-id.h (module 'core'): bool ns3::EventId::IsExpired() const [member function]
1490 cls.add_method('IsExpired',
1491 'bool',
1492 [],
1493 is_const=True)
1494 ## event-id.h (module 'core'): bool ns3::EventId::IsRunning() const [member function]
1495 cls.add_method('IsRunning',
1496 'bool',
1497 [],
1498 is_const=True)
1499 ## event-id.h (module 'core'): ns3::EventImpl * ns3::EventId::PeekEventImpl() const [member function]
1500 cls.add_method('PeekEventImpl',
1501 'ns3::EventImpl *',
1502 [],
1503 is_const=True)
1504 return
1505
Ilya Moiseenko1762af72011-07-18 16:43:10 -07001506def register_Ns3Ipv4Address_methods(root_module, cls):
Ilya Moiseenko1762af72011-07-18 16:43:10 -07001507 cls.add_binary_comparison_operator('!=')
Alexander Afanasyeveface602011-08-17 17:50:12 -07001508 cls.add_binary_comparison_operator('<')
Ilya Moiseenko1762af72011-07-18 16:43:10 -07001509 cls.add_output_stream_operator()
1510 cls.add_binary_comparison_operator('==')
1511 ## ipv4-address.h (module 'network'): ns3::Ipv4Address::Ipv4Address(ns3::Ipv4Address const & arg0) [copy constructor]
1512 cls.add_constructor([param('ns3::Ipv4Address const &', 'arg0')])
1513 ## ipv4-address.h (module 'network'): ns3::Ipv4Address::Ipv4Address() [constructor]
1514 cls.add_constructor([])
1515 ## ipv4-address.h (module 'network'): ns3::Ipv4Address::Ipv4Address(uint32_t address) [constructor]
1516 cls.add_constructor([param('uint32_t', 'address')])
1517 ## ipv4-address.h (module 'network'): ns3::Ipv4Address::Ipv4Address(char const * address) [constructor]
1518 cls.add_constructor([param('char const *', 'address')])
1519 ## ipv4-address.h (module 'network'): ns3::Ipv4Address ns3::Ipv4Address::CombineMask(ns3::Ipv4Mask const & mask) const [member function]
1520 cls.add_method('CombineMask',
1521 'ns3::Ipv4Address',
1522 [param('ns3::Ipv4Mask const &', 'mask')],
1523 is_const=True)
1524 ## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::ConvertFrom(ns3::Address const & address) [member function]
1525 cls.add_method('ConvertFrom',
1526 'ns3::Ipv4Address',
1527 [param('ns3::Address const &', 'address')],
1528 is_static=True)
1529 ## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::Deserialize(uint8_t const * buf) [member function]
1530 cls.add_method('Deserialize',
1531 'ns3::Ipv4Address',
1532 [param('uint8_t const *', 'buf')],
1533 is_static=True)
1534 ## ipv4-address.h (module 'network'): uint32_t ns3::Ipv4Address::Get() const [member function]
1535 cls.add_method('Get',
1536 'uint32_t',
1537 [],
1538 is_const=True)
1539 ## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::GetAny() [member function]
1540 cls.add_method('GetAny',
1541 'ns3::Ipv4Address',
1542 [],
1543 is_static=True)
1544 ## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::GetBroadcast() [member function]
1545 cls.add_method('GetBroadcast',
1546 'ns3::Ipv4Address',
1547 [],
1548 is_static=True)
1549 ## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::GetLoopback() [member function]
1550 cls.add_method('GetLoopback',
1551 'ns3::Ipv4Address',
1552 [],
1553 is_static=True)
1554 ## ipv4-address.h (module 'network'): ns3::Ipv4Address ns3::Ipv4Address::GetSubnetDirectedBroadcast(ns3::Ipv4Mask const & mask) const [member function]
1555 cls.add_method('GetSubnetDirectedBroadcast',
1556 'ns3::Ipv4Address',
1557 [param('ns3::Ipv4Mask const &', 'mask')],
1558 is_const=True)
1559 ## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::GetZero() [member function]
1560 cls.add_method('GetZero',
1561 'ns3::Ipv4Address',
1562 [],
1563 is_static=True)
1564 ## ipv4-address.h (module 'network'): bool ns3::Ipv4Address::IsBroadcast() const [member function]
1565 cls.add_method('IsBroadcast',
1566 'bool',
1567 [],
1568 is_const=True)
1569 ## ipv4-address.h (module 'network'): bool ns3::Ipv4Address::IsEqual(ns3::Ipv4Address const & other) const [member function]
1570 cls.add_method('IsEqual',
1571 'bool',
1572 [param('ns3::Ipv4Address const &', 'other')],
1573 is_const=True)
1574 ## ipv4-address.h (module 'network'): bool ns3::Ipv4Address::IsLocalMulticast() const [member function]
1575 cls.add_method('IsLocalMulticast',
1576 'bool',
1577 [],
1578 is_const=True)
1579 ## ipv4-address.h (module 'network'): static bool ns3::Ipv4Address::IsMatchingType(ns3::Address const & address) [member function]
1580 cls.add_method('IsMatchingType',
1581 'bool',
1582 [param('ns3::Address const &', 'address')],
1583 is_static=True)
1584 ## ipv4-address.h (module 'network'): bool ns3::Ipv4Address::IsMulticast() const [member function]
1585 cls.add_method('IsMulticast',
1586 'bool',
1587 [],
1588 is_const=True)
1589 ## ipv4-address.h (module 'network'): bool ns3::Ipv4Address::IsSubnetDirectedBroadcast(ns3::Ipv4Mask const & mask) const [member function]
1590 cls.add_method('IsSubnetDirectedBroadcast',
1591 'bool',
1592 [param('ns3::Ipv4Mask const &', 'mask')],
1593 is_const=True)
1594 ## ipv4-address.h (module 'network'): void ns3::Ipv4Address::Print(std::ostream & os) const [member function]
1595 cls.add_method('Print',
1596 'void',
1597 [param('std::ostream &', 'os')],
1598 is_const=True)
1599 ## ipv4-address.h (module 'network'): void ns3::Ipv4Address::Serialize(uint8_t * buf) const [member function]
1600 cls.add_method('Serialize',
1601 'void',
1602 [param('uint8_t *', 'buf')],
1603 is_const=True)
1604 ## ipv4-address.h (module 'network'): void ns3::Ipv4Address::Set(uint32_t address) [member function]
1605 cls.add_method('Set',
1606 'void',
1607 [param('uint32_t', 'address')])
1608 ## ipv4-address.h (module 'network'): void ns3::Ipv4Address::Set(char const * address) [member function]
1609 cls.add_method('Set',
1610 'void',
1611 [param('char const *', 'address')])
1612 return
1613
Ilya Moiseenko1762af72011-07-18 16:43:10 -07001614def register_Ns3Ipv4Mask_methods(root_module, cls):
1615 cls.add_binary_comparison_operator('!=')
1616 cls.add_output_stream_operator()
1617 cls.add_binary_comparison_operator('==')
1618 ## ipv4-address.h (module 'network'): ns3::Ipv4Mask::Ipv4Mask(ns3::Ipv4Mask const & arg0) [copy constructor]
1619 cls.add_constructor([param('ns3::Ipv4Mask const &', 'arg0')])
1620 ## ipv4-address.h (module 'network'): ns3::Ipv4Mask::Ipv4Mask() [constructor]
1621 cls.add_constructor([])
1622 ## ipv4-address.h (module 'network'): ns3::Ipv4Mask::Ipv4Mask(uint32_t mask) [constructor]
1623 cls.add_constructor([param('uint32_t', 'mask')])
1624 ## ipv4-address.h (module 'network'): ns3::Ipv4Mask::Ipv4Mask(char const * mask) [constructor]
1625 cls.add_constructor([param('char const *', 'mask')])
1626 ## ipv4-address.h (module 'network'): uint32_t ns3::Ipv4Mask::Get() const [member function]
1627 cls.add_method('Get',
1628 'uint32_t',
1629 [],
1630 is_const=True)
1631 ## ipv4-address.h (module 'network'): uint32_t ns3::Ipv4Mask::GetInverse() const [member function]
1632 cls.add_method('GetInverse',
1633 'uint32_t',
1634 [],
1635 is_const=True)
1636 ## ipv4-address.h (module 'network'): static ns3::Ipv4Mask ns3::Ipv4Mask::GetLoopback() [member function]
1637 cls.add_method('GetLoopback',
1638 'ns3::Ipv4Mask',
1639 [],
1640 is_static=True)
1641 ## ipv4-address.h (module 'network'): static ns3::Ipv4Mask ns3::Ipv4Mask::GetOnes() [member function]
1642 cls.add_method('GetOnes',
1643 'ns3::Ipv4Mask',
1644 [],
1645 is_static=True)
1646 ## ipv4-address.h (module 'network'): uint16_t ns3::Ipv4Mask::GetPrefixLength() const [member function]
1647 cls.add_method('GetPrefixLength',
1648 'uint16_t',
1649 [],
1650 is_const=True)
1651 ## ipv4-address.h (module 'network'): static ns3::Ipv4Mask ns3::Ipv4Mask::GetZero() [member function]
1652 cls.add_method('GetZero',
1653 'ns3::Ipv4Mask',
1654 [],
1655 is_static=True)
1656 ## ipv4-address.h (module 'network'): bool ns3::Ipv4Mask::IsEqual(ns3::Ipv4Mask other) const [member function]
1657 cls.add_method('IsEqual',
1658 'bool',
1659 [param('ns3::Ipv4Mask', 'other')],
1660 is_const=True)
1661 ## ipv4-address.h (module 'network'): bool ns3::Ipv4Mask::IsMatch(ns3::Ipv4Address a, ns3::Ipv4Address b) const [member function]
1662 cls.add_method('IsMatch',
1663 'bool',
1664 [param('ns3::Ipv4Address', 'a'), param('ns3::Ipv4Address', 'b')],
1665 is_const=True)
1666 ## ipv4-address.h (module 'network'): void ns3::Ipv4Mask::Print(std::ostream & os) const [member function]
1667 cls.add_method('Print',
1668 'void',
1669 [param('std::ostream &', 'os')],
1670 is_const=True)
1671 ## ipv4-address.h (module 'network'): void ns3::Ipv4Mask::Set(uint32_t mask) [member function]
1672 cls.add_method('Set',
1673 'void',
1674 [param('uint32_t', 'mask')])
1675 return
1676
Ilya Moiseenko1762af72011-07-18 16:43:10 -07001677def register_Ns3Ipv6Address_methods(root_module, cls):
Ilya Moiseenko1762af72011-07-18 16:43:10 -07001678 cls.add_binary_comparison_operator('!=')
Alexander Afanasyeveface602011-08-17 17:50:12 -07001679 cls.add_binary_comparison_operator('<')
Ilya Moiseenko1762af72011-07-18 16:43:10 -07001680 cls.add_output_stream_operator()
1681 cls.add_binary_comparison_operator('==')
1682 ## ipv6-address.h (module 'network'): ns3::Ipv6Address::Ipv6Address() [constructor]
1683 cls.add_constructor([])
1684 ## ipv6-address.h (module 'network'): ns3::Ipv6Address::Ipv6Address(char const * address) [constructor]
1685 cls.add_constructor([param('char const *', 'address')])
1686 ## ipv6-address.h (module 'network'): ns3::Ipv6Address::Ipv6Address(uint8_t * address) [constructor]
1687 cls.add_constructor([param('uint8_t *', 'address')])
1688 ## ipv6-address.h (module 'network'): ns3::Ipv6Address::Ipv6Address(ns3::Ipv6Address const & addr) [copy constructor]
1689 cls.add_constructor([param('ns3::Ipv6Address const &', 'addr')])
1690 ## ipv6-address.h (module 'network'): ns3::Ipv6Address::Ipv6Address(ns3::Ipv6Address const * addr) [constructor]
1691 cls.add_constructor([param('ns3::Ipv6Address const *', 'addr')])
1692 ## ipv6-address.h (module 'network'): ns3::Ipv6Address ns3::Ipv6Address::CombinePrefix(ns3::Ipv6Prefix const & prefix) [member function]
1693 cls.add_method('CombinePrefix',
1694 'ns3::Ipv6Address',
1695 [param('ns3::Ipv6Prefix const &', 'prefix')])
1696 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::ConvertFrom(ns3::Address const & address) [member function]
1697 cls.add_method('ConvertFrom',
1698 'ns3::Ipv6Address',
1699 [param('ns3::Address const &', 'address')],
1700 is_static=True)
1701 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::Deserialize(uint8_t const * buf) [member function]
1702 cls.add_method('Deserialize',
1703 'ns3::Ipv6Address',
1704 [param('uint8_t const *', 'buf')],
1705 is_static=True)
1706 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetAllHostsMulticast() [member function]
1707 cls.add_method('GetAllHostsMulticast',
1708 'ns3::Ipv6Address',
1709 [],
1710 is_static=True)
1711 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetAllNodesMulticast() [member function]
1712 cls.add_method('GetAllNodesMulticast',
1713 'ns3::Ipv6Address',
1714 [],
1715 is_static=True)
1716 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetAllRoutersMulticast() [member function]
1717 cls.add_method('GetAllRoutersMulticast',
1718 'ns3::Ipv6Address',
1719 [],
1720 is_static=True)
1721 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetAny() [member function]
1722 cls.add_method('GetAny',
1723 'ns3::Ipv6Address',
1724 [],
1725 is_static=True)
1726 ## ipv6-address.h (module 'network'): void ns3::Ipv6Address::GetBytes(uint8_t * buf) const [member function]
1727 cls.add_method('GetBytes',
1728 'void',
1729 [param('uint8_t *', 'buf')],
1730 is_const=True)
1731 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetLoopback() [member function]
1732 cls.add_method('GetLoopback',
1733 'ns3::Ipv6Address',
1734 [],
1735 is_static=True)
1736 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetOnes() [member function]
1737 cls.add_method('GetOnes',
1738 'ns3::Ipv6Address',
1739 [],
1740 is_static=True)
1741 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetZero() [member function]
1742 cls.add_method('GetZero',
1743 'ns3::Ipv6Address',
1744 [],
1745 is_static=True)
1746 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsAllHostsMulticast() const [member function]
1747 cls.add_method('IsAllHostsMulticast',
1748 'bool',
1749 [],
1750 is_const=True)
1751 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsAllNodesMulticast() const [member function]
1752 cls.add_method('IsAllNodesMulticast',
1753 'bool',
1754 [],
1755 is_const=True)
1756 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsAllRoutersMulticast() const [member function]
1757 cls.add_method('IsAllRoutersMulticast',
1758 'bool',
1759 [],
1760 is_const=True)
1761 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsAny() const [member function]
1762 cls.add_method('IsAny',
1763 'bool',
1764 [],
1765 is_const=True)
1766 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsEqual(ns3::Ipv6Address const & other) const [member function]
1767 cls.add_method('IsEqual',
1768 'bool',
1769 [param('ns3::Ipv6Address const &', 'other')],
1770 is_const=True)
1771 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsLinkLocal() const [member function]
1772 cls.add_method('IsLinkLocal',
1773 'bool',
1774 [],
1775 is_const=True)
1776 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsLocalhost() const [member function]
1777 cls.add_method('IsLocalhost',
1778 'bool',
1779 [],
1780 is_const=True)
1781 ## ipv6-address.h (module 'network'): static bool ns3::Ipv6Address::IsMatchingType(ns3::Address const & address) [member function]
1782 cls.add_method('IsMatchingType',
1783 'bool',
1784 [param('ns3::Address const &', 'address')],
1785 is_static=True)
1786 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsMulticast() const [member function]
1787 cls.add_method('IsMulticast',
1788 'bool',
1789 [],
1790 is_const=True)
1791 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsSolicitedMulticast() const [member function]
1792 cls.add_method('IsSolicitedMulticast',
1793 'bool',
1794 [],
1795 is_const=True)
1796 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::MakeAutoconfiguredAddress(ns3::Mac48Address addr, ns3::Ipv6Address prefix) [member function]
1797 cls.add_method('MakeAutoconfiguredAddress',
1798 'ns3::Ipv6Address',
1799 [param('ns3::Mac48Address', 'addr'), param('ns3::Ipv6Address', 'prefix')],
1800 is_static=True)
1801 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::MakeAutoconfiguredLinkLocalAddress(ns3::Mac48Address mac) [member function]
1802 cls.add_method('MakeAutoconfiguredLinkLocalAddress',
1803 'ns3::Ipv6Address',
1804 [param('ns3::Mac48Address', 'mac')],
1805 is_static=True)
1806 ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::MakeSolicitedAddress(ns3::Ipv6Address addr) [member function]
1807 cls.add_method('MakeSolicitedAddress',
1808 'ns3::Ipv6Address',
1809 [param('ns3::Ipv6Address', 'addr')],
1810 is_static=True)
1811 ## ipv6-address.h (module 'network'): void ns3::Ipv6Address::Print(std::ostream & os) const [member function]
1812 cls.add_method('Print',
1813 'void',
1814 [param('std::ostream &', 'os')],
1815 is_const=True)
1816 ## ipv6-address.h (module 'network'): void ns3::Ipv6Address::Serialize(uint8_t * buf) const [member function]
1817 cls.add_method('Serialize',
1818 'void',
1819 [param('uint8_t *', 'buf')],
1820 is_const=True)
1821 ## ipv6-address.h (module 'network'): void ns3::Ipv6Address::Set(char const * address) [member function]
1822 cls.add_method('Set',
1823 'void',
1824 [param('char const *', 'address')])
1825 ## ipv6-address.h (module 'network'): void ns3::Ipv6Address::Set(uint8_t * address) [member function]
1826 cls.add_method('Set',
1827 'void',
1828 [param('uint8_t *', 'address')])
1829 return
1830
1831def register_Ns3Ipv6Prefix_methods(root_module, cls):
1832 cls.add_binary_comparison_operator('!=')
1833 cls.add_output_stream_operator()
1834 cls.add_binary_comparison_operator('==')
1835 ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix() [constructor]
1836 cls.add_constructor([])
1837 ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix(uint8_t * prefix) [constructor]
1838 cls.add_constructor([param('uint8_t *', 'prefix')])
1839 ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix(char const * prefix) [constructor]
1840 cls.add_constructor([param('char const *', 'prefix')])
1841 ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix(uint8_t prefix) [constructor]
1842 cls.add_constructor([param('uint8_t', 'prefix')])
1843 ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix(ns3::Ipv6Prefix const & prefix) [copy constructor]
1844 cls.add_constructor([param('ns3::Ipv6Prefix const &', 'prefix')])
1845 ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix(ns3::Ipv6Prefix const * prefix) [constructor]
1846 cls.add_constructor([param('ns3::Ipv6Prefix const *', 'prefix')])
1847 ## ipv6-address.h (module 'network'): void ns3::Ipv6Prefix::GetBytes(uint8_t * buf) const [member function]
1848 cls.add_method('GetBytes',
1849 'void',
1850 [param('uint8_t *', 'buf')],
1851 is_const=True)
1852 ## ipv6-address.h (module 'network'): static ns3::Ipv6Prefix ns3::Ipv6Prefix::GetLoopback() [member function]
1853 cls.add_method('GetLoopback',
1854 'ns3::Ipv6Prefix',
1855 [],
1856 is_static=True)
1857 ## ipv6-address.h (module 'network'): static ns3::Ipv6Prefix ns3::Ipv6Prefix::GetOnes() [member function]
1858 cls.add_method('GetOnes',
1859 'ns3::Ipv6Prefix',
1860 [],
1861 is_static=True)
1862 ## ipv6-address.h (module 'network'): uint8_t ns3::Ipv6Prefix::GetPrefixLength() const [member function]
1863 cls.add_method('GetPrefixLength',
1864 'uint8_t',
1865 [],
1866 is_const=True)
1867 ## ipv6-address.h (module 'network'): static ns3::Ipv6Prefix ns3::Ipv6Prefix::GetZero() [member function]
1868 cls.add_method('GetZero',
1869 'ns3::Ipv6Prefix',
1870 [],
1871 is_static=True)
1872 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Prefix::IsEqual(ns3::Ipv6Prefix const & other) const [member function]
1873 cls.add_method('IsEqual',
1874 'bool',
1875 [param('ns3::Ipv6Prefix const &', 'other')],
1876 is_const=True)
1877 ## ipv6-address.h (module 'network'): bool ns3::Ipv6Prefix::IsMatch(ns3::Ipv6Address a, ns3::Ipv6Address b) const [member function]
1878 cls.add_method('IsMatch',
1879 'bool',
1880 [param('ns3::Ipv6Address', 'a'), param('ns3::Ipv6Address', 'b')],
1881 is_const=True)
1882 ## ipv6-address.h (module 'network'): void ns3::Ipv6Prefix::Print(std::ostream & os) const [member function]
1883 cls.add_method('Print',
1884 'void',
1885 [param('std::ostream &', 'os')],
1886 is_const=True)
1887 return
1888
Ilya Moiseenko02fb7062011-08-11 17:18:00 -07001889def register_Ns3LogComponent_methods(root_module, cls):
1890 ## log.h (module 'core'): ns3::LogComponent::LogComponent(ns3::LogComponent const & arg0) [copy constructor]
1891 cls.add_constructor([param('ns3::LogComponent const &', 'arg0')])
1892 ## log.h (module 'core'): ns3::LogComponent::LogComponent(char const * name) [constructor]
1893 cls.add_constructor([param('char const *', 'name')])
1894 ## log.h (module 'core'): void ns3::LogComponent::Disable(ns3::LogLevel level) [member function]
1895 cls.add_method('Disable',
1896 'void',
1897 [param('ns3::LogLevel', 'level')])
1898 ## log.h (module 'core'): void ns3::LogComponent::Enable(ns3::LogLevel level) [member function]
1899 cls.add_method('Enable',
1900 'void',
1901 [param('ns3::LogLevel', 'level')])
1902 ## log.h (module 'core'): void ns3::LogComponent::EnvVarCheck(char const * name) [member function]
1903 cls.add_method('EnvVarCheck',
1904 'void',
1905 [param('char const *', 'name')])
1906 ## log.h (module 'core'): bool ns3::LogComponent::IsEnabled(ns3::LogLevel level) const [member function]
1907 cls.add_method('IsEnabled',
1908 'bool',
1909 [param('ns3::LogLevel', 'level')],
1910 is_const=True)
1911 ## log.h (module 'core'): bool ns3::LogComponent::IsNoneEnabled() const [member function]
1912 cls.add_method('IsNoneEnabled',
1913 'bool',
1914 [],
1915 is_const=True)
1916 ## log.h (module 'core'): char const * ns3::LogComponent::Name() const [member function]
1917 cls.add_method('Name',
1918 'char const *',
1919 [],
1920 is_const=True)
1921 return
1922
Alexander Afanasyeveface602011-08-17 17:50:12 -07001923def register_Ns3NetDeviceContainer_methods(root_module, cls):
1924 ## net-device-container.h (module 'network'): ns3::NetDeviceContainer::NetDeviceContainer(ns3::NetDeviceContainer const & arg0) [copy constructor]
1925 cls.add_constructor([param('ns3::NetDeviceContainer const &', 'arg0')])
1926 ## net-device-container.h (module 'network'): ns3::NetDeviceContainer::NetDeviceContainer() [constructor]
1927 cls.add_constructor([])
1928 ## net-device-container.h (module 'network'): ns3::NetDeviceContainer::NetDeviceContainer(ns3::Ptr<ns3::NetDevice> dev) [constructor]
1929 cls.add_constructor([param('ns3::Ptr< ns3::NetDevice >', 'dev')])
1930 ## net-device-container.h (module 'network'): ns3::NetDeviceContainer::NetDeviceContainer(std::string devName) [constructor]
1931 cls.add_constructor([param('std::string', 'devName')])
1932 ## net-device-container.h (module 'network'): ns3::NetDeviceContainer::NetDeviceContainer(ns3::NetDeviceContainer const & a, ns3::NetDeviceContainer const & b) [constructor]
1933 cls.add_constructor([param('ns3::NetDeviceContainer const &', 'a'), param('ns3::NetDeviceContainer const &', 'b')])
1934 ## net-device-container.h (module 'network'): void ns3::NetDeviceContainer::Add(ns3::NetDeviceContainer other) [member function]
1935 cls.add_method('Add',
1936 'void',
1937 [param('ns3::NetDeviceContainer', 'other')])
1938 ## net-device-container.h (module 'network'): void ns3::NetDeviceContainer::Add(ns3::Ptr<ns3::NetDevice> device) [member function]
1939 cls.add_method('Add',
1940 'void',
1941 [param('ns3::Ptr< ns3::NetDevice >', 'device')])
1942 ## net-device-container.h (module 'network'): void ns3::NetDeviceContainer::Add(std::string deviceName) [member function]
1943 cls.add_method('Add',
1944 'void',
1945 [param('std::string', 'deviceName')])
1946 ## net-device-container.h (module 'network'): __gnu_cxx::__normal_iterator<const ns3::Ptr<ns3::NetDevice>*,std::vector<ns3::Ptr<ns3::NetDevice>, std::allocator<ns3::Ptr<ns3::NetDevice> > > > ns3::NetDeviceContainer::Begin() const [member function]
1947 cls.add_method('Begin',
1948 '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::NetDevice > const, std::vector< ns3::Ptr< ns3::NetDevice > > >',
1949 [],
1950 is_const=True)
1951 ## net-device-container.h (module 'network'): __gnu_cxx::__normal_iterator<const ns3::Ptr<ns3::NetDevice>*,std::vector<ns3::Ptr<ns3::NetDevice>, std::allocator<ns3::Ptr<ns3::NetDevice> > > > ns3::NetDeviceContainer::End() const [member function]
1952 cls.add_method('End',
1953 '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::NetDevice > const, std::vector< ns3::Ptr< ns3::NetDevice > > >',
1954 [],
1955 is_const=True)
1956 ## net-device-container.h (module 'network'): ns3::Ptr<ns3::NetDevice> ns3::NetDeviceContainer::Get(uint32_t i) const [member function]
1957 cls.add_method('Get',
1958 'ns3::Ptr< ns3::NetDevice >',
1959 [param('uint32_t', 'i')],
1960 is_const=True)
1961 ## net-device-container.h (module 'network'): uint32_t ns3::NetDeviceContainer::GetN() const [member function]
1962 cls.add_method('GetN',
1963 'uint32_t',
1964 [],
1965 is_const=True)
1966 return
1967
Ilya Moiseenko1762af72011-07-18 16:43:10 -07001968def register_Ns3NodeContainer_methods(root_module, cls):
1969 ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer(ns3::NodeContainer const & arg0) [copy constructor]
1970 cls.add_constructor([param('ns3::NodeContainer const &', 'arg0')])
1971 ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer() [constructor]
1972 cls.add_constructor([])
1973 ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer(ns3::Ptr<ns3::Node> node) [constructor]
1974 cls.add_constructor([param('ns3::Ptr< ns3::Node >', 'node')])
1975 ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer(std::string nodeName) [constructor]
1976 cls.add_constructor([param('std::string', 'nodeName')])
1977 ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer(ns3::NodeContainer const & a, ns3::NodeContainer const & b) [constructor]
1978 cls.add_constructor([param('ns3::NodeContainer const &', 'a'), param('ns3::NodeContainer const &', 'b')])
1979 ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer(ns3::NodeContainer const & a, ns3::NodeContainer const & b, ns3::NodeContainer const & c) [constructor]
1980 cls.add_constructor([param('ns3::NodeContainer const &', 'a'), param('ns3::NodeContainer const &', 'b'), param('ns3::NodeContainer const &', 'c')])
1981 ## 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]
1982 cls.add_constructor([param('ns3::NodeContainer const &', 'a'), param('ns3::NodeContainer const &', 'b'), param('ns3::NodeContainer const &', 'c'), param('ns3::NodeContainer const &', 'd')])
1983 ## 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]
1984 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')])
1985 ## node-container.h (module 'network'): void ns3::NodeContainer::Add(ns3::NodeContainer other) [member function]
1986 cls.add_method('Add',
1987 'void',
1988 [param('ns3::NodeContainer', 'other')])
1989 ## node-container.h (module 'network'): void ns3::NodeContainer::Add(ns3::Ptr<ns3::Node> node) [member function]
1990 cls.add_method('Add',
1991 'void',
1992 [param('ns3::Ptr< ns3::Node >', 'node')])
1993 ## node-container.h (module 'network'): void ns3::NodeContainer::Add(std::string nodeName) [member function]
1994 cls.add_method('Add',
1995 'void',
1996 [param('std::string', 'nodeName')])
1997 ## 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]
1998 cls.add_method('Begin',
1999 '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Node > const, std::vector< ns3::Ptr< ns3::Node > > >',
2000 [],
2001 is_const=True)
2002 ## node-container.h (module 'network'): void ns3::NodeContainer::Create(uint32_t n) [member function]
2003 cls.add_method('Create',
2004 'void',
2005 [param('uint32_t', 'n')])
2006 ## node-container.h (module 'network'): void ns3::NodeContainer::Create(uint32_t n, uint32_t systemId) [member function]
2007 cls.add_method('Create',
2008 'void',
2009 [param('uint32_t', 'n'), param('uint32_t', 'systemId')])
2010 ## 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]
2011 cls.add_method('End',
2012 '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Node > const, std::vector< ns3::Ptr< ns3::Node > > >',
2013 [],
2014 is_const=True)
2015 ## node-container.h (module 'network'): ns3::Ptr<ns3::Node> ns3::NodeContainer::Get(uint32_t i) const [member function]
2016 cls.add_method('Get',
2017 'ns3::Ptr< ns3::Node >',
2018 [param('uint32_t', 'i')],
2019 is_const=True)
2020 ## node-container.h (module 'network'): static ns3::NodeContainer ns3::NodeContainer::GetGlobal() [member function]
2021 cls.add_method('GetGlobal',
2022 'ns3::NodeContainer',
2023 [],
2024 is_static=True)
2025 ## node-container.h (module 'network'): uint32_t ns3::NodeContainer::GetN() const [member function]
2026 cls.add_method('GetN',
2027 'uint32_t',
2028 [],
2029 is_const=True)
2030 return
2031
2032def register_Ns3ObjectBase_methods(root_module, cls):
2033 ## object-base.h (module 'core'): ns3::ObjectBase::ObjectBase() [constructor]
2034 cls.add_constructor([])
2035 ## object-base.h (module 'core'): ns3::ObjectBase::ObjectBase(ns3::ObjectBase const & arg0) [copy constructor]
2036 cls.add_constructor([param('ns3::ObjectBase const &', 'arg0')])
2037 ## object-base.h (module 'core'): void ns3::ObjectBase::GetAttribute(std::string name, ns3::AttributeValue & value) const [member function]
2038 cls.add_method('GetAttribute',
2039 'void',
2040 [param('std::string', 'name'), param('ns3::AttributeValue &', 'value')],
2041 is_const=True)
2042 ## object-base.h (module 'core'): bool ns3::ObjectBase::GetAttributeFailSafe(std::string name, ns3::AttributeValue & attribute) const [member function]
2043 cls.add_method('GetAttributeFailSafe',
2044 'bool',
2045 [param('std::string', 'name'), param('ns3::AttributeValue &', 'attribute')],
2046 is_const=True)
2047 ## object-base.h (module 'core'): ns3::TypeId ns3::ObjectBase::GetInstanceTypeId() const [member function]
2048 cls.add_method('GetInstanceTypeId',
2049 'ns3::TypeId',
2050 [],
2051 is_pure_virtual=True, is_const=True, is_virtual=True)
2052 ## object-base.h (module 'core'): static ns3::TypeId ns3::ObjectBase::GetTypeId() [member function]
2053 cls.add_method('GetTypeId',
2054 'ns3::TypeId',
2055 [],
2056 is_static=True)
2057 ## object-base.h (module 'core'): void ns3::ObjectBase::SetAttribute(std::string name, ns3::AttributeValue const & value) [member function]
2058 cls.add_method('SetAttribute',
2059 'void',
2060 [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')])
2061 ## object-base.h (module 'core'): bool ns3::ObjectBase::SetAttributeFailSafe(std::string name, ns3::AttributeValue const & value) [member function]
2062 cls.add_method('SetAttributeFailSafe',
2063 'bool',
2064 [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')])
2065 ## object-base.h (module 'core'): bool ns3::ObjectBase::TraceConnect(std::string name, std::string context, ns3::CallbackBase const & cb) [member function]
2066 cls.add_method('TraceConnect',
2067 'bool',
2068 [param('std::string', 'name'), param('std::string', 'context'), param('ns3::CallbackBase const &', 'cb')])
2069 ## object-base.h (module 'core'): bool ns3::ObjectBase::TraceConnectWithoutContext(std::string name, ns3::CallbackBase const & cb) [member function]
2070 cls.add_method('TraceConnectWithoutContext',
2071 'bool',
2072 [param('std::string', 'name'), param('ns3::CallbackBase const &', 'cb')])
2073 ## object-base.h (module 'core'): bool ns3::ObjectBase::TraceDisconnect(std::string name, std::string context, ns3::CallbackBase const & cb) [member function]
2074 cls.add_method('TraceDisconnect',
2075 'bool',
2076 [param('std::string', 'name'), param('std::string', 'context'), param('ns3::CallbackBase const &', 'cb')])
2077 ## object-base.h (module 'core'): bool ns3::ObjectBase::TraceDisconnectWithoutContext(std::string name, ns3::CallbackBase const & cb) [member function]
2078 cls.add_method('TraceDisconnectWithoutContext',
2079 'bool',
2080 [param('std::string', 'name'), param('ns3::CallbackBase const &', 'cb')])
Alexander Afanasyeveface602011-08-17 17:50:12 -07002081 ## object-base.h (module 'core'): void ns3::ObjectBase::ConstructSelf(ns3::AttributeConstructionList const & attributes) [member function]
Ilya Moiseenko1762af72011-07-18 16:43:10 -07002082 cls.add_method('ConstructSelf',
2083 'void',
Alexander Afanasyeveface602011-08-17 17:50:12 -07002084 [param('ns3::AttributeConstructionList const &', 'attributes')],
Ilya Moiseenko1762af72011-07-18 16:43:10 -07002085 visibility='protected')
2086 ## object-base.h (module 'core'): void ns3::ObjectBase::NotifyConstructionCompleted() [member function]
2087 cls.add_method('NotifyConstructionCompleted',
2088 'void',
2089 [],
2090 visibility='protected', is_virtual=True)
2091 return
2092
2093def register_Ns3ObjectDeleter_methods(root_module, cls):
2094 ## object.h (module 'core'): ns3::ObjectDeleter::ObjectDeleter() [constructor]
2095 cls.add_constructor([])
2096 ## object.h (module 'core'): ns3::ObjectDeleter::ObjectDeleter(ns3::ObjectDeleter const & arg0) [copy constructor]
2097 cls.add_constructor([param('ns3::ObjectDeleter const &', 'arg0')])
2098 ## object.h (module 'core'): static void ns3::ObjectDeleter::Delete(ns3::Object * object) [member function]
2099 cls.add_method('Delete',
2100 'void',
2101 [param('ns3::Object *', 'object')],
2102 is_static=True)
2103 return
2104
2105def register_Ns3ObjectFactory_methods(root_module, cls):
2106 cls.add_output_stream_operator()
2107 ## object-factory.h (module 'core'): ns3::ObjectFactory::ObjectFactory(ns3::ObjectFactory const & arg0) [copy constructor]
2108 cls.add_constructor([param('ns3::ObjectFactory const &', 'arg0')])
2109 ## object-factory.h (module 'core'): ns3::ObjectFactory::ObjectFactory() [constructor]
2110 cls.add_constructor([])
Alexander Afanasyeveface602011-08-17 17:50:12 -07002111 ## object-factory.h (module 'core'): ns3::ObjectFactory::ObjectFactory(std::string typeId) [constructor]
2112 cls.add_constructor([param('std::string', 'typeId')])
Ilya Moiseenko1762af72011-07-18 16:43:10 -07002113 ## object-factory.h (module 'core'): ns3::Ptr<ns3::Object> ns3::ObjectFactory::Create() const [member function]
2114 cls.add_method('Create',
2115 'ns3::Ptr< ns3::Object >',
2116 [],
2117 is_const=True)
2118 ## object-factory.h (module 'core'): ns3::TypeId ns3::ObjectFactory::GetTypeId() const [member function]
2119 cls.add_method('GetTypeId',
2120 'ns3::TypeId',
2121 [],
2122 is_const=True)
2123 ## object-factory.h (module 'core'): void ns3::ObjectFactory::Set(std::string name, ns3::AttributeValue const & value) [member function]
2124 cls.add_method('Set',
2125 'void',
2126 [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')])
Ilya Moiseenko1762af72011-07-18 16:43:10 -07002127 ## object-factory.h (module 'core'): void ns3::ObjectFactory::SetTypeId(ns3::TypeId tid) [member function]
2128 cls.add_method('SetTypeId',
2129 'void',
2130 [param('ns3::TypeId', 'tid')])
2131 ## object-factory.h (module 'core'): void ns3::ObjectFactory::SetTypeId(char const * tid) [member function]
2132 cls.add_method('SetTypeId',
2133 'void',
2134 [param('char const *', 'tid')])
2135 ## object-factory.h (module 'core'): void ns3::ObjectFactory::SetTypeId(std::string tid) [member function]
2136 cls.add_method('SetTypeId',
2137 'void',
2138 [param('std::string', 'tid')])
2139 return
2140
Alexander Afanasyeveface602011-08-17 17:50:12 -07002141def register_Ns3PacketMetadata_methods(root_module, cls):
2142 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::PacketMetadata(uint64_t uid, uint32_t size) [constructor]
2143 cls.add_constructor([param('uint64_t', 'uid'), param('uint32_t', 'size')])
2144 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::PacketMetadata(ns3::PacketMetadata const & o) [copy constructor]
2145 cls.add_constructor([param('ns3::PacketMetadata const &', 'o')])
2146 ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::AddAtEnd(ns3::PacketMetadata const & o) [member function]
2147 cls.add_method('AddAtEnd',
2148 'void',
2149 [param('ns3::PacketMetadata const &', 'o')])
2150 ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::AddHeader(ns3::Header const & header, uint32_t size) [member function]
2151 cls.add_method('AddHeader',
2152 'void',
2153 [param('ns3::Header const &', 'header'), param('uint32_t', 'size')])
2154 ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::AddPaddingAtEnd(uint32_t end) [member function]
2155 cls.add_method('AddPaddingAtEnd',
2156 'void',
2157 [param('uint32_t', 'end')])
2158 ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::AddTrailer(ns3::Trailer const & trailer, uint32_t size) [member function]
2159 cls.add_method('AddTrailer',
2160 'void',
2161 [param('ns3::Trailer const &', 'trailer'), param('uint32_t', 'size')])
2162 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::ItemIterator ns3::PacketMetadata::BeginItem(ns3::Buffer buffer) const [member function]
2163 cls.add_method('BeginItem',
2164 'ns3::PacketMetadata::ItemIterator',
2165 [param('ns3::Buffer', 'buffer')],
2166 is_const=True)
2167 ## packet-metadata.h (module 'network'): ns3::PacketMetadata ns3::PacketMetadata::CreateFragment(uint32_t start, uint32_t end) const [member function]
2168 cls.add_method('CreateFragment',
2169 'ns3::PacketMetadata',
2170 [param('uint32_t', 'start'), param('uint32_t', 'end')],
2171 is_const=True)
2172 ## packet-metadata.h (module 'network'): uint32_t ns3::PacketMetadata::Deserialize(uint8_t const * buffer, uint32_t size) [member function]
2173 cls.add_method('Deserialize',
2174 'uint32_t',
2175 [param('uint8_t const *', 'buffer'), param('uint32_t', 'size')])
2176 ## packet-metadata.h (module 'network'): static void ns3::PacketMetadata::Enable() [member function]
2177 cls.add_method('Enable',
2178 'void',
2179 [],
2180 is_static=True)
2181 ## packet-metadata.h (module 'network'): static void ns3::PacketMetadata::EnableChecking() [member function]
2182 cls.add_method('EnableChecking',
2183 'void',
2184 [],
2185 is_static=True)
2186 ## packet-metadata.h (module 'network'): uint32_t ns3::PacketMetadata::GetSerializedSize() const [member function]
2187 cls.add_method('GetSerializedSize',
2188 'uint32_t',
2189 [],
2190 is_const=True)
2191 ## packet-metadata.h (module 'network'): uint64_t ns3::PacketMetadata::GetUid() const [member function]
2192 cls.add_method('GetUid',
2193 'uint64_t',
2194 [],
2195 is_const=True)
2196 ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::RemoveAtEnd(uint32_t end) [member function]
2197 cls.add_method('RemoveAtEnd',
2198 'void',
2199 [param('uint32_t', 'end')])
2200 ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::RemoveAtStart(uint32_t start) [member function]
2201 cls.add_method('RemoveAtStart',
2202 'void',
2203 [param('uint32_t', 'start')])
2204 ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::RemoveHeader(ns3::Header const & header, uint32_t size) [member function]
2205 cls.add_method('RemoveHeader',
2206 'void',
2207 [param('ns3::Header const &', 'header'), param('uint32_t', 'size')])
2208 ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::RemoveTrailer(ns3::Trailer const & trailer, uint32_t size) [member function]
2209 cls.add_method('RemoveTrailer',
2210 'void',
2211 [param('ns3::Trailer const &', 'trailer'), param('uint32_t', 'size')])
2212 ## packet-metadata.h (module 'network'): uint32_t ns3::PacketMetadata::Serialize(uint8_t * buffer, uint32_t maxSize) const [member function]
2213 cls.add_method('Serialize',
2214 'uint32_t',
2215 [param('uint8_t *', 'buffer'), param('uint32_t', 'maxSize')],
2216 is_const=True)
2217 return
2218
2219def register_Ns3PacketMetadataItem_methods(root_module, cls):
2220 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::Item() [constructor]
2221 cls.add_constructor([])
2222 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::Item(ns3::PacketMetadata::Item const & arg0) [copy constructor]
2223 cls.add_constructor([param('ns3::PacketMetadata::Item const &', 'arg0')])
2224 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::current [variable]
2225 cls.add_instance_attribute('current', 'ns3::Buffer::Iterator', is_const=False)
2226 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::currentSize [variable]
2227 cls.add_instance_attribute('currentSize', 'uint32_t', is_const=False)
2228 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::currentTrimedFromEnd [variable]
2229 cls.add_instance_attribute('currentTrimedFromEnd', 'uint32_t', is_const=False)
2230 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::currentTrimedFromStart [variable]
2231 cls.add_instance_attribute('currentTrimedFromStart', 'uint32_t', is_const=False)
2232 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::isFragment [variable]
2233 cls.add_instance_attribute('isFragment', 'bool', is_const=False)
2234 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::tid [variable]
2235 cls.add_instance_attribute('tid', 'ns3::TypeId', is_const=False)
2236 return
2237
2238def register_Ns3PacketMetadataItemIterator_methods(root_module, cls):
2239 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::ItemIterator::ItemIterator(ns3::PacketMetadata::ItemIterator const & arg0) [copy constructor]
2240 cls.add_constructor([param('ns3::PacketMetadata::ItemIterator const &', 'arg0')])
2241 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::ItemIterator::ItemIterator(ns3::PacketMetadata const * metadata, ns3::Buffer buffer) [constructor]
2242 cls.add_constructor([param('ns3::PacketMetadata const *', 'metadata'), param('ns3::Buffer', 'buffer')])
2243 ## packet-metadata.h (module 'network'): bool ns3::PacketMetadata::ItemIterator::HasNext() const [member function]
2244 cls.add_method('HasNext',
2245 'bool',
2246 [],
2247 is_const=True)
2248 ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item ns3::PacketMetadata::ItemIterator::Next() [member function]
2249 cls.add_method('Next',
2250 'ns3::PacketMetadata::Item',
2251 [])
2252 return
2253
2254def register_Ns3PacketTagIterator_methods(root_module, cls):
2255 ## packet.h (module 'network'): ns3::PacketTagIterator::PacketTagIterator(ns3::PacketTagIterator const & arg0) [copy constructor]
2256 cls.add_constructor([param('ns3::PacketTagIterator const &', 'arg0')])
2257 ## packet.h (module 'network'): bool ns3::PacketTagIterator::HasNext() const [member function]
2258 cls.add_method('HasNext',
2259 'bool',
2260 [],
2261 is_const=True)
2262 ## packet.h (module 'network'): ns3::PacketTagIterator::Item ns3::PacketTagIterator::Next() [member function]
2263 cls.add_method('Next',
2264 'ns3::PacketTagIterator::Item',
2265 [])
2266 return
2267
2268def register_Ns3PacketTagIteratorItem_methods(root_module, cls):
2269 ## packet.h (module 'network'): ns3::PacketTagIterator::Item::Item(ns3::PacketTagIterator::Item const & arg0) [copy constructor]
2270 cls.add_constructor([param('ns3::PacketTagIterator::Item const &', 'arg0')])
2271 ## packet.h (module 'network'): void ns3::PacketTagIterator::Item::GetTag(ns3::Tag & tag) const [member function]
2272 cls.add_method('GetTag',
2273 'void',
2274 [param('ns3::Tag &', 'tag')],
2275 is_const=True)
2276 ## packet.h (module 'network'): ns3::TypeId ns3::PacketTagIterator::Item::GetTypeId() const [member function]
2277 cls.add_method('GetTypeId',
2278 'ns3::TypeId',
2279 [],
2280 is_const=True)
2281 return
2282
2283def register_Ns3PacketTagList_methods(root_module, cls):
2284 ## packet-tag-list.h (module 'network'): ns3::PacketTagList::PacketTagList() [constructor]
2285 cls.add_constructor([])
2286 ## packet-tag-list.h (module 'network'): ns3::PacketTagList::PacketTagList(ns3::PacketTagList const & o) [copy constructor]
2287 cls.add_constructor([param('ns3::PacketTagList const &', 'o')])
2288 ## packet-tag-list.h (module 'network'): void ns3::PacketTagList::Add(ns3::Tag const & tag) const [member function]
2289 cls.add_method('Add',
2290 'void',
2291 [param('ns3::Tag const &', 'tag')],
2292 is_const=True)
2293 ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData const * ns3::PacketTagList::Head() const [member function]
2294 cls.add_method('Head',
2295 'ns3::PacketTagList::TagData const *',
2296 [],
2297 is_const=True)
2298 ## packet-tag-list.h (module 'network'): bool ns3::PacketTagList::Peek(ns3::Tag & tag) const [member function]
2299 cls.add_method('Peek',
2300 'bool',
2301 [param('ns3::Tag &', 'tag')],
2302 is_const=True)
2303 ## packet-tag-list.h (module 'network'): bool ns3::PacketTagList::Remove(ns3::Tag & tag) [member function]
2304 cls.add_method('Remove',
2305 'bool',
2306 [param('ns3::Tag &', 'tag')])
2307 ## packet-tag-list.h (module 'network'): void ns3::PacketTagList::RemoveAll() [member function]
2308 cls.add_method('RemoveAll',
2309 'void',
2310 [])
2311 return
2312
2313def register_Ns3PacketTagListTagData_methods(root_module, cls):
2314 ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData::TagData() [constructor]
2315 cls.add_constructor([])
2316 ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData::TagData(ns3::PacketTagList::TagData const & arg0) [copy constructor]
2317 cls.add_constructor([param('ns3::PacketTagList::TagData const &', 'arg0')])
2318 ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData::count [variable]
2319 cls.add_instance_attribute('count', 'uint32_t', is_const=False)
2320 ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData::data [variable]
2321 cls.add_instance_attribute('data', 'uint8_t [ 20 ]', is_const=False)
2322 ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData::next [variable]
2323 cls.add_instance_attribute('next', 'ns3::PacketTagList::TagData *', is_const=False)
2324 ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData::tid [variable]
2325 cls.add_instance_attribute('tid', 'ns3::TypeId', is_const=False)
2326 return
2327
2328def register_Ns3PcapFile_methods(root_module, cls):
2329 ## pcap-file.h (module 'network'): ns3::PcapFile::PcapFile() [constructor]
2330 cls.add_constructor([])
2331 ## pcap-file.h (module 'network'): void ns3::PcapFile::Clear() [member function]
2332 cls.add_method('Clear',
2333 'void',
2334 [])
2335 ## pcap-file.h (module 'network'): void ns3::PcapFile::Close() [member function]
2336 cls.add_method('Close',
2337 'void',
2338 [])
2339 ## pcap-file.h (module 'network'): static bool ns3::PcapFile::Diff(std::string const & f1, std::string const & f2, uint32_t & sec, uint32_t & usec, uint32_t snapLen=ns3::PcapFile::SNAPLEN_DEFAULT) [member function]
2340 cls.add_method('Diff',
2341 'bool',
2342 [param('std::string const &', 'f1'), param('std::string const &', 'f2'), param('uint32_t &', 'sec'), param('uint32_t &', 'usec'), param('uint32_t', 'snapLen', default_value='ns3::PcapFile::SNAPLEN_DEFAULT')],
2343 is_static=True)
2344 ## pcap-file.h (module 'network'): bool ns3::PcapFile::Eof() const [member function]
2345 cls.add_method('Eof',
2346 'bool',
2347 [],
2348 is_const=True)
2349 ## pcap-file.h (module 'network'): bool ns3::PcapFile::Fail() const [member function]
2350 cls.add_method('Fail',
2351 'bool',
2352 [],
2353 is_const=True)
2354 ## pcap-file.h (module 'network'): uint32_t ns3::PcapFile::GetDataLinkType() [member function]
2355 cls.add_method('GetDataLinkType',
2356 'uint32_t',
2357 [])
2358 ## pcap-file.h (module 'network'): uint32_t ns3::PcapFile::GetMagic() [member function]
2359 cls.add_method('GetMagic',
2360 'uint32_t',
2361 [])
2362 ## pcap-file.h (module 'network'): uint32_t ns3::PcapFile::GetSigFigs() [member function]
2363 cls.add_method('GetSigFigs',
2364 'uint32_t',
2365 [])
2366 ## pcap-file.h (module 'network'): uint32_t ns3::PcapFile::GetSnapLen() [member function]
2367 cls.add_method('GetSnapLen',
2368 'uint32_t',
2369 [])
2370 ## pcap-file.h (module 'network'): bool ns3::PcapFile::GetSwapMode() [member function]
2371 cls.add_method('GetSwapMode',
2372 'bool',
2373 [])
2374 ## pcap-file.h (module 'network'): int32_t ns3::PcapFile::GetTimeZoneOffset() [member function]
2375 cls.add_method('GetTimeZoneOffset',
2376 'int32_t',
2377 [])
2378 ## pcap-file.h (module 'network'): uint16_t ns3::PcapFile::GetVersionMajor() [member function]
2379 cls.add_method('GetVersionMajor',
2380 'uint16_t',
2381 [])
2382 ## pcap-file.h (module 'network'): uint16_t ns3::PcapFile::GetVersionMinor() [member function]
2383 cls.add_method('GetVersionMinor',
2384 'uint16_t',
2385 [])
2386 ## pcap-file.h (module 'network'): void ns3::PcapFile::Init(uint32_t dataLinkType, uint32_t snapLen=ns3::PcapFile::SNAPLEN_DEFAULT, int32_t timeZoneCorrection=ns3::PcapFile::ZONE_DEFAULT, bool swapMode=false) [member function]
2387 cls.add_method('Init',
2388 'void',
2389 [param('uint32_t', 'dataLinkType'), param('uint32_t', 'snapLen', default_value='ns3::PcapFile::SNAPLEN_DEFAULT'), param('int32_t', 'timeZoneCorrection', default_value='ns3::PcapFile::ZONE_DEFAULT'), param('bool', 'swapMode', default_value='false')])
2390 ## pcap-file.h (module 'network'): void ns3::PcapFile::Open(std::string const & filename, std::_Ios_Openmode mode) [member function]
2391 cls.add_method('Open',
2392 'void',
2393 [param('std::string const &', 'filename'), param('std::_Ios_Openmode', 'mode')])
2394 ## pcap-file.h (module 'network'): void ns3::PcapFile::Read(uint8_t * const data, uint32_t maxBytes, uint32_t & tsSec, uint32_t & tsUsec, uint32_t & inclLen, uint32_t & origLen, uint32_t & readLen) [member function]
2395 cls.add_method('Read',
2396 'void',
2397 [param('uint8_t * const', 'data'), param('uint32_t', 'maxBytes'), param('uint32_t &', 'tsSec'), param('uint32_t &', 'tsUsec'), param('uint32_t &', 'inclLen'), param('uint32_t &', 'origLen'), param('uint32_t &', 'readLen')])
2398 ## pcap-file.h (module 'network'): void ns3::PcapFile::Write(uint32_t tsSec, uint32_t tsUsec, uint8_t const * const data, uint32_t totalLen) [member function]
2399 cls.add_method('Write',
2400 'void',
2401 [param('uint32_t', 'tsSec'), param('uint32_t', 'tsUsec'), param('uint8_t const * const', 'data'), param('uint32_t', 'totalLen')])
2402 ## pcap-file.h (module 'network'): void ns3::PcapFile::Write(uint32_t tsSec, uint32_t tsUsec, ns3::Ptr<const ns3::Packet> p) [member function]
2403 cls.add_method('Write',
2404 'void',
2405 [param('uint32_t', 'tsSec'), param('uint32_t', 'tsUsec'), param('ns3::Ptr< ns3::Packet const >', 'p')])
2406 ## pcap-file.h (module 'network'): void ns3::PcapFile::Write(uint32_t tsSec, uint32_t tsUsec, ns3::Header & header, ns3::Ptr<const ns3::Packet> p) [member function]
2407 cls.add_method('Write',
2408 'void',
2409 [param('uint32_t', 'tsSec'), param('uint32_t', 'tsUsec'), param('ns3::Header &', 'header'), param('ns3::Ptr< ns3::Packet const >', 'p')])
2410 ## pcap-file.h (module 'network'): ns3::PcapFile::SNAPLEN_DEFAULT [variable]
2411 cls.add_static_attribute('SNAPLEN_DEFAULT', 'uint32_t const', is_const=True)
2412 ## pcap-file.h (module 'network'): ns3::PcapFile::ZONE_DEFAULT [variable]
2413 cls.add_static_attribute('ZONE_DEFAULT', 'int32_t const', is_const=True)
2414 return
2415
2416def register_Ns3PcapHelper_methods(root_module, cls):
2417 ## trace-helper.h (module 'network'): ns3::PcapHelper::PcapHelper(ns3::PcapHelper const & arg0) [copy constructor]
2418 cls.add_constructor([param('ns3::PcapHelper const &', 'arg0')])
2419 ## trace-helper.h (module 'network'): ns3::PcapHelper::PcapHelper() [constructor]
2420 cls.add_constructor([])
2421 ## trace-helper.h (module 'network'): ns3::Ptr<ns3::PcapFileWrapper> ns3::PcapHelper::CreateFile(std::string filename, std::_Ios_Openmode filemode, uint32_t dataLinkType, uint32_t snapLen=65535, int32_t tzCorrection=0) [member function]
2422 cls.add_method('CreateFile',
2423 'ns3::Ptr< ns3::PcapFileWrapper >',
2424 [param('std::string', 'filename'), param('std::_Ios_Openmode', 'filemode'), param('uint32_t', 'dataLinkType'), param('uint32_t', 'snapLen', default_value='65535'), param('int32_t', 'tzCorrection', default_value='0')])
2425 ## trace-helper.h (module 'network'): std::string ns3::PcapHelper::GetFilenameFromDevice(std::string prefix, ns3::Ptr<ns3::NetDevice> device, bool useObjectNames=true) [member function]
2426 cls.add_method('GetFilenameFromDevice',
2427 'std::string',
2428 [param('std::string', 'prefix'), param('ns3::Ptr< ns3::NetDevice >', 'device'), param('bool', 'useObjectNames', default_value='true')])
2429 ## trace-helper.h (module 'network'): std::string ns3::PcapHelper::GetFilenameFromInterfacePair(std::string prefix, ns3::Ptr<ns3::Object> object, uint32_t interface, bool useObjectNames=true) [member function]
2430 cls.add_method('GetFilenameFromInterfacePair',
2431 'std::string',
2432 [param('std::string', 'prefix'), param('ns3::Ptr< ns3::Object >', 'object'), param('uint32_t', 'interface'), param('bool', 'useObjectNames', default_value='true')])
2433 return
2434
2435def register_Ns3PcapHelperForCcnx_methods(root_module, cls):
2436 ## ccnx-trace-helper.h (module 'NDNabstraction'): ns3::PcapHelperForCcnx::PcapHelperForCcnx(ns3::PcapHelperForCcnx const & arg0) [copy constructor]
2437 cls.add_constructor([param('ns3::PcapHelperForCcnx const &', 'arg0')])
2438 ## ccnx-trace-helper.h (module 'NDNabstraction'): ns3::PcapHelperForCcnx::PcapHelperForCcnx() [constructor]
2439 cls.add_constructor([])
2440 ## ccnx-trace-helper.h (module 'NDNabstraction'): void ns3::PcapHelperForCcnx::EnablePcapCcnx(std::string prefix, ns3::Ptr<ns3::Ccnx> ccnx, uint32_t interface, bool explicitFilename=false) [member function]
2441 cls.add_method('EnablePcapCcnx',
2442 'void',
2443 [param('std::string', 'prefix'), param('ns3::Ptr< ns3::Ccnx >', 'ccnx'), param('uint32_t', 'interface'), param('bool', 'explicitFilename', default_value='false')])
2444 ## ccnx-trace-helper.h (module 'NDNabstraction'): void ns3::PcapHelperForCcnx::EnablePcapCcnx(std::string prefix, std::string ccnxName, uint32_t interface, bool explicitFilename=false) [member function]
2445 cls.add_method('EnablePcapCcnx',
2446 'void',
2447 [param('std::string', 'prefix'), param('std::string', 'ccnxName'), param('uint32_t', 'interface'), param('bool', 'explicitFilename', default_value='false')])
2448 ## ccnx-trace-helper.h (module 'NDNabstraction'): void ns3::PcapHelperForCcnx::EnablePcapCcnx(std::string prefix, ns3::CcnxFaceContainer c) [member function]
2449 cls.add_method('EnablePcapCcnx',
2450 'void',
2451 [param('std::string', 'prefix'), param('ns3::CcnxFaceContainer', 'c')])
2452 ## ccnx-trace-helper.h (module 'NDNabstraction'): void ns3::PcapHelperForCcnx::EnablePcapCcnx(std::string prefix, ns3::NodeContainer n) [member function]
2453 cls.add_method('EnablePcapCcnx',
2454 'void',
2455 [param('std::string', 'prefix'), param('ns3::NodeContainer', 'n')])
2456 ## ccnx-trace-helper.h (module 'NDNabstraction'): void ns3::PcapHelperForCcnx::EnablePcapCcnx(std::string prefix, uint32_t nodeid, uint32_t interface, bool explicitFilename) [member function]
2457 cls.add_method('EnablePcapCcnx',
2458 'void',
2459 [param('std::string', 'prefix'), param('uint32_t', 'nodeid'), param('uint32_t', 'interface'), param('bool', 'explicitFilename')])
2460 ## ccnx-trace-helper.h (module 'NDNabstraction'): void ns3::PcapHelperForCcnx::EnablePcapCcnxAll(std::string prefix) [member function]
2461 cls.add_method('EnablePcapCcnxAll',
2462 'void',
2463 [param('std::string', 'prefix')])
2464 ## ccnx-trace-helper.h (module 'NDNabstraction'): void ns3::PcapHelperForCcnx::EnablePcapCcnxInternal(std::string prefix, ns3::Ptr<ns3::Ccnx> ccnx, uint32_t interface, bool explicitFilename) [member function]
2465 cls.add_method('EnablePcapCcnxInternal',
2466 'void',
2467 [param('std::string', 'prefix'), param('ns3::Ptr< ns3::Ccnx >', 'ccnx'), param('uint32_t', 'interface'), param('bool', 'explicitFilename')],
2468 is_pure_virtual=True, is_virtual=True)
2469 return
2470
2471def register_Ns3PcapHelperForDevice_methods(root_module, cls):
2472 ## trace-helper.h (module 'network'): ns3::PcapHelperForDevice::PcapHelperForDevice(ns3::PcapHelperForDevice const & arg0) [copy constructor]
2473 cls.add_constructor([param('ns3::PcapHelperForDevice const &', 'arg0')])
2474 ## trace-helper.h (module 'network'): ns3::PcapHelperForDevice::PcapHelperForDevice() [constructor]
2475 cls.add_constructor([])
2476 ## trace-helper.h (module 'network'): void ns3::PcapHelperForDevice::EnablePcap(std::string prefix, ns3::Ptr<ns3::NetDevice> nd, bool promiscuous=false, bool explicitFilename=false) [member function]
2477 cls.add_method('EnablePcap',
2478 'void',
2479 [param('std::string', 'prefix'), param('ns3::Ptr< ns3::NetDevice >', 'nd'), param('bool', 'promiscuous', default_value='false'), param('bool', 'explicitFilename', default_value='false')])
2480 ## trace-helper.h (module 'network'): void ns3::PcapHelperForDevice::EnablePcap(std::string prefix, std::string ndName, bool promiscuous=false, bool explicitFilename=false) [member function]
2481 cls.add_method('EnablePcap',
2482 'void',
2483 [param('std::string', 'prefix'), param('std::string', 'ndName'), param('bool', 'promiscuous', default_value='false'), param('bool', 'explicitFilename', default_value='false')])
2484 ## trace-helper.h (module 'network'): void ns3::PcapHelperForDevice::EnablePcap(std::string prefix, ns3::NetDeviceContainer d, bool promiscuous=false) [member function]
2485 cls.add_method('EnablePcap',
2486 'void',
2487 [param('std::string', 'prefix'), param('ns3::NetDeviceContainer', 'd'), param('bool', 'promiscuous', default_value='false')])
2488 ## trace-helper.h (module 'network'): void ns3::PcapHelperForDevice::EnablePcap(std::string prefix, ns3::NodeContainer n, bool promiscuous=false) [member function]
2489 cls.add_method('EnablePcap',
2490 'void',
2491 [param('std::string', 'prefix'), param('ns3::NodeContainer', 'n'), param('bool', 'promiscuous', default_value='false')])
2492 ## trace-helper.h (module 'network'): void ns3::PcapHelperForDevice::EnablePcap(std::string prefix, uint32_t nodeid, uint32_t deviceid, bool promiscuous=false) [member function]
2493 cls.add_method('EnablePcap',
2494 'void',
2495 [param('std::string', 'prefix'), param('uint32_t', 'nodeid'), param('uint32_t', 'deviceid'), param('bool', 'promiscuous', default_value='false')])
2496 ## trace-helper.h (module 'network'): void ns3::PcapHelperForDevice::EnablePcapAll(std::string prefix, bool promiscuous=false) [member function]
2497 cls.add_method('EnablePcapAll',
2498 'void',
2499 [param('std::string', 'prefix'), param('bool', 'promiscuous', default_value='false')])
2500 ## trace-helper.h (module 'network'): void ns3::PcapHelperForDevice::EnablePcapInternal(std::string prefix, ns3::Ptr<ns3::NetDevice> nd, bool promiscuous, bool explicitFilename) [member function]
2501 cls.add_method('EnablePcapInternal',
2502 'void',
2503 [param('std::string', 'prefix'), param('ns3::Ptr< ns3::NetDevice >', 'nd'), param('bool', 'promiscuous'), param('bool', 'explicitFilename')],
2504 is_pure_virtual=True, is_virtual=True)
2505 return
2506
Ilya Moiseenko02fb7062011-08-11 17:18:00 -07002507def register_Ns3RandomVariable_methods(root_module, cls):
2508 cls.add_output_stream_operator()
2509 ## random-variable.h (module 'core'): ns3::RandomVariable::RandomVariable() [constructor]
2510 cls.add_constructor([])
2511 ## random-variable.h (module 'core'): ns3::RandomVariable::RandomVariable(ns3::RandomVariable const & o) [copy constructor]
2512 cls.add_constructor([param('ns3::RandomVariable const &', 'o')])
2513 ## random-variable.h (module 'core'): uint32_t ns3::RandomVariable::GetInteger() const [member function]
2514 cls.add_method('GetInteger',
2515 'uint32_t',
2516 [],
2517 is_const=True)
2518 ## random-variable.h (module 'core'): double ns3::RandomVariable::GetValue() const [member function]
2519 cls.add_method('GetValue',
2520 'double',
2521 [],
2522 is_const=True)
2523 return
2524
2525def register_Ns3SeedManager_methods(root_module, cls):
2526 ## random-variable.h (module 'core'): ns3::SeedManager::SeedManager() [constructor]
2527 cls.add_constructor([])
2528 ## random-variable.h (module 'core'): ns3::SeedManager::SeedManager(ns3::SeedManager const & arg0) [copy constructor]
2529 cls.add_constructor([param('ns3::SeedManager const &', 'arg0')])
2530 ## random-variable.h (module 'core'): static bool ns3::SeedManager::CheckSeed(uint32_t seed) [member function]
2531 cls.add_method('CheckSeed',
2532 'bool',
2533 [param('uint32_t', 'seed')],
2534 is_static=True)
2535 ## random-variable.h (module 'core'): static uint32_t ns3::SeedManager::GetRun() [member function]
2536 cls.add_method('GetRun',
2537 'uint32_t',
2538 [],
2539 is_static=True)
2540 ## random-variable.h (module 'core'): static uint32_t ns3::SeedManager::GetSeed() [member function]
2541 cls.add_method('GetSeed',
2542 'uint32_t',
2543 [],
2544 is_static=True)
2545 ## random-variable.h (module 'core'): static void ns3::SeedManager::SetRun(uint32_t run) [member function]
2546 cls.add_method('SetRun',
2547 'void',
2548 [param('uint32_t', 'run')],
2549 is_static=True)
2550 ## random-variable.h (module 'core'): static void ns3::SeedManager::SetSeed(uint32_t seed) [member function]
2551 cls.add_method('SetSeed',
2552 'void',
2553 [param('uint32_t', 'seed')],
2554 is_static=True)
2555 return
2556
2557def register_Ns3SequentialVariable_methods(root_module, cls):
2558 ## random-variable.h (module 'core'): ns3::SequentialVariable::SequentialVariable(ns3::SequentialVariable const & arg0) [copy constructor]
2559 cls.add_constructor([param('ns3::SequentialVariable const &', 'arg0')])
2560 ## random-variable.h (module 'core'): ns3::SequentialVariable::SequentialVariable(double f, double l, double i=1, uint32_t c=1) [constructor]
2561 cls.add_constructor([param('double', 'f'), param('double', 'l'), param('double', 'i', default_value='1'), param('uint32_t', 'c', default_value='1')])
2562 ## random-variable.h (module 'core'): ns3::SequentialVariable::SequentialVariable(double f, double l, ns3::RandomVariable const & i, uint32_t c=1) [constructor]
2563 cls.add_constructor([param('double', 'f'), param('double', 'l'), param('ns3::RandomVariable const &', 'i'), param('uint32_t', 'c', default_value='1')])
2564 return
2565
Alexander Afanasyeveface602011-08-17 17:50:12 -07002566def register_Ns3SimpleRefCount__Ns3Chunk_Ns3ObjectBase_Ns3DefaultDeleter__lt__ns3Chunk__gt___methods(root_module, cls):
2567 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Chunk, ns3::ObjectBase, ns3::DefaultDeleter<ns3::Chunk> >::SimpleRefCount() [constructor]
2568 cls.add_constructor([])
2569 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Chunk, ns3::ObjectBase, ns3::DefaultDeleter<ns3::Chunk> >::SimpleRefCount(ns3::SimpleRefCount<ns3::Chunk, ns3::ObjectBase, ns3::DefaultDeleter<ns3::Chunk> > const & o) [copy constructor]
2570 cls.add_constructor([param('ns3::SimpleRefCount< ns3::Chunk, ns3::ObjectBase, ns3::DefaultDeleter< ns3::Chunk > > const &', 'o')])
2571 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::Chunk, ns3::ObjectBase, ns3::DefaultDeleter<ns3::Chunk> >::Cleanup() [member function]
2572 cls.add_method('Cleanup',
2573 'void',
2574 [],
2575 is_static=True)
2576 return
2577
Ilya Moiseenko1762af72011-07-18 16:43:10 -07002578def register_Ns3SimpleRefCount__Ns3Object_Ns3ObjectBase_Ns3ObjectDeleter_methods(root_module, cls):
2579 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter>::SimpleRefCount() [constructor]
2580 cls.add_constructor([])
2581 ## 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]
2582 cls.add_constructor([param('ns3::SimpleRefCount< ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter > const &', 'o')])
2583 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter>::Cleanup() [member function]
2584 cls.add_method('Cleanup',
2585 'void',
2586 [],
2587 is_static=True)
2588 return
2589
Alexander Afanasyeveface602011-08-17 17:50:12 -07002590def register_Ns3Simulator_methods(root_module, cls):
2591 ## simulator.h (module 'core'): ns3::Simulator::Simulator(ns3::Simulator const & arg0) [copy constructor]
2592 cls.add_constructor([param('ns3::Simulator const &', 'arg0')])
2593 ## simulator.h (module 'core'): static void ns3::Simulator::Cancel(ns3::EventId const & id) [member function]
2594 cls.add_method('Cancel',
2595 'void',
2596 [param('ns3::EventId const &', 'id')],
2597 is_static=True)
2598 ## simulator.h (module 'core'): static void ns3::Simulator::Destroy() [member function]
2599 cls.add_method('Destroy',
2600 'void',
2601 [],
2602 is_static=True)
2603 ## simulator.h (module 'core'): static uint32_t ns3::Simulator::GetContext() [member function]
2604 cls.add_method('GetContext',
2605 'uint32_t',
2606 [],
2607 is_static=True)
2608 ## simulator.h (module 'core'): static ns3::Time ns3::Simulator::GetDelayLeft(ns3::EventId const & id) [member function]
2609 cls.add_method('GetDelayLeft',
2610 'ns3::Time',
2611 [param('ns3::EventId const &', 'id')],
2612 is_static=True)
2613 ## simulator.h (module 'core'): static ns3::Ptr<ns3::SimulatorImpl> ns3::Simulator::GetImplementation() [member function]
2614 cls.add_method('GetImplementation',
2615 'ns3::Ptr< ns3::SimulatorImpl >',
2616 [],
2617 is_static=True)
2618 ## simulator.h (module 'core'): static ns3::Time ns3::Simulator::GetMaximumSimulationTime() [member function]
2619 cls.add_method('GetMaximumSimulationTime',
2620 'ns3::Time',
2621 [],
2622 is_static=True)
2623 ## simulator.h (module 'core'): static uint32_t ns3::Simulator::GetSystemId() [member function]
2624 cls.add_method('GetSystemId',
2625 'uint32_t',
2626 [],
2627 is_static=True)
2628 ## simulator.h (module 'core'): static bool ns3::Simulator::IsExpired(ns3::EventId const & id) [member function]
2629 cls.add_method('IsExpired',
2630 'bool',
2631 [param('ns3::EventId const &', 'id')],
2632 is_static=True)
2633 ## simulator.h (module 'core'): static bool ns3::Simulator::IsFinished() [member function]
2634 cls.add_method('IsFinished',
2635 'bool',
2636 [],
2637 is_static=True)
2638 ## simulator.h (module 'core'): static ns3::Time ns3::Simulator::Next() [member function]
2639 cls.add_method('Next',
2640 'ns3::Time',
2641 [],
2642 is_static=True, deprecated=True)
2643 ## simulator.h (module 'core'): static ns3::Time ns3::Simulator::Now() [member function]
2644 cls.add_method('Now',
2645 'ns3::Time',
2646 [],
2647 is_static=True)
2648 ## simulator.h (module 'core'): static void ns3::Simulator::Remove(ns3::EventId const & id) [member function]
2649 cls.add_method('Remove',
2650 'void',
2651 [param('ns3::EventId const &', 'id')],
2652 is_static=True)
2653 ## simulator.h (module 'core'): static void ns3::Simulator::RunOneEvent() [member function]
2654 cls.add_method('RunOneEvent',
2655 'void',
2656 [],
2657 is_static=True, deprecated=True)
2658 ## simulator.h (module 'core'): static void ns3::Simulator::SetImplementation(ns3::Ptr<ns3::SimulatorImpl> impl) [member function]
2659 cls.add_method('SetImplementation',
2660 'void',
2661 [param('ns3::Ptr< ns3::SimulatorImpl >', 'impl')],
2662 is_static=True)
2663 ## simulator.h (module 'core'): static void ns3::Simulator::SetScheduler(ns3::ObjectFactory schedulerFactory) [member function]
2664 cls.add_method('SetScheduler',
2665 'void',
2666 [param('ns3::ObjectFactory', 'schedulerFactory')],
2667 is_static=True)
2668 ## simulator.h (module 'core'): static void ns3::Simulator::Stop() [member function]
2669 cls.add_method('Stop',
2670 'void',
2671 [],
2672 is_static=True)
2673 ## simulator.h (module 'core'): static void ns3::Simulator::Stop(ns3::Time const & time) [member function]
2674 cls.add_method('Stop',
2675 'void',
2676 [param('ns3::Time const &', 'time')],
2677 is_static=True)
2678 return
2679
Ilya Moiseenko02fb7062011-08-11 17:18:00 -07002680def register_Ns3StupidInterestGeneratorHelper_methods(root_module, cls):
2681 ## ndn_stupidinterestgenerator_helper.h (module 'NDNabstraction'): ns3::StupidInterestGeneratorHelper::StupidInterestGeneratorHelper(ns3::StupidInterestGeneratorHelper const & arg0) [copy constructor]
2682 cls.add_constructor([param('ns3::StupidInterestGeneratorHelper const &', 'arg0')])
2683 ## ndn_stupidinterestgenerator_helper.h (module 'NDNabstraction'): ns3::StupidInterestGeneratorHelper::StupidInterestGeneratorHelper(std::string protocol, ns3::Address address) [constructor]
2684 cls.add_constructor([param('std::string', 'protocol'), param('ns3::Address', 'address')])
2685 ## ndn_stupidinterestgenerator_helper.h (module 'NDNabstraction'): ns3::ApplicationContainer ns3::StupidInterestGeneratorHelper::Install(ns3::NodeContainer c) const [member function]
2686 cls.add_method('Install',
2687 'ns3::ApplicationContainer',
2688 [param('ns3::NodeContainer', 'c')],
Ilya Moiseenko1762af72011-07-18 16:43:10 -07002689 is_const=True)
Ilya Moiseenko02fb7062011-08-11 17:18:00 -07002690 ## ndn_stupidinterestgenerator_helper.h (module 'NDNabstraction'): ns3::ApplicationContainer ns3::StupidInterestGeneratorHelper::Install(ns3::Ptr<ns3::Node> node) const [member function]
2691 cls.add_method('Install',
2692 'ns3::ApplicationContainer',
2693 [param('ns3::Ptr< ns3::Node >', 'node')],
Ilya Moiseenko1762af72011-07-18 16:43:10 -07002694 is_const=True)
Ilya Moiseenko02fb7062011-08-11 17:18:00 -07002695 ## ndn_stupidinterestgenerator_helper.h (module 'NDNabstraction'): ns3::ApplicationContainer ns3::StupidInterestGeneratorHelper::Install(std::string nodeName) const [member function]
2696 cls.add_method('Install',
2697 'ns3::ApplicationContainer',
2698 [param('std::string', 'nodeName')],
Ilya Moiseenko1762af72011-07-18 16:43:10 -07002699 is_const=True)
Ilya Moiseenko02fb7062011-08-11 17:18:00 -07002700 ## ndn_stupidinterestgenerator_helper.h (module 'NDNabstraction'): void ns3::StupidInterestGeneratorHelper::SetAttribute(std::string name, ns3::AttributeValue const & value) [member function]
2701 cls.add_method('SetAttribute',
Ilya Moiseenko1762af72011-07-18 16:43:10 -07002702 'void',
Ilya Moiseenko02fb7062011-08-11 17:18:00 -07002703 [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')])
Ilya Moiseenko1762af72011-07-18 16:43:10 -07002704 return
2705
2706def register_Ns3Tag_methods(root_module, cls):
2707 ## tag.h (module 'network'): ns3::Tag::Tag() [constructor]
2708 cls.add_constructor([])
2709 ## tag.h (module 'network'): ns3::Tag::Tag(ns3::Tag const & arg0) [copy constructor]
2710 cls.add_constructor([param('ns3::Tag const &', 'arg0')])
2711 ## tag.h (module 'network'): void ns3::Tag::Deserialize(ns3::TagBuffer i) [member function]
2712 cls.add_method('Deserialize',
2713 'void',
2714 [param('ns3::TagBuffer', 'i')],
2715 is_pure_virtual=True, is_virtual=True)
2716 ## tag.h (module 'network'): uint32_t ns3::Tag::GetSerializedSize() const [member function]
2717 cls.add_method('GetSerializedSize',
2718 'uint32_t',
2719 [],
2720 is_pure_virtual=True, is_const=True, is_virtual=True)
2721 ## tag.h (module 'network'): static ns3::TypeId ns3::Tag::GetTypeId() [member function]
2722 cls.add_method('GetTypeId',
2723 'ns3::TypeId',
2724 [],
2725 is_static=True)
2726 ## tag.h (module 'network'): void ns3::Tag::Print(std::ostream & os) const [member function]
2727 cls.add_method('Print',
2728 'void',
2729 [param('std::ostream &', 'os')],
2730 is_pure_virtual=True, is_const=True, is_virtual=True)
2731 ## tag.h (module 'network'): void ns3::Tag::Serialize(ns3::TagBuffer i) const [member function]
2732 cls.add_method('Serialize',
2733 'void',
2734 [param('ns3::TagBuffer', 'i')],
2735 is_pure_virtual=True, is_const=True, is_virtual=True)
2736 return
2737
2738def register_Ns3TagBuffer_methods(root_module, cls):
2739 ## tag-buffer.h (module 'network'): ns3::TagBuffer::TagBuffer(ns3::TagBuffer const & arg0) [copy constructor]
2740 cls.add_constructor([param('ns3::TagBuffer const &', 'arg0')])
2741 ## tag-buffer.h (module 'network'): ns3::TagBuffer::TagBuffer(uint8_t * start, uint8_t * end) [constructor]
2742 cls.add_constructor([param('uint8_t *', 'start'), param('uint8_t *', 'end')])
2743 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::CopyFrom(ns3::TagBuffer o) [member function]
2744 cls.add_method('CopyFrom',
2745 'void',
2746 [param('ns3::TagBuffer', 'o')])
2747 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::Read(uint8_t * buffer, uint32_t size) [member function]
2748 cls.add_method('Read',
2749 'void',
2750 [param('uint8_t *', 'buffer'), param('uint32_t', 'size')])
2751 ## tag-buffer.h (module 'network'): double ns3::TagBuffer::ReadDouble() [member function]
2752 cls.add_method('ReadDouble',
2753 'double',
2754 [])
2755 ## tag-buffer.h (module 'network'): uint16_t ns3::TagBuffer::ReadU16() [member function]
2756 cls.add_method('ReadU16',
2757 'uint16_t',
2758 [])
2759 ## tag-buffer.h (module 'network'): uint32_t ns3::TagBuffer::ReadU32() [member function]
2760 cls.add_method('ReadU32',
2761 'uint32_t',
2762 [])
2763 ## tag-buffer.h (module 'network'): uint64_t ns3::TagBuffer::ReadU64() [member function]
2764 cls.add_method('ReadU64',
2765 'uint64_t',
2766 [])
2767 ## tag-buffer.h (module 'network'): uint8_t ns3::TagBuffer::ReadU8() [member function]
2768 cls.add_method('ReadU8',
2769 'uint8_t',
2770 [])
2771 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::TrimAtEnd(uint32_t trim) [member function]
2772 cls.add_method('TrimAtEnd',
2773 'void',
2774 [param('uint32_t', 'trim')])
2775 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::Write(uint8_t const * buffer, uint32_t size) [member function]
2776 cls.add_method('Write',
2777 'void',
2778 [param('uint8_t const *', 'buffer'), param('uint32_t', 'size')])
2779 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::WriteDouble(double v) [member function]
2780 cls.add_method('WriteDouble',
2781 'void',
2782 [param('double', 'v')])
2783 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::WriteU16(uint16_t data) [member function]
2784 cls.add_method('WriteU16',
2785 'void',
2786 [param('uint16_t', 'data')])
2787 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::WriteU32(uint32_t data) [member function]
2788 cls.add_method('WriteU32',
2789 'void',
2790 [param('uint32_t', 'data')])
2791 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::WriteU64(uint64_t v) [member function]
2792 cls.add_method('WriteU64',
2793 'void',
2794 [param('uint64_t', 'v')])
2795 ## tag-buffer.h (module 'network'): void ns3::TagBuffer::WriteU8(uint8_t v) [member function]
2796 cls.add_method('WriteU8',
2797 'void',
2798 [param('uint8_t', 'v')])
2799 return
2800
Ilya Moiseenko02fb7062011-08-11 17:18:00 -07002801def register_Ns3TriangularVariable_methods(root_module, cls):
2802 ## random-variable.h (module 'core'): ns3::TriangularVariable::TriangularVariable(ns3::TriangularVariable const & arg0) [copy constructor]
2803 cls.add_constructor([param('ns3::TriangularVariable const &', 'arg0')])
2804 ## random-variable.h (module 'core'): ns3::TriangularVariable::TriangularVariable() [constructor]
Ilya Moiseenko1762af72011-07-18 16:43:10 -07002805 cls.add_constructor([])
Ilya Moiseenko02fb7062011-08-11 17:18:00 -07002806 ## random-variable.h (module 'core'): ns3::TriangularVariable::TriangularVariable(double s, double l, double mean) [constructor]
2807 cls.add_constructor([param('double', 's'), param('double', 'l'), param('double', 'mean')])
Ilya Moiseenko1762af72011-07-18 16:43:10 -07002808 return
2809
2810def register_Ns3TypeId_methods(root_module, cls):
Ilya Moiseenko1762af72011-07-18 16:43:10 -07002811 cls.add_binary_comparison_operator('!=')
Alexander Afanasyeveface602011-08-17 17:50:12 -07002812 cls.add_binary_comparison_operator('<')
Ilya Moiseenko1762af72011-07-18 16:43:10 -07002813 cls.add_output_stream_operator()
2814 cls.add_binary_comparison_operator('==')
2815 ## type-id.h (module 'core'): ns3::TypeId::TypeId(char const * name) [constructor]
2816 cls.add_constructor([param('char const *', 'name')])
2817 ## type-id.h (module 'core'): ns3::TypeId::TypeId() [constructor]
2818 cls.add_constructor([])
2819 ## type-id.h (module 'core'): ns3::TypeId::TypeId(ns3::TypeId const & o) [copy constructor]
2820 cls.add_constructor([param('ns3::TypeId const &', 'o')])
2821 ## 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]
2822 cls.add_method('AddAttribute',
2823 'ns3::TypeId',
2824 [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')])
2825 ## 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]
2826 cls.add_method('AddAttribute',
2827 'ns3::TypeId',
2828 [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')])
Alexander Afanasyeveface602011-08-17 17:50:12 -07002829 ## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::AddTraceSource(std::string name, std::string help, ns3::Ptr<ns3::TraceSourceAccessor const> accessor) [member function]
Ilya Moiseenko1762af72011-07-18 16:43:10 -07002830 cls.add_method('AddTraceSource',
2831 'ns3::TypeId',
2832 [param('std::string', 'name'), param('std::string', 'help'), param('ns3::Ptr< ns3::TraceSourceAccessor const >', 'accessor')])
Alexander Afanasyeveface602011-08-17 17:50:12 -07002833 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation ns3::TypeId::GetAttribute(uint32_t i) const [member function]
2834 cls.add_method('GetAttribute',
2835 'ns3::TypeId::AttributeInformation',
Ilya Moiseenko1762af72011-07-18 16:43:10 -07002836 [param('uint32_t', 'i')],
2837 is_const=True)
2838 ## type-id.h (module 'core'): std::string ns3::TypeId::GetAttributeFullName(uint32_t i) const [member function]
2839 cls.add_method('GetAttributeFullName',
2840 'std::string',
2841 [param('uint32_t', 'i')],
2842 is_const=True)
Ilya Moiseenko1762af72011-07-18 16:43:10 -07002843 ## type-id.h (module 'core'): uint32_t ns3::TypeId::GetAttributeN() const [member function]
2844 cls.add_method('GetAttributeN',
2845 'uint32_t',
2846 [],
2847 is_const=True)
Ilya Moiseenko1762af72011-07-18 16:43:10 -07002848 ## 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]
2849 cls.add_method('GetConstructor',
2850 'ns3::Callback< ns3::ObjectBase *, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >',
2851 [],
2852 is_const=True)
2853 ## type-id.h (module 'core'): std::string ns3::TypeId::GetGroupName() const [member function]
2854 cls.add_method('GetGroupName',
2855 'std::string',
2856 [],
2857 is_const=True)
2858 ## type-id.h (module 'core'): std::string ns3::TypeId::GetName() const [member function]
2859 cls.add_method('GetName',
2860 'std::string',
2861 [],
2862 is_const=True)
2863 ## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::GetParent() const [member function]
2864 cls.add_method('GetParent',
2865 'ns3::TypeId',
2866 [],
2867 is_const=True)
2868 ## type-id.h (module 'core'): static ns3::TypeId ns3::TypeId::GetRegistered(uint32_t i) [member function]
2869 cls.add_method('GetRegistered',
2870 'ns3::TypeId',
2871 [param('uint32_t', 'i')],
2872 is_static=True)
2873 ## type-id.h (module 'core'): static uint32_t ns3::TypeId::GetRegisteredN() [member function]
2874 cls.add_method('GetRegisteredN',
2875 'uint32_t',
2876 [],
2877 is_static=True)
Alexander Afanasyeveface602011-08-17 17:50:12 -07002878 ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation ns3::TypeId::GetTraceSource(uint32_t i) const [member function]
2879 cls.add_method('GetTraceSource',
2880 'ns3::TypeId::TraceSourceInformation',
Ilya Moiseenko1762af72011-07-18 16:43:10 -07002881 [param('uint32_t', 'i')],
2882 is_const=True)
2883 ## type-id.h (module 'core'): uint32_t ns3::TypeId::GetTraceSourceN() const [member function]
2884 cls.add_method('GetTraceSourceN',
2885 'uint32_t',
2886 [],
2887 is_const=True)
Ilya Moiseenko1762af72011-07-18 16:43:10 -07002888 ## type-id.h (module 'core'): uint16_t ns3::TypeId::GetUid() const [member function]
2889 cls.add_method('GetUid',
2890 'uint16_t',
2891 [],
2892 is_const=True)
2893 ## type-id.h (module 'core'): bool ns3::TypeId::HasConstructor() const [member function]
2894 cls.add_method('HasConstructor',
2895 'bool',
2896 [],
2897 is_const=True)
2898 ## type-id.h (module 'core'): bool ns3::TypeId::HasParent() const [member function]
2899 cls.add_method('HasParent',
2900 'bool',
2901 [],
2902 is_const=True)
2903 ## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::HideFromDocumentation() [member function]
2904 cls.add_method('HideFromDocumentation',
2905 'ns3::TypeId',
2906 [])
2907 ## type-id.h (module 'core'): bool ns3::TypeId::IsChildOf(ns3::TypeId other) const [member function]
2908 cls.add_method('IsChildOf',
2909 'bool',
2910 [param('ns3::TypeId', 'other')],
2911 is_const=True)
Alexander Afanasyeveface602011-08-17 17:50:12 -07002912 ## type-id.h (module 'core'): bool ns3::TypeId::LookupAttributeByName(std::string name, ns3::TypeId::AttributeInformation * info) const [member function]
Ilya Moiseenko1762af72011-07-18 16:43:10 -07002913 cls.add_method('LookupAttributeByName',
2914 'bool',
Alexander Afanasyeveface602011-08-17 17:50:12 -07002915 [param('std::string', 'name'), param('ns3::TypeId::AttributeInformation *', 'info')],
Ilya Moiseenko1762af72011-07-18 16:43:10 -07002916 is_const=True)
2917 ## type-id.h (module 'core'): static ns3::TypeId ns3::TypeId::LookupByName(std::string name) [member function]
2918 cls.add_method('LookupByName',
2919 'ns3::TypeId',
2920 [param('std::string', 'name')],
2921 is_static=True)
Alexander Afanasyeveface602011-08-17 17:50:12 -07002922 ## type-id.h (module 'core'): ns3::Ptr<ns3::TraceSourceAccessor const> ns3::TypeId::LookupTraceSourceByName(std::string name) const [member function]
Ilya Moiseenko1762af72011-07-18 16:43:10 -07002923 cls.add_method('LookupTraceSourceByName',
2924 'ns3::Ptr< ns3::TraceSourceAccessor const >',
2925 [param('std::string', 'name')],
2926 is_const=True)
2927 ## type-id.h (module 'core'): bool ns3::TypeId::MustHideFromDocumentation() const [member function]
2928 cls.add_method('MustHideFromDocumentation',
2929 'bool',
2930 [],
2931 is_const=True)
Alexander Afanasyeveface602011-08-17 17:50:12 -07002932 ## type-id.h (module 'core'): bool ns3::TypeId::SetAttributeInitialValue(uint32_t i, ns3::Ptr<ns3::AttributeValue const> initialValue) [member function]
2933 cls.add_method('SetAttributeInitialValue',
2934 'bool',
2935 [param('uint32_t', 'i'), param('ns3::Ptr< ns3::AttributeValue const >', 'initialValue')])
Ilya Moiseenko1762af72011-07-18 16:43:10 -07002936 ## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::SetGroupName(std::string groupName) [member function]
2937 cls.add_method('SetGroupName',
2938 'ns3::TypeId',
2939 [param('std::string', 'groupName')])
2940 ## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::SetParent(ns3::TypeId tid) [member function]
2941 cls.add_method('SetParent',
2942 'ns3::TypeId',
2943 [param('ns3::TypeId', 'tid')])
2944 ## type-id.h (module 'core'): void ns3::TypeId::SetUid(uint16_t tid) [member function]
2945 cls.add_method('SetUid',
2946 'void',
2947 [param('uint16_t', 'tid')])
2948 return
2949
Alexander Afanasyeveface602011-08-17 17:50:12 -07002950def register_Ns3TypeIdAttributeInformation_methods(root_module, cls):
2951 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::AttributeInformation() [constructor]
Ilya Moiseenko1762af72011-07-18 16:43:10 -07002952 cls.add_constructor([])
Alexander Afanasyeveface602011-08-17 17:50:12 -07002953 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::AttributeInformation(ns3::TypeId::AttributeInformation const & arg0) [copy constructor]
2954 cls.add_constructor([param('ns3::TypeId::AttributeInformation const &', 'arg0')])
2955 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::accessor [variable]
Ilya Moiseenko1762af72011-07-18 16:43:10 -07002956 cls.add_instance_attribute('accessor', 'ns3::Ptr< ns3::AttributeAccessor const >', is_const=False)
Alexander Afanasyeveface602011-08-17 17:50:12 -07002957 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::checker [variable]
Ilya Moiseenko1762af72011-07-18 16:43:10 -07002958 cls.add_instance_attribute('checker', 'ns3::Ptr< ns3::AttributeChecker const >', is_const=False)
Alexander Afanasyeveface602011-08-17 17:50:12 -07002959 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::flags [variable]
Ilya Moiseenko1762af72011-07-18 16:43:10 -07002960 cls.add_instance_attribute('flags', 'uint32_t', is_const=False)
Alexander Afanasyeveface602011-08-17 17:50:12 -07002961 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::help [variable]
2962 cls.add_instance_attribute('help', 'std::string', is_const=False)
2963 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::initialValue [variable]
Ilya Moiseenko1762af72011-07-18 16:43:10 -07002964 cls.add_instance_attribute('initialValue', 'ns3::Ptr< ns3::AttributeValue const >', is_const=False)
Alexander Afanasyeveface602011-08-17 17:50:12 -07002965 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::name [variable]
2966 cls.add_instance_attribute('name', 'std::string', is_const=False)
2967 ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::originalInitialValue [variable]
2968 cls.add_instance_attribute('originalInitialValue', 'ns3::Ptr< ns3::AttributeValue const >', is_const=False)
2969 return
2970
2971def register_Ns3TypeIdTraceSourceInformation_methods(root_module, cls):
2972 ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation::TraceSourceInformation() [constructor]
2973 cls.add_constructor([])
2974 ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation::TraceSourceInformation(ns3::TypeId::TraceSourceInformation const & arg0) [copy constructor]
2975 cls.add_constructor([param('ns3::TypeId::TraceSourceInformation const &', 'arg0')])
2976 ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation::accessor [variable]
2977 cls.add_instance_attribute('accessor', 'ns3::Ptr< ns3::TraceSourceAccessor const >', is_const=False)
2978 ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation::help [variable]
2979 cls.add_instance_attribute('help', 'std::string', is_const=False)
2980 ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation::name [variable]
2981 cls.add_instance_attribute('name', 'std::string', is_const=False)
Ilya Moiseenko1762af72011-07-18 16:43:10 -07002982 return
2983
Ilya Moiseenko02fb7062011-08-11 17:18:00 -07002984def register_Ns3UniformVariable_methods(root_module, cls):
2985 ## random-variable.h (module 'core'): ns3::UniformVariable::UniformVariable(ns3::UniformVariable const & arg0) [copy constructor]
2986 cls.add_constructor([param('ns3::UniformVariable const &', 'arg0')])
2987 ## random-variable.h (module 'core'): ns3::UniformVariable::UniformVariable() [constructor]
2988 cls.add_constructor([])
2989 ## random-variable.h (module 'core'): ns3::UniformVariable::UniformVariable(double s, double l) [constructor]
2990 cls.add_constructor([param('double', 's'), param('double', 'l')])
2991 ## random-variable.h (module 'core'): uint32_t ns3::UniformVariable::GetInteger(uint32_t s, uint32_t l) [member function]
2992 cls.add_method('GetInteger',
2993 'uint32_t',
2994 [param('uint32_t', 's'), param('uint32_t', 'l')])
2995 ## random-variable.h (module 'core'): double ns3::UniformVariable::GetValue() const [member function]
2996 cls.add_method('GetValue',
2997 'double',
2998 [],
2999 is_const=True)
3000 ## random-variable.h (module 'core'): double ns3::UniformVariable::GetValue(double s, double l) [member function]
3001 cls.add_method('GetValue',
3002 'double',
3003 [param('double', 's'), param('double', 'l')])
3004 return
3005
Ilya Moiseenko02fb7062011-08-11 17:18:00 -07003006def register_Ns3WeibullVariable_methods(root_module, cls):
3007 ## random-variable.h (module 'core'): ns3::WeibullVariable::WeibullVariable(ns3::WeibullVariable const & arg0) [copy constructor]
3008 cls.add_constructor([param('ns3::WeibullVariable const &', 'arg0')])
3009 ## random-variable.h (module 'core'): ns3::WeibullVariable::WeibullVariable() [constructor]
3010 cls.add_constructor([])
3011 ## random-variable.h (module 'core'): ns3::WeibullVariable::WeibullVariable(double m) [constructor]
3012 cls.add_constructor([param('double', 'm')])
3013 ## random-variable.h (module 'core'): ns3::WeibullVariable::WeibullVariable(double m, double s) [constructor]
3014 cls.add_constructor([param('double', 'm'), param('double', 's')])
3015 ## random-variable.h (module 'core'): ns3::WeibullVariable::WeibullVariable(double m, double s, double b) [constructor]
3016 cls.add_constructor([param('double', 'm'), param('double', 's'), param('double', 'b')])
3017 return
3018
3019def register_Ns3ZetaVariable_methods(root_module, cls):
3020 ## random-variable.h (module 'core'): ns3::ZetaVariable::ZetaVariable(ns3::ZetaVariable const & arg0) [copy constructor]
3021 cls.add_constructor([param('ns3::ZetaVariable const &', 'arg0')])
3022 ## random-variable.h (module 'core'): ns3::ZetaVariable::ZetaVariable(double alpha) [constructor]
3023 cls.add_constructor([param('double', 'alpha')])
3024 ## random-variable.h (module 'core'): ns3::ZetaVariable::ZetaVariable() [constructor]
3025 cls.add_constructor([])
3026 return
3027
3028def register_Ns3ZipfVariable_methods(root_module, cls):
3029 ## random-variable.h (module 'core'): ns3::ZipfVariable::ZipfVariable(ns3::ZipfVariable const & arg0) [copy constructor]
3030 cls.add_constructor([param('ns3::ZipfVariable const &', 'arg0')])
3031 ## random-variable.h (module 'core'): ns3::ZipfVariable::ZipfVariable(long int N, double alpha) [constructor]
3032 cls.add_constructor([param('long int', 'N'), param('double', 'alpha')])
3033 ## random-variable.h (module 'core'): ns3::ZipfVariable::ZipfVariable() [constructor]
3034 cls.add_constructor([])
3035 return
3036
Ilya Moiseenko1762af72011-07-18 16:43:10 -07003037def register_Ns3Empty_methods(root_module, cls):
3038 ## empty.h (module 'core'): ns3::empty::empty() [constructor]
3039 cls.add_constructor([])
3040 ## empty.h (module 'core'): ns3::empty::empty(ns3::empty const & arg0) [copy constructor]
3041 cls.add_constructor([param('ns3::empty const &', 'arg0')])
3042 return
3043
3044def register_Ns3Int64x64_t_methods(root_module, cls):
Alexander Afanasyeveface602011-08-17 17:50:12 -07003045 cls.add_binary_comparison_operator('!=')
Ilya Moiseenko1762af72011-07-18 16:43:10 -07003046 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long unsigned int const', 'right'))
3047 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long unsigned int const', 'right'))
3048 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned int const', 'right'))
3049 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short unsigned int const', 'right'))
3050 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned char const', 'right'))
3051 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long int const', 'right'))
3052 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long int const', 'right'))
3053 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('int const', 'right'))
3054 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short int const', 'right'))
3055 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('signed char const', 'right'))
3056 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('double const', 'right'))
3057 cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('ns3::int64x64_t const &', 'right'))
3058 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long unsigned int const', 'right'))
3059 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long unsigned int const', 'right'))
3060 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned int const', 'right'))
3061 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short unsigned int const', 'right'))
3062 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned char const', 'right'))
3063 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long int const', 'right'))
3064 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long int const', 'right'))
3065 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('int const', 'right'))
3066 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short int const', 'right'))
3067 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('signed char const', 'right'))
3068 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('double const', 'right'))
3069 cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('ns3::int64x64_t const &', 'right'))
3070 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long unsigned int const', 'right'))
3071 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long unsigned int const', 'right'))
3072 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned int const', 'right'))
3073 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short unsigned int const', 'right'))
3074 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned char const', 'right'))
3075 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long int const', 'right'))
3076 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long int const', 'right'))
3077 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('int const', 'right'))
3078 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short int const', 'right'))
3079 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('signed char const', 'right'))
3080 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('double const', 'right'))
3081 cls.add_unary_numeric_operator('-')
3082 cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('ns3::int64x64_t const &', 'right'))
3083 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long unsigned int const', 'right'))
3084 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long unsigned int const', 'right'))
3085 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned int const', 'right'))
3086 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short unsigned int const', 'right'))
3087 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned char const', 'right'))
3088 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long int const', 'right'))
3089 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long int const', 'right'))
3090 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('int const', 'right'))
3091 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short int const', 'right'))
3092 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('signed char const', 'right'))
3093 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('double const', 'right'))
3094 cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('ns3::int64x64_t const &', 'right'))
3095 cls.add_binary_comparison_operator('<')
3096 cls.add_binary_comparison_operator('>')
Ilya Moiseenko1762af72011-07-18 16:43:10 -07003097 cls.add_inplace_numeric_operator('*=', param('ns3::int64x64_t const &', 'right'))
3098 cls.add_inplace_numeric_operator('+=', param('ns3::int64x64_t const &', 'right'))
3099 cls.add_inplace_numeric_operator('-=', param('ns3::int64x64_t const &', 'right'))
3100 cls.add_inplace_numeric_operator('/=', param('ns3::int64x64_t const &', 'right'))
3101 cls.add_output_stream_operator()
3102 cls.add_binary_comparison_operator('<=')
3103 cls.add_binary_comparison_operator('==')
3104 cls.add_binary_comparison_operator('>=')
3105 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t() [constructor]
3106 cls.add_constructor([])
3107 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(double v) [constructor]
3108 cls.add_constructor([param('double', 'v')])
3109 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(int v) [constructor]
3110 cls.add_constructor([param('int', 'v')])
3111 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(long int v) [constructor]
3112 cls.add_constructor([param('long int', 'v')])
3113 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(long long int v) [constructor]
3114 cls.add_constructor([param('long long int', 'v')])
3115 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(unsigned int v) [constructor]
3116 cls.add_constructor([param('unsigned int', 'v')])
3117 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(long unsigned int v) [constructor]
3118 cls.add_constructor([param('long unsigned int', 'v')])
3119 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(long long unsigned int v) [constructor]
3120 cls.add_constructor([param('long long unsigned int', 'v')])
3121 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(int64_t hi, uint64_t lo) [constructor]
3122 cls.add_constructor([param('int64_t', 'hi'), param('uint64_t', 'lo')])
3123 ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(ns3::int64x64_t const & o) [copy constructor]
3124 cls.add_constructor([param('ns3::int64x64_t const &', 'o')])
3125 ## int64x64-double.h (module 'core'): double ns3::int64x64_t::GetDouble() const [member function]
3126 cls.add_method('GetDouble',
3127 'double',
3128 [],
3129 is_const=True)
3130 ## int64x64-double.h (module 'core'): int64_t ns3::int64x64_t::GetHigh() const [member function]
3131 cls.add_method('GetHigh',
3132 'int64_t',
3133 [],
3134 is_const=True)
3135 ## int64x64-double.h (module 'core'): uint64_t ns3::int64x64_t::GetLow() const [member function]
3136 cls.add_method('GetLow',
3137 'uint64_t',
3138 [],
3139 is_const=True)
3140 ## int64x64-double.h (module 'core'): static ns3::int64x64_t ns3::int64x64_t::Invert(uint64_t v) [member function]
3141 cls.add_method('Invert',
3142 'ns3::int64x64_t',
3143 [param('uint64_t', 'v')],
3144 is_static=True)
3145 ## int64x64-double.h (module 'core'): void ns3::int64x64_t::MulByInvert(ns3::int64x64_t const & o) [member function]
3146 cls.add_method('MulByInvert',
3147 'void',
3148 [param('ns3::int64x64_t const &', 'o')])
3149 return
3150
Alexander Afanasyeveface602011-08-17 17:50:12 -07003151def register_Ns3CcnxStackHelper_methods(root_module, cls):
3152 ## ccnx-stack-helper.h (module 'NDNabstraction'): ns3::CcnxStackHelper::CcnxStackHelper() [constructor]
3153 cls.add_constructor([])
3154 ## ccnx-stack-helper.h (module 'NDNabstraction'): ns3::CcnxStackHelper::CcnxStackHelper(ns3::CcnxStackHelper const & arg0) [copy constructor]
3155 cls.add_constructor([param('ns3::CcnxStackHelper const &', 'arg0')])
3156 ## ccnx-stack-helper.h (module 'NDNabstraction'): void ns3::CcnxStackHelper::Install(std::string nodeName) const [member function]
3157 cls.add_method('Install',
3158 'void',
3159 [param('std::string', 'nodeName')],
3160 is_const=True)
3161 ## ccnx-stack-helper.h (module 'NDNabstraction'): void ns3::CcnxStackHelper::Install(ns3::Ptr<ns3::Node> node) const [member function]
3162 cls.add_method('Install',
3163 'void',
3164 [param('ns3::Ptr< ns3::Node >', 'node')],
3165 is_const=True)
3166 ## ccnx-stack-helper.h (module 'NDNabstraction'): void ns3::CcnxStackHelper::Install(ns3::NodeContainer c) const [member function]
3167 cls.add_method('Install',
3168 'void',
3169 [param('ns3::NodeContainer', 'c')],
3170 is_const=True)
3171 ## ccnx-stack-helper.h (module 'NDNabstraction'): void ns3::CcnxStackHelper::InstallAll() const [member function]
3172 cls.add_method('InstallAll',
3173 'void',
3174 [],
3175 is_const=True)
3176 ## ccnx-stack-helper.h (module 'NDNabstraction'): void ns3::CcnxStackHelper::Reset() [member function]
3177 cls.add_method('Reset',
3178 'void',
3179 [])
3180 ## ccnx-stack-helper.h (module 'NDNabstraction'): void ns3::CcnxStackHelper::SetCcnxStackInstall(bool enable) [member function]
3181 cls.add_method('SetCcnxStackInstall',
3182 'void',
3183 [param('bool', 'enable')])
3184 ## ccnx-stack-helper.h (module 'NDNabstraction'): void ns3::CcnxStackHelper::SetForwardingHelper(ns3::CcnxForwardingHelper const & forwarding) [member function]
3185 cls.add_method('SetForwardingHelper',
3186 'void',
3187 [param('ns3::CcnxForwardingHelper const &', 'forwarding')])
3188 ## ccnx-stack-helper.h (module 'NDNabstraction'): void ns3::CcnxStackHelper::EnableAsciiCcnxInternal(ns3::Ptr<ns3::OutputStreamWrapper> stream, std::string prefix, ns3::Ptr<ns3::Ccnx> ccnx, uint32_t interface, bool explicitFilename) [member function]
3189 cls.add_method('EnableAsciiCcnxInternal',
3190 'void',
3191 [param('ns3::Ptr< ns3::OutputStreamWrapper >', 'stream'), param('std::string', 'prefix'), param('ns3::Ptr< ns3::Ccnx >', 'ccnx'), param('uint32_t', 'interface'), param('bool', 'explicitFilename')],
3192 visibility='private', is_virtual=True)
3193 ## ccnx-stack-helper.h (module 'NDNabstraction'): void ns3::CcnxStackHelper::EnablePcapCcnxInternal(std::string prefix, ns3::Ptr<ns3::Ccnx> ccnx, uint32_t interface, bool explicitFilename) [member function]
3194 cls.add_method('EnablePcapCcnxInternal',
3195 'void',
3196 [param('std::string', 'prefix'), param('ns3::Ptr< ns3::Ccnx >', 'ccnx'), param('uint32_t', 'interface'), param('bool', 'explicitFilename')],
3197 visibility='private', is_virtual=True)
3198 return
3199
Ilya Moiseenko1762af72011-07-18 16:43:10 -07003200def register_Ns3Chunk_methods(root_module, cls):
3201 ## chunk.h (module 'network'): ns3::Chunk::Chunk() [constructor]
3202 cls.add_constructor([])
3203 ## chunk.h (module 'network'): ns3::Chunk::Chunk(ns3::Chunk const & arg0) [copy constructor]
3204 cls.add_constructor([param('ns3::Chunk const &', 'arg0')])
3205 ## chunk.h (module 'network'): uint32_t ns3::Chunk::Deserialize(ns3::Buffer::Iterator start) [member function]
3206 cls.add_method('Deserialize',
3207 'uint32_t',
3208 [param('ns3::Buffer::Iterator', 'start')],
3209 is_pure_virtual=True, is_virtual=True)
3210 ## chunk.h (module 'network'): static ns3::TypeId ns3::Chunk::GetTypeId() [member function]
3211 cls.add_method('GetTypeId',
3212 'ns3::TypeId',
3213 [],
3214 is_static=True)
3215 ## chunk.h (module 'network'): void ns3::Chunk::Print(std::ostream & os) const [member function]
3216 cls.add_method('Print',
3217 'void',
3218 [param('std::ostream &', 'os')],
3219 is_pure_virtual=True, is_const=True, is_virtual=True)
3220 return
3221
Ilya Moiseenko02fb7062011-08-11 17:18:00 -07003222def register_Ns3ConstantVariable_methods(root_module, cls):
3223 ## random-variable.h (module 'core'): ns3::ConstantVariable::ConstantVariable(ns3::ConstantVariable const & arg0) [copy constructor]
3224 cls.add_constructor([param('ns3::ConstantVariable const &', 'arg0')])
3225 ## random-variable.h (module 'core'): ns3::ConstantVariable::ConstantVariable() [constructor]
3226 cls.add_constructor([])
3227 ## random-variable.h (module 'core'): ns3::ConstantVariable::ConstantVariable(double c) [constructor]
3228 cls.add_constructor([param('double', 'c')])
3229 ## random-variable.h (module 'core'): void ns3::ConstantVariable::SetConstant(double c) [member function]
3230 cls.add_method('SetConstant',
3231 'void',
3232 [param('double', 'c')])
3233 return
3234
3235def register_Ns3DeterministicVariable_methods(root_module, cls):
3236 ## random-variable.h (module 'core'): ns3::DeterministicVariable::DeterministicVariable(ns3::DeterministicVariable const & arg0) [copy constructor]
3237 cls.add_constructor([param('ns3::DeterministicVariable const &', 'arg0')])
3238 ## random-variable.h (module 'core'): ns3::DeterministicVariable::DeterministicVariable(double * d, uint32_t c) [constructor]
3239 cls.add_constructor([param('double *', 'd'), param('uint32_t', 'c')])
3240 return
3241
3242def register_Ns3EmpiricalVariable_methods(root_module, cls):
3243 ## random-variable.h (module 'core'): ns3::EmpiricalVariable::EmpiricalVariable(ns3::EmpiricalVariable const & arg0) [copy constructor]
3244 cls.add_constructor([param('ns3::EmpiricalVariable const &', 'arg0')])
3245 ## random-variable.h (module 'core'): ns3::EmpiricalVariable::EmpiricalVariable() [constructor]
3246 cls.add_constructor([])
3247 ## random-variable.h (module 'core'): void ns3::EmpiricalVariable::CDF(double v, double c) [member function]
3248 cls.add_method('CDF',
3249 'void',
3250 [param('double', 'v'), param('double', 'c')])
3251 return
3252
3253def register_Ns3ErlangVariable_methods(root_module, cls):
3254 ## random-variable.h (module 'core'): ns3::ErlangVariable::ErlangVariable(ns3::ErlangVariable const & arg0) [copy constructor]
3255 cls.add_constructor([param('ns3::ErlangVariable const &', 'arg0')])
3256 ## random-variable.h (module 'core'): ns3::ErlangVariable::ErlangVariable() [constructor]
3257 cls.add_constructor([])
3258 ## random-variable.h (module 'core'): ns3::ErlangVariable::ErlangVariable(unsigned int k, double lambda) [constructor]
3259 cls.add_constructor([param('unsigned int', 'k'), param('double', 'lambda')])
3260 ## random-variable.h (module 'core'): double ns3::ErlangVariable::GetValue() const [member function]
3261 cls.add_method('GetValue',
3262 'double',
3263 [],
3264 is_const=True)
3265 ## random-variable.h (module 'core'): double ns3::ErlangVariable::GetValue(unsigned int k, double lambda) const [member function]
3266 cls.add_method('GetValue',
3267 'double',
3268 [param('unsigned int', 'k'), param('double', 'lambda')],
3269 is_const=True)
3270 return
3271
3272def register_Ns3ExponentialVariable_methods(root_module, cls):
3273 ## random-variable.h (module 'core'): ns3::ExponentialVariable::ExponentialVariable(ns3::ExponentialVariable const & arg0) [copy constructor]
3274 cls.add_constructor([param('ns3::ExponentialVariable const &', 'arg0')])
3275 ## random-variable.h (module 'core'): ns3::ExponentialVariable::ExponentialVariable() [constructor]
3276 cls.add_constructor([])
3277 ## random-variable.h (module 'core'): ns3::ExponentialVariable::ExponentialVariable(double m) [constructor]
3278 cls.add_constructor([param('double', 'm')])
3279 ## random-variable.h (module 'core'): ns3::ExponentialVariable::ExponentialVariable(double m, double b) [constructor]
3280 cls.add_constructor([param('double', 'm'), param('double', 'b')])
3281 return
3282
3283def register_Ns3GammaVariable_methods(root_module, cls):
3284 ## random-variable.h (module 'core'): ns3::GammaVariable::GammaVariable(ns3::GammaVariable const & arg0) [copy constructor]
3285 cls.add_constructor([param('ns3::GammaVariable const &', 'arg0')])
3286 ## random-variable.h (module 'core'): ns3::GammaVariable::GammaVariable() [constructor]
3287 cls.add_constructor([])
3288 ## random-variable.h (module 'core'): ns3::GammaVariable::GammaVariable(double alpha, double beta) [constructor]
3289 cls.add_constructor([param('double', 'alpha'), param('double', 'beta')])
3290 ## random-variable.h (module 'core'): double ns3::GammaVariable::GetValue() const [member function]
3291 cls.add_method('GetValue',
3292 'double',
3293 [],
3294 is_const=True)
3295 ## random-variable.h (module 'core'): double ns3::GammaVariable::GetValue(double alpha, double beta) const [member function]
3296 cls.add_method('GetValue',
3297 'double',
3298 [param('double', 'alpha'), param('double', 'beta')],
3299 is_const=True)
3300 return
3301
Ilya Moiseenko1762af72011-07-18 16:43:10 -07003302def register_Ns3Header_methods(root_module, cls):
3303 cls.add_output_stream_operator()
3304 ## header.h (module 'network'): ns3::Header::Header() [constructor]
3305 cls.add_constructor([])
3306 ## header.h (module 'network'): ns3::Header::Header(ns3::Header const & arg0) [copy constructor]
3307 cls.add_constructor([param('ns3::Header const &', 'arg0')])
3308 ## header.h (module 'network'): uint32_t ns3::Header::Deserialize(ns3::Buffer::Iterator start) [member function]
3309 cls.add_method('Deserialize',
3310 'uint32_t',
3311 [param('ns3::Buffer::Iterator', 'start')],
3312 is_pure_virtual=True, is_virtual=True)
3313 ## header.h (module 'network'): uint32_t ns3::Header::GetSerializedSize() const [member function]
3314 cls.add_method('GetSerializedSize',
3315 'uint32_t',
3316 [],
3317 is_pure_virtual=True, is_const=True, is_virtual=True)
3318 ## header.h (module 'network'): static ns3::TypeId ns3::Header::GetTypeId() [member function]
3319 cls.add_method('GetTypeId',
3320 'ns3::TypeId',
3321 [],
3322 is_static=True)
3323 ## header.h (module 'network'): void ns3::Header::Print(std::ostream & os) const [member function]
3324 cls.add_method('Print',
3325 'void',
3326 [param('std::ostream &', 'os')],
3327 is_pure_virtual=True, is_const=True, is_virtual=True)
3328 ## header.h (module 'network'): void ns3::Header::Serialize(ns3::Buffer::Iterator start) const [member function]
3329 cls.add_method('Serialize',
3330 'void',
3331 [param('ns3::Buffer::Iterator', 'start')],
3332 is_pure_virtual=True, is_const=True, is_virtual=True)
3333 return
3334
Ilya Moiseenko02fb7062011-08-11 17:18:00 -07003335def register_Ns3IntEmpiricalVariable_methods(root_module, cls):
3336 ## random-variable.h (module 'core'): ns3::IntEmpiricalVariable::IntEmpiricalVariable(ns3::IntEmpiricalVariable const & arg0) [copy constructor]
3337 cls.add_constructor([param('ns3::IntEmpiricalVariable const &', 'arg0')])
3338 ## random-variable.h (module 'core'): ns3::IntEmpiricalVariable::IntEmpiricalVariable() [constructor]
Ilya Moiseenko1762af72011-07-18 16:43:10 -07003339 cls.add_constructor([])
Ilya Moiseenko02fb7062011-08-11 17:18:00 -07003340 return
3341
3342def register_Ns3LogNormalVariable_methods(root_module, cls):
3343 ## random-variable.h (module 'core'): ns3::LogNormalVariable::LogNormalVariable(ns3::LogNormalVariable const & arg0) [copy constructor]
3344 cls.add_constructor([param('ns3::LogNormalVariable const &', 'arg0')])
3345 ## random-variable.h (module 'core'): ns3::LogNormalVariable::LogNormalVariable(double mu, double sigma) [constructor]
3346 cls.add_constructor([param('double', 'mu'), param('double', 'sigma')])
3347 return
3348
3349def register_Ns3NormalVariable_methods(root_module, cls):
3350 ## random-variable.h (module 'core'): ns3::NormalVariable::NormalVariable(ns3::NormalVariable const & arg0) [copy constructor]
3351 cls.add_constructor([param('ns3::NormalVariable const &', 'arg0')])
3352 ## random-variable.h (module 'core'): ns3::NormalVariable::NormalVariable() [constructor]
3353 cls.add_constructor([])
3354 ## random-variable.h (module 'core'): ns3::NormalVariable::NormalVariable(double m, double v) [constructor]
3355 cls.add_constructor([param('double', 'm'), param('double', 'v')])
3356 ## random-variable.h (module 'core'): ns3::NormalVariable::NormalVariable(double m, double v, double b) [constructor]
3357 cls.add_constructor([param('double', 'm'), param('double', 'v'), param('double', 'b')])
Ilya Moiseenko1762af72011-07-18 16:43:10 -07003358 return
3359
3360def register_Ns3Object_methods(root_module, cls):
3361 ## object.h (module 'core'): ns3::Object::Object() [constructor]
3362 cls.add_constructor([])
3363 ## object.h (module 'core'): void ns3::Object::AggregateObject(ns3::Ptr<ns3::Object> other) [member function]
3364 cls.add_method('AggregateObject',
3365 'void',
3366 [param('ns3::Ptr< ns3::Object >', 'other')])
3367 ## object.h (module 'core'): void ns3::Object::Dispose() [member function]
3368 cls.add_method('Dispose',
3369 'void',
3370 [])
3371 ## object.h (module 'core'): ns3::Object::AggregateIterator ns3::Object::GetAggregateIterator() const [member function]
3372 cls.add_method('GetAggregateIterator',
3373 'ns3::Object::AggregateIterator',
3374 [],
3375 is_const=True)
3376 ## object.h (module 'core'): ns3::TypeId ns3::Object::GetInstanceTypeId() const [member function]
3377 cls.add_method('GetInstanceTypeId',
3378 'ns3::TypeId',
3379 [],
3380 is_const=True, is_virtual=True)
3381 ## object.h (module 'core'): static ns3::TypeId ns3::Object::GetTypeId() [member function]
3382 cls.add_method('GetTypeId',
3383 'ns3::TypeId',
3384 [],
3385 is_static=True)
3386 ## object.h (module 'core'): void ns3::Object::Start() [member function]
3387 cls.add_method('Start',
3388 'void',
3389 [])
3390 ## object.h (module 'core'): ns3::Object::Object(ns3::Object const & o) [copy constructor]
3391 cls.add_constructor([param('ns3::Object const &', 'o')],
3392 visibility='protected')
3393 ## object.h (module 'core'): void ns3::Object::DoDispose() [member function]
3394 cls.add_method('DoDispose',
3395 'void',
3396 [],
3397 visibility='protected', is_virtual=True)
3398 ## object.h (module 'core'): void ns3::Object::DoStart() [member function]
3399 cls.add_method('DoStart',
3400 'void',
3401 [],
3402 visibility='protected', is_virtual=True)
3403 ## object.h (module 'core'): void ns3::Object::NotifyNewAggregate() [member function]
3404 cls.add_method('NotifyNewAggregate',
3405 'void',
3406 [],
3407 visibility='protected', is_virtual=True)
3408 return
3409
3410def register_Ns3ObjectAggregateIterator_methods(root_module, cls):
3411 ## object.h (module 'core'): ns3::Object::AggregateIterator::AggregateIterator(ns3::Object::AggregateIterator const & arg0) [copy constructor]
3412 cls.add_constructor([param('ns3::Object::AggregateIterator const &', 'arg0')])
3413 ## object.h (module 'core'): ns3::Object::AggregateIterator::AggregateIterator() [constructor]
3414 cls.add_constructor([])
3415 ## object.h (module 'core'): bool ns3::Object::AggregateIterator::HasNext() const [member function]
3416 cls.add_method('HasNext',
3417 'bool',
3418 [],
3419 is_const=True)
3420 ## object.h (module 'core'): ns3::Ptr<ns3::Object const> ns3::Object::AggregateIterator::Next() [member function]
3421 cls.add_method('Next',
3422 'ns3::Ptr< ns3::Object const >',
3423 [])
3424 return
3425
Ilya Moiseenko02fb7062011-08-11 17:18:00 -07003426def register_Ns3ParetoVariable_methods(root_module, cls):
3427 ## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable(ns3::ParetoVariable const & arg0) [copy constructor]
3428 cls.add_constructor([param('ns3::ParetoVariable const &', 'arg0')])
3429 ## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable() [constructor]
3430 cls.add_constructor([])
3431 ## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable(double m) [constructor]
3432 cls.add_constructor([param('double', 'm')])
3433 ## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable(double m, double s) [constructor]
3434 cls.add_constructor([param('double', 'm'), param('double', 's')])
3435 ## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable(double m, double s, double b) [constructor]
3436 cls.add_constructor([param('double', 'm'), param('double', 's'), param('double', 'b')])
3437 ## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable(std::pair<double,double> params) [constructor]
3438 cls.add_constructor([param('std::pair< double, double >', 'params')])
3439 ## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable(std::pair<double,double> params, double b) [constructor]
3440 cls.add_constructor([param('std::pair< double, double >', 'params'), param('double', 'b')])
3441 return
3442
Alexander Afanasyeveface602011-08-17 17:50:12 -07003443def register_Ns3PcapFileWrapper_methods(root_module, cls):
3444 ## pcap-file-wrapper.h (module 'network'): static ns3::TypeId ns3::PcapFileWrapper::GetTypeId() [member function]
3445 cls.add_method('GetTypeId',
3446 'ns3::TypeId',
3447 [],
3448 is_static=True)
3449 ## pcap-file-wrapper.h (module 'network'): ns3::PcapFileWrapper::PcapFileWrapper() [constructor]
3450 cls.add_constructor([])
3451 ## pcap-file-wrapper.h (module 'network'): bool ns3::PcapFileWrapper::Fail() const [member function]
3452 cls.add_method('Fail',
3453 'bool',
3454 [],
3455 is_const=True)
3456 ## pcap-file-wrapper.h (module 'network'): bool ns3::PcapFileWrapper::Eof() const [member function]
3457 cls.add_method('Eof',
3458 'bool',
3459 [],
3460 is_const=True)
3461 ## pcap-file-wrapper.h (module 'network'): void ns3::PcapFileWrapper::Clear() [member function]
3462 cls.add_method('Clear',
3463 'void',
3464 [])
3465 ## pcap-file-wrapper.h (module 'network'): void ns3::PcapFileWrapper::Open(std::string const & filename, std::_Ios_Openmode mode) [member function]
3466 cls.add_method('Open',
3467 'void',
3468 [param('std::string const &', 'filename'), param('std::_Ios_Openmode', 'mode')])
3469 ## pcap-file-wrapper.h (module 'network'): void ns3::PcapFileWrapper::Close() [member function]
3470 cls.add_method('Close',
3471 'void',
3472 [])
3473 ## pcap-file-wrapper.h (module 'network'): void ns3::PcapFileWrapper::Init(uint32_t dataLinkType, uint32_t snapLen=std::numeric_limits<unsigned int>::max(), int32_t tzCorrection=ns3::PcapFile::ZONE_DEFAULT) [member function]
3474 cls.add_method('Init',
3475 'void',
3476 [param('uint32_t', 'dataLinkType'), param('uint32_t', 'snapLen', default_value='std::numeric_limits<unsigned int>::max()'), param('int32_t', 'tzCorrection', default_value='ns3::PcapFile::ZONE_DEFAULT')])
3477 ## pcap-file-wrapper.h (module 'network'): void ns3::PcapFileWrapper::Write(ns3::Time t, ns3::Ptr<const ns3::Packet> p) [member function]
3478 cls.add_method('Write',
3479 'void',
3480 [param('ns3::Time', 't'), param('ns3::Ptr< ns3::Packet const >', 'p')])
3481 ## pcap-file-wrapper.h (module 'network'): void ns3::PcapFileWrapper::Write(ns3::Time t, ns3::Header & header, ns3::Ptr<const ns3::Packet> p) [member function]
3482 cls.add_method('Write',
3483 'void',
3484 [param('ns3::Time', 't'), param('ns3::Header &', 'header'), param('ns3::Ptr< ns3::Packet const >', 'p')])
3485 ## pcap-file-wrapper.h (module 'network'): void ns3::PcapFileWrapper::Write(ns3::Time t, uint8_t const * buffer, uint32_t length) [member function]
3486 cls.add_method('Write',
3487 'void',
3488 [param('ns3::Time', 't'), param('uint8_t const *', 'buffer'), param('uint32_t', 'length')])
3489 ## pcap-file-wrapper.h (module 'network'): uint32_t ns3::PcapFileWrapper::GetMagic() [member function]
3490 cls.add_method('GetMagic',
3491 'uint32_t',
3492 [])
3493 ## pcap-file-wrapper.h (module 'network'): uint16_t ns3::PcapFileWrapper::GetVersionMajor() [member function]
3494 cls.add_method('GetVersionMajor',
3495 'uint16_t',
3496 [])
3497 ## pcap-file-wrapper.h (module 'network'): uint16_t ns3::PcapFileWrapper::GetVersionMinor() [member function]
3498 cls.add_method('GetVersionMinor',
3499 'uint16_t',
3500 [])
3501 ## pcap-file-wrapper.h (module 'network'): int32_t ns3::PcapFileWrapper::GetTimeZoneOffset() [member function]
3502 cls.add_method('GetTimeZoneOffset',
3503 'int32_t',
3504 [])
3505 ## pcap-file-wrapper.h (module 'network'): uint32_t ns3::PcapFileWrapper::GetSigFigs() [member function]
3506 cls.add_method('GetSigFigs',
3507 'uint32_t',
3508 [])
3509 ## pcap-file-wrapper.h (module 'network'): uint32_t ns3::PcapFileWrapper::GetSnapLen() [member function]
3510 cls.add_method('GetSnapLen',
3511 'uint32_t',
3512 [])
3513 ## pcap-file-wrapper.h (module 'network'): uint32_t ns3::PcapFileWrapper::GetDataLinkType() [member function]
3514 cls.add_method('GetDataLinkType',
3515 'uint32_t',
3516 [])
3517 return
3518
Ilya Moiseenko1762af72011-07-18 16:43:10 -07003519def register_Ns3SimpleRefCount__Ns3AttributeAccessor_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeAccessor__gt___methods(root_module, cls):
3520 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> >::SimpleRefCount() [constructor]
3521 cls.add_constructor([])
3522 ## 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]
3523 cls.add_constructor([param('ns3::SimpleRefCount< ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter< ns3::AttributeAccessor > > const &', 'o')])
3524 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> >::Cleanup() [member function]
3525 cls.add_method('Cleanup',
3526 'void',
3527 [],
3528 is_static=True)
3529 return
3530
3531def register_Ns3SimpleRefCount__Ns3AttributeChecker_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeChecker__gt___methods(root_module, cls):
3532 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter<ns3::AttributeChecker> >::SimpleRefCount() [constructor]
3533 cls.add_constructor([])
3534 ## 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]
3535 cls.add_constructor([param('ns3::SimpleRefCount< ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter< ns3::AttributeChecker > > const &', 'o')])
3536 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter<ns3::AttributeChecker> >::Cleanup() [member function]
3537 cls.add_method('Cleanup',
3538 'void',
3539 [],
3540 is_static=True)
3541 return
3542
3543def register_Ns3SimpleRefCount__Ns3AttributeValue_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeValue__gt___methods(root_module, cls):
3544 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter<ns3::AttributeValue> >::SimpleRefCount() [constructor]
3545 cls.add_constructor([])
3546 ## 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]
3547 cls.add_constructor([param('ns3::SimpleRefCount< ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter< ns3::AttributeValue > > const &', 'o')])
3548 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter<ns3::AttributeValue> >::Cleanup() [member function]
3549 cls.add_method('Cleanup',
3550 'void',
3551 [],
3552 is_static=True)
3553 return
3554
3555def register_Ns3SimpleRefCount__Ns3CallbackImplBase_Ns3Empty_Ns3DefaultDeleter__lt__ns3CallbackImplBase__gt___methods(root_module, cls):
3556 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> >::SimpleRefCount() [constructor]
3557 cls.add_constructor([])
3558 ## 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]
3559 cls.add_constructor([param('ns3::SimpleRefCount< ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter< ns3::CallbackImplBase > > const &', 'o')])
3560 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> >::Cleanup() [member function]
3561 cls.add_method('Cleanup',
3562 'void',
3563 [],
3564 is_static=True)
3565 return
3566
Alexander Afanasyeveface602011-08-17 17:50:12 -07003567def register_Ns3SimpleRefCount__Ns3CcnxParserBlock_Ns3Empty_Ns3DefaultDeleter__lt__ns3CcnxParserBlock__gt___methods(root_module, cls):
3568 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CcnxParser::Block, ns3::empty, ns3::DefaultDeleter<ns3::CcnxParser::Block> >::SimpleRefCount() [constructor]
3569 cls.add_constructor([])
3570 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CcnxParser::Block, ns3::empty, ns3::DefaultDeleter<ns3::CcnxParser::Block> >::SimpleRefCount(ns3::SimpleRefCount<ns3::CcnxParser::Block, ns3::empty, ns3::DefaultDeleter<ns3::CcnxParser::Block> > const & o) [copy constructor]
3571 cls.add_constructor([param('ns3::SimpleRefCount< ns3::CcnxParser::Block, ns3::empty, ns3::DefaultDeleter< ns3::CcnxParser::Block > > const &', 'o')])
3572 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::CcnxParser::Block, ns3::empty, ns3::DefaultDeleter<ns3::CcnxParser::Block> >::Cleanup() [member function]
3573 cls.add_method('Cleanup',
3574 'void',
3575 [],
3576 is_static=True)
3577 return
3578
3579def register_Ns3SimpleRefCount__Ns3CcnxRoute_Ns3Empty_Ns3DefaultDeleter__lt__ns3CcnxRoute__gt___methods(root_module, cls):
3580 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CcnxRoute, ns3::empty, ns3::DefaultDeleter<ns3::CcnxRoute> >::SimpleRefCount() [constructor]
3581 cls.add_constructor([])
3582 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CcnxRoute, ns3::empty, ns3::DefaultDeleter<ns3::CcnxRoute> >::SimpleRefCount(ns3::SimpleRefCount<ns3::CcnxRoute, ns3::empty, ns3::DefaultDeleter<ns3::CcnxRoute> > const & o) [copy constructor]
3583 cls.add_constructor([param('ns3::SimpleRefCount< ns3::CcnxRoute, ns3::empty, ns3::DefaultDeleter< ns3::CcnxRoute > > const &', 'o')])
3584 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::CcnxRoute, ns3::empty, ns3::DefaultDeleter<ns3::CcnxRoute> >::Cleanup() [member function]
3585 cls.add_method('Cleanup',
3586 'void',
3587 [],
3588 is_static=True)
3589 return
3590
Ilya Moiseenko1762af72011-07-18 16:43:10 -07003591def register_Ns3SimpleRefCount__Ns3EventImpl_Ns3Empty_Ns3DefaultDeleter__lt__ns3EventImpl__gt___methods(root_module, cls):
3592 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::EventImpl, ns3::empty, ns3::DefaultDeleter<ns3::EventImpl> >::SimpleRefCount() [constructor]
3593 cls.add_constructor([])
3594 ## 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]
3595 cls.add_constructor([param('ns3::SimpleRefCount< ns3::EventImpl, ns3::empty, ns3::DefaultDeleter< ns3::EventImpl > > const &', 'o')])
3596 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::EventImpl, ns3::empty, ns3::DefaultDeleter<ns3::EventImpl> >::Cleanup() [member function]
3597 cls.add_method('Cleanup',
3598 'void',
3599 [],
3600 is_static=True)
3601 return
3602
Alexander Afanasyeveface602011-08-17 17:50:12 -07003603def register_Ns3SimpleRefCount__Ns3NameComponents_Ns3Empty_Ns3DefaultDeleter__lt__ns3NameComponents__gt___methods(root_module, cls):
3604 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Name::Components, ns3::empty, ns3::DefaultDeleter<ns3::Name::Components> >::SimpleRefCount() [constructor]
Ilya Moiseenkoc166cd32011-08-12 12:50:30 -07003605 cls.add_constructor([])
Alexander Afanasyeveface602011-08-17 17:50:12 -07003606 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Name::Components, ns3::empty, ns3::DefaultDeleter<ns3::Name::Components> >::SimpleRefCount(ns3::SimpleRefCount<ns3::Name::Components, ns3::empty, ns3::DefaultDeleter<ns3::Name::Components> > const & o) [copy constructor]
3607 cls.add_constructor([param('ns3::SimpleRefCount< ns3::Name::Components, ns3::empty, ns3::DefaultDeleter< ns3::Name::Components > > const &', 'o')])
3608 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::Name::Components, ns3::empty, ns3::DefaultDeleter<ns3::Name::Components> >::Cleanup() [member function]
3609 cls.add_method('Cleanup',
3610 'void',
3611 [],
3612 is_static=True)
3613 return
3614
3615def register_Ns3SimpleRefCount__Ns3NixVector_Ns3Empty_Ns3DefaultDeleter__lt__ns3NixVector__gt___methods(root_module, cls):
3616 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::NixVector, ns3::empty, ns3::DefaultDeleter<ns3::NixVector> >::SimpleRefCount() [constructor]
3617 cls.add_constructor([])
3618 ## 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]
3619 cls.add_constructor([param('ns3::SimpleRefCount< ns3::NixVector, ns3::empty, ns3::DefaultDeleter< ns3::NixVector > > const &', 'o')])
3620 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::NixVector, ns3::empty, ns3::DefaultDeleter<ns3::NixVector> >::Cleanup() [member function]
3621 cls.add_method('Cleanup',
3622 'void',
3623 [],
3624 is_static=True)
3625 return
3626
3627def register_Ns3SimpleRefCount__Ns3OutputStreamWrapper_Ns3Empty_Ns3DefaultDeleter__lt__ns3OutputStreamWrapper__gt___methods(root_module, cls):
3628 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::OutputStreamWrapper, ns3::empty, ns3::DefaultDeleter<ns3::OutputStreamWrapper> >::SimpleRefCount() [constructor]
3629 cls.add_constructor([])
3630 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::OutputStreamWrapper, ns3::empty, ns3::DefaultDeleter<ns3::OutputStreamWrapper> >::SimpleRefCount(ns3::SimpleRefCount<ns3::OutputStreamWrapper, ns3::empty, ns3::DefaultDeleter<ns3::OutputStreamWrapper> > const & o) [copy constructor]
3631 cls.add_constructor([param('ns3::SimpleRefCount< ns3::OutputStreamWrapper, ns3::empty, ns3::DefaultDeleter< ns3::OutputStreamWrapper > > const &', 'o')])
3632 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::OutputStreamWrapper, ns3::empty, ns3::DefaultDeleter<ns3::OutputStreamWrapper> >::Cleanup() [member function]
3633 cls.add_method('Cleanup',
3634 'void',
3635 [],
3636 is_static=True)
3637 return
3638
3639def register_Ns3SimpleRefCount__Ns3Packet_Ns3Empty_Ns3DefaultDeleter__lt__ns3Packet__gt___methods(root_module, cls):
3640 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Packet, ns3::empty, ns3::DefaultDeleter<ns3::Packet> >::SimpleRefCount() [constructor]
3641 cls.add_constructor([])
3642 ## 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]
3643 cls.add_constructor([param('ns3::SimpleRefCount< ns3::Packet, ns3::empty, ns3::DefaultDeleter< ns3::Packet > > const &', 'o')])
3644 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::Packet, ns3::empty, ns3::DefaultDeleter<ns3::Packet> >::Cleanup() [member function]
3645 cls.add_method('Cleanup',
3646 'void',
3647 [],
3648 is_static=True)
3649 return
3650
3651def register_Ns3SimpleRefCount__Ns3TraceSourceAccessor_Ns3Empty_Ns3DefaultDeleter__lt__ns3TraceSourceAccessor__gt___methods(root_module, cls):
3652 ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter<ns3::TraceSourceAccessor> >::SimpleRefCount() [constructor]
3653 cls.add_constructor([])
3654 ## 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]
3655 cls.add_constructor([param('ns3::SimpleRefCount< ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter< ns3::TraceSourceAccessor > > const &', 'o')])
3656 ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter<ns3::TraceSourceAccessor> >::Cleanup() [member function]
Ilya Moiseenkoc166cd32011-08-12 12:50:30 -07003657 cls.add_method('Cleanup',
3658 'void',
3659 [],
3660 is_static=True)
3661 return
3662
Alexander Afanasyev2536e202011-08-12 14:13:10 -07003663def register_Ns3Socket_methods(root_module, cls):
3664 ## socket.h (module 'network'): ns3::Socket::Socket(ns3::Socket const & arg0) [copy constructor]
3665 cls.add_constructor([param('ns3::Socket const &', 'arg0')])
3666 ## socket.h (module 'network'): ns3::Socket::Socket() [constructor]
Ilya Moiseenko1762af72011-07-18 16:43:10 -07003667 cls.add_constructor([])
Alexander Afanasyev2536e202011-08-12 14:13:10 -07003668 ## socket.h (module 'network'): int ns3::Socket::Bind(ns3::Address const & address) [member function]
3669 cls.add_method('Bind',
3670 'int',
3671 [param('ns3::Address const &', 'address')],
3672 is_pure_virtual=True, is_virtual=True)
3673 ## socket.h (module 'network'): int ns3::Socket::Bind() [member function]
3674 cls.add_method('Bind',
3675 'int',
3676 [],
3677 is_pure_virtual=True, is_virtual=True)
3678 ## socket.h (module 'network'): void ns3::Socket::BindToNetDevice(ns3::Ptr<ns3::NetDevice> netdevice) [member function]
3679 cls.add_method('BindToNetDevice',
3680 'void',
3681 [param('ns3::Ptr< ns3::NetDevice >', 'netdevice')],
3682 is_virtual=True)
3683 ## socket.h (module 'network'): int ns3::Socket::Close() [member function]
3684 cls.add_method('Close',
3685 'int',
3686 [],
3687 is_pure_virtual=True, is_virtual=True)
3688 ## socket.h (module 'network'): int ns3::Socket::Connect(ns3::Address const & address) [member function]
3689 cls.add_method('Connect',
3690 'int',
3691 [param('ns3::Address const &', 'address')],
3692 is_pure_virtual=True, is_virtual=True)
3693 ## socket.h (module 'network'): static ns3::Ptr<ns3::Socket> ns3::Socket::CreateSocket(ns3::Ptr<ns3::Node> node, ns3::TypeId tid) [member function]
3694 cls.add_method('CreateSocket',
3695 'ns3::Ptr< ns3::Socket >',
3696 [param('ns3::Ptr< ns3::Node >', 'node'), param('ns3::TypeId', 'tid')],
3697 is_static=True)
3698 ## socket.h (module 'network'): bool ns3::Socket::GetAllowBroadcast() const [member function]
3699 cls.add_method('GetAllowBroadcast',
3700 'bool',
3701 [],
3702 is_pure_virtual=True, is_const=True, is_virtual=True)
3703 ## socket.h (module 'network'): ns3::Ptr<ns3::NetDevice> ns3::Socket::GetBoundNetDevice() [member function]
3704 cls.add_method('GetBoundNetDevice',
3705 'ns3::Ptr< ns3::NetDevice >',
3706 [])
3707 ## socket.h (module 'network'): ns3::Socket::SocketErrno ns3::Socket::GetErrno() const [member function]
3708 cls.add_method('GetErrno',
3709 'ns3::Socket::SocketErrno',
3710 [],
3711 is_pure_virtual=True, is_const=True, is_virtual=True)
3712 ## socket.h (module 'network'): ns3::Ptr<ns3::Node> ns3::Socket::GetNode() const [member function]
3713 cls.add_method('GetNode',
3714 'ns3::Ptr< ns3::Node >',
3715 [],
3716 is_pure_virtual=True, is_const=True, is_virtual=True)
3717 ## socket.h (module 'network'): uint32_t ns3::Socket::GetRxAvailable() const [member function]
3718 cls.add_method('GetRxAvailable',
3719 'uint32_t',
3720 [],
3721 is_pure_virtual=True, is_const=True, is_virtual=True)
3722 ## socket.h (module 'network'): int ns3::Socket::GetSockName(ns3::Address & address) const [member function]
3723 cls.add_method('GetSockName',
3724 'int',
3725 [param('ns3::Address &', 'address')],
3726 is_pure_virtual=True, is_const=True, is_virtual=True)
3727 ## socket.h (module 'network'): ns3::Socket::SocketType ns3::Socket::GetSocketType() const [member function]
3728 cls.add_method('GetSocketType',
3729 'ns3::Socket::SocketType',
3730 [],
3731 is_pure_virtual=True, is_const=True, is_virtual=True)
3732 ## socket.h (module 'network'): uint32_t ns3::Socket::GetTxAvailable() const [member function]
3733 cls.add_method('GetTxAvailable',
3734 'uint32_t',
3735 [],
3736 is_pure_virtual=True, is_const=True, is_virtual=True)
3737 ## socket.h (module 'network'): int ns3::Socket::Listen() [member function]
3738 cls.add_method('Listen',
3739 'int',
3740 [],
3741 is_pure_virtual=True, is_virtual=True)
3742 ## socket.h (module 'network'): ns3::Ptr<ns3::Packet> ns3::Socket::Recv(uint32_t maxSize, uint32_t flags) [member function]
3743 cls.add_method('Recv',
3744 'ns3::Ptr< ns3::Packet >',
3745 [param('uint32_t', 'maxSize'), param('uint32_t', 'flags')],
3746 is_pure_virtual=True, is_virtual=True)
3747 ## socket.h (module 'network'): ns3::Ptr<ns3::Packet> ns3::Socket::Recv() [member function]
3748 cls.add_method('Recv',
3749 'ns3::Ptr< ns3::Packet >',
3750 [])
3751 ## socket.h (module 'network'): int ns3::Socket::Recv(uint8_t * buf, uint32_t size, uint32_t flags) [member function]
3752 cls.add_method('Recv',
3753 'int',
3754 [param('uint8_t *', 'buf'), param('uint32_t', 'size'), param('uint32_t', 'flags')])
3755 ## socket.h (module 'network'): ns3::Ptr<ns3::Packet> ns3::Socket::RecvFrom(uint32_t maxSize, uint32_t flags, ns3::Address & fromAddress) [member function]
3756 cls.add_method('RecvFrom',
3757 'ns3::Ptr< ns3::Packet >',
3758 [param('uint32_t', 'maxSize'), param('uint32_t', 'flags'), param('ns3::Address &', 'fromAddress')],
3759 is_pure_virtual=True, is_virtual=True)
3760 ## socket.h (module 'network'): ns3::Ptr<ns3::Packet> ns3::Socket::RecvFrom(ns3::Address & fromAddress) [member function]
3761 cls.add_method('RecvFrom',
3762 'ns3::Ptr< ns3::Packet >',
3763 [param('ns3::Address &', 'fromAddress')])
3764 ## socket.h (module 'network'): int ns3::Socket::RecvFrom(uint8_t * buf, uint32_t size, uint32_t flags, ns3::Address & fromAddress) [member function]
3765 cls.add_method('RecvFrom',
3766 'int',
3767 [param('uint8_t *', 'buf'), param('uint32_t', 'size'), param('uint32_t', 'flags'), param('ns3::Address &', 'fromAddress')])
3768 ## socket.h (module 'network'): int ns3::Socket::Send(ns3::Ptr<ns3::Packet> p, uint32_t flags) [member function]
3769 cls.add_method('Send',
3770 'int',
3771 [param('ns3::Ptr< ns3::Packet >', 'p'), param('uint32_t', 'flags')],
3772 is_pure_virtual=True, is_virtual=True)
3773 ## socket.h (module 'network'): int ns3::Socket::Send(ns3::Ptr<ns3::Packet> p) [member function]
3774 cls.add_method('Send',
3775 'int',
3776 [param('ns3::Ptr< ns3::Packet >', 'p')])
3777 ## socket.h (module 'network'): int ns3::Socket::Send(uint8_t const * buf, uint32_t size, uint32_t flags) [member function]
3778 cls.add_method('Send',
3779 'int',
3780 [param('uint8_t const *', 'buf'), param('uint32_t', 'size'), param('uint32_t', 'flags')])
3781 ## socket.h (module 'network'): int ns3::Socket::SendTo(ns3::Ptr<ns3::Packet> p, uint32_t flags, ns3::Address const & toAddress) [member function]
3782 cls.add_method('SendTo',
3783 'int',
3784 [param('ns3::Ptr< ns3::Packet >', 'p'), param('uint32_t', 'flags'), param('ns3::Address const &', 'toAddress')],
3785 is_pure_virtual=True, is_virtual=True)
3786 ## socket.h (module 'network'): int ns3::Socket::SendTo(uint8_t const * buf, uint32_t size, uint32_t flags, ns3::Address const & address) [member function]
3787 cls.add_method('SendTo',
3788 'int',
3789 [param('uint8_t const *', 'buf'), param('uint32_t', 'size'), param('uint32_t', 'flags'), param('ns3::Address const &', 'address')])
3790 ## socket.h (module 'network'): void ns3::Socket::SetAcceptCallback(ns3::Callback<bool, ns3::Ptr<ns3::Socket>, ns3::Address const&, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> connectionRequest, ns3::Callback<void, ns3::Ptr<ns3::Socket>, ns3::Address const&, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> newConnectionCreated) [member function]
3791 cls.add_method('SetAcceptCallback',
3792 'void',
3793 [param('ns3::Callback< bool, ns3::Ptr< ns3::Socket >, ns3::Address const &, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'connectionRequest'), param('ns3::Callback< void, ns3::Ptr< ns3::Socket >, ns3::Address const &, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'newConnectionCreated')])
3794 ## socket.h (module 'network'): bool ns3::Socket::SetAllowBroadcast(bool allowBroadcast) [member function]
3795 cls.add_method('SetAllowBroadcast',
3796 'bool',
3797 [param('bool', 'allowBroadcast')],
3798 is_pure_virtual=True, is_virtual=True)
3799 ## socket.h (module 'network'): void ns3::Socket::SetCloseCallbacks(ns3::Callback<void, ns3::Ptr<ns3::Socket>, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> normalClose, ns3::Callback<void, ns3::Ptr<ns3::Socket>, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> errorClose) [member function]
3800 cls.add_method('SetCloseCallbacks',
3801 'void',
3802 [param('ns3::Callback< void, ns3::Ptr< ns3::Socket >, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'normalClose'), param('ns3::Callback< void, ns3::Ptr< ns3::Socket >, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'errorClose')])
3803 ## socket.h (module 'network'): void ns3::Socket::SetConnectCallback(ns3::Callback<void, ns3::Ptr<ns3::Socket>, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> connectionSucceeded, ns3::Callback<void, ns3::Ptr<ns3::Socket>, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> connectionFailed) [member function]
3804 cls.add_method('SetConnectCallback',
3805 'void',
3806 [param('ns3::Callback< void, ns3::Ptr< ns3::Socket >, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'connectionSucceeded'), param('ns3::Callback< void, ns3::Ptr< ns3::Socket >, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'connectionFailed')])
3807 ## socket.h (module 'network'): void ns3::Socket::SetDataSentCallback(ns3::Callback<void, ns3::Ptr<ns3::Socket>, unsigned int, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> dataSent) [member function]
3808 cls.add_method('SetDataSentCallback',
3809 'void',
3810 [param('ns3::Callback< void, ns3::Ptr< ns3::Socket >, unsigned int, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'dataSent')])
3811 ## socket.h (module 'network'): void ns3::Socket::SetRecvCallback(ns3::Callback<void, ns3::Ptr<ns3::Socket>, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> arg0) [member function]
3812 cls.add_method('SetRecvCallback',
3813 'void',
3814 [param('ns3::Callback< void, ns3::Ptr< ns3::Socket >, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'arg0')])
3815 ## socket.h (module 'network'): void ns3::Socket::SetRecvPktInfo(bool flag) [member function]
3816 cls.add_method('SetRecvPktInfo',
3817 'void',
3818 [param('bool', 'flag')])
3819 ## socket.h (module 'network'): void ns3::Socket::SetSendCallback(ns3::Callback<void, ns3::Ptr<ns3::Socket>, unsigned int, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> sendCb) [member function]
3820 cls.add_method('SetSendCallback',
3821 'void',
3822 [param('ns3::Callback< void, ns3::Ptr< ns3::Socket >, unsigned int, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'sendCb')])
3823 ## socket.h (module 'network'): int ns3::Socket::ShutdownRecv() [member function]
3824 cls.add_method('ShutdownRecv',
3825 'int',
3826 [],
3827 is_pure_virtual=True, is_virtual=True)
3828 ## socket.h (module 'network'): int ns3::Socket::ShutdownSend() [member function]
3829 cls.add_method('ShutdownSend',
3830 'int',
3831 [],
3832 is_pure_virtual=True, is_virtual=True)
3833 ## socket.h (module 'network'): void ns3::Socket::DoDispose() [member function]
3834 cls.add_method('DoDispose',
Ilya Moiseenko1762af72011-07-18 16:43:10 -07003835 'void',
3836 [],
Alexander Afanasyev2536e202011-08-12 14:13:10 -07003837 visibility='protected', is_virtual=True)
3838 ## socket.h (module 'network'): void ns3::Socket::NotifyConnectionFailed() [member function]
3839 cls.add_method('NotifyConnectionFailed',
3840 'void',
3841 [],
3842 visibility='protected')
3843 ## socket.h (module 'network'): bool ns3::Socket::NotifyConnectionRequest(ns3::Address const & from) [member function]
3844 cls.add_method('NotifyConnectionRequest',
3845 'bool',
3846 [param('ns3::Address const &', 'from')],
3847 visibility='protected')
3848 ## socket.h (module 'network'): void ns3::Socket::NotifyConnectionSucceeded() [member function]
3849 cls.add_method('NotifyConnectionSucceeded',
3850 'void',
3851 [],
3852 visibility='protected')
3853 ## socket.h (module 'network'): void ns3::Socket::NotifyDataRecv() [member function]
3854 cls.add_method('NotifyDataRecv',
3855 'void',
3856 [],
3857 visibility='protected')
3858 ## socket.h (module 'network'): void ns3::Socket::NotifyDataSent(uint32_t size) [member function]
3859 cls.add_method('NotifyDataSent',
3860 'void',
3861 [param('uint32_t', 'size')],
3862 visibility='protected')
3863 ## socket.h (module 'network'): void ns3::Socket::NotifyErrorClose() [member function]
3864 cls.add_method('NotifyErrorClose',
3865 'void',
3866 [],
3867 visibility='protected')
3868 ## socket.h (module 'network'): void ns3::Socket::NotifyNewConnectionCreated(ns3::Ptr<ns3::Socket> socket, ns3::Address const & from) [member function]
3869 cls.add_method('NotifyNewConnectionCreated',
3870 'void',
3871 [param('ns3::Ptr< ns3::Socket >', 'socket'), param('ns3::Address const &', 'from')],
3872 visibility='protected')
3873 ## socket.h (module 'network'): void ns3::Socket::NotifyNormalClose() [member function]
3874 cls.add_method('NotifyNormalClose',
3875 'void',
3876 [],
3877 visibility='protected')
3878 ## socket.h (module 'network'): void ns3::Socket::NotifySend(uint32_t spaceAvailable) [member function]
3879 cls.add_method('NotifySend',
3880 'void',
3881 [param('uint32_t', 'spaceAvailable')],
3882 visibility='protected')
Ilya Moiseenko1762af72011-07-18 16:43:10 -07003883 return
3884
Alexander Afanasyev2536e202011-08-12 14:13:10 -07003885def register_Ns3SocketAddressTag_methods(root_module, cls):
3886 ## socket.h (module 'network'): ns3::SocketAddressTag::SocketAddressTag(ns3::SocketAddressTag const & arg0) [copy constructor]
3887 cls.add_constructor([param('ns3::SocketAddressTag const &', 'arg0')])
3888 ## socket.h (module 'network'): ns3::SocketAddressTag::SocketAddressTag() [constructor]
Ilya Moiseenko1762af72011-07-18 16:43:10 -07003889 cls.add_constructor([])
Alexander Afanasyev2536e202011-08-12 14:13:10 -07003890 ## socket.h (module 'network'): void ns3::SocketAddressTag::Deserialize(ns3::TagBuffer i) [member function]
3891 cls.add_method('Deserialize',
Ilya Moiseenko1762af72011-07-18 16:43:10 -07003892 'void',
Alexander Afanasyev2536e202011-08-12 14:13:10 -07003893 [param('ns3::TagBuffer', 'i')],
3894 is_virtual=True)
3895 ## socket.h (module 'network'): ns3::Address ns3::SocketAddressTag::GetAddress() const [member function]
3896 cls.add_method('GetAddress',
3897 'ns3::Address',
3898 [],
3899 is_const=True)
3900 ## socket.h (module 'network'): ns3::TypeId ns3::SocketAddressTag::GetInstanceTypeId() const [member function]
3901 cls.add_method('GetInstanceTypeId',
3902 'ns3::TypeId',
3903 [],
3904 is_const=True, is_virtual=True)
3905 ## socket.h (module 'network'): uint32_t ns3::SocketAddressTag::GetSerializedSize() const [member function]
3906 cls.add_method('GetSerializedSize',
3907 'uint32_t',
3908 [],
3909 is_const=True, is_virtual=True)
3910 ## socket.h (module 'network'): static ns3::TypeId ns3::SocketAddressTag::GetTypeId() [member function]
3911 cls.add_method('GetTypeId',
3912 'ns3::TypeId',
Ilya Moiseenko1762af72011-07-18 16:43:10 -07003913 [],
3914 is_static=True)
Alexander Afanasyev2536e202011-08-12 14:13:10 -07003915 ## socket.h (module 'network'): void ns3::SocketAddressTag::Print(std::ostream & os) const [member function]
3916 cls.add_method('Print',
3917 'void',
3918 [param('std::ostream &', 'os')],
3919 is_const=True, is_virtual=True)
3920 ## socket.h (module 'network'): void ns3::SocketAddressTag::Serialize(ns3::TagBuffer i) const [member function]
3921 cls.add_method('Serialize',
3922 'void',
3923 [param('ns3::TagBuffer', 'i')],
3924 is_const=True, is_virtual=True)
3925 ## socket.h (module 'network'): void ns3::SocketAddressTag::SetAddress(ns3::Address addr) [member function]
3926 cls.add_method('SetAddress',
3927 'void',
3928 [param('ns3::Address', 'addr')])
Ilya Moiseenko1762af72011-07-18 16:43:10 -07003929 return
3930
Ilya Moiseenko02fb7062011-08-11 17:18:00 -07003931def register_Ns3SocketFactory_methods(root_module, cls):
3932 ## socket-factory.h (module 'network'): ns3::SocketFactory::SocketFactory(ns3::SocketFactory const & arg0) [copy constructor]
3933 cls.add_constructor([param('ns3::SocketFactory const &', 'arg0')])
3934 ## socket-factory.h (module 'network'): ns3::SocketFactory::SocketFactory() [constructor]
Ilya Moiseenko1762af72011-07-18 16:43:10 -07003935 cls.add_constructor([])
Ilya Moiseenko02fb7062011-08-11 17:18:00 -07003936 ## socket-factory.h (module 'network'): ns3::Ptr<ns3::Socket> ns3::SocketFactory::CreateSocket() [member function]
Ilya Moiseenko1762af72011-07-18 16:43:10 -07003937 cls.add_method('CreateSocket',
3938 'ns3::Ptr< ns3::Socket >',
Ilya Moiseenko1762af72011-07-18 16:43:10 -07003939 [],
3940 is_pure_virtual=True, is_virtual=True)
Ilya Moiseenko02fb7062011-08-11 17:18:00 -07003941 ## socket-factory.h (module 'network'): static ns3::TypeId ns3::SocketFactory::GetTypeId() [member function]
Ilya Moiseenko1762af72011-07-18 16:43:10 -07003942 cls.add_method('GetTypeId',
3943 'ns3::TypeId',
3944 [],
3945 is_static=True)
Ilya Moiseenko1762af72011-07-18 16:43:10 -07003946 return
3947
Alexander Afanasyev2536e202011-08-12 14:13:10 -07003948def register_Ns3SocketIpTtlTag_methods(root_module, cls):
3949 ## socket.h (module 'network'): ns3::SocketIpTtlTag::SocketIpTtlTag(ns3::SocketIpTtlTag const & arg0) [copy constructor]
3950 cls.add_constructor([param('ns3::SocketIpTtlTag const &', 'arg0')])
3951 ## socket.h (module 'network'): ns3::SocketIpTtlTag::SocketIpTtlTag() [constructor]
3952 cls.add_constructor([])
3953 ## socket.h (module 'network'): void ns3::SocketIpTtlTag::Deserialize(ns3::TagBuffer i) [member function]
3954 cls.add_method('Deserialize',
3955 'void',
3956 [param('ns3::TagBuffer', 'i')],
3957 is_virtual=True)
3958 ## socket.h (module 'network'): ns3::TypeId ns3::SocketIpTtlTag::GetInstanceTypeId() const [member function]
3959 cls.add_method('GetInstanceTypeId',
3960 'ns3::TypeId',
3961 [],
3962 is_const=True, is_virtual=True)
3963 ## socket.h (module 'network'): uint32_t ns3::SocketIpTtlTag::GetSerializedSize() const [member function]
3964 cls.add_method('GetSerializedSize',
3965 'uint32_t',
3966 [],
3967 is_const=True, is_virtual=True)
3968 ## socket.h (module 'network'): uint8_t ns3::SocketIpTtlTag::GetTtl() const [member function]
3969 cls.add_method('GetTtl',
3970 'uint8_t',
3971 [],
3972 is_const=True)
3973 ## socket.h (module 'network'): static ns3::TypeId ns3::SocketIpTtlTag::GetTypeId() [member function]
3974 cls.add_method('GetTypeId',
3975 'ns3::TypeId',
3976 [],
3977 is_static=True)
3978 ## socket.h (module 'network'): void ns3::SocketIpTtlTag::Print(std::ostream & os) const [member function]
3979 cls.add_method('Print',
3980 'void',
3981 [param('std::ostream &', 'os')],
3982 is_const=True, is_virtual=True)
3983 ## socket.h (module 'network'): void ns3::SocketIpTtlTag::Serialize(ns3::TagBuffer i) const [member function]
3984 cls.add_method('Serialize',
3985 'void',
3986 [param('ns3::TagBuffer', 'i')],
3987 is_const=True, is_virtual=True)
3988 ## socket.h (module 'network'): void ns3::SocketIpTtlTag::SetTtl(uint8_t ttl) [member function]
3989 cls.add_method('SetTtl',
3990 'void',
3991 [param('uint8_t', 'ttl')])
3992 return
3993
3994def register_Ns3SocketSetDontFragmentTag_methods(root_module, cls):
3995 ## socket.h (module 'network'): ns3::SocketSetDontFragmentTag::SocketSetDontFragmentTag(ns3::SocketSetDontFragmentTag const & arg0) [copy constructor]
3996 cls.add_constructor([param('ns3::SocketSetDontFragmentTag const &', 'arg0')])
3997 ## socket.h (module 'network'): ns3::SocketSetDontFragmentTag::SocketSetDontFragmentTag() [constructor]
3998 cls.add_constructor([])
3999 ## socket.h (module 'network'): void ns3::SocketSetDontFragmentTag::Deserialize(ns3::TagBuffer i) [member function]
4000 cls.add_method('Deserialize',
4001 'void',
4002 [param('ns3::TagBuffer', 'i')],
4003 is_virtual=True)
4004 ## socket.h (module 'network'): void ns3::SocketSetDontFragmentTag::Disable() [member function]
4005 cls.add_method('Disable',
4006 'void',
4007 [])
4008 ## socket.h (module 'network'): void ns3::SocketSetDontFragmentTag::Enable() [member function]
4009 cls.add_method('Enable',
4010 'void',
4011 [])
4012 ## socket.h (module 'network'): ns3::TypeId ns3::SocketSetDontFragmentTag::GetInstanceTypeId() const [member function]
4013 cls.add_method('GetInstanceTypeId',
4014 'ns3::TypeId',
4015 [],
4016 is_const=True, is_virtual=True)
4017 ## socket.h (module 'network'): uint32_t ns3::SocketSetDontFragmentTag::GetSerializedSize() const [member function]
4018 cls.add_method('GetSerializedSize',
4019 'uint32_t',
4020 [],
4021 is_const=True, is_virtual=True)
4022 ## socket.h (module 'network'): static ns3::TypeId ns3::SocketSetDontFragmentTag::GetTypeId() [member function]
4023 cls.add_method('GetTypeId',
4024 'ns3::TypeId',
4025 [],
4026 is_static=True)
4027 ## socket.h (module 'network'): bool ns3::SocketSetDontFragmentTag::IsEnabled() const [member function]
4028 cls.add_method('IsEnabled',
4029 'bool',
4030 [],
4031 is_const=True)
4032 ## socket.h (module 'network'): void ns3::SocketSetDontFragmentTag::Print(std::ostream & os) const [member function]
4033 cls.add_method('Print',
4034 'void',
4035 [param('std::ostream &', 'os')],
4036 is_const=True, is_virtual=True)
4037 ## socket.h (module 'network'): void ns3::SocketSetDontFragmentTag::Serialize(ns3::TagBuffer i) const [member function]
4038 cls.add_method('Serialize',
4039 'void',
4040 [param('ns3::TagBuffer', 'i')],
4041 is_const=True, is_virtual=True)
4042 return
4043
Ilya Moiseenko1762af72011-07-18 16:43:10 -07004044def register_Ns3Time_methods(root_module, cls):
Alexander Afanasyeveface602011-08-17 17:50:12 -07004045 cls.add_binary_comparison_operator('!=')
Ilya Moiseenko1762af72011-07-18 16:43:10 -07004046 cls.add_binary_numeric_operator('+', root_module['ns3::Time'], root_module['ns3::Time'], param('ns3::Time const &', 'right'))
4047 cls.add_binary_numeric_operator('-', root_module['ns3::Time'], root_module['ns3::Time'], param('ns3::Time const &', 'right'))
4048 cls.add_binary_comparison_operator('<')
4049 cls.add_binary_comparison_operator('>')
Ilya Moiseenko1762af72011-07-18 16:43:10 -07004050 cls.add_inplace_numeric_operator('+=', param('ns3::Time const &', 'right'))
4051 cls.add_inplace_numeric_operator('-=', param('ns3::Time const &', 'right'))
4052 cls.add_output_stream_operator()
4053 cls.add_binary_comparison_operator('<=')
4054 cls.add_binary_comparison_operator('==')
4055 cls.add_binary_comparison_operator('>=')
4056 ## nstime.h (module 'core'): ns3::Time::Time() [constructor]
4057 cls.add_constructor([])
4058 ## nstime.h (module 'core'): ns3::Time::Time(ns3::Time const & o) [copy constructor]
4059 cls.add_constructor([param('ns3::Time const &', 'o')])
4060 ## nstime.h (module 'core'): ns3::Time::Time(double v) [constructor]
4061 cls.add_constructor([param('double', 'v')])
4062 ## nstime.h (module 'core'): ns3::Time::Time(int v) [constructor]
4063 cls.add_constructor([param('int', 'v')])
4064 ## nstime.h (module 'core'): ns3::Time::Time(long int v) [constructor]
4065 cls.add_constructor([param('long int', 'v')])
4066 ## nstime.h (module 'core'): ns3::Time::Time(long long int v) [constructor]
4067 cls.add_constructor([param('long long int', 'v')])
4068 ## nstime.h (module 'core'): ns3::Time::Time(unsigned int v) [constructor]
4069 cls.add_constructor([param('unsigned int', 'v')])
4070 ## nstime.h (module 'core'): ns3::Time::Time(long unsigned int v) [constructor]
4071 cls.add_constructor([param('long unsigned int', 'v')])
4072 ## nstime.h (module 'core'): ns3::Time::Time(long long unsigned int v) [constructor]
4073 cls.add_constructor([param('long long unsigned int', 'v')])
4074 ## nstime.h (module 'core'): ns3::Time::Time(std::string const & s) [constructor]
4075 cls.add_constructor([param('std::string const &', 's')])
4076 ## nstime.h (module 'core'): ns3::Time::Time(ns3::int64x64_t const & value) [constructor]
4077 cls.add_constructor([param('ns3::int64x64_t const &', 'value')])
4078 ## nstime.h (module 'core'): int ns3::Time::Compare(ns3::Time const & o) const [member function]
4079 cls.add_method('Compare',
4080 'int',
4081 [param('ns3::Time const &', 'o')],
4082 is_const=True)
4083 ## nstime.h (module 'core'): static ns3::Time ns3::Time::From(ns3::int64x64_t const & from, ns3::Time::Unit timeUnit) [member function]
4084 cls.add_method('From',
4085 'ns3::Time',
4086 [param('ns3::int64x64_t const &', 'from'), param('ns3::Time::Unit', 'timeUnit')],
4087 is_static=True)
4088 ## nstime.h (module 'core'): static ns3::Time ns3::Time::From(ns3::int64x64_t const & value) [member function]
4089 cls.add_method('From',
4090 'ns3::Time',
4091 [param('ns3::int64x64_t const &', 'value')],
4092 is_static=True)
4093 ## nstime.h (module 'core'): static ns3::Time ns3::Time::FromDouble(double value, ns3::Time::Unit timeUnit) [member function]
4094 cls.add_method('FromDouble',
4095 'ns3::Time',
4096 [param('double', 'value'), param('ns3::Time::Unit', 'timeUnit')],
4097 is_static=True)
4098 ## nstime.h (module 'core'): static ns3::Time ns3::Time::FromInteger(uint64_t value, ns3::Time::Unit timeUnit) [member function]
4099 cls.add_method('FromInteger',
4100 'ns3::Time',
4101 [param('uint64_t', 'value'), param('ns3::Time::Unit', 'timeUnit')],
4102 is_static=True)
4103 ## nstime.h (module 'core'): double ns3::Time::GetDouble() const [member function]
4104 cls.add_method('GetDouble',
4105 'double',
4106 [],
4107 is_const=True)
4108 ## nstime.h (module 'core'): int64_t ns3::Time::GetFemtoSeconds() const [member function]
4109 cls.add_method('GetFemtoSeconds',
4110 'int64_t',
4111 [],
4112 is_const=True)
4113 ## nstime.h (module 'core'): int64_t ns3::Time::GetInteger() const [member function]
4114 cls.add_method('GetInteger',
4115 'int64_t',
4116 [],
4117 is_const=True)
4118 ## nstime.h (module 'core'): int64_t ns3::Time::GetMicroSeconds() const [member function]
4119 cls.add_method('GetMicroSeconds',
4120 'int64_t',
4121 [],
4122 is_const=True)
4123 ## nstime.h (module 'core'): int64_t ns3::Time::GetMilliSeconds() const [member function]
4124 cls.add_method('GetMilliSeconds',
4125 'int64_t',
4126 [],
4127 is_const=True)
4128 ## nstime.h (module 'core'): int64_t ns3::Time::GetNanoSeconds() const [member function]
4129 cls.add_method('GetNanoSeconds',
4130 'int64_t',
4131 [],
4132 is_const=True)
4133 ## nstime.h (module 'core'): int64_t ns3::Time::GetPicoSeconds() const [member function]
4134 cls.add_method('GetPicoSeconds',
4135 'int64_t',
4136 [],
4137 is_const=True)
4138 ## nstime.h (module 'core'): static ns3::Time::Unit ns3::Time::GetResolution() [member function]
4139 cls.add_method('GetResolution',
4140 'ns3::Time::Unit',
4141 [],
4142 is_static=True)
4143 ## nstime.h (module 'core'): double ns3::Time::GetSeconds() const [member function]
4144 cls.add_method('GetSeconds',
4145 'double',
4146 [],
4147 is_const=True)
4148 ## nstime.h (module 'core'): int64_t ns3::Time::GetTimeStep() const [member function]
4149 cls.add_method('GetTimeStep',
4150 'int64_t',
4151 [],
4152 is_const=True)
4153 ## nstime.h (module 'core'): bool ns3::Time::IsNegative() const [member function]
4154 cls.add_method('IsNegative',
4155 'bool',
4156 [],
4157 is_const=True)
4158 ## nstime.h (module 'core'): bool ns3::Time::IsPositive() const [member function]
4159 cls.add_method('IsPositive',
4160 'bool',
4161 [],
4162 is_const=True)
4163 ## nstime.h (module 'core'): bool ns3::Time::IsStrictlyNegative() const [member function]
4164 cls.add_method('IsStrictlyNegative',
4165 'bool',
4166 [],
4167 is_const=True)
4168 ## nstime.h (module 'core'): bool ns3::Time::IsStrictlyPositive() const [member function]
4169 cls.add_method('IsStrictlyPositive',
4170 'bool',
4171 [],
4172 is_const=True)
4173 ## nstime.h (module 'core'): bool ns3::Time::IsZero() const [member function]
4174 cls.add_method('IsZero',
4175 'bool',
4176 [],
4177 is_const=True)
4178 ## nstime.h (module 'core'): static void ns3::Time::SetResolution(ns3::Time::Unit resolution) [member function]
4179 cls.add_method('SetResolution',
4180 'void',
4181 [param('ns3::Time::Unit', 'resolution')],
4182 is_static=True)
4183 ## nstime.h (module 'core'): ns3::int64x64_t ns3::Time::To(ns3::Time::Unit timeUnit) const [member function]
4184 cls.add_method('To',
4185 'ns3::int64x64_t',
4186 [param('ns3::Time::Unit', 'timeUnit')],
4187 is_const=True)
4188 ## nstime.h (module 'core'): double ns3::Time::ToDouble(ns3::Time::Unit timeUnit) const [member function]
4189 cls.add_method('ToDouble',
4190 'double',
4191 [param('ns3::Time::Unit', 'timeUnit')],
4192 is_const=True)
4193 ## nstime.h (module 'core'): int64_t ns3::Time::ToInteger(ns3::Time::Unit timeUnit) const [member function]
4194 cls.add_method('ToInteger',
4195 'int64_t',
4196 [param('ns3::Time::Unit', 'timeUnit')],
4197 is_const=True)
4198 return
4199
Alexander Afanasyeveface602011-08-17 17:50:12 -07004200def register_Ns3TopologyReader_methods(root_module, cls):
4201 ## topology-reader.h (module 'topology-read'): ns3::TopologyReader::TopologyReader() [constructor]
4202 cls.add_constructor([])
4203 ## topology-reader.h (module 'topology-read'): void ns3::TopologyReader::AddLink(ns3::TopologyReader::Link link) [member function]
4204 cls.add_method('AddLink',
4205 'void',
4206 [param('ns3::TopologyReader::Link', 'link')])
4207 ## topology-reader.h (module 'topology-read'): std::string ns3::TopologyReader::GetFileName() const [member function]
4208 cls.add_method('GetFileName',
4209 'std::string',
4210 [],
4211 is_const=True)
4212 ## topology-reader.h (module 'topology-read'): static ns3::TypeId ns3::TopologyReader::GetTypeId() [member function]
4213 cls.add_method('GetTypeId',
4214 'ns3::TypeId',
4215 [],
4216 is_static=True)
4217 ## topology-reader.h (module 'topology-read'): std::_List_const_iterator<ns3::TopologyReader::Link> ns3::TopologyReader::LinksBegin() const [member function]
4218 cls.add_method('LinksBegin',
4219 'std::_List_const_iterator< ns3::TopologyReader::Link >',
4220 [],
4221 is_const=True)
4222 ## topology-reader.h (module 'topology-read'): bool ns3::TopologyReader::LinksEmpty() const [member function]
4223 cls.add_method('LinksEmpty',
4224 'bool',
4225 [],
4226 is_const=True)
4227 ## topology-reader.h (module 'topology-read'): std::_List_const_iterator<ns3::TopologyReader::Link> ns3::TopologyReader::LinksEnd() const [member function]
4228 cls.add_method('LinksEnd',
4229 'std::_List_const_iterator< ns3::TopologyReader::Link >',
4230 [],
4231 is_const=True)
4232 ## topology-reader.h (module 'topology-read'): int ns3::TopologyReader::LinksSize() const [member function]
4233 cls.add_method('LinksSize',
4234 'int',
4235 [],
4236 is_const=True)
4237 ## topology-reader.h (module 'topology-read'): ns3::NodeContainer ns3::TopologyReader::Read() [member function]
4238 cls.add_method('Read',
4239 'ns3::NodeContainer',
4240 [],
4241 is_pure_virtual=True, is_virtual=True)
4242 ## topology-reader.h (module 'topology-read'): void ns3::TopologyReader::SetFileName(std::string const fileName) [member function]
4243 cls.add_method('SetFileName',
4244 'void',
4245 [param('std::string const', 'fileName')])
4246 return
4247
4248def register_Ns3TopologyReaderLink_methods(root_module, cls):
4249 ## topology-reader.h (module 'topology-read'): ns3::TopologyReader::Link::Link(ns3::TopologyReader::Link const & arg0) [copy constructor]
4250 cls.add_constructor([param('ns3::TopologyReader::Link const &', 'arg0')])
4251 ## topology-reader.h (module 'topology-read'): ns3::TopologyReader::Link::Link(ns3::Ptr<ns3::Node> fromPtr, std::string fromName, ns3::Ptr<ns3::Node> toPtr, std::string toName) [constructor]
4252 cls.add_constructor([param('ns3::Ptr< ns3::Node >', 'fromPtr'), param('std::string', 'fromName'), param('ns3::Ptr< ns3::Node >', 'toPtr'), param('std::string', 'toName')])
4253 ## topology-reader.h (module 'topology-read'): std::_Rb_tree_const_iterator<std::pair<const std::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::basic_string<char, std::char_traits<char>, std::allocator<char> > > > ns3::TopologyReader::Link::AttributesBegin() [member function]
4254 cls.add_method('AttributesBegin',
4255 'std::_Rb_tree_const_iterator< std::pair< std::basic_string< char, std::char_traits< char >, std::allocator< char > > const, std::basic_string< char, std::char_traits< char >, std::allocator< char > > > >',
4256 [])
4257 ## topology-reader.h (module 'topology-read'): std::_Rb_tree_const_iterator<std::pair<const std::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::basic_string<char, std::char_traits<char>, std::allocator<char> > > > ns3::TopologyReader::Link::AttributesEnd() [member function]
4258 cls.add_method('AttributesEnd',
4259 'std::_Rb_tree_const_iterator< std::pair< std::basic_string< char, std::char_traits< char >, std::allocator< char > > const, std::basic_string< char, std::char_traits< char >, std::allocator< char > > > >',
4260 [])
4261 ## topology-reader.h (module 'topology-read'): std::string ns3::TopologyReader::Link::GetAttribute(std::string name) const [member function]
4262 cls.add_method('GetAttribute',
4263 'std::string',
4264 [param('std::string', 'name')],
4265 is_const=True)
4266 ## topology-reader.h (module 'topology-read'): bool ns3::TopologyReader::Link::GetAttributeFailSafe(std::string name, std::string & value) const [member function]
4267 cls.add_method('GetAttributeFailSafe',
4268 'bool',
4269 [param('std::string', 'name'), param('std::string &', 'value')],
4270 is_const=True)
4271 ## topology-reader.h (module 'topology-read'): ns3::Ptr<ns3::Node> ns3::TopologyReader::Link::GetFromNode() const [member function]
4272 cls.add_method('GetFromNode',
4273 'ns3::Ptr< ns3::Node >',
4274 [],
4275 is_const=True)
4276 ## topology-reader.h (module 'topology-read'): std::string ns3::TopologyReader::Link::GetFromNodeName() const [member function]
4277 cls.add_method('GetFromNodeName',
4278 'std::string',
4279 [],
4280 is_const=True)
4281 ## topology-reader.h (module 'topology-read'): ns3::Ptr<ns3::Node> ns3::TopologyReader::Link::GetToNode() const [member function]
4282 cls.add_method('GetToNode',
4283 'ns3::Ptr< ns3::Node >',
4284 [],
4285 is_const=True)
4286 ## topology-reader.h (module 'topology-read'): std::string ns3::TopologyReader::Link::GetToNodeName() const [member function]
4287 cls.add_method('GetToNodeName',
4288 'std::string',
4289 [],
4290 is_const=True)
4291 ## topology-reader.h (module 'topology-read'): void ns3::TopologyReader::Link::SetAttribute(std::string name, std::string & value) [member function]
4292 cls.add_method('SetAttribute',
4293 'void',
4294 [param('std::string', 'name'), param('std::string &', 'value')])
4295 return
4296
4297def register_Ns3TraceSourceAccessor_methods(root_module, cls):
4298 ## trace-source-accessor.h (module 'core'): ns3::TraceSourceAccessor::TraceSourceAccessor(ns3::TraceSourceAccessor const & arg0) [copy constructor]
4299 cls.add_constructor([param('ns3::TraceSourceAccessor const &', 'arg0')])
4300 ## trace-source-accessor.h (module 'core'): ns3::TraceSourceAccessor::TraceSourceAccessor() [constructor]
4301 cls.add_constructor([])
4302 ## trace-source-accessor.h (module 'core'): bool ns3::TraceSourceAccessor::Connect(ns3::ObjectBase * obj, std::string context, ns3::CallbackBase const & cb) const [member function]
4303 cls.add_method('Connect',
4304 'bool',
4305 [param('ns3::ObjectBase *', 'obj', transfer_ownership=False), param('std::string', 'context'), param('ns3::CallbackBase const &', 'cb')],
4306 is_pure_virtual=True, is_const=True, is_virtual=True)
4307 ## trace-source-accessor.h (module 'core'): bool ns3::TraceSourceAccessor::ConnectWithoutContext(ns3::ObjectBase * obj, ns3::CallbackBase const & cb) const [member function]
4308 cls.add_method('ConnectWithoutContext',
4309 'bool',
4310 [param('ns3::ObjectBase *', 'obj', transfer_ownership=False), param('ns3::CallbackBase const &', 'cb')],
4311 is_pure_virtual=True, is_const=True, is_virtual=True)
4312 ## trace-source-accessor.h (module 'core'): bool ns3::TraceSourceAccessor::Disconnect(ns3::ObjectBase * obj, std::string context, ns3::CallbackBase const & cb) const [member function]
4313 cls.add_method('Disconnect',
4314 'bool',
4315 [param('ns3::ObjectBase *', 'obj', transfer_ownership=False), param('std::string', 'context'), param('ns3::CallbackBase const &', 'cb')],
4316 is_pure_virtual=True, is_const=True, is_virtual=True)
4317 ## trace-source-accessor.h (module 'core'): bool ns3::TraceSourceAccessor::DisconnectWithoutContext(ns3::ObjectBase * obj, ns3::CallbackBase const & cb) const [member function]
4318 cls.add_method('DisconnectWithoutContext',
4319 'bool',
4320 [param('ns3::ObjectBase *', 'obj', transfer_ownership=False), param('ns3::CallbackBase const &', 'cb')],
4321 is_pure_virtual=True, is_const=True, is_virtual=True)
4322 return
4323
4324def register_Ns3Trailer_methods(root_module, cls):
4325 cls.add_output_stream_operator()
4326 ## trailer.h (module 'network'): ns3::Trailer::Trailer() [constructor]
4327 cls.add_constructor([])
4328 ## trailer.h (module 'network'): ns3::Trailer::Trailer(ns3::Trailer const & arg0) [copy constructor]
4329 cls.add_constructor([param('ns3::Trailer const &', 'arg0')])
4330 ## trailer.h (module 'network'): uint32_t ns3::Trailer::Deserialize(ns3::Buffer::Iterator end) [member function]
4331 cls.add_method('Deserialize',
4332 'uint32_t',
4333 [param('ns3::Buffer::Iterator', 'end')],
4334 is_pure_virtual=True, is_virtual=True)
4335 ## trailer.h (module 'network'): uint32_t ns3::Trailer::GetSerializedSize() const [member function]
4336 cls.add_method('GetSerializedSize',
4337 'uint32_t',
4338 [],
4339 is_pure_virtual=True, is_const=True, is_virtual=True)
4340 ## trailer.h (module 'network'): static ns3::TypeId ns3::Trailer::GetTypeId() [member function]
4341 cls.add_method('GetTypeId',
4342 'ns3::TypeId',
4343 [],
4344 is_static=True)
4345 ## trailer.h (module 'network'): void ns3::Trailer::Print(std::ostream & os) const [member function]
4346 cls.add_method('Print',
4347 'void',
4348 [param('std::ostream &', 'os')],
4349 is_pure_virtual=True, is_const=True, is_virtual=True)
4350 ## trailer.h (module 'network'): void ns3::Trailer::Serialize(ns3::Buffer::Iterator start) const [member function]
4351 cls.add_method('Serialize',
4352 'void',
4353 [param('ns3::Buffer::Iterator', 'start')],
4354 is_pure_virtual=True, is_const=True, is_virtual=True)
4355 return
4356
Ilya Moiseenko02fb7062011-08-11 17:18:00 -07004357def register_Ns3UdpSocketFactory_methods(root_module, cls):
4358 ## udp-socket-factory.h (module 'internet'): ns3::UdpSocketFactory::UdpSocketFactory() [constructor]
4359 cls.add_constructor([])
4360 ## udp-socket-factory.h (module 'internet'): ns3::UdpSocketFactory::UdpSocketFactory(ns3::UdpSocketFactory const & arg0) [copy constructor]
4361 cls.add_constructor([param('ns3::UdpSocketFactory const &', 'arg0')])
4362 ## udp-socket-factory.h (module 'internet'): static ns3::TypeId ns3::UdpSocketFactory::GetTypeId() [member function]
4363 cls.add_method('GetTypeId',
4364 'ns3::TypeId',
4365 [],
4366 is_static=True)
4367 return
4368
Alexander Afanasyeveface602011-08-17 17:50:12 -07004369def register_Ns3AnnotatedTopologyReader_methods(root_module, cls):
4370 ## annotated-topology-reader.h (module 'NDNabstraction'): static ns3::TypeId ns3::AnnotatedTopologyReader::GetTypeId() [member function]
4371 cls.add_method('GetTypeId',
4372 'ns3::TypeId',
4373 [],
4374 is_static=True)
4375 ## annotated-topology-reader.h (module 'NDNabstraction'): ns3::AnnotatedTopologyReader::AnnotatedTopologyReader() [constructor]
4376 cls.add_constructor([])
4377 ## annotated-topology-reader.h (module 'NDNabstraction'): ns3::NodeContainer ns3::AnnotatedTopologyReader::Read() [member function]
4378 cls.add_method('Read',
4379 'ns3::NodeContainer',
4380 [],
4381 is_virtual=True)
4382 return
4383
Ilya Moiseenko02fb7062011-08-11 17:18:00 -07004384def register_Ns3Application_methods(root_module, cls):
4385 ## application.h (module 'network'): ns3::Application::Application(ns3::Application const & arg0) [copy constructor]
4386 cls.add_constructor([param('ns3::Application const &', 'arg0')])
4387 ## application.h (module 'network'): ns3::Application::Application() [constructor]
4388 cls.add_constructor([])
4389 ## application.h (module 'network'): ns3::Ptr<ns3::Node> ns3::Application::GetNode() const [member function]
4390 cls.add_method('GetNode',
4391 'ns3::Ptr< ns3::Node >',
4392 [],
4393 is_const=True)
4394 ## application.h (module 'network'): static ns3::TypeId ns3::Application::GetTypeId() [member function]
4395 cls.add_method('GetTypeId',
4396 'ns3::TypeId',
4397 [],
4398 is_static=True)
4399 ## application.h (module 'network'): void ns3::Application::SetNode(ns3::Ptr<ns3::Node> node) [member function]
4400 cls.add_method('SetNode',
4401 'void',
4402 [param('ns3::Ptr< ns3::Node >', 'node')])
4403 ## application.h (module 'network'): void ns3::Application::SetStartTime(ns3::Time start) [member function]
4404 cls.add_method('SetStartTime',
4405 'void',
4406 [param('ns3::Time', 'start')])
4407 ## application.h (module 'network'): void ns3::Application::SetStopTime(ns3::Time stop) [member function]
4408 cls.add_method('SetStopTime',
4409 'void',
4410 [param('ns3::Time', 'stop')])
4411 ## application.h (module 'network'): void ns3::Application::DoDispose() [member function]
4412 cls.add_method('DoDispose',
4413 'void',
4414 [],
4415 visibility='protected', is_virtual=True)
4416 ## application.h (module 'network'): void ns3::Application::DoStart() [member function]
4417 cls.add_method('DoStart',
4418 'void',
4419 [],
4420 visibility='protected', is_virtual=True)
4421 ## application.h (module 'network'): void ns3::Application::StartApplication() [member function]
4422 cls.add_method('StartApplication',
4423 'void',
4424 [],
4425 visibility='private', is_virtual=True)
4426 ## application.h (module 'network'): void ns3::Application::StopApplication() [member function]
4427 cls.add_method('StopApplication',
4428 'void',
4429 [],
4430 visibility='private', is_virtual=True)
4431 return
4432
Ilya Moiseenko1762af72011-07-18 16:43:10 -07004433def register_Ns3AttributeAccessor_methods(root_module, cls):
4434 ## attribute.h (module 'core'): ns3::AttributeAccessor::AttributeAccessor(ns3::AttributeAccessor const & arg0) [copy constructor]
4435 cls.add_constructor([param('ns3::AttributeAccessor const &', 'arg0')])
4436 ## attribute.h (module 'core'): ns3::AttributeAccessor::AttributeAccessor() [constructor]
4437 cls.add_constructor([])
4438 ## attribute.h (module 'core'): bool ns3::AttributeAccessor::Get(ns3::ObjectBase const * object, ns3::AttributeValue & attribute) const [member function]
4439 cls.add_method('Get',
4440 'bool',
4441 [param('ns3::ObjectBase const *', 'object'), param('ns3::AttributeValue &', 'attribute')],
4442 is_pure_virtual=True, is_const=True, is_virtual=True)
4443 ## attribute.h (module 'core'): bool ns3::AttributeAccessor::HasGetter() const [member function]
4444 cls.add_method('HasGetter',
4445 'bool',
4446 [],
4447 is_pure_virtual=True, is_const=True, is_virtual=True)
4448 ## attribute.h (module 'core'): bool ns3::AttributeAccessor::HasSetter() const [member function]
4449 cls.add_method('HasSetter',
4450 'bool',
4451 [],
4452 is_pure_virtual=True, is_const=True, is_virtual=True)
4453 ## attribute.h (module 'core'): bool ns3::AttributeAccessor::Set(ns3::ObjectBase * object, ns3::AttributeValue const & value) const [member function]
4454 cls.add_method('Set',
4455 'bool',
4456 [param('ns3::ObjectBase *', 'object', transfer_ownership=False), param('ns3::AttributeValue const &', 'value')],
4457 is_pure_virtual=True, is_const=True, is_virtual=True)
4458 return
4459
4460def register_Ns3AttributeChecker_methods(root_module, cls):
4461 ## attribute.h (module 'core'): ns3::AttributeChecker::AttributeChecker(ns3::AttributeChecker const & arg0) [copy constructor]
4462 cls.add_constructor([param('ns3::AttributeChecker const &', 'arg0')])
4463 ## attribute.h (module 'core'): ns3::AttributeChecker::AttributeChecker() [constructor]
4464 cls.add_constructor([])
4465 ## attribute.h (module 'core'): bool ns3::AttributeChecker::Check(ns3::AttributeValue const & value) const [member function]
4466 cls.add_method('Check',
4467 'bool',
4468 [param('ns3::AttributeValue const &', 'value')],
4469 is_pure_virtual=True, is_const=True, is_virtual=True)
4470 ## attribute.h (module 'core'): bool ns3::AttributeChecker::Copy(ns3::AttributeValue const & source, ns3::AttributeValue & destination) const [member function]
4471 cls.add_method('Copy',
4472 'bool',
4473 [param('ns3::AttributeValue const &', 'source'), param('ns3::AttributeValue &', 'destination')],
4474 is_pure_virtual=True, is_const=True, is_virtual=True)
4475 ## attribute.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::AttributeChecker::Create() const [member function]
4476 cls.add_method('Create',
4477 'ns3::Ptr< ns3::AttributeValue >',
4478 [],
4479 is_pure_virtual=True, is_const=True, is_virtual=True)
Alexander Afanasyeveface602011-08-17 17:50:12 -07004480 ## attribute.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::AttributeChecker::CreateValidValue(ns3::AttributeValue const & value) const [member function]
4481 cls.add_method('CreateValidValue',
4482 'ns3::Ptr< ns3::AttributeValue >',
4483 [param('ns3::AttributeValue const &', 'value')],
4484 is_const=True)
Ilya Moiseenko1762af72011-07-18 16:43:10 -07004485 ## attribute.h (module 'core'): std::string ns3::AttributeChecker::GetUnderlyingTypeInformation() const [member function]
4486 cls.add_method('GetUnderlyingTypeInformation',
4487 'std::string',
4488 [],
4489 is_pure_virtual=True, is_const=True, is_virtual=True)
4490 ## attribute.h (module 'core'): std::string ns3::AttributeChecker::GetValueTypeName() const [member function]
4491 cls.add_method('GetValueTypeName',
4492 'std::string',
4493 [],
4494 is_pure_virtual=True, is_const=True, is_virtual=True)
4495 ## attribute.h (module 'core'): bool ns3::AttributeChecker::HasUnderlyingTypeInformation() const [member function]
4496 cls.add_method('HasUnderlyingTypeInformation',
4497 'bool',
4498 [],
4499 is_pure_virtual=True, is_const=True, is_virtual=True)
4500 return
4501
4502def register_Ns3AttributeValue_methods(root_module, cls):
4503 ## attribute.h (module 'core'): ns3::AttributeValue::AttributeValue(ns3::AttributeValue const & arg0) [copy constructor]
4504 cls.add_constructor([param('ns3::AttributeValue const &', 'arg0')])
4505 ## attribute.h (module 'core'): ns3::AttributeValue::AttributeValue() [constructor]
4506 cls.add_constructor([])
4507 ## attribute.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::AttributeValue::Copy() const [member function]
4508 cls.add_method('Copy',
4509 'ns3::Ptr< ns3::AttributeValue >',
4510 [],
4511 is_pure_virtual=True, is_const=True, is_virtual=True)
4512 ## attribute.h (module 'core'): bool ns3::AttributeValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
4513 cls.add_method('DeserializeFromString',
4514 'bool',
4515 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4516 is_pure_virtual=True, is_virtual=True)
4517 ## attribute.h (module 'core'): std::string ns3::AttributeValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
4518 cls.add_method('SerializeToString',
4519 'std::string',
4520 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4521 is_pure_virtual=True, is_const=True, is_virtual=True)
4522 return
4523
4524def register_Ns3CallbackChecker_methods(root_module, cls):
4525 ## callback.h (module 'core'): ns3::CallbackChecker::CallbackChecker() [constructor]
4526 cls.add_constructor([])
4527 ## callback.h (module 'core'): ns3::CallbackChecker::CallbackChecker(ns3::CallbackChecker const & arg0) [copy constructor]
4528 cls.add_constructor([param('ns3::CallbackChecker const &', 'arg0')])
4529 return
4530
4531def register_Ns3CallbackImplBase_methods(root_module, cls):
4532 ## callback.h (module 'core'): ns3::CallbackImplBase::CallbackImplBase() [constructor]
4533 cls.add_constructor([])
4534 ## callback.h (module 'core'): ns3::CallbackImplBase::CallbackImplBase(ns3::CallbackImplBase const & arg0) [copy constructor]
4535 cls.add_constructor([param('ns3::CallbackImplBase const &', 'arg0')])
4536 ## callback.h (module 'core'): bool ns3::CallbackImplBase::IsEqual(ns3::Ptr<ns3::CallbackImplBase const> other) const [member function]
4537 cls.add_method('IsEqual',
4538 'bool',
4539 [param('ns3::Ptr< ns3::CallbackImplBase const >', 'other')],
4540 is_pure_virtual=True, is_const=True, is_virtual=True)
4541 return
4542
4543def register_Ns3CallbackValue_methods(root_module, cls):
4544 ## callback.h (module 'core'): ns3::CallbackValue::CallbackValue(ns3::CallbackValue const & arg0) [copy constructor]
4545 cls.add_constructor([param('ns3::CallbackValue const &', 'arg0')])
4546 ## callback.h (module 'core'): ns3::CallbackValue::CallbackValue() [constructor]
4547 cls.add_constructor([])
4548 ## callback.h (module 'core'): ns3::CallbackValue::CallbackValue(ns3::CallbackBase const & base) [constructor]
4549 cls.add_constructor([param('ns3::CallbackBase const &', 'base')])
4550 ## callback.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::CallbackValue::Copy() const [member function]
4551 cls.add_method('Copy',
4552 'ns3::Ptr< ns3::AttributeValue >',
4553 [],
4554 is_const=True, is_virtual=True)
4555 ## callback.h (module 'core'): bool ns3::CallbackValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
4556 cls.add_method('DeserializeFromString',
4557 'bool',
4558 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4559 is_virtual=True)
4560 ## callback.h (module 'core'): std::string ns3::CallbackValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
4561 cls.add_method('SerializeToString',
4562 'std::string',
4563 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
4564 is_const=True, is_virtual=True)
4565 ## callback.h (module 'core'): void ns3::CallbackValue::Set(ns3::CallbackBase base) [member function]
4566 cls.add_method('Set',
4567 'void',
4568 [param('ns3::CallbackBase', 'base')])
4569 return
4570
Alexander Afanasyeveface602011-08-17 17:50:12 -07004571def register_Ns3Ccnx_methods(root_module, cls):
4572 ## ccnx.h (module 'NDNabstraction'): ns3::Ccnx::Ccnx() [constructor]
4573 cls.add_constructor([])
4574 ## ccnx.h (module 'NDNabstraction'): ns3::Ccnx::Ccnx(ns3::Ccnx const & arg0) [copy constructor]
4575 cls.add_constructor([param('ns3::Ccnx const &', 'arg0')])
4576 ## ccnx.h (module 'NDNabstraction'): uint32_t ns3::Ccnx::AddFace(ns3::Ptr<ns3::CcnxFace> const & face) [member function]
4577 cls.add_method('AddFace',
4578 'uint32_t',
4579 [param('ns3::Ptr< ns3::CcnxFace > const &', 'face')],
4580 is_pure_virtual=True, is_virtual=True)
4581 ## ccnx.h (module 'NDNabstraction'): ns3::Ptr<ns3::CcnxFace> ns3::Ccnx::GetFace(uint32_t face) const [member function]
4582 cls.add_method('GetFace',
4583 'ns3::Ptr< ns3::CcnxFace >',
4584 [param('uint32_t', 'face')],
4585 is_pure_virtual=True, is_const=True, is_virtual=True)
4586 ## ccnx.h (module 'NDNabstraction'): ns3::Ptr<ns3::CcnxForwardingStrategy> ns3::Ccnx::GetForwardingStrategy() const [member function]
4587 cls.add_method('GetForwardingStrategy',
4588 'ns3::Ptr< ns3::CcnxForwardingStrategy >',
4589 [],
4590 is_pure_virtual=True, is_const=True, is_virtual=True)
4591 ## ccnx.h (module 'NDNabstraction'): uint32_t ns3::Ccnx::GetNFaces() const [member function]
4592 cls.add_method('GetNFaces',
4593 'uint32_t',
4594 [],
4595 is_pure_virtual=True, is_const=True, is_virtual=True)
4596 ## ccnx.h (module 'NDNabstraction'): static ns3::TypeId ns3::Ccnx::GetTypeId() [member function]
4597 cls.add_method('GetTypeId',
4598 'ns3::TypeId',
4599 [],
4600 is_static=True)
4601 ## ccnx.h (module 'NDNabstraction'): void ns3::Ccnx::Send(ns3::Ptr<ns3::Packet> packet, ns3::Ptr<ns3::CcnxFace> const & face) [member function]
4602 cls.add_method('Send',
4603 'void',
4604 [param('ns3::Ptr< ns3::Packet >', 'packet'), param('ns3::Ptr< ns3::CcnxFace > const &', 'face')],
4605 is_pure_virtual=True, is_virtual=True)
4606 ## ccnx.h (module 'NDNabstraction'): void ns3::Ccnx::SetForwardingStrategy(ns3::Ptr<ns3::CcnxForwardingStrategy> forwardingStrategy) [member function]
4607 cls.add_method('SetForwardingStrategy',
4608 'void',
4609 [param('ns3::Ptr< ns3::CcnxForwardingStrategy >', 'forwardingStrategy')],
4610 is_pure_virtual=True, is_virtual=True)
4611 return
4612
4613def register_Ns3CcnxContentObjectHeader_methods(root_module, cls):
4614 ## ccnx-content-object-header.h (module 'NDNabstraction'): ns3::CcnxContentObjectHeader::CcnxContentObjectHeader(ns3::CcnxContentObjectHeader const & arg0) [copy constructor]
4615 cls.add_constructor([param('ns3::CcnxContentObjectHeader const &', 'arg0')])
4616 ## ccnx-content-object-header.h (module 'NDNabstraction'): ns3::CcnxContentObjectHeader::CcnxContentObjectHeader() [constructor]
4617 cls.add_constructor([])
4618 ## ccnx-content-object-header.h (module 'NDNabstraction'): uint32_t ns3::CcnxContentObjectHeader::Deserialize(ns3::Buffer::Iterator start) [member function]
4619 cls.add_method('Deserialize',
4620 'uint32_t',
4621 [param('ns3::Buffer::Iterator', 'start')],
4622 is_virtual=True)
4623 ## ccnx-content-object-header.h (module 'NDNabstraction'): ns3::TypeId ns3::CcnxContentObjectHeader::GetInstanceTypeId() const [member function]
4624 cls.add_method('GetInstanceTypeId',
4625 'ns3::TypeId',
4626 [],
4627 is_const=True, is_virtual=True)
4628 ## ccnx-content-object-header.h (module 'NDNabstraction'): ns3::Name::Components const & ns3::CcnxContentObjectHeader::GetName() const [member function]
4629 cls.add_method('GetName',
4630 'ns3::Name::Components const &',
4631 [],
4632 is_const=True)
4633 ## ccnx-content-object-header.h (module 'NDNabstraction'): uint32_t ns3::CcnxContentObjectHeader::GetSerializedSize() const [member function]
4634 cls.add_method('GetSerializedSize',
4635 'uint32_t',
4636 [],
4637 is_const=True, is_virtual=True)
4638 ## ccnx-content-object-header.h (module 'NDNabstraction'): static ns3::TypeId ns3::CcnxContentObjectHeader::GetTypeId() [member function]
4639 cls.add_method('GetTypeId',
4640 'ns3::TypeId',
4641 [],
4642 is_static=True)
4643 ## ccnx-content-object-header.h (module 'NDNabstraction'): void ns3::CcnxContentObjectHeader::Print(std::ostream & os) const [member function]
4644 cls.add_method('Print',
4645 'void',
4646 [param('std::ostream &', 'os')],
4647 is_const=True, is_virtual=True)
4648 ## ccnx-content-object-header.h (module 'NDNabstraction'): void ns3::CcnxContentObjectHeader::Serialize(ns3::Buffer::Iterator start) const [member function]
4649 cls.add_method('Serialize',
4650 'void',
4651 [param('ns3::Buffer::Iterator', 'start')],
4652 is_const=True, is_virtual=True)
4653 ## ccnx-content-object-header.h (module 'NDNabstraction'): void ns3::CcnxContentObjectHeader::SetName(ns3::Ptr<ns3::Name::Components> const & name) [member function]
4654 cls.add_method('SetName',
4655 'void',
4656 [param('ns3::Ptr< ns3::Name::Components > const &', 'name')])
4657 return
4658
4659def register_Ns3CcnxContentObjectTail_methods(root_module, cls):
4660 ## ccnx-content-object-header.h (module 'NDNabstraction'): ns3::CcnxContentObjectTail::CcnxContentObjectTail(ns3::CcnxContentObjectTail const & arg0) [copy constructor]
4661 cls.add_constructor([param('ns3::CcnxContentObjectTail const &', 'arg0')])
4662 ## ccnx-content-object-header.h (module 'NDNabstraction'): ns3::CcnxContentObjectTail::CcnxContentObjectTail() [constructor]
4663 cls.add_constructor([])
4664 ## ccnx-content-object-header.h (module 'NDNabstraction'): uint32_t ns3::CcnxContentObjectTail::Deserialize(ns3::Buffer::Iterator start) [member function]
4665 cls.add_method('Deserialize',
4666 'uint32_t',
4667 [param('ns3::Buffer::Iterator', 'start')],
4668 is_virtual=True)
4669 ## ccnx-content-object-header.h (module 'NDNabstraction'): ns3::TypeId ns3::CcnxContentObjectTail::GetInstanceTypeId() const [member function]
4670 cls.add_method('GetInstanceTypeId',
4671 'ns3::TypeId',
4672 [],
4673 is_const=True, is_virtual=True)
4674 ## ccnx-content-object-header.h (module 'NDNabstraction'): uint32_t ns3::CcnxContentObjectTail::GetSerializedSize() const [member function]
4675 cls.add_method('GetSerializedSize',
4676 'uint32_t',
4677 [],
4678 is_const=True, is_virtual=True)
4679 ## ccnx-content-object-header.h (module 'NDNabstraction'): static ns3::TypeId ns3::CcnxContentObjectTail::GetTypeId() [member function]
4680 cls.add_method('GetTypeId',
4681 'ns3::TypeId',
4682 [],
4683 is_static=True)
4684 ## ccnx-content-object-header.h (module 'NDNabstraction'): void ns3::CcnxContentObjectTail::Print(std::ostream & os) const [member function]
4685 cls.add_method('Print',
4686 'void',
4687 [param('std::ostream &', 'os')],
4688 is_const=True, is_virtual=True)
4689 ## ccnx-content-object-header.h (module 'NDNabstraction'): void ns3::CcnxContentObjectTail::Serialize(ns3::Buffer::Iterator start) const [member function]
4690 cls.add_method('Serialize',
4691 'void',
4692 [param('ns3::Buffer::Iterator', 'start')],
4693 is_const=True, is_virtual=True)
4694 return
4695
4696def register_Ns3CcnxFace_methods(root_module, cls):
4697 cls.add_output_stream_operator()
4698 ## ccnx-face.h (module 'NDNabstraction'): ns3::CcnxFace::CcnxFace(ns3::CcnxFace const & arg0) [copy constructor]
4699 cls.add_constructor([param('ns3::CcnxFace const &', 'arg0')])
4700 ## ccnx-face.h (module 'NDNabstraction'): ns3::CcnxFace::CcnxFace() [constructor]
4701 cls.add_constructor([])
4702 ## ccnx-face.h (module 'NDNabstraction'): ns3::Ptr<ns3::NetDevice> ns3::CcnxFace::GetDevice() const [member function]
4703 cls.add_method('GetDevice',
4704 'ns3::Ptr< ns3::NetDevice >',
4705 [],
4706 is_const=True, is_virtual=True)
4707 ## ccnx-face.h (module 'NDNabstraction'): uint16_t ns3::CcnxFace::GetMetric() const [member function]
4708 cls.add_method('GetMetric',
4709 'uint16_t',
4710 [],
4711 is_const=True, is_virtual=True)
4712 ## ccnx-face.h (module 'NDNabstraction'): static ns3::TypeId ns3::CcnxFace::GetTypeId() [member function]
4713 cls.add_method('GetTypeId',
4714 'ns3::TypeId',
4715 [],
4716 is_static=True)
4717 ## ccnx-face.h (module 'NDNabstraction'): bool ns3::CcnxFace::IsDown() const [member function]
4718 cls.add_method('IsDown',
4719 'bool',
4720 [],
4721 is_const=True, is_virtual=True)
4722 ## ccnx-face.h (module 'NDNabstraction'): bool ns3::CcnxFace::IsUp() const [member function]
4723 cls.add_method('IsUp',
4724 'bool',
4725 [],
4726 is_const=True, is_virtual=True)
4727 ## ccnx-face.h (module 'NDNabstraction'): void ns3::CcnxFace::Send(ns3::Ptr<ns3::Packet> p) [member function]
4728 cls.add_method('Send',
4729 'void',
4730 [param('ns3::Ptr< ns3::Packet >', 'p')],
4731 is_virtual=True)
4732 ## ccnx-face.h (module 'NDNabstraction'): void ns3::CcnxFace::SetDevice(ns3::Ptr<ns3::NetDevice> device) [member function]
4733 cls.add_method('SetDevice',
4734 'void',
4735 [param('ns3::Ptr< ns3::NetDevice >', 'device')],
4736 is_virtual=True)
4737 ## ccnx-face.h (module 'NDNabstraction'): void ns3::CcnxFace::SetDown() [member function]
4738 cls.add_method('SetDown',
4739 'void',
4740 [],
4741 is_virtual=True)
4742 ## ccnx-face.h (module 'NDNabstraction'): void ns3::CcnxFace::SetMetric(uint16_t metric) [member function]
4743 cls.add_method('SetMetric',
4744 'void',
4745 [param('uint16_t', 'metric')],
4746 is_virtual=True)
4747 ## ccnx-face.h (module 'NDNabstraction'): void ns3::CcnxFace::SetNode(ns3::Ptr<ns3::Node> node) [member function]
4748 cls.add_method('SetNode',
4749 'void',
4750 [param('ns3::Ptr< ns3::Node >', 'node')],
4751 is_virtual=True)
4752 ## ccnx-face.h (module 'NDNabstraction'): void ns3::CcnxFace::SetUp() [member function]
4753 cls.add_method('SetUp',
4754 'void',
4755 [],
4756 is_virtual=True)
4757 ## ccnx-face.h (module 'NDNabstraction'): void ns3::CcnxFace::DoDispose() [member function]
4758 cls.add_method('DoDispose',
4759 'void',
4760 [],
4761 visibility='protected', is_virtual=True)
4762 return
4763
4764def register_Ns3CcnxForwardingStrategy_methods(root_module, cls):
4765 ## ccnx-forwarding-strategy.h (module 'NDNabstraction'): ns3::CcnxForwardingStrategy::CcnxForwardingStrategy() [constructor]
4766 cls.add_constructor([])
4767 ## ccnx-forwarding-strategy.h (module 'NDNabstraction'): ns3::CcnxForwardingStrategy::CcnxForwardingStrategy(ns3::CcnxForwardingStrategy const & arg0) [copy constructor]
4768 cls.add_constructor([param('ns3::CcnxForwardingStrategy const &', 'arg0')])
4769 ## ccnx-forwarding-strategy.h (module 'NDNabstraction'): static ns3::TypeId ns3::CcnxForwardingStrategy::GetTypeId() [member function]
4770 cls.add_method('GetTypeId',
4771 'ns3::TypeId',
4772 [],
4773 is_static=True)
4774 ## ccnx-forwarding-strategy.h (module 'NDNabstraction'): void ns3::CcnxForwardingStrategy::NotifyInterfaceDown(uint32_t interface) [member function]
4775 cls.add_method('NotifyInterfaceDown',
4776 'void',
4777 [param('uint32_t', 'interface')],
4778 is_pure_virtual=True, is_virtual=True)
4779 ## ccnx-forwarding-strategy.h (module 'NDNabstraction'): void ns3::CcnxForwardingStrategy::NotifyInterfaceUp(uint32_t interface) [member function]
4780 cls.add_method('NotifyInterfaceUp',
4781 'void',
4782 [param('uint32_t', 'interface')],
4783 is_pure_virtual=True, is_virtual=True)
4784 ## ccnx-forwarding-strategy.h (module 'NDNabstraction'): void ns3::CcnxForwardingStrategy::PrintForwardingTable(ns3::Ptr<ns3::OutputStreamWrapper> stream) const [member function]
4785 cls.add_method('PrintForwardingTable',
4786 'void',
4787 [param('ns3::Ptr< ns3::OutputStreamWrapper >', 'stream')],
4788 is_pure_virtual=True, is_const=True, is_virtual=True)
4789 ## ccnx-forwarding-strategy.h (module 'NDNabstraction'): bool ns3::CcnxForwardingStrategy::RouteInput(ns3::Ptr<ns3::Packet> p, ns3::Ptr<ns3::CcnxFace> iface, ns3::Callback<void,ns3::Ptr<ns3::Packet>,ns3::Ptr<ns3::CcnxRoute>,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty> ucb, ns3::Callback<void,ns3::Ptr<ns3::Packet>,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty> ecb) [member function]
4790 cls.add_method('RouteInput',
4791 'bool',
4792 [param('ns3::Ptr< ns3::Packet >', 'p'), param('ns3::Ptr< ns3::CcnxFace >', 'iface'), param('ns3::Callback< void, ns3::Ptr< ns3::Packet >, ns3::Ptr< ns3::CcnxRoute >, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'ucb'), param('ns3::Callback< void, ns3::Ptr< ns3::Packet >, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'ecb')],
4793 is_pure_virtual=True, is_virtual=True)
4794 ## ccnx-forwarding-strategy.h (module 'NDNabstraction'): void ns3::CcnxForwardingStrategy::SetCcnx(ns3::Ptr<ns3::Ccnx> ccnx) [member function]
4795 cls.add_method('SetCcnx',
4796 'void',
4797 [param('ns3::Ptr< ns3::Ccnx >', 'ccnx')],
4798 is_virtual=True)
4799 return
4800
4801def register_Ns3CcnxInterestHeader_methods(root_module, cls):
4802 ## ccnx-interest-header.h (module 'NDNabstraction'): ns3::CcnxInterestHeader::CcnxInterestHeader(ns3::CcnxInterestHeader const & arg0) [copy constructor]
4803 cls.add_constructor([param('ns3::CcnxInterestHeader const &', 'arg0')])
4804 ## ccnx-interest-header.h (module 'NDNabstraction'): ns3::CcnxInterestHeader::CcnxInterestHeader() [constructor]
4805 cls.add_constructor([])
4806 ## ccnx-interest-header.h (module 'NDNabstraction'): uint32_t ns3::CcnxInterestHeader::Deserialize(ns3::Buffer::Iterator start) [member function]
4807 cls.add_method('Deserialize',
4808 'uint32_t',
4809 [param('ns3::Buffer::Iterator', 'start')],
4810 is_virtual=True)
4811 ## ccnx-interest-header.h (module 'NDNabstraction'): ns3::Name::Components const & ns3::CcnxInterestHeader::GetExclude() const [member function]
4812 cls.add_method('GetExclude',
4813 'ns3::Name::Components const &',
4814 [],
4815 is_const=True)
4816 ## ccnx-interest-header.h (module 'NDNabstraction'): ns3::TypeId ns3::CcnxInterestHeader::GetInstanceTypeId() const [member function]
4817 cls.add_method('GetInstanceTypeId',
4818 'ns3::TypeId',
4819 [],
4820 is_const=True, is_virtual=True)
4821 ## ccnx-interest-header.h (module 'NDNabstraction'): ns3::Time ns3::CcnxInterestHeader::GetInterestLifetime() const [member function]
4822 cls.add_method('GetInterestLifetime',
4823 'ns3::Time',
4824 [],
4825 is_const=True)
4826 ## ccnx-interest-header.h (module 'NDNabstraction'): int32_t ns3::CcnxInterestHeader::GetMaxSuffixComponents() const [member function]
4827 cls.add_method('GetMaxSuffixComponents',
4828 'int32_t',
4829 [],
4830 is_const=True)
4831 ## ccnx-interest-header.h (module 'NDNabstraction'): int32_t ns3::CcnxInterestHeader::GetMinSuffixComponents() const [member function]
4832 cls.add_method('GetMinSuffixComponents',
4833 'int32_t',
4834 [],
4835 is_const=True)
4836 ## ccnx-interest-header.h (module 'NDNabstraction'): ns3::Name::Components const & ns3::CcnxInterestHeader::GetName() const [member function]
4837 cls.add_method('GetName',
4838 'ns3::Name::Components const &',
4839 [],
4840 is_const=True)
4841 ## ccnx-interest-header.h (module 'NDNabstraction'): uint32_t ns3::CcnxInterestHeader::GetNonce() const [member function]
4842 cls.add_method('GetNonce',
4843 'uint32_t',
4844 [],
4845 is_const=True)
4846 ## ccnx-interest-header.h (module 'NDNabstraction'): int8_t ns3::CcnxInterestHeader::GetScope() const [member function]
4847 cls.add_method('GetScope',
4848 'int8_t',
4849 [],
4850 is_const=True)
4851 ## ccnx-interest-header.h (module 'NDNabstraction'): uint32_t ns3::CcnxInterestHeader::GetSerializedSize() const [member function]
4852 cls.add_method('GetSerializedSize',
4853 'uint32_t',
4854 [],
4855 is_const=True, is_virtual=True)
4856 ## ccnx-interest-header.h (module 'NDNabstraction'): static ns3::TypeId ns3::CcnxInterestHeader::GetTypeId() [member function]
4857 cls.add_method('GetTypeId',
4858 'ns3::TypeId',
4859 [],
4860 is_static=True)
4861 ## ccnx-interest-header.h (module 'NDNabstraction'): bool ns3::CcnxInterestHeader::IsEnabledAnswerOriginKind() const [member function]
4862 cls.add_method('IsEnabledAnswerOriginKind',
4863 'bool',
4864 [],
4865 is_const=True)
4866 ## ccnx-interest-header.h (module 'NDNabstraction'): bool ns3::CcnxInterestHeader::IsEnabledChildSelector() const [member function]
4867 cls.add_method('IsEnabledChildSelector',
4868 'bool',
4869 [],
4870 is_const=True)
4871 ## ccnx-interest-header.h (module 'NDNabstraction'): void ns3::CcnxInterestHeader::Print(std::ostream & os) const [member function]
4872 cls.add_method('Print',
4873 'void',
4874 [param('std::ostream &', 'os')],
4875 is_const=True, is_virtual=True)
4876 ## ccnx-interest-header.h (module 'NDNabstraction'): void ns3::CcnxInterestHeader::Serialize(ns3::Buffer::Iterator start) const [member function]
4877 cls.add_method('Serialize',
4878 'void',
4879 [param('ns3::Buffer::Iterator', 'start')],
4880 is_const=True, is_virtual=True)
4881 ## ccnx-interest-header.h (module 'NDNabstraction'): void ns3::CcnxInterestHeader::SetAnswerOriginKind(bool value) [member function]
4882 cls.add_method('SetAnswerOriginKind',
4883 'void',
4884 [param('bool', 'value')])
4885 ## ccnx-interest-header.h (module 'NDNabstraction'): void ns3::CcnxInterestHeader::SetChildSelector(bool value) [member function]
4886 cls.add_method('SetChildSelector',
4887 'void',
4888 [param('bool', 'value')])
4889 ## ccnx-interest-header.h (module 'NDNabstraction'): void ns3::CcnxInterestHeader::SetExclude(ns3::Ptr<ns3::Name::Components> const & exclude) [member function]
4890 cls.add_method('SetExclude',
4891 'void',
4892 [param('ns3::Ptr< ns3::Name::Components > const &', 'exclude')])
4893 ## ccnx-interest-header.h (module 'NDNabstraction'): void ns3::CcnxInterestHeader::SetInterestLifetime(ns3::Time time) [member function]
4894 cls.add_method('SetInterestLifetime',
4895 'void',
4896 [param('ns3::Time', 'time')])
4897 ## ccnx-interest-header.h (module 'NDNabstraction'): void ns3::CcnxInterestHeader::SetMaxSuffixComponents(int32_t value) [member function]
4898 cls.add_method('SetMaxSuffixComponents',
4899 'void',
4900 [param('int32_t', 'value')])
4901 ## ccnx-interest-header.h (module 'NDNabstraction'): void ns3::CcnxInterestHeader::SetMinSuffixComponents(int32_t value) [member function]
4902 cls.add_method('SetMinSuffixComponents',
4903 'void',
4904 [param('int32_t', 'value')])
4905 ## ccnx-interest-header.h (module 'NDNabstraction'): void ns3::CcnxInterestHeader::SetName(ns3::Ptr<ns3::Name::Components> const & name) [member function]
4906 cls.add_method('SetName',
4907 'void',
4908 [param('ns3::Ptr< ns3::Name::Components > const &', 'name')])
4909 ## ccnx-interest-header.h (module 'NDNabstraction'): void ns3::CcnxInterestHeader::SetNonce(uint32_t nonce) [member function]
4910 cls.add_method('SetNonce',
4911 'void',
4912 [param('uint32_t', 'nonce')])
4913 ## ccnx-interest-header.h (module 'NDNabstraction'): void ns3::CcnxInterestHeader::SetScope(int8_t scope) [member function]
4914 cls.add_method('SetScope',
4915 'void',
4916 [param('int8_t', 'scope')])
4917 return
4918
4919def register_Ns3CcnxL3Protocol_methods(root_module, cls):
4920 ## ccnx-l3-protocol.h (module 'NDNabstraction'): ns3::CcnxL3Protocol::ETHERNET_FRAME_TYPE [variable]
4921 cls.add_static_attribute('ETHERNET_FRAME_TYPE', 'uint16_t const', is_const=True)
4922 ## ccnx-l3-protocol.h (module 'NDNabstraction'): ns3::CcnxL3Protocol::IP_PROTOCOL_TYPE [variable]
4923 cls.add_static_attribute('IP_PROTOCOL_TYPE', 'uint16_t const', is_const=True)
4924 ## ccnx-l3-protocol.h (module 'NDNabstraction'): ns3::CcnxL3Protocol::UDP_PORT [variable]
4925 cls.add_static_attribute('UDP_PORT', 'uint16_t const', is_const=True)
4926 ## ccnx-l3-protocol.h (module 'NDNabstraction'): static ns3::TypeId ns3::CcnxL3Protocol::GetTypeId() [member function]
4927 cls.add_method('GetTypeId',
4928 'ns3::TypeId',
4929 [],
4930 is_static=True)
4931 ## ccnx-l3-protocol.h (module 'NDNabstraction'): ns3::CcnxL3Protocol::CcnxL3Protocol() [constructor]
4932 cls.add_constructor([])
4933 ## ccnx-l3-protocol.h (module 'NDNabstraction'): void ns3::CcnxL3Protocol::SetNode(ns3::Ptr<ns3::Node> node) [member function]
4934 cls.add_method('SetNode',
4935 'void',
4936 [param('ns3::Ptr< ns3::Node >', 'node')])
4937 ## ccnx-l3-protocol.h (module 'NDNabstraction'): void ns3::CcnxL3Protocol::SetForwardingStrategy(ns3::Ptr<ns3::CcnxForwardingStrategy> forwardingStrategy) [member function]
4938 cls.add_method('SetForwardingStrategy',
4939 'void',
4940 [param('ns3::Ptr< ns3::CcnxForwardingStrategy >', 'forwardingStrategy')],
4941 is_virtual=True)
4942 ## ccnx-l3-protocol.h (module 'NDNabstraction'): ns3::Ptr<ns3::CcnxForwardingStrategy> ns3::CcnxL3Protocol::GetForwardingStrategy() const [member function]
4943 cls.add_method('GetForwardingStrategy',
4944 'ns3::Ptr< ns3::CcnxForwardingStrategy >',
4945 [],
4946 is_const=True, is_virtual=True)
4947 ## ccnx-l3-protocol.h (module 'NDNabstraction'): void ns3::CcnxL3Protocol::Send(ns3::Ptr<ns3::Packet> packet, ns3::Ptr<ns3::CcnxFace> const & face) [member function]
4948 cls.add_method('Send',
4949 'void',
4950 [param('ns3::Ptr< ns3::Packet >', 'packet'), param('ns3::Ptr< ns3::CcnxFace > const &', 'face')],
4951 is_virtual=True)
4952 ## ccnx-l3-protocol.h (module 'NDNabstraction'): uint32_t ns3::CcnxL3Protocol::AddFace(ns3::Ptr<ns3::CcnxFace> const & face) [member function]
4953 cls.add_method('AddFace',
4954 'uint32_t',
4955 [param('ns3::Ptr< ns3::CcnxFace > const &', 'face')],
4956 is_virtual=True)
4957 ## ccnx-l3-protocol.h (module 'NDNabstraction'): uint32_t ns3::CcnxL3Protocol::GetNFaces() const [member function]
4958 cls.add_method('GetNFaces',
4959 'uint32_t',
4960 [],
4961 is_const=True, is_virtual=True)
4962 ## ccnx-l3-protocol.h (module 'NDNabstraction'): ns3::Ptr<ns3::CcnxFace> ns3::CcnxL3Protocol::GetFace(uint32_t face) const [member function]
4963 cls.add_method('GetFace',
4964 'ns3::Ptr< ns3::CcnxFace >',
4965 [param('uint32_t', 'face')],
4966 is_const=True, is_virtual=True)
4967 ## ccnx-l3-protocol.h (module 'NDNabstraction'): void ns3::CcnxL3Protocol::SetMetric(uint32_t i, uint16_t metric) [member function]
4968 cls.add_method('SetMetric',
4969 'void',
4970 [param('uint32_t', 'i'), param('uint16_t', 'metric')],
4971 is_virtual=True)
4972 ## ccnx-l3-protocol.h (module 'NDNabstraction'): uint16_t ns3::CcnxL3Protocol::GetMetric(uint32_t i) const [member function]
4973 cls.add_method('GetMetric',
4974 'uint16_t',
4975 [param('uint32_t', 'i')],
4976 is_const=True, is_virtual=True)
4977 ## ccnx-l3-protocol.h (module 'NDNabstraction'): uint16_t ns3::CcnxL3Protocol::GetMtu(uint32_t i) const [member function]
4978 cls.add_method('GetMtu',
4979 'uint16_t',
4980 [param('uint32_t', 'i')],
4981 is_const=True, is_virtual=True)
4982 ## ccnx-l3-protocol.h (module 'NDNabstraction'): bool ns3::CcnxL3Protocol::IsUp(uint32_t i) const [member function]
4983 cls.add_method('IsUp',
4984 'bool',
4985 [param('uint32_t', 'i')],
4986 is_const=True, is_virtual=True)
4987 ## ccnx-l3-protocol.h (module 'NDNabstraction'): void ns3::CcnxL3Protocol::SetUp(uint32_t i) [member function]
4988 cls.add_method('SetUp',
4989 'void',
4990 [param('uint32_t', 'i')],
4991 is_virtual=True)
4992 ## ccnx-l3-protocol.h (module 'NDNabstraction'): void ns3::CcnxL3Protocol::SetDown(uint32_t i) [member function]
4993 cls.add_method('SetDown',
4994 'void',
4995 [param('uint32_t', 'i')],
4996 is_virtual=True)
4997 ## ccnx-l3-protocol.h (module 'NDNabstraction'): void ns3::CcnxL3Protocol::ReceiveFromLower(ns3::Ptr<ns3::NetDevice> device, ns3::Ptr<const ns3::Packet> p, uint16_t protocol, ns3::Address const & from, ns3::Address const & to, ns3::NetDevice::PacketType packetType) [member function]
4998 cls.add_method('ReceiveFromLower',
4999 'void',
5000 [param('ns3::Ptr< ns3::NetDevice >', 'device'), param('ns3::Ptr< ns3::Packet const >', 'p'), param('uint16_t', 'protocol'), param('ns3::Address const &', 'from'), param('ns3::Address const &', 'to'), param('ns3::NetDevice::PacketType', 'packetType')],
5001 visibility='protected')
5002 ## ccnx-l3-protocol.h (module 'NDNabstraction'): void ns3::CcnxL3Protocol::ReceiveAndProcess(ns3::Ptr<ns3::CcnxFace> face, ns3::Ptr<ns3::CcnxInterestHeader> header, ns3::Ptr<ns3::Packet> p) [member function]
5003 cls.add_method('ReceiveAndProcess',
5004 'void',
5005 [param('ns3::Ptr< ns3::CcnxFace >', 'face'), param('ns3::Ptr< ns3::CcnxInterestHeader >', 'header'), param('ns3::Ptr< ns3::Packet >', 'p')],
5006 visibility='protected', is_virtual=True)
5007 ## ccnx-l3-protocol.h (module 'NDNabstraction'): void ns3::CcnxL3Protocol::ReceiveAndProcess(ns3::Ptr<ns3::CcnxFace> face, ns3::Ptr<ns3::CcnxContentObjectHeader> header, ns3::Ptr<ns3::Packet> p) [member function]
5008 cls.add_method('ReceiveAndProcess',
5009 'void',
5010 [param('ns3::Ptr< ns3::CcnxFace >', 'face'), param('ns3::Ptr< ns3::CcnxContentObjectHeader >', 'header'), param('ns3::Ptr< ns3::Packet >', 'p')],
5011 visibility='protected', is_virtual=True)
5012 ## ccnx-l3-protocol.h (module 'NDNabstraction'): void ns3::CcnxL3Protocol::DoDispose() [member function]
5013 cls.add_method('DoDispose',
5014 'void',
5015 [],
5016 visibility='protected', is_virtual=True)
5017 ## ccnx-l3-protocol.h (module 'NDNabstraction'): void ns3::CcnxL3Protocol::NotifyNewAggregate() [member function]
5018 cls.add_method('NotifyNewAggregate',
5019 'void',
5020 [],
5021 visibility='protected', is_virtual=True)
5022 ## ccnx-l3-protocol.h (module 'NDNabstraction'): void ns3::CcnxL3Protocol::ReceiveAndProcess(ns3::Ptr<ns3::CcnxFace> face, ns3::Ptr<ns3::Header> header, ns3::Ptr<ns3::Packet> p) [member function]
5023 cls.add_method('ReceiveAndProcess',
5024 'void',
5025 [param('ns3::Ptr< ns3::CcnxFace >', 'face'), param('ns3::Ptr< ns3::Header >', 'header'), param('ns3::Ptr< ns3::Packet >', 'p')],
5026 visibility='private', is_virtual=True)
5027 return
5028
5029def register_Ns3CcnxLocalFace_methods(root_module, cls):
5030 cls.add_output_stream_operator()
5031 ## ccnx-local-face.h (module 'NDNabstraction'): ns3::CcnxLocalFace::CcnxLocalFace(ns3::CcnxLocalFace const & arg0) [copy constructor]
5032 cls.add_constructor([param('ns3::CcnxLocalFace const &', 'arg0')])
5033 ## ccnx-local-face.h (module 'NDNabstraction'): ns3::CcnxLocalFace::CcnxLocalFace() [constructor]
5034 cls.add_constructor([])
5035 ## ccnx-local-face.h (module 'NDNabstraction'): static ns3::TypeId ns3::CcnxLocalFace::GetTypeId() [member function]
5036 cls.add_method('GetTypeId',
5037 'ns3::TypeId',
5038 [],
5039 is_static=True)
5040 ## ccnx-local-face.h (module 'NDNabstraction'): void ns3::CcnxLocalFace::Send(ns3::Ptr<ns3::Packet> p) [member function]
5041 cls.add_method('Send',
5042 'void',
5043 [param('ns3::Ptr< ns3::Packet >', 'p')],
5044 is_virtual=True)
5045 ## ccnx-local-face.h (module 'NDNabstraction'): void ns3::CcnxLocalFace::DoDispose() [member function]
5046 cls.add_method('DoDispose',
5047 'void',
5048 [],
5049 visibility='protected', is_virtual=True)
5050 ## ccnx-local-face.h (module 'NDNabstraction'): ns3::Ptr<ns3::NetDevice> ns3::CcnxLocalFace::GetDevice() const [member function]
5051 cls.add_method('GetDevice',
5052 'ns3::Ptr< ns3::NetDevice >',
5053 [],
5054 is_const=True, visibility='private', is_virtual=True)
5055 ## ccnx-local-face.h (module 'NDNabstraction'): void ns3::CcnxLocalFace::SetDevice(ns3::Ptr<ns3::NetDevice> device) [member function]
5056 cls.add_method('SetDevice',
5057 'void',
5058 [param('ns3::Ptr< ns3::NetDevice >', 'device')],
5059 visibility='private', is_virtual=True)
5060 return
5061
5062def register_Ns3CcnxRoute_methods(root_module, cls):
5063 cls.add_output_stream_operator()
5064 ## ccnx-route.h (module 'NDNabstraction'): ns3::CcnxRoute::CcnxRoute(ns3::CcnxRoute const & arg0) [copy constructor]
5065 cls.add_constructor([param('ns3::CcnxRoute const &', 'arg0')])
5066 ## ccnx-route.h (module 'NDNabstraction'): ns3::CcnxRoute::CcnxRoute() [constructor]
5067 cls.add_constructor([])
5068 ## ccnx-route.h (module 'NDNabstraction'): ns3::Ptr<ns3::CcnxFace> ns3::CcnxRoute::GetOutputFace() const [member function]
5069 cls.add_method('GetOutputFace',
5070 'ns3::Ptr< ns3::CcnxFace >',
5071 [],
5072 is_const=True)
5073 ## ccnx-route.h (module 'NDNabstraction'): ns3::Name::Components const & ns3::CcnxRoute::GetPrefix() const [member function]
5074 cls.add_method('GetPrefix',
5075 'ns3::Name::Components const &',
5076 [],
5077 is_const=True)
5078 ## ccnx-route.h (module 'NDNabstraction'): void ns3::CcnxRoute::SetOutputFace(ns3::Ptr<ns3::CcnxFace> outputDevice) [member function]
5079 cls.add_method('SetOutputFace',
5080 'void',
5081 [param('ns3::Ptr< ns3::CcnxFace >', 'outputDevice')])
5082 ## ccnx-route.h (module 'NDNabstraction'): void ns3::CcnxRoute::SetPrefix(ns3::Ptr<ns3::Name::Components> const & dest) [member function]
5083 cls.add_method('SetPrefix',
5084 'void',
5085 [param('ns3::Ptr< ns3::Name::Components > const &', 'dest')])
5086 return
5087
Ilya Moiseenko1762af72011-07-18 16:43:10 -07005088def register_Ns3EmptyAttributeValue_methods(root_module, cls):
5089 ## attribute.h (module 'core'): ns3::EmptyAttributeValue::EmptyAttributeValue(ns3::EmptyAttributeValue const & arg0) [copy constructor]
5090 cls.add_constructor([param('ns3::EmptyAttributeValue const &', 'arg0')])
5091 ## attribute.h (module 'core'): ns3::EmptyAttributeValue::EmptyAttributeValue() [constructor]
5092 cls.add_constructor([])
5093 ## attribute.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::EmptyAttributeValue::Copy() const [member function]
5094 cls.add_method('Copy',
5095 'ns3::Ptr< ns3::AttributeValue >',
5096 [],
5097 is_const=True, visibility='private', is_virtual=True)
5098 ## attribute.h (module 'core'): bool ns3::EmptyAttributeValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
5099 cls.add_method('DeserializeFromString',
5100 'bool',
5101 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
5102 visibility='private', is_virtual=True)
5103 ## attribute.h (module 'core'): std::string ns3::EmptyAttributeValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
5104 cls.add_method('SerializeToString',
5105 'std::string',
5106 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
5107 is_const=True, visibility='private', is_virtual=True)
5108 return
5109
5110def register_Ns3EventImpl_methods(root_module, cls):
5111 ## event-impl.h (module 'core'): ns3::EventImpl::EventImpl(ns3::EventImpl const & arg0) [copy constructor]
5112 cls.add_constructor([param('ns3::EventImpl const &', 'arg0')])
5113 ## event-impl.h (module 'core'): ns3::EventImpl::EventImpl() [constructor]
5114 cls.add_constructor([])
5115 ## event-impl.h (module 'core'): void ns3::EventImpl::Cancel() [member function]
5116 cls.add_method('Cancel',
5117 'void',
5118 [])
5119 ## event-impl.h (module 'core'): void ns3::EventImpl::Invoke() [member function]
5120 cls.add_method('Invoke',
5121 'void',
5122 [])
5123 ## event-impl.h (module 'core'): bool ns3::EventImpl::IsCancelled() [member function]
5124 cls.add_method('IsCancelled',
5125 'bool',
5126 [])
5127 ## event-impl.h (module 'core'): void ns3::EventImpl::Notify() [member function]
5128 cls.add_method('Notify',
5129 'void',
5130 [],
5131 is_pure_virtual=True, visibility='protected', is_virtual=True)
5132 return
5133
Ilya Moiseenkoc166cd32011-08-12 12:50:30 -07005134def register_Ns3IntegerValue_methods(root_module, cls):
5135 ## integer.h (module 'core'): ns3::IntegerValue::IntegerValue() [constructor]
5136 cls.add_constructor([])
5137 ## integer.h (module 'core'): ns3::IntegerValue::IntegerValue(ns3::IntegerValue const & arg0) [copy constructor]
5138 cls.add_constructor([param('ns3::IntegerValue const &', 'arg0')])
5139 ## integer.h (module 'core'): ns3::IntegerValue::IntegerValue(int64_t const & value) [constructor]
5140 cls.add_constructor([param('int64_t const &', 'value')])
5141 ## integer.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::IntegerValue::Copy() const [member function]
5142 cls.add_method('Copy',
5143 'ns3::Ptr< ns3::AttributeValue >',
5144 [],
5145 is_const=True, is_virtual=True)
5146 ## integer.h (module 'core'): bool ns3::IntegerValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
5147 cls.add_method('DeserializeFromString',
5148 'bool',
5149 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
5150 is_virtual=True)
5151 ## integer.h (module 'core'): int64_t ns3::IntegerValue::Get() const [member function]
5152 cls.add_method('Get',
5153 'int64_t',
5154 [],
5155 is_const=True)
5156 ## integer.h (module 'core'): std::string ns3::IntegerValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
5157 cls.add_method('SerializeToString',
5158 'std::string',
5159 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
5160 is_const=True, is_virtual=True)
5161 ## integer.h (module 'core'): void ns3::IntegerValue::Set(int64_t const & value) [member function]
5162 cls.add_method('Set',
5163 'void',
5164 [param('int64_t const &', 'value')])
5165 return
5166
Ilya Moiseenko1762af72011-07-18 16:43:10 -07005167def register_Ns3Ipv4AddressChecker_methods(root_module, cls):
5168 ## ipv4-address.h (module 'network'): ns3::Ipv4AddressChecker::Ipv4AddressChecker() [constructor]
5169 cls.add_constructor([])
5170 ## ipv4-address.h (module 'network'): ns3::Ipv4AddressChecker::Ipv4AddressChecker(ns3::Ipv4AddressChecker const & arg0) [copy constructor]
5171 cls.add_constructor([param('ns3::Ipv4AddressChecker const &', 'arg0')])
5172 return
5173
5174def register_Ns3Ipv4AddressValue_methods(root_module, cls):
5175 ## ipv4-address.h (module 'network'): ns3::Ipv4AddressValue::Ipv4AddressValue() [constructor]
5176 cls.add_constructor([])
5177 ## ipv4-address.h (module 'network'): ns3::Ipv4AddressValue::Ipv4AddressValue(ns3::Ipv4AddressValue const & arg0) [copy constructor]
5178 cls.add_constructor([param('ns3::Ipv4AddressValue const &', 'arg0')])
5179 ## ipv4-address.h (module 'network'): ns3::Ipv4AddressValue::Ipv4AddressValue(ns3::Ipv4Address const & value) [constructor]
5180 cls.add_constructor([param('ns3::Ipv4Address const &', 'value')])
5181 ## ipv4-address.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::Ipv4AddressValue::Copy() const [member function]
5182 cls.add_method('Copy',
5183 'ns3::Ptr< ns3::AttributeValue >',
5184 [],
5185 is_const=True, is_virtual=True)
5186 ## ipv4-address.h (module 'network'): bool ns3::Ipv4AddressValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
5187 cls.add_method('DeserializeFromString',
5188 'bool',
5189 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
5190 is_virtual=True)
5191 ## ipv4-address.h (module 'network'): ns3::Ipv4Address ns3::Ipv4AddressValue::Get() const [member function]
5192 cls.add_method('Get',
5193 'ns3::Ipv4Address',
5194 [],
5195 is_const=True)
5196 ## ipv4-address.h (module 'network'): std::string ns3::Ipv4AddressValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
5197 cls.add_method('SerializeToString',
5198 'std::string',
5199 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
5200 is_const=True, is_virtual=True)
5201 ## ipv4-address.h (module 'network'): void ns3::Ipv4AddressValue::Set(ns3::Ipv4Address const & value) [member function]
5202 cls.add_method('Set',
5203 'void',
5204 [param('ns3::Ipv4Address const &', 'value')])
5205 return
5206
Ilya Moiseenko1762af72011-07-18 16:43:10 -07005207def register_Ns3Ipv4MaskChecker_methods(root_module, cls):
5208 ## ipv4-address.h (module 'network'): ns3::Ipv4MaskChecker::Ipv4MaskChecker() [constructor]
5209 cls.add_constructor([])
5210 ## ipv4-address.h (module 'network'): ns3::Ipv4MaskChecker::Ipv4MaskChecker(ns3::Ipv4MaskChecker const & arg0) [copy constructor]
5211 cls.add_constructor([param('ns3::Ipv4MaskChecker const &', 'arg0')])
5212 return
5213
5214def register_Ns3Ipv4MaskValue_methods(root_module, cls):
5215 ## ipv4-address.h (module 'network'): ns3::Ipv4MaskValue::Ipv4MaskValue() [constructor]
5216 cls.add_constructor([])
5217 ## ipv4-address.h (module 'network'): ns3::Ipv4MaskValue::Ipv4MaskValue(ns3::Ipv4MaskValue const & arg0) [copy constructor]
5218 cls.add_constructor([param('ns3::Ipv4MaskValue const &', 'arg0')])
5219 ## ipv4-address.h (module 'network'): ns3::Ipv4MaskValue::Ipv4MaskValue(ns3::Ipv4Mask const & value) [constructor]
5220 cls.add_constructor([param('ns3::Ipv4Mask const &', 'value')])
5221 ## ipv4-address.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::Ipv4MaskValue::Copy() const [member function]
5222 cls.add_method('Copy',
5223 'ns3::Ptr< ns3::AttributeValue >',
5224 [],
5225 is_const=True, is_virtual=True)
5226 ## ipv4-address.h (module 'network'): bool ns3::Ipv4MaskValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
5227 cls.add_method('DeserializeFromString',
5228 'bool',
5229 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
5230 is_virtual=True)
5231 ## ipv4-address.h (module 'network'): ns3::Ipv4Mask ns3::Ipv4MaskValue::Get() const [member function]
5232 cls.add_method('Get',
5233 'ns3::Ipv4Mask',
5234 [],
5235 is_const=True)
5236 ## ipv4-address.h (module 'network'): std::string ns3::Ipv4MaskValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
5237 cls.add_method('SerializeToString',
5238 'std::string',
5239 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
5240 is_const=True, is_virtual=True)
5241 ## ipv4-address.h (module 'network'): void ns3::Ipv4MaskValue::Set(ns3::Ipv4Mask const & value) [member function]
5242 cls.add_method('Set',
5243 'void',
5244 [param('ns3::Ipv4Mask const &', 'value')])
5245 return
5246
Ilya Moiseenko1762af72011-07-18 16:43:10 -07005247def register_Ns3Ipv6AddressChecker_methods(root_module, cls):
5248 ## ipv6-address.h (module 'network'): ns3::Ipv6AddressChecker::Ipv6AddressChecker() [constructor]
5249 cls.add_constructor([])
5250 ## ipv6-address.h (module 'network'): ns3::Ipv6AddressChecker::Ipv6AddressChecker(ns3::Ipv6AddressChecker const & arg0) [copy constructor]
5251 cls.add_constructor([param('ns3::Ipv6AddressChecker const &', 'arg0')])
5252 return
5253
5254def register_Ns3Ipv6AddressValue_methods(root_module, cls):
5255 ## ipv6-address.h (module 'network'): ns3::Ipv6AddressValue::Ipv6AddressValue() [constructor]
5256 cls.add_constructor([])
5257 ## ipv6-address.h (module 'network'): ns3::Ipv6AddressValue::Ipv6AddressValue(ns3::Ipv6AddressValue const & arg0) [copy constructor]
5258 cls.add_constructor([param('ns3::Ipv6AddressValue const &', 'arg0')])
5259 ## ipv6-address.h (module 'network'): ns3::Ipv6AddressValue::Ipv6AddressValue(ns3::Ipv6Address const & value) [constructor]
5260 cls.add_constructor([param('ns3::Ipv6Address const &', 'value')])
5261 ## ipv6-address.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::Ipv6AddressValue::Copy() const [member function]
5262 cls.add_method('Copy',
5263 'ns3::Ptr< ns3::AttributeValue >',
5264 [],
5265 is_const=True, is_virtual=True)
5266 ## ipv6-address.h (module 'network'): bool ns3::Ipv6AddressValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
5267 cls.add_method('DeserializeFromString',
5268 'bool',
5269 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
5270 is_virtual=True)
5271 ## ipv6-address.h (module 'network'): ns3::Ipv6Address ns3::Ipv6AddressValue::Get() const [member function]
5272 cls.add_method('Get',
5273 'ns3::Ipv6Address',
5274 [],
5275 is_const=True)
5276 ## ipv6-address.h (module 'network'): std::string ns3::Ipv6AddressValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
5277 cls.add_method('SerializeToString',
5278 'std::string',
5279 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
5280 is_const=True, is_virtual=True)
5281 ## ipv6-address.h (module 'network'): void ns3::Ipv6AddressValue::Set(ns3::Ipv6Address const & value) [member function]
5282 cls.add_method('Set',
5283 'void',
5284 [param('ns3::Ipv6Address const &', 'value')])
5285 return
5286
5287def register_Ns3Ipv6PrefixChecker_methods(root_module, cls):
5288 ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixChecker::Ipv6PrefixChecker() [constructor]
5289 cls.add_constructor([])
5290 ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixChecker::Ipv6PrefixChecker(ns3::Ipv6PrefixChecker const & arg0) [copy constructor]
5291 cls.add_constructor([param('ns3::Ipv6PrefixChecker const &', 'arg0')])
5292 return
5293
5294def register_Ns3Ipv6PrefixValue_methods(root_module, cls):
5295 ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixValue::Ipv6PrefixValue() [constructor]
5296 cls.add_constructor([])
5297 ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixValue::Ipv6PrefixValue(ns3::Ipv6PrefixValue const & arg0) [copy constructor]
5298 cls.add_constructor([param('ns3::Ipv6PrefixValue const &', 'arg0')])
5299 ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixValue::Ipv6PrefixValue(ns3::Ipv6Prefix const & value) [constructor]
5300 cls.add_constructor([param('ns3::Ipv6Prefix const &', 'value')])
5301 ## ipv6-address.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::Ipv6PrefixValue::Copy() const [member function]
5302 cls.add_method('Copy',
5303 'ns3::Ptr< ns3::AttributeValue >',
5304 [],
5305 is_const=True, is_virtual=True)
5306 ## ipv6-address.h (module 'network'): bool ns3::Ipv6PrefixValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
5307 cls.add_method('DeserializeFromString',
5308 'bool',
5309 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
5310 is_virtual=True)
5311 ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix ns3::Ipv6PrefixValue::Get() const [member function]
5312 cls.add_method('Get',
5313 'ns3::Ipv6Prefix',
5314 [],
5315 is_const=True)
5316 ## ipv6-address.h (module 'network'): std::string ns3::Ipv6PrefixValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
5317 cls.add_method('SerializeToString',
5318 'std::string',
5319 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
5320 is_const=True, is_virtual=True)
5321 ## ipv6-address.h (module 'network'): void ns3::Ipv6PrefixValue::Set(ns3::Ipv6Prefix const & value) [member function]
5322 cls.add_method('Set',
5323 'void',
5324 [param('ns3::Ipv6Prefix const &', 'value')])
5325 return
5326
5327def register_Ns3NetDevice_methods(root_module, cls):
5328 ## net-device.h (module 'network'): ns3::NetDevice::NetDevice() [constructor]
5329 cls.add_constructor([])
5330 ## net-device.h (module 'network'): ns3::NetDevice::NetDevice(ns3::NetDevice const & arg0) [copy constructor]
5331 cls.add_constructor([param('ns3::NetDevice const &', 'arg0')])
5332 ## 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]
5333 cls.add_method('AddLinkChangeCallback',
5334 'void',
5335 [param('ns3::Callback< void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'callback')],
5336 is_pure_virtual=True, is_virtual=True)
5337 ## net-device.h (module 'network'): ns3::Address ns3::NetDevice::GetAddress() const [member function]
5338 cls.add_method('GetAddress',
5339 'ns3::Address',
5340 [],
5341 is_pure_virtual=True, is_const=True, is_virtual=True)
5342 ## net-device.h (module 'network'): ns3::Address ns3::NetDevice::GetBroadcast() const [member function]
5343 cls.add_method('GetBroadcast',
5344 'ns3::Address',
5345 [],
5346 is_pure_virtual=True, is_const=True, is_virtual=True)
5347 ## net-device.h (module 'network'): ns3::Ptr<ns3::Channel> ns3::NetDevice::GetChannel() const [member function]
5348 cls.add_method('GetChannel',
5349 'ns3::Ptr< ns3::Channel >',
5350 [],
5351 is_pure_virtual=True, is_const=True, is_virtual=True)
5352 ## net-device.h (module 'network'): uint32_t ns3::NetDevice::GetIfIndex() const [member function]
5353 cls.add_method('GetIfIndex',
5354 'uint32_t',
5355 [],
5356 is_pure_virtual=True, is_const=True, is_virtual=True)
5357 ## net-device.h (module 'network'): uint16_t ns3::NetDevice::GetMtu() const [member function]
5358 cls.add_method('GetMtu',
5359 'uint16_t',
5360 [],
5361 is_pure_virtual=True, is_const=True, is_virtual=True)
5362 ## net-device.h (module 'network'): ns3::Address ns3::NetDevice::GetMulticast(ns3::Ipv4Address multicastGroup) const [member function]
5363 cls.add_method('GetMulticast',
5364 'ns3::Address',
5365 [param('ns3::Ipv4Address', 'multicastGroup')],
5366 is_pure_virtual=True, is_const=True, is_virtual=True)
5367 ## net-device.h (module 'network'): ns3::Address ns3::NetDevice::GetMulticast(ns3::Ipv6Address addr) const [member function]
5368 cls.add_method('GetMulticast',
5369 'ns3::Address',
5370 [param('ns3::Ipv6Address', 'addr')],
5371 is_pure_virtual=True, is_const=True, is_virtual=True)
5372 ## net-device.h (module 'network'): ns3::Ptr<ns3::Node> ns3::NetDevice::GetNode() const [member function]
5373 cls.add_method('GetNode',
5374 'ns3::Ptr< ns3::Node >',
5375 [],
5376 is_pure_virtual=True, is_const=True, is_virtual=True)
5377 ## net-device.h (module 'network'): static ns3::TypeId ns3::NetDevice::GetTypeId() [member function]
5378 cls.add_method('GetTypeId',
5379 'ns3::TypeId',
5380 [],
5381 is_static=True)
5382 ## net-device.h (module 'network'): bool ns3::NetDevice::IsBridge() const [member function]
5383 cls.add_method('IsBridge',
5384 'bool',
5385 [],
5386 is_pure_virtual=True, is_const=True, is_virtual=True)
5387 ## net-device.h (module 'network'): bool ns3::NetDevice::IsBroadcast() const [member function]
5388 cls.add_method('IsBroadcast',
5389 'bool',
5390 [],
5391 is_pure_virtual=True, is_const=True, is_virtual=True)
5392 ## net-device.h (module 'network'): bool ns3::NetDevice::IsLinkUp() const [member function]
5393 cls.add_method('IsLinkUp',
5394 'bool',
5395 [],
5396 is_pure_virtual=True, is_const=True, is_virtual=True)
5397 ## net-device.h (module 'network'): bool ns3::NetDevice::IsMulticast() const [member function]
5398 cls.add_method('IsMulticast',
5399 'bool',
5400 [],
5401 is_pure_virtual=True, is_const=True, is_virtual=True)
5402 ## net-device.h (module 'network'): bool ns3::NetDevice::IsPointToPoint() const [member function]
5403 cls.add_method('IsPointToPoint',
5404 'bool',
5405 [],
5406 is_pure_virtual=True, is_const=True, is_virtual=True)
5407 ## net-device.h (module 'network'): bool ns3::NetDevice::NeedsArp() const [member function]
5408 cls.add_method('NeedsArp',
5409 'bool',
5410 [],
5411 is_pure_virtual=True, is_const=True, is_virtual=True)
5412 ## net-device.h (module 'network'): bool ns3::NetDevice::Send(ns3::Ptr<ns3::Packet> packet, ns3::Address const & dest, uint16_t protocolNumber) [member function]
5413 cls.add_method('Send',
5414 'bool',
5415 [param('ns3::Ptr< ns3::Packet >', 'packet'), param('ns3::Address const &', 'dest'), param('uint16_t', 'protocolNumber')],
5416 is_pure_virtual=True, is_virtual=True)
5417 ## 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]
5418 cls.add_method('SendFrom',
5419 'bool',
5420 [param('ns3::Ptr< ns3::Packet >', 'packet'), param('ns3::Address const &', 'source'), param('ns3::Address const &', 'dest'), param('uint16_t', 'protocolNumber')],
5421 is_pure_virtual=True, is_virtual=True)
5422 ## net-device.h (module 'network'): void ns3::NetDevice::SetAddress(ns3::Address address) [member function]
5423 cls.add_method('SetAddress',
5424 'void',
5425 [param('ns3::Address', 'address')],
5426 is_pure_virtual=True, is_virtual=True)
5427 ## net-device.h (module 'network'): void ns3::NetDevice::SetIfIndex(uint32_t const index) [member function]
5428 cls.add_method('SetIfIndex',
5429 'void',
5430 [param('uint32_t const', 'index')],
5431 is_pure_virtual=True, is_virtual=True)
5432 ## net-device.h (module 'network'): bool ns3::NetDevice::SetMtu(uint16_t const mtu) [member function]
5433 cls.add_method('SetMtu',
5434 'bool',
5435 [param('uint16_t const', 'mtu')],
5436 is_pure_virtual=True, is_virtual=True)
5437 ## net-device.h (module 'network'): void ns3::NetDevice::SetNode(ns3::Ptr<ns3::Node> node) [member function]
5438 cls.add_method('SetNode',
5439 'void',
5440 [param('ns3::Ptr< ns3::Node >', 'node')],
5441 is_pure_virtual=True, is_virtual=True)
5442 ## 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]
5443 cls.add_method('SetPromiscReceiveCallback',
5444 'void',
5445 [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')],
5446 is_pure_virtual=True, is_virtual=True)
5447 ## 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]
5448 cls.add_method('SetReceiveCallback',
5449 'void',
5450 [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')],
5451 is_pure_virtual=True, is_virtual=True)
5452 ## net-device.h (module 'network'): bool ns3::NetDevice::SupportsSendFrom() const [member function]
5453 cls.add_method('SupportsSendFrom',
5454 'bool',
5455 [],
5456 is_pure_virtual=True, is_const=True, is_virtual=True)
5457 return
5458
Alexander Afanasyeveface602011-08-17 17:50:12 -07005459def register_Ns3NixVector_methods(root_module, cls):
5460 cls.add_output_stream_operator()
5461 ## nix-vector.h (module 'network'): ns3::NixVector::NixVector() [constructor]
5462 cls.add_constructor([])
5463 ## nix-vector.h (module 'network'): ns3::NixVector::NixVector(ns3::NixVector const & o) [copy constructor]
5464 cls.add_constructor([param('ns3::NixVector const &', 'o')])
5465 ## nix-vector.h (module 'network'): void ns3::NixVector::AddNeighborIndex(uint32_t newBits, uint32_t numberOfBits) [member function]
5466 cls.add_method('AddNeighborIndex',
5467 'void',
5468 [param('uint32_t', 'newBits'), param('uint32_t', 'numberOfBits')])
5469 ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::BitCount(uint32_t numberOfNeighbors) const [member function]
5470 cls.add_method('BitCount',
5471 'uint32_t',
5472 [param('uint32_t', 'numberOfNeighbors')],
5473 is_const=True)
5474 ## nix-vector.h (module 'network'): ns3::Ptr<ns3::NixVector> ns3::NixVector::Copy() const [member function]
5475 cls.add_method('Copy',
5476 'ns3::Ptr< ns3::NixVector >',
5477 [],
5478 is_const=True)
5479 ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::Deserialize(uint32_t const * buffer, uint32_t size) [member function]
5480 cls.add_method('Deserialize',
5481 'uint32_t',
5482 [param('uint32_t const *', 'buffer'), param('uint32_t', 'size')])
5483 ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::ExtractNeighborIndex(uint32_t numberOfBits) [member function]
5484 cls.add_method('ExtractNeighborIndex',
5485 'uint32_t',
5486 [param('uint32_t', 'numberOfBits')])
5487 ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::GetRemainingBits() [member function]
5488 cls.add_method('GetRemainingBits',
5489 'uint32_t',
5490 [])
5491 ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::GetSerializedSize() const [member function]
5492 cls.add_method('GetSerializedSize',
5493 'uint32_t',
5494 [],
5495 is_const=True)
5496 ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::Serialize(uint32_t * buffer, uint32_t maxSize) const [member function]
5497 cls.add_method('Serialize',
5498 'uint32_t',
5499 [param('uint32_t *', 'buffer'), param('uint32_t', 'maxSize')],
5500 is_const=True)
5501 return
5502
Ilya Moiseenko1762af72011-07-18 16:43:10 -07005503def register_Ns3Node_methods(root_module, cls):
5504 ## node.h (module 'network'): ns3::Node::Node(ns3::Node const & arg0) [copy constructor]
5505 cls.add_constructor([param('ns3::Node const &', 'arg0')])
5506 ## node.h (module 'network'): ns3::Node::Node() [constructor]
5507 cls.add_constructor([])
5508 ## node.h (module 'network'): ns3::Node::Node(uint32_t systemId) [constructor]
5509 cls.add_constructor([param('uint32_t', 'systemId')])
5510 ## node.h (module 'network'): uint32_t ns3::Node::AddApplication(ns3::Ptr<ns3::Application> application) [member function]
5511 cls.add_method('AddApplication',
5512 'uint32_t',
5513 [param('ns3::Ptr< ns3::Application >', 'application')])
5514 ## node.h (module 'network'): uint32_t ns3::Node::AddDevice(ns3::Ptr<ns3::NetDevice> device) [member function]
5515 cls.add_method('AddDevice',
5516 'uint32_t',
5517 [param('ns3::Ptr< ns3::NetDevice >', 'device')])
5518 ## node.h (module 'network'): static bool ns3::Node::ChecksumEnabled() [member function]
5519 cls.add_method('ChecksumEnabled',
5520 'bool',
5521 [],
5522 is_static=True)
5523 ## node.h (module 'network'): ns3::Ptr<ns3::Application> ns3::Node::GetApplication(uint32_t index) const [member function]
5524 cls.add_method('GetApplication',
5525 'ns3::Ptr< ns3::Application >',
5526 [param('uint32_t', 'index')],
5527 is_const=True)
5528 ## node.h (module 'network'): ns3::Ptr<ns3::NetDevice> ns3::Node::GetDevice(uint32_t index) const [member function]
5529 cls.add_method('GetDevice',
5530 'ns3::Ptr< ns3::NetDevice >',
5531 [param('uint32_t', 'index')],
5532 is_const=True)
5533 ## node.h (module 'network'): uint32_t ns3::Node::GetId() const [member function]
5534 cls.add_method('GetId',
5535 'uint32_t',
5536 [],
5537 is_const=True)
5538 ## node.h (module 'network'): uint32_t ns3::Node::GetNApplications() const [member function]
5539 cls.add_method('GetNApplications',
5540 'uint32_t',
5541 [],
5542 is_const=True)
5543 ## node.h (module 'network'): uint32_t ns3::Node::GetNDevices() const [member function]
5544 cls.add_method('GetNDevices',
5545 'uint32_t',
5546 [],
5547 is_const=True)
5548 ## node.h (module 'network'): uint32_t ns3::Node::GetSystemId() const [member function]
5549 cls.add_method('GetSystemId',
5550 'uint32_t',
5551 [],
5552 is_const=True)
5553 ## node.h (module 'network'): static ns3::TypeId ns3::Node::GetTypeId() [member function]
5554 cls.add_method('GetTypeId',
5555 'ns3::TypeId',
5556 [],
5557 is_static=True)
Alexander Afanasyeveface602011-08-17 17:50:12 -07005558 ## 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]
5559 cls.add_method('RegisterDeviceAdditionListener',
5560 'void',
5561 [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')])
Ilya Moiseenko1762af72011-07-18 16:43:10 -07005562 ## 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]
5563 cls.add_method('RegisterProtocolHandler',
5564 'void',
5565 [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')])
Alexander Afanasyeveface602011-08-17 17:50:12 -07005566 ## 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]
5567 cls.add_method('UnregisterDeviceAdditionListener',
5568 'void',
5569 [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')])
Ilya Moiseenko1762af72011-07-18 16:43:10 -07005570 ## 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]
5571 cls.add_method('UnregisterProtocolHandler',
5572 'void',
5573 [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')])
5574 ## node.h (module 'network'): void ns3::Node::DoDispose() [member function]
5575 cls.add_method('DoDispose',
5576 'void',
5577 [],
5578 visibility='protected', is_virtual=True)
5579 ## node.h (module 'network'): void ns3::Node::DoStart() [member function]
5580 cls.add_method('DoStart',
5581 'void',
5582 [],
5583 visibility='protected', is_virtual=True)
Ilya Moiseenko1762af72011-07-18 16:43:10 -07005584 return
5585
5586def register_Ns3ObjectFactoryChecker_methods(root_module, cls):
5587 ## object-factory.h (module 'core'): ns3::ObjectFactoryChecker::ObjectFactoryChecker() [constructor]
5588 cls.add_constructor([])
5589 ## object-factory.h (module 'core'): ns3::ObjectFactoryChecker::ObjectFactoryChecker(ns3::ObjectFactoryChecker const & arg0) [copy constructor]
5590 cls.add_constructor([param('ns3::ObjectFactoryChecker const &', 'arg0')])
5591 return
5592
5593def register_Ns3ObjectFactoryValue_methods(root_module, cls):
5594 ## object-factory.h (module 'core'): ns3::ObjectFactoryValue::ObjectFactoryValue() [constructor]
5595 cls.add_constructor([])
5596 ## object-factory.h (module 'core'): ns3::ObjectFactoryValue::ObjectFactoryValue(ns3::ObjectFactoryValue const & arg0) [copy constructor]
5597 cls.add_constructor([param('ns3::ObjectFactoryValue const &', 'arg0')])
5598 ## object-factory.h (module 'core'): ns3::ObjectFactoryValue::ObjectFactoryValue(ns3::ObjectFactory const & value) [constructor]
5599 cls.add_constructor([param('ns3::ObjectFactory const &', 'value')])
5600 ## object-factory.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::ObjectFactoryValue::Copy() const [member function]
5601 cls.add_method('Copy',
5602 'ns3::Ptr< ns3::AttributeValue >',
5603 [],
5604 is_const=True, is_virtual=True)
5605 ## object-factory.h (module 'core'): bool ns3::ObjectFactoryValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
5606 cls.add_method('DeserializeFromString',
5607 'bool',
5608 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
5609 is_virtual=True)
5610 ## object-factory.h (module 'core'): ns3::ObjectFactory ns3::ObjectFactoryValue::Get() const [member function]
5611 cls.add_method('Get',
5612 'ns3::ObjectFactory',
5613 [],
5614 is_const=True)
5615 ## object-factory.h (module 'core'): std::string ns3::ObjectFactoryValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
5616 cls.add_method('SerializeToString',
5617 'std::string',
5618 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
5619 is_const=True, is_virtual=True)
5620 ## object-factory.h (module 'core'): void ns3::ObjectFactoryValue::Set(ns3::ObjectFactory const & value) [member function]
5621 cls.add_method('Set',
5622 'void',
5623 [param('ns3::ObjectFactory const &', 'value')])
5624 return
5625
Alexander Afanasyeveface602011-08-17 17:50:12 -07005626def register_Ns3OutputStreamWrapper_methods(root_module, cls):
5627 ## output-stream-wrapper.h (module 'network'): ns3::OutputStreamWrapper::OutputStreamWrapper(ns3::OutputStreamWrapper const & arg0) [copy constructor]
5628 cls.add_constructor([param('ns3::OutputStreamWrapper const &', 'arg0')])
5629 ## output-stream-wrapper.h (module 'network'): ns3::OutputStreamWrapper::OutputStreamWrapper(std::string filename, std::_Ios_Openmode filemode) [constructor]
5630 cls.add_constructor([param('std::string', 'filename'), param('std::_Ios_Openmode', 'filemode')])
5631 ## output-stream-wrapper.h (module 'network'): ns3::OutputStreamWrapper::OutputStreamWrapper(std::ostream * os) [constructor]
5632 cls.add_constructor([param('std::ostream *', 'os')])
5633 ## output-stream-wrapper.h (module 'network'): std::ostream * ns3::OutputStreamWrapper::GetStream() [member function]
5634 cls.add_method('GetStream',
5635 'std::ostream *',
5636 [])
5637 return
5638
5639def register_Ns3Packet_methods(root_module, cls):
5640 cls.add_output_stream_operator()
5641 ## packet.h (module 'network'): ns3::Packet::Packet() [constructor]
5642 cls.add_constructor([])
5643 ## packet.h (module 'network'): ns3::Packet::Packet(ns3::Packet const & o) [copy constructor]
5644 cls.add_constructor([param('ns3::Packet const &', 'o')])
5645 ## packet.h (module 'network'): ns3::Packet::Packet(uint32_t size) [constructor]
5646 cls.add_constructor([param('uint32_t', 'size')])
5647 ## packet.h (module 'network'): ns3::Packet::Packet(uint8_t const * buffer, uint32_t size, bool magic) [constructor]
5648 cls.add_constructor([param('uint8_t const *', 'buffer'), param('uint32_t', 'size'), param('bool', 'magic')])
5649 ## packet.h (module 'network'): ns3::Packet::Packet(uint8_t const * buffer, uint32_t size) [constructor]
5650 cls.add_constructor([param('uint8_t const *', 'buffer'), param('uint32_t', 'size')])
5651 ## packet.h (module 'network'): void ns3::Packet::AddAtEnd(ns3::Ptr<const ns3::Packet> packet) [member function]
5652 cls.add_method('AddAtEnd',
5653 'void',
5654 [param('ns3::Ptr< ns3::Packet const >', 'packet')])
5655 ## packet.h (module 'network'): void ns3::Packet::AddByteTag(ns3::Tag const & tag) const [member function]
5656 cls.add_method('AddByteTag',
5657 'void',
5658 [param('ns3::Tag const &', 'tag')],
5659 is_const=True)
5660 ## packet.h (module 'network'): void ns3::Packet::AddHeader(ns3::Header const & header) [member function]
5661 cls.add_method('AddHeader',
5662 'void',
5663 [param('ns3::Header const &', 'header')])
5664 ## packet.h (module 'network'): void ns3::Packet::AddPacketTag(ns3::Tag const & tag) const [member function]
5665 cls.add_method('AddPacketTag',
5666 'void',
5667 [param('ns3::Tag const &', 'tag')],
5668 is_const=True)
5669 ## packet.h (module 'network'): void ns3::Packet::AddPaddingAtEnd(uint32_t size) [member function]
5670 cls.add_method('AddPaddingAtEnd',
5671 'void',
5672 [param('uint32_t', 'size')])
5673 ## packet.h (module 'network'): void ns3::Packet::AddTrailer(ns3::Trailer const & trailer) [member function]
5674 cls.add_method('AddTrailer',
5675 'void',
5676 [param('ns3::Trailer const &', 'trailer')])
5677 ## packet.h (module 'network'): ns3::PacketMetadata::ItemIterator ns3::Packet::BeginItem() const [member function]
5678 cls.add_method('BeginItem',
5679 'ns3::PacketMetadata::ItemIterator',
5680 [],
5681 is_const=True)
5682 ## packet.h (module 'network'): ns3::Ptr<ns3::Packet> ns3::Packet::Copy() const [member function]
5683 cls.add_method('Copy',
5684 'ns3::Ptr< ns3::Packet >',
5685 [],
5686 is_const=True)
5687 ## packet.h (module 'network'): uint32_t ns3::Packet::CopyData(uint8_t * buffer, uint32_t size) const [member function]
5688 cls.add_method('CopyData',
5689 'uint32_t',
5690 [param('uint8_t *', 'buffer'), param('uint32_t', 'size')],
5691 is_const=True)
5692 ## packet.h (module 'network'): void ns3::Packet::CopyData(std::ostream * os, uint32_t size) const [member function]
5693 cls.add_method('CopyData',
5694 'void',
5695 [param('std::ostream *', 'os'), param('uint32_t', 'size')],
5696 is_const=True)
5697 ## packet.h (module 'network'): ns3::Ptr<ns3::Packet> ns3::Packet::CreateFragment(uint32_t start, uint32_t length) const [member function]
5698 cls.add_method('CreateFragment',
5699 'ns3::Ptr< ns3::Packet >',
5700 [param('uint32_t', 'start'), param('uint32_t', 'length')],
5701 is_const=True)
5702 ## packet.h (module 'network'): static void ns3::Packet::EnableChecking() [member function]
5703 cls.add_method('EnableChecking',
5704 'void',
5705 [],
5706 is_static=True)
5707 ## packet.h (module 'network'): static void ns3::Packet::EnablePrinting() [member function]
5708 cls.add_method('EnablePrinting',
5709 'void',
5710 [],
5711 is_static=True)
5712 ## packet.h (module 'network'): bool ns3::Packet::FindFirstMatchingByteTag(ns3::Tag & tag) const [member function]
5713 cls.add_method('FindFirstMatchingByteTag',
5714 'bool',
5715 [param('ns3::Tag &', 'tag')],
5716 is_const=True)
5717 ## packet.h (module 'network'): ns3::ByteTagIterator ns3::Packet::GetByteTagIterator() const [member function]
5718 cls.add_method('GetByteTagIterator',
5719 'ns3::ByteTagIterator',
5720 [],
5721 is_const=True)
5722 ## packet.h (module 'network'): ns3::Ptr<ns3::NixVector> ns3::Packet::GetNixVector() const [member function]
5723 cls.add_method('GetNixVector',
5724 'ns3::Ptr< ns3::NixVector >',
5725 [],
5726 is_const=True)
5727 ## packet.h (module 'network'): ns3::PacketTagIterator ns3::Packet::GetPacketTagIterator() const [member function]
5728 cls.add_method('GetPacketTagIterator',
5729 'ns3::PacketTagIterator',
5730 [],
5731 is_const=True)
5732 ## packet.h (module 'network'): uint32_t ns3::Packet::GetSerializedSize() const [member function]
5733 cls.add_method('GetSerializedSize',
5734 'uint32_t',
5735 [],
5736 is_const=True)
5737 ## packet.h (module 'network'): uint32_t ns3::Packet::GetSize() const [member function]
5738 cls.add_method('GetSize',
5739 'uint32_t',
5740 [],
5741 is_const=True)
5742 ## packet.h (module 'network'): uint64_t ns3::Packet::GetUid() const [member function]
5743 cls.add_method('GetUid',
5744 'uint64_t',
5745 [],
5746 is_const=True)
5747 ## packet.h (module 'network'): uint8_t const * ns3::Packet::PeekData() const [member function]
5748 cls.add_method('PeekData',
5749 'uint8_t const *',
5750 [],
5751 deprecated=True, is_const=True)
5752 ## packet.h (module 'network'): uint32_t ns3::Packet::PeekHeader(ns3::Header & header) const [member function]
5753 cls.add_method('PeekHeader',
5754 'uint32_t',
5755 [param('ns3::Header &', 'header')],
5756 is_const=True)
5757 ## packet.h (module 'network'): bool ns3::Packet::PeekPacketTag(ns3::Tag & tag) const [member function]
5758 cls.add_method('PeekPacketTag',
5759 'bool',
5760 [param('ns3::Tag &', 'tag')],
5761 is_const=True)
5762 ## packet.h (module 'network'): uint32_t ns3::Packet::PeekTrailer(ns3::Trailer & trailer) [member function]
5763 cls.add_method('PeekTrailer',
5764 'uint32_t',
5765 [param('ns3::Trailer &', 'trailer')])
5766 ## packet.h (module 'network'): void ns3::Packet::Print(std::ostream & os) const [member function]
5767 cls.add_method('Print',
5768 'void',
5769 [param('std::ostream &', 'os')],
5770 is_const=True)
5771 ## packet.h (module 'network'): void ns3::Packet::PrintByteTags(std::ostream & os) const [member function]
5772 cls.add_method('PrintByteTags',
5773 'void',
5774 [param('std::ostream &', 'os')],
5775 is_const=True)
5776 ## packet.h (module 'network'): void ns3::Packet::PrintPacketTags(std::ostream & os) const [member function]
5777 cls.add_method('PrintPacketTags',
5778 'void',
5779 [param('std::ostream &', 'os')],
5780 is_const=True)
5781 ## packet.h (module 'network'): void ns3::Packet::RemoveAllByteTags() [member function]
5782 cls.add_method('RemoveAllByteTags',
5783 'void',
5784 [])
5785 ## packet.h (module 'network'): void ns3::Packet::RemoveAllPacketTags() [member function]
5786 cls.add_method('RemoveAllPacketTags',
5787 'void',
5788 [])
5789 ## packet.h (module 'network'): void ns3::Packet::RemoveAtEnd(uint32_t size) [member function]
5790 cls.add_method('RemoveAtEnd',
5791 'void',
5792 [param('uint32_t', 'size')])
5793 ## packet.h (module 'network'): void ns3::Packet::RemoveAtStart(uint32_t size) [member function]
5794 cls.add_method('RemoveAtStart',
5795 'void',
5796 [param('uint32_t', 'size')])
5797 ## packet.h (module 'network'): uint32_t ns3::Packet::RemoveHeader(ns3::Header & header) [member function]
5798 cls.add_method('RemoveHeader',
5799 'uint32_t',
5800 [param('ns3::Header &', 'header')])
5801 ## packet.h (module 'network'): bool ns3::Packet::RemovePacketTag(ns3::Tag & tag) [member function]
5802 cls.add_method('RemovePacketTag',
5803 'bool',
5804 [param('ns3::Tag &', 'tag')])
5805 ## packet.h (module 'network'): uint32_t ns3::Packet::RemoveTrailer(ns3::Trailer & trailer) [member function]
5806 cls.add_method('RemoveTrailer',
5807 'uint32_t',
5808 [param('ns3::Trailer &', 'trailer')])
5809 ## packet.h (module 'network'): uint32_t ns3::Packet::Serialize(uint8_t * buffer, uint32_t maxSize) const [member function]
5810 cls.add_method('Serialize',
5811 'uint32_t',
5812 [param('uint8_t *', 'buffer'), param('uint32_t', 'maxSize')],
5813 is_const=True)
5814 ## packet.h (module 'network'): void ns3::Packet::SetNixVector(ns3::Ptr<ns3::NixVector> arg0) [member function]
5815 cls.add_method('SetNixVector',
5816 'void',
5817 [param('ns3::Ptr< ns3::NixVector >', 'arg0')])
5818 return
5819
Ilya Moiseenko02fb7062011-08-11 17:18:00 -07005820def register_Ns3RandomVariableChecker_methods(root_module, cls):
5821 ## random-variable.h (module 'core'): ns3::RandomVariableChecker::RandomVariableChecker() [constructor]
5822 cls.add_constructor([])
5823 ## random-variable.h (module 'core'): ns3::RandomVariableChecker::RandomVariableChecker(ns3::RandomVariableChecker const & arg0) [copy constructor]
5824 cls.add_constructor([param('ns3::RandomVariableChecker const &', 'arg0')])
5825 return
5826
5827def register_Ns3RandomVariableValue_methods(root_module, cls):
5828 ## random-variable.h (module 'core'): ns3::RandomVariableValue::RandomVariableValue() [constructor]
5829 cls.add_constructor([])
5830 ## random-variable.h (module 'core'): ns3::RandomVariableValue::RandomVariableValue(ns3::RandomVariableValue const & arg0) [copy constructor]
5831 cls.add_constructor([param('ns3::RandomVariableValue const &', 'arg0')])
5832 ## random-variable.h (module 'core'): ns3::RandomVariableValue::RandomVariableValue(ns3::RandomVariable const & value) [constructor]
5833 cls.add_constructor([param('ns3::RandomVariable const &', 'value')])
5834 ## random-variable.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::RandomVariableValue::Copy() const [member function]
5835 cls.add_method('Copy',
5836 'ns3::Ptr< ns3::AttributeValue >',
5837 [],
5838 is_const=True, is_virtual=True)
5839 ## random-variable.h (module 'core'): bool ns3::RandomVariableValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
5840 cls.add_method('DeserializeFromString',
5841 'bool',
5842 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
5843 is_virtual=True)
5844 ## random-variable.h (module 'core'): ns3::RandomVariable ns3::RandomVariableValue::Get() const [member function]
5845 cls.add_method('Get',
5846 'ns3::RandomVariable',
5847 [],
5848 is_const=True)
5849 ## random-variable.h (module 'core'): std::string ns3::RandomVariableValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
5850 cls.add_method('SerializeToString',
5851 'std::string',
5852 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
5853 is_const=True, is_virtual=True)
5854 ## random-variable.h (module 'core'): void ns3::RandomVariableValue::Set(ns3::RandomVariable const & value) [member function]
5855 cls.add_method('Set',
5856 'void',
5857 [param('ns3::RandomVariable const &', 'value')])
5858 return
5859
5860def register_Ns3StupidInterestGenerator_methods(root_module, cls):
5861 ## stupid-interest-generator.h (module 'NDNabstraction'): ns3::StupidInterestGenerator::StupidInterestGenerator(ns3::StupidInterestGenerator const & arg0) [copy constructor]
5862 cls.add_constructor([param('ns3::StupidInterestGenerator const &', 'arg0')])
5863 ## stupid-interest-generator.h (module 'NDNabstraction'): ns3::StupidInterestGenerator::StupidInterestGenerator() [constructor]
5864 cls.add_constructor([])
5865 ## stupid-interest-generator.h (module 'NDNabstraction'): static ns3::TypeId ns3::StupidInterestGenerator::GetTypeId() [member function]
5866 cls.add_method('GetTypeId',
5867 'ns3::TypeId',
5868 [],
5869 is_static=True)
5870 ## stupid-interest-generator.h (module 'NDNabstraction'): void ns3::StupidInterestGenerator::DoDispose() [member function]
5871 cls.add_method('DoDispose',
5872 'void',
5873 [],
5874 visibility='protected', is_virtual=True)
5875 ## stupid-interest-generator.h (module 'NDNabstraction'): void ns3::StupidInterestGenerator::StartApplication() [member function]
5876 cls.add_method('StartApplication',
5877 'void',
5878 [],
5879 visibility='private', is_virtual=True)
5880 ## stupid-interest-generator.h (module 'NDNabstraction'): void ns3::StupidInterestGenerator::StopApplication() [member function]
5881 cls.add_method('StopApplication',
5882 'void',
5883 [],
5884 visibility='private', is_virtual=True)
5885 return
5886
5887def register_Ns3StupidInterestSink_methods(root_module, cls):
5888 ## stupid-interest-sink.h (module 'NDNabstraction'): ns3::StupidInterestSink::StupidInterestSink(ns3::StupidInterestSink const & arg0) [copy constructor]
5889 cls.add_constructor([param('ns3::StupidInterestSink const &', 'arg0')])
5890 ## stupid-interest-sink.h (module 'NDNabstraction'): ns3::StupidInterestSink::StupidInterestSink() [constructor]
5891 cls.add_constructor([])
5892 ## stupid-interest-sink.h (module 'NDNabstraction'): std::list<ns3::Ptr<ns3::Socket>, std::allocator<ns3::Ptr<ns3::Socket> > > ns3::StupidInterestSink::GetAcceptedSockets() const [member function]
5893 cls.add_method('GetAcceptedSockets',
5894 'std::list< ns3::Ptr< ns3::Socket > >',
5895 [],
5896 is_const=True)
5897 ## stupid-interest-sink.h (module 'NDNabstraction'): ns3::Ptr<ns3::Socket> ns3::StupidInterestSink::GetListeningSocket() const [member function]
5898 cls.add_method('GetListeningSocket',
5899 'ns3::Ptr< ns3::Socket >',
5900 [],
5901 is_const=True)
5902 ## stupid-interest-sink.h (module 'NDNabstraction'): uint32_t ns3::StupidInterestSink::GetTotalRx() const [member function]
5903 cls.add_method('GetTotalRx',
5904 'uint32_t',
5905 [],
5906 is_const=True)
5907 ## stupid-interest-sink.h (module 'NDNabstraction'): static ns3::TypeId ns3::StupidInterestSink::GetTypeId() [member function]
5908 cls.add_method('GetTypeId',
5909 'ns3::TypeId',
5910 [],
5911 is_static=True)
5912 ## stupid-interest-sink.h (module 'NDNabstraction'): void ns3::StupidInterestSink::DoDispose() [member function]
5913 cls.add_method('DoDispose',
5914 'void',
5915 [],
5916 visibility='protected', is_virtual=True)
5917 ## stupid-interest-sink.h (module 'NDNabstraction'): void ns3::StupidInterestSink::StartApplication() [member function]
5918 cls.add_method('StartApplication',
5919 'void',
5920 [],
5921 visibility='private', is_virtual=True)
5922 ## stupid-interest-sink.h (module 'NDNabstraction'): void ns3::StupidInterestSink::StopApplication() [member function]
5923 cls.add_method('StopApplication',
5924 'void',
5925 [],
5926 visibility='private', is_virtual=True)
5927 return
5928
Ilya Moiseenko1762af72011-07-18 16:43:10 -07005929def register_Ns3TimeChecker_methods(root_module, cls):
5930 ## nstime.h (module 'core'): ns3::TimeChecker::TimeChecker() [constructor]
5931 cls.add_constructor([])
5932 ## nstime.h (module 'core'): ns3::TimeChecker::TimeChecker(ns3::TimeChecker const & arg0) [copy constructor]
5933 cls.add_constructor([param('ns3::TimeChecker const &', 'arg0')])
5934 return
5935
5936def register_Ns3TimeValue_methods(root_module, cls):
5937 ## nstime.h (module 'core'): ns3::TimeValue::TimeValue() [constructor]
5938 cls.add_constructor([])
5939 ## nstime.h (module 'core'): ns3::TimeValue::TimeValue(ns3::TimeValue const & arg0) [copy constructor]
5940 cls.add_constructor([param('ns3::TimeValue const &', 'arg0')])
5941 ## nstime.h (module 'core'): ns3::TimeValue::TimeValue(ns3::Time const & value) [constructor]
5942 cls.add_constructor([param('ns3::Time const &', 'value')])
5943 ## nstime.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::TimeValue::Copy() const [member function]
5944 cls.add_method('Copy',
5945 'ns3::Ptr< ns3::AttributeValue >',
5946 [],
5947 is_const=True, is_virtual=True)
5948 ## nstime.h (module 'core'): bool ns3::TimeValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
5949 cls.add_method('DeserializeFromString',
5950 'bool',
5951 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
5952 is_virtual=True)
5953 ## nstime.h (module 'core'): ns3::Time ns3::TimeValue::Get() const [member function]
5954 cls.add_method('Get',
5955 'ns3::Time',
5956 [],
5957 is_const=True)
5958 ## nstime.h (module 'core'): std::string ns3::TimeValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
5959 cls.add_method('SerializeToString',
5960 'std::string',
5961 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
5962 is_const=True, is_virtual=True)
5963 ## nstime.h (module 'core'): void ns3::TimeValue::Set(ns3::Time const & value) [member function]
5964 cls.add_method('Set',
5965 'void',
5966 [param('ns3::Time const &', 'value')])
5967 return
5968
5969def register_Ns3TypeIdChecker_methods(root_module, cls):
5970 ## type-id.h (module 'core'): ns3::TypeIdChecker::TypeIdChecker() [constructor]
5971 cls.add_constructor([])
5972 ## type-id.h (module 'core'): ns3::TypeIdChecker::TypeIdChecker(ns3::TypeIdChecker const & arg0) [copy constructor]
5973 cls.add_constructor([param('ns3::TypeIdChecker const &', 'arg0')])
5974 return
5975
5976def register_Ns3TypeIdValue_methods(root_module, cls):
5977 ## type-id.h (module 'core'): ns3::TypeIdValue::TypeIdValue() [constructor]
5978 cls.add_constructor([])
5979 ## type-id.h (module 'core'): ns3::TypeIdValue::TypeIdValue(ns3::TypeIdValue const & arg0) [copy constructor]
5980 cls.add_constructor([param('ns3::TypeIdValue const &', 'arg0')])
5981 ## type-id.h (module 'core'): ns3::TypeIdValue::TypeIdValue(ns3::TypeId const & value) [constructor]
5982 cls.add_constructor([param('ns3::TypeId const &', 'value')])
5983 ## type-id.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::TypeIdValue::Copy() const [member function]
5984 cls.add_method('Copy',
5985 'ns3::Ptr< ns3::AttributeValue >',
5986 [],
5987 is_const=True, is_virtual=True)
5988 ## type-id.h (module 'core'): bool ns3::TypeIdValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
5989 cls.add_method('DeserializeFromString',
5990 'bool',
5991 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
5992 is_virtual=True)
5993 ## type-id.h (module 'core'): ns3::TypeId ns3::TypeIdValue::Get() const [member function]
5994 cls.add_method('Get',
5995 'ns3::TypeId',
5996 [],
5997 is_const=True)
5998 ## type-id.h (module 'core'): std::string ns3::TypeIdValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
5999 cls.add_method('SerializeToString',
6000 'std::string',
6001 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
6002 is_const=True, is_virtual=True)
6003 ## type-id.h (module 'core'): void ns3::TypeIdValue::Set(ns3::TypeId const & value) [member function]
6004 cls.add_method('Set',
6005 'void',
6006 [param('ns3::TypeId const &', 'value')])
6007 return
6008
6009def register_Ns3AddressChecker_methods(root_module, cls):
6010 ## address.h (module 'network'): ns3::AddressChecker::AddressChecker() [constructor]
6011 cls.add_constructor([])
6012 ## address.h (module 'network'): ns3::AddressChecker::AddressChecker(ns3::AddressChecker const & arg0) [copy constructor]
6013 cls.add_constructor([param('ns3::AddressChecker const &', 'arg0')])
6014 return
6015
6016def register_Ns3AddressValue_methods(root_module, cls):
6017 ## address.h (module 'network'): ns3::AddressValue::AddressValue() [constructor]
6018 cls.add_constructor([])
6019 ## address.h (module 'network'): ns3::AddressValue::AddressValue(ns3::AddressValue const & arg0) [copy constructor]
6020 cls.add_constructor([param('ns3::AddressValue const &', 'arg0')])
6021 ## address.h (module 'network'): ns3::AddressValue::AddressValue(ns3::Address const & value) [constructor]
6022 cls.add_constructor([param('ns3::Address const &', 'value')])
6023 ## address.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::AddressValue::Copy() const [member function]
6024 cls.add_method('Copy',
6025 'ns3::Ptr< ns3::AttributeValue >',
6026 [],
6027 is_const=True, is_virtual=True)
6028 ## address.h (module 'network'): bool ns3::AddressValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
6029 cls.add_method('DeserializeFromString',
6030 'bool',
6031 [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
6032 is_virtual=True)
6033 ## address.h (module 'network'): ns3::Address ns3::AddressValue::Get() const [member function]
6034 cls.add_method('Get',
6035 'ns3::Address',
6036 [],
6037 is_const=True)
6038 ## address.h (module 'network'): std::string ns3::AddressValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
6039 cls.add_method('SerializeToString',
6040 'std::string',
6041 [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
6042 is_const=True, is_virtual=True)
6043 ## address.h (module 'network'): void ns3::AddressValue::Set(ns3::Address const & value) [member function]
6044 cls.add_method('Set',
6045 'void',
6046 [param('ns3::Address const &', 'value')])
6047 return
6048
Alexander Afanasyeveface602011-08-17 17:50:12 -07006049def register_Ns3CcnxParserBlock_methods(root_module, cls):
6050 ## ccnx-decoding-helper.h (module 'NDNabstraction'): ns3::CcnxParser::Block::Block() [constructor]
Ilya Moiseenko1762af72011-07-18 16:43:10 -07006051 cls.add_constructor([])
Alexander Afanasyeveface602011-08-17 17:50:12 -07006052 ## ccnx-decoding-helper.h (module 'NDNabstraction'): ns3::CcnxParser::Block::Block(ns3::CcnxParser::Block const & arg0) [copy constructor]
6053 cls.add_constructor([param('ns3::CcnxParser::Block const &', 'arg0')])
6054 ## ccnx-decoding-helper.h (module 'NDNabstraction'): static ns3::Ptr<ns3::CcnxParser::Block> ns3::CcnxParser::Block::ParseBlock(ns3::Buffer::Iterator & start) [member function]
6055 cls.add_method('ParseBlock',
6056 'ns3::Ptr< ns3::CcnxParser::Block >',
6057 [param('ns3::Buffer::Iterator &', 'start')],
Alexander Afanasyev2536e202011-08-12 14:13:10 -07006058 is_static=True)
Alexander Afanasyeveface602011-08-17 17:50:12 -07006059 ## ccnx-decoding-helper.h (module 'NDNabstraction'): void ns3::CcnxParser::Block::accept(ns3::CcnxParser::Visitor & v) [member function]
6060 cls.add_method('accept',
Alexander Afanasyev2536e202011-08-12 14:13:10 -07006061 'void',
Alexander Afanasyeveface602011-08-17 17:50:12 -07006062 [param('ns3::CcnxParser::Visitor &', 'v')],
6063 is_pure_virtual=True, is_virtual=True)
6064 ## ccnx-decoding-helper.h (module 'NDNabstraction'): void ns3::CcnxParser::Block::accept(ns3::CcnxParser::GJVoidVisitor & v, boost::any param) [member function]
6065 cls.add_method('accept',
Alexander Afanasyev2536e202011-08-12 14:13:10 -07006066 'void',
Alexander Afanasyeveface602011-08-17 17:50:12 -07006067 [param('ns3::CcnxParser::GJVoidVisitor &', 'v'), param('boost::any', 'param')],
6068 is_pure_virtual=True, is_virtual=True)
6069 ## ccnx-decoding-helper.h (module 'NDNabstraction'): boost::any ns3::CcnxParser::Block::accept(ns3::CcnxParser::GJNoArguVisitor & v) [member function]
6070 cls.add_method('accept',
6071 'boost::any',
6072 [param('ns3::CcnxParser::GJNoArguVisitor &', 'v')],
6073 is_pure_virtual=True, is_virtual=True)
6074 ## ccnx-decoding-helper.h (module 'NDNabstraction'): boost::any ns3::CcnxParser::Block::accept(ns3::CcnxParser::GJVisitor & v, boost::any param) [member function]
6075 cls.add_method('accept',
6076 'boost::any',
6077 [param('ns3::CcnxParser::GJVisitor &', 'v'), param('boost::any', 'param')],
6078 is_pure_virtual=True, is_virtual=True)
Alexander Afanasyev2536e202011-08-12 14:13:10 -07006079 return
6080
Alexander Afanasyeveface602011-08-17 17:50:12 -07006081def register_Ns3CcnxParserCcnxDecodingException_methods(root_module, cls):
6082 ## ccnx-decoding-helper.h (module 'NDNabstraction'): ns3::CcnxParser::CcnxDecodingException::CcnxDecodingException() [constructor]
Alexander Afanasyev2536e202011-08-12 14:13:10 -07006083 cls.add_constructor([])
Alexander Afanasyeveface602011-08-17 17:50:12 -07006084 ## ccnx-decoding-helper.h (module 'NDNabstraction'): ns3::CcnxParser::CcnxDecodingException::CcnxDecodingException(ns3::CcnxParser::CcnxDecodingException const & arg0) [copy constructor]
6085 cls.add_constructor([param('ns3::CcnxParser::CcnxDecodingException const &', 'arg0')])
Ilya Moiseenko1762af72011-07-18 16:43:10 -07006086 return
6087
Alexander Afanasyeveface602011-08-17 17:50:12 -07006088def register_Ns3CcnxParserDattr_methods(root_module, cls):
6089 ## ccnx-decoding-helper.h (module 'NDNabstraction'): ns3::CcnxParser::Dattr::Dattr(ns3::CcnxParser::Dattr const & arg0) [copy constructor]
6090 cls.add_constructor([param('ns3::CcnxParser::Dattr const &', 'arg0')])
6091 ## ccnx-decoding-helper.h (module 'NDNabstraction'): ns3::CcnxParser::Dattr::Dattr(ns3::Buffer::Iterator & start, uint32_t dattr) [constructor]
6092 cls.add_constructor([param('ns3::Buffer::Iterator &', 'start'), param('uint32_t', 'dattr')])
6093 ## ccnx-decoding-helper.h (module 'NDNabstraction'): void ns3::CcnxParser::Dattr::accept(ns3::CcnxParser::Visitor & v) [member function]
6094 cls.add_method('accept',
6095 'void',
6096 [param('ns3::CcnxParser::Visitor &', 'v')],
6097 is_virtual=True)
6098 ## ccnx-decoding-helper.h (module 'NDNabstraction'): void ns3::CcnxParser::Dattr::accept(ns3::CcnxParser::GJVoidVisitor & v, boost::any param) [member function]
6099 cls.add_method('accept',
6100 'void',
6101 [param('ns3::CcnxParser::GJVoidVisitor &', 'v'), param('boost::any', 'param')],
6102 is_virtual=True)
6103 ## ccnx-decoding-helper.h (module 'NDNabstraction'): boost::any ns3::CcnxParser::Dattr::accept(ns3::CcnxParser::GJNoArguVisitor & v) [member function]
6104 cls.add_method('accept',
6105 'boost::any',
6106 [param('ns3::CcnxParser::GJNoArguVisitor &', 'v')],
6107 is_virtual=True)
6108 ## ccnx-decoding-helper.h (module 'NDNabstraction'): boost::any ns3::CcnxParser::Dattr::accept(ns3::CcnxParser::GJVisitor & v, boost::any param) [member function]
6109 cls.add_method('accept',
6110 'boost::any',
6111 [param('ns3::CcnxParser::GJVisitor &', 'v'), param('boost::any', 'param')],
6112 is_virtual=True)
6113 ## ccnx-decoding-helper.h (module 'NDNabstraction'): ns3::CcnxParser::Dattr::m_dattr [variable]
6114 cls.add_instance_attribute('m_dattr', 'uint32_t', is_const=False)
6115 ## ccnx-decoding-helper.h (module 'NDNabstraction'): ns3::CcnxParser::Dattr::m_value [variable]
6116 cls.add_instance_attribute('m_value', 'ns3::Ptr< ns3::CcnxParser::Udata >', is_const=False)
6117 return
6118
6119def register_Ns3CcnxParserDtag_methods(root_module, cls):
6120 ## ccnx-decoding-helper.h (module 'NDNabstraction'): ns3::CcnxParser::Dtag::Dtag(ns3::CcnxParser::Dtag const & arg0) [copy constructor]
6121 cls.add_constructor([param('ns3::CcnxParser::Dtag const &', 'arg0')])
6122 ## ccnx-decoding-helper.h (module 'NDNabstraction'): ns3::CcnxParser::Dtag::Dtag(ns3::Buffer::Iterator & start, uint32_t dtag) [constructor]
6123 cls.add_constructor([param('ns3::Buffer::Iterator &', 'start'), param('uint32_t', 'dtag')])
6124 ## ccnx-decoding-helper.h (module 'NDNabstraction'): void ns3::CcnxParser::Dtag::accept(ns3::CcnxParser::Visitor & v) [member function]
6125 cls.add_method('accept',
6126 'void',
6127 [param('ns3::CcnxParser::Visitor &', 'v')],
6128 is_virtual=True)
6129 ## ccnx-decoding-helper.h (module 'NDNabstraction'): void ns3::CcnxParser::Dtag::accept(ns3::CcnxParser::GJVoidVisitor & v, boost::any param) [member function]
6130 cls.add_method('accept',
6131 'void',
6132 [param('ns3::CcnxParser::GJVoidVisitor &', 'v'), param('boost::any', 'param')],
6133 is_virtual=True)
6134 ## ccnx-decoding-helper.h (module 'NDNabstraction'): boost::any ns3::CcnxParser::Dtag::accept(ns3::CcnxParser::GJNoArguVisitor & v) [member function]
6135 cls.add_method('accept',
6136 'boost::any',
6137 [param('ns3::CcnxParser::GJNoArguVisitor &', 'v')],
6138 is_virtual=True)
6139 ## ccnx-decoding-helper.h (module 'NDNabstraction'): boost::any ns3::CcnxParser::Dtag::accept(ns3::CcnxParser::GJVisitor & v, boost::any param) [member function]
6140 cls.add_method('accept',
6141 'boost::any',
6142 [param('ns3::CcnxParser::GJVisitor &', 'v'), param('boost::any', 'param')],
6143 is_virtual=True)
6144 ## ccnx-decoding-helper.h (module 'NDNabstraction'): ns3::CcnxParser::Dtag::m_dtag [variable]
6145 cls.add_instance_attribute('m_dtag', 'uint32_t', is_const=False)
6146 ## ccnx-decoding-helper.h (module 'NDNabstraction'): ns3::CcnxParser::Dtag::m_nestedBlocks [variable]
6147 cls.add_instance_attribute('m_nestedBlocks', 'std::list< ns3::Ptr< ns3::CcnxParser::Block > >', is_const=False)
6148 return
6149
6150def register_Ns3CcnxParserExt_methods(root_module, cls):
6151 ## ccnx-decoding-helper.h (module 'NDNabstraction'): ns3::CcnxParser::Ext::Ext(ns3::CcnxParser::Ext const & arg0) [copy constructor]
6152 cls.add_constructor([param('ns3::CcnxParser::Ext const &', 'arg0')])
6153 ## ccnx-decoding-helper.h (module 'NDNabstraction'): ns3::CcnxParser::Ext::Ext(ns3::Buffer::Iterator & start, uint32_t extSubtype) [constructor]
6154 cls.add_constructor([param('ns3::Buffer::Iterator &', 'start'), param('uint32_t', 'extSubtype')])
6155 ## ccnx-decoding-helper.h (module 'NDNabstraction'): void ns3::CcnxParser::Ext::accept(ns3::CcnxParser::Visitor & v) [member function]
6156 cls.add_method('accept',
6157 'void',
6158 [param('ns3::CcnxParser::Visitor &', 'v')],
6159 is_virtual=True)
6160 ## ccnx-decoding-helper.h (module 'NDNabstraction'): void ns3::CcnxParser::Ext::accept(ns3::CcnxParser::GJVoidVisitor & v, boost::any param) [member function]
6161 cls.add_method('accept',
6162 'void',
6163 [param('ns3::CcnxParser::GJVoidVisitor &', 'v'), param('boost::any', 'param')],
6164 is_virtual=True)
6165 ## ccnx-decoding-helper.h (module 'NDNabstraction'): boost::any ns3::CcnxParser::Ext::accept(ns3::CcnxParser::GJNoArguVisitor & v) [member function]
6166 cls.add_method('accept',
6167 'boost::any',
6168 [param('ns3::CcnxParser::GJNoArguVisitor &', 'v')],
6169 is_virtual=True)
6170 ## ccnx-decoding-helper.h (module 'NDNabstraction'): boost::any ns3::CcnxParser::Ext::accept(ns3::CcnxParser::GJVisitor & v, boost::any param) [member function]
6171 cls.add_method('accept',
6172 'boost::any',
6173 [param('ns3::CcnxParser::GJVisitor &', 'v'), param('boost::any', 'param')],
6174 is_virtual=True)
6175 ## ccnx-decoding-helper.h (module 'NDNabstraction'): ns3::CcnxParser::Ext::m_extSubtype [variable]
6176 cls.add_instance_attribute('m_extSubtype', 'uint64_t', is_const=False)
6177 return
6178
6179def register_Ns3CcnxParserGJNoArguVisitor_methods(root_module, cls):
6180 ## ccnx-decoding-helper.h (module 'NDNabstraction'): ns3::CcnxParser::GJNoArguVisitor::GJNoArguVisitor() [constructor]
6181 cls.add_constructor([])
6182 ## ccnx-decoding-helper.h (module 'NDNabstraction'): ns3::CcnxParser::GJNoArguVisitor::GJNoArguVisitor(ns3::CcnxParser::GJNoArguVisitor const & arg0) [copy constructor]
6183 cls.add_constructor([param('ns3::CcnxParser::GJNoArguVisitor const &', 'arg0')])
6184 ## ccnx-decoding-helper.h (module 'NDNabstraction'): boost::any ns3::CcnxParser::GJNoArguVisitor::visit(ns3::CcnxParser::Blob & arg0) [member function]
6185 cls.add_method('visit',
6186 'boost::any',
6187 [param('ns3::CcnxParser::Blob &', 'arg0')],
6188 is_pure_virtual=True, is_virtual=True)
6189 ## ccnx-decoding-helper.h (module 'NDNabstraction'): boost::any ns3::CcnxParser::GJNoArguVisitor::visit(ns3::CcnxParser::Udata & arg0) [member function]
6190 cls.add_method('visit',
6191 'boost::any',
6192 [param('ns3::CcnxParser::Udata &', 'arg0')],
6193 is_pure_virtual=True, is_virtual=True)
6194 ## ccnx-decoding-helper.h (module 'NDNabstraction'): boost::any ns3::CcnxParser::GJNoArguVisitor::visit(ns3::CcnxParser::Tag & arg0) [member function]
6195 cls.add_method('visit',
6196 'boost::any',
6197 [param('ns3::CcnxParser::Tag &', 'arg0')],
6198 is_pure_virtual=True, is_virtual=True)
6199 ## ccnx-decoding-helper.h (module 'NDNabstraction'): boost::any ns3::CcnxParser::GJNoArguVisitor::visit(ns3::CcnxParser::Attr & arg0) [member function]
6200 cls.add_method('visit',
6201 'boost::any',
6202 [param('ns3::CcnxParser::Attr &', 'arg0')],
6203 is_pure_virtual=True, is_virtual=True)
6204 ## ccnx-decoding-helper.h (module 'NDNabstraction'): boost::any ns3::CcnxParser::GJNoArguVisitor::visit(ns3::CcnxParser::Dtag & arg0) [member function]
6205 cls.add_method('visit',
6206 'boost::any',
6207 [param('ns3::CcnxParser::Dtag &', 'arg0')],
6208 is_pure_virtual=True, is_virtual=True)
6209 ## ccnx-decoding-helper.h (module 'NDNabstraction'): boost::any ns3::CcnxParser::GJNoArguVisitor::visit(ns3::CcnxParser::Dattr & arg0) [member function]
6210 cls.add_method('visit',
6211 'boost::any',
6212 [param('ns3::CcnxParser::Dattr &', 'arg0')],
6213 is_pure_virtual=True, is_virtual=True)
6214 ## ccnx-decoding-helper.h (module 'NDNabstraction'): boost::any ns3::CcnxParser::GJNoArguVisitor::visit(ns3::CcnxParser::Ext & arg0) [member function]
6215 cls.add_method('visit',
6216 'boost::any',
6217 [param('ns3::CcnxParser::Ext &', 'arg0')],
6218 is_pure_virtual=True, is_virtual=True)
6219 return
6220
6221def register_Ns3CcnxParserGJVisitor_methods(root_module, cls):
6222 ## ccnx-decoding-helper.h (module 'NDNabstraction'): ns3::CcnxParser::GJVisitor::GJVisitor() [constructor]
6223 cls.add_constructor([])
6224 ## ccnx-decoding-helper.h (module 'NDNabstraction'): ns3::CcnxParser::GJVisitor::GJVisitor(ns3::CcnxParser::GJVisitor const & arg0) [copy constructor]
6225 cls.add_constructor([param('ns3::CcnxParser::GJVisitor const &', 'arg0')])
6226 ## ccnx-decoding-helper.h (module 'NDNabstraction'): boost::any ns3::CcnxParser::GJVisitor::visit(ns3::CcnxParser::Blob & arg0, boost::any arg1) [member function]
6227 cls.add_method('visit',
6228 'boost::any',
6229 [param('ns3::CcnxParser::Blob &', 'arg0'), param('boost::any', 'arg1')],
6230 is_pure_virtual=True, is_virtual=True)
6231 ## ccnx-decoding-helper.h (module 'NDNabstraction'): boost::any ns3::CcnxParser::GJVisitor::visit(ns3::CcnxParser::Udata & arg0, boost::any arg1) [member function]
6232 cls.add_method('visit',
6233 'boost::any',
6234 [param('ns3::CcnxParser::Udata &', 'arg0'), param('boost::any', 'arg1')],
6235 is_pure_virtual=True, is_virtual=True)
6236 ## ccnx-decoding-helper.h (module 'NDNabstraction'): boost::any ns3::CcnxParser::GJVisitor::visit(ns3::CcnxParser::Tag & arg0, boost::any arg1) [member function]
6237 cls.add_method('visit',
6238 'boost::any',
6239 [param('ns3::CcnxParser::Tag &', 'arg0'), param('boost::any', 'arg1')],
6240 is_pure_virtual=True, is_virtual=True)
6241 ## ccnx-decoding-helper.h (module 'NDNabstraction'): boost::any ns3::CcnxParser::GJVisitor::visit(ns3::CcnxParser::Attr & arg0, boost::any arg1) [member function]
6242 cls.add_method('visit',
6243 'boost::any',
6244 [param('ns3::CcnxParser::Attr &', 'arg0'), param('boost::any', 'arg1')],
6245 is_pure_virtual=True, is_virtual=True)
6246 ## ccnx-decoding-helper.h (module 'NDNabstraction'): boost::any ns3::CcnxParser::GJVisitor::visit(ns3::CcnxParser::Dtag & arg0, boost::any arg1) [member function]
6247 cls.add_method('visit',
6248 'boost::any',
6249 [param('ns3::CcnxParser::Dtag &', 'arg0'), param('boost::any', 'arg1')],
6250 is_pure_virtual=True, is_virtual=True)
6251 ## ccnx-decoding-helper.h (module 'NDNabstraction'): boost::any ns3::CcnxParser::GJVisitor::visit(ns3::CcnxParser::Dattr & arg0, boost::any arg1) [member function]
6252 cls.add_method('visit',
6253 'boost::any',
6254 [param('ns3::CcnxParser::Dattr &', 'arg0'), param('boost::any', 'arg1')],
6255 is_pure_virtual=True, is_virtual=True)
6256 ## ccnx-decoding-helper.h (module 'NDNabstraction'): boost::any ns3::CcnxParser::GJVisitor::visit(ns3::CcnxParser::Ext & arg0, boost::any arg1) [member function]
6257 cls.add_method('visit',
6258 'boost::any',
6259 [param('ns3::CcnxParser::Ext &', 'arg0'), param('boost::any', 'arg1')],
6260 is_pure_virtual=True, is_virtual=True)
6261 return
6262
6263def register_Ns3CcnxParserGJVoidVisitor_methods(root_module, cls):
6264 ## ccnx-decoding-helper.h (module 'NDNabstraction'): ns3::CcnxParser::GJVoidVisitor::GJVoidVisitor() [constructor]
6265 cls.add_constructor([])
6266 ## ccnx-decoding-helper.h (module 'NDNabstraction'): ns3::CcnxParser::GJVoidVisitor::GJVoidVisitor(ns3::CcnxParser::GJVoidVisitor const & arg0) [copy constructor]
6267 cls.add_constructor([param('ns3::CcnxParser::GJVoidVisitor const &', 'arg0')])
6268 ## ccnx-decoding-helper.h (module 'NDNabstraction'): void ns3::CcnxParser::GJVoidVisitor::visit(ns3::CcnxParser::Blob & arg0, boost::any arg1) [member function]
6269 cls.add_method('visit',
6270 'void',
6271 [param('ns3::CcnxParser::Blob &', 'arg0'), param('boost::any', 'arg1')],
6272 is_pure_virtual=True, is_virtual=True)
6273 ## ccnx-decoding-helper.h (module 'NDNabstraction'): void ns3::CcnxParser::GJVoidVisitor::visit(ns3::CcnxParser::Udata & arg0, boost::any arg1) [member function]
6274 cls.add_method('visit',
6275 'void',
6276 [param('ns3::CcnxParser::Udata &', 'arg0'), param('boost::any', 'arg1')],
6277 is_pure_virtual=True, is_virtual=True)
6278 ## ccnx-decoding-helper.h (module 'NDNabstraction'): void ns3::CcnxParser::GJVoidVisitor::visit(ns3::CcnxParser::Tag & arg0, boost::any arg1) [member function]
6279 cls.add_method('visit',
6280 'void',
6281 [param('ns3::CcnxParser::Tag &', 'arg0'), param('boost::any', 'arg1')],
6282 is_pure_virtual=True, is_virtual=True)
6283 ## ccnx-decoding-helper.h (module 'NDNabstraction'): void ns3::CcnxParser::GJVoidVisitor::visit(ns3::CcnxParser::Attr & arg0, boost::any arg1) [member function]
6284 cls.add_method('visit',
6285 'void',
6286 [param('ns3::CcnxParser::Attr &', 'arg0'), param('boost::any', 'arg1')],
6287 is_pure_virtual=True, is_virtual=True)
6288 ## ccnx-decoding-helper.h (module 'NDNabstraction'): void ns3::CcnxParser::GJVoidVisitor::visit(ns3::CcnxParser::Dtag & arg0, boost::any arg1) [member function]
6289 cls.add_method('visit',
6290 'void',
6291 [param('ns3::CcnxParser::Dtag &', 'arg0'), param('boost::any', 'arg1')],
6292 is_pure_virtual=True, is_virtual=True)
6293 ## ccnx-decoding-helper.h (module 'NDNabstraction'): void ns3::CcnxParser::GJVoidVisitor::visit(ns3::CcnxParser::Dattr & arg0, boost::any arg1) [member function]
6294 cls.add_method('visit',
6295 'void',
6296 [param('ns3::CcnxParser::Dattr &', 'arg0'), param('boost::any', 'arg1')],
6297 is_pure_virtual=True, is_virtual=True)
6298 ## ccnx-decoding-helper.h (module 'NDNabstraction'): void ns3::CcnxParser::GJVoidVisitor::visit(ns3::CcnxParser::Ext & arg0, boost::any arg1) [member function]
6299 cls.add_method('visit',
6300 'void',
6301 [param('ns3::CcnxParser::Ext &', 'arg0'), param('boost::any', 'arg1')],
6302 is_pure_virtual=True, is_virtual=True)
6303 return
6304
6305def register_Ns3CcnxParserTag_methods(root_module, cls):
6306 ## ccnx-decoding-helper.h (module 'NDNabstraction'): ns3::CcnxParser::Tag::Tag(ns3::CcnxParser::Tag const & arg0) [copy constructor]
6307 cls.add_constructor([param('ns3::CcnxParser::Tag const &', 'arg0')])
6308 ## ccnx-decoding-helper.h (module 'NDNabstraction'): ns3::CcnxParser::Tag::Tag(ns3::Buffer::Iterator & start, uint32_t length) [constructor]
6309 cls.add_constructor([param('ns3::Buffer::Iterator &', 'start'), param('uint32_t', 'length')])
6310 ## ccnx-decoding-helper.h (module 'NDNabstraction'): void ns3::CcnxParser::Tag::accept(ns3::CcnxParser::Visitor & v) [member function]
6311 cls.add_method('accept',
6312 'void',
6313 [param('ns3::CcnxParser::Visitor &', 'v')],
6314 is_virtual=True)
6315 ## ccnx-decoding-helper.h (module 'NDNabstraction'): void ns3::CcnxParser::Tag::accept(ns3::CcnxParser::GJVoidVisitor & v, boost::any param) [member function]
6316 cls.add_method('accept',
6317 'void',
6318 [param('ns3::CcnxParser::GJVoidVisitor &', 'v'), param('boost::any', 'param')],
6319 is_virtual=True)
6320 ## ccnx-decoding-helper.h (module 'NDNabstraction'): boost::any ns3::CcnxParser::Tag::accept(ns3::CcnxParser::GJNoArguVisitor & v) [member function]
6321 cls.add_method('accept',
6322 'boost::any',
6323 [param('ns3::CcnxParser::GJNoArguVisitor &', 'v')],
6324 is_virtual=True)
6325 ## ccnx-decoding-helper.h (module 'NDNabstraction'): boost::any ns3::CcnxParser::Tag::accept(ns3::CcnxParser::GJVisitor & v, boost::any param) [member function]
6326 cls.add_method('accept',
6327 'boost::any',
6328 [param('ns3::CcnxParser::GJVisitor &', 'v'), param('boost::any', 'param')],
6329 is_virtual=True)
6330 ## ccnx-decoding-helper.h (module 'NDNabstraction'): ns3::CcnxParser::Tag::m_nestedBlocks [variable]
6331 cls.add_instance_attribute('m_nestedBlocks', 'std::list< ns3::Ptr< ns3::CcnxParser::Block > >', is_const=False)
6332 ## ccnx-decoding-helper.h (module 'NDNabstraction'): ns3::CcnxParser::Tag::m_tag [variable]
6333 cls.add_instance_attribute('m_tag', 'std::string', is_const=False)
6334 return
6335
6336def register_Ns3CcnxParserUdata_methods(root_module, cls):
6337 ## ccnx-decoding-helper.h (module 'NDNabstraction'): ns3::CcnxParser::Udata::Udata(ns3::CcnxParser::Udata const & arg0) [copy constructor]
6338 cls.add_constructor([param('ns3::CcnxParser::Udata const &', 'arg0')])
6339 ## ccnx-decoding-helper.h (module 'NDNabstraction'): ns3::CcnxParser::Udata::Udata(ns3::Buffer::Iterator & start, uint32_t length) [constructor]
6340 cls.add_constructor([param('ns3::Buffer::Iterator &', 'start'), param('uint32_t', 'length')])
6341 ## ccnx-decoding-helper.h (module 'NDNabstraction'): void ns3::CcnxParser::Udata::accept(ns3::CcnxParser::Visitor & v) [member function]
6342 cls.add_method('accept',
6343 'void',
6344 [param('ns3::CcnxParser::Visitor &', 'v')],
6345 is_virtual=True)
6346 ## ccnx-decoding-helper.h (module 'NDNabstraction'): void ns3::CcnxParser::Udata::accept(ns3::CcnxParser::GJVoidVisitor & v, boost::any param) [member function]
6347 cls.add_method('accept',
6348 'void',
6349 [param('ns3::CcnxParser::GJVoidVisitor &', 'v'), param('boost::any', 'param')],
6350 is_virtual=True)
6351 ## ccnx-decoding-helper.h (module 'NDNabstraction'): boost::any ns3::CcnxParser::Udata::accept(ns3::CcnxParser::GJNoArguVisitor & v) [member function]
6352 cls.add_method('accept',
6353 'boost::any',
6354 [param('ns3::CcnxParser::GJNoArguVisitor &', 'v')],
6355 is_virtual=True)
6356 ## ccnx-decoding-helper.h (module 'NDNabstraction'): boost::any ns3::CcnxParser::Udata::accept(ns3::CcnxParser::GJVisitor & v, boost::any param) [member function]
6357 cls.add_method('accept',
6358 'boost::any',
6359 [param('ns3::CcnxParser::GJVisitor &', 'v'), param('boost::any', 'param')],
6360 is_virtual=True)
6361 ## ccnx-decoding-helper.h (module 'NDNabstraction'): ns3::CcnxParser::Udata::m_udata [variable]
6362 cls.add_instance_attribute('m_udata', 'std::string', is_const=False)
6363 return
6364
6365def register_Ns3CcnxParserVisitor_methods(root_module, cls):
6366 ## ccnx-decoding-helper.h (module 'NDNabstraction'): ns3::CcnxParser::Visitor::Visitor() [constructor]
6367 cls.add_constructor([])
6368 ## ccnx-decoding-helper.h (module 'NDNabstraction'): ns3::CcnxParser::Visitor::Visitor(ns3::CcnxParser::Visitor const & arg0) [copy constructor]
6369 cls.add_constructor([param('ns3::CcnxParser::Visitor const &', 'arg0')])
6370 ## ccnx-decoding-helper.h (module 'NDNabstraction'): void ns3::CcnxParser::Visitor::visit(ns3::CcnxParser::Blob & arg0) [member function]
6371 cls.add_method('visit',
6372 'void',
6373 [param('ns3::CcnxParser::Blob &', 'arg0')],
6374 is_pure_virtual=True, is_virtual=True)
6375 ## ccnx-decoding-helper.h (module 'NDNabstraction'): void ns3::CcnxParser::Visitor::visit(ns3::CcnxParser::Udata & arg0) [member function]
6376 cls.add_method('visit',
6377 'void',
6378 [param('ns3::CcnxParser::Udata &', 'arg0')],
6379 is_pure_virtual=True, is_virtual=True)
6380 ## ccnx-decoding-helper.h (module 'NDNabstraction'): void ns3::CcnxParser::Visitor::visit(ns3::CcnxParser::Tag & arg0) [member function]
6381 cls.add_method('visit',
6382 'void',
6383 [param('ns3::CcnxParser::Tag &', 'arg0')],
6384 is_pure_virtual=True, is_virtual=True)
6385 ## ccnx-decoding-helper.h (module 'NDNabstraction'): void ns3::CcnxParser::Visitor::visit(ns3::CcnxParser::Attr & arg0) [member function]
6386 cls.add_method('visit',
6387 'void',
6388 [param('ns3::CcnxParser::Attr &', 'arg0')],
6389 is_pure_virtual=True, is_virtual=True)
6390 ## ccnx-decoding-helper.h (module 'NDNabstraction'): void ns3::CcnxParser::Visitor::visit(ns3::CcnxParser::Dtag & arg0) [member function]
6391 cls.add_method('visit',
6392 'void',
6393 [param('ns3::CcnxParser::Dtag &', 'arg0')],
6394 is_pure_virtual=True, is_virtual=True)
6395 ## ccnx-decoding-helper.h (module 'NDNabstraction'): void ns3::CcnxParser::Visitor::visit(ns3::CcnxParser::Dattr & arg0) [member function]
6396 cls.add_method('visit',
6397 'void',
6398 [param('ns3::CcnxParser::Dattr &', 'arg0')],
6399 is_pure_virtual=True, is_virtual=True)
6400 ## ccnx-decoding-helper.h (module 'NDNabstraction'): void ns3::CcnxParser::Visitor::visit(ns3::CcnxParser::Ext & arg0) [member function]
6401 cls.add_method('visit',
6402 'void',
6403 [param('ns3::CcnxParser::Ext &', 'arg0')],
6404 is_pure_virtual=True, is_virtual=True)
6405 return
6406
6407def register_Ns3CcnxParserAttr_methods(root_module, cls):
6408 ## ccnx-decoding-helper.h (module 'NDNabstraction'): ns3::CcnxParser::Attr::Attr(ns3::CcnxParser::Attr const & arg0) [copy constructor]
6409 cls.add_constructor([param('ns3::CcnxParser::Attr const &', 'arg0')])
6410 ## ccnx-decoding-helper.h (module 'NDNabstraction'): ns3::CcnxParser::Attr::Attr(ns3::Buffer::Iterator & start, uint32_t length) [constructor]
6411 cls.add_constructor([param('ns3::Buffer::Iterator &', 'start'), param('uint32_t', 'length')])
6412 ## ccnx-decoding-helper.h (module 'NDNabstraction'): void ns3::CcnxParser::Attr::accept(ns3::CcnxParser::Visitor & v) [member function]
6413 cls.add_method('accept',
6414 'void',
6415 [param('ns3::CcnxParser::Visitor &', 'v')],
6416 is_virtual=True)
6417 ## ccnx-decoding-helper.h (module 'NDNabstraction'): void ns3::CcnxParser::Attr::accept(ns3::CcnxParser::GJVoidVisitor & v, boost::any param) [member function]
6418 cls.add_method('accept',
6419 'void',
6420 [param('ns3::CcnxParser::GJVoidVisitor &', 'v'), param('boost::any', 'param')],
6421 is_virtual=True)
6422 ## ccnx-decoding-helper.h (module 'NDNabstraction'): boost::any ns3::CcnxParser::Attr::accept(ns3::CcnxParser::GJNoArguVisitor & v) [member function]
6423 cls.add_method('accept',
6424 'boost::any',
6425 [param('ns3::CcnxParser::GJNoArguVisitor &', 'v')],
6426 is_virtual=True)
6427 ## ccnx-decoding-helper.h (module 'NDNabstraction'): boost::any ns3::CcnxParser::Attr::accept(ns3::CcnxParser::GJVisitor & v, boost::any param) [member function]
6428 cls.add_method('accept',
6429 'boost::any',
6430 [param('ns3::CcnxParser::GJVisitor &', 'v'), param('boost::any', 'param')],
6431 is_virtual=True)
6432 ## ccnx-decoding-helper.h (module 'NDNabstraction'): ns3::CcnxParser::Attr::m_attr [variable]
6433 cls.add_instance_attribute('m_attr', 'std::string', is_const=False)
6434 ## ccnx-decoding-helper.h (module 'NDNabstraction'): ns3::CcnxParser::Attr::m_value [variable]
6435 cls.add_instance_attribute('m_value', 'ns3::Ptr< ns3::CcnxParser::Udata >', is_const=False)
6436 return
6437
6438def register_Ns3CcnxParserBlob_methods(root_module, cls):
6439 ## ccnx-decoding-helper.h (module 'NDNabstraction'): ns3::CcnxParser::Blob::Blob(ns3::CcnxParser::Blob const & arg0) [copy constructor]
6440 cls.add_constructor([param('ns3::CcnxParser::Blob const &', 'arg0')])
6441 ## ccnx-decoding-helper.h (module 'NDNabstraction'): ns3::CcnxParser::Blob::Blob(ns3::Buffer::Iterator & start, uint32_t length) [constructor]
6442 cls.add_constructor([param('ns3::Buffer::Iterator &', 'start'), param('uint32_t', 'length')])
6443 ## ccnx-decoding-helper.h (module 'NDNabstraction'): void ns3::CcnxParser::Blob::accept(ns3::CcnxParser::Visitor & v) [member function]
6444 cls.add_method('accept',
6445 'void',
6446 [param('ns3::CcnxParser::Visitor &', 'v')],
6447 is_virtual=True)
6448 ## ccnx-decoding-helper.h (module 'NDNabstraction'): void ns3::CcnxParser::Blob::accept(ns3::CcnxParser::GJVoidVisitor & v, boost::any param) [member function]
6449 cls.add_method('accept',
6450 'void',
6451 [param('ns3::CcnxParser::GJVoidVisitor &', 'v'), param('boost::any', 'param')],
6452 is_virtual=True)
6453 ## ccnx-decoding-helper.h (module 'NDNabstraction'): boost::any ns3::CcnxParser::Blob::accept(ns3::CcnxParser::GJNoArguVisitor & v) [member function]
6454 cls.add_method('accept',
6455 'boost::any',
6456 [param('ns3::CcnxParser::GJNoArguVisitor &', 'v')],
6457 is_virtual=True)
6458 ## ccnx-decoding-helper.h (module 'NDNabstraction'): boost::any ns3::CcnxParser::Blob::accept(ns3::CcnxParser::GJVisitor & v, boost::any param) [member function]
6459 cls.add_method('accept',
6460 'boost::any',
6461 [param('ns3::CcnxParser::GJVisitor &', 'v'), param('boost::any', 'param')],
6462 is_virtual=True)
6463 ## ccnx-decoding-helper.h (module 'NDNabstraction'): ns3::CcnxParser::Blob::m_blob [variable]
6464 cls.add_instance_attribute('m_blob', 'ns3::Buffer', is_const=False)
6465 return
6466
6467def register_Ns3CcnxParserDepthFirstVisitor_methods(root_module, cls):
6468 ## ccnx-decoding-helper.h (module 'NDNabstraction'): ns3::CcnxParser::DepthFirstVisitor::DepthFirstVisitor() [constructor]
6469 cls.add_constructor([])
6470 ## ccnx-decoding-helper.h (module 'NDNabstraction'): ns3::CcnxParser::DepthFirstVisitor::DepthFirstVisitor(ns3::CcnxParser::DepthFirstVisitor const & arg0) [copy constructor]
6471 cls.add_constructor([param('ns3::CcnxParser::DepthFirstVisitor const &', 'arg0')])
6472 ## ccnx-decoding-helper.h (module 'NDNabstraction'): void ns3::CcnxParser::DepthFirstVisitor::visit(ns3::CcnxParser::Blob & arg0) [member function]
6473 cls.add_method('visit',
6474 'void',
6475 [param('ns3::CcnxParser::Blob &', 'arg0')],
6476 is_virtual=True)
6477 ## ccnx-decoding-helper.h (module 'NDNabstraction'): void ns3::CcnxParser::DepthFirstVisitor::visit(ns3::CcnxParser::Udata & arg0) [member function]
6478 cls.add_method('visit',
6479 'void',
6480 [param('ns3::CcnxParser::Udata &', 'arg0')],
6481 is_virtual=True)
6482 ## ccnx-decoding-helper.h (module 'NDNabstraction'): void ns3::CcnxParser::DepthFirstVisitor::visit(ns3::CcnxParser::Tag & arg0) [member function]
6483 cls.add_method('visit',
6484 'void',
6485 [param('ns3::CcnxParser::Tag &', 'arg0')],
6486 is_virtual=True)
6487 ## ccnx-decoding-helper.h (module 'NDNabstraction'): void ns3::CcnxParser::DepthFirstVisitor::visit(ns3::CcnxParser::Attr & arg0) [member function]
6488 cls.add_method('visit',
6489 'void',
6490 [param('ns3::CcnxParser::Attr &', 'arg0')],
6491 is_virtual=True)
6492 ## ccnx-decoding-helper.h (module 'NDNabstraction'): void ns3::CcnxParser::DepthFirstVisitor::visit(ns3::CcnxParser::Dtag & arg0) [member function]
6493 cls.add_method('visit',
6494 'void',
6495 [param('ns3::CcnxParser::Dtag &', 'arg0')],
6496 is_virtual=True)
6497 ## ccnx-decoding-helper.h (module 'NDNabstraction'): void ns3::CcnxParser::DepthFirstVisitor::visit(ns3::CcnxParser::Dattr & arg0) [member function]
6498 cls.add_method('visit',
6499 'void',
6500 [param('ns3::CcnxParser::Dattr &', 'arg0')],
6501 is_virtual=True)
6502 ## ccnx-decoding-helper.h (module 'NDNabstraction'): void ns3::CcnxParser::DepthFirstVisitor::visit(ns3::CcnxParser::Ext & arg0) [member function]
6503 cls.add_method('visit',
6504 'void',
6505 [param('ns3::CcnxParser::Ext &', 'arg0')],
6506 is_virtual=True)
6507 return
6508
6509def register_Ns3CcnxParserGJDepthFirstVisitor_methods(root_module, cls):
6510 ## ccnx-decoding-helper.h (module 'NDNabstraction'): ns3::CcnxParser::GJDepthFirstVisitor::GJDepthFirstVisitor() [constructor]
6511 cls.add_constructor([])
6512 ## ccnx-decoding-helper.h (module 'NDNabstraction'): ns3::CcnxParser::GJDepthFirstVisitor::GJDepthFirstVisitor(ns3::CcnxParser::GJDepthFirstVisitor const & arg0) [copy constructor]
6513 cls.add_constructor([param('ns3::CcnxParser::GJDepthFirstVisitor const &', 'arg0')])
6514 ## ccnx-decoding-helper.h (module 'NDNabstraction'): boost::any ns3::CcnxParser::GJDepthFirstVisitor::visit(ns3::CcnxParser::Blob & arg0, boost::any arg1) [member function]
6515 cls.add_method('visit',
6516 'boost::any',
6517 [param('ns3::CcnxParser::Blob &', 'arg0'), param('boost::any', 'arg1')],
6518 is_virtual=True)
6519 ## ccnx-decoding-helper.h (module 'NDNabstraction'): boost::any ns3::CcnxParser::GJDepthFirstVisitor::visit(ns3::CcnxParser::Udata & arg0, boost::any arg1) [member function]
6520 cls.add_method('visit',
6521 'boost::any',
6522 [param('ns3::CcnxParser::Udata &', 'arg0'), param('boost::any', 'arg1')],
6523 is_virtual=True)
6524 ## ccnx-decoding-helper.h (module 'NDNabstraction'): boost::any ns3::CcnxParser::GJDepthFirstVisitor::visit(ns3::CcnxParser::Tag & arg0, boost::any arg1) [member function]
6525 cls.add_method('visit',
6526 'boost::any',
6527 [param('ns3::CcnxParser::Tag &', 'arg0'), param('boost::any', 'arg1')],
6528 is_virtual=True)
6529 ## ccnx-decoding-helper.h (module 'NDNabstraction'): boost::any ns3::CcnxParser::GJDepthFirstVisitor::visit(ns3::CcnxParser::Attr & arg0, boost::any arg1) [member function]
6530 cls.add_method('visit',
6531 'boost::any',
6532 [param('ns3::CcnxParser::Attr &', 'arg0'), param('boost::any', 'arg1')],
6533 is_virtual=True)
6534 ## ccnx-decoding-helper.h (module 'NDNabstraction'): boost::any ns3::CcnxParser::GJDepthFirstVisitor::visit(ns3::CcnxParser::Dtag & arg0, boost::any arg1) [member function]
6535 cls.add_method('visit',
6536 'boost::any',
6537 [param('ns3::CcnxParser::Dtag &', 'arg0'), param('boost::any', 'arg1')],
6538 is_virtual=True)
6539 ## ccnx-decoding-helper.h (module 'NDNabstraction'): boost::any ns3::CcnxParser::GJDepthFirstVisitor::visit(ns3::CcnxParser::Dattr & arg0, boost::any arg1) [member function]
6540 cls.add_method('visit',
6541 'boost::any',
6542 [param('ns3::CcnxParser::Dattr &', 'arg0'), param('boost::any', 'arg1')],
6543 is_virtual=True)
6544 ## ccnx-decoding-helper.h (module 'NDNabstraction'): boost::any ns3::CcnxParser::GJDepthFirstVisitor::visit(ns3::CcnxParser::Ext & arg0, boost::any arg1) [member function]
6545 cls.add_method('visit',
6546 'boost::any',
6547 [param('ns3::CcnxParser::Ext &', 'arg0'), param('boost::any', 'arg1')],
6548 is_virtual=True)
6549 return
6550
6551def register_Ns3CcnxParserGJNoArguDepthFirstVisitor_methods(root_module, cls):
6552 ## ccnx-decoding-helper.h (module 'NDNabstraction'): ns3::CcnxParser::GJNoArguDepthFirstVisitor::GJNoArguDepthFirstVisitor() [constructor]
6553 cls.add_constructor([])
6554 ## ccnx-decoding-helper.h (module 'NDNabstraction'): ns3::CcnxParser::GJNoArguDepthFirstVisitor::GJNoArguDepthFirstVisitor(ns3::CcnxParser::GJNoArguDepthFirstVisitor const & arg0) [copy constructor]
6555 cls.add_constructor([param('ns3::CcnxParser::GJNoArguDepthFirstVisitor const &', 'arg0')])
6556 ## ccnx-decoding-helper.h (module 'NDNabstraction'): boost::any ns3::CcnxParser::GJNoArguDepthFirstVisitor::visit(ns3::CcnxParser::Blob & arg0) [member function]
6557 cls.add_method('visit',
6558 'boost::any',
6559 [param('ns3::CcnxParser::Blob &', 'arg0')],
6560 is_virtual=True)
6561 ## ccnx-decoding-helper.h (module 'NDNabstraction'): boost::any ns3::CcnxParser::GJNoArguDepthFirstVisitor::visit(ns3::CcnxParser::Udata & arg0) [member function]
6562 cls.add_method('visit',
6563 'boost::any',
6564 [param('ns3::CcnxParser::Udata &', 'arg0')],
6565 is_virtual=True)
6566 ## ccnx-decoding-helper.h (module 'NDNabstraction'): boost::any ns3::CcnxParser::GJNoArguDepthFirstVisitor::visit(ns3::CcnxParser::Tag & arg0) [member function]
6567 cls.add_method('visit',
6568 'boost::any',
6569 [param('ns3::CcnxParser::Tag &', 'arg0')],
6570 is_virtual=True)
6571 ## ccnx-decoding-helper.h (module 'NDNabstraction'): boost::any ns3::CcnxParser::GJNoArguDepthFirstVisitor::visit(ns3::CcnxParser::Attr & arg0) [member function]
6572 cls.add_method('visit',
6573 'boost::any',
6574 [param('ns3::CcnxParser::Attr &', 'arg0')],
6575 is_virtual=True)
6576 ## ccnx-decoding-helper.h (module 'NDNabstraction'): boost::any ns3::CcnxParser::GJNoArguDepthFirstVisitor::visit(ns3::CcnxParser::Dtag & arg0) [member function]
6577 cls.add_method('visit',
6578 'boost::any',
6579 [param('ns3::CcnxParser::Dtag &', 'arg0')],
6580 is_virtual=True)
6581 ## ccnx-decoding-helper.h (module 'NDNabstraction'): boost::any ns3::CcnxParser::GJNoArguDepthFirstVisitor::visit(ns3::CcnxParser::Dattr & arg0) [member function]
6582 cls.add_method('visit',
6583 'boost::any',
6584 [param('ns3::CcnxParser::Dattr &', 'arg0')],
6585 is_virtual=True)
6586 ## ccnx-decoding-helper.h (module 'NDNabstraction'): boost::any ns3::CcnxParser::GJNoArguDepthFirstVisitor::visit(ns3::CcnxParser::Ext & arg0) [member function]
6587 cls.add_method('visit',
6588 'boost::any',
6589 [param('ns3::CcnxParser::Ext &', 'arg0')],
6590 is_virtual=True)
6591 return
6592
6593def register_Ns3CcnxParserGJVoidDepthFirstVisitor_methods(root_module, cls):
6594 ## ccnx-decoding-helper.h (module 'NDNabstraction'): ns3::CcnxParser::GJVoidDepthFirstVisitor::GJVoidDepthFirstVisitor() [constructor]
6595 cls.add_constructor([])
6596 ## ccnx-decoding-helper.h (module 'NDNabstraction'): ns3::CcnxParser::GJVoidDepthFirstVisitor::GJVoidDepthFirstVisitor(ns3::CcnxParser::GJVoidDepthFirstVisitor const & arg0) [copy constructor]
6597 cls.add_constructor([param('ns3::CcnxParser::GJVoidDepthFirstVisitor const &', 'arg0')])
6598 ## ccnx-decoding-helper.h (module 'NDNabstraction'): void ns3::CcnxParser::GJVoidDepthFirstVisitor::visit(ns3::CcnxParser::Blob & arg0, boost::any arg1) [member function]
6599 cls.add_method('visit',
6600 'void',
6601 [param('ns3::CcnxParser::Blob &', 'arg0'), param('boost::any', 'arg1')],
6602 is_virtual=True)
6603 ## ccnx-decoding-helper.h (module 'NDNabstraction'): void ns3::CcnxParser::GJVoidDepthFirstVisitor::visit(ns3::CcnxParser::Udata & arg0, boost::any arg1) [member function]
6604 cls.add_method('visit',
6605 'void',
6606 [param('ns3::CcnxParser::Udata &', 'arg0'), param('boost::any', 'arg1')],
6607 is_virtual=True)
6608 ## ccnx-decoding-helper.h (module 'NDNabstraction'): void ns3::CcnxParser::GJVoidDepthFirstVisitor::visit(ns3::CcnxParser::Tag & arg0, boost::any arg1) [member function]
6609 cls.add_method('visit',
6610 'void',
6611 [param('ns3::CcnxParser::Tag &', 'arg0'), param('boost::any', 'arg1')],
6612 is_virtual=True)
6613 ## ccnx-decoding-helper.h (module 'NDNabstraction'): void ns3::CcnxParser::GJVoidDepthFirstVisitor::visit(ns3::CcnxParser::Attr & arg0, boost::any arg1) [member function]
6614 cls.add_method('visit',
6615 'void',
6616 [param('ns3::CcnxParser::Attr &', 'arg0'), param('boost::any', 'arg1')],
6617 is_virtual=True)
6618 ## ccnx-decoding-helper.h (module 'NDNabstraction'): void ns3::CcnxParser::GJVoidDepthFirstVisitor::visit(ns3::CcnxParser::Dtag & arg0, boost::any arg1) [member function]
6619 cls.add_method('visit',
6620 'void',
6621 [param('ns3::CcnxParser::Dtag &', 'arg0'), param('boost::any', 'arg1')],
6622 is_virtual=True)
6623 ## ccnx-decoding-helper.h (module 'NDNabstraction'): void ns3::CcnxParser::GJVoidDepthFirstVisitor::visit(ns3::CcnxParser::Dattr & arg0, boost::any arg1) [member function]
6624 cls.add_method('visit',
6625 'void',
6626 [param('ns3::CcnxParser::Dattr &', 'arg0'), param('boost::any', 'arg1')],
6627 is_virtual=True)
6628 ## ccnx-decoding-helper.h (module 'NDNabstraction'): void ns3::CcnxParser::GJVoidDepthFirstVisitor::visit(ns3::CcnxParser::Ext & arg0, boost::any arg1) [member function]
6629 cls.add_method('visit',
6630 'void',
6631 [param('ns3::CcnxParser::Ext &', 'arg0'), param('boost::any', 'arg1')],
6632 is_virtual=True)
6633 return
6634
6635def register_Ns3CcnxParserInterestVisitor_methods(root_module, cls):
6636 ## ccnx-decoding-helper.h (module 'NDNabstraction'): ns3::CcnxParser::InterestVisitor::InterestVisitor() [constructor]
6637 cls.add_constructor([])
6638 ## ccnx-decoding-helper.h (module 'NDNabstraction'): ns3::CcnxParser::InterestVisitor::InterestVisitor(ns3::CcnxParser::InterestVisitor const & arg0) [copy constructor]
6639 cls.add_constructor([param('ns3::CcnxParser::InterestVisitor const &', 'arg0')])
6640 ## ccnx-decoding-helper.h (module 'NDNabstraction'): void ns3::CcnxParser::InterestVisitor::visit(ns3::CcnxParser::Dtag & n, boost::any param) [member function]
6641 cls.add_method('visit',
6642 'void',
6643 [param('ns3::CcnxParser::Dtag &', 'n'), param('boost::any', 'param')],
6644 is_virtual=True)
6645 return
6646
6647def register_Ns3CcnxParserNameComponentsVisitor_methods(root_module, cls):
6648 ## ccnx-decoding-helper.h (module 'NDNabstraction'): ns3::CcnxParser::NameComponentsVisitor::NameComponentsVisitor() [constructor]
6649 cls.add_constructor([])
6650 ## ccnx-decoding-helper.h (module 'NDNabstraction'): ns3::CcnxParser::NameComponentsVisitor::NameComponentsVisitor(ns3::CcnxParser::NameComponentsVisitor const & arg0) [copy constructor]
6651 cls.add_constructor([param('ns3::CcnxParser::NameComponentsVisitor const &', 'arg0')])
6652 ## ccnx-decoding-helper.h (module 'NDNabstraction'): void ns3::CcnxParser::NameComponentsVisitor::visit(ns3::CcnxParser::Dtag & n, boost::any param) [member function]
6653 cls.add_method('visit',
6654 'void',
6655 [param('ns3::CcnxParser::Dtag &', 'n'), param('boost::any', 'param')],
6656 is_virtual=True)
6657 return
6658
6659def register_Ns3CcnxParserNonNegativeIntegerVisitor_methods(root_module, cls):
6660 ## ccnx-decoding-helper.h (module 'NDNabstraction'): ns3::CcnxParser::NonNegativeIntegerVisitor::NonNegativeIntegerVisitor() [constructor]
6661 cls.add_constructor([])
6662 ## ccnx-decoding-helper.h (module 'NDNabstraction'): ns3::CcnxParser::NonNegativeIntegerVisitor::NonNegativeIntegerVisitor(ns3::CcnxParser::NonNegativeIntegerVisitor const & arg0) [copy constructor]
6663 cls.add_constructor([param('ns3::CcnxParser::NonNegativeIntegerVisitor const &', 'arg0')])
6664 ## ccnx-decoding-helper.h (module 'NDNabstraction'): boost::any ns3::CcnxParser::NonNegativeIntegerVisitor::visit(ns3::CcnxParser::Blob & n) [member function]
6665 cls.add_method('visit',
6666 'boost::any',
6667 [param('ns3::CcnxParser::Blob &', 'n')],
6668 is_virtual=True)
6669 ## ccnx-decoding-helper.h (module 'NDNabstraction'): boost::any ns3::CcnxParser::NonNegativeIntegerVisitor::visit(ns3::CcnxParser::Udata & n) [member function]
6670 cls.add_method('visit',
6671 'boost::any',
6672 [param('ns3::CcnxParser::Udata &', 'n')],
6673 is_virtual=True)
6674 return
6675
6676def register_Ns3CcnxParserStringVisitor_methods(root_module, cls):
6677 ## ccnx-decoding-helper.h (module 'NDNabstraction'): ns3::CcnxParser::StringVisitor::StringVisitor() [constructor]
6678 cls.add_constructor([])
6679 ## ccnx-decoding-helper.h (module 'NDNabstraction'): ns3::CcnxParser::StringVisitor::StringVisitor(ns3::CcnxParser::StringVisitor const & arg0) [copy constructor]
6680 cls.add_constructor([param('ns3::CcnxParser::StringVisitor const &', 'arg0')])
6681 ## ccnx-decoding-helper.h (module 'NDNabstraction'): boost::any ns3::CcnxParser::StringVisitor::visit(ns3::CcnxParser::Blob & n) [member function]
6682 cls.add_method('visit',
6683 'boost::any',
6684 [param('ns3::CcnxParser::Blob &', 'n')],
6685 is_virtual=True)
6686 ## ccnx-decoding-helper.h (module 'NDNabstraction'): boost::any ns3::CcnxParser::StringVisitor::visit(ns3::CcnxParser::Udata & n) [member function]
6687 cls.add_method('visit',
6688 'boost::any',
6689 [param('ns3::CcnxParser::Udata &', 'n')],
6690 is_virtual=True)
6691 return
6692
6693def register_Ns3CcnxParserContentObjectVisitor_methods(root_module, cls):
6694 ## ccnx-decoding-helper.h (module 'NDNabstraction'): ns3::CcnxParser::ContentObjectVisitor::ContentObjectVisitor() [constructor]
6695 cls.add_constructor([])
6696 ## ccnx-decoding-helper.h (module 'NDNabstraction'): ns3::CcnxParser::ContentObjectVisitor::ContentObjectVisitor(ns3::CcnxParser::ContentObjectVisitor const & arg0) [copy constructor]
6697 cls.add_constructor([param('ns3::CcnxParser::ContentObjectVisitor const &', 'arg0')])
6698 ## ccnx-decoding-helper.h (module 'NDNabstraction'): void ns3::CcnxParser::ContentObjectVisitor::visit(ns3::CcnxParser::Dtag & n, boost::any param) [member function]
6699 cls.add_method('visit',
6700 'void',
6701 [param('ns3::CcnxParser::Dtag &', 'n'), param('boost::any', 'param')],
6702 is_virtual=True)
6703 return
6704
6705def register_Ns3NameComponents_methods(root_module, cls):
Ilya Moiseenkoc166cd32011-08-12 12:50:30 -07006706 cls.add_output_stream_operator()
Alexander Afanasyeveface602011-08-17 17:50:12 -07006707 ## name-components.h (module 'NDNabstraction'): ns3::Name::Components::Components(ns3::Name::Components const & arg0) [copy constructor]
6708 cls.add_constructor([param('ns3::Name::Components const &', 'arg0')])
6709 ## name-components.h (module 'NDNabstraction'): ns3::Name::Components::Components() [constructor]
Ilya Moiseenkoc166cd32011-08-12 12:50:30 -07006710 cls.add_constructor([])
Alexander Afanasyeveface602011-08-17 17:50:12 -07006711 ## name-components.h (module 'NDNabstraction'): ns3::Name::Components::Components(std::string const & s) [constructor]
Ilya Moiseenkoc166cd32011-08-12 12:50:30 -07006712 cls.add_constructor([param('std::string const &', 's')])
Alexander Afanasyeveface602011-08-17 17:50:12 -07006713 ## name-components.h (module 'NDNabstraction'): void ns3::Name::Components::Add(std::string const & s) [member function]
6714 cls.add_method('Add',
6715 'void',
6716 [param('std::string const &', 's')])
6717 ## name-components.h (module 'NDNabstraction'): std::list<std::string, std::allocator<std::string> > const & ns3::Name::Components::GetComponents() const [member function]
6718 cls.add_method('GetComponents',
6719 'std::list< std::string > const &',
6720 [],
6721 is_const=True)
6722 ## name-components.h (module 'NDNabstraction'): void ns3::Name::Components::Print(std::ostream & os) const [member function]
Ilya Moiseenkoc166cd32011-08-12 12:50:30 -07006723 cls.add_method('Print',
6724 'void',
6725 [param('std::ostream &', 'os')],
6726 is_const=True)
Alexander Afanasyeveface602011-08-17 17:50:12 -07006727 ## name-components.h (module 'NDNabstraction'): size_t ns3::Name::Components::size() const [member function]
6728 cls.add_method('size',
6729 'size_t',
6730 [],
6731 is_const=True)
6732 ## name-components.h (module 'NDNabstraction'): ns3::Name::Components & ns3::Name::Components::operator()(std::string const & s) [member operator]
Ilya Moiseenkoc166cd32011-08-12 12:50:30 -07006733 cls.add_method('operator()',
Alexander Afanasyeveface602011-08-17 17:50:12 -07006734 'ns3::Name::Components &',
Ilya Moiseenkoc166cd32011-08-12 12:50:30 -07006735 [param('std::string const &', 's')],
6736 custom_name='__call__')
6737 return
6738
Ilya Moiseenko1762af72011-07-18 16:43:10 -07006739def register_functions(root_module):
6740 module = root_module
Alexander Afanasyeveface602011-08-17 17:50:12 -07006741 register_functions_ns3_CcnxParser(module.get_submodule('CcnxParser'), root_module)
Ilya Moiseenko1762af72011-07-18 16:43:10 -07006742 register_functions_ns3_FatalImpl(module.get_submodule('FatalImpl'), root_module)
Alexander Afanasyeveface602011-08-17 17:50:12 -07006743 register_functions_ns3_Name(module.get_submodule('Name'), root_module)
Ilya Moiseenkoc166cd32011-08-12 12:50:30 -07006744 register_functions_ns3_internal(module.get_submodule('internal'), root_module)
Ilya Moiseenko1762af72011-07-18 16:43:10 -07006745 return
6746
Alexander Afanasyeveface602011-08-17 17:50:12 -07006747def register_functions_ns3_CcnxParser(module, root_module):
6748 return
6749
Ilya Moiseenko1762af72011-07-18 16:43:10 -07006750def register_functions_ns3_FatalImpl(module, root_module):
6751 return
6752
Alexander Afanasyeveface602011-08-17 17:50:12 -07006753def register_functions_ns3_Name(module, root_module):
Ilya Moiseenkoc166cd32011-08-12 12:50:30 -07006754 return
6755
6756def register_functions_ns3_internal(module, root_module):
Ilya Moiseenko1762af72011-07-18 16:43:10 -07006757 return
6758
6759def main():
6760 out = FileCodeSink(sys.stdout)
6761 root_module = module_init()
6762 register_types(root_module)
6763 register_methods(root_module)
6764 register_functions(root_module)
6765 root_module.generate(out)
6766
6767if __name__ == '__main__':
6768 main()
6769